blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
201
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
7
100
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
260 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
11.4k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
80 values
src_encoding
stringclasses
28 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
8
9.86M
extension
stringclasses
52 values
content
stringlengths
8
9.86M
authors
listlengths
1
1
author
stringlengths
0
119
2e69f810a3bb2ddd1e936f7a2ea5c51ddaa24d4d
ba00572231a7ec66461c242a57ac8f9daf1d6343
/cplusplus_course_projects/BookItem_and_Inhertance/BulkItem.h
d2307e72db7ac8fa17535768571413636b607b99
[]
no_license
zhushh/cplusplus
e57b7d808b1c9e5d2f4be7a686f392183e099439
036575f83ac5baa1aca04bbecddc0cca181dc846
refs/heads/master
2021-07-10T22:11:02.550430
2021-03-31T12:37:08
2021-03-31T12:37:08
85,827,719
0
0
null
null
null
null
UTF-8
C++
false
false
528
h
#ifndef BULKITEM_H #define BULKITEM_H #include "BookItem.h" #include <iostream> using std::string; class BulkItem:public BookItem { public: BulkItem(const string& bookName, double salesPrice, int qty = 0, double salesDisc = 1.0); /* * Return the total price of these books * If cnt is greater than minQty, total price: cnt*price*discount * else, total price: cnt*price */ double netPrice(int cnt) const; private: int minQty_; double discount_; }; #endif
[ "zsh5318@gmail.com" ]
zsh5318@gmail.com
dd64ad899abba2d3972cc324804ef7bd572b1838
bfe8834b87c1674ee1f4742aab58905719bc9f80
/Android/HelloARVideoNative/app/src/main/jni/helloarvideo.cc
f1f4d99d13b0726057cd0d879b6848bffee6e8f7
[]
no_license
sereinli/ARDemo
5040c53dfca7ccf7f07ed00f745f545decc8a5a0
e0a5ba70954de21665db8afa23a10412bb66ba9a
refs/heads/master
2021-01-19T11:32:27.662235
2017-02-17T03:34:21
2017-02-17T03:34:21
82,252,035
0
0
null
null
null
null
UTF-8
C++
false
false
5,724
cc
/** * Copyright (c) 2015-2016 VisionStar Information Technology (Shanghai) Co., Ltd. All Rights Reserved. * EasyAR is the registered trademark or trademark of VisionStar Information Technology (Shanghai) Co., Ltd in China * and other countries for the augmented reality technology developed by VisionStar Information Technology (Shanghai) Co., Ltd. */ #include "ar.hpp" #include "renderer.hpp" #include <jni.h> #include <GLES2/gl2.h> #define JNIFUNCTION_NATIVE(sig) Java_com_rain_whale_MainActivity_##sig extern "C" { JNIEXPORT jboolean JNICALL JNIFUNCTION_NATIVE(nativeInit(JNIEnv* env, jobject object)); JNIEXPORT void JNICALL JNIFUNCTION_NATIVE(nativeDestory(JNIEnv* env, jobject object)); JNIEXPORT void JNICALL JNIFUNCTION_NATIVE(nativeInitGL(JNIEnv* env, jobject object)); JNIEXPORT void JNICALL JNIFUNCTION_NATIVE(nativeResizeGL(JNIEnv* env, jobject object, jint w, jint h)); JNIEXPORT void JNICALL JNIFUNCTION_NATIVE(nativeRender(JNIEnv* env, jobject obj)); JNIEXPORT void JNICALL JNIFUNCTION_NATIVE(nativeRotationChange(JNIEnv* env, jobject obj, jboolean portrait)); }; namespace EasyAR { namespace samples { class HelloARVideo : public AR { public: HelloARVideo(); ~HelloARVideo(); virtual void initGL(); virtual void resizeGL(int width, int height); virtual void render(); virtual bool clear(); private: Vec2I view_size; VideoRenderer* renderer[3]; int tracked_target; int active_target; int texid[3]; ARVideo* video; VideoRenderer* video_renderer; }; HelloARVideo::HelloARVideo() { view_size[0] = -1; tracked_target = 0; active_target = 0; for(int i = 0; i < 3; ++i) { texid[i] = 0; renderer[i] = new VideoRenderer; } video = NULL; video_renderer = NULL; } HelloARVideo::~HelloARVideo() { for(int i = 0; i < 3; ++i) { delete renderer[i]; } } void HelloARVideo::initGL() { augmenter_ = Augmenter(); augmenter_.attachCamera(camera_); for(int i = 0; i < 3; ++i) { renderer[i]->init(); texid[i] = renderer[i]->texId(); } } void HelloARVideo::resizeGL(int width, int height) { view_size = Vec2I(width, height); } void HelloARVideo::render() { glClearColor(0.f, 0.f, 0.f, 1.f); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); Frame frame = augmenter_.newFrame(); if(view_size[0] > 0){ AR::resizeGL(view_size[0], view_size[1]); if(camera_ && camera_.isOpened()) view_size[0] = -1; } augmenter_.setViewPort(viewport_); augmenter_.drawVideoBackground(); glViewport(viewport_[0], viewport_[1], viewport_[2], viewport_[3]); AugmentedTarget::Status status = frame.targets()[0].status(); if(status == AugmentedTarget::kTargetStatusTracked){ int id = frame.targets()[0].target().id(); if(active_target && active_target != id) { video->onLost(); delete video; video = NULL; tracked_target = 0; active_target = 0; } if (!tracked_target) { if (video == NULL) { if(frame.targets()[0].target().name() == std::string("argame") && texid[0]) { video = new ARVideo; video->openVideoFile("video.mp4", texid[0]); video_renderer = renderer[0]; } else if(frame.targets()[0].target().name() == std::string("namecard") && texid[1]) { video = new ARVideo; video->openTransparentVideoFile("transparentvideo.mp4", texid[1]); video_renderer = renderer[1]; } else if(frame.targets()[0].target().name() == std::string("idback") && texid[2]) { video = new ARVideo; video->openStreamingVideo("http://7xl1ve.com5.z0.glb.clouddn.com/sdkvideo/EasyARSDKShow201520.mp4", texid[2]); video_renderer = renderer[2]; } } if (video) { video->onFound(); tracked_target = id; active_target = id; } } Matrix44F projectionMatrix = getProjectionGL(camera_.cameraCalibration(), 0.2f, 500.f); Matrix44F cameraview = getPoseGL(frame.targets()[0].pose()); ImageTarget target = frame.targets()[0].target().cast_dynamic<ImageTarget>(); if(tracked_target) { video->update(); video_renderer->render(projectionMatrix, cameraview, target.size()); } } else { if (tracked_target) { video->onLost(); tracked_target = 0; } } } bool HelloARVideo::clear() { AR::clear(); if(video){ delete video; video = NULL; tracked_target = 0; active_target = 0; } return true; } } } EasyAR::samples::HelloARVideo ar; JNIEXPORT jboolean JNICALL JNIFUNCTION_NATIVE(nativeInit(JNIEnv*, jobject)) { bool status = ar.initCamera(); ar.loadAllFromJsonFile("targets.json"); ar.loadFromImage("namecard.jpg"); status &= ar.start(); return status; } JNIEXPORT void JNICALL JNIFUNCTION_NATIVE(nativeDestory(JNIEnv*, jobject)) { ar.clear(); } JNIEXPORT void JNICALL JNIFUNCTION_NATIVE(nativeInitGL(JNIEnv*, jobject)) { ar.initGL(); } JNIEXPORT void JNICALL JNIFUNCTION_NATIVE(nativeResizeGL(JNIEnv*, jobject, jint w, jint h)) { ar.resizeGL(w, h); } JNIEXPORT void JNICALL JNIFUNCTION_NATIVE(nativeRender(JNIEnv*, jobject)) { ar.render(); } JNIEXPORT void JNICALL JNIFUNCTION_NATIVE(nativeRotationChange(JNIEnv*, jobject, jboolean portrait)) { ar.setPortrait(portrait); }
[ "lichangyin@haibao.com" ]
lichangyin@haibao.com
df5f07608f32823e3c16e313b983074181e160f8
c3418c96159c2539012307d15cb99d8f5920c77a
/boundarymatrix.cpp
49523e01549891b9edc14b522e794c8a8d35e47f
[]
no_license
chandan73933/Data-Structure-Algo
27246951e733810e796bc90dbef241b2a3fcad90
429c83979e38082d0edd8e05721958a6369f6659
refs/heads/main
2023-08-18T13:24:43.660944
2021-10-05T16:23:21
2021-10-05T16:23:21
375,261,117
1
0
null
null
null
null
UTF-8
C++
false
false
349
cpp
#include<iostream> using namespace std; int main() { int r,c; cin>>r>>c; int mat[r][c]; for(int i=0;i<r;i++) { for(int j=0;j<c;j++) { cin>>mat[i][j]; } } for(int i=0;i<c;i++) {cout<<mat[0][i]; } for(int i=1;i<r-1;i++) {cout<<mat[i][c-1]; } for(int i=c-1;i>=0;i--) {cout<<mat[r-1][i]; } for(int i=r-2;i>=1;i--) {cout<<mat[i][0]; } }
[ "noreply@github.com" ]
noreply@github.com
95e308de559baa9d5cc10f890175562440a5953e
53c9375b2ff0028d0bfb0bd98c19d9efdc68c47d
/couponsbruteforce.cpp
3782e91e245131252d843b5760aa33e4389ecb06
[]
no_license
pocafup/my-code
a2fa6ec3bb0b70ec992f20ac90146e8ed00f2463
92a3785023e3e87f01b65a6c30ff91dd6055d7e8
refs/heads/master
2021-01-07T19:04:01.702122
2020-10-20T10:41:13
2020-10-20T10:41:13
241,790,879
0
0
null
null
null
null
UTF-8
C++
false
false
1,101
cpp
#include <iostream> #include <algorithm> #include <queue> #include <cstring> using namespace std; pair<long long,long long> cost[50001]; long long dp[2][50001]; bool sorted(pair<long long,long long> aa, pair<long long,long long> bb){ return aa.first<bb.first; } int main(){ long long a,b,c; cin >> a >> b >> c; for (long long i=1;i<=a;i++) { cin >> cost[i].first >> cost[i].second; } memset(dp,0x3f3f3f,sizeof(dp)); dp[0][0] = 0; int up_to = 1; int ans = 0; sort(cost,cost+a,sorted); for (int i=1;i<=a;i++){ dp[1][0] = dp[0][0]+cost[i].first; for (int j=1;j<=up_to;j++){ dp[1][j] = min(dp[0][j]+cost[i].first,dp[0][j-1]+cost[i].second); if (dp[1][j]<=c) ans = max(ans,i); } for (int j=0;j<=up_to;j++) dp[0][j] = dp[1][j]; up_to++; // for (int i=0;i<a;i++) cout <<dp[0][i] << " "; // cout << endl; // for (int i=0;i<a;i++) cout << dp[1][i] << " "; // cout <<endl; } // for (int i=0;i<=a;i++) cout <<dp[0][i] << " "; // cout << endl; // for (int i=0;i<=a;i++) cout << dp[1][i] << " "; // cout <<endl; cout << ans; }
[ "noreply@github.com" ]
noreply@github.com
c47bb55ce3d2129b1df63adddeb740f5c91e6cbb
08d17ddeb5713d8e7a4ee01054fcce78ed7f5191
/tensorflow/core/kernels/batch_kernels.cc
338f61ff6642cbc604bb77dfe1908fe28b9fc142
[ "Apache-2.0" ]
permissive
Godsinred/tensorflow
9cd67e1088ad8893265651ad4a5c45a6640b6c96
45100d5f55d7cba15bffcd91bf521ed37daf7bca
refs/heads/master
2020-04-25T19:44:53.669366
2019-02-28T01:54:55
2019-02-28T02:59:15
173,030,955
2
0
Apache-2.0
2019-02-28T03:03:41
2019-02-28T03:03:41
null
UTF-8
C++
false
false
48,760
cc
/* Copyright 2017 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/core/framework/function.h" #include "tensorflow/core/framework/op_kernel.h" #include "tensorflow/core/framework/register_types.h" #include "tensorflow/core/framework/resource_mgr.h" #include "tensorflow/core/framework/tensor.h" #include "tensorflow/core/framework/tensor_util.h" #include "tensorflow/core/framework/types.h" #include "tensorflow/core/kernels/batching_util/periodic_function.h" #include "tensorflow/core/kernels/batching_util/shared_batch_scheduler.h" #include "tensorflow/core/kernels/concat_lib.h" #include "tensorflow/core/kernels/ops_util.h" #include "tensorflow/core/kernels/split_lib.h" #include "tensorflow/core/lib/gtl/cleanup.h" #include "tensorflow/core/lib/random/random.h" #include "tensorflow/core/platform/macros.h" namespace tensorflow { typedef Eigen::ThreadPoolDevice CPUDevice; typedef Eigen::GpuDevice GPUDevice; #ifdef TENSORFLOW_USE_SYCL typedef Eigen::SyclDevice SYCLDevice; #endif // TENSORFLOW_USE_SYCL // Concatenates 'inputs' into a single tensor along the zeroth dimension. // Requires that all elements of 'inputs' have element type T. Writes to the // op's output at position 'output_index', using 'context' for the allocation to // ensure proper device placement. template <typename T> Status Concat(OpKernelContext* context, const gtl::ArraySlice<Tensor>& inputs, Tensor* output) { const int input_dims = inputs[0].dims(); const TensorShape& input_shape = inputs[0].shape(); // Note that we reduce the concat of k-dimensional tensors into a two // dimensional concat. Assuming the dimensions of any input tensor are // {y0, y1,...,ym-1}, we flatten it to {1, y}, where y = Prod_i(yi). std::vector<std::unique_ptr<typename TTypes<T, 2>::ConstMatrix>> inputs_flat; inputs_flat.reserve(inputs.size()); int64 output_dim0 = 0; for (size_t i = 0; i < inputs.size(); ++i) { const Tensor& input = inputs[i]; if (input.dims() != input_dims) { return errors::InvalidArgument( "Ranks of all input tensors should match: shape[0] = ", input_shape.DebugString(), " vs. shape[", i, "] = ", input.shape().DebugString()); } for (int j = 1; j < input_dims; ++j) { if (input.dim_size(j) != input_shape.dim_size(j)) { return errors::InvalidArgument( "Dimensions of inputs should match: shape[0] = ", input_shape.DebugString(), " vs. shape[", i, "] = ", input.shape().DebugString()); } } if (input.NumElements() > 0) { inputs_flat.emplace_back(new typename TTypes<T, 2>::ConstMatrix( input.shaped<T, 2>({1, input.NumElements()}))); } output_dim0 += input.dim_size(0); } TensorShape output_shape(input_shape); output_shape.set_dim(0, output_dim0); TF_RETURN_IF_ERROR( context->allocate_temp(DataTypeToEnum<T>::value, output_shape, output)); if (output->NumElements() > 0) { auto output_flat = output->shaped<T, 2>({1, output->NumElements()}); #if GOOGLE_CUDA if (std::is_same<Device, GPUDevice>::value) { ConcatGPU<T>(context, inputs_flat, output, &output_flat); return Status::OK(); } #endif // GOOGLE_CUDA ConcatCPU<T>(context->device(), inputs_flat, &output_flat); } return Status::OK(); } // The Split*() functions split 'input' with element type T into 'sizes.size()' // tensors along the zeroth dimension, with the ith split having zeroth- // dimension size 'sizes[i]'. They allocate the output tensors using 'context', // for proper device placement. // Handles special cases that are cheap. Sets 'done==true' iff it found an // applicable special case and wrote to the outputs. Otherwise acts as a no-op. template <typename T> Status SplitEasyCases(OpKernelContext* context, const Tensor& input, const gtl::ArraySlice<int64>& sizes, std::vector<Tensor>* outputs, bool* done) { *done = false; int64 total_size = 0; for (const int64 size : sizes) { total_size += size; } if (total_size > input.shape().dim_size(0)) { return errors::InvalidArgument( "Sum of split sizes must not exceed dim0-size of input tensor"); } // Special case 0: trivial 1-way split. if (sizes.size() == 1 && sizes.at(0) == input.shape().dim_size(0)) { outputs->push_back(input); *done = true; return Status::OK(); } // Special case 1: input is aligned. if (IsInnerDimsSizeAligned<T>(input.shape())) { int64 position = 0; for (const int64 size : sizes) { outputs->emplace_back(input.Slice(position, position + size)); position += size; } *done = true; return Status::OK(); } return Status::OK(); } // Handles the general case, on CPU. template <typename T> Status SplitCPU(OpKernelContext* context, const Tensor& input, const gtl::ArraySlice<int64>& sizes, std::vector<Tensor>* outputs) { int64 suffix_dim_size = 1; for (int i = 1; i < input.shape().dims(); ++i) { suffix_dim_size *= input.shape().dim_size(i); } auto input_reshaped = input.shaped<T, 2>({input.shape().dim_size(0), suffix_dim_size}); int64 position = 0; for (const int64 size : sizes) { TensorShape output_shape = input.shape(); output_shape.set_dim(0, size); Tensor output; TF_RETURN_IF_ERROR( context->allocate_temp(input.dtype(), output_shape, &output)); auto output_shaped = output.shaped<T, 2>({size, suffix_dim_size}); Eigen::DSizes<Eigen::DenseIndex, 2> slice_indices{position, 0}; Eigen::DSizes<Eigen::DenseIndex, 2> slice_sizes{size, suffix_dim_size}; functor::Split<CPUDevice, T, 2>()(context->eigen_device<CPUDevice>(), output_shaped, input_reshaped, slice_indices, slice_sizes); outputs->emplace_back(output); position += size; } return Status::OK(); } #if GOOGLE_CUDA // Handles the general case, on GPU. template <typename T> Status SplitGPU(OpKernelContext* context, const Tensor& input, const gtl::ArraySlice<int64>& sizes, std::vector<Tensor>* outputs) { // TODO(olston, apassos): Implement this. LOG(FATAL) << "Not yet implemented"; // Crash ok } #endif // GOOGLE_CUDA // The outer function that dispatches to the various Split*() functions above. template <typename T> Status Split(OpKernelContext* context, const Tensor& input, const gtl::ArraySlice<int64>& sizes, std::vector<Tensor>* outputs) { bool easy_cases_done; TF_RETURN_IF_ERROR( SplitEasyCases<T>(context, input, sizes, outputs, &easy_cases_done)); if (easy_cases_done) { return Status::OK(); } #if GOOGLE_CUDA // TODO(olston, apassos): Handle non-CPU cases. // return SplitGPU<T>(context, input, sizes, outputs); #endif // GOOGLE_CUDA return SplitCPU<T>(context, input, sizes, outputs); } // A class encapsulating the state and logic for batching tensors. class BatchResource : public ResourceBase { public: static Status Create(int32 num_batch_threads, int32 max_batch_size, int32 batch_timeout_micros, int32 max_enqueued_batches, const std::vector<int32>& allowed_batch_sizes, FunctionLibraryRuntime::Handle fhandle, std::unique_ptr<BatchResource>* resource) { std::unique_ptr<BatchResource> new_resource(new BatchResource); Batcher::Options batcher_options; batcher_options.num_batch_threads = num_batch_threads; TF_RETURN_IF_ERROR( Batcher::Create(batcher_options, &new_resource->batcher_)); new_resource->batcher_queue_options_.max_batch_size = max_batch_size; new_resource->batcher_queue_options_.max_enqueued_batches = max_enqueued_batches; new_resource->batcher_queue_options_.batch_timeout_micros = batch_timeout_micros; new_resource->allowed_batch_sizes_ = allowed_batch_sizes; new_resource->fhandle_ = fhandle; *resource = std::move(new_resource); return Status::OK(); } string DebugString() const final { return "BatchResource"; } // Ingests data from one invocation of the batch op. The data is enqueued to // be combined with others into a batch, asynchronously. Status RegisterInput(int64 guid, OpKernelContext* context, const string& batcher_queue_name, AsyncOpKernel::DoneCallback done_callback) { std::unique_ptr<BatchTask> batch_components(new BatchTask); batch_components->guid = guid; OpInputList tensors; TF_RETURN_IF_ERROR(context->input_list("in_tensors", &tensors)); for (int i = 0; i < tensors.size(); ++i) { const Tensor& tensor = tensors[i]; if (tensor.shape().dims() == 0) { return errors::InvalidArgument( "Batching input tensors must have at least one dimension"); } if (tensors.size() >= 2 && tensor.shape().dim_size(0) != tensors[0].shape().dim_size(0)) { return errors::InvalidArgument( "Batching input tensors supplied in a given op invocation must " "have equal 0th-dimension size"); } batch_components->inputs.push_back(tensor); } OpInputList captured_tensors; const auto captured_status = context->input_list("captured_tensors", &captured_tensors); if (captured_status.ok()) { for (const Tensor& captured_tensor : captured_tensors) { batch_components->captured_inputs.push_back(captured_tensor); } } batch_components->context = context; batch_components->done_callback = std::move(done_callback); BatcherQueue* batcher_queue; TF_RETURN_IF_ERROR( LookupOrCreateBatcherQueue(batcher_queue_name, &batcher_queue)); return batcher_queue->Schedule(&batch_components); } private: BatchResource() = default; // One input to be batched. Corresponds to one invocation of the batch op. struct BatchTask : public serving::BatchTask { // A unique ID to identify this invocation of Batch. int64 guid; std::vector<Tensor> inputs; std::vector<Tensor> captured_inputs; OpKernelContext* context; AsyncOpKernel::DoneCallback done_callback; size_t size() const override { return inputs[0].shape().dim_size(0); } }; using Batcher = serving::SharedBatchScheduler<BatchTask>; using BatcherQueue = serving::BatchScheduler<BatchTask>; using Batch = serving::Batch<BatchTask>; // Validates that it's legal to combine the tasks in 'batch' into a batch. // Assumes the batch is non-empty. static Status ValidateBatch(const Batch& batch) { for (int task_idx = 0; task_idx < batch.num_tasks(); ++task_idx) { const BatchTask& task = batch.task(task_idx); if (task.inputs.size() != batch.task(0).inputs.size()) { return errors::InvalidArgument( "Batching inputs must have equal number of edges"); } } return Status::OK(); } // Returns the smallest entry in 'allowed_batch_sizes_' that is greater than // or equal to 'batch_size'. If 'allowed_batch_sizes_' is empty, simply // returns 'batch_size'. int RoundToLowestAllowedBatchSize(int batch_size) const { if (allowed_batch_sizes_.empty()) { return batch_size; } for (int allowed_size : allowed_batch_sizes_) { if (allowed_size >= batch_size) { return allowed_size; } } LOG(ERROR) << "Maximum batch size greater than largest allowed size; " "ignoring allowed sizes constraint"; return batch_size; } Status ConcatInputTensors(const Batch& batch, OpKernelContext* context, std::vector<Tensor>* concatenated_tensors) const { if (batch.num_tasks() == 0) { return errors::InvalidArgument("Empty batch."); } const int padded_batch_size = RoundToLowestAllowedBatchSize(batch.size()); const int padding_amount = padded_batch_size - batch.size(); // All tasks should have the same number of input edges. const int num_inputs = batch.task(0).inputs.size(); concatenated_tensors->reserve(num_inputs); // Process each input one at a time (the typical case has just one). for (int i = 0; i < num_inputs; ++i) { // Concatenate the tasks ith input tensors into a big output tensor. std::vector<Tensor> to_concatenate; to_concatenate.reserve(batch.num_tasks()); for (int task_idx = 0; task_idx < batch.num_tasks(); ++task_idx) { to_concatenate.push_back(batch.task(task_idx).inputs.at(i)); } // Add padding as needed. Use the first row of the first task's tensor as // the data for padding. if (padding_amount > 0) { const Tensor& padding_source = batch.task(0).inputs.at(i); Tensor padding; if (padding_source.shape().dim_size(0) == 1) { padding = padding_source; } else { const std::vector<int64> slice_sizes = {1}; const DataType type = padding_source.dtype(); Status slice_status; std::vector<Tensor> slices; switch (type) { #define CASE(type) \ case DataTypeToEnum<type>::value: \ slice_status = \ SplitCPU<type>(context, padding_source, slice_sizes, &slices); \ break; TF_CALL_ALL_TYPES(CASE); #undef CASE default: slice_status = errors::InvalidArgument("Unsupported data type: ", type); break; } TF_RETURN_IF_ERROR(slice_status); padding = slices.at(0); } for (int i = 0; i < padding_amount; ++i) { to_concatenate.push_back(padding); } } const DataType type = to_concatenate[0].dtype(); Status concat_status; Tensor concatenated_tensor; switch (type) { #define CASE(type) \ case DataTypeToEnum<type>::value: \ concat_status = \ Concat<type>(context, to_concatenate, &concatenated_tensor); \ break; TF_CALL_ALL_TYPES(CASE); #undef CASE default: concat_status = errors::InvalidArgument("Unsupported data type: ", type); break; } TF_RETURN_IF_ERROR(concat_status); concatenated_tensors->push_back(concatenated_tensor); } return Status::OK(); } Status SplitOutputTensors(const std::vector<Tensor>& combined_outputs, Batch* batch) const { DCHECK_GE(batch->num_tasks(), 1); if (batch->num_tasks() < 1) { return errors::Internal("Batch size expected to be positive; was ", batch->num_tasks()); } std::vector<int64> task_sizes_plus_optional_padding; task_sizes_plus_optional_padding.reserve(batch->num_tasks()); for (int i = 0; i < batch->num_tasks(); ++i) { task_sizes_plus_optional_padding.push_back(batch->task(i).size()); } const int padding_size = RoundToLowestAllowedBatchSize(batch->size()) - batch->size(); if (padding_size > 0) { task_sizes_plus_optional_padding.push_back(padding_size); } // For each output tensor name, a divided-up tensor with one entry per task. std::map<string, std::vector<Tensor>> split_tensors; DCHECK_EQ(batch->task(0).context->num_outputs(), combined_outputs.size()); if (combined_outputs.size() != batch->task(0).context->num_outputs()) { return errors::Internal("Wrong number of batched output tensors"); } // Generate 'split_tensors' and populate the context outputs. for (int i = 0; i < combined_outputs.size(); ++i) { const Tensor& output_tensor = combined_outputs[i]; if (output_tensor.shape().dims() == 0) { return errors::FailedPrecondition( "Batched output tensor has 0 dimensions"); } if (output_tensor.shape().dim_size(0) != batch->size() + padding_size) { return errors::FailedPrecondition( "Batched output tensor's 0th dimension does not equal the sum of " "the 0th dimension sizes of the input tensors"); } std::vector<Tensor> split_tensor; const Status split_status = tensor::Split( output_tensor, task_sizes_plus_optional_padding, &split_tensor); DCHECK(split_status.ok()) << split_status.ToString(); if (!split_status.ok()) { return errors::Internal("Tensor split operation failed: ", split_status.ToString()); } DCHECK_EQ(split_tensor.size(), task_sizes_plus_optional_padding.size()); if (split_tensor.size() != task_sizes_plus_optional_padding.size()) { return errors::Internal( "Tensor split operation did not work as expected; got ", split_tensor.size(), " splits; expected ", task_sizes_plus_optional_padding.size()); } for (int j = 0; j < batch->num_tasks(); ++j) { BatchTask& task = *(batch->mutable_task(j)); task.context->set_output(i, split_tensor.at(j)); } // (Ignore a possible final split_tensors entry containing the // padding.) } return Status::OK(); } void ProcessFuncBatch(std::unique_ptr<Batch> batch) const { if (batch->empty()) { return; } OpKernelContext* last_task_context = batch->task(batch->num_tasks() - 1).context; // Regardless of the outcome, we need to propagate the status to the // individual tasks and signal that they are done. We use MakeCleanup() to // ensure that this happens no matter how we exit the method below. Status status; bool cleanup_done = false; auto cleanup_fn = [&cleanup_done, &batch](const Status& status) { if (cleanup_done) { return; } for (int i = 0; i < batch->num_tasks(); ++i) { batch->mutable_task(i)->context->SetStatus(status); batch->mutable_task(i)->done_callback(); } cleanup_done = true; }; auto finally = gtl::MakeCleanup([&cleanup_fn, &status] { cleanup_fn(status); }); status = ValidateBatch(*batch); if (!status.ok()) { return; } std::vector<Tensor> concatenated_tensors; status = ConcatInputTensors(*batch, last_task_context, &concatenated_tensors); if (!status.ok()) { return; } FunctionLibraryRuntime::Options opts; opts.step_id = last_task_context->step_id(); opts.step_container = last_task_context->step_container(); opts.cancellation_manager = last_task_context->cancellation_manager(); opts.stats_collector = last_task_context->stats_collector(); opts.rendezvous = last_task_context->rendezvous(); opts.runner = last_task_context->runner(); auto* flib = last_task_context->function_library(); std::vector<Tensor> combined_outputs; Notification done; std::vector<Tensor> args(concatenated_tensors.begin(), concatenated_tensors.end()); const auto& captured_inputs = batch->task(batch->num_tasks() - 1).captured_inputs; args.insert(args.end(), captured_inputs.begin(), captured_inputs.end()); // Releases the cleanup method here, because the callback of the function // library runtime will handle it now. finally.release(); flib->Run( opts, fhandle_, args, &combined_outputs, [&](const Status& run_status) { Status final_status; auto run_finally = gtl::MakeCleanup([&]() { // We do the cleanup here as an optimization, so that it runs in // the underlying TF inter-op threadpool. Running it in the // threadpool, let's the ensuing ops be scheduled faster, // because the executor will add them to the front of the // threadpool's task queue rather than the end. cleanup_fn(final_status); done.Notify(); }); final_status = run_status; if (!final_status.ok()) { return; } final_status = SplitOutputTensors(combined_outputs, batch.get()); }); // By waiting for the notification we are ensuring that this thread isn't // used for processing other batches, which gives the batches time to // coalesce upstream. So overall the number of batches going through the // devices goes down, improving latency and throughput in most cases. done.WaitForNotification(); } // Processes a batch of one or more BatchTask entries. void ProcessBatch(std::unique_ptr<Batch> batch) const { if (batch->empty()) { return; } OpKernelContext* last_task_context = batch->task(batch->num_tasks() - 1).context; AsyncOpKernel::DoneCallback last_task_callback = batch->task(batch->num_tasks() - 1).done_callback; OP_REQUIRES_OK_ASYNC(last_task_context, ValidateBatch(*batch), last_task_callback); // All tasks should have the same number of input edges. const int num_input_edges = batch->task(0).inputs.size(); std::vector<Tensor> concatenated_tensors; const Status concat_status = ConcatInputTensors(*batch, last_task_context, &concatenated_tensors); OP_REQUIRES_OK_ASYNC(last_task_context, concat_status, last_task_callback); // Process each input edge one at a time (the typical case has just one). for (int i = 0; i < num_input_edges; ++i) { last_task_context->set_output(i, concatenated_tensors.at(i)); // Emit batch->num_tasks() - 1 empty output tensors. for (int task_idx = 0; task_idx < batch->num_tasks() - 1; ++task_idx) { const BatchTask& task = batch->task(task_idx); TensorShape output_shape(task.inputs.at(i).shape()); output_shape.set_dim(0, 0); Tensor* output = nullptr; OP_REQUIRES_OK_ASYNC( task.context, task.context->allocate_output(i, output_shape, &output), task.done_callback); } } // Emit batch->num_tasks() - 1 empty index tensors. for (int task_idx = 0; task_idx < batch->num_tasks() - 1; ++task_idx) { const BatchTask& task = batch->task(task_idx); TensorShape index_shape({0, 3}); Tensor* output = nullptr; OP_REQUIRES_OK_ASYNC( task.context, task.context->allocate_output(num_input_edges, index_shape, &output), task.done_callback); } // Emit all ID tensors. for (int task_idx = 0; task_idx < batch->num_tasks(); ++task_idx) { const BatchTask& task = batch->task(task_idx); Tensor* id; OP_REQUIRES_OK_ASYNC(task.context, task.context->allocate_output(num_input_edges + 1, TensorShape({}), &id), task.done_callback); id->scalar<int64>()() = task.guid; } OP_REQUIRES_OK_ASYNC( last_task_context, EmitIndexTensor(last_task_context, *batch, num_input_edges), last_task_callback); // Signal done for each element of the batch. (At this point, the contexts // are no longer guaranteed to remain live.) for (int task_idx = 0; task_idx < batch->num_tasks(); ++task_idx) { batch->mutable_task(task_idx)->done_callback(); } } // Emits an index tensor, which the Unbatch op will use to un-concatenate // the tensor and attribute the pieces to the right batch keys. The index // tensor contains, for each input: [batch_key, start_offset, end_offset] // where start_offset and end_offset represent the range of entries in the // concatenated tensors that belong to that input. // // Emits the result to the output at 'output_index' using 'context'. static Status EmitIndexTensor(OpKernelContext* context, const Batch& batch, int output_index) { const TensorShape index_shape({batch.num_tasks(), 3}); Tensor* index = nullptr; TF_RETURN_IF_ERROR( context->allocate_output(output_index, index_shape, &index)); auto index_flat = index->shaped<int64, 2>({batch.num_tasks(), 3}); size_t offset = 0; for (int task_idx = 0; task_idx < batch.num_tasks(); ++task_idx) { const BatchTask& task = batch.task(task_idx); index_flat(task_idx, 0) = task.guid; index_flat(task_idx, 1) = offset; index_flat(task_idx, 2) = offset + task.size(); offset += task.size(); } return Status::OK(); } // Looks up the batcher queue for 'queue_name'. If it did't previously exist, // creates it. Status LookupOrCreateBatcherQueue(const string& queue_name, BatcherQueue** queue) { mutex_lock l(batcher_queues_mu_); auto it = batcher_queues_.find(queue_name); if (it != batcher_queues_.end()) { *queue = it->second.get(); return Status::OK(); } std::unique_ptr<BatcherQueue> new_queue; auto process_batch_callback = [this](std::unique_ptr<Batch> batch) { if (fhandle_ == kInvalidHandle) { ProcessBatch(std::move(batch)); } else { ProcessFuncBatch(std::move(batch)); } }; TF_RETURN_IF_ERROR(batcher_->AddQueue(batcher_queue_options_, process_batch_callback, &new_queue)); *queue = new_queue.get(); batcher_queues_[queue_name] = std::move(new_queue); return Status::OK(); } // A batch scheduler, and options for creating queues. std::shared_ptr<Batcher> batcher_; Batcher::QueueOptions batcher_queue_options_; // A collection of batcher queues, keyed on queue name. // TODO(olston): Garbage-collect unused queues (perhaps simply remove empty // ones (with a time delay?); it's okay if they get recreated later). mutable mutex batcher_queues_mu_; std::map<string, std::unique_ptr<BatcherQueue>> batcher_queues_ GUARDED_BY(batcher_queues_mu_); std::vector<int32> allowed_batch_sizes_; FunctionLibraryRuntime::Handle fhandle_; }; class BatchFunctionKernel : public AsyncOpKernel { public: explicit BatchFunctionKernel(OpKernelConstruction* c) : AsyncOpKernel(c) { OP_REQUIRES_OK(c, c->GetAttr("container", &container_)); OP_REQUIRES_OK(c, c->GetAttr("shared_name", &shared_name_)); // If shared_name is not supplied, use name instead (prevent collisions by // default). if (shared_name_.empty()) { shared_name_ = name(); } OP_REQUIRES_OK(c, c->GetAttr("batching_queue", &batcher_queue_)); OP_REQUIRES_OK(c, c->GetAttr("num_batch_threads", &num_batch_threads_)); OP_REQUIRES_OK(c, c->GetAttr("max_batch_size", &max_batch_size_)); OP_REQUIRES_OK(c, c->GetAttr("batch_timeout_micros", &batch_timeout_micros_)); OP_REQUIRES_OK(c, c->GetAttr("max_enqueued_batches", &max_enqueued_batches_)); OP_REQUIRES_OK(c, c->GetAttr("allowed_batch_sizes", &allowed_batch_sizes_)); OP_REQUIRES_OK(c, ValidateAllowedBatchSizes()); auto lib = c->function_library(); OP_REQUIRES(c, lib != nullptr, errors::Internal("No function library")); NameAttrList func; OP_REQUIRES_OK(c, c->GetAttr("f", &func)); OP_REQUIRES_OK( c, lib->Instantiate(func.name(), AttrSlice(&func.attr()), &fhandle_)); } bool IsExpensive() override { return false; } void ComputeAsync(OpKernelContext* c, DoneCallback done) final { BatchResource* br; std::function<Status(BatchResource**)> creator = [this](BatchResource** r) { std::unique_ptr<BatchResource> new_resource; TF_RETURN_IF_ERROR( BatchResource::Create(num_batch_threads_, max_batch_size_, batch_timeout_micros_, max_enqueued_batches_, allowed_batch_sizes_, fhandle_, &new_resource)); *r = new_resource.release(); return Status::OK(); }; OP_REQUIRES_OK_ASYNC(c, c->resource_manager()->LookupOrCreate( container_, shared_name_, &br, creator), done); const Status status = br->RegisterInput(random::New64(), c, batcher_queue_, done); br->Unref(); OP_REQUIRES_OK_ASYNC(c, status, done); // Assume br calls done, so nothing to do here. } // Validates 'allowed_batch_sizes_'. The entries must increase monotonically, // and the last one must equal 'max_batch_size_'. Status ValidateAllowedBatchSizes() const { if (allowed_batch_sizes_.empty()) { return Status::OK(); } int32 last_size = 0; for (size_t i = 0; i < allowed_batch_sizes_.size(); ++i) { const int32 size = allowed_batch_sizes_.at(i); if (i > 0 && size <= last_size) { return errors::InvalidArgument( "allowed_batch_sizes entries must be monotonically increasing"); } if (i == allowed_batch_sizes_.size() - 1 && size != max_batch_size_) { return errors::InvalidArgument( "final entry in allowed_batch_sizes must equal max_batch_size"); } last_size = size; } return Status::OK(); } private: string container_; string shared_name_; string batcher_queue_; int32 num_batch_threads_; int32 max_batch_size_; int32 batch_timeout_micros_; int32 max_enqueued_batches_; std::vector<int32> allowed_batch_sizes_; FunctionLibraryRuntime::Handle fhandle_; }; REGISTER_KERNEL_BUILDER(Name("BatchFunction").Device(DEVICE_CPU), BatchFunctionKernel); class BatchKernel : public AsyncOpKernel { public: explicit BatchKernel(OpKernelConstruction* c) : AsyncOpKernel(c) { OP_REQUIRES_OK(c, c->GetAttr("container", &container_)); OP_REQUIRES_OK(c, c->GetAttr("shared_name", &shared_name_)); // If shared_name is not supplied, use name instead (prevent collisions by // default). if (shared_name_.empty()) { shared_name_ = name(); } OP_REQUIRES_OK(c, c->GetAttr("batching_queue", &batcher_queue_)); OP_REQUIRES_OK(c, c->GetAttr("num_batch_threads", &num_batch_threads_)); OP_REQUIRES_OK(c, c->GetAttr("max_batch_size", &max_batch_size_)); OP_REQUIRES_OK(c, c->GetAttr("batch_timeout_micros", &batch_timeout_micros_)); OP_REQUIRES_OK(c, c->GetAttr("max_enqueued_batches", &max_enqueued_batches_)); OP_REQUIRES_OK(c, c->GetAttr("allowed_batch_sizes", &allowed_batch_sizes_)); OP_REQUIRES_OK(c, ValidateAllowedBatchSizes()); } void ComputeAsync(OpKernelContext* c, DoneCallback done) final { BatchResource* br; std::function<Status(BatchResource**)> creator = [this](BatchResource** r) { std::unique_ptr<BatchResource> new_resource; TF_RETURN_IF_ERROR(BatchResource::Create( num_batch_threads_, max_batch_size_, batch_timeout_micros_, max_enqueued_batches_, allowed_batch_sizes_, kInvalidHandle, &new_resource)); *r = new_resource.release(); return Status::OK(); }; OP_REQUIRES_OK_ASYNC(c, c->resource_manager()->LookupOrCreate( container_, shared_name_, &br, creator), done); const Status status = br->RegisterInput(random::New64(), c, batcher_queue_, done); br->Unref(); OP_REQUIRES_OK_ASYNC(c, status, done); // Assume br calls done, so nothing to do here. } // Validates 'allowed_batch_sizes_'. The entries must increase monotonically, // and the last one must equal 'max_batch_size_'. Status ValidateAllowedBatchSizes() const { if (allowed_batch_sizes_.empty()) { return Status::OK(); } int32 last_size = 0; for (size_t i = 0; i < allowed_batch_sizes_.size(); ++i) { const int32 size = allowed_batch_sizes_.at(i); if (i > 0 && size <= last_size) { return errors::InvalidArgument( "allowed_batch_sizes entries must be monotonically increasing"); } if (i == allowed_batch_sizes_.size() - 1 && size != max_batch_size_) { return errors::InvalidArgument( "final entry in allowed_batch_sizes must equal max_batch_size"); } last_size = size; } return Status::OK(); } private: string container_; string shared_name_; string batcher_queue_; int32 num_batch_threads_; int32 max_batch_size_; int32 batch_timeout_micros_; int32 max_enqueued_batches_; std::vector<int32> allowed_batch_sizes_; }; REGISTER_KERNEL_BUILDER(Name("Batch").Device(DEVICE_CPU), BatchKernel); // A class encapsulating the state and logic for unbatching tensors. // // UnbatchResource keeps two data structures indexed by batch-key: one which has // the continuations for all concurrent kernels which are waiting for tensors // and another which has tensors which are waiting for their corresponding // kernels to run. Whenever a kernel runs, we either grab its tensor if it's // waiting already, or we insert it in the queue and then look at its tensor to // see if it can be used to dispatch any stored continuations. class UnbatchResource : public ResourceBase { public: explicit UnbatchResource(int32 timeout_micros) : timeout_micros_(timeout_micros), timeout_enforcer_(new serving::PeriodicFunction( [this] { EnforceTimeout(); }, 1000 /* 1 ms */)) {} ~UnbatchResource() override { // Tear down 'timeout_enforcer_' first, since it accesses other state in // this class. timeout_enforcer_ = nullptr; } string DebugString() const final { return "UnbatchResource"; } Status Compute(OpKernelContext* context, AsyncOpKernel::DoneCallback done) { const Tensor& data_t = context->input(0); const Tensor& batch_index_t = context->input(1); if (batch_index_t.shape().dim_size(0) > data_t.shape().dim_size(0)) { return errors::InvalidArgument( "Wrong shape for index tensor. Expected 0th dimension size to be no " "greater than ", data_t.shape().dim_size(0), "; Got: ", batch_index_t.shape().dim_size(0), "."); } if (batch_index_t.shape().dim_size(1) != 3) { return errors::InvalidArgument( "Wrong shape for index tensor. Expected 1st dimension size to be 3 ; " "Got: ", batch_index_t.shape().dim_size(1), "."); } const int64 batch_key = context->input(2).scalar<int64>()(); const bool nonempty_input = batch_index_t.dim_size(0) > 0; // If we have a non-empty tensor, slice it up. // (It is important to do this outside of the critical section below.) // The following variables are populated iff 'nonempty_input==true'. std::vector<int64> sizes; std::vector<int64> batch_keys; std::vector<Tensor> split_inputs; if (nonempty_input) { auto batch_indices = batch_index_t.shaped<int64, 2>({batch_index_t.dim_size(0), 3}); for (int i = 0; i < batch_index_t.dim_size(0); ++i) { sizes.push_back(batch_indices(i, 2) - batch_indices(i, 1)); batch_keys.push_back(batch_indices(i, 0)); } const DataType type = data_t.dtype(); switch (type) { #define CASE(type) \ case DataTypeToEnum<type>::value: \ TF_RETURN_IF_ERROR(Split<type>(context, data_t, sizes, &split_inputs)); \ break; TF_CALL_ALL_TYPES(CASE); #undef CASE default: return errors::InvalidArgument("Unsupported data type: ", type); } } // Critical section. std::vector<AsyncOpKernel::DoneCallback> done_callbacks_to_call; Status status = [&]() -> Status { mutex_lock ml(mu_); // Check to see whether the tensor we want is already ready. auto tensor_it = waiting_tensors_.find(batch_key); if (tensor_it != waiting_tensors_.end()) { context->set_output(0, tensor_it->second.tensor); waiting_tensors_.erase(tensor_it); done_callbacks_to_call.push_back(done); return Status::OK(); } const uint64 deadline_micros = Env::Default()->NowMicros() + timeout_micros_; // Add ourselves to the waitlist for tensors. if (!waiting_callbacks_ .emplace(batch_key, WaitingCallback{deadline_micros, context, done}) .second) { return errors::AlreadyExists( "Multiple session runs with the same batch key."); } // If we have a non-empty tensor, finish the waitlisted runs, // and store any remaining pieces. if (nonempty_input) { for (size_t i = 0; i < batch_keys.size(); ++i) { auto runs_it = waiting_callbacks_.find(batch_keys[i]); if (runs_it != waiting_callbacks_.end()) { runs_it->second.context->set_output(0, split_inputs[i]); done_callbacks_to_call.push_back(runs_it->second.done); waiting_callbacks_.erase(runs_it); } else { // Note: the deadline here is in case we are arriving late and the // kernel that should rendezvous with this tensor has already waited // and timed out. if (!waiting_tensors_ .emplace(batch_keys[i], WaitingTensor{deadline_micros, split_inputs[i]}) .second) { return errors::AlreadyExists( "Multiple tensors returned for same batch key."); } } } } return Status::OK(); }(); for (const AsyncOpKernel::DoneCallback& done_callback : done_callbacks_to_call) { done_callback(); } return status; } private: // Evicts waiting tensors and callbacks that have exceeded their deadline. void EnforceTimeout() { const uint64 now = Env::Default()->NowMicros(); std::vector<WaitingCallback> evicted_callbacks; { mutex_lock ml(mu_); for (auto it = waiting_tensors_.begin(); it != waiting_tensors_.end();) { const WaitingTensor& waiting_tensor = it->second; if (waiting_tensor.deadline_micros < now) { it = waiting_tensors_.erase(it); } else { ++it; } } for (auto it = waiting_callbacks_.begin(); it != waiting_callbacks_.end();) { const WaitingCallback& waiting_callback = it->second; if (waiting_callback.deadline_micros < now) { evicted_callbacks.push_back(waiting_callback); it = waiting_callbacks_.erase(it); } else { ++it; } } } for (const WaitingCallback& evicted_callback : evicted_callbacks) { evicted_callback.context->CtxFailureWithWarning(errors::DeadlineExceeded( "Batched data did not arrive within timeout window.")); evicted_callback.done(); } } struct WaitingTensor { uint64 deadline_micros; Tensor tensor; }; struct WaitingCallback { uint64 deadline_micros; OpKernelContext* context; AsyncOpKernel::DoneCallback done; }; const int32 timeout_micros_; mutex mu_; // Maps keyed by BatchKey of tensors waiting for callbacks and callbacks // waiting for tensors. std::unordered_map<int64, WaitingTensor> waiting_tensors_ GUARDED_BY(mu_); std::unordered_map<int64, WaitingCallback> waiting_callbacks_ GUARDED_BY(mu_); // A thread that evicts waiting tensors and callbacks that have exceeded their // deadline. std::unique_ptr<serving::PeriodicFunction> timeout_enforcer_; }; class UnbatchKernel : public AsyncOpKernel { public: explicit UnbatchKernel(OpKernelConstruction* c) : AsyncOpKernel(c) { OP_REQUIRES_OK(c, c->GetAttr("container", &container_)); OP_REQUIRES_OK(c, c->GetAttr("shared_name", &shared_name_)); // If shared_name is not supplied, use name instead (prevent collisions by // default). if (shared_name_.empty()) { shared_name_ = name(); } OP_REQUIRES_OK(c, c->GetAttr("timeout_micros", &timeout_micros_)); } void ComputeAsync(OpKernelContext* c, DoneCallback done) final { UnbatchResource* ubr; std::function<Status(UnbatchResource**)> creator = [this](UnbatchResource** r) { *r = new UnbatchResource(timeout_micros_); return Status::OK(); }; OP_REQUIRES_OK_ASYNC(c, c->resource_manager()->LookupOrCreate( container_, shared_name_, &ubr, creator), done); auto status = ubr->Compute(c, done); ubr->Unref(); OP_REQUIRES_OK_ASYNC(c, status, done); // Assume ubr calls done, so nothing to do here. } private: string container_; string shared_name_; int32 timeout_micros_; }; REGISTER_KERNEL_BUILDER(Name("Unbatch").Device(DEVICE_CPU), UnbatchKernel); // A class encapsulating the state and logic for batching tensors // deterministically for the gradient of unbatch. class UnbatchGradResource : public ResourceBase { public: UnbatchGradResource() {} string DebugString() const final { return "UnbatchGradResource"; } // Flushes the information for one batch, given its context and done // callback. Clears all information about it from the available_tensors_. Status OutputBatch(OpKernelContext* context, const AsyncOpKernel::DoneCallback& done) EXCLUSIVE_LOCKS_REQUIRED(mu_) { const Tensor& batch_index_t = context->input(1); auto batch_index = batch_index_t.shaped<int64, 2>({batch_index_t.dim_size(0), 3}); std::vector<Tensor> tensors; for (int i = 0; i < batch_index_t.dim_size(0); ++i) { auto available_it = available_tensors_.find(batch_index(i, 0)); if (available_it == available_tensors_.end()) { return errors::Internal("bad bookkeeping of available tensors."); } tensors.push_back(available_it->second); available_tensors_.erase(available_it); } const DataType type = tensors[0].dtype(); Tensor concatenated_tensor; switch (type) { #define CASE(type) \ case DataTypeToEnum<type>::value: \ TF_RETURN_IF_ERROR(Concat<type>(context, tensors, &concatenated_tensor)); \ context->set_output(0, concatenated_tensor); \ break; TF_CALL_ALL_TYPES(CASE); #undef CASE default: return errors::InvalidArgument("Unsupported data type: ", type); } done(); return Status::OK(); } // Ingests data from one invocation of the op. Status Compute(OpKernelContext* context, const AsyncOpKernel::DoneCallback& done) { const Tensor& data_t = context->input(0); const Tensor& batch_index_t = context->input(1); const Tensor& grad_t = context->input(2); mutex_lock ml(mu_); const int64 batch_key = context->input(3).scalar<int64>()(); // Mark our tensor as available. if (!available_tensors_.emplace(batch_key, grad_t).second) { return errors::InvalidArgument("Two runs with the same batch key."); } // Check whether we have a valid input tensor and, if so, create its // dispatch logic. if (data_t.NumElements() > 0) { if (batch_index_t.NumElements() == 0) { return errors::InvalidArgument( "batch_index is empty while the tensor isn't."); } std::unordered_set<int64> missing_tensors; const auto batch_index = batch_index_t.shaped<int64, 2>({batch_index_t.dim_size(0), 3}); for (int i = 0; i < batch_index_t.dim_size(0); ++i) { const int64 batch_key = batch_index(i, 0); if (available_tensors_.find(batch_key) == available_tensors_.end()) { missing_tensors.emplace(batch_key); } } if (missing_tensors.empty()) { return OutputBatch(context, done); } if (!available_batches_ .emplace(batch_key, Batch{missing_tensors, context, done}) .second) { return errors::InvalidArgument( "Batch key with valid batch used twice."); } for (const int64 i : missing_tensors) { if (!desired_tensor_to_batch_map_.emplace(i, batch_key).second) { return errors::InvalidArgument( "Missing tensor wanted by more than one batch."); } } } else { // If we don't have a valid input tensor we can output an empty tensor and // call our done closure. TensorShape output_shape(grad_t.shape()); output_shape.set_dim(0, 0); Tensor* output = nullptr; TF_RETURN_IF_ERROR(context->allocate_output(0, output_shape, &output)); done(); } // Search to see whether our tensor is desired by any existing batch. auto desire_it = desired_tensor_to_batch_map_.find(batch_key); if (desire_it != desired_tensor_to_batch_map_.end()) { // Mark our tensor as no longer missing. auto batch_it = available_batches_.find(desire_it->second); desired_tensor_to_batch_map_.erase(desire_it); if (batch_it == available_batches_.end()) { return errors::InvalidArgument("Batch no longer exists."); } batch_it->second.missing_tensors.erase(batch_key); // If all tensors are available we should concatenate them and dispatch // the batch. if (batch_it->second.missing_tensors.empty()) { TF_RETURN_IF_ERROR( OutputBatch(batch_it->second.context, batch_it->second.done)); available_batches_.erase(batch_it); } } return Status::OK(); } private: mutex mu_; // Represents a still-incomplete batch of tensors. When all tensors become // available they will be concatenated in the right order and sent through the // context. struct Batch { // Batch keys for tensors which are still missing from this batch. When this // is empty the Tensors can be concatenated and forwarded. std::unordered_set<int64> missing_tensors; // Context and callback for the session responsible for finishing this // batch. OpKernelContext* context; AsyncOpKernel::DoneCallback done; }; // Map from batch key of the session which will output the batched gradients // to still-incomplete batches. std::unordered_map<int64, Batch> available_batches_; // Map from batch key to tensors which are waiting for their batches to be // available. std::unordered_map<int64, Tensor> available_tensors_; // Map from batch key of a tensor which is not yet available to the batch key // of the batch to which it belongs. std::unordered_map<int64, int64> desired_tensor_to_batch_map_; }; class UnbatchGradKernel : public AsyncOpKernel { public: explicit UnbatchGradKernel(OpKernelConstruction* c) : AsyncOpKernel(c) { OP_REQUIRES_OK(c, c->GetAttr("container", &container_)); OP_REQUIRES_OK(c, c->GetAttr("shared_name", &shared_name_)); // If shared_name is not supplied, use name instead (prevent collisions by // default). if (shared_name_.empty()) { shared_name_ = name(); } } void ComputeAsync(OpKernelContext* c, DoneCallback done) final { UnbatchGradResource* ubr; std::function<Status(UnbatchGradResource**)> creator = [](UnbatchGradResource** r) { *r = new UnbatchGradResource(); return Status::OK(); }; OP_REQUIRES_OK_ASYNC(c, c->resource_manager()->LookupOrCreate( container_, shared_name_, &ubr, creator), done); Status status = ubr->Compute(c, done); ubr->Unref(); OP_REQUIRES_OK_ASYNC(c, status, done); // Assume ubr calls done, so nothing to do here. } private: string container_; string shared_name_; }; REGISTER_KERNEL_BUILDER(Name("UnbatchGrad").Device(DEVICE_CPU), UnbatchGradKernel); } // namespace tensorflow
[ "gardener@tensorflow.org" ]
gardener@tensorflow.org
3673ceceacbedbfd73d900e7682316e77d075dc7
5fdca34122c2f2c6aa3bea8a587c9b6f1a4dbe0f
/PWGLF/NUCLEX/Nuclei/Nucleipp/AliLnSecondaries.h
ce1a45d4cf1404cb6720fd5b4e9a8a936dece9ae
[]
permissive
ALICEHLT/AliPhysics
df9be958613fbec367de23d07900bdfaa1bd8c2b
ac60d90f9a9c28b789c842979573a34485966b8f
refs/heads/dev
2021-01-23T02:06:10.419609
2018-05-14T19:20:25
2018-05-14T19:20:25
85,963,503
0
7
BSD-3-Clause
2018-02-21T12:27:23
2017-03-23T15:06:08
C++
UTF-8
C++
false
false
3,685
h
#ifndef ALILNSECONDARIES_H #define ALILNSECONDARIES_H /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * * See cxx source for full Copyright notice */ // removal of secondaries using DCA templates // author: Eulogio Serradilla <eulogio.serradilla@cern.ch> #include <TObject.h> #include <TString.h> class TString; class TH1D; class TH2D; class RooWorkspace; class RooDataSet; class RooRealVar; class TF1; class TFractionFitter; class AliLnSecondaries: public TObject { public: AliLnSecondaries(const TString& particle, const TString& dataFilename, const TString& simuFilename, const TString& outputFilename, const TString& otag); virtual ~AliLnSecondaries(); const TString* GetOutputFilename() const { return &fOutputFilename; } Int_t Exec(); void SetParticle(const TString& particle) { fParticle = particle; } void SetOutputTag(const TString& tag) { fOutputTag = tag; } void SetCorBins(Double_t min, Double_t max) { fPtMin = min; fPtMax = max; } void SetDCAxyInterval(Double_t lowdca, Double_t hidca) { fMinDCAxy = lowdca; fMaxDCAxy = hidca; } void SetNBin(Int_t nbin) { fNbin = nbin; } void SetProcedure(Int_t prod) { fFracProc=prod; } void SetAntiNucleusAsTemplate(Bool_t flag=1) { fANucTemplate = flag; } void SetMatDCAxyModel(Int_t model) { fMatDCAxyMod = model; } void SetScalingFactors(Double_t mat, Double_t fd) { fScMat=mat; fScFd=fd; } void SetAddFakeTracks(Bool_t flag=1) { fAddFakeTracks = flag; } enum { kTFractionFitter=0, kMonteCarlo }; enum { kGeantDCAxy=0, kFlatDCAxy }; private: AliLnSecondaries(const AliLnSecondaries& other); AliLnSecondaries& operator=(const AliLnSecondaries& other); void GetFraction(TH1D* hPrimPt) const; void GetFraction(TH1D* hPrimFracPt, TH1D* hSecFracPt, const TH2D* hDCAxyPt, const TH2D* hMCDCAxyPt, const TH2D* hPrimDCAxyPt, const TH2D* hSecDCAxyPt, const TString& secName) const; void GetFraction(TH1D* hFracPt[3], const TH2D* hDCAxyPt, const TH2D* hMCDCAxyPt, const TH2D* hPrimDCAxyPt, const TH2D* hMatDCAxyPt, const TH2D* hFdwnDCAxyPt) const; Int_t GetTFFfractions(Double_t* frac, Double_t* err, TH1D* hData, TH1D* hPrim, TH1D* hMat, TH1D* hFdwn, Int_t ibin) const; Int_t GetTFFfractions(Double_t* frac, Double_t* err, TH1D* hData, TH1D* hPrim, TH1D* hSec, Int_t ibin, const TString& secName) const; TH2D* GetFlatDCAxyPt(Double_t norm, const TH2D* hDCAxyPt, const TString& name) const; TF1* GetMatFraction(const TString& name) const; TF1* GetFdwnFraction(const TString& name) const; TH1D* ZeroClone(const TH1D* h, const TString& name) const; void WriteTFFdebug(const TH1D* hData, TFractionFitter* fit, Int_t status, Int_t ibin, const char* contrib[], Double_t* frac, Int_t kmax) const; private: TString fParticle; // particle TString fDataFilename; // data filename TString fSimuFilename; // simulation filename TString fOutputFilename; // output filename TString fOutputTag; // tag for the ouput Double_t fPtMin; // minimum pt value for the corrections Double_t fPtMax ; // maximum pt value for the corrections Int_t fNbin; // for rebinning DCA distributions Double_t fMinDCAxy; // low DCAxy value Double_t fMaxDCAxy; // high DCAxy value Int_t fFracProc; // procedure for estimating the fractions Int_t fMatDCAxyMod; // DCAxy model for secondaries from materials Bool_t fANucTemplate; // enable antinucleus as template for primaries Double_t fScMat; // scaling factor for material fraction Double_t fScFd; // scaling factor for feed-down fraction Bool_t fAddFakeTracks; // add fake tracks to the templates ClassDef(AliLnSecondaries,1) }; #endif // ALILNSECONDARIES_H
[ "eserradi@f7af4fe6-9843-0410-8265-dc069ae4e863" ]
eserradi@f7af4fe6-9843-0410-8265-dc069ae4e863
c7bc5bc9306f04eb2056331690709011f49148d9
5d6dc8314cc0795ab1ba5d1ce8ca404bc489589f
/Lab/Lehr_Lab_03-28-2017/Game_of_Craps_V3/main.cpp
b5799147159bde651119178ba523c9c4b0475dd7
[]
no_license
TRomero15/RomeroTristan_CS5_Spring2017
0f338067302fd6f2e111508f5eebb2b13bef38c3
abfe7a4f496ac4a61776df90b5fc25234cffa2f3
refs/heads/master
2021-03-13T04:00:22.256880
2017-04-04T19:57:35
2017-04-04T19:57:35
84,239,360
0
0
null
null
null
null
UTF-8
C++
false
false
2,714
cpp
/* * File: Sum of dice * Author: Tristan Romero * Created on 28 March 2017 * Purpose: */ //System Libraries #include <iostream> //input - output library #include <ctime> //time for rand #include <cstdlib> //srand to get the seed #include <fstream> //file I/O #include <iomanip> //format the output using namespace std; //Name-space under which system libraries exist //User Libraries //Global Constants const float PERCENT=100.0f;//conversion to percent //Function Prototypes //Execution begins here int main(int argc, char** argv) { //set the random number seed srand(static_cast<unsigned int>(time(0))); //declare variables ifstream in; int nGames, wins=0 , losses=0; int mxThrw=0, numThrw=0; //initialize variables in.open("GameInfo.day"); while(in>>nGames);//last value becomes the number of games //Play the Game for(int game=1;game<=nGames;game++){ //throw dice and sum int gmThrw=1; char die1=rand() %6+1;//[1,6] char die2=rand() %6+1; //[1,6] char sum1= die1 +die2; //determine wins and losses switch(sum1){ case 7: case 11:wins++;break; case 2: case 3: case 12:losses++;break; default:{ //loop until a 7 or previous sum is thrown bool thrwAgn=true; do{ //throw the dice again char die1=rand()%6+1;//{1,6} char die2=rand()%6+1;//{1,6} char sum2=die1+die2; gmThrw++; if(sum2==7){ losses++; thrwAgn=false; }else if(sum1==sum2){ wins++; thrwAgn=false; } }while(thrwAgn);//do-while } } numThrw+=gmThrw; if(mxThrw<gmThrw)mxThrw=gmThrw;//Independent if } //Output the transformed data cout<<" total number of games = "<<nGames<<endl; cout<<" Number of games won = "<<wins<<endl; cout<<" Number of games lost = "<<losses<<endl; cout<<" Total wins and losses ="<<wins + losses<<endl; cout<<" Percentage wins = " <<static_cast<float>(wins)/nGames*PERCENT<<" % "<<endl; cout<<"Percentage losses = " <<static_cast<float>(losses)/nGames*PERCENT<<" % "<<endl; cout<<" Maximum number of throws in a game = "<<mxThrw<<endl; cout<<" Average throw per game = "<<static_cast<float>(numThrw)/nGames<<endl; //Exit stage right! in.close(); return 0; }
[ "tristanromero71@yahoo.com" ]
tristanromero71@yahoo.com
d901508778e2171e82d3d89d8250d20285e2dae2
8bd6ed7ce9811e2c8682e057e906780834e825a5
/SimpleOpenGLQtViewer.h
4dc8451e6f00505958c1071ab9c25aba04b0be4c
[]
no_license
deepaksamuel/simple
5a20651dc243ffe9638b48d91904b36cdc309689
5f88639bd81bfcdad1fb8b87f2c345388877baf2
refs/heads/master
2023-01-28T23:47:22.947569
2023-01-13T12:50:09
2023-01-13T12:50:09
210,591,616
20
4
null
null
null
null
UTF-8
C++
false
false
15,234
h
#ifndef SIMPLEOPENGLQTVIEWER_H #define SIMPLEOPENGLQTVIEWER_H // File modified by Deepak Samuel on 25 Sep 2019 // // ******************************************************************** // * 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. * // ******************************************************************** // // // // // G4OpenGLQtViewer : Class to provide WindowsNT specific // functionality for OpenGL in GEANT4 // // 30/06/2014 : M.Kelsey : Change QPixmap objects to pointers #include "globals.hh" #include "G4OpenGLViewer.hh" #include "G4PhysicalVolumeModel.hh" #include "G4AutoLock.hh" #include <qobject.h> #include <qpoint.h> #include <qpixmap.h> #include <Simple.h> class G4OpenGLSceneHandler; class G4UImanager; class G4Text; class G4UIcommand; class QGLWidget; class QDialog; class QTextEdit; class QContextMenuEvent; class QMenu; class QImage; class QAction; class QTabWidget; class QMouseEvent; class QKeyEvent; class QWheelEvent; class QProcess; class QTime; class QVBoxLayout; class QPushButton; class QSlider; class QTreeWidgetItem; class QTreeWidget; class QColor; class G4OpenGLSceneHandler; class G4OpenGLQtMovieDialog; class QLineEdit; class QSignalMapper; class G4UIQt; class QTableWidget; class QTableWidgetItem; class QScrollArea; class QSplitter; class SimpleOpenGLQtViewer: public QObject, virtual public G4OpenGLViewer { Q_OBJECT typedef G4PhysicalVolumeModel::G4PhysicalVolumeNodeID PVNodeID; typedef std::vector<PVNodeID> PVPath; public: SimpleOpenGLQtViewer (G4OpenGLSceneHandler& scene); virtual ~SimpleOpenGLQtViewer (); #ifdef G4MULTITHREADED // In MT mode these functions are called in the following order for each run: // Called on the master thread before starting the vis sub-thread. virtual void DoneWithMasterThread (); // Called on the master thread after starting the vis sub-thread. virtual void MovingToVisSubThread (); // Called on the vis sub-thread when waiting for events. virtual void SwitchToVisSubThread (); // Called on the vis sub-thread when all events have been processed. virtual void DoneWithVisSubThread (); // Called on the vis sub-thread when all events have been processed. // virtual void MovingToMasterThread (); Not used in G4OpenGLQtViewer. // Called on the master thread after the vis sub-thread has terminated. virtual void SwitchToMasterThread (); #endif private: SimpleOpenGLQtViewer (const SimpleOpenGLQtViewer&); SimpleOpenGLQtViewer& operator= (const SimpleOpenGLQtViewer&); public: virtual void updateQWidget()=0; void updateSceneTreeWidget(); void updateViewerPropertiesTableWidget(); void updatePickInfosWidget(int, int); QString setEncoderPath(QString path); QString getEncoderPath(); QString setTempFolderPath(QString path); QString getTempFolderPath(); QString setSaveFileName(QString path); QString getSaveFileName(); bool isRecording(); bool isStopped(); bool isPaused(); bool isEncoding(); bool isWaiting(); bool isFailed(); void setWaiting(); bool isBadEncoder(); bool isBadOutput(); bool isBadTmp(); bool isSuccess(); void setBadTmp(); void setBadOutput(); void setBadEncoder(); bool isReadyToEncode(); void resetRecording(); void encodeVideo(); void stopVideo(); void saveVideo(); bool generateMpegEncoderParameters(); void displayRecordingStatus(); void DrawText(const G4Text&); void ResetView (); void addPVSceneTreeElement(const G4String& model, G4PhysicalVolumeModel* pPVModel, int currentPVPOIndex); void addNonPVSceneTreeElement(const G4String& model, int currentPVPOIndex, const std::string& modelDescription, const G4Visible& visible); bool isTouchableVisible(int POindex); void clearTreeWidget(); bool exportImage(std::string name="", int width=-1, int height=-1); public: void G4MousePressEvent(QMouseEvent *event); void G4wheelEvent (QWheelEvent * event); void G4keyPressEvent (QKeyEvent * event); void G4keyReleaseEvent (QKeyEvent * event); void G4MouseDoubleClickEvent(); void G4MouseReleaseEvent(QMouseEvent *evnt); void G4MouseMoveEvent(QMouseEvent *event); protected: void CreateGLQtContext (); virtual void CreateMainWindow (QGLWidget*,const QString&); void G4manageContextMenuEvent(QContextMenuEvent *e); void rotateQtScene(float, float); void rotateQtSceneToggle(float, float); void moveScene(float, float, float,bool); void FinishView(); void updateKeyModifierState(const Qt::KeyboardModifiers&); void displaySceneTreeComponent(); G4Colour getColorForPoIndex(int poIndex); // So that privately accumulated vis attributes modifiers may be // concatenated with the standard vis attributes modifiers for commands // such as /vis/viewer/set/all and /vis/viewer/save... const std::vector<G4ModelingParameters::VisAttributesModifier>* GetPrivateVisAttributesModifiers() const; bool isCurrentWidget(); protected: QWidget* fGLWidget; bool hasPendingEvents(); void savePPMToTemp(); int fRecordFrameNumber; bool fHasToRepaint; bool fUpdateGLLock; bool fQGLWidgetInitialiseCompleted; bool fPaintEventLock; // Flag to indicate that action was initiated by interaction (mouse // click) on the scene tree. It is used and reset in // G4OpenGLStoredQtViewer::CompareForKernelVisit to prevent rebuild // in this case. bool fMouseOnSceneTree; private: enum RECORDING_STEP {WAIT,START,PAUSE,CONTINUE,STOP,READY_TO_ENCODE,ENCODING,FAILED,SUCCESS,BAD_ENCODER,BAD_OUTPUT,BAD_TMP,SAVE}; void createPopupMenu(); void createRadioAction(QAction *,QAction *, const std::string&,unsigned int a=1); void rescaleImage(int, int); bool printPDF(const std::string,int,QImage); void showMovieParametersDialog(); void initMovieParameters(); QString createTempFolder(); QString removeTempFolder(); void setRecordingStatus(RECORDING_STEP); void setRecordingInfos(const QString&); QString getProcessErrorMsg(); QWidget* getParentWidget(); bool parseAndInsertInSceneTree(QTreeWidgetItem *, G4PhysicalVolumeModel* pPVModel, unsigned int fullPathIndex, const QString& parentRoot, unsigned int currentIndex, int currentPVPOIndex); void setCheckComponent(QTreeWidgetItem* item,bool check); void createSceneTreeComponent(); void createSceneTreeWidget(); void createViewerPropertiesWidget(); void createPickInfosWidget(); bool parseAndCheckVisibility(QTreeWidgetItem * treeNode,int POindex); QTreeWidgetItem* createTreeWidgetItem(const PVPath& fullPath, const QString& name, int copyNb, int POIndex, const QString& logicalName, Qt::CheckState state, QTreeWidgetItem * treeNode, const G4Colour& color); QString getModelShortName(const G4String& modelShortName); void cloneSceneTree(QTreeWidgetItem* rootItem); void changeDepthOnSceneTreeItem(double lookForDepth,double currentDepth,QTreeWidgetItem* item); void updatePositivePoIndexSceneTreeWidgetQuickMap(int POindex,QTreeWidgetItem* item); void changeQColorForTreeWidgetItem(QTreeWidgetItem* item, const QColor&); bool isSameSceneTreeElement(QTreeWidgetItem* parentOldItem,QTreeWidgetItem* parentNewItem); void changeOpenCloseVisibleHiddenSelectedColorSceneTreeElement(QTreeWidgetItem* subItem); bool isPVVolume(QTreeWidgetItem* item); QTreeWidgetItem* cloneWidgetItem(QTreeWidgetItem* item); void clearSceneTreeSelection(QTreeWidgetItem*); void clearTreeWidgetElements(QTreeWidgetItem* item); // Get the tree wigdet item for POindex if exists QTreeWidgetItem* getTreeWidgetItem(int POindex); // Get the old tree wigdet item for POindex if exists QTreeWidgetItem* getOldTreeWidgetItem(int POindex); // parse the scene tree and return a string of status that can be saved std::string parseSceneTreeAndSaveState(); std::string parseSceneTreeElementAndSaveState(QTreeWidgetItem* item, unsigned int level); QString GetCommandParameterList (const G4UIcommand *aCommand); void changeColorAndTransparency(GLuint index, G4Color color); #ifdef G4MULTITHREADED inline void SetQGLContextVisSubThread(QThread *th) { fQGLContextVisSubThread = th; } inline void SetQGLContextMainThread(QThread *th) { fQGLContextMainThread = th; } #endif QMenu *fContextMenu; QPoint fLastPos1; QPoint fLastPos2; QPoint fLastPos3; QPoint fLastPickPoint; // delta of depth move. This delta is put in % of the scene view G4double fDeltaDepth; // delta of zoom move. This delta is put in % of the scene view G4double fDeltaZoom; // To ensure key event are keep one by one bool fHoldKeyEvent; // To ensure move event are keep one by one bool fHoldMoveEvent; // To ensure rotate event are keep one by one bool fHoldRotateEvent; bool fAutoMove; QString fEncoderPath; QString fTempFolderPath; QString fMovieTempFolderPath; QString fSaveFileName; QString fParameterFileName; QAction *fMouseRotateAction; QAction *fMouseMoveAction; QAction *fMousePickAction; QAction *fMouseZoomInAction; QAction *fMouseZoomOutAction; QAction *fFullScreenOn; QAction *fFullScreenOff; QAction *fDrawingWireframe; QAction *fDrawingLineRemoval; QAction *fDrawingSurfaceRemoval; QAction *fDrawingLineSurfaceRemoval; QAction *fProjectionOrtho; QAction *fProjectionPerspective; G4OpenGLQtMovieDialog* fMovieParametersDialog; RECORDING_STEP fRecordingStep; QProcess *fProcess; QTime *fLastEventTime; int fSpinningDelay; int fNbMaxFramesPerSec; float fNbMaxAnglePerSec; int fLaunchSpinDelay; QWidget* fUISceneTreeWidget; QWidget* fUIViewerPropertiesWidget; QWidget* fUIPickInfosWidget; bool fNoKeyPress; bool fAltKeyPress; bool fControlKeyPress; bool fShiftKeyPress; bool fBatchMode; bool fCheckSceneTreeComponentSignalLock; bool fViewerPropertiesTableWidgetIsInit; QTreeWidget* fSceneTreeComponentTreeWidget; // This is only use to hold the old "expand" value, see file:///Developer/Documentation/Qt/html/qtreewidgetitem.html#setExpanded QWidget* fSceneTreeWidget; bool fPVRootNodeCreate; QLineEdit* fFilterOutput; QString fFileSavePath; int fNbRotation ; int fTimeRotation; QString fTouchableVolumes; QDialog* fShortcutsDialog; QTableWidget *fViewerPropertiesTableWidget; QWidget* fPickInfosWidget; QScrollArea* fPickInfosScrollArea; int fTreeWidgetInfosIgnoredCommands; QPushButton * fSceneTreeButtonApply; QTextEdit *fShortcutsDialogInfos; QSlider* fSceneTreeDepthSlider; std::map <int, PVPath > fTreeItemModels; std::map <int, PVPath > fOldTreeItemModels; // quick scene tree map std::map <int, QTreeWidgetItem*> fPositivePoIndexSceneTreeWidgetQuickMap; // old scene tree map std::map <int, QTreeWidgetItem*> fOldPositivePoIndexSceneTreeWidgetQuickMap; std::vector <QTreeWidgetItem*> fOldNullPoIndexSceneTreeWidgetQuickVector; // old vis attr color map std::map <int, QColor> fOldVisAttrColorMap; unsigned int fSceneTreeDepth; QTreeWidgetItem* fModelShortNameItem; int fNumber; int fMaxPOindexInserted; G4UIQt* fUiQt; // Simple* simpleUI; QSignalMapper *fSignalMapperMouse; QSignalMapper *fSignalMapperSurface; QSignalMapper *fSignalMapperPicking; // quick map index to find next item std::map <int, QTreeWidgetItem*>::const_iterator fLastSceneTreeWidgetAskForIterator; std::map <int, QTreeWidgetItem*>::const_iterator fLastSceneTreeWidgetAskForIteratorEnd; // quick map index to find next item std::map <int, QTreeWidgetItem*>::const_iterator fOldLastSceneTreeWidgetAskForIterator; std::map <int, QTreeWidgetItem*>::const_iterator fOldLastSceneTreeWidgetAskForIteratorEnd; // icons QPixmap* fTreeIconOpen; QPixmap* fTreeIconClosed; QPixmap* fSearchIcon; int fLastExportSliderValue; G4Color fLastHighlightColor; GLuint fLastHighlightName; bool fIsDeleting; #ifdef G4MULTITHREADED QThread* fQGLContextVisSubThread; QThread* fQGLContextMainThread; #endif // safe to use in serial mode G4AutoLock* lWaitForVisSubThreadQtOpenGLContextInitialized; G4AutoLock* lWaitForVisSubThreadQtOpenGLContextMoved; public Q_SLOTS : void startPauseVideo(); protected Q_SLOTS : void updateToolbarAndMouseContextMenu(); private Q_SLOTS : void actionSaveImage(); void actionChangeBackgroundColor(); void actionChangeTextColor(); void actionChangeDefaultColor(); void actionMovieParameters(); void showShortcuts(); void toggleMouseAction(int); void toggleSurfaceAction(int); void toggleProjection(bool); void toggleTransparency(bool); void toggleAntialiasing(bool); void toggleHaloing(bool); void toggleAux(bool); void toggleHiddenMarkers(bool); void toggleFullScreen(bool); void processEncodeFinished(); void processLookForFinished(); void processEncodeStdout(); void sceneTreeComponentItemChanged(QTreeWidgetItem* item, int id); void toggleSceneTreeComponentPickingCout(int); void togglePicking(); void currentTabActivated(int); // action trigger by a click on a component scene tree void sceneTreeComponentSelected(); void changeDepthInSceneTree(int); void changeSearchSelection(); void changeColorAndTransparency(QTreeWidgetItem* item,int val); void tableWidgetViewerSetItemChanged(QTableWidgetItem *); }; #endif // SIMPLEOPENGLQTVIEWER_H
[ "deepaksamuel@gmail.com" ]
deepaksamuel@gmail.com
16d8e32104d073c45dc921225fb538d2c5b69ef2
f96a28c630ff0539bf4af998618540046656c4bb
/VS4/ConsoleApplication1/ConsoleApplication1/bookbot.h
4a51877f3b0d5cc8f196dc04f95d20b8c6f16f81
[]
no_license
viskantas/University-Year-1-Cpp-Language
413bc47ad8509c13342b91af23cbc8096ea84891
cd103e06831ef2dc27a39fd6ec3f800e7a9c4269
refs/heads/master
2022-04-29T17:11:00.150302
2017-04-06T15:47:03
2017-04-06T15:47:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,901
h
#ifndef BOOKBOT_H_INCLUDED #define BOOKBOT_H_INCLUDED #include "book.h" #include "bookpile.h" class BookBot{ public: //function to pick up a book from a BookPile bool PickUpBook(BookPile& p){ //if BookPile is empty, return false and print out an error if (p.GetNumBooks()==0){ cout<<"BOOKBOT ERROR: BookPile given is empty"<<endl; return false; } //if BookBot already holds a book, return false and print out an error else if (book.title!="" || book.author!=""){ cout<<"BOOKBOT ERROR: BookBot already holds a book"<<endl; return false; } //else, picks up a book else{ //gets the top book from a BookPile book=p.GetNextBook(); //removes the picked book from the BookPile p.RemoveBook(); return true; } } //function to place down a book to a BookPile bool PlaceDownBook(BookPile& p){ //if BookBot doesnt hold a book, print out an error and return false if (book.title=="" && book.author==""){ cout<<"BOOKBOT ERROR: BookBot doesn't hold a book"<<endl; return false; } //else, put down a book to a BookPile else { //ads the book to a BookPile p.AddBook(book); //BookBot's book assigned to an empty Book book = Book(); return true; } } //prints out the BookBot's book void ListContents(){ //if there is a book, print it out if (book.title!="" || book.author!="") cout<<"\""<<book.title<<"\" by "<<book.author<<", category: "<<book.category<<endl; //else print out an error else cout<<"BOOKBOT ERROR: BookBot does not hold a book"<<endl; } protected: Book book; }; #endif // BOOKBOT_H_INCLUDED
[ "viskantas2@gmail.com" ]
viskantas2@gmail.com
f5e2cf72ed4c8b4e2b7061b1bb12cbe7943b3fef
b8376621d63394958a7e9535fc7741ac8b5c3bdc
/lib/lib_XT12/Source/DockingPane/XTPDockingPane.cpp
893f89bc73b13ae939d0c08b1a89bafd5a1466a6
[]
no_license
15831944/job_mobile
4f1b9dad21cb7866a35a86d2d86e79b080fb8102
ebdf33d006025a682e9f2dbb670b23d5e3acb285
refs/heads/master
2021-12-02T10:58:20.932641
2013-01-09T05:20:33
2013-01-09T05:20:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
12,959
cpp
// XTPDockingPane.cpp : implementation of the CXTPDockingPaneclass. // // This file is a part of the XTREME DOCKINGPANE MFC class library. // (c)1998-2008 Codejock Software, All Rights Reserved. // // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN // CONSENT OF CODEJOCK SOFTWARE. // // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A // SINGLE COMPUTER. // // CONTACT INFORMATION: // support@codejock.com // http://www.codejock.com // ///////////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "TabManager/XTPTabManager.h" #include "Common/XTPDrawHelpers.h" #include "XTPDockingPane.h" #include "XTPDockingPaneContext.h" #include "XTPDockingPaneManager.h" #include "XTPDockingPaneTabbedContainer.h" #include "XTPDockingPaneAutoHidePanel.h" #include "XTPDockingPaneMiniWnd.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif CXTPDockingPane::CXTPDockingPane(CXTPDockingPaneLayout* pLayout) : CXTPDockingPaneBase(xtpPaneTypeDockingPane, pLayout) { m_dwOptions = 0; m_hwndChild = 0; m_nID = 0; m_nIconID = -1; m_dwData = 0; m_clrItemTab = COLORREF_NULL; m_nIDHelp = 0; m_bEnabled = xtpPaneEnabled; m_ptMinTrackSize = CPoint(0, 0); m_ptMaxTrackSize = CPoint(32000, 32000); EnableAutomation(); } CXTPDockingPane::~CXTPDockingPane() { } void CXTPDockingPane::SetID(int nID) { ASSERT(nID != 0); m_nID = nID; CString strTitle; if (strTitle.LoadString(nID)) { m_strTitle = strTitle; } } void CXTPDockingPane::SetWindowRect(CRect rc) { m_rcWindow = rc; m_szDocking = m_rcWindow.Size(); } XTPXTPDockingPaneEnableOptions CXTPDockingPane::GetEnabled() const { return m_bEnabled; } void CXTPDockingPane::SetEnabled(XTPXTPDockingPaneEnableOptions bEnabled) { if (m_bEnabled != bEnabled) { m_bEnabled = bEnabled; InvalidatePane(TRUE); } } void CXTPDockingPane::OnSizeParent(CWnd* pParent, CRect rect, LPVOID lParam) { AFX_SIZEPARENTPARAMS* lpLayout = (AFX_SIZEPARENTPARAMS*)lParam; SetDockingSite(pParent); if (lpLayout == 0 || lpLayout->hDWP != NULL) { m_rcWindow = rect; if (pParent && m_pParentContainer) { MapWindowPoints(pParent->GetSafeHwnd(), m_pParentContainer->GetPaneHwnd(), (LPPOINT)&rect, 2); if (m_hwndChild) ::MoveWindow(m_hwndChild, rect.left, rect.top, rect.Width(), rect.Height(), TRUE); if (m_hwndChild) ::EnableWindow(m_hwndChild, m_bEnabled & xtpPaneEnableClient ? TRUE : FALSE); } } } void CXTPDockingPane::SetFocus() { if (m_hwndChild) { if (!IsChild(m_hwndChild, ::GetFocus())) ::SetFocus(m_hwndChild); } } BOOL CXTPDockingPane::IsFocus() const { HWND hwndFocus = ::GetFocus(); return (m_hwndChild != 0) && (hwndFocus == m_hwndChild || IsChild(m_hwndChild, hwndFocus)); } void CXTPDockingPane::SetParentContainer(CXTPDockingPaneBase* pContainer) { m_pParentContainer = pContainer; if (m_hwndChild == 0) return; if (pContainer) { ASSERT(pContainer->GetType() == xtpPaneTypeTabbedContainer); ::SetParent(m_hwndChild, pContainer->GetPaneHwnd()); } else { ::ShowWindow(m_hwndChild, SW_HIDE); ::SetParent(m_hwndChild, GetDockingPaneManager()->GetSafeHwnd()); m_pDockingSite = NULL; } } void CXTPDockingPane::ShowWindow(BOOL bShow) { if (bShow) { GetDockingPaneManager()->NotifyOwner(XTP_DPN_SHOWWINDOW, (LPARAM)this); } if (m_hwndChild) { ::ShowWindow(m_hwndChild, bShow ? SW_SHOW : SW_HIDE); } } void CXTPDockingPane::Close() { GetDockingPaneManager()->ClosePane(this); } void CXTPDockingPane::Hide() { GetDockingPaneManager()->HidePane(this); } void CXTPDockingPane::Select() { GetDockingPaneManager()->ShowPane(this); } CWnd* CXTPDockingPane::GetDockingSite() const { return m_pParentContainer ? m_pParentContainer->m_pDockingSite : 0; } CFrameWnd* CXTPDockingPane::GetParentFrame() const { CWnd* pSite = GetDockingSite(); return pSite && pSite->IsFrameWnd() ? (CFrameWnd*)pSite : NULL; } void CXTPDockingPane::Copy(CXTPDockingPaneBase* pCloneBase, CXTPPaneToPaneMap* /*pMap*/, DWORD /*dwIgnoredOptions*/) { Copy((CXTPDockingPane*)pCloneBase); } void CXTPDockingPane::Copy(CXTPDockingPane* pClone) { m_szDocking = pClone->m_szDocking; m_strTitle = pClone->m_strTitle; m_nIconID = pClone->m_nIconID; m_dwOptions = pClone->m_dwOptions; m_dwData = pClone->m_dwData; m_nID = pClone->m_nID; m_bEnabled = pClone->m_bEnabled; m_ptMinTrackSize = pClone->m_ptMinTrackSize; m_ptMaxTrackSize = pClone->m_ptMaxTrackSize; m_hwndChild = 0; } BOOL CXTPDockingPane::IsValid() const { return m_hwndChild != NULL; } void CXTPDockingPane::Attach(CWnd* pWnd) { if (pWnd) { m_hwndChild = pWnd->GetSafeHwnd(); GetDockingPaneManager()->_Redraw(); if (m_pParentContainer) { ::SetParent(m_hwndChild, m_pParentContainer->GetPaneHwnd()); } if (GetDockingPaneManager()->m_bInitialUpdateCalled) { pWnd->SendMessage(WM_INITIALUPDATE, 0, 0); pWnd->SendMessageToDescendants(WM_INITIALUPDATE, 0, 0, TRUE, TRUE); } } } CWnd* CXTPDockingPane::AttachView(CWnd* pParentWnd, CRuntimeClass* pViewClass, CDocument* pDocument/*= NULL*/, CCreateContext* pContext/*= NULL*/) { if (!pContext && !pViewClass) return NULL; #ifdef _DEBUG ASSERT(pContext != NULL || pViewClass != NULL); ASSERT(pContext != NULL || pViewClass->IsDerivedFrom(RUNTIME_CLASS(CWnd))); ASSERT(pContext != NULL || AfxIsValidAddress(pViewClass, sizeof(CRuntimeClass), FALSE)); #endif CCreateContext contextT; if (pContext == NULL) { // if no context specified, generate one from the // currently selected client if possible. contextT.m_pLastView = NULL; contextT.m_pCurrentFrame = NULL; contextT.m_pNewDocTemplate = NULL; contextT.m_pCurrentDoc = pDocument; contextT.m_pNewViewClass = pViewClass; if (pDocument != NULL) contextT.m_pNewDocTemplate = pDocument->GetDocTemplate(); pContext = &contextT; } CFrameWnd* pFrame = new CFrameWnd; pFrame->Create(NULL, NULL, WS_CHILD | WS_CLIPCHILDREN | WS_CLIPSIBLINGS, CRect(0, 0, 0, 0), pParentWnd, NULL, 0, pContext); pFrame->ModifyStyleEx(WS_EX_CLIENTEDGE, 0); Attach(pFrame); CWnd* pView = pFrame->GetDescendantWindow(AFX_IDW_PANE_FIRST, TRUE); if (DYNAMIC_DOWNCAST(CView, pView)) { pFrame->SetActiveView((CView*)pView); } return pView; } void CXTPDockingPane::Detach() { if (m_hwndChild) { ::ShowWindow(m_hwndChild, SW_HIDE); ::SetParent(m_hwndChild, GetDockingPaneManager()->GetSite()->GetSafeHwnd()); m_hwndChild = 0; } GetDockingPaneManager()->_Redraw(); } CString CXTPDockingPane::GetTitle() const { int nIndex = m_strTitle.Find('\n'); if (nIndex == -1) return m_strTitle; return m_strTitle.Left(nIndex); } CString CXTPDockingPane::GetShortTitle() const { int nIndex = m_strTitle.Find('\n'); if (nIndex == -1) return m_strTitle; return m_strTitle.Mid(nIndex + 1); } void CXTPDockingPane::SetTitle(LPCTSTR lpszTitle) { m_strTitle = lpszTitle; InvalidatePane(FALSE); } BOOL CXTPDockingPane::IsClosed() const { return m_pParentContainer == NULL; } BOOL CXTPDockingPane::IsHidden() const { if (m_pParentContainer == NULL) return FALSE; return m_pParentContainer->IsHidden(); } BOOL CXTPDockingPane::IsSelected() const { if (m_pParentContainer == NULL) return FALSE; ASSERT(m_pParentContainer->GetType() == xtpPaneTypeTabbedContainer); return ((CXTPDockingPaneTabbedContainer*)m_pParentContainer)->GetSelected() == this; } BOOL CXTPDockingPane::IsFloating() const { if (m_pParentContainer == NULL) return FALSE; if (IsHidden()) return FALSE; ASSERT(m_pParentContainer->GetType() == xtpPaneTypeTabbedContainer); if (m_pParentContainer->GetPaneHwnd() == 0) return FALSE; CWnd* pFrame = m_pParentContainer->GetDockingSite(); return pFrame && pFrame->IsKindOf(RUNTIME_CLASS(CXTPDockingPaneMiniWnd)); } CXTPImageManagerIcon* CXTPDockingPane::GetIcon(int nWidth) const { return GetDockingPaneManager()->GetIcon(GetIconID(), nWidth); } void CXTPDockingPane::SetItemColor(COLORREF clr) { m_clrItemTab = clr; InvalidatePane(FALSE); } COLORREF CXTPDockingPane::GetItemColor() const { if (m_clrItemTab != COLORREF_NULL) return m_clrItemTab; if (m_hwndChild) { COLORREF clr = (COLORREF)::SendMessage(m_hwndChild, WM_XTP_GETTABCOLOR, 0, 0); if (clr != 0) return clr; } return xtpTabColorBlue + GetID() % 8; } void CXTPDockingPane::GetMinMaxInfo(LPMINMAXINFO pMinMaxInfo) const { ZeroMemory(pMinMaxInfo, sizeof(MINMAXINFO)); pMinMaxInfo->ptMinTrackSize = m_ptMinTrackSize; pMinMaxInfo->ptMaxTrackSize = m_ptMaxTrackSize; } DWORD CXTPDockingPane::GetOptions() const { return GetDockingPaneManager()->m_dwDefaultPaneOptions | m_dwOptions; } void CXTPDockingPane::DeletePane() { InternalRelease(); } ////////////////////////////////////////////////////////////////////////// // Accessible CCmdTarget* CXTPDockingPane::GetAccessible() { return this; } HRESULT CXTPDockingPane::GetAccessibleParent(IDispatch* FAR* ppdispParent) { SAFE_MANAGE_STATE(m_pModuleState); *ppdispParent = NULL; if (m_pParentContainer) { *ppdispParent = ((CXTPDockingPaneTabbedContainer*)m_pParentContainer)->GetIDispatch(TRUE); return S_OK; } return E_FAIL; } HRESULT CXTPDockingPane::GetAccessibleChildCount(long FAR* pChildCount) { if (pChildCount == 0) return E_INVALIDARG; *pChildCount = m_hwndChild ? 1 : 0; return S_OK; } HRESULT CXTPDockingPane::GetAccessibleChild(VARIANT varChild, IDispatch* FAR* ppdispChild) { SAFE_MANAGE_STATE(m_pModuleState); *ppdispChild = NULL; if (GetChildIndex(&varChild) == 1) { return AccessibleObjectFromWindow(m_hwndChild, OBJID_WINDOW, IID_IDispatch, (void**)ppdispChild); } return S_OK; } HRESULT CXTPDockingPane::GetAccessibleName(VARIANT varChild, BSTR* pszName) { if (GetChildIndex(&varChild) != CHILDID_SELF) return E_INVALIDARG; *pszName = GetShortTitle().AllocSysString(); return S_OK; } HRESULT CXTPDockingPane::GetAccessibleDescription(VARIANT varChild, BSTR* pszDescription) { if (GetChildIndex(&varChild) != CHILDID_SELF) return E_INVALIDARG; *pszDescription = GetTitle().AllocSysString(); return S_OK; } HRESULT CXTPDockingPane::GetAccessibleRole(VARIANT varChild, VARIANT* pvarRole) { pvarRole->vt = VT_EMPTY; if (GetChildIndex(&varChild) == CHILDID_SELF) { pvarRole->vt = VT_I4; pvarRole->lVal = ROLE_SYSTEM_PAGETAB; return S_OK; } return E_INVALIDARG; } HRESULT CXTPDockingPane::AccessibleSelect(long /*flagsSelect*/, VARIANT varChild) { SAFE_MANAGE_STATE(m_pModuleState); if (GetChildIndex(&varChild) != CHILDID_SELF) return E_INVALIDARG; Select(); return S_OK; } HRESULT CXTPDockingPane::GetAccessibleState(VARIANT varChild, VARIANT* pvarState) { if (GetChildIndex(&varChild) != CHILDID_SELF) return E_INVALIDARG; pvarState->vt = VT_I4; pvarState->lVal = STATE_SYSTEM_SELECTABLE; if (!m_pParentContainer) pvarState->lVal |= STATE_SYSTEM_INVISIBLE; if (m_pParentContainer && ((CXTPDockingPaneTabbedContainer*)m_pParentContainer)->GetSelected() == this) pvarState->lVal |= STATE_SYSTEM_SELECTED; return S_OK; } HRESULT CXTPDockingPane::GetAccessibleDefaultAction(VARIANT varChild, BSTR* pszDefaultAction) { if (GetChildIndex(&varChild) != CHILDID_SELF) return E_INVALIDARG; *pszDefaultAction = SysAllocString(L"Switch"); return S_OK; } HRESULT CXTPDockingPane::AccessibleDoDefaultAction(VARIANT varChild) { SAFE_MANAGE_STATE(m_pModuleState); if (GetChildIndex(&varChild) != CHILDID_SELF) return E_INVALIDARG; Select(); return S_OK; } HRESULT CXTPDockingPane::AccessibleLocation(long* pxLeft, long* pyTop, long* pcxWidth, long* pcyHeight, VARIANT varChild) { CRect rc; if (GetChildIndex(&varChild) == 1) { GetWindowRect(m_hwndChild, &rc); } else if (GetChildIndex(&varChild) != CHILDID_SELF) { return E_INVALIDARG; } else { CXTPDockingPaneTabbedContainer* pContainer = (CXTPDockingPaneTabbedContainer*)m_pParentContainer; if (!pContainer) return S_FALSE; pContainer->GetWindowRect(&rc); if (pContainer->GetItemCount() > 1) { for (int i = 0; i < pContainer->GetItemCount(); i++) { CXTPTabManagerItem* pItem = pContainer->GetItem(i); if (pItem->GetData() == (DWORD_PTR)this) { CRect rcItem = pItem->GetRect(); rc = CRect(CPoint(rc.left + rcItem.left, rc.top + rcItem.top), rcItem.Size()); break; } } } } *pxLeft = rc.left; *pyTop = rc.top; *pcxWidth = rc.Width(); *pcyHeight = rc.Height(); return S_OK; } HRESULT CXTPDockingPane::AccessibleHitTest(long /*xLeft*/, long /*yTop*/, VARIANT* pvarID) { pvarID->vt = VT_I4; pvarID->lVal = 0; return S_OK; } BEGIN_INTERFACE_MAP(CXTPDockingPane, CCmdTarget) INTERFACE_PART(CXTPDockingPane, IID_IAccessible, ExternalAccessible) END_INTERFACE_MAP()
[ "whdnrfo@gmail.com" ]
whdnrfo@gmail.com
126c04758f4574704bfaae2f36570bf6c45b6f7b
00f215b15b65b600f10d035fcbf664d23c3d83ae
/Kushagra Shekhawat/Day 13/59. Best Time to Buy and Sell Stock.cpp
1009e7dc5edb32e6baadf4fa6452736b4e3f1a74
[]
no_license
SubhamGupta007/Dynamic-Programming
810131eb6fe5513b4f4bb728d2d2af66a5e20c5c
32e1faac325d2ed3479abf3cef4a7c2470356667
refs/heads/master
2023-03-24T16:57:30.304582
2020-09-24T04:55:01
2020-09-24T04:55:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
459
cpp
class Solution { public: int maxProfit(vector<int>& prices) { if(prices.size()<2) return 0; int maxProfit=0,buy=prices[0],sell; for(int i=1;i<prices.size();i++){ if(buy>=prices[i]){ buy = prices[i]; }else{ sell = prices[i]; if(sell-buy>maxProfit) maxProfit = sell-buy; } } return maxProfit; } };
[ "kushagrashekhawat414@gmail.com" ]
kushagrashekhawat414@gmail.com
2c846ee6b914b8c45eaa976a1ba681e558e5663f
9f6475dcf316560b7af0bcb04297e07db6e37edb
/Lab11.cpp
4dfe86e1dec9f55d22825715d578ebd0cfd34819
[]
no_license
380676003925/Labb
ee932fc599e7a240e75dd8d6beddf278f321aff3
5911b9de79cbd176dba6ca3ce9b8d341fe599023
refs/heads/master
2020-04-06T07:32:08.024956
2018-12-14T19:41:06
2018-12-14T19:41:06
157,275,706
0
0
null
null
null
null
UTF-8
C++
false
false
467
cpp
#include <iostream> #include <vector> #include <conio.h> using namespace std; int main(int argc, char**argv) { vector<char> v; char ch; bool over = false; int x = 33; char *surname; do { ch = _getch(); x = static_cast<int>(ch); if (ch == 32) break; v.push_back(ch); } while (ch != 32); for(int i = 0; i < v.size();i++){ cout<< v[i]<<" "; } //x = static_cast<int>(ch); //cout << x ; system("pause"); return 0; }
[ "noreply@github.com" ]
noreply@github.com
1f607d9801e605e3455f06b0e780aaa944fcbbb2
2ee048cd4fdcf8677191a6ef335df6e99638780e
/5.6.cpp
4d53d720e33831cf57c8bd80e3270e6ed3d470a7
[]
no_license
AnoushSim/Prata_Solutions-6th-
5f13d6e343a1b9521fc1cbab456ec78ca338eabf
63d1006cad582ae2a87064f626839e3dfc4fce7f
refs/heads/master
2020-03-16T18:11:02.976294
2018-05-10T11:10:52
2018-05-10T11:10:52
132,863,162
0
0
null
null
null
null
UTF-8
C++
false
false
589
cpp
#include <iostream> #include <string> const int n=12; int main() { int j,s=0; std::string months[n]= { "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" }; int books_of_eachmonth[1][n]; for( j = 0; j < n; j++) { std::cout << "Enter sale for " << months[j] << ": "; std::cin >> books_of_eachmonthy[1][j]; } for( j = 0; j < n; j++) { s+=books_of_eachmonth[1][j]; } std::cout<<"You sold "<< s<<" books."; return 0; }
[ "noreply@github.com" ]
noreply@github.com
329896e2fa3ccfbf3a373587ad9a1a3d41babf76
7687fcd132f5632338cfebadb82eb4f8b1bd8415
/test2n/2的n次方.cpp
1294179bba64d42bf2c8ab85604f8ed110d14076
[]
no_license
Zhengjun-Du/AlgorithmPrograms
1ab2ef8dd6c46bb854a405c764e140f413f4da99
b0959589bd275cb1f892c5d0a39ba41404b9e340
refs/heads/master
2021-08-17T00:03:18.218872
2017-11-20T15:14:36
2017-11-20T15:14:36
107,687,393
1
0
null
null
null
null
GB18030
C++
false
false
616
cpp
// test2n.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include <math.h> #include <iostream> using namespace std; bool Is2N_1(int x) { int i = 1; while(1) { if(i == x) return true; else if(i > x) return false; i *= 2; } } bool Is2N_2(int x) { while(x % 2 == 0) x /= 2; return x == 1; } bool Is2N_3(int x) { double a = log(x)/log(2); return(x == pow(2,a)); } bool Is2N_4(int x) { return !(x&x-1); } int _tmain(int argc, _TCHAR* argv[]) { int a = 32; bool is2n1 = Is2N_1(a); bool is2n2 = Is2N_2(a); bool is2n3 = Is2N_3(a); bool is2n4 = Is2N_4(a); return 0; }
[ "duzjqhu@aliyun.com" ]
duzjqhu@aliyun.com
d6601ff1dfce6975417136543aadc26d126a394f
5f71575fac3e746298c6d3551fd6d78ba5a23909
/PCLab/mainwindow.h
f840bfdd0a8b8f46e484b5aaf3c8f49c4f3cd956
[]
no_license
framled/point-cloud-lab
3905bfeb4d0aaa7e9958859ed14975b09deb917d
17dab3a8976b8b1f51fe11ab9121bb95e6461530
refs/heads/master
2021-01-10T11:45:22.589297
2013-03-23T14:11:20
2013-03-23T14:11:20
50,537,894
0
0
null
null
null
null
UTF-8
C++
false
false
661
h
#ifndef MAINWINDOW_H #define MAINWINDOW_H #include <QMainWindow> #include "pcl_visualization.h" namespace Ui { class MainWindow; } class MainWindow : public QMainWindow { Q_OBJECT protected: pcl_visualization *pclVisualization; bool pclVisualizationThreadExists; public: explicit MainWindow(QWidget *parent = 0); ~MainWindow(); private slots: void DeletePCLVisualizationThread(); void PCLVisualizationThreadFinished(); void on_importButton_clicked(); private: Ui::MainWindow *ui; void processCurrentPointCloud(); void exitCurrentProcessing(); }; #endif // MAINWINDOW_H
[ "meexmachina@gmail.com" ]
meexmachina@gmail.com
74ec88dc1fc07d410fbb801b9fa79c596caf0d82
67476073317c1ee6505e3193037596d99c29973d
/NEPS/Ordenacao/problema44/44.cpp
b2ee8decf7f6d08ed4bbcd5e5dcd15f99f20d319
[]
no_license
gabriellerosa/Codigos-Maratona
67d68ede4d2c85991323453b0f0166d86e01d27a
091225d258534b716fe3baa70e67d1fce68aa026
refs/heads/master
2023-01-19T10:39:56.153642
2020-11-24T21:24:28
2020-11-24T21:24:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
849
cpp
#include <iostream> #include <algorithm> using namespace std; struct pais{ int ouro, prata, bronze, id; }; int func(pais a, pais b){ if(a.ouro != b.ouro){ return a.ouro > b.ouro; } if(a.prata != b.prata){ return a.prata > b.prata; } if(a.bronze != b.bronze){ return a.bronze > b.bronze; } return a.id < b.id; } int main(){ int n, m, o, p, b; pais v[105]; cin >> n >> m; for(int i = 0; i < n; i++){ v[i].ouro = 0; v[i].prata = 0; v[i].bronze = 0; v[i].id = i + 1; } for(int i = 0; i < m; i++){ cin >> o >> p >> b; v[o-1].ouro++; v[p-1].prata++; v[b-1].bronze++; } sort(v, v + n, func); for(int i = 0; i < n; i++){ cout << v[i].id << " "; } cout << endl; }
[ "gabi.rosa1@hotmail.com" ]
gabi.rosa1@hotmail.com
873804886ffc05b55bdec34ad89b2b1c5869a23a
43d4da2fd106cabded9175d19c6a371f89627821
/TT_5/CArray.h
ee43afb24924153dd028a5d1d1a86ae1e926925d
[]
no_license
metaluga/tt5
dc9f39cc06a4e8e75c4c1cdebe2104b7fa127719
7a0b61f3aaecbb096fac2316dffadebc56dc0c27
refs/heads/master
2020-06-20T20:58:45.027897
2019-07-16T18:27:17
2019-07-16T18:27:17
197,246,529
0
0
null
null
null
null
UTF-8
C++
false
false
1,979
h
#pragma once template <typename TData> class CArray { public: CArray() { m_buffer = 0; m_capacity = 0; m_size = 0; } CArray( const CArray & _array ) { m_capacity = _array.m_capacity; m_size = _array.m_size; m_buffer = new TData[m_size]; for (unsigned int i = 0; i < m_size; ++i) { m_buffer[i] = _array.m_buffer[i]; } } ~CArray() { delete[] m_buffer; } void push_back( const TData & _value ) { if (m_size >= m_capacity) { reserve((m_capacity + 1) * 2); } m_buffer[m_size++] = _value; } void insert( unsigned int _index, const TData & _value ) { if (m_capacity == m_size + 1) { reserve((m_capacity + 1) * 2); } for (unsigned int i = m_size + 1; i > _index; --i) { m_buffer[i + 1] = m_buffer[i]; } m_buffer[_index] = _value; ++m_size; } void erase( unsigned int _index ) { if (_index > m_size) { return; } for (unsigned int i = _index; i < m_size; ++i) { m_buffer[i] = m_buffer[i + 1]; } --m_size; } void clear() { m_size = 0; m_capacity = 0; delete[] m_buffer; m_buffer = 0; } unsigned int size() const { return m_size; } TData & operator[]( unsigned int _index ) { return m_buffer[_index]; } void reserve( unsigned int _capacity ) { if (m_buffer == 0) { m_size = 0; m_capacity = 0; } TData * buffer = new TData[_capacity]; unsigned int n_size; if (m_capacity > m_size) { n_size = _capacity; } else { n_size = m_size; } for (unsigned int i = 0; i < n_size; ++i) { buffer[i] = m_buffer[i]; } m_capacity = _capacity; delete[] m_buffer; m_buffer = buffer; } protected: unsigned int m_size; unsigned int m_capacity; TData * m_buffer; const unsigned int c_minCapacity = 5; };
[ "metaluga1995@gmail.com" ]
metaluga1995@gmail.com
054f46ee80ef4990eb0a1b9279337e2b1cb663ff
28862363fda2e3d28bbf6b561e5916ec2a6a813a
/simple_mesh.cpp
fd26bfa38b70e3bf5ef61a2bb382f91744f470a4
[]
no_license
ScatteredRay/Layed
a2741b1cded8b717f781695c5653e42e857e35b1
7fddbf41168643d996c8df301a2266e9a8034c27
refs/heads/master
2021-05-27T20:37:05.954485
2011-03-24T07:49:24
2011-03-24T07:49:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,250
cpp
// Copyright (c) 2010, Nicholas "Indy" Ray. All rights reserved. // See the LICENSE file for usage, modification, and distribution terms. #include "simple_mesh.h" #include <assert.h> #include <gl.h> GLuint CreateMesh(unsigned int num_verticies, size_t vertex_size, const void* data) { GLuint vbuffer; glGenBuffers(1, &vbuffer); glBindBuffer(GL_ARRAY_BUFFER, vbuffer); glBufferData(GL_ARRAY_BUFFER, num_verticies * vertex_size, data, GL_STATIC_DRAW); return vbuffer; } void DestroyMesh(GLuint buffer) { glDeleteBuffers(1, &buffer); } VertexDef CreateVertexDef(size_t size, unsigned int attrs) { VertexDef VD = new Vertex_Def(); VD->stride = size; VD->num_attributes = attrs; VD->attributes = new VertexAttribute[attrs]; return VD; } void DestroyVertexDef(VertexDef Def) { delete[] Def->attributes; delete Def; } VertexAttribute* AddVertexAttribute(VertexDef Def, unsigned int idx, Vertex_Attributes attr_type, size_t offset, unsigned int num_elements, GLenum data_type) { assert(idx <= Def->num_attributes); VertexAttribute* A = &Def->attributes[idx]; A->attr = attr_type; A->offset = offset; A->type = data_type; A->num_elements = num_elements; return A; } void ApplyVertexDef(VertexDef Def) { for(unsigned int i=0; i<Def->num_attributes; i++) { VertexAttribute* A = &Def->attributes[i]; switch(A->attr) { case VERTEX_POSITION_ATTR: glVertexPointer(A->num_elements, A->type, Def->stride, (void*)A->offset); break; case VERTEX_NORMAL_ATTR: assert(A->num_elements >= 3); glNormalPointer(A->type, Def->stride, (void*)A->offset); break; case VERTEX_COLOR_ATTR: glColorPointer(A->num_elements, A->type, Def->stride, (void*)A->offset); break; case VERTEX_UV_ATTR: glTexCoordPointer(A->num_elements, A->type, Def->stride, (void*)A->offset); break; case VERTEX_OTHER_ATTR: // How are we going to set Vertex Attribute indicies, 0 for testing. glVertexAttribPointer(0, A->num_elements, A->type, false, Def->stride, (void*)A->offset); break; case VERTEX_NORMALIZED_OTHER_ATTR: glVertexAttribPointer(0, A->num_elements, A->type, true, Def->stride, (void*)A->offset); break; } } }
[ "arelius@gmail.com" ]
arelius@gmail.com
0d7c8716c46954e5d01adfe246ac13694ea9e7fa
5e066944696d45ac4d245f91307f13fa1a5c2d05
/src/main/cpp/set-matrix-zeroes.cpp
cc9bf6a13af8bd75d626e0316ee89720d7c019b9
[ "Apache-2.0" ]
permissive
wittyResry/leetcode
f63bf78dd1d8de40816f10c7d8fb93abd102dca0
182258d91d8cd160fd897e9a5cce33104ac31afe
refs/heads/master
2022-06-23T05:45:55.864901
2019-07-21T05:49:31
2019-07-21T09:39:06
59,641,494
1
0
Apache-2.0
2022-06-17T01:53:53
2016-05-25T07:39:32
HTML
UTF-8
C++
false
false
1,912
cpp
LeetCode OJ Subscribe Problems Mock Articles Discuss Book xiaoqinqiu Notes ||| Type here...(Markdown is enabled) 73. Set Matrix Zeroes My Submissions QuestionEditorial Solution Total Accepted: 68329 Total Submissions: 202527 Difficulty: Medium Given a m x n matrix, if an element is 0, set its entire row and column to 0. Do it in place. click to show follow up. Follow up: Did you use extra space? A straight forward solution using O(mn) space is probably a bad idea. A simple improvement uses O(m + n) space, but still not the best solution. Could you devise a constant space solution? Subscribe to see which companies asked this question Show Tags Show Similar Problems Have you met this question in a real interview? Yes No Discuss Pick One  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 26 27 class Solution { public: void setZeroes(vector<vector<int>>& matrix) { if (matrix.size() == 0) return; //init for (int i = 0; i < matrix.size(); ++i) r[i] = false; for (int j = 0; j < matrix[0].size(); ++j) c[j] = false; //find for (int i = 0; i < matrix.size(); ++i) { for (int j = 0; j < matrix[i].size(); ++j) { if (matrix[i][j] == 0) { r[i] = true; c[j] = true; } } } //set for (int i = 0; i < matrix.size(); ++i) { for (int j = 0; j < matrix[i].size(); ++j) { if (r[i] || c[j]) matrix[i][j] = 0; } } } private: int r[10005]; int c[10005]; }; Custom Testcase Run Code Submit Solution Submission Result: Accepted More Details Next challenges: (H) Word Ladder II (M) 3Sum Smaller (M) Wiggle Sort Share your acceptance! AddThis Sharing Buttons Frequently Asked Questions | Terms of Service Copyright © 2016 LeetCode Send Feedback
[ "329110452@qq.com" ]
329110452@qq.com
04c3a5531bcf0b8fbd0c037ee478ec58a12790db
89292be10b520779772588bbd90184e4f6d00748
/content/renderer/screen_orientation/screen_orientation_dispatcher.h
d672defa1754643c2d77b7a5b72fc8ad72fb81c1
[ "BSD-3-Clause" ]
permissive
anirudhSK/chromium
2cd85630932a05fa065a5d9a1703de33e9b5c483
a8f23c87e656ab9ba49de9ccccbc53f614cdcb41
refs/heads/master
2016-09-11T03:25:35.744751
2014-03-14T15:59:45
2014-03-14T15:59:45
10,112,188
2
2
null
null
null
null
UTF-8
C++
false
false
1,341
h
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_RENDERER_SCREEN_ORIENTATION_DISPATCHER_H_ #define CONTENT_RENDERER_SCREEN_ORIENTATION_DISPATCHER_H_ #include "base/macros.h" #include "content/public/renderer/render_process_observer.h" #include "third_party/WebKit/public/platform/WebScreenOrientation.h" namespace blink { class WebScreenOrientationListener; } namespace content { class RenderThread; // ScreenOrientationDispatcher listens to message from the browser process and // dispatch the orientation change ones to the WebScreenOrientationListener. class CONTENT_EXPORT ScreenOrientationDispatcher : public RenderProcessObserver { public: explicit ScreenOrientationDispatcher(RenderThread*); virtual ~ScreenOrientationDispatcher() {} // RenderProcessObserver virtual bool OnControlMessageReceived(const IPC::Message& message) OVERRIDE; void setListener(blink::WebScreenOrientationListener* listener); private: void OnOrientationChange(blink::WebScreenOrientation orientation); blink::WebScreenOrientationListener* listener_; DISALLOW_COPY_AND_ASSIGN(ScreenOrientationDispatcher); }; } // namespace content #endif // CONTENT_RENDERER_SCREEN_ORIENTATION_DISPATCHER_H_
[ "mlamouri@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98" ]
mlamouri@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98
e4baa9ff4c0f1f3a9b175b17aec3adc19d77f2fc
8ecdbfc9e5ec00098200cb0335a97ee756ffab61
/games-generated/Stencyl_Vertical_Shooter/Export/windows/obj/src/openfl/_Vector/FloatVector.cpp
eb41de1579e4be6dd070e4a08a229e00e03f884b
[]
no_license
elsandkls/Stencyl_VerticalSpaceShooter
89ccaafe717297a2620d6b777441e67f8751f0ec
87e501dcca05eaa5f8aeacc9f563b5d5080ffb53
refs/heads/master
2021-07-06T11:08:31.016728
2020-10-01T05:57:11
2020-10-01T05:57:11
184,013,592
1
0
null
null
null
null
UTF-8
C++
false
true
25,820
cpp
// Generated by Haxe 3.4.7 #include <hxcpp.h> #ifndef INCLUDED_openfl__Vector_FloatVector #include <openfl/_Vector/FloatVector.h> #endif #ifndef INCLUDED_openfl__Vector_IVector #include <openfl/_Vector/IVector.h> #endif HX_DEFINE_STACK_FRAME(_hx_pos_055b1e986ae1a23a_632_new,"openfl._Vector.FloatVector","new",0x7ccdf307,"openfl._Vector.FloatVector.new","openfl/Vector.hx",632,0x4a01873c) HX_LOCAL_STACK_FRAME(_hx_pos_055b1e986ae1a23a_659_concat,"openfl._Vector.FloatVector","concat",0xbb39c8cd,"openfl._Vector.FloatVector.concat","openfl/Vector.hx",659,0x4a01873c) HX_LOCAL_STACK_FRAME(_hx_pos_055b1e986ae1a23a_684_copy,"openfl._Vector.FloatVector","copy",0xb028eb2e,"openfl._Vector.FloatVector.copy","openfl/Vector.hx",684,0x4a01873c) HX_LOCAL_STACK_FRAME(_hx_pos_055b1e986ae1a23a_691_get,"openfl._Vector.FloatVector","get",0x7cc8a33d,"openfl._Vector.FloatVector.get","openfl/Vector.hx",691,0x4a01873c) HX_LOCAL_STACK_FRAME(_hx_pos_055b1e986ae1a23a_696_indexOf,"openfl._Vector.FloatVector","indexOf",0xe9dd4af0,"openfl._Vector.FloatVector.indexOf","openfl/Vector.hx",696,0x4a01873c) HX_LOCAL_STACK_FRAME(_hx_pos_055b1e986ae1a23a_715_insertAt,"openfl._Vector.FloatVector","insertAt",0xb3435c85,"openfl._Vector.FloatVector.insertAt","openfl/Vector.hx",715,0x4a01873c) HX_LOCAL_STACK_FRAME(_hx_pos_055b1e986ae1a23a_726_iterator,"openfl._Vector.FloatVector","iterator",0x84be29e7,"openfl._Vector.FloatVector.iterator","openfl/Vector.hx",726,0x4a01873c) HX_LOCAL_STACK_FRAME(_hx_pos_055b1e986ae1a23a_733_join,"openfl._Vector.FloatVector","join",0xb4c96363,"openfl._Vector.FloatVector.join","openfl/Vector.hx",733,0x4a01873c) HX_LOCAL_STACK_FRAME(_hx_pos_055b1e986ae1a23a_738_lastIndexOf,"openfl._Vector.FloatVector","lastIndexOf",0xc7529eba,"openfl._Vector.FloatVector.lastIndexOf","openfl/Vector.hx",738,0x4a01873c) HX_LOCAL_STACK_FRAME(_hx_pos_055b1e986ae1a23a_756_pop,"openfl._Vector.FloatVector","pop",0x7ccf8038,"openfl._Vector.FloatVector.pop","openfl/Vector.hx",756,0x4a01873c) HX_LOCAL_STACK_FRAME(_hx_pos_055b1e986ae1a23a_771_push,"openfl._Vector.FloatVector","push",0xb8c54153,"openfl._Vector.FloatVector.push","openfl/Vector.hx",771,0x4a01873c) HX_LOCAL_STACK_FRAME(_hx_pos_055b1e986ae1a23a_784_removeAt,"openfl._Vector.FloatVector","removeAt",0x9e3f4e50,"openfl._Vector.FloatVector.removeAt","openfl/Vector.hx",784,0x4a01873c) HX_LOCAL_STACK_FRAME(_hx_pos_055b1e986ae1a23a_797_reverse,"openfl._Vector.FloatVector","reverse",0x241a3b49,"openfl._Vector.FloatVector.reverse","openfl/Vector.hx",797,0x4a01873c) HX_LOCAL_STACK_FRAME(_hx_pos_055b1e986ae1a23a_807_set,"openfl._Vector.FloatVector","set",0x7cd1be49,"openfl._Vector.FloatVector.set","openfl/Vector.hx",807,0x4a01873c) HX_LOCAL_STACK_FRAME(_hx_pos_055b1e986ae1a23a_822_shift,"openfl._Vector.FloatVector","shift",0xa56846e9,"openfl._Vector.FloatVector.shift","openfl/Vector.hx",822,0x4a01873c) HX_LOCAL_STACK_FRAME(_hx_pos_055b1e986ae1a23a_837_slice,"openfl._Vector.FloatVector","slice",0xa80d1eb9,"openfl._Vector.FloatVector.slice","openfl/Vector.hx",837,0x4a01873c) HX_LOCAL_STACK_FRAME(_hx_pos_055b1e986ae1a23a_844_sort,"openfl._Vector.FloatVector","sort",0xbabc56d7,"openfl._Vector.FloatVector.sort","openfl/Vector.hx",844,0x4a01873c) HX_LOCAL_STACK_FRAME(_hx_pos_055b1e986ae1a23a_851_splice,"openfl._Vector.FloatVector","splice",0xb3084535,"openfl._Vector.FloatVector.splice","openfl/Vector.hx",851,0x4a01873c) HX_LOCAL_STACK_FRAME(_hx_pos_055b1e986ae1a23a_858_toJSON,"openfl._Vector.FloatVector","toJSON",0x6f7308dc,"openfl._Vector.FloatVector.toJSON","openfl/Vector.hx",858,0x4a01873c) HX_LOCAL_STACK_FRAME(_hx_pos_055b1e986ae1a23a_865_toString,"openfl._Vector.FloatVector","toString",0x2992b0a5,"openfl._Vector.FloatVector.toString","openfl/Vector.hx",865,0x4a01873c) HX_LOCAL_STACK_FRAME(_hx_pos_055b1e986ae1a23a_872_unshift,"openfl._Vector.FloatVector","unshift",0x81d1e5b0,"openfl._Vector.FloatVector.unshift","openfl/Vector.hx",872,0x4a01873c) HX_LOCAL_STACK_FRAME(_hx_pos_055b1e986ae1a23a_890_get_length,"openfl._Vector.FloatVector","get_length",0xf96594e8,"openfl._Vector.FloatVector.get_length","openfl/Vector.hx",890,0x4a01873c) HX_LOCAL_STACK_FRAME(_hx_pos_055b1e986ae1a23a_895_set_length,"openfl._Vector.FloatVector","set_length",0xfce3335c,"openfl._Vector.FloatVector.set_length","openfl/Vector.hx",895,0x4a01873c) namespace openfl{ namespace _Vector{ void FloatVector_obj::__construct( ::Dynamic length, ::Dynamic fixed,::cpp::VirtualArray array,hx::Null< bool > __o_forceCopy){ bool forceCopy = __o_forceCopy.Default(false); HX_STACKFRAME(&_hx_pos_055b1e986ae1a23a_632_new) HXLINE( 634) if (forceCopy) { HXLINE( 636) this->_hx___array = ::Array_obj< Float >::__new(); HXLINE( 637) if (hx::IsNotNull( array )) { HXLINE( 637) int _g1 = (int)0; HXDLIN( 637) int _g = array->get_length(); HXDLIN( 637) while((_g1 < _g)){ HXLINE( 637) _g1 = (_g1 + (int)1); HXDLIN( 637) int i = (_g1 - (int)1); HXDLIN( 637) ::Array< Float > _hx_tmp = this->_hx___array; HXDLIN( 637) _hx_tmp[i] = ( (Float)(array->__get(i)) ); } } } else { HXLINE( 641) if (hx::IsNull( array )) { HXLINE( 641) array = ::Array_obj< Float >::__new(); } HXLINE( 642) this->_hx___array = array; } HXLINE( 646) bool _hx_tmp1; HXDLIN( 646) if (hx::IsNotNull( length )) { HXLINE( 646) _hx_tmp1 = hx::IsGreater( length,(int)0 ); } else { HXLINE( 646) _hx_tmp1 = false; } HXDLIN( 646) if (_hx_tmp1) { HXLINE( 648) this->set_length(length); } HXLINE( 652) this->fixed = hx::IsEq( fixed,true ); } Dynamic FloatVector_obj::__CreateEmpty() { return new FloatVector_obj; } void *FloatVector_obj::_hx_vtable = 0; Dynamic FloatVector_obj::__Create(hx::DynamicArray inArgs) { hx::ObjectPtr< FloatVector_obj > _hx_result = new FloatVector_obj(); _hx_result->__construct(inArgs[0],inArgs[1],inArgs[2],inArgs[3]); return _hx_result; } bool FloatVector_obj::_hx_isInstanceOf(int inClassId) { return inClassId==(int)0x00000001 || inClassId==(int)0x6497e72d; } static ::openfl::_Vector::IVector_obj _hx_openfl__Vector_FloatVector__hx_openfl__Vector_IVector= { ( int (hx::Object::*)(int))&::openfl::_Vector::FloatVector_obj::set_length, ( int (hx::Object::*)())&::openfl::_Vector::FloatVector_obj::get_length, ( ::Dynamic (hx::Object::*)(::Dynamic))&::openfl::_Vector::FloatVector_obj::concat, ( ::Dynamic (hx::Object::*)())&::openfl::_Vector::FloatVector_obj::copy, ( ::Dynamic (hx::Object::*)(int))&::openfl::_Vector::FloatVector_obj::get_c4bfee54, ( int (hx::Object::*)( ::Dynamic, ::Dynamic))&::openfl::_Vector::FloatVector_obj::indexOf_02dfccf1, ( void (hx::Object::*)(int, ::Dynamic))&::openfl::_Vector::FloatVector_obj::insertAt_5d1f93e2, ( ::Dynamic (hx::Object::*)())&::openfl::_Vector::FloatVector_obj::iterator, ( ::String (hx::Object::*)(::String))&::openfl::_Vector::FloatVector_obj::join, ( int (hx::Object::*)( ::Dynamic, ::Dynamic))&::openfl::_Vector::FloatVector_obj::lastIndexOf_02dfccf1, ( ::Dynamic (hx::Object::*)())&::openfl::_Vector::FloatVector_obj::pop, ( int (hx::Object::*)( ::Dynamic))&::openfl::_Vector::FloatVector_obj::push_9c73657a, ( ::Dynamic (hx::Object::*)(int))&::openfl::_Vector::FloatVector_obj::removeAt_c4bfee54, ( ::Dynamic (hx::Object::*)())&::openfl::_Vector::FloatVector_obj::reverse, ( ::Dynamic (hx::Object::*)(int, ::Dynamic))&::openfl::_Vector::FloatVector_obj::set_15539e57, ( ::Dynamic (hx::Object::*)())&::openfl::_Vector::FloatVector_obj::shift, ( ::Dynamic (hx::Object::*)( ::Dynamic, ::Dynamic))&::openfl::_Vector::FloatVector_obj::slice, ( void (hx::Object::*)( ::Dynamic))&::openfl::_Vector::FloatVector_obj::sort, ( ::Dynamic (hx::Object::*)(int,int))&::openfl::_Vector::FloatVector_obj::splice, ( ::String (hx::Object::*)())&::openfl::_Vector::FloatVector_obj::toString, ( void (hx::Object::*)( ::Dynamic))&::openfl::_Vector::FloatVector_obj::unshift_489e4d05, }; void FloatVector_obj::unshift_489e4d05( ::Dynamic x) { unshift(x); } ::Dynamic FloatVector_obj::set_15539e57(int index, ::Dynamic value) { return set(index,value); } ::Dynamic FloatVector_obj::removeAt_c4bfee54(int index) { return removeAt(index); } int FloatVector_obj::push_9c73657a( ::Dynamic x) { return push(x); } int FloatVector_obj::lastIndexOf_02dfccf1( ::Dynamic x, ::Dynamic from) { return lastIndexOf(x,from); } void FloatVector_obj::insertAt_5d1f93e2(int index, ::Dynamic element) { insertAt(index,element); } int FloatVector_obj::indexOf_02dfccf1( ::Dynamic x, ::Dynamic from) { return indexOf(x,from); } ::Dynamic FloatVector_obj::get_c4bfee54(int index) { return get(index); } void *FloatVector_obj::_hx_getInterface(int inHash) { switch(inHash) { case (int)0x45e7caba: return &_hx_openfl__Vector_FloatVector__hx_openfl__Vector_IVector; } #ifdef HXCPP_SCRIPTABLE return super::_hx_getInterface(inHash); #else return 0; #endif } ::Dynamic FloatVector_obj::concat(::Dynamic a){ HX_GC_STACKFRAME(&_hx_pos_055b1e986ae1a23a_659_concat) HXDLIN( 659) if (hx::IsNull( a )) { HXLINE( 661) return ::openfl::_Vector::FloatVector_obj::__alloc( HX_CTX ,null(),null(),this->_hx___array->copy(),null()); } else { HXLINE( 665) ::openfl::_Vector::FloatVector other = ( ( ::openfl::_Vector::FloatVector)(a) ); HXLINE( 667) if ((other->_hx___array->length > (int)0)) { HXLINE( 669) return ::openfl::_Vector::FloatVector_obj::__alloc( HX_CTX ,null(),null(),this->_hx___array->concat(other->_hx___array),null()); } else { HXLINE( 673) return ::openfl::_Vector::FloatVector_obj::__alloc( HX_CTX ,null(),null(),this->_hx___array->copy(),null()); } } HXLINE( 659) return null(); } HX_DEFINE_DYNAMIC_FUNC1(FloatVector_obj,concat,return ) ::Dynamic FloatVector_obj::copy(){ HX_GC_STACKFRAME(&_hx_pos_055b1e986ae1a23a_684_copy) HXDLIN( 684) bool _hx_tmp = this->fixed; HXDLIN( 684) return ::openfl::_Vector::FloatVector_obj::__alloc( HX_CTX ,null(),_hx_tmp,this->_hx___array->copy(),null()); } HX_DEFINE_DYNAMIC_FUNC0(FloatVector_obj,copy,return ) Float FloatVector_obj::get(int index){ HX_STACKFRAME(&_hx_pos_055b1e986ae1a23a_691_get) HXDLIN( 691) return this->_hx___array->__get(index); } HX_DEFINE_DYNAMIC_FUNC1(FloatVector_obj,get,return ) int FloatVector_obj::indexOf(Float x, ::Dynamic __o_from){ ::Dynamic from = __o_from.Default(0); HX_STACKFRAME(&_hx_pos_055b1e986ae1a23a_696_indexOf) HXLINE( 698) { HXLINE( 698) int _g1 = from; HXDLIN( 698) int _g = this->_hx___array->length; HXDLIN( 698) while((_g1 < _g)){ HXLINE( 698) _g1 = (_g1 + (int)1); HXDLIN( 698) int i = (_g1 - (int)1); HXLINE( 700) if ((this->_hx___array->__get(i) == x)) { HXLINE( 702) return i; } } } HXLINE( 708) return (int)-1; } HX_DEFINE_DYNAMIC_FUNC2(FloatVector_obj,indexOf,return ) void FloatVector_obj::insertAt(int index,Float element){ HX_STACKFRAME(&_hx_pos_055b1e986ae1a23a_715_insertAt) HXDLIN( 715) bool _hx_tmp; HXDLIN( 715) if (!(!(this->fixed))) { HXDLIN( 715) _hx_tmp = (index < this->_hx___array->length); } else { HXDLIN( 715) _hx_tmp = true; } HXDLIN( 715) if (_hx_tmp) { HXLINE( 717) this->_hx___array->insert(index,element); } } HX_DEFINE_DYNAMIC_FUNC2(FloatVector_obj,insertAt,(void)) ::Dynamic FloatVector_obj::iterator(){ HX_STACKFRAME(&_hx_pos_055b1e986ae1a23a_726_iterator) HXDLIN( 726) return this->_hx___array->iterator(); } HX_DEFINE_DYNAMIC_FUNC0(FloatVector_obj,iterator,return ) ::String FloatVector_obj::join(::String __o_sep){ ::String sep = __o_sep.Default(HX_HCSTRING(",","\x2c","\x00","\x00","\x00")); HX_STACKFRAME(&_hx_pos_055b1e986ae1a23a_733_join) HXDLIN( 733) return this->_hx___array->join(sep); } HX_DEFINE_DYNAMIC_FUNC1(FloatVector_obj,join,return ) int FloatVector_obj::lastIndexOf(Float x, ::Dynamic from){ HX_STACKFRAME(&_hx_pos_055b1e986ae1a23a_738_lastIndexOf) HXLINE( 740) ::Dynamic i; HXDLIN( 740) bool i1; HXDLIN( 740) if (hx::IsNotNull( from )) { HXLINE( 740) i1 = hx::IsGreaterEq( from,this->_hx___array->length ); } else { HXLINE( 740) i1 = true; } HXDLIN( 740) if (i1) { HXLINE( 740) i = (this->_hx___array->length - (int)1); } else { HXLINE( 740) i = from; } HXLINE( 742) while(hx::IsGreaterEq( i,(int)0 )){ HXLINE( 744) if ((this->_hx___array->__get(i) == x)) { HXLINE( 744) return i; } HXLINE( 745) i = (i - (int)1); } HXLINE( 749) return (int)-1; } HX_DEFINE_DYNAMIC_FUNC2(FloatVector_obj,lastIndexOf,return ) ::Dynamic FloatVector_obj::pop(){ HX_STACKFRAME(&_hx_pos_055b1e986ae1a23a_756_pop) HXDLIN( 756) if (!(this->fixed)) { HXLINE( 758) return this->_hx___array->pop(); } else { HXLINE( 762) return null(); } HXLINE( 756) return ((Float)0.); } HX_DEFINE_DYNAMIC_FUNC0(FloatVector_obj,pop,return ) int FloatVector_obj::push(Float x){ HX_STACKFRAME(&_hx_pos_055b1e986ae1a23a_771_push) HXDLIN( 771) if (!(this->fixed)) { HXLINE( 773) return this->_hx___array->push(x); } else { HXLINE( 777) return this->_hx___array->length; } HXLINE( 771) return (int)0; } HX_DEFINE_DYNAMIC_FUNC1(FloatVector_obj,push,return ) Float FloatVector_obj::removeAt(int index){ HX_STACKFRAME(&_hx_pos_055b1e986ae1a23a_784_removeAt) HXLINE( 786) bool _hx_tmp; HXDLIN( 786) if (!(!(this->fixed))) { HXLINE( 786) _hx_tmp = (index < this->_hx___array->length); } else { HXLINE( 786) _hx_tmp = true; } HXDLIN( 786) if (_hx_tmp) { HXLINE( 788) return this->_hx___array->splice(index,(int)1)->__get((int)0); } HXLINE( 792) return (int)0; } HX_DEFINE_DYNAMIC_FUNC1(FloatVector_obj,removeAt,return ) ::Dynamic FloatVector_obj::reverse(){ HX_STACKFRAME(&_hx_pos_055b1e986ae1a23a_797_reverse) HXLINE( 799) this->_hx___array->reverse(); HXLINE( 800) return hx::ObjectPtr<OBJ_>(this); } HX_DEFINE_DYNAMIC_FUNC0(FloatVector_obj,reverse,return ) Float FloatVector_obj::set(int index,Float value){ HX_STACKFRAME(&_hx_pos_055b1e986ae1a23a_807_set) HXDLIN( 807) bool _hx_tmp; HXDLIN( 807) if (!(!(this->fixed))) { HXDLIN( 807) _hx_tmp = (index < this->_hx___array->length); } else { HXDLIN( 807) _hx_tmp = true; } HXDLIN( 807) if (_hx_tmp) { HXLINE( 809) return (this->_hx___array[index] = value); } else { HXLINE( 813) return value; } HXLINE( 807) return ((Float)0.); } HX_DEFINE_DYNAMIC_FUNC2(FloatVector_obj,set,return ) ::Dynamic FloatVector_obj::shift(){ HX_STACKFRAME(&_hx_pos_055b1e986ae1a23a_822_shift) HXDLIN( 822) if (!(this->fixed)) { HXLINE( 824) return this->_hx___array->shift(); } else { HXLINE( 828) return null(); } HXLINE( 822) return ((Float)0.); } HX_DEFINE_DYNAMIC_FUNC0(FloatVector_obj,shift,return ) ::Dynamic FloatVector_obj::slice( ::Dynamic __o_startIndex, ::Dynamic __o_endIndex){ ::Dynamic startIndex = __o_startIndex.Default(0); ::Dynamic endIndex = __o_endIndex.Default(16777215); HX_GC_STACKFRAME(&_hx_pos_055b1e986ae1a23a_837_slice) HXDLIN( 837) return ::openfl::_Vector::FloatVector_obj::__alloc( HX_CTX ,null(),null(),this->_hx___array->slice(startIndex,endIndex),null()); } HX_DEFINE_DYNAMIC_FUNC2(FloatVector_obj,slice,return ) void FloatVector_obj::sort( ::Dynamic f){ HX_STACKFRAME(&_hx_pos_055b1e986ae1a23a_844_sort) HXDLIN( 844) this->_hx___array->sort(f); } HX_DEFINE_DYNAMIC_FUNC1(FloatVector_obj,sort,(void)) ::Dynamic FloatVector_obj::splice(int pos,int len){ HX_GC_STACKFRAME(&_hx_pos_055b1e986ae1a23a_851_splice) HXDLIN( 851) return ::openfl::_Vector::FloatVector_obj::__alloc( HX_CTX ,null(),null(),this->_hx___array->splice(pos,len),null()); } HX_DEFINE_DYNAMIC_FUNC2(FloatVector_obj,splice,return ) ::Array< Float > FloatVector_obj::toJSON(){ HX_STACKFRAME(&_hx_pos_055b1e986ae1a23a_858_toJSON) HXDLIN( 858) return this->_hx___array; } HX_DEFINE_DYNAMIC_FUNC0(FloatVector_obj,toJSON,return ) ::String FloatVector_obj::toString(){ HX_STACKFRAME(&_hx_pos_055b1e986ae1a23a_865_toString) HXDLIN( 865) if (hx::IsNotNull( this->_hx___array )) { HXDLIN( 865) return this->_hx___array->toString(); } else { HXDLIN( 865) return null(); } HXDLIN( 865) return null(); } HX_DEFINE_DYNAMIC_FUNC0(FloatVector_obj,toString,return ) void FloatVector_obj::unshift(Float x){ HX_STACKFRAME(&_hx_pos_055b1e986ae1a23a_872_unshift) HXDLIN( 872) if (!(this->fixed)) { HXLINE( 874) this->_hx___array->unshift(x); } } HX_DEFINE_DYNAMIC_FUNC1(FloatVector_obj,unshift,(void)) int FloatVector_obj::get_length(){ HX_STACKFRAME(&_hx_pos_055b1e986ae1a23a_890_get_length) HXDLIN( 890) return this->_hx___array->length; } HX_DEFINE_DYNAMIC_FUNC0(FloatVector_obj,get_length,return ) int FloatVector_obj::set_length(int value){ HX_STACKFRAME(&_hx_pos_055b1e986ae1a23a_895_set_length) HXLINE( 897) bool _hx_tmp; HXDLIN( 897) if ((value != this->_hx___array->length)) { HXLINE( 897) _hx_tmp = !(this->fixed); } else { HXLINE( 897) _hx_tmp = false; } HXDLIN( 897) if (_hx_tmp) { HXLINE( 901) if ((value > this->_hx___array->length)) { HXLINE( 903) _hx_array_set_size_exact(this->_hx___array,value); } else { HXLINE( 907) this->_hx___array->removeRange(value,this->_hx___array->length); } } HXLINE( 938) return this->_hx___array->length; } HX_DEFINE_DYNAMIC_FUNC1(FloatVector_obj,set_length,return ) hx::ObjectPtr< FloatVector_obj > FloatVector_obj::__new( ::Dynamic length, ::Dynamic fixed,::cpp::VirtualArray array,hx::Null< bool > __o_forceCopy) { hx::ObjectPtr< FloatVector_obj > __this = new FloatVector_obj(); __this->__construct(length,fixed,array,__o_forceCopy); return __this; } hx::ObjectPtr< FloatVector_obj > FloatVector_obj::__alloc(hx::Ctx *_hx_ctx, ::Dynamic length, ::Dynamic fixed,::cpp::VirtualArray array,hx::Null< bool > __o_forceCopy) { FloatVector_obj *__this = (FloatVector_obj*)(hx::Ctx::alloc(_hx_ctx, sizeof(FloatVector_obj), true, "openfl._Vector.FloatVector")); *(void **)__this = FloatVector_obj::_hx_vtable; __this->__construct(length,fixed,array,__o_forceCopy); return __this; } FloatVector_obj::FloatVector_obj() { } void FloatVector_obj::__Mark(HX_MARK_PARAMS) { HX_MARK_BEGIN_CLASS(FloatVector); HX_MARK_MEMBER_NAME(fixed,"fixed"); HX_MARK_MEMBER_NAME(_hx___array,"__array"); HX_MARK_END_CLASS(); } void FloatVector_obj::__Visit(HX_VISIT_PARAMS) { HX_VISIT_MEMBER_NAME(fixed,"fixed"); HX_VISIT_MEMBER_NAME(_hx___array,"__array"); } hx::Val FloatVector_obj::__Field(const ::String &inName,hx::PropertyAccess inCallProp) { switch(inName.length) { case 3: if (HX_FIELD_EQ(inName,"get") ) { return hx::Val( get_dyn() ); } if (HX_FIELD_EQ(inName,"pop") ) { return hx::Val( pop_dyn() ); } if (HX_FIELD_EQ(inName,"set") ) { return hx::Val( set_dyn() ); } break; case 4: if (HX_FIELD_EQ(inName,"copy") ) { return hx::Val( copy_dyn() ); } if (HX_FIELD_EQ(inName,"join") ) { return hx::Val( join_dyn() ); } if (HX_FIELD_EQ(inName,"push") ) { return hx::Val( push_dyn() ); } if (HX_FIELD_EQ(inName,"sort") ) { return hx::Val( sort_dyn() ); } break; case 5: if (HX_FIELD_EQ(inName,"fixed") ) { return hx::Val( fixed ); } if (HX_FIELD_EQ(inName,"shift") ) { return hx::Val( shift_dyn() ); } if (HX_FIELD_EQ(inName,"slice") ) { return hx::Val( slice_dyn() ); } break; case 6: if (HX_FIELD_EQ(inName,"length") ) { if (inCallProp == hx::paccAlways) return hx::Val( get_length() ); } if (HX_FIELD_EQ(inName,"concat") ) { return hx::Val( concat_dyn() ); } if (HX_FIELD_EQ(inName,"splice") ) { return hx::Val( splice_dyn() ); } if (HX_FIELD_EQ(inName,"toJSON") ) { return hx::Val( toJSON_dyn() ); } break; case 7: if (HX_FIELD_EQ(inName,"__array") ) { return hx::Val( _hx___array ); } if (HX_FIELD_EQ(inName,"indexOf") ) { return hx::Val( indexOf_dyn() ); } if (HX_FIELD_EQ(inName,"reverse") ) { return hx::Val( reverse_dyn() ); } if (HX_FIELD_EQ(inName,"unshift") ) { return hx::Val( unshift_dyn() ); } break; case 8: if (HX_FIELD_EQ(inName,"insertAt") ) { return hx::Val( insertAt_dyn() ); } if (HX_FIELD_EQ(inName,"iterator") ) { return hx::Val( iterator_dyn() ); } if (HX_FIELD_EQ(inName,"removeAt") ) { return hx::Val( removeAt_dyn() ); } if (HX_FIELD_EQ(inName,"toString") ) { return hx::Val( toString_dyn() ); } break; case 10: if (HX_FIELD_EQ(inName,"get_length") ) { return hx::Val( get_length_dyn() ); } if (HX_FIELD_EQ(inName,"set_length") ) { return hx::Val( set_length_dyn() ); } break; case 11: if (HX_FIELD_EQ(inName,"lastIndexOf") ) { return hx::Val( lastIndexOf_dyn() ); } } return super::__Field(inName,inCallProp); } hx::Val FloatVector_obj::__SetField(const ::String &inName,const hx::Val &inValue,hx::PropertyAccess inCallProp) { switch(inName.length) { case 5: if (HX_FIELD_EQ(inName,"fixed") ) { fixed=inValue.Cast< bool >(); return inValue; } break; case 6: if (HX_FIELD_EQ(inName,"length") ) { if (inCallProp == hx::paccAlways) return hx::Val( set_length(inValue.Cast< int >()) ); } break; case 7: if (HX_FIELD_EQ(inName,"__array") ) { _hx___array=inValue.Cast< ::Array< Float > >(); return inValue; } } return super::__SetField(inName,inValue,inCallProp); } void FloatVector_obj::__GetFields(Array< ::String> &outFields) { outFields->push(HX_HCSTRING("fixed","\x74","\xf9","\xa1","\x00")); outFields->push(HX_HCSTRING("length","\xe6","\x94","\x07","\x9f")); outFields->push(HX_HCSTRING("__array","\x79","\xc6","\xed","\x8f")); super::__GetFields(outFields); }; #if HXCPP_SCRIPTABLE static hx::StorageInfo FloatVector_obj_sMemberStorageInfo[] = { {hx::fsBool,(int)offsetof(FloatVector_obj,fixed),HX_HCSTRING("fixed","\x74","\xf9","\xa1","\x00")}, {hx::fsObject /*Array< Float >*/ ,(int)offsetof(FloatVector_obj,_hx___array),HX_HCSTRING("__array","\x79","\xc6","\xed","\x8f")}, { hx::fsUnknown, 0, null()} }; static hx::StaticInfo *FloatVector_obj_sStaticStorageInfo = 0; #endif static ::String FloatVector_obj_sMemberFields[] = { HX_HCSTRING("fixed","\x74","\xf9","\xa1","\x00"), HX_HCSTRING("__array","\x79","\xc6","\xed","\x8f"), HX_HCSTRING("concat","\x14","\x09","\xd0","\xc7"), HX_HCSTRING("copy","\xb5","\xbb","\xc4","\x41"), HX_HCSTRING("get","\x96","\x80","\x4e","\x00"), HX_HCSTRING("indexOf","\xc9","\x48","\xbf","\xe0"), HX_HCSTRING("insertAt","\x8c","\x7c","\x1f","\xc2"), HX_HCSTRING("iterator","\xee","\x49","\x9a","\x93"), HX_HCSTRING("join","\xea","\x33","\x65","\x46"), HX_HCSTRING("lastIndexOf","\x13","\xfd","\x6a","\x95"), HX_HCSTRING("pop","\x91","\x5d","\x55","\x00"), HX_HCSTRING("push","\xda","\x11","\x61","\x4a"), HX_HCSTRING("removeAt","\x57","\x6e","\x1b","\xad"), HX_HCSTRING("reverse","\x22","\x39","\xfc","\x1a"), HX_HCSTRING("set","\xa2","\x9b","\x57","\x00"), HX_HCSTRING("shift","\x82","\xec","\x22","\x7c"), HX_HCSTRING("slice","\x52","\xc4","\xc7","\x7e"), HX_HCSTRING("sort","\x5e","\x27","\x58","\x4c"), HX_HCSTRING("splice","\x7c","\x85","\x9e","\xbf"), HX_HCSTRING("toJSON","\x23","\x49","\x09","\x7c"), HX_HCSTRING("toString","\xac","\xd0","\x6e","\x38"), HX_HCSTRING("unshift","\x89","\xe3","\xb3","\x78"), HX_HCSTRING("get_length","\xaf","\x04","\x8f","\x8f"), HX_HCSTRING("set_length","\x23","\xa3","\x0c","\x93"), ::String(null()) }; static void FloatVector_obj_sMarkStatics(HX_MARK_PARAMS) { HX_MARK_MEMBER_NAME(FloatVector_obj::__mClass,"__mClass"); }; #ifdef HXCPP_VISIT_ALLOCS static void FloatVector_obj_sVisitStatics(HX_VISIT_PARAMS) { HX_VISIT_MEMBER_NAME(FloatVector_obj::__mClass,"__mClass"); }; #endif hx::Class FloatVector_obj::__mClass; void FloatVector_obj::__register() { hx::Object *dummy = new FloatVector_obj; FloatVector_obj::_hx_vtable = *(void **)dummy; hx::Static(__mClass) = new hx::Class_obj(); __mClass->mName = HX_HCSTRING("openfl._Vector.FloatVector","\x95","\x63","\xf0","\x2f"); __mClass->mSuper = &super::__SGetClass(); __mClass->mConstructEmpty = &__CreateEmpty; __mClass->mConstructArgs = &__Create; __mClass->mGetStaticField = &hx::Class_obj::GetNoStaticField; __mClass->mSetStaticField = &hx::Class_obj::SetNoStaticField; __mClass->mMarkFunc = FloatVector_obj_sMarkStatics; __mClass->mStatics = hx::Class_obj::dupFunctions(0 /* sStaticFields */); __mClass->mMembers = hx::Class_obj::dupFunctions(FloatVector_obj_sMemberFields); __mClass->mCanCast = hx::TCanCast< FloatVector_obj >; #ifdef HXCPP_VISIT_ALLOCS __mClass->mVisitFunc = FloatVector_obj_sVisitStatics; #endif #ifdef HXCPP_SCRIPTABLE __mClass->mMemberStorageInfo = FloatVector_obj_sMemberStorageInfo; #endif #ifdef HXCPP_SCRIPTABLE __mClass->mStaticStorageInfo = FloatVector_obj_sStaticStorageInfo; #endif hx::_hx_RegisterClass(__mClass->mName, __mClass); } } // end namespace openfl } // end namespace _Vector
[ "elsandkls@kidshideaway.net" ]
elsandkls@kidshideaway.net
be439b1697dd5e00121e941fc51f6635eac89fb8
8774e1860d88aeadcd1709e543f262b9f7983f31
/src/qt/editaddressdialog.cpp
3c6244f455b120b658d81d04a4d4c0db080519e5
[ "MIT" ]
permissive
npq7721/raven-dark
cb1d0f5da007ff5a46f6b1d8410101ce827a7f5f
abc2c956f5eb5b01eb4703918f50ba325b676661
refs/heads/master
2020-08-04T17:04:11.847541
2019-07-19T19:32:55
2019-07-19T19:32:55
212,213,490
0
0
MIT
2019-10-01T22:47:40
2019-10-01T22:47:40
null
UTF-8
C++
false
false
3,992
cpp
// Copyright (c) 2011-2013 The Bitcoin Core developers // Copyright (c) 2014-2017 The Dash Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "editaddressdialog.h" #include "ui_editaddressdialog.h" #include "addresstablemodel.h" #include "guiutil.h" #include <QDataWidgetMapper> #include <QMessageBox> EditAddressDialog::EditAddressDialog(Mode mode, QWidget *parent) : QDialog(parent), ui(new Ui::EditAddressDialog), mapper(0), mode(mode), model(0) { ui->setupUi(this); GUIUtil::setupAddressWidget(ui->addressEdit, this); switch(mode) { case NewReceivingAddress: setWindowTitle(tr("New receiving address")); ui->addressEdit->setEnabled(false); break; case NewSendingAddress: setWindowTitle(tr("New sending address")); break; case EditReceivingAddress: setWindowTitle(tr("Edit receiving address")); ui->addressEdit->setEnabled(false); break; case EditSendingAddress: setWindowTitle(tr("Edit sending address")); break; } mapper = new QDataWidgetMapper(this); mapper->setSubmitPolicy(QDataWidgetMapper::ManualSubmit); } EditAddressDialog::~EditAddressDialog() { delete ui; } void EditAddressDialog::setModel(AddressTableModel *model) { this->model = model; if(!model) return; mapper->setModel(model); mapper->addMapping(ui->labelEdit, AddressTableModel::Label); mapper->addMapping(ui->addressEdit, AddressTableModel::Address); } void EditAddressDialog::loadRow(int row) { mapper->setCurrentIndex(row); } bool EditAddressDialog::saveCurrentRow() { if(!model) return false; switch(mode) { case NewReceivingAddress: case NewSendingAddress: address = model->addRow( mode == NewSendingAddress ? AddressTableModel::Send : AddressTableModel::Receive, ui->labelEdit->text(), ui->addressEdit->text()); break; case EditReceivingAddress: case EditSendingAddress: if(mapper->submit()) { address = ui->addressEdit->text(); } break; } return !address.isEmpty(); } void EditAddressDialog::accept() { if(!model) return; if(!saveCurrentRow()) { switch(model->getEditStatus()) { case AddressTableModel::OK: // Failed with unknown reason. Just reject. break; case AddressTableModel::NO_CHANGES: // No changes were made during edit operation. Just reject. break; case AddressTableModel::INVALID_ADDRESS: QMessageBox::warning(this, windowTitle(), tr("The entered address \"%1\" is not a valid RavenDark address.").arg(ui->addressEdit->text()), QMessageBox::Ok, QMessageBox::Ok); break; case AddressTableModel::DUPLICATE_ADDRESS: QMessageBox::warning(this, windowTitle(), tr("The entered address \"%1\" is already in the address book.").arg(ui->addressEdit->text()), QMessageBox::Ok, QMessageBox::Ok); break; case AddressTableModel::WALLET_UNLOCK_FAILURE: QMessageBox::critical(this, windowTitle(), tr("Could not unlock wallet."), QMessageBox::Ok, QMessageBox::Ok); break; case AddressTableModel::KEY_GENERATION_FAILURE: QMessageBox::critical(this, windowTitle(), tr("New key generation failed."), QMessageBox::Ok, QMessageBox::Ok); break; } return; } QDialog::accept(); } QString EditAddressDialog::getAddress() const { return address; } void EditAddressDialog::setAddress(const QString &address) { this->address = address; ui->addressEdit->setText(address); }
[ "j4ys0n@gmail.com" ]
j4ys0n@gmail.com
9f1fc75c22014d0a28b26241ed4e20bd657ea96b
2d72d92fb8cd65e72f7e97ad4695c4f3bfba44c7
/include/quadtree.h
c0bec05c440ada3b20e5862025898fc2879710ef
[]
no_license
CzzzzH/Photorealistic-Renderer
8865625aa3366e4470118c62bce49e1d6469a7de
b587c7d4f6fe746d5e77ce6dcfeed1035142c8b8
refs/heads/master
2023-04-13T13:25:52.012150
2021-04-14T13:05:25
2021-04-14T13:05:25
357,900,002
0
0
null
null
null
null
UTF-8
C++
false
false
2,958
h
#ifndef QUADTREE_H #define QUADTREE_H #include "object.hpp" class ParmetricSurface; class QuadTreeNode { public: double minU, maxU, minV, maxV, centerU, centerV; bool leaf = false; Point center, lowerBound, upperBound; QuadTreeNode* child[4]; double intersect(const Ray &ray) { Vector3f source = ray.getOrigin(), dir = ray.getDirection(); double tEnter = -INF, tExit = INF; if (source <= upperBound && source >= lowerBound) return 0; if (fabs(dir.x()) > 0) { tEnter = max(tEnter, min((lowerBound.x() - source.x()) / dir.x(), (upperBound.x() - source.x()) / dir.x())); tExit = min(tExit, max((lowerBound.x() - source.x()) / dir.x(), (upperBound.x() - source.x()) / dir.x())); } if (fabs(dir.y()) > 0) { tEnter = max(tEnter, min((lowerBound.y() - source.y()) / dir.y(), (upperBound.y() - source.y()) / dir.y())); tExit = min(tExit, max((lowerBound.y() - source.y()) / dir.y(), (upperBound.y() - source.y()) / dir.y())); } if (fabs(dir.z()) > 0) { tEnter = max(tEnter, min((lowerBound.z() - source.z()) / dir.z(), (upperBound.z() - source.z()) / dir.z())); tExit = min(tExit, max((lowerBound.z() - source.z()) / dir.z(), (upperBound.z() - source.z()) / dir.z())); } if (tEnter < -EPS) return INF; Point hitPoint = ray.pointAtParameter(tEnter); if (!(hitPoint >= lowerBound - Vector3f(2e-3) && hitPoint <= upperBound + Vector3f(2e-3))) return INF; return (tEnter + tExit) / 2; } double getCubeDistance(const Ray &ray) { Vector3f source = ray.getOrigin(), dir = ray.getDirection(); double t = -INF; Vector3f &lb = lowerBound, &ub = upperBound; if (source <= ub && source >= lb) return t; if (fabs(dir.x()) > 0) t = max(t, min((lb.x() - source.x()) / dir.x(), (ub.x() - source.x()) / dir.x())); if (fabs(dir.y()) > 0) t = max(t, min((lb.y() - source.y()) / dir.y(), (ub.y() - source.y()) / dir.y())); if (fabs(dir.z()) > 0) t = max(t, min((lb.z() - source.z()) / dir.z(), (ub.z() - source.z()) / dir.z())); if (t < -EPS) return INF; Point hitPoint = ray.pointAtParameter(t); if (!(hitPoint >= lowerBound - Vector3f(2e-3) && hitPoint <= upperBound + Vector3f(2e-3))) return INF; return t; } }; class QuadTree { public: struct NextNode { double t; QuadTreeNode *node; NextNode(QuadTreeNode *now) : node(now){ t = INF; } bool operator< (const NextNode & b) { return t < b.t;} }; ParmetricSurface* face; QuadTreeNode *root; QuadTreeNode* build(int depth, double minU, double maxU, double minV, double maxV); bool intersect(QuadTreeNode* nowNode, const Ray &ray, Hit &hit, double tMin); }; #endif // QUADTREE_H
[ "morphling233@gmail.com" ]
morphling233@gmail.com
ba3580095a06543b08e44b90b0cbf26fe2b394b3
915c488ca25aac64c03ff16ce4adeea48ef8a976
/Lab06/src/Product.cpp
f9dc87923f7aa663955bb901cc9969fddabd8942
[]
no_license
Dodzik/PO
adacc54574cc31a747f1bf5858e561b1c55c763d
7174b119f3c60b663605b2608d801950cf9c8b83
refs/heads/main
2023-05-26T00:12:06.495644
2021-06-15T13:47:35
2021-06-15T13:47:35
346,689,770
0
0
null
null
null
null
UTF-8
C++
false
false
688
cpp
#include "Product.h" Product::Product(Primitive& a,Primitive& b):pra(a),prb(b){ // pra = a; //takie przypisanie powoduje błąd wymug listy inicjalizacyjnej // prb = b; } float Product::Get()const{ return pra.Get() * prb.Get(); } void Product::prt()const { std::cout<<"("; pra.prt(); std::cout<<"*"; prb.prt(); std::cout<<")"; /* std::cout<<"("<<pra.Get()<<"*"<<prb.Get()<<")"; w zakomentowanym układzie funkcja wyswietla w sekcji PRODUCT: jedynie aktualne zadanie gdzie pra.Get() jest wynikiem wszystkich działań znajdującyhc się po lewej stronie Nie powoduje to zmian w pozostałych sekcjach ponieważ działanie mnożenia jest w pojedyńczych nawiasach*/ }
[ "noreply@github.com" ]
noreply@github.com
1ab2702cb83f7bebfae84b8a1d13c578380c9b68
e9c01b7f3237705f5d8e2407e8b56392d77e94e0
/src/pkcs7.cpp
0817dd497aa86008eac890751d96a2a5ba68be10
[ "MIT" ]
permissive
rufus-stone/hamarr
bddb82a54dca346e9ce3895109e3232ba47b32f1
72b82b76ae8269fb730c918a6e87463b75ac8664
refs/heads/master
2023-02-25T04:25:12.254259
2021-02-01T15:33:00
2021-02-01T15:33:00
239,369,889
0
0
MIT
2021-02-01T15:33:01
2020-02-09T20:31:55
C++
UTF-8
C++
false
false
1,088
cpp
#include "hamarr/pkcs7.hpp" namespace hmr::pkcs7 { //////////////////////////////////////////////////////////// auto pad(std::string_view input, std::size_t block_size) noexcept -> std::string { uint8_t pad_byte = input.size() % block_size; if (pad_byte == 0) { return std::string{input.data()}; } pad_byte = block_size - pad_byte; auto output = std::string{}; output.reserve(input.size() + pad_byte); output = input; for (std::size_t n = 0; n < pad_byte; ++n) { output.push_back(static_cast<char>(pad_byte)); } return output; } //////////////////////////////////////////////////////////// auto unpad(std::string_view input, std::size_t block_size) -> std::string { // Is the input not actually pkcs7 padded? if (!pkcs7::padded(input, block_size)) { return std::string{input.data()}; } auto const pad_byte = static_cast<uint8_t>(input[input.size() - 1]); auto output = std::string{}; output.reserve(input.size() - pad_byte); output = input.substr(0, input.size() - pad_byte); return output; } } // namespace hmr::pkcs7
[ "60827786+rufus-stone@users.noreply.github.com" ]
60827786+rufus-stone@users.noreply.github.com
462cb4e062aac3f8b7805d08900ce515aea8bf92
c07a5abb018c2be9d3d2500df3e33af59d7e7d69
/Source/Twaliens/EnemySpawner.cpp
00e0a841ac78aff26526c1df00090f6c6576e248
[]
no_license
Nekroarteriaa/TwaliensFinal
a9a4126215b04caf8ab2d3eddf1b1105b71e78ef
2f41fa788da3d9125c499250a0e85a6d52cbeba1
refs/heads/master
2023-02-25T02:48:58.988462
2021-02-07T02:50:20
2021-02-07T02:50:20
336,685,682
0
0
null
null
null
null
UTF-8
C++
false
false
4,345
cpp
// All rights reserved. #include "EnemySpawner.h" #include "ConstructorHelpers.h" #include "Kismet/GameplayStatics.h" #include "Runtime/Engine/Public/EngineUtils.h" #include "Runtime/Core/Public/Math/UnrealMathUtility.h" #include "Engine/Engine.h" #include "TimerManager.h" #include "Components/BoxComponent.h" #include "BasicWarriorController.h" #include "Twalien.h" #include "EnemySpawner.h" #include "PoolManager.h" // Sets default values AEnemySpawner::AEnemySpawner() { // Set this actor to call Tick() every frame. You can turn this off to improve performance if you don't need it. PrimaryActorTick.bCanEverTick = true; //ConstructorHelpers::FClassFinder<ABasicWarrior> BasicWarrior(TEXT("/Game/Characters/BasicWarrior/BP_BasicWarrior_0")); //EnemyToSpawn = BasicWarrior.Class; SpawnVolume = CreateDefaultSubobject<UBoxComponent>(TEXT("BoxComponent")); //Meshcomp = CreateDefaultSubobject<UStaticMeshComponent>(TEXT("MeshComponent")); SpawnVolume->SetupAttachment(RootComponent); } // Called when the game starts or when spawned void AEnemySpawner::BeginPlay() { Super::BeginPlay(); //EnemyPool->FillPool(Cast<AActor>(EnemyToSpawn)); UWorld* world = GetWorld(); if (!isPassive && isActivated) { GetWorldTimerManager().SetTimer(SpawnerTimerHandle, this, &AEnemySpawner::SpawnEnemy, TimeBetweenSpawns, true, TimeToStartSpawning); } } // Called every frame void AEnemySpawner::Tick(float DeltaTime) { Super::Tick(DeltaTime); } void AEnemySpawner::SpawnEnemy() { UWorld* world = GetWorld(); //Coords of the entire box component as spawnzone float xmin = SpawnVolume->GetComponentLocation().X - SpawnVolume->GetScaledBoxExtent().X; float xmax = SpawnVolume->GetComponentLocation().X + SpawnVolume->GetScaledBoxExtent().X; float ymin = SpawnVolume->GetComponentLocation().Y - SpawnVolume->GetScaledBoxExtent().Y; float ymax = SpawnVolume->GetComponentLocation().Y + SpawnVolume->GetScaledBoxExtent().Y; float z = SpawnVolume->GetComponentLocation().Z - SpawnVolume->GetScaledBoxExtent().Z; if (ObjectPool) { if (world) { for (int i = 1; i <= numberToSpawn && ObjectPool->GetPoolSize() >= 0; ++i) { FActorSpawnParameters spawnParams; spawnParams.Owner = this; //FRotator Rotator = this->GetActorRotation(); FVector Location = FVector(FMath::RandRange(xmin, xmax), FMath::RandRange(ymin, ymax), z); AActor* Object = Cast<AActor>(ObjectPool->GetActorFromPool()); if (Object) { //Enemy->SetActorLocationAndRotation(Location, Rotator); Object->SetActorLocation(Location); } } } } } void AEnemySpawner::SpawnEnemyWithReference(TArray<class ABasicWarrior*> & Enemies) { UWorld* world = GetWorld(); //Coords of the entire box component as spawnzone float xmin = SpawnVolume->GetComponentLocation().X - SpawnVolume->GetScaledBoxExtent().X; float xmax = SpawnVolume->GetComponentLocation().X + SpawnVolume->GetScaledBoxExtent().X; float ymin = SpawnVolume->GetComponentLocation().Y - SpawnVolume->GetScaledBoxExtent().Y; float ymax = SpawnVolume->GetComponentLocation().Y + SpawnVolume->GetScaledBoxExtent().Y; float z = SpawnVolume->GetComponentLocation().Z - SpawnVolume->GetScaledBoxExtent().Z; if (ObjectPool) { if (world) { for (int i = 1; i <= numberToSpawn && ObjectPool->GetPoolSize() >= 0; ++i) { FActorSpawnParameters spawnParams; spawnParams.Owner = this; FRotator Rotator = this->GetActorRotation(); FVector Location = FVector(FMath::RandRange(xmin, xmax), FMath::RandRange(ymin, ymax), z); ABasicWarrior* Enemy = Cast<ABasicWarrior>(ObjectPool->GetActorFromPool()); if (Enemy) { Enemy->SetActorLocationAndRotation(Location, Rotator); Enemies.Add(Enemy); } } } } } bool AEnemySpawner::GetActivated() { return isActivated; } void AEnemySpawner::SetIsActivated(bool flag) { if (flag && isPassive) { isActivated = flag; //th.BindUFunction(this, FName("SpawnEnemy")); GetWorldTimerManager().SetTimer(SpawnerTimerHandle, this, &AEnemySpawner::SpawnEnemy, TimeBetweenSpawns, true, TimeToStartSpawning); } else if (!flag && isPassive) { GetWorldTimerManager().ClearTimer(SpawnerTimerHandle); Destroy(); } } void AEnemySpawner::SetIsPassive(bool flag) { isPassive = flag; } bool AEnemySpawner::GetIsPassive(bool flag) { return isPassive; }
[ "Nekroarteriaa@gmail.com" ]
Nekroarteriaa@gmail.com
3ccd15103e90185d86187464031dde249b561c16
55694e4d97858c28c29cb6fccdd6df5a938ea858
/Temp/il2cppOutput/il2cppOutput/Il2CppMethodPointerTable.cpp
9ba7cda6178f76502ad1414631f519221f1b4c2d
[]
no_license
abenzer/unity-rollaball
681afe78aa1730f70aadd2d45323c62908ef58b9
a29097f4df81a96d8b7af734eac54ba8ab9652ad
refs/heads/master
2021-01-10T14:43:37.642848
2016-02-16T01:06:03
2016-02-16T01:06:03
51,746,616
0
0
null
null
null
null
UTF-8
C++
false
false
1,033,819
cpp
#include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include "class-internals.h" #include "codegen/il2cpp-codegen.h" extern "C" void Locale_GetText_m2389348044 (); extern "C" void Locale_GetText_m2218462520 (); extern "C" void SafeHandleZeroOrMinusOneIsInvalid__ctor_m3517386007 (); extern "C" void SafeHandleZeroOrMinusOneIsInvalid_get_IsInvalid_m1067813380 (); extern "C" void SafeWaitHandle__ctor_m2304648142 (); extern "C" void SafeWaitHandle_ReleaseHandle_m225694928 (); extern "C" void CodePointIndexer__ctor_m1627820919 (); extern "C" void CodePointIndexer_ToIndex_m2811911057 (); extern "C" void TableRange__ctor_m3599194282 (); extern "C" void Contraction__ctor_m4198429461 (); extern "C" void ContractionComparer__ctor_m1678187352 (); extern "C" void ContractionComparer__cctor_m2104149 (); extern "C" void ContractionComparer_Compare_m3351171011 (); extern "C" void Level2Map__ctor_m1114927875 (); extern "C" void Level2MapComparer__ctor_m1764634816 (); extern "C" void Level2MapComparer__cctor_m2681975533 (); extern "C" void Level2MapComparer_Compare_m1356360283 (); extern "C" void MSCompatUnicodeTable__cctor_m2555601275 (); extern "C" void MSCompatUnicodeTable_GetTailoringInfo_m350198803 (); extern "C" void MSCompatUnicodeTable_BuildTailoringTables_m392171468 (); extern "C" void MSCompatUnicodeTable_SetCJKReferences_m2831602013 (); extern "C" void MSCompatUnicodeTable_Category_m714095701 (); extern "C" void MSCompatUnicodeTable_Level1_m1653658500 (); extern "C" void MSCompatUnicodeTable_Level2_m3161210309 (); extern "C" void MSCompatUnicodeTable_Level3_m373794822 (); extern "C" void MSCompatUnicodeTable_IsIgnorable_m3234859979 (); extern "C" void MSCompatUnicodeTable_IsIgnorableNonSpacing_m4268593916 (); extern "C" void MSCompatUnicodeTable_ToKanaTypeInsensitive_m3450247664 (); extern "C" void MSCompatUnicodeTable_ToWidthCompat_m1071471274 (); extern "C" void MSCompatUnicodeTable_HasSpecialWeight_m3716746070 (); extern "C" void MSCompatUnicodeTable_IsHalfWidthKana_m1031776025 (); extern "C" void MSCompatUnicodeTable_IsHiragana_m2175293414 (); extern "C" void MSCompatUnicodeTable_IsJapaneseSmallLetter_m3143042617 (); extern "C" void MSCompatUnicodeTable_get_IsReady_m989669506 (); extern "C" void MSCompatUnicodeTable_GetResource_m1919022169 (); extern "C" void MSCompatUnicodeTable_UInt32FromBytePtr_m108136383 (); extern "C" void MSCompatUnicodeTable_FillCJK_m1143983080 (); extern "C" void MSCompatUnicodeTable_FillCJKCore_m2741346761 (); extern "C" void MSCompatUnicodeTableUtil__cctor_m2862883485 (); extern "C" void SimpleCollator__ctor_m3894313767 (); extern "C" void SimpleCollator__cctor_m1599258646 (); extern "C" void SimpleCollator_SetCJKTable_m1695548744 (); extern "C" void SimpleCollator_GetNeutralCulture_m2928766877 (); extern "C" void SimpleCollator_Category_m191567536 (); extern "C" void SimpleCollator_Level1_m830769311 (); extern "C" void SimpleCollator_Level2_m1794183443 (); extern "C" void SimpleCollator_IsHalfKana_m3193940553 (); extern "C" void SimpleCollator_GetContraction_m3093419443 (); extern "C" void SimpleCollator_GetContraction_m1209314148 (); extern "C" void SimpleCollator_GetTailContraction_m31293987 (); extern "C" void SimpleCollator_GetTailContraction_m3773938932 (); extern "C" void SimpleCollator_FilterOptions_m1756004783 (); extern "C" void SimpleCollator_GetExtenderType_m1908961333 (); extern "C" void SimpleCollator_ToDashTypeValue_m2421194399 (); extern "C" void SimpleCollator_FilterExtender_m3148823481 (); extern "C" void SimpleCollator_IsIgnorable_m4132152338 (); extern "C" void SimpleCollator_IsSafe_m575256339 (); extern "C" void SimpleCollator_GetSortKey_m1379820039 (); extern "C" void SimpleCollator_GetSortKey_m4243574631 (); extern "C" void SimpleCollator_GetSortKey_m315817675 (); extern "C" void SimpleCollator_FillSortKeyRaw_m3040933930 (); extern "C" void SimpleCollator_FillSurrogateSortKeyRaw_m3127065804 (); extern "C" void SimpleCollator_CompareOrdinal_m712144577 (); extern "C" void SimpleCollator_CompareQuick_m2053836602 (); extern "C" void SimpleCollator_CompareOrdinalIgnoreCase_m2671662527 (); extern "C" void SimpleCollator_Compare_m1335009039 (); extern "C" void SimpleCollator_ClearBuffer_m3079572920 (); extern "C" void SimpleCollator_QuickCheckPossible_m2783866695 (); extern "C" void SimpleCollator_CompareInternal_m2883409076 (); extern "C" void SimpleCollator_CompareFlagPair_m2729119818 (); extern "C" void SimpleCollator_IsPrefix_m3203677694 (); extern "C" void SimpleCollator_IsPrefix_m3891336350 (); extern "C" void SimpleCollator_IsPrefix_m2215601431 (); extern "C" void SimpleCollator_IsSuffix_m74058015 (); extern "C" void SimpleCollator_IsSuffix_m1088571519 (); extern "C" void SimpleCollator_QuickIndexOf_m2845818816 (); extern "C" void SimpleCollator_IndexOf_m3062309067 (); extern "C" void SimpleCollator_IndexOfOrdinal_m1896144901 (); extern "C" void SimpleCollator_IndexOfOrdinalIgnoreCase_m3414283139 (); extern "C" void SimpleCollator_IndexOfSortKey_m175081590 (); extern "C" void SimpleCollator_IndexOf_m859847038 (); extern "C" void SimpleCollator_LastIndexOf_m2017636865 (); extern "C" void SimpleCollator_LastIndexOfOrdinal_m2043339535 (); extern "C" void SimpleCollator_LastIndexOfOrdinalIgnoreCase_m2479821325 (); extern "C" void SimpleCollator_LastIndexOfSortKey_m1215896936 (); extern "C" void SimpleCollator_LastIndexOf_m1438809524 (); extern "C" void SimpleCollator_MatchesForward_m3033109065 (); extern "C" void SimpleCollator_MatchesForwardCore_m4219153676 (); extern "C" void SimpleCollator_MatchesPrimitive_m4274637912 (); extern "C" void SimpleCollator_MatchesBackward_m2723732854 (); extern "C" void SimpleCollator_MatchesBackwardCore_m1571229341 (); extern "C" void Context__ctor_m1103265712 (); extern "C" void PreviousInfo__ctor_m144561586 (); extern "C" void SortKeyBuffer__ctor_m3429486059 (); extern "C" void SortKeyBuffer_Reset_m3243252295 (); extern "C" void SortKeyBuffer_Initialize_m100616957 (); extern "C" void SortKeyBuffer_AppendCJKExtension_m2180112849 (); extern "C" void SortKeyBuffer_AppendKana_m1941661717 (); extern "C" void SortKeyBuffer_AppendNormal_m789725103 (); extern "C" void SortKeyBuffer_AppendLevel5_m3934449371 (); extern "C" void SortKeyBuffer_AppendBufferPrimitive_m2920762936 (); extern "C" void SortKeyBuffer_GetResultAndReset_m4049148397 (); extern "C" void SortKeyBuffer_GetOptimizedLength_m4238719184 (); extern "C" void SortKeyBuffer_GetResult_m3192512021 (); extern "C" void TailoringInfo__ctor_m3207920174 (); extern "C" void BigInteger__ctor_m3704863258 (); extern "C" void BigInteger__ctor_m2711034688 (); extern "C" void BigInteger__ctor_m1494705524 (); extern "C" void BigInteger__ctor_m504969840 (); extern "C" void BigInteger__ctor_m3103304609 (); extern "C" void BigInteger__cctor_m2648738004 (); extern "C" void BigInteger_get_Rng_m765650082 (); extern "C" void BigInteger_GenerateRandom_m2802147052 (); extern "C" void BigInteger_GenerateRandom_m4253307430 (); extern "C" void BigInteger_Randomize_m2896043860 (); extern "C" void BigInteger_Randomize_m939072904 (); extern "C" void BigInteger_BitCount_m2806782665 (); extern "C" void BigInteger_TestBit_m1773572170 (); extern "C" void BigInteger_TestBit_m2795990017 (); extern "C" void BigInteger_SetBit_m2279269508 (); extern "C" void BigInteger_SetBit_m3438761593 (); extern "C" void BigInteger_LowestSetBit_m2480304804 (); extern "C" void BigInteger_GetBytes_m1628218698 (); extern "C" void BigInteger_ToString_m1883360448 (); extern "C" void BigInteger_ToString_m3090523388 (); extern "C" void BigInteger_Normalize_m1377483748 (); extern "C" void BigInteger_Clear_m2771926564 (); extern "C" void BigInteger_GetHashCode_m1746556492 (); extern "C" void BigInteger_ToString_m2572155514 (); extern "C" void BigInteger_Equals_m2754111464 (); extern "C" void BigInteger_ModInverse_m2802984018 (); extern "C" void BigInteger_ModPow_m3768768275 (); extern "C" void BigInteger_IsProbablePrime_m1415542107 (); extern "C" void BigInteger_GeneratePseudoPrime_m1117071170 (); extern "C" void BigInteger_Incr2_m3857837557 (); extern "C" void BigInteger_op_Implicit_m3211779122 (); extern "C" void BigInteger_op_Implicit_m2149647129 (); extern "C" void BigInteger_op_Addition_m1794246055 (); extern "C" void BigInteger_op_Subtraction_m3817287731 (); extern "C" void BigInteger_op_Modulus_m4020058202 (); extern "C" void BigInteger_op_Modulus_m3137058896 (); extern "C" void BigInteger_op_Division_m1880509270 (); extern "C" void BigInteger_op_Multiply_m2953359743 (); extern "C" void BigInteger_op_Multiply_m1950895881 (); extern "C" void BigInteger_op_LeftShift_m43331734 (); extern "C" void BigInteger_op_RightShift_m1514227367 (); extern "C" void BigInteger_op_Equality_m2978468520 (); extern "C" void BigInteger_op_Inequality_m3358209997 (); extern "C" void BigInteger_op_Equality_m3743829593 (); extern "C" void BigInteger_op_Inequality_m1216595348 (); extern "C" void BigInteger_op_GreaterThan_m2626925084 (); extern "C" void BigInteger_op_LessThan_m3727321209 (); extern "C" void BigInteger_op_GreaterThanOrEqual_m1000888957 (); extern "C" void BigInteger_op_LessThanOrEqual_m4161155456 (); extern "C" void Kernel_AddSameSign_m3215396177 (); extern "C" void Kernel_Subtract_m3798488993 (); extern "C" void Kernel_MinusEq_m327282667 (); extern "C" void Kernel_PlusEq_m3333254525 (); extern "C" void Kernel_Compare_m2163492354 (); extern "C" void Kernel_SingleByteDivideInPlace_m1308374798 (); extern "C" void Kernel_DwordMod_m1976612823 (); extern "C" void Kernel_DwordDivMod_m1857966345 (); extern "C" void Kernel_multiByteDivide_m3174393565 (); extern "C" void Kernel_LeftShift_m2845478852 (); extern "C" void Kernel_RightShift_m2481442105 (); extern "C" void Kernel_MultiplyByDword_m254641343 (); extern "C" void Kernel_Multiply_m1732433625 (); extern "C" void Kernel_MultiplyMod2p32pmod_m3017282768 (); extern "C" void Kernel_modInverse_m293471249 (); extern "C" void Kernel_modInverse_m2730926279 (); extern "C" void ModulusRing__ctor_m2714405032 (); extern "C" void ModulusRing_BarrettReduction_m2942755287 (); extern "C" void ModulusRing_Multiply_m2973563789 (); extern "C" void ModulusRing_Difference_m1446083540 (); extern "C" void ModulusRing_Pow_m3873329921 (); extern "C" void ModulusRing_Pow_m2579315160 (); extern "C" void PrimeGeneratorBase__ctor_m1226717416 (); extern "C" void PrimeGeneratorBase_get_Confidence_m2613103415 (); extern "C" void PrimeGeneratorBase_get_PrimalityTest_m1532631454 (); extern "C" void PrimeGeneratorBase_get_TrialDivisionBounds_m1253247865 (); extern "C" void SequentialSearchPrimeGeneratorBase__ctor_m2757499105 (); extern "C" void SequentialSearchPrimeGeneratorBase_GenerateSearchBase_m2793952994 (); extern "C" void SequentialSearchPrimeGeneratorBase_GenerateNewPrime_m1129470714 (); extern "C" void SequentialSearchPrimeGeneratorBase_GenerateNewPrime_m220784712 (); extern "C" void SequentialSearchPrimeGeneratorBase_IsPrimeAcceptable_m465227145 (); extern "C" void PrimalityTest__ctor_m1169421875 (); extern "C" void PrimalityTest_Invoke_m753416817 (); extern "C" void PrimalityTest_BeginInvoke_m2556828168 (); extern "C" void PrimalityTest_EndInvoke_m1884117505 (); extern "C" void PrimalityTests_GetSPPRounds_m2107793502 (); extern "C" void PrimalityTests_Test_m3408474536 (); extern "C" void PrimalityTests_RabinMillerTest_m2609046185 (); extern "C" void PrimalityTests_SmallPrimeSppTest_m2393113007 (); extern "C" void Runtime_GetDisplayName_m1581849017 (); extern "C" void ASN1__ctor_m2151045169 (); extern "C" void ASN1__ctor_m520959860 (); extern "C" void ASN1__ctor_m1275189007 (); extern "C" void ASN1_get_Count_m1333946978 (); extern "C" void ASN1_get_Tag_m3498647997 (); extern "C" void ASN1_get_Length_m711165077 (); extern "C" void ASN1_get_Value_m3158558710 (); extern "C" void ASN1_set_Value_m1539277917 (); extern "C" void ASN1_CompareArray_m2898057484 (); extern "C" void ASN1_CompareValue_m3775459761 (); extern "C" void ASN1_Add_m4076871950 (); extern "C" void ASN1_GetBytes_m653053737 (); extern "C" void ASN1_Decode_m3655129841 (); extern "C" void ASN1_DecodeTLV_m4051437923 (); extern "C" void ASN1_get_Item_m210610506 (); extern "C" void ASN1_Element_m2807922775 (); extern "C" void ASN1_ToString_m374840985 (); extern "C" void ASN1Convert_FromInt32_m571910399 (); extern "C" void ASN1Convert_FromOid_m1191866008 (); extern "C" void ASN1Convert_ToInt32_m3294327310 (); extern "C" void ASN1Convert_ToOid_m1584150353 (); extern "C" void ASN1Convert_ToDateTime_m1541196208 (); extern "C" void BitConverterLE_GetUIntBytes_m2711216227 (); extern "C" void BitConverterLE_GetBytes_m3726708497 (); extern "C" void BitConverterLE_UShortFromBytes_m2244877436 (); extern "C" void BitConverterLE_UIntFromBytes_m318761967 (); extern "C" void BitConverterLE_ULongFromBytes_m2716396614 (); extern "C" void BitConverterLE_ToInt16_m2252348306 (); extern "C" void BitConverterLE_ToInt32_m2888821382 (); extern "C" void BitConverterLE_ToSingle_m3430028734 (); extern "C" void BitConverterLE_ToDouble_m4182216094 (); extern "C" void BlockProcessor__ctor_m3353238986 (); extern "C" void BlockProcessor_Finalize_m1137753970 (); extern "C" void BlockProcessor_Initialize_m3614798244 (); extern "C" void BlockProcessor_Core_m2224984694 (); extern "C" void BlockProcessor_Core_m1715183702 (); extern "C" void BlockProcessor_Final_m2868771374 (); extern "C" void CryptoConvert_ToInt32LE_m2023521787 (); extern "C" void CryptoConvert_ToUInt32LE_m558101659 (); extern "C" void CryptoConvert_GetBytesLE_m62772046 (); extern "C" void CryptoConvert_ToCapiPrivateKeyBlob_m1139689325 (); extern "C" void CryptoConvert_FromCapiPublicKeyBlob_m2773702008 (); extern "C" void CryptoConvert_FromCapiPublicKeyBlob_m1285057119 (); extern "C" void CryptoConvert_ToCapiPublicKeyBlob_m4141543943 (); extern "C" void CryptoConvert_ToCapiKeyBlob_m2611438349 (); extern "C" void DSAManaged__ctor_m1342239545 (); extern "C" void DSAManaged_add_KeyGenerated_m1677002343 (); extern "C" void DSAManaged_remove_KeyGenerated_m3864760974 (); extern "C" void DSAManaged_Finalize_m3333954938 (); extern "C" void DSAManaged_Generate_m1196580113 (); extern "C" void DSAManaged_GenerateKeyPair_m414103146 (); extern "C" void DSAManaged_add_m3640666386 (); extern "C" void DSAManaged_GenerateParams_m2842017800 (); extern "C" void DSAManaged_get_Random_m1436172465 (); extern "C" void DSAManaged_get_KeySize_m3299647161 (); extern "C" void DSAManaged_get_PublicOnly_m2380856856 (); extern "C" void DSAManaged_NormalizeArray_m2316124043 (); extern "C" void DSAManaged_ExportParameters_m4217036623 (); extern "C" void DSAManaged_ImportParameters_m3610982722 (); extern "C" void DSAManaged_CreateSignature_m2835018685 (); extern "C" void DSAManaged_VerifySignature_m2521906789 (); extern "C" void DSAManaged_Dispose_m3450076380 (); extern "C" void KeyGeneratedEventHandler__ctor_m3640396755 (); extern "C" void KeyGeneratedEventHandler_Invoke_m257300999 (); extern "C" void KeyGeneratedEventHandler_BeginInvoke_m3899350926 (); extern "C" void KeyGeneratedEventHandler_EndInvoke_m1157390179 (); extern "C" void KeyBuilder_get_Rng_m4045185360 (); extern "C" void KeyBuilder_Key_m180785233 (); extern "C" void KeyBuilder_IV_m3476112319 (); extern "C" void KeyPairPersistence__ctor_m4074919992 (); extern "C" void KeyPairPersistence__ctor_m1684061812 (); extern "C" void KeyPairPersistence__cctor_m487272190 (); extern "C" void KeyPairPersistence_get_Filename_m2155113634 (); extern "C" void KeyPairPersistence_get_KeyValue_m204692013 (); extern "C" void KeyPairPersistence_set_KeyValue_m2790955742 (); extern "C" void KeyPairPersistence_Load_m625005177 (); extern "C" void KeyPairPersistence_Save_m870778642 (); extern "C" void KeyPairPersistence_Remove_m860812121 (); extern "C" void KeyPairPersistence_get_UserPath_m1086915307 (); extern "C" void KeyPairPersistence_get_MachinePath_m4003471731 (); extern "C" void KeyPairPersistence__CanSecure_m255016359 (); extern "C" void KeyPairPersistence__ProtectUser_m3671478836 (); extern "C" void KeyPairPersistence__ProtectMachine_m1278598652 (); extern "C" void KeyPairPersistence__IsUserProtected_m2378307061 (); extern "C" void KeyPairPersistence__IsMachineProtected_m4266693987 (); extern "C" void KeyPairPersistence_CanSecure_m4211984108 (); extern "C" void KeyPairPersistence_ProtectUser_m976461369 (); extern "C" void KeyPairPersistence_ProtectMachine_m4131870679 (); extern "C" void KeyPairPersistence_IsUserProtected_m635426682 (); extern "C" void KeyPairPersistence_IsMachineProtected_m3976964542 (); extern "C" void KeyPairPersistence_get_CanChange_m3754956646 (); extern "C" void KeyPairPersistence_get_UseDefaultKeyContainer_m1048698904 (); extern "C" void KeyPairPersistence_get_UseMachineKeyStore_m2900159998 (); extern "C" void KeyPairPersistence_get_ContainerName_m3424430483 (); extern "C" void KeyPairPersistence_Copy_m2616974335 (); extern "C" void KeyPairPersistence_FromXml_m1868637128 (); extern "C" void KeyPairPersistence_ToXml_m2810455020 (); extern "C" void MACAlgorithm__ctor_m1891225170 (); extern "C" void MACAlgorithm_Initialize_m3361709802 (); extern "C" void MACAlgorithm_Core_m3581743643 (); extern "C" void MACAlgorithm_Final_m1570388531 (); extern "C" void PKCS1__cctor_m332300130 (); extern "C" void PKCS1_Compare_m2391456096 (); extern "C" void PKCS1_I2OSP_m2501804848 (); extern "C" void PKCS1_OS2IP_m2579010453 (); extern "C" void PKCS1_RSAEP_m3602740544 (); extern "C" void PKCS1_RSASP1_m4047396749 (); extern "C" void PKCS1_RSAVP1_m3152001232 (); extern "C" void PKCS1_Encrypt_v15_m1679755779 (); extern "C" void PKCS1_Sign_v15_m3245483309 (); extern "C" void PKCS1_Verify_v15_m2792601436 (); extern "C" void PKCS1_Verify_v15_m2792585377 (); extern "C" void PKCS1_Encode_v15_m2534638350 (); extern "C" void EncryptedPrivateKeyInfo__ctor_m297039621 (); extern "C" void EncryptedPrivateKeyInfo__ctor_m814995684 (); extern "C" void EncryptedPrivateKeyInfo_get_Algorithm_m3460417254 (); extern "C" void EncryptedPrivateKeyInfo_get_EncryptedData_m3098438110 (); extern "C" void EncryptedPrivateKeyInfo_get_Salt_m3294338600 (); extern "C" void EncryptedPrivateKeyInfo_get_IterationCount_m3247856054 (); extern "C" void EncryptedPrivateKeyInfo_Decode_m2270506076 (); extern "C" void PrivateKeyInfo__ctor_m4185878217 (); extern "C" void PrivateKeyInfo__ctor_m2892013472 (); extern "C" void PrivateKeyInfo_get_PrivateKey_m941592214 (); extern "C" void PrivateKeyInfo_Decode_m2233548064 (); extern "C" void PrivateKeyInfo_RemoveLeadingZero_m599046126 (); extern "C" void PrivateKeyInfo_Normalize_m3904382092 (); extern "C" void PrivateKeyInfo_DecodeRSA_m1382613138 (); extern "C" void PrivateKeyInfo_DecodeDSA_m1419148139 (); extern "C" void RSAManaged__ctor_m1958471367 (); extern "C" void RSAManaged_add_KeyGenerated_m3011900107 (); extern "C" void RSAManaged_remove_KeyGenerated_m1973955406 (); extern "C" void RSAManaged_Finalize_m570970668 (); extern "C" void RSAManaged_GenerateKeyPair_m1527592312 (); extern "C" void RSAManaged_get_KeySize_m4283487431 (); extern "C" void RSAManaged_get_PublicOnly_m3109512522 (); extern "C" void RSAManaged_DecryptValue_m544963905 (); extern "C" void RSAManaged_EncryptValue_m1785756185 (); extern "C" void RSAManaged_ExportParameters_m3006701455 (); extern "C" void RSAManaged_ImportParameters_m1366434854 (); extern "C" void RSAManaged_Dispose_m1837005162 (); extern "C" void RSAManaged_ToXmlString_m4064102331 (); extern "C" void RSAManaged_get_IsCrtPossible_m2743607449 (); extern "C" void RSAManaged_GetPaddedValue_m213320097 (); extern "C" void KeyGeneratedEventHandler__ctor_m1163909473 (); extern "C" void KeyGeneratedEventHandler_Invoke_m3806097557 (); extern "C" void KeyGeneratedEventHandler_BeginInvoke_m222007324 (); extern "C" void KeyGeneratedEventHandler_EndInvoke_m1234248689 (); extern "C" void SymmetricTransform__ctor_m1475215417 (); extern "C" void SymmetricTransform_System_IDisposable_Dispose_m1151008543 (); extern "C" void SymmetricTransform_Finalize_m1006776290 (); extern "C" void SymmetricTransform_Dispose_m450958196 (); extern "C" void SymmetricTransform_get_CanReuseTransform_m190401535 (); extern "C" void SymmetricTransform_Transform_m308748098 (); extern "C" void SymmetricTransform_CBC_m3015659530 (); extern "C" void SymmetricTransform_CFB_m112575855 (); extern "C" void SymmetricTransform_OFB_m1761133539 (); extern "C" void SymmetricTransform_CTS_m921181836 (); extern "C" void SymmetricTransform_CheckInput_m1764190083 (); extern "C" void SymmetricTransform_TransformBlock_m2213503636 (); extern "C" void SymmetricTransform_get_KeepLastBlock_m3624333001 (); extern "C" void SymmetricTransform_InternalTransformBlock_m887525681 (); extern "C" void SymmetricTransform_Random_m1163295234 (); extern "C" void SymmetricTransform_ThrowBadPaddingException_m2110679520 (); extern "C" void SymmetricTransform_FinalEncrypt_m1422688800 (); extern "C" void SymmetricTransform_FinalDecrypt_m4189489144 (); extern "C" void SymmetricTransform_TransformFinalBlock_m173090430 (); extern "C" void ContentInfo__ctor_m2595262291 (); extern "C" void ContentInfo__ctor_m943312527 (); extern "C" void ContentInfo__ctor_m3180474198 (); extern "C" void ContentInfo__ctor_m1175820379 (); extern "C" void ContentInfo_get_ASN1_m3134854108 (); extern "C" void ContentInfo_get_Content_m3215957652 (); extern "C" void ContentInfo_set_Content_m3455581589 (); extern "C" void ContentInfo_get_ContentType_m633311998 (); extern "C" void ContentInfo_set_ContentType_m3906424955 (); extern "C" void ContentInfo_GetASN1_m1539758703 (); extern "C" void EncryptedData__ctor_m3201940140 (); extern "C" void EncryptedData__ctor_m816185204 (); extern "C" void EncryptedData_get_EncryptionAlgorithm_m2635090815 (); extern "C" void EncryptedData_get_EncryptedContent_m1390437900 (); extern "C" void StrongName__cctor_m1937985856 (); extern "C" void StrongName_get_PublicKey_m4163536910 (); extern "C" void StrongName_get_PublicKeyToken_m1378294189 (); extern "C" void StrongName_get_TokenAlgorithm_m1030232697 (); extern "C" void PKCS12__ctor_m3712246019 (); extern "C" void PKCS12__ctor_m3690240934 (); extern "C" void PKCS12__ctor_m252275042 (); extern "C" void PKCS12__cctor_m2928380682 (); extern "C" void PKCS12_Decode_m1208795610 (); extern "C" void PKCS12_Finalize_m510753919 (); extern "C" void PKCS12_set_Password_m451279849 (); extern "C" void PKCS12_get_IterationCount_m3782498752 (); extern "C" void PKCS12_set_IterationCount_m2830125857 (); extern "C" void PKCS12_get_Certificates_m3935451749 (); extern "C" void PKCS12_get_RNG_m2501991994 (); extern "C" void PKCS12_Compare_m143948868 (); extern "C" void PKCS12_GetSymmetricAlgorithm_m1131954313 (); extern "C" void PKCS12_Decrypt_m1846702093 (); extern "C" void PKCS12_Decrypt_m232511250 (); extern "C" void PKCS12_Encrypt_m2547245285 (); extern "C" void PKCS12_GetExistingParameters_m713420615 (); extern "C" void PKCS12_AddPrivateKey_m2603644745 (); extern "C" void PKCS12_ReadSafeBag_m2164322798 (); extern "C" void PKCS12_CertificateSafeBag_m3963003161 (); extern "C" void PKCS12_MAC_m1584310760 (); extern "C" void PKCS12_GetBytes_m683139820 (); extern "C" void PKCS12_EncryptedContentInfo_m3437609430 (); extern "C" void PKCS12_AddCertificate_m1604686507 (); extern "C" void PKCS12_AddCertificate_m3204746356 (); extern "C" void PKCS12_RemoveCertificate_m1503902376 (); extern "C" void PKCS12_RemoveCertificate_m4138771671 (); extern "C" void PKCS12_Clone_m3498443123 (); extern "C" void PKCS12_get_MaximumPasswordLength_m2869456565 (); extern "C" void DeriveBytes__ctor_m2756803278 (); extern "C" void DeriveBytes__cctor_m3374426783 (); extern "C" void DeriveBytes_set_HashName_m523420758 (); extern "C" void DeriveBytes_set_IterationCount_m2864069558 (); extern "C" void DeriveBytes_set_Password_m1276093179 (); extern "C" void DeriveBytes_set_Salt_m319391456 (); extern "C" void DeriveBytes_Adjust_m4034919030 (); extern "C" void DeriveBytes_Derive_m2199157985 (); extern "C" void DeriveBytes_DeriveKey_m4278248607 (); extern "C" void DeriveBytes_DeriveIV_m3746835889 (); extern "C" void DeriveBytes_DeriveMAC_m4085842831 (); extern "C" void SafeBag__ctor_m1500172744 (); extern "C" void SafeBag_get_BagOID_m14265110 (); extern "C" void SafeBag_get_ASN1_m1523235481 (); extern "C" void X501__cctor_m1545850908 (); extern "C" void X501_ToString_m3743123940 (); extern "C" void X501_ToString_m823511368 (); extern "C" void X501_AppendEntry_m827206706 (); extern "C" void X509Certificate__ctor_m3212421763 (); extern "C" void X509Certificate__cctor_m988953959 (); extern "C" void X509Certificate_Parse_m750702354 (); extern "C" void X509Certificate_GetUnsignedBigInteger_m2414881990 (); extern "C" void X509Certificate_get_DSA_m3669842785 (); extern "C" void X509Certificate_get_IssuerName_m3431933902 (); extern "C" void X509Certificate_get_KeyAlgorithmParameters_m1145471883 (); extern "C" void X509Certificate_get_PublicKey_m1256992391 (); extern "C" void X509Certificate_get_RawData_m1241414723 (); extern "C" void X509Certificate_get_SubjectName_m1718232911 (); extern "C" void X509Certificate_get_ValidFrom_m1301607688 (); extern "C" void X509Certificate_get_ValidUntil_m2012833186 (); extern "C" void X509Certificate_GetIssuerName_m3616837067 (); extern "C" void X509Certificate_GetSubjectName_m3155263730 (); extern "C" void X509Certificate_GetObjectData_m3977767844 (); extern "C" void X509Certificate_PEM_m3139059379 (); extern "C" void X509CertificateCollection__ctor_m2939490888 (); extern "C" void X509CertificateCollection_System_Collections_IEnumerable_GetEnumerator_m2090803959 (); extern "C" void X509CertificateCollection_get_Item_m1700022920 (); extern "C" void X509CertificateCollection_Add_m3333619839 (); extern "C" void X509CertificateCollection_GetEnumerator_m2493839045 (); extern "C" void X509CertificateCollection_GetHashCode_m2385527643 (); extern "C" void X509CertificateEnumerator__ctor_m504493944 (); extern "C" void X509CertificateEnumerator_System_Collections_IEnumerator_get_Current_m1864372558 (); extern "C" void X509CertificateEnumerator_System_Collections_IEnumerator_MoveNext_m30952411 (); extern "C" void X509CertificateEnumerator_System_Collections_IEnumerator_Reset_m2379885912 (); extern "C" void X509CertificateEnumerator_get_Current_m325537617 (); extern "C" void X509CertificateEnumerator_MoveNext_m4095170824 (); extern "C" void X509CertificateEnumerator_Reset_m21349903 (); extern "C" void X509Extension__ctor_m1503753254 (); extern "C" void X509Extension_Decode_m2024676052 (); extern "C" void X509Extension_Equals_m2581060621 (); extern "C" void X509Extension_GetHashCode_m3467310705 (); extern "C" void X509Extension_WriteLine_m3127227707 (); extern "C" void X509Extension_ToString_m633627125 (); extern "C" void X509ExtensionCollection__ctor_m2030423328 (); extern "C" void X509ExtensionCollection__ctor_m1676008680 (); extern "C" void X509ExtensionCollection_System_Collections_IEnumerable_GetEnumerator_m2595246751 (); extern "C" void SecurityParser__ctor_m1163074771 (); extern "C" void SecurityParser_LoadXml_m446823232 (); extern "C" void SecurityParser_ToXml_m3913405971 (); extern "C" void SecurityParser_OnStartParsing_m3841263363 (); extern "C" void SecurityParser_OnProcessingInstruction_m1547961809 (); extern "C" void SecurityParser_OnIgnorableWhitespace_m731146886 (); extern "C" void SecurityParser_OnStartElement_m4096581066 (); extern "C" void SecurityParser_OnEndElement_m2589612977 (); extern "C" void SecurityParser_OnChars_m1522268083 (); extern "C" void SecurityParser_OnEndParsing_m3668248508 (); extern "C" void SmallXmlParser__ctor_m3001211011 (); extern "C" void SmallXmlParser_Error_m26295006 (); extern "C" void SmallXmlParser_UnexpectedEndError_m2375866660 (); extern "C" void SmallXmlParser_IsNameChar_m1063489066 (); extern "C" void SmallXmlParser_IsWhitespace_m2144732407 (); extern "C" void SmallXmlParser_SkipWhitespaces_m2329793144 (); extern "C" void SmallXmlParser_HandleWhitespaces_m1038007407 (); extern "C" void SmallXmlParser_SkipWhitespaces_m3800487407 (); extern "C" void SmallXmlParser_Peek_m1856282464 (); extern "C" void SmallXmlParser_Read_m1913414875 (); extern "C" void SmallXmlParser_Expect_m2513955019 (); extern "C" void SmallXmlParser_ReadUntil_m2981293420 (); extern "C" void SmallXmlParser_ReadName_m2721114783 (); extern "C" void SmallXmlParser_Parse_m1621116747 (); extern "C" void SmallXmlParser_Cleanup_m614519621 (); extern "C" void SmallXmlParser_ReadContent_m2273734372 (); extern "C" void SmallXmlParser_HandleBufferedContent_m1598683251 (); extern "C" void SmallXmlParser_ReadCharacters_m2964534529 (); extern "C" void SmallXmlParser_ReadReference_m3589655222 (); extern "C" void SmallXmlParser_ReadCharacterReference_m4056299549 (); extern "C" void SmallXmlParser_ReadAttribute_m1488878490 (); extern "C" void SmallXmlParser_ReadCDATASection_m316037423 (); extern "C" void SmallXmlParser_ReadComment_m1185826634 (); extern "C" void AttrListImpl__ctor_m2704548741 (); extern "C" void AttrListImpl_get_Length_m2232614890 (); extern "C" void AttrListImpl_GetName_m1594181746 (); extern "C" void AttrListImpl_GetValue_m3442878158 (); extern "C" void AttrListImpl_GetValue_m4106706213 (); extern "C" void AttrListImpl_get_Names_m3037395809 (); extern "C" void AttrListImpl_get_Values_m713372555 (); extern "C" void AttrListImpl_Clear_m110682032 (); extern "C" void AttrListImpl_Add_m1977035706 (); extern "C" void SmallXmlParserException__ctor_m2365134382 (); extern "C" void AccessViolationException__ctor_m1376995463 (); extern "C" void AccessViolationException__ctor_m1694290248 (); extern "C" void ActivationContext_System_Runtime_Serialization_ISerializable_GetObjectData_m1366995411 (); extern "C" void ActivationContext_Finalize_m3264355754 (); extern "C" void ActivationContext_Dispose_m1939940853 (); extern "C" void ActivationContext_Dispose_m3181365932 (); extern "C" void Activator_CreateInstance_m1399154923 (); extern "C" void Activator_CreateInstance_m2161363287 (); extern "C" void Activator_CreateInstance_m3442201027 (); extern "C" void Activator_CreateInstance_m3273083411 (); extern "C" void Activator_CreateInstance_m876910386 (); extern "C" void Activator_CheckType_m2434998173 (); extern "C" void Activator_CheckAbstractType_m2181712027 (); extern "C" void Activator_CreateInstanceInternal_m3564227118 (); extern "C" void AppDomain_add_UnhandledException_m1729490677 (); extern "C" void AppDomain_remove_UnhandledException_m1873750054 (); extern "C" void AppDomain_getFriendlyName_m290133299 (); extern "C" void AppDomain_getCurDomain_m2514231979 (); extern "C" void AppDomain_get_CurrentDomain_m3448347417 (); extern "C" void AppDomain_LoadAssembly_m4215712056 (); extern "C" void AppDomain_Load_m3534527363 (); extern "C" void AppDomain_Load_m2577869746 (); extern "C" void AppDomain_InternalSetContext_m3131801719 (); extern "C" void AppDomain_InternalGetContext_m41184350 (); extern "C" void AppDomain_InternalGetDefaultContext_m3839071361 (); extern "C" void AppDomain_InternalGetProcessGuid_m3162302728 (); extern "C" void AppDomain_GetProcessGuid_m3698396509 (); extern "C" void AppDomain_ToString_m1440401511 (); extern "C" void AppDomain_DoTypeResolve_m2539304708 (); extern "C" void AppDomainInitializer__ctor_m1326333162 (); extern "C" void AppDomainInitializer_Invoke_m1655649116 (); extern "C" void AppDomainInitializer_BeginInvoke_m1784264109 (); extern "C" void AppDomainInitializer_EndInvoke_m4178097146 (); extern "C" void AppDomainSetup__ctor_m2756908093 (); extern "C" void ApplicationException__ctor_m659975414 (); extern "C" void ApplicationException__ctor_m1727689164 (); extern "C" void ApplicationException__ctor_m2651787575 (); extern "C" void ApplicationIdentity_System_Runtime_Serialization_ISerializable_GetObjectData_m769720520 (); extern "C" void ApplicationIdentity_ToString_m654104720 (); extern "C" void ArgIterator_Equals_m1215992796 (); extern "C" void ArgIterator_GetHashCode_m3474761664 (); extern "C" void ArgumentException__ctor_m571182463 (); extern "C" void ArgumentException__ctor_m3544856547 (); extern "C" void ArgumentException__ctor_m2711220147 (); extern "C" void ArgumentException__ctor_m732321503 (); extern "C" void ArgumentException__ctor_m618145847 (); extern "C" void ArgumentException__ctor_m1401467456 (); extern "C" void ArgumentException_get_ParamName_m1483230569 (); extern "C" void ArgumentException_get_Message_m2632345848 (); extern "C" void ArgumentException_GetObjectData_m1913895325 (); extern "C" void ArgumentNullException__ctor_m2162372070 (); extern "C" void ArgumentNullException__ctor_m135444188 (); extern "C" void ArgumentNullException__ctor_m3341069848 (); extern "C" void ArgumentNullException__ctor_m3819080231 (); extern "C" void ArgumentOutOfRangeException__ctor_m410800215 (); extern "C" void ArgumentOutOfRangeException__ctor_m2026296331 (); extern "C" void ArgumentOutOfRangeException__ctor_m1193970951 (); extern "C" void ArgumentOutOfRangeException__ctor_m3596949525 (); extern "C" void ArgumentOutOfRangeException__ctor_m1722319128 (); extern "C" void ArgumentOutOfRangeException_get_Message_m873931152 (); extern "C" void ArgumentOutOfRangeException_GetObjectData_m558051445 (); extern "C" void ArithmeticException__ctor_m3440978604 (); extern "C" void ArithmeticException__ctor_m4261424086 (); extern "C" void ArithmeticException__ctor_m2817528301 (); extern "C" void Array__ctor_m497751576 (); extern "C" void Array_System_Collections_IList_get_Item_m2415566125 (); extern "C" void Array_System_Collections_IList_set_Item_m1450941252 (); extern "C" void Array_System_Collections_IList_Add_m3099269674 (); extern "C" void Array_System_Collections_IList_Clear_m412725562 (); extern "C" void Array_System_Collections_IList_Contains_m3746951906 (); extern "C" void Array_System_Collections_IList_IndexOf_m53357442 (); extern "C" void Array_System_Collections_IList_Insert_m3772933805 (); extern "C" void Array_System_Collections_IList_Remove_m4136562011 (); extern "C" void Array_System_Collections_IList_RemoveAt_m969759165 (); extern "C" void Array_System_Collections_ICollection_get_Count_m1062882991 (); extern "C" void Array_InternalArray__ICollection_get_Count_m1680332058 (); extern "C" void Array_InternalArray__ICollection_get_IsReadOnly_m1501007613 (); extern "C" void Array_InternalArray__ICollection_Clear_m474435621 (); extern "C" void Array_InternalArray__RemoveAt_m907509114 (); extern "C" void Array_get_Length_m1203127607 (); extern "C" void Array_get_LongLength_m1209728916 (); extern "C" void Array_get_Rank_m1671008509 (); extern "C" void Array_GetRank_m2808306300 (); extern "C" void Array_GetLength_m1450876743 (); extern "C" void Array_GetLongLength_m1044315650 (); extern "C" void Array_GetLowerBound_m2369136542 (); extern "C" void Array_GetValue_m2756916811 (); extern "C" void Array_SetValue_m2302374076 (); extern "C" void Array_GetValueImpl_m3335714605 (); extern "C" void Array_SetValueImpl_m111809118 (); extern "C" void Array_FastCopy_m256067930 (); extern "C" void Array_CreateInstanceImpl_m3310710603 (); extern "C" void Array_get_IsSynchronized_m3792108821 (); extern "C" void Array_get_SyncRoot_m3847217543 (); extern "C" void Array_get_IsFixedSize_m2362830166 (); extern "C" void Array_get_IsReadOnly_m2469891811 (); extern "C" void Array_GetEnumerator_m2728734362 (); extern "C" void Array_GetUpperBound_m97365085 (); extern "C" void Array_GetValue_m244209261 (); extern "C" void Array_GetValue_m612327306 (); extern "C" void Array_GetValue_m1617218957 (); extern "C" void Array_GetValue_m244212206 (); extern "C" void Array_GetValue_m2095831338 (); extern "C" void Array_GetValue_m375587694 (); extern "C" void Array_SetValue_m3564405919 (); extern "C" void Array_SetValue_m2615500313 (); extern "C" void Array_SetValue_m235879135 (); extern "C" void Array_SetValue_m3564402974 (); extern "C" void Array_SetValue_m1131996281 (); extern "C" void Array_SetValue_m1477510398 (); extern "C" void Array_CreateInstance_m1364223436 (); extern "C" void Array_CreateInstance_m3172696715 (); extern "C" void Array_CreateInstance_m3652670508 (); extern "C" void Array_CreateInstance_m1053747690 (); extern "C" void Array_CreateInstance_m814141195 (); extern "C" void Array_GetIntArray_m3246603532 (); extern "C" void Array_CreateInstance_m1056577835 (); extern "C" void Array_GetValue_m2759746956 (); extern "C" void Array_SetValue_m2305204221 (); extern "C" void Array_BinarySearch_m183313925 (); extern "C" void Array_BinarySearch_m3131524835 (); extern "C" void Array_BinarySearch_m2035084453 (); extern "C" void Array_BinarySearch_m3041952835 (); extern "C" void Array_DoBinarySearch_m1921037304 (); extern "C" void Array_Clear_m2499577033 (); extern "C" void Array_ClearInternal_m1225452710 (); extern "C" void Array_Clone_m1369268734 (); extern "C" void Array_Copy_m3799309042 (); extern "C" void Array_Copy_m2598616668 (); extern "C" void Array_Copy_m583019867 (); extern "C" void Array_Copy_m3799311987 (); extern "C" void Array_IndexOf_m480670679 (); extern "C" void Array_IndexOf_m1662246496 (); extern "C" void Array_IndexOf_m1794349687 (); extern "C" void Array_Initialize_m2637385596 (); extern "C" void Array_LastIndexOf_m673447137 (); extern "C" void Array_LastIndexOf_m776394134 (); extern "C" void Array_LastIndexOf_m2203224833 (); extern "C" void Array_get_swapper_m896107047 (); extern "C" void Array_Reverse_m3430038334 (); extern "C" void Array_Reverse_m3064094494 (); extern "C" void Array_Sort_m3616962096 (); extern "C" void Array_Sort_m576952892 (); extern "C" void Array_Sort_m3443575448 (); extern "C" void Array_Sort_m3912494992 (); extern "C" void Array_Sort_m2177774092 (); extern "C" void Array_Sort_m870898844 (); extern "C" void Array_Sort_m2057456952 (); extern "C" void Array_Sort_m4285041580 (); extern "C" void Array_int_swapper_m3033759158 (); extern "C" void Array_obj_swapper_m2255293358 (); extern "C" void Array_slow_swapper_m1091278254 (); extern "C" void Array_double_swapper_m1951199390 (); extern "C" void Array_new_gap_m3653386306 (); extern "C" void Array_combsort_m3790031292 (); extern "C" void Array_combsort_m1119151831 (); extern "C" void Array_combsort_m4251658817 (); extern "C" void Array_qsort_m2618274951 (); extern "C" void Array_swap_m3373592551 (); extern "C" void Array_compare_m3860906437 (); extern "C" void Array_CopyTo_m910233845 (); extern "C" void Array_CopyTo_m910236790 (); extern "C" void Array_ConstrainedCopy_m695713564 (); extern "C" void SimpleEnumerator__ctor_m3050649903 (); extern "C" void SimpleEnumerator_get_Current_m2780033260 (); extern "C" void SimpleEnumerator_MoveNext_m1861458941 (); extern "C" void SimpleEnumerator_Reset_m2184834678 (); extern "C" void SimpleEnumerator_Clone_m3819340217 (); extern "C" void Swapper__ctor_m1046757893 (); extern "C" void Swapper_Invoke_m3507571047 (); extern "C" void Swapper_BeginInvoke_m3139859620 (); extern "C" void Swapper_EndInvoke_m843808405 (); extern "C" void ArrayTypeMismatchException__ctor_m3327347719 (); extern "C" void ArrayTypeMismatchException__ctor_m869946971 (); extern "C" void ArrayTypeMismatchException__ctor_m3506476232 (); extern "C" void AssemblyLoadEventHandler__ctor_m1325133929 (); extern "C" void AssemblyLoadEventHandler_Invoke_m2285851689 (); extern "C" void AssemblyLoadEventHandler_BeginInvoke_m812195344 (); extern "C" void AssemblyLoadEventHandler_EndInvoke_m1285684985 (); extern "C" void AsyncCallback__ctor_m1986959762 (); extern "C" void AsyncCallback_Invoke_m1752195575 (); extern "C" void AsyncCallback_BeginInvoke_m363146458 (); extern "C" void AsyncCallback_EndInvoke_m2904663202 (); extern "C" void Attribute__ctor_m2985353781 (); extern "C" void Attribute_CheckParameters_m1745623298 (); extern "C" void Attribute_GetCustomAttribute_m506754809 (); extern "C" void Attribute_GetCustomAttribute_m3786533732 (); extern "C" void Attribute_GetHashCode_m3717491592 (); extern "C" void Attribute_IsDefined_m165799938 (); extern "C" void Attribute_IsDefined_m3508553943 (); extern "C" void Attribute_IsDefined_m1309172166 (); extern "C" void Attribute_IsDefined_m3614779195 (); extern "C" void Attribute_Equals_m2390113828 (); extern "C" void AttributeUsageAttribute__ctor_m3458174515 (); extern "C" void AttributeUsageAttribute_get_AllowMultiple_m3957081766 (); extern "C" void AttributeUsageAttribute_set_AllowMultiple_m3296043115 (); extern "C" void AttributeUsageAttribute_get_Inherited_m927710919 (); extern "C" void AttributeUsageAttribute_set_Inherited_m4032258508 (); extern "C" void BitConverter__cctor_m2046566571 (); extern "C" void BitConverter_AmILittleEndian_m4037180432 (); extern "C" void BitConverter_DoubleWordsAreSwapped_m4219885442 (); extern "C" void BitConverter_DoubleToInt64Bits_m4106078782 (); extern "C" void BitConverter_GetBytes_m223769997 (); extern "C" void BitConverter_GetBytes_m1348727701 (); extern "C" void BitConverter_PutBytes_m189291454 (); extern "C" void BitConverter_ToInt64_m3205751581 (); extern "C" void BitConverter_ToString_m1865594174 (); extern "C" void BitConverter_ToString_m190732574 (); extern "C" void Boolean__cctor_m1619527460 (); extern "C" void Boolean_System_IConvertible_ToType_m305773363 (); extern "C" void Boolean_System_IConvertible_ToBoolean_m1529027437 (); extern "C" void Boolean_System_IConvertible_ToByte_m689202539 (); extern "C" void Boolean_System_IConvertible_ToChar_m61046955 (); extern "C" void Boolean_System_IConvertible_ToDateTime_m2146018443 (); extern "C" void Boolean_System_IConvertible_ToDecimal_m2708222975 (); extern "C" void Boolean_System_IConvertible_ToDouble_m4044182987 (); extern "C" void Boolean_System_IConvertible_ToInt16_m1902909573 (); extern "C" void Boolean_System_IConvertible_ToInt32_m282594809 (); extern "C" void Boolean_System_IConvertible_ToInt64_m2886263351 (); extern "C" void Boolean_System_IConvertible_ToSByte_m2350844819 (); extern "C" void Boolean_System_IConvertible_ToSingle_m249236267 (); extern "C" void Boolean_System_IConvertible_ToUInt16_m136688779 (); extern "C" void Boolean_System_IConvertible_ToUInt32_m3723299531 (); extern "C" void Boolean_System_IConvertible_ToUInt64_m119372075 (); extern "C" void Boolean_CompareTo_m324613897 (); extern "C" void Boolean_Equals_m1178456600 (); extern "C" void Boolean_CompareTo_m3388665506 (); extern "C" void Boolean_Equals_m4087985523 (); extern "C" void Boolean_GetHashCode_m841540860 (); extern "C" void Boolean_Parse_m3007515274 (); extern "C" void Boolean_ToString_m2512358154 (); extern "C" void Boolean_GetTypeCode_m1624087223 (); extern "C" void Boolean_ToString_m2019601528 (); extern "C" void Buffer_ByteLength_m3699202119 (); extern "C" void Buffer_BlockCopy_m1580643184 (); extern "C" void Buffer_ByteLengthInternal_m22076516 (); extern "C" void Buffer_BlockCopyInternal_m1988595087 (); extern "C" void Byte_System_IConvertible_ToType_m2101067301 (); extern "C" void Byte_System_IConvertible_ToBoolean_m750195189 (); extern "C" void Byte_System_IConvertible_ToByte_m2117963023 (); extern "C" void Byte_System_IConvertible_ToChar_m1237710763 (); extern "C" void Byte_System_IConvertible_ToDateTime_m3914393141 (); extern "C" void Byte_System_IConvertible_ToDecimal_m2270065237 (); extern "C" void Byte_System_IConvertible_ToDouble_m2741577889 (); extern "C" void Byte_System_IConvertible_ToInt16_m1270736309 (); extern "C" void Byte_System_IConvertible_ToInt32_m1299459829 (); extern "C" void Byte_System_IConvertible_ToInt64_m3271837141 (); extern "C" void Byte_System_IConvertible_ToSByte_m864432533 (); extern "C" void Byte_System_IConvertible_ToSingle_m3059059407 (); extern "C" void Byte_System_IConvertible_ToUInt16_m1061177661 (); extern "C" void Byte_System_IConvertible_ToUInt32_m4228367665 (); extern "C" void Byte_System_IConvertible_ToUInt64_m2529248559 (); extern "C" void Byte_CompareTo_m1774805901 (); extern "C" void Byte_Equals_m4077775008 (); extern "C" void Byte_GetHashCode_m2610389752 (); extern "C" void Byte_CompareTo_m3248632740 (); extern "C" void Byte_Equals_m2522538359 (); extern "C" void Byte_Parse_m1558065596 (); extern "C" void Byte_Parse_m3498070023 (); extern "C" void Byte_Parse_m2576952376 (); extern "C" void Byte_TryParse_m1476880242 (); extern "C" void Byte_TryParse_m570779293 (); extern "C" void Byte_ToString_m961894880 (); extern "C" void Byte_ToString_m3965014306 (); extern "C" void Byte_ToString_m4244510414 (); extern "C" void Byte_ToString_m1210459538 (); extern "C" void Char__cctor_m3887439662 (); extern "C" void Char_System_IConvertible_ToType_m2466414707 (); extern "C" void Char_System_IConvertible_ToBoolean_m661905383 (); extern "C" void Char_System_IConvertible_ToByte_m4241151069 (); extern "C" void Char_System_IConvertible_ToChar_m3360898809 (); extern "C" void Char_System_IConvertible_ToDateTime_m1177409155 (); extern "C" void Char_System_IConvertible_ToDecimal_m2181775431 (); extern "C" void Char_System_IConvertible_ToDouble_m3015824495 (); extern "C" void Char_System_IConvertible_ToInt16_m2665056295 (); extern "C" void Char_System_IConvertible_ToInt32_m2693779815 (); extern "C" void Char_System_IConvertible_ToInt64_m371189831 (); extern "C" void Char_System_IConvertible_ToSByte_m2258752519 (); extern "C" void Char_System_IConvertible_ToSingle_m3333306013 (); extern "C" void Char_System_IConvertible_ToUInt16_m1335424267 (); extern "C" void Char_System_IConvertible_ToUInt32_m207646975 (); extern "C" void Char_System_IConvertible_ToUInt64_m2803495165 (); extern "C" void Char_GetDataTablePointers_m2324968695 (); extern "C" void Char_CompareTo_m3049402459 (); extern "C" void Char_Equals_m158269074 (); extern "C" void Char_CompareTo_m2003432292 (); extern "C" void Char_Equals_m2979193691 (); extern "C" void Char_GetHashCode_m3546188522 (); extern "C" void Char_GetUnicodeCategory_m494586991 (); extern "C" void Char_IsDigit_m1743537211 (); extern "C" void Char_IsLetter_m1699036490 (); extern "C" void Char_IsLetterOrDigit_m2290383044 (); extern "C" void Char_IsLower_m1584081639 (); extern "C" void Char_IsSurrogate_m3822546544 (); extern "C" void Char_IsUpper_m1832446694 (); extern "C" void Char_IsWhiteSpace_m2745315955 (); extern "C" void Char_IsWhiteSpace_m2601279167 (); extern "C" void Char_CheckParameter_m3313481947 (); extern "C" void Char_Parse_m2418192084 (); extern "C" void Char_ToLower_m3095077372 (); extern "C" void Char_ToLowerInvariant_m2407684316 (); extern "C" void Char_ToLower_m849361594 (); extern "C" void Char_ToUpper_m3343442427 (); extern "C" void Char_ToUpperInvariant_m4158859197 (); extern "C" void Char_ToString_m2089191214 (); extern "C" void Char_ToString_m2826712476 (); extern "C" void Char_GetTypeCode_m4226232807 (); extern "C" void CharEnumerator__ctor_m2119134439 (); extern "C" void CharEnumerator_System_Collections_IEnumerator_get_Current_m1493871051 (); extern "C" void CharEnumerator_System_IDisposable_Dispose_m2219960452 (); extern "C" void CharEnumerator_get_Current_m2945781287 (); extern "C" void CharEnumerator_Clone_m901055723 (); extern "C" void CharEnumerator_MoveNext_m4014585483 (); extern "C" void CharEnumerator_Reset_m383249576 (); extern "C" void CLSCompliantAttribute__ctor_m435742109 (); extern "C" void ArrayList__ctor_m1878432947 (); extern "C" void ArrayList__ctor_m2944534244 (); extern "C" void ArrayList__ctor_m3809992068 (); extern "C" void ArrayList__ctor_m2092447551 (); extern "C" void ArrayList__cctor_m1914750298 (); extern "C" void ArrayList_get_Item_m1166987603 (); extern "C" void ArrayList_set_Item_m2414691872 (); extern "C" void ArrayList_get_Count_m2097776283 (); extern "C" void ArrayList_get_Capacity_m3412570896 (); extern "C" void ArrayList_set_Capacity_m1308073401 (); extern "C" void ArrayList_get_IsFixedSize_m251458097 (); extern "C" void ArrayList_get_IsReadOnly_m3925803688 (); extern "C" void ArrayList_get_IsSynchronized_m3702851162 (); extern "C" void ArrayList_get_SyncRoot_m3144760460 (); extern "C" void ArrayList_EnsureCapacity_m3260945178 (); extern "C" void ArrayList_Shift_m1958944947 (); extern "C" void ArrayList_Add_m3739290814 (); extern "C" void ArrayList_Clear_m3579533534 (); extern "C" void ArrayList_Contains_m3069487426 (); extern "C" void ArrayList_IndexOf_m3912283158 (); extern "C" void ArrayList_IndexOf_m3469098113 (); extern "C" void ArrayList_IndexOf_m2652961270 (); extern "C" void ArrayList_Insert_m3577288841 (); extern "C" void ArrayList_InsertRange_m149552657 (); extern "C" void ArrayList_Remove_m2154849791 (); extern "C" void ArrayList_RemoveAt_m3961189785 (); extern "C" void ArrayList_CopyTo_m1415118951 (); extern "C" void ArrayList_CopyTo_m329661392 (); extern "C" void ArrayList_CopyTo_m3681134010 (); extern "C" void ArrayList_GetEnumerator_m286938677 (); extern "C" void ArrayList_AddRange_m92466430 (); extern "C" void ArrayList_Sort_m1269445711 (); extern "C" void ArrayList_Sort_m3766841105 (); extern "C" void ArrayList_ToArray_m4285016508 (); extern "C" void ArrayList_ToArray_m810504347 (); extern "C" void ArrayList_Clone_m3926405785 (); extern "C" void ArrayList_ThrowNewArgumentOutOfRangeException_m2507388507 (); extern "C" void ArrayList_Synchronized_m4034047634 (); extern "C" void ArrayList_ReadOnly_m1881161056 (); extern "C" void ArrayListWrapper__ctor_m2531120873 (); extern "C" void ArrayListWrapper_get_Item_m4057977780 (); extern "C" void ArrayListWrapper_set_Item_m602076299 (); extern "C" void ArrayListWrapper_get_Count_m452148104 (); extern "C" void ArrayListWrapper_get_Capacity_m1260206851 (); extern "C" void ArrayListWrapper_set_Capacity_m2188723684 (); extern "C" void ArrayListWrapper_get_IsFixedSize_m3370166250 (); extern "C" void ArrayListWrapper_get_IsReadOnly_m2086744527 (); extern "C" void ArrayListWrapper_get_IsSynchronized_m109922817 (); extern "C" void ArrayListWrapper_get_SyncRoot_m427241453 (); extern "C" void ArrayListWrapper_Add_m4158350129 (); extern "C" void ArrayListWrapper_Clear_m3530269331 (); extern "C" void ArrayListWrapper_Contains_m1021145147 (); extern "C" void ArrayListWrapper_IndexOf_m3076823305 (); extern "C" void ArrayListWrapper_IndexOf_m3633003118 (); extern "C" void ArrayListWrapper_IndexOf_m3715286313 (); extern "C" void ArrayListWrapper_Insert_m218981812 (); extern "C" void ArrayListWrapper_InsertRange_m1261127932 (); extern "C" void ArrayListWrapper_Remove_m2062487284 (); extern "C" void ArrayListWrapper_RemoveAt_m1097952068 (); extern "C" void ArrayListWrapper_CopyTo_m26666194 (); extern "C" void ArrayListWrapper_CopyTo_m2160991557 (); extern "C" void ArrayListWrapper_CopyTo_m127332079 (); extern "C" void ArrayListWrapper_GetEnumerator_m568286678 (); extern "C" void ArrayListWrapper_AddRange_m819293673 (); extern "C" void ArrayListWrapper_Clone_m1229511256 (); extern "C" void ArrayListWrapper_Sort_m20930554 (); extern "C" void ArrayListWrapper_Sort_m408534076 (); extern "C" void ArrayListWrapper_ToArray_m1651255351 (); extern "C" void ArrayListWrapper_ToArray_m2775301700 (); extern "C" void FixedSizeArrayListWrapper__ctor_m193000370 (); extern "C" void FixedSizeArrayListWrapper_get_ErrorMessage_m2762836670 (); extern "C" void FixedSizeArrayListWrapper_get_Capacity_m3089739858 (); extern "C" void FixedSizeArrayListWrapper_set_Capacity_m383644411 (); extern "C" void FixedSizeArrayListWrapper_get_IsFixedSize_m1343011119 (); extern "C" void FixedSizeArrayListWrapper_Add_m1946065152 (); extern "C" void FixedSizeArrayListWrapper_AddRange_m1220667072 (); extern "C" void FixedSizeArrayListWrapper_Clear_m2440861404 (); extern "C" void FixedSizeArrayListWrapper_Insert_m1251937227 (); extern "C" void FixedSizeArrayListWrapper_InsertRange_m1775317971 (); extern "C" void FixedSizeArrayListWrapper_Remove_m1591103357 (); extern "C" void FixedSizeArrayListWrapper_RemoveAt_m3664919515 (); extern "C" void ReadOnlyArrayListWrapper__ctor_m471776423 (); extern "C" void ReadOnlyArrayListWrapper_get_ErrorMessage_m1411886211 (); extern "C" void ReadOnlyArrayListWrapper_get_IsReadOnly_m2940664529 (); extern "C" void ReadOnlyArrayListWrapper_get_Item_m1660065334 (); extern "C" void ReadOnlyArrayListWrapper_set_Item_m1186907789 (); extern "C" void ReadOnlyArrayListWrapper_Sort_m749027708 (); extern "C" void ReadOnlyArrayListWrapper_Sort_m480650942 (); extern "C" void SimpleEnumerator__ctor_m1935311375 (); extern "C" void SimpleEnumerator__cctor_m3488675551 (); extern "C" void SimpleEnumerator_Clone_m2022283902 (); extern "C" void SimpleEnumerator_MoveNext_m2664074008 (); extern "C" void SimpleEnumerator_get_Current_m252748273 (); extern "C" void SimpleEnumerator_Reset_m268374331 (); extern "C" void SynchronizedArrayListWrapper__ctor_m4141735093 (); extern "C" void SynchronizedArrayListWrapper_get_Item_m678734312 (); extern "C" void SynchronizedArrayListWrapper_set_Item_m3286476863 (); extern "C" void SynchronizedArrayListWrapper_get_Count_m3690732372 (); extern "C" void SynchronizedArrayListWrapper_get_Capacity_m4073764791 (); extern "C" void SynchronizedArrayListWrapper_set_Capacity_m3235728024 (); extern "C" void SynchronizedArrayListWrapper_get_IsFixedSize_m954881462 (); extern "C" void SynchronizedArrayListWrapper_get_IsReadOnly_m2563021443 (); extern "C" void SynchronizedArrayListWrapper_get_IsSynchronized_m4242880693 (); extern "C" void SynchronizedArrayListWrapper_get_SyncRoot_m2182052385 (); extern "C" void SynchronizedArrayListWrapper_Add_m1801020901 (); extern "C" void SynchronizedArrayListWrapper_Clear_m967709279 (); extern "C" void SynchronizedArrayListWrapper_Contains_m2141754631 (); extern "C" void SynchronizedArrayListWrapper_IndexOf_m1643782589 (); extern "C" void SynchronizedArrayListWrapper_IndexOf_m1797551674 (); extern "C" void SynchronizedArrayListWrapper_IndexOf_m632165597 (); extern "C" void SynchronizedArrayListWrapper_Insert_m3041883752 (); extern "C" void SynchronizedArrayListWrapper_InsertRange_m3126926000 (); extern "C" void SynchronizedArrayListWrapper_Remove_m3298552256 (); extern "C" void SynchronizedArrayListWrapper_RemoveAt_m761260536 (); extern "C" void SynchronizedArrayListWrapper_CopyTo_m482181254 (); extern "C" void SynchronizedArrayListWrapper_CopyTo_m1282221585 (); extern "C" void SynchronizedArrayListWrapper_CopyTo_m2945798331 (); extern "C" void SynchronizedArrayListWrapper_GetEnumerator_m1865470114 (); extern "C" void SynchronizedArrayListWrapper_AddRange_m3039635357 (); extern "C" void SynchronizedArrayListWrapper_Clone_m4092650148 (); extern "C" void SynchronizedArrayListWrapper_Sort_m3679045294 (); extern "C" void SynchronizedArrayListWrapper_Sort_m3231436016 (); extern "C" void SynchronizedArrayListWrapper_ToArray_m1930965123 (); extern "C" void SynchronizedArrayListWrapper_ToArray_m3090795384 (); extern "C" void BitArray__ctor_m3201524094 (); extern "C" void BitArray__ctor_m4198813761 (); extern "C" void BitArray_getByte_m3145028169 (); extern "C" void BitArray_get_Count_m3361743632 (); extern "C" void BitArray_get_IsSynchronized_m1429626361 (); extern "C" void BitArray_get_Item_m2410594623 (); extern "C" void BitArray_set_Item_m3947323368 (); extern "C" void BitArray_get_Length_m3443319207 (); extern "C" void BitArray_get_SyncRoot_m2715422501 (); extern "C" void BitArray_Clone_m2861181472 (); extern "C" void BitArray_CopyTo_m4014022605 (); extern "C" void BitArray_Get_m3891356663 (); extern "C" void BitArray_Set_m3317154012 (); extern "C" void BitArray_GetEnumerator_m3978161118 (); extern "C" void BitArrayEnumerator__ctor_m1920950519 (); extern "C" void BitArrayEnumerator_Clone_m2817229885 (); extern "C" void BitArrayEnumerator_get_Current_m1969619056 (); extern "C" void BitArrayEnumerator_MoveNext_m335765299 (); extern "C" void BitArrayEnumerator_Reset_m1654885828 (); extern "C" void BitArrayEnumerator_checkVersion_m1931091421 (); extern "C" void CaseInsensitiveComparer__ctor_m2757957596 (); extern "C" void CaseInsensitiveComparer__ctor_m2896485459 (); extern "C" void CaseInsensitiveComparer__cctor_m3410210641 (); extern "C" void CaseInsensitiveComparer_get_DefaultInvariant_m3275911077 (); extern "C" void CaseInsensitiveComparer_Compare_m1716797375 (); extern "C" void CaseInsensitiveHashCodeProvider__ctor_m1687836093 (); extern "C" void CaseInsensitiveHashCodeProvider__ctor_m2475550317 (); extern "C" void CaseInsensitiveHashCodeProvider__cctor_m301215120 (); extern "C" void CaseInsensitiveHashCodeProvider_AreEqual_m2045397501 (); extern "C" void CaseInsensitiveHashCodeProvider_AreEqual_m3653217300 (); extern "C" void CaseInsensitiveHashCodeProvider_get_DefaultInvariant_m1403540293 (); extern "C" void CaseInsensitiveHashCodeProvider_GetHashCode_m517823364 (); extern "C" void CollectionBase__ctor_m3181013581 (); extern "C" void CollectionBase_System_Collections_ICollection_CopyTo_m634775447 (); extern "C" void CollectionBase_System_Collections_ICollection_get_SyncRoot_m3961010597 (); extern "C" void CollectionBase_System_Collections_ICollection_get_IsSynchronized_m1284188723 (); extern "C" void CollectionBase_System_Collections_IList_Add_m161097623 (); extern "C" void CollectionBase_System_Collections_IList_Contains_m2561799305 (); extern "C" void CollectionBase_System_Collections_IList_IndexOf_m2310978159 (); extern "C" void CollectionBase_System_Collections_IList_Insert_m917928546 (); extern "C" void CollectionBase_System_Collections_IList_Remove_m872150918 (); extern "C" void CollectionBase_System_Collections_IList_get_IsFixedSize_m2924084920 (); extern "C" void CollectionBase_System_Collections_IList_get_IsReadOnly_m271239489 (); extern "C" void CollectionBase_System_Collections_IList_get_Item_m2255771116 (); extern "C" void CollectionBase_System_Collections_IList_set_Item_m2274989497 (); extern "C" void CollectionBase_get_Count_m313265901 (); extern "C" void CollectionBase_GetEnumerator_m661855675 (); extern "C" void CollectionBase_Clear_m587146872 (); extern "C" void CollectionBase_RemoveAt_m3296919743 (); extern "C" void CollectionBase_get_InnerList_m2840879970 (); extern "C" void CollectionBase_get_List_m2531266242 (); extern "C" void CollectionBase_OnClear_m777794841 (); extern "C" void CollectionBase_OnClearComplete_m606486578 (); extern "C" void CollectionBase_OnInsert_m4273696622 (); extern "C" void CollectionBase_OnInsertComplete_m722388807 (); extern "C" void CollectionBase_OnRemove_m4013840057 (); extern "C" void CollectionBase_OnRemoveComplete_m2848404370 (); extern "C" void CollectionBase_OnSet_m3575325083 (); extern "C" void CollectionBase_OnSetComplete_m2205481652 (); extern "C" void CollectionBase_OnValidate_m2432491880 (); extern "C" void Comparer__ctor_m1283355951 (); extern "C" void Comparer__ctor_m357023199 (); extern "C" void Comparer__cctor_m647232606 (); extern "C" void Comparer_Compare_m3505220244 (); extern "C" void Comparer_GetObjectData_m2758478157 (); extern "C" void DictionaryEntry__ctor_m2600671860 (); extern "C" void DictionaryEntry_get_Key_m3516209325 (); extern "C" void DictionaryEntry_get_Value_m4281303039 (); extern "C" void KeyNotFoundException__ctor_m3542895460 (); extern "C" void KeyNotFoundException__ctor_m171814565 (); extern "C" void Hashtable__ctor_m1514037738 (); extern "C" void Hashtable__ctor_m880032671 (); extern "C" void Hashtable__ctor_m2919534560 (); extern "C" void Hashtable__ctor_m2902886459 (); extern "C" void Hashtable__ctor_m556844962 (); extern "C" void Hashtable__ctor_m2095001914 (); extern "C" void Hashtable__ctor_m775991879 (); extern "C" void Hashtable__ctor_m1961291234 (); extern "C" void Hashtable__ctor_m346689243 (); extern "C" void Hashtable__ctor_m2213883947 (); extern "C" void Hashtable__ctor_m553622419 (); extern "C" void Hashtable__ctor_m2202593038 (); extern "C" void Hashtable__cctor_m3503400707 (); extern "C" void Hashtable_System_Collections_IEnumerable_GetEnumerator_m2131971349 (); extern "C" void Hashtable_set_comparer_m3192953638 (); extern "C" void Hashtable_set_hcp_m3304781571 (); extern "C" void Hashtable_get_Count_m3337476178 (); extern "C" void Hashtable_get_IsSynchronized_m1352381059 (); extern "C" void Hashtable_get_SyncRoot_m2620554101 (); extern "C" void Hashtable_get_Keys_m17177747 (); extern "C" void Hashtable_get_Values_m1695500481 (); extern "C" void Hashtable_get_Item_m492674313 (); extern "C" void Hashtable_set_Item_m1018975416 (); extern "C" void Hashtable_CopyTo_m3581696583 (); extern "C" void Hashtable_Add_m2279986841 (); extern "C" void Hashtable_Clear_m3215138325 (); extern "C" void Hashtable_Contains_m1066475641 (); extern "C" void Hashtable_GetEnumerator_m737865954 (); extern "C" void Hashtable_Remove_m2304720630 (); extern "C" void Hashtable_ContainsKey_m1913745934 (); extern "C" void Hashtable_Clone_m3562010576 (); extern "C" void Hashtable_GetObjectData_m4219804808 (); extern "C" void Hashtable_OnDeserialization_m2896861916 (); extern "C" void Hashtable_Synchronized_m4005846889 (); extern "C" void Hashtable_GetHash_m527227236 (); extern "C" void Hashtable_KeyEquals_m1149622430 (); extern "C" void Hashtable_AdjustThreshold_m2169901284 (); extern "C" void Hashtable_SetTable_m463771856 (); extern "C" void Hashtable_Find_m3443418693 (); extern "C" void Hashtable_Rehash_m3720779099 (); extern "C" void Hashtable_PutImpl_m3449217138 (); extern "C" void Hashtable_CopyToArray_m3683911294 (); extern "C" void Hashtable_TestPrime_m2080981348 (); extern "C" void Hashtable_CalcPrime_m1477965287 (); extern "C" void Hashtable_ToPrime_m840372929 (); extern "C" void Enumerator__ctor_m2929100063 (); extern "C" void Enumerator__cctor_m3324675076 (); extern "C" void Enumerator_FailFast_m625309813 (); extern "C" void Enumerator_Reset_m1232915318 (); extern "C" void Enumerator_MoveNext_m2304846205 (); extern "C" void Enumerator_get_Entry_m213677431 (); extern "C" void Enumerator_get_Key_m3177998354 (); extern "C" void Enumerator_get_Value_m1383107108 (); extern "C" void Enumerator_get_Current_m3445727148 (); extern "C" void HashKeys__ctor_m1470241507 (); extern "C" void HashKeys_get_Count_m3782068299 (); extern "C" void HashKeys_get_IsSynchronized_m3549913758 (); extern "C" void HashKeys_get_SyncRoot_m3744595786 (); extern "C" void HashKeys_CopyTo_m1861978568 (); extern "C" void HashKeys_GetEnumerator_m1874815769 (); extern "C" void HashValues__ctor_m3879614837 (); extern "C" void HashValues_get_Count_m2417436125 (); extern "C" void HashValues_get_IsSynchronized_m1643199180 (); extern "C" void HashValues_get_SyncRoot_m734931640 (); extern "C" void HashValues_CopyTo_m1506944218 (); extern "C" void HashValues_GetEnumerator_m3140901163 (); extern "C" void KeyMarker__ctor_m3432183904 (); extern "C" void KeyMarker__cctor_m2836389709 (); extern "C" void SyncHashtable__ctor_m3716654572 (); extern "C" void SyncHashtable__ctor_m330612341 (); extern "C" void SyncHashtable_System_Collections_IEnumerable_GetEnumerator_m4026891787 (); extern "C" void SyncHashtable_GetObjectData_m765378770 (); extern "C" void SyncHashtable_get_Count_m3563238812 (); extern "C" void SyncHashtable_get_IsSynchronized_m3501702649 (); extern "C" void SyncHashtable_get_SyncRoot_m513487403 (); extern "C" void SyncHashtable_get_Keys_m4083312137 (); extern "C" void SyncHashtable_get_Values_m830409911 (); extern "C" void SyncHashtable_get_Item_m2996310803 (); extern "C" void SyncHashtable_set_Item_m1054132354 (); extern "C" void SyncHashtable_CopyTo_m3853140753 (); extern "C" void SyncHashtable_Add_m626175119 (); extern "C" void SyncHashtable_Clear_m1117089631 (); extern "C" void SyncHashtable_Contains_m2133514563 (); extern "C" void SyncHashtable_GetEnumerator_m1352826924 (); extern "C" void SyncHashtable_Remove_m1658619584 (); extern "C" void SyncHashtable_ContainsKey_m3017313540 (); extern "C" void SyncHashtable_Clone_m1874575834 (); extern "C" void SortedList__ctor_m3703218657 (); extern "C" void SortedList__ctor_m3028782514 (); extern "C" void SortedList__ctor_m690679828 (); extern "C" void SortedList__ctor_m37047406 (); extern "C" void SortedList__cctor_m2648532460 (); extern "C" void SortedList_System_Collections_IEnumerable_GetEnumerator_m76581074 (); extern "C" void SortedList_get_Count_m418925185 (); extern "C" void SortedList_get_IsSynchronized_m2706175784 (); extern "C" void SortedList_get_SyncRoot_m808976468 (); extern "C" void SortedList_get_IsFixedSize_m296838179 (); extern "C" void SortedList_get_IsReadOnly_m47942262 (); extern "C" void SortedList_get_Item_m3913687818 (); extern "C" void SortedList_set_Item_m3021572719 (); extern "C" void SortedList_get_Capacity_m3653672298 (); extern "C" void SortedList_set_Capacity_m1257766347 (); extern "C" void SortedList_Add_m3440224898 (); extern "C" void SortedList_Contains_m2222218676 (); extern "C" void SortedList_GetEnumerator_m201395865 (); extern "C" void SortedList_Remove_m3031745197 (); extern "C" void SortedList_CopyTo_m894370686 (); extern "C" void SortedList_Clone_m2984157137 (); extern "C" void SortedList_RemoveAt_m1080176299 (); extern "C" void SortedList_IndexOfKey_m3014350519 (); extern "C" void SortedList_ContainsKey_m4196656883 (); extern "C" void SortedList_GetByIndex_m3326735940 (); extern "C" void SortedList_EnsureCapacity_m3463945643 (); extern "C" void SortedList_PutImpl_m1191987689 (); extern "C" void SortedList_GetImpl_m3718651850 (); extern "C" void SortedList_InitTable_m1786490575 (); extern "C" void SortedList_Find_m658979188 (); extern "C" void Enumerator__ctor_m3335019990 (); extern "C" void Enumerator__cctor_m3450571131 (); extern "C" void Enumerator_Reset_m3315186463 (); extern "C" void Enumerator_MoveNext_m1322809720 (); extern "C" void Enumerator_get_Entry_m3448921202 (); extern "C" void Enumerator_get_Key_m1154255281 (); extern "C" void Enumerator_get_Value_m2186199043 (); extern "C" void Enumerator_get_Current_m2122963403 (); extern "C" void Enumerator_Clone_m1775779288 (); extern "C" void Stack__ctor_m1821673314 (); extern "C" void Stack__ctor_m2374718803 (); extern "C" void Stack__ctor_m2880977331 (); extern "C" void Stack_Resize_m1932726631 (); extern "C" void Stack_get_Count_m3511538634 (); extern "C" void Stack_get_IsSynchronized_m1915076875 (); extern "C" void Stack_get_SyncRoot_m320831869 (); extern "C" void Stack_Clear_m3522773901 (); extern "C" void Stack_Clone_m2500471496 (); extern "C" void Stack_CopyTo_m2646481343 (); extern "C" void Stack_GetEnumerator_m671500004 (); extern "C" void Stack_Peek_m4186849970 (); extern "C" void Stack_Pop_m4291786044 (); extern "C" void Stack_Push_m3581559000 (); extern "C" void Enumerator__ctor_m2769057665 (); extern "C" void Enumerator_Clone_m2639856257 (); extern "C" void Enumerator_get_Current_m1130675124 (); extern "C" void Enumerator_MoveNext_m2568547317 (); extern "C" void Enumerator_Reset_m3448965886 (); extern "C" void Console__cctor_m3994882451 (); extern "C" void Console_SetEncodings_m3783235582 (); extern "C" void Console_get_Error_m3008907509 (); extern "C" void Console_Open_m1728401432 (); extern "C" void Console_OpenStandardError_m1760848776 (); extern "C" void Console_OpenStandardInput_m3911497162 (); extern "C" void Console_OpenStandardOutput_m51663653 (); extern "C" void ContextBoundObject__ctor_m3620281863 (); extern "C" void Convert__cctor_m707299055 (); extern "C" void Convert_InternalFromBase64String_m4258381458 (); extern "C" void Convert_FromBase64String_m901846280 (); extern "C" void Convert_ToBase64String_m1841808901 (); extern "C" void Convert_ToBase64String_m3905122085 (); extern "C" void Convert_ToBoolean_m3519963972 (); extern "C" void Convert_ToBoolean_m4054695157 (); extern "C" void Convert_ToBoolean_m4035732699 (); extern "C" void Convert_ToBoolean_m4285295428 (); extern "C" void Convert_ToBoolean_m1934898328 (); extern "C" void Convert_ToBoolean_m1934901273 (); extern "C" void Convert_ToBoolean_m2180767915 (); extern "C" void Convert_ToBoolean_m1934896530 (); extern "C" void Convert_ToBoolean_m1414469113 (); extern "C" void Convert_ToBoolean_m849533587 (); extern "C" void Convert_ToBoolean_m849536532 (); extern "C" void Convert_ToBoolean_m849531789 (); extern "C" void Convert_ToBoolean_m531114797 (); extern "C" void Convert_ToBoolean_m2689543975 (); extern "C" void Convert_ToByte_m1016186092 (); extern "C" void Convert_ToByte_m1388227464 (); extern "C" void Convert_ToByte_m3870622435 (); extern "C" void Convert_ToByte_m3752700205 (); extern "C" void Convert_ToByte_m4002262934 (); extern "C" void Convert_ToByte_m263200262 (); extern "C" void Convert_ToByte_m263203207 (); extern "C" void Convert_ToByte_m509069849 (); extern "C" void Convert_ToByte_m263198464 (); extern "C" void Convert_ToByte_m25971949 (); extern "C" void Convert_ToByte_m310449511 (); extern "C" void Convert_ToByte_m566501093 (); extern "C" void Convert_ToByte_m566504038 (); extern "C" void Convert_ToByte_m566499295 (); extern "C" void Convert_ToByte_m1585524373 (); extern "C" void Convert_ToChar_m975090646 (); extern "C" void Convert_ToChar_m353236550 (); extern "C" void Convert_ToChar_m353239495 (); extern "C" void Convert_ToChar_m2498420566 (); extern "C" void Convert_ToChar_m599106137 (); extern "C" void Convert_ToChar_m353234752 (); extern "C" void Convert_ToChar_m3723111847 (); extern "C" void Convert_ToChar_m3357626021 (); extern "C" void Convert_ToChar_m3357628966 (); extern "C" void Convert_ToChar_m3357624223 (); extern "C" void Convert_ToChar_m703219413 (); extern "C" void Convert_ToDateTime_m4273293575 (); extern "C" void Convert_ToDateTime_m2667391648 (); extern "C" void Convert_ToDateTime_m2667393446 (); extern "C" void Convert_ToDateTime_m2667396391 (); extern "C" void Convert_ToDateTime_m1222840310 (); extern "C" void Convert_ToDateTime_m1253401141 (); extern "C" void Convert_ToDateTime_m2913263033 (); extern "C" void Convert_ToDateTime_m2082043967 (); extern "C" void Convert_ToDateTime_m2082045765 (); extern "C" void Convert_ToDateTime_m2082048710 (); extern "C" void Convert_ToDecimal_m841898000 (); extern "C" void Convert_ToDecimal_m3676664690 (); extern "C" void Convert_ToDecimal_m6300041 (); extern "C" void Convert_ToDecimal_m255862770 (); extern "C" void Convert_ToDecimal_m2497653290 (); extern "C" void Convert_ToDecimal_m2497656235 (); extern "C" void Convert_ToDecimal_m2743522877 (); extern "C" void Convert_ToDecimal_m2497651492 (); extern "C" void Convert_ToDecimal_m2501309835 (); extern "C" void Convert_ToDecimal_m1115068225 (); extern "C" void Convert_ToDecimal_m1115071170 (); extern "C" void Convert_ToDecimal_m1115066427 (); extern "C" void Convert_ToDecimal_m3776384697 (); extern "C" void Convert_ToDouble_m1966172364 (); extern "C" void Convert_ToDouble_m1367243830 (); extern "C" void Convert_ToDouble_m525641411 (); extern "C" void Convert_ToDouble_m1150945613 (); extern "C" void Convert_ToDouble_m1400508342 (); extern "C" void Convert_ToDouble_m3920050662 (); extern "C" void Convert_ToDouble_m3920053607 (); extern "C" void Convert_ToDouble_m4165920249 (); extern "C" void Convert_ToDouble_m3920048864 (); extern "C" void Convert_ToDouble_m4191850823 (); extern "C" void Convert_ToDouble_m2259713797 (); extern "C" void Convert_ToDouble_m2259716742 (); extern "C" void Convert_ToDouble_m2259711999 (); extern "C" void Convert_ToDouble_m1171958389 (); extern "C" void Convert_ToInt16_m1720411158 (); extern "C" void Convert_ToInt16_m3439678764 (); extern "C" void Convert_ToInt16_m3440077982 (); extern "C" void Convert_ToInt16_m279880205 (); extern "C" void Convert_ToInt16_m4191059139 (); extern "C" void Convert_ToInt16_m145654572 (); extern "C" void Convert_ToInt16_m3741024176 (); extern "C" void Convert_ToInt16_m3741027121 (); extern "C" void Convert_ToInt16_m3986893763 (); extern "C" void Convert_ToInt16_m3741022378 (); extern "C" void Convert_ToInt16_m2248972561 (); extern "C" void Convert_ToInt16_m1004860027 (); extern "C" void Convert_ToInt16_m1004862972 (); extern "C" void Convert_ToInt16_m1004858229 (); extern "C" void Convert_ToInt16_m686441237 (); extern "C" void Convert_ToInt16_m3524047423 (); extern "C" void Convert_ToInt32_m2303815306 (); extern "C" void Convert_ToInt32_m100433720 (); extern "C" void Convert_ToInt32_m100832938 (); extern "C" void Convert_ToInt32_m863284353 (); extern "C" void Convert_ToInt32_m3517141967 (); extern "C" void Convert_ToInt32_m3766704696 (); extern "C" void Convert_ToInt32_m3303645861 (); extern "C" void Convert_ToInt32_m3549512503 (); extern "C" void Convert_ToInt32_m3303641118 (); extern "C" void Convert_ToInt32_m1053332613 (); extern "C" void Convert_ToInt32_m330942855 (); extern "C" void Convert_ToInt32_m330945800 (); extern "C" void Convert_ToInt32_m330941057 (); extern "C" void Convert_ToInt32_m12524065 (); extern "C" void Convert_ToInt32_m2328407475 (); extern "C" void Convert_ToInt64_m2815084104 (); extern "C" void Convert_ToInt64_m4109529146 (); extern "C" void Convert_ToInt64_m4109928364 (); extern "C" void Convert_ToInt64_m1374553151 (); extern "C" void Convert_ToInt64_m3672181841 (); extern "C" void Convert_ToInt64_m3921744570 (); extern "C" void Convert_ToInt64_m3031549538 (); extern "C" void Convert_ToInt64_m3031552483 (); extern "C" void Convert_ToInt64_m3277419125 (); extern "C" void Convert_ToInt64_m3031547740 (); extern "C" void Convert_ToInt64_m4240420881 (); extern "C" void Convert_ToInt64_m946235843 (); extern "C" void Convert_ToInt64_m485982729 (); extern "C" void Convert_ToInt64_m485985674 (); extern "C" void Convert_ToInt64_m485980931 (); extern "C" void Convert_ToInt64_m167563939 (); extern "C" void Convert_ToInt64_m2221310705 (); extern "C" void Convert_ToSByte_m523726500 (); extern "C" void Convert_ToSByte_m1290929502 (); extern "C" void Convert_ToSByte_m1291328720 (); extern "C" void Convert_ToSByte_m3378162843 (); extern "C" void Convert_ToSByte_m827320437 (); extern "C" void Convert_ToSByte_m1076883166 (); extern "C" void Convert_ToSByte_m1554306494 (); extern "C" void Convert_ToSByte_m1554309439 (); extern "C" void Convert_ToSByte_m1554304696 (); extern "C" void Convert_ToSByte_m1295525151 (); extern "C" void Convert_ToSByte_m1936088621 (); extern "C" void Convert_ToSByte_m1936091566 (); extern "C" void Convert_ToSByte_m1936086823 (); extern "C" void Convert_ToSByte_m2570600013 (); extern "C" void Convert_ToSingle_m3622587564 (); extern "C" void Convert_ToSingle_m2381390934 (); extern "C" void Convert_ToSingle_m2182056611 (); extern "C" void Convert_ToSingle_m788736365 (); extern "C" void Convert_ToSingle_m1038299094 (); extern "C" void Convert_ToSingle_m998872518 (); extern "C" void Convert_ToSingle_m998875463 (); extern "C" void Convert_ToSingle_m1244742105 (); extern "C" void Convert_ToSingle_m998870720 (); extern "C" void Convert_ToSingle_m459230503 (); extern "C" void Convert_ToSingle_m1897504549 (); extern "C" void Convert_ToSingle_m1897507494 (); extern "C" void Convert_ToSingle_m1897502751 (); extern "C" void Convert_ToSingle_m1734305365 (); extern "C" void Convert_ToString_m427788191 (); extern "C" void Convert_ToString_m1285681781 (); extern "C" void Convert_ToUInt16_m386651276 (); extern "C" void Convert_ToUInt16_m3839993974 (); extern "C" void Convert_ToUInt16_m3840393192 (); extern "C" void Convert_ToUInt16_m3241087619 (); extern "C" void Convert_ToUInt16_m2346919309 (); extern "C" void Convert_ToUInt16_m2596482038 (); extern "C" void Convert_ToUInt16_m3265893798 (); extern "C" void Convert_ToUInt16_m3265896743 (); extern "C" void Convert_ToUInt16_m3511763385 (); extern "C" void Convert_ToUInt16_m3265892000 (); extern "C" void Convert_ToUInt16_m3161828615 (); extern "C" void Convert_ToUInt16_m3455687493 (); extern "C" void Convert_ToUInt16_m3455690438 (); extern "C" void Convert_ToUInt16_m141936181 (); extern "C" void Convert_ToUInt32_m175516108 (); extern "C" void Convert_ToUInt32_m2606324534 (); extern "C" void Convert_ToUInt32_m2606723752 (); extern "C" void Convert_ToUInt32_m3029952451 (); extern "C" void Convert_ToUInt32_m2201561165 (); extern "C" void Convert_ToUInt32_m2451123894 (); extern "C" void Convert_ToUInt32_m3676846822 (); extern "C" void Convert_ToUInt32_m3676849767 (); extern "C" void Convert_ToUInt32_m3922716409 (); extern "C" void Convert_ToUInt32_m3676845024 (); extern "C" void Convert_ToUInt32_m3903361607 (); extern "C" void Convert_ToUInt32_m3310332294 (); extern "C" void Convert_ToUInt32_m3310327551 (); extern "C" void Convert_ToUInt32_m2991910559 (); extern "C" void Convert_ToUInt32_m883469173 (); extern "C" void Convert_ToUInt64_m3087942316 (); extern "C" void Convert_ToUInt64_m67300950 (); extern "C" void Convert_ToUInt64_m67700168 (); extern "C" void Convert_ToUInt64_m1647411363 (); extern "C" void Convert_ToUInt64_m1741321069 (); extern "C" void Convert_ToUInt64_m1990883798 (); extern "C" void Convert_ToUInt64_m2276527046 (); extern "C" void Convert_ToUInt64_m2276529991 (); extern "C" void Convert_ToUInt64_m2522396633 (); extern "C" void Convert_ToUInt64_m2276525248 (); extern "C" void Convert_ToUInt64_m1711588135 (); extern "C" void Convert_ToUInt64_m2850089253 (); extern "C" void Convert_ToUInt64_m2850087455 (); extern "C" void Convert_ToUInt64_m2531670463 (); extern "C" void Convert_ToUInt64_m2986662997 (); extern "C" void Convert_ChangeType_m2922880930 (); extern "C" void Convert_ToType_m353901888 (); extern "C" void CultureAwareComparer__ctor_m3948021717 (); extern "C" void CultureAwareComparer_Compare_m797802695 (); extern "C" void CultureAwareComparer_Equals_m1431689813 (); extern "C" void CultureAwareComparer_GetHashCode_m2106379807 (); extern "C" void CurrentSystemTimeZone__ctor_m1114897456 (); extern "C" void CurrentSystemTimeZone__ctor_m4151899394 (); extern "C" void CurrentSystemTimeZone_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m167746118 (); extern "C" void CurrentSystemTimeZone_GetTimeZoneData_m615725030 (); extern "C" void CurrentSystemTimeZone_GetDaylightChanges_m2350299512 (); extern "C" void CurrentSystemTimeZone_GetUtcOffset_m376788806 (); extern "C" void CurrentSystemTimeZone_OnDeserialization_m3995478209 (); extern "C" void CurrentSystemTimeZone_GetDaylightTimeFromData_m3433378959 (); extern "C" void DateTime__ctor_m4059138700 (); extern "C" void DateTime__ctor_m145640619 (); extern "C" void DateTime__ctor_m580066412 (); extern "C" void DateTime__ctor_m1594789867 (); extern "C" void DateTime__ctor_m270463751 (); extern "C" void DateTime__ctor_m2747883466 (); extern "C" void DateTime__ctor_m3805233578 (); extern "C" void DateTime__cctor_m2266812979 (); extern "C" void DateTime_System_IConvertible_ToBoolean_m2607169538 (); extern "C" void DateTime_System_IConvertible_ToByte_m3369899810 (); extern "C" void DateTime_System_IConvertible_ToChar_m4085197502 (); extern "C" void DateTime_System_IConvertible_ToDateTime_m1478929736 (); extern "C" void DateTime_System_IConvertible_ToDecimal_m53652706 (); extern "C" void DateTime_System_IConvertible_ToDouble_m3492146548 (); extern "C" void DateTime_System_IConvertible_ToInt16_m3303672066 (); extern "C" void DateTime_System_IConvertible_ToInt32_m2595315522 (); extern "C" void DateTime_System_IConvertible_ToInt64_m3286355362 (); extern "C" void DateTime_System_IConvertible_ToSByte_m551886946 (); extern "C" void DateTime_System_IConvertible_ToSingle_m1051597858 (); extern "C" void DateTime_System_IConvertible_ToType_m1980756024 (); extern "C" void DateTime_System_IConvertible_ToUInt16_m3136984848 (); extern "C" void DateTime_System_IConvertible_ToUInt32_m634562052 (); extern "C" void DateTime_System_IConvertible_ToUInt64_m2163654274 (); extern "C" void DateTime_AbsoluteDays_m1774199309 (); extern "C" void DateTime_FromTicks_m1238653738 (); extern "C" void DateTime_get_Month_m1871036171 (); extern "C" void DateTime_get_Day_m609985447 (); extern "C" void DateTime_get_DayOfWeek_m1793620473 (); extern "C" void DateTime_get_Hour_m1857077531 (); extern "C" void DateTime_get_Minute_m1138831307 (); extern "C" void DateTime_get_Second_m3430069803 (); extern "C" void DateTime_GetTimeMonotonic_m2483860980 (); extern "C" void DateTime_GetNow_m2752959917 (); extern "C" void DateTime_get_Now_m1812131422 (); extern "C" void DateTime_get_Ticks_m386468226 (); extern "C" void DateTime_get_Today_m3010825801 (); extern "C" void DateTime_get_UtcNow_m685282732 (); extern "C" void DateTime_get_Year_m2333942068 (); extern "C" void DateTime_get_Kind_m3496013602 (); extern "C" void DateTime_Add_m1332740042 (); extern "C" void DateTime_AddTicks_m2395456952 (); extern "C" void DateTime_AddMilliseconds_m1717403134 (); extern "C" void DateTime_AddSeconds_m2515640243 (); extern "C" void DateTime_Compare_m1646075697 (); extern "C" void DateTime_CompareTo_m246114144 (); extern "C" void DateTime_CompareTo_m1522800900 (); extern "C" void DateTime_Equals_m1479384337 (); extern "C" void DateTime_FromBinary_m1447091502 (); extern "C" void DateTime_SpecifyKind_m2123544880 (); extern "C" void DateTime_DaysInMonth_m1394183022 (); extern "C" void DateTime_Equals_m13666989 (); extern "C" void DateTime_CheckDateTimeKind_m1840811157 (); extern "C" void DateTime_GetHashCode_m2255586565 (); extern "C" void DateTime_IsLeapYear_m3404721384 (); extern "C" void DateTime_Parse_m1801557718 (); extern "C" void DateTime_Parse_m1424797081 (); extern "C" void DateTime_CoreParse_m2501063101 (); extern "C" void DateTime_YearMonthDayFormats_m200860137 (); extern "C" void DateTime__ParseNumber_m223303221 (); extern "C" void DateTime__ParseEnum_m780384966 (); extern "C" void DateTime__ParseString_m3760446054 (); extern "C" void DateTime__ParseAmPm_m618382890 (); extern "C" void DateTime__ParseTimeSeparator_m4168494975 (); extern "C" void DateTime__ParseDateSeparator_m1287691040 (); extern "C" void DateTime_IsLetter_m3983328653 (); extern "C" void DateTime__DoParse_m760672305 (); extern "C" void DateTime_ParseExact_m3158704214 (); extern "C" void DateTime_ParseExact_m4017898168 (); extern "C" void DateTime_CheckStyle_m1804676438 (); extern "C" void DateTime_ParseExact_m3576065686 (); extern "C" void DateTime_Subtract_m4130550807 (); extern "C" void DateTime_ToString_m3221907059 (); extern "C" void DateTime_ToString_m1268589345 (); extern "C" void DateTime_ToString_m2141430949 (); extern "C" void DateTime_ToLocalTime_m3629183118 (); extern "C" void DateTime_ToUniversalTime_m691668206 (); extern "C" void DateTime_op_Addition_m4061583523 (); extern "C" void DateTime_op_Equality_m2277436664 (); extern "C" void DateTime_op_GreaterThan_m3846016869 (); extern "C" void DateTime_op_GreaterThanOrEqual_m717787228 (); extern "C" void DateTime_op_Inequality_m3446449971 (); extern "C" void DateTime_op_LessThan_m35073816 (); extern "C" void DateTime_op_LessThanOrEqual_m354447689 (); extern "C" void DateTime_op_Subtraction_m3609021319 (); extern "C" void DateTimeOffset__ctor_m206991153 (); extern "C" void DateTimeOffset__ctor_m2612619655 (); extern "C" void DateTimeOffset__ctor_m2468003023 (); extern "C" void DateTimeOffset__ctor_m846097640 (); extern "C" void DateTimeOffset__cctor_m2485435494 (); extern "C" void DateTimeOffset_System_IComparable_CompareTo_m1459743069 (); extern "C" void DateTimeOffset_System_Runtime_Serialization_ISerializable_GetObjectData_m2682194308 (); extern "C" void DateTimeOffset_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m3161484655 (); extern "C" void DateTimeOffset_CompareTo_m1122350244 (); extern "C" void DateTimeOffset_Equals_m4108087019 (); extern "C" void DateTimeOffset_Equals_m1431331290 (); extern "C" void DateTimeOffset_GetHashCode_m1972583858 (); extern "C" void DateTimeOffset_ToString_m983707174 (); extern "C" void DateTimeOffset_ToString_m4001156824 (); extern "C" void DateTimeOffset_get_DateTime_m2501837032 (); extern "C" void DateTimeOffset_get_Offset_m3938299132 (); extern "C" void DateTimeOffset_get_UtcDateTime_m2831969300 (); extern "C" void DateTimeUtils_CountRepeat_m1708225203 (); extern "C" void DateTimeUtils_ZeroPad_m685144038 (); extern "C" void DateTimeUtils_ParseQuotedString_m3109565730 (); extern "C" void DateTimeUtils_GetStandardPattern_m4117827954 (); extern "C" void DateTimeUtils_GetStandardPattern_m2287988683 (); extern "C" void DateTimeUtils_ToString_m2982668092 (); extern "C" void DateTimeUtils_ToString_m2366015855 (); extern "C" void DBNull__ctor_m1342883088 (); extern "C" void DBNull__ctor_m200724049 (); extern "C" void DBNull__cctor_m2492573853 (); extern "C" void DBNull_System_IConvertible_ToBoolean_m945636952 (); extern "C" void DBNull_System_IConvertible_ToByte_m3763115532 (); extern "C" void DBNull_System_IConvertible_ToChar_m1429054760 (); extern "C" void DBNull_System_IConvertible_ToDateTime_m677875698 (); extern "C" void DBNull_System_IConvertible_ToDecimal_m3907810552 (); extern "C" void DBNull_System_IConvertible_ToDouble_m2435356702 (); extern "C" void DBNull_System_IConvertible_ToInt16_m906928600 (); extern "C" void DBNull_System_IConvertible_ToInt32_m2582331800 (); extern "C" void DBNull_System_IConvertible_ToInt64_m3030940728 (); extern "C" void DBNull_System_IConvertible_ToSByte_m1458080632 (); extern "C" void DBNull_System_IConvertible_ToSingle_m4000065676 (); extern "C" void DBNull_System_IConvertible_ToType_m3878736354 (); extern "C" void DBNull_System_IConvertible_ToUInt16_m1876954426 (); extern "C" void DBNull_System_IConvertible_ToUInt32_m256639662 (); extern "C" void DBNull_System_IConvertible_ToUInt64_m2860308204 (); extern "C" void DBNull_GetObjectData_m825308334 (); extern "C" void DBNull_ToString_m1866708381 (); extern "C" void DBNull_ToString_m1417959115 (); extern "C" void Decimal__ctor_m2513372273 (); extern "C" void Decimal__ctor_m3224507889 (); extern "C" void Decimal__ctor_m2172724314 (); extern "C" void Decimal__ctor_m3224510834 (); extern "C" void Decimal__ctor_m2172727259 (); extern "C" void Decimal__ctor_m1313518859 (); extern "C" void Decimal__ctor_m1063956130 (); extern "C" void Decimal__cctor_m2694156045 (); extern "C" void Decimal_System_IConvertible_ToType_m3174931036 (); extern "C" void Decimal_System_IConvertible_ToBoolean_m632609316 (); extern "C" void Decimal_System_IConvertible_ToByte_m852949524 (); extern "C" void Decimal_System_IConvertible_ToChar_m224793940 (); extern "C" void Decimal_System_IConvertible_ToDateTime_m126860468 (); extern "C" void Decimal_System_IConvertible_ToDecimal_m1811804854 (); extern "C" void Decimal_System_IConvertible_ToDouble_m2491245620 (); extern "C" void Decimal_System_IConvertible_ToInt16_m2684098812 (); extern "C" void Decimal_System_IConvertible_ToInt32_m1063784048 (); extern "C" void Decimal_System_IConvertible_ToInt64_m3667452590 (); extern "C" void Decimal_System_IConvertible_ToSByte_m3132034058 (); extern "C" void Decimal_System_IConvertible_ToSingle_m2991266196 (); extern "C" void Decimal_System_IConvertible_ToUInt16_m2878718708 (); extern "C" void Decimal_System_IConvertible_ToUInt32_m2170362164 (); extern "C" void Decimal_System_IConvertible_ToUInt64_m2861402004 (); extern "C" void Decimal_GetBits_m3135740910 (); extern "C" void Decimal_Add_m228744192 (); extern "C" void Decimal_Subtract_m4038646005 (); extern "C" void Decimal_GetHashCode_m3725649587 (); extern "C" void Decimal_u64_m2792266019 (); extern "C" void Decimal_s64_m2409928640 (); extern "C" void Decimal_Equals_m1154754945 (); extern "C" void Decimal_Equals_m3414174927 (); extern "C" void Decimal_IsZero_m379800408 (); extern "C" void Decimal_Floor_m2586872671 (); extern "C" void Decimal_Multiply_m201714661 (); extern "C" void Decimal_Divide_m555230192 (); extern "C" void Decimal_Compare_m2326407199 (); extern "C" void Decimal_CompareTo_m2551434482 (); extern "C" void Decimal_CompareTo_m2260095952 (); extern "C" void Decimal_Equals_m3235245971 (); extern "C" void Decimal_Parse_m3786250826 (); extern "C" void Decimal_ThrowAtPos_m2498186320 (); extern "C" void Decimal_ThrowInvalidExp_m2882909866 (); extern "C" void Decimal_stripStyles_m1011490529 (); extern "C" void Decimal_Parse_m2075137301 (); extern "C" void Decimal_PerformParse_m2251733520 (); extern "C" void Decimal_ToString_m3542473445 (); extern "C" void Decimal_ToString_m143310003 (); extern "C" void Decimal_ToString_m1778338145 (); extern "C" void Decimal_decimal2UInt64_m3964664210 (); extern "C" void Decimal_decimal2Int64_m4033216548 (); extern "C" void Decimal_decimalIncr_m877616783 (); extern "C" void Decimal_string2decimal_m3618231257 (); extern "C" void Decimal_decimalSetExponent_m618812921 (); extern "C" void Decimal_decimal2double_m128837253 (); extern "C" void Decimal_decimalFloorAndTrunc_m1954139757 (); extern "C" void Decimal_decimalMult_m3364322611 (); extern "C" void Decimal_decimalDiv_m3855399918 (); extern "C" void Decimal_decimalCompare_m57377858 (); extern "C" void Decimal_op_Increment_m1999568348 (); extern "C" void Decimal_op_Subtraction_m1143274995 (); extern "C" void Decimal_op_Multiply_m3464599935 (); extern "C" void Decimal_op_Division_m3950902742 (); extern "C" void Decimal_op_Explicit_m444543858 (); extern "C" void Decimal_op_Explicit_m3069219439 (); extern "C" void Decimal_op_Explicit_m1899223848 (); extern "C" void Decimal_op_Explicit_m1178707977 (); extern "C" void Decimal_op_Explicit_m2040523874 (); extern "C" void Decimal_op_Explicit_m1320008003 (); extern "C" void Decimal_op_Explicit_m3678935617 (); extern "C" void Decimal_op_Explicit_m2958419746 (); extern "C" void Decimal_op_Implicit_m394719939 (); extern "C" void Decimal_op_Implicit_m4082450700 (); extern "C" void Decimal_op_Implicit_m3836579315 (); extern "C" void Decimal_op_Implicit_m3967123276 (); extern "C" void Decimal_op_Implicit_m3836581113 (); extern "C" void Decimal_op_Implicit_m3967125074 (); extern "C" void Decimal_op_Implicit_m3836584058 (); extern "C" void Decimal_op_Implicit_m3967128019 (); extern "C" void Decimal_op_Explicit_m1480046292 (); extern "C" void Decimal_op_Explicit_m1230483563 (); extern "C" void Decimal_op_Explicit_m2130641906 (); extern "C" void Decimal_op_Explicit_m2624557563 (); extern "C" void Decimal_op_Inequality_m4269318701 (); extern "C" void Decimal_op_Equality_m4013483186 (); extern "C" void Decimal_op_GreaterThan_m2234430307 (); extern "C" void Decimal_op_LessThan_m3506122450 (); extern "C" void Delegate_get_Method_m669548326 (); extern "C" void Delegate_get_Target_m2860483769 (); extern "C" void Delegate_CreateDelegate_internal_m498460281 (); extern "C" void Delegate_SetMulticastInvoke_m4051533378 (); extern "C" void Delegate_arg_type_match_m1575175281 (); extern "C" void Delegate_return_type_match_m2221559117 (); extern "C" void Delegate_CreateDelegate_m1630815211 (); extern "C" void Delegate_CreateDelegate_m3460497746 (); extern "C" void Delegate_CreateDelegate_m2273250141 (); extern "C" void Delegate_CreateDelegate_m1085193661 (); extern "C" void Delegate_GetCandidateMethod_m1148532482 (); extern "C" void Delegate_CreateDelegate_m812395778 (); extern "C" void Delegate_CreateDelegate_m715202082 (); extern "C" void Delegate_CreateDelegate_m789236573 (); extern "C" void Delegate_CreateDelegate_m3528508448 (); extern "C" void Delegate_Clone_m3463780544 (); extern "C" void Delegate_Equals_m2291127683 (); extern "C" void Delegate_GetHashCode_m2407269851 (); extern "C" void Delegate_GetObjectData_m3060947374 (); extern "C" void Delegate_GetInvocationList_m1958947583 (); extern "C" void Delegate_Combine_m1842362874 (); extern "C" void Delegate_Combine_m2723747920 (); extern "C" void Delegate_CombineImpl_m3377741042 (); extern "C" void Delegate_Remove_m3898886541 (); extern "C" void Delegate_RemoveImpl_m3027030277 (); extern "C" void DelegateSerializationHolder__ctor_m3368674811 (); extern "C" void DelegateSerializationHolder_GetDelegateData_m3517598358 (); extern "C" void DelegateSerializationHolder_GetObjectData_m107938392 (); extern "C" void DelegateSerializationHolder_GetRealObject_m296541084 (); extern "C" void DelegateEntry__ctor_m2030858126 (); extern "C" void DelegateEntry_DeserializeDelegate_m151701220 (); extern "C" void DebuggableAttribute__ctor_m1767828745 (); extern "C" void DebuggerDisplayAttribute__ctor_m1198914250 (); extern "C" void DebuggerDisplayAttribute_set_Name_m332508078 (); extern "C" void DebuggerHiddenAttribute__ctor_m3386146146 (); extern "C" void DebuggerStepThroughAttribute__ctor_m1656896911 (); extern "C" void DebuggerTypeProxyAttribute__ctor_m3197476783 (); extern "C" void StackFrame__ctor_m3629772014 (); extern "C" void StackFrame__ctor_m926982238 (); extern "C" void StackFrame_get_frame_info_m2232383397 (); extern "C" void StackFrame_GetFileLineNumber_m3834796759 (); extern "C" void StackFrame_GetFileName_m3640041868 (); extern "C" void StackFrame_GetSecureFileName_m2430240099 (); extern "C" void StackFrame_GetILOffset_m2885157332 (); extern "C" void StackFrame_GetMethod_m1989802200 (); extern "C" void StackFrame_GetNativeOffset_m2753641064 (); extern "C" void StackFrame_GetInternalMethodName_m623093646 (); extern "C" void StackFrame_ToString_m2085846783 (); extern "C" void StackTrace__ctor_m1636562966 (); extern "C" void StackTrace__ctor_m449371190 (); extern "C" void StackTrace__ctor_m109564407 (); extern "C" void StackTrace__ctor_m2492097932 (); extern "C" void StackTrace__ctor_m2042930289 (); extern "C" void StackTrace_init_frames_m198588387 (); extern "C" void StackTrace_get_trace_m483954897 (); extern "C" void StackTrace_get_FrameCount_m2721777661 (); extern "C" void StackTrace_GetFrame_m2975179401 (); extern "C" void StackTrace_ToString_m317965015 (); extern "C" void DivideByZeroException__ctor_m3910919290 (); extern "C" void DivideByZeroException__ctor_m581941947 (); extern "C" void DllNotFoundException__ctor_m3414970969 (); extern "C" void DllNotFoundException__ctor_m2210937882 (); extern "C" void Double_System_IConvertible_ToType_m3081766574 (); extern "C" void Double_System_IConvertible_ToBoolean_m1420114956 (); extern "C" void Double_System_IConvertible_ToByte_m3166411992 (); extern "C" void Double_System_IConvertible_ToChar_m832351220 (); extern "C" void Double_System_IConvertible_ToDateTime_m2501791934 (); extern "C" void Double_System_IConvertible_ToDecimal_m87321260 (); extern "C" void Double_System_IConvertible_ToDouble_m233905130 (); extern "C" void Double_System_IConvertible_ToInt16_m3883955340 (); extern "C" void Double_System_IConvertible_ToInt32_m1264391244 (); extern "C" void Double_System_IConvertible_ToInt64_m1713000172 (); extern "C" void Double_System_IConvertible_ToSByte_m140140076 (); extern "C" void Double_System_IConvertible_ToSingle_m1798614104 (); extern "C" void Double_System_IConvertible_ToUInt16_m3970470150 (); extern "C" void Double_System_IConvertible_ToUInt32_m2350155386 (); extern "C" void Double_System_IConvertible_ToUInt64_m658856632 (); extern "C" void Double_CompareTo_m2864423062 (); extern "C" void Double_Equals_m1597124279 (); extern "C" void Double_CompareTo_m2074073668 (); extern "C" void Double_Equals_m806774885 (); extern "C" void Double_GetHashCode_m2106126735 (); extern "C" void Double_IsInfinity_m3094155474 (); extern "C" void Double_IsNaN_m506471885 (); extern "C" void Double_IsNegativeInfinity_m553043933 (); extern "C" void Double_IsPositiveInfinity_m3352165785 (); extern "C" void Double_Parse_m3110783306 (); extern "C" void Double_Parse_m2930245738 (); extern "C" void Double_Parse_m3249074997 (); extern "C" void Double_Parse_m1451965917 (); extern "C" void Double_TryParseStringConstant_m2653461779 (); extern "C" void Double_ParseImpl_m1244982012 (); extern "C" void Double_ToString_m3380246633 (); extern "C" void Double_ToString_m937670807 (); extern "C" void Double_ToString_m2573497243 (); extern "C" void EntryPointNotFoundException__ctor_m2371781647 (); extern "C" void EntryPointNotFoundException__ctor_m3139612880 (); extern "C" void Enum__ctor_m701753108 (); extern "C" void Enum__cctor_m4092380953 (); extern "C" void Enum_System_IConvertible_ToBoolean_m2146376156 (); extern "C" void Enum_System_IConvertible_ToByte_m1060234888 (); extern "C" void Enum_System_IConvertible_ToChar_m179982628 (); extern "C" void Enum_System_IConvertible_ToDateTime_m4246330158 (); extern "C" void Enum_System_IConvertible_ToDecimal_m3666246204 (); extern "C" void Enum_System_IConvertible_ToDouble_m4172089306 (); extern "C" void Enum_System_IConvertible_ToInt16_m2840902492 (); extern "C" void Enum_System_IConvertible_ToInt32_m2869626012 (); extern "C" void Enum_System_IConvertible_ToInt64_m547036028 (); extern "C" void Enum_System_IConvertible_ToSByte_m2434598716 (); extern "C" void Enum_System_IConvertible_ToSingle_m194603528 (); extern "C" void Enum_System_IConvertible_ToType_m3110119966 (); extern "C" void Enum_System_IConvertible_ToUInt16_m2491689078 (); extern "C" void Enum_System_IConvertible_ToUInt32_m1363911786 (); extern "C" void Enum_System_IConvertible_ToUInt64_m3959759976 (); extern "C" void Enum_GetTypeCode_m403915996 (); extern "C" void Enum_get_value_m2922212495 (); extern "C" void Enum_get_Value_m291898479 (); extern "C" void Enum_FindPosition_m20879982 (); extern "C" void Enum_GetName_m3333121265 (); extern "C" void Enum_IsDefined_m2781598580 (); extern "C" void Enum_get_underlying_type_m3481337786 (); extern "C" void Enum_GetUnderlyingType_m2468052512 (); extern "C" void Enum_FindName_m1872558967 (); extern "C" void Enum_GetValue_m75952491 (); extern "C" void Enum_Parse_m1799348482 (); extern "C" void Enum_compare_value_to_m1798628381 (); extern "C" void Enum_CompareTo_m1622811206 (); extern "C" void Enum_ToString_m1469276249 (); extern "C" void Enum_ToString_m4089777287 (); extern "C" void Enum_ToString_m1466259273 (); extern "C" void Enum_ToString_m3635159947 (); extern "C" void Enum_ToObject_m3484832841 (); extern "C" void Enum_ToObject_m845831469 (); extern "C" void Enum_ToObject_m845833267 (); extern "C" void Enum_ToObject_m845836212 (); extern "C" void Enum_ToObject_m1129836274 (); extern "C" void Enum_ToObject_m1091702854 (); extern "C" void Enum_ToObject_m1448253266 (); extern "C" void Enum_ToObject_m1448255064 (); extern "C" void Enum_ToObject_m1448258009 (); extern "C" void Enum_Equals_m4008135815 (); extern "C" void Enum_get_hashcode_m3881137336 (); extern "C" void Enum_GetHashCode_m4018839007 (); extern "C" void Enum_FormatSpecifier_X_m2324577611 (); extern "C" void Enum_FormatFlags_m994697154 (); extern "C" void Enum_Format_m1097709535 (); extern "C" void Environment_get_SocketSecurityEnabled_m2002704895 (); extern "C" void Environment_get_NewLine_m1034655108 (); extern "C" void Environment_get_Platform_m977128040 (); extern "C" void Environment_GetOSVersionString_m2885926456 (); extern "C" void Environment_get_OSVersion_m2506362029 (); extern "C" void Environment_internalGetEnvironmentVariable_m1433380067 (); extern "C" void Environment_GetEnvironmentVariable_m3419218304 (); extern "C" void Environment_GetWindowsFolderPath_m274642490 (); extern "C" void Environment_GetFolderPath_m4247985398 (); extern "C" void Environment_ReadXdgUserDir_m2296308400 (); extern "C" void Environment_InternalGetFolderPath_m3585366137 (); extern "C" void Environment_get_IsRunningOnWindows_m1303597216 (); extern "C" void Environment_GetMachineConfigPath_m4130630145 (); extern "C" void Environment_internalGetHome_m253471857 (); extern "C" void EventArgs__ctor_m1904770202 (); extern "C" void EventArgs__cctor_m2731205203 (); extern "C" void EventHandler__ctor_m4096468317 (); extern "C" void EventHandler_Invoke_m1659461265 (); extern "C" void EventHandler_BeginInvoke_m76205456 (); extern "C" void EventHandler_EndInvoke_m2432290285 (); extern "C" void Exception__ctor_m3223090658 (); extern "C" void Exception__ctor_m3870771296 (); extern "C" void Exception__ctor_m3602014243 (); extern "C" void Exception__ctor_m1328171222 (); extern "C" void Exception_get_InnerException_m1427945535 (); extern "C" void Exception_set_HResult_m3566571225 (); extern "C" void Exception_get_ClassName_m2925782135 (); extern "C" void Exception_get_Message_m1013139483 (); extern "C" void Exception_get_Source_m2795291433 (); extern "C" void Exception_get_StackTrace_m382134187 (); extern "C" void Exception_GetObjectData_m1945031808 (); extern "C" void Exception_ToString_m1076460401 (); extern "C" void Exception_GetFullNameForStackTrace_m130874526 (); extern "C" void Exception_GetType_m913902486 (); extern "C" void ExecutionEngineException__ctor_m303736736 (); extern "C" void ExecutionEngineException__ctor_m2979248353 (); extern "C" void FieldAccessException__ctor_m4068849444 (); extern "C" void FieldAccessException__ctor_m843948638 (); extern "C" void FieldAccessException__ctor_m2990930533 (); extern "C" void FlagsAttribute__ctor_m4285382720 (); extern "C" void FormatException__ctor_m2563336121 (); extern "C" void FormatException__ctor_m27151337 (); extern "C" void FormatException__ctor_m173965690 (); extern "C" void GC_SuppressFinalize_m1160635446 (); extern "C" void Calendar__ctor_m2652724106 (); extern "C" void Calendar_Clone_m1933662586 (); extern "C" void Calendar_CheckReadOnly_m955278002 (); extern "C" void Calendar_get_EraNames_m1732675382 (); extern "C" void CCFixed_FromDateTime_m3211963997 (); extern "C" void CCFixed_day_of_week_m3355969935 (); extern "C" void CCGregorianCalendar_is_leap_year_m229298524 (); extern "C" void CCGregorianCalendar_fixed_from_dmy_m3822859421 (); extern "C" void CCGregorianCalendar_year_from_fixed_m1525760974 (); extern "C" void CCGregorianCalendar_my_from_fixed_m3120089585 (); extern "C" void CCGregorianCalendar_dmy_from_fixed_m3698401994 (); extern "C" void CCGregorianCalendar_month_from_fixed_m3688850581 (); extern "C" void CCGregorianCalendar_day_from_fixed_m3729332281 (); extern "C" void CCGregorianCalendar_GetDayOfMonth_m2484684921 (); extern "C" void CCGregorianCalendar_GetMonth_m2310195656 (); extern "C" void CCGregorianCalendar_GetYear_m632074537 (); extern "C" void CCMath_div_m3921680315 (); extern "C" void CCMath_mod_m4177458858 (); extern "C" void CCMath_div_mod_m3137892397 (); extern "C" void CompareInfo__ctor_m2717172747 (); extern "C" void CompareInfo__ctor_m4083915963 (); extern "C" void CompareInfo__cctor_m2145880322 (); extern "C" void CompareInfo_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m3454540043 (); extern "C" void CompareInfo_get_UseManagedCollation_m2323857615 (); extern "C" void CompareInfo_construct_compareinfo_m2022101582 (); extern "C" void CompareInfo_free_internal_collator_m1379817450 (); extern "C" void CompareInfo_internal_compare_m4086146477 (); extern "C" void CompareInfo_assign_sortkey_m1948194573 (); extern "C" void CompareInfo_internal_index_m2497885245 (); extern "C" void CompareInfo_Finalize_m147184759 (); extern "C" void CompareInfo_internal_compare_managed_m564523597 (); extern "C" void CompareInfo_internal_compare_switch_m1799621832 (); extern "C" void CompareInfo_Compare_m163670860 (); extern "C" void CompareInfo_Compare_m3716808947 (); extern "C" void CompareInfo_Compare_m2372235443 (); extern "C" void CompareInfo_Equals_m3684038010 (); extern "C" void CompareInfo_GetHashCode_m2323369182 (); extern "C" void CompareInfo_GetSortKey_m3202721135 (); extern "C" void CompareInfo_IndexOf_m2367270856 (); extern "C" void CompareInfo_internal_index_managed_m3605761693 (); extern "C" void CompareInfo_internal_index_switch_m2905236232 (); extern "C" void CompareInfo_IndexOf_m2925180783 (); extern "C" void CompareInfo_IsPrefix_m376759374 (); extern "C" void CompareInfo_IsSuffix_m1542106991 (); extern "C" void CompareInfo_LastIndexOf_m2014556670 (); extern "C" void CompareInfo_LastIndexOf_m2573358757 (); extern "C" void CompareInfo_ToString_m1329064616 (); extern "C" void CompareInfo_get_LCID_m2545212208 (); extern "C" void CultureInfo__ctor_m3984190515 (); extern "C" void CultureInfo__ctor_m3309312746 (); extern "C" void CultureInfo__ctor_m501073747 (); extern "C" void CultureInfo__ctor_m799101632 (); extern "C" void CultureInfo__ctor_m2439903714 (); extern "C" void CultureInfo__cctor_m2140474891 (); extern "C" void CultureInfo_get_InvariantCulture_m764001524 (); extern "C" void CultureInfo_get_CurrentCulture_m2905498779 (); extern "C" void CultureInfo_get_CurrentUICulture_m1742589319 (); extern "C" void CultureInfo_ConstructCurrentCulture_m3092907025 (); extern "C" void CultureInfo_ConstructCurrentUICulture_m1453287293 (); extern "C" void CultureInfo_get_LCID_m1645560313 (); extern "C" void CultureInfo_get_Name_m1067687641 (); extern "C" void CultureInfo_get_Parent_m451838736 (); extern "C" void CultureInfo_get_TextInfo_m3424110770 (); extern "C" void CultureInfo_get_IcuName_m794066458 (); extern "C" void CultureInfo_Clone_m1893614152 (); extern "C" void CultureInfo_Equals_m2811537169 (); extern "C" void CultureInfo_GetHashCode_m1389692277 (); extern "C" void CultureInfo_ToString_m429412721 (); extern "C" void CultureInfo_get_CompareInfo_m1894655206 (); extern "C" void CultureInfo_get_IsNeutralCulture_m3281017630 (); extern "C" void CultureInfo_CheckNeutral_m2341300737 (); extern "C" void CultureInfo_get_NumberFormat_m149371268 (); extern "C" void CultureInfo_set_NumberFormat_m929801593 (); extern "C" void CultureInfo_get_DateTimeFormat_m1881597700 (); extern "C" void CultureInfo_set_DateTimeFormat_m1095763797 (); extern "C" void CultureInfo_get_IsReadOnly_m3153492313 (); extern "C" void CultureInfo_GetFormat_m1536954785 (); extern "C" void CultureInfo_Construct_m2429096343 (); extern "C" void CultureInfo_ConstructInternalLocaleFromName_m3079104193 (); extern "C" void CultureInfo_ConstructInternalLocaleFromLcid_m332238777 (); extern "C" void CultureInfo_ConstructInternalLocaleFromCurrentLocale_m39643311 (); extern "C" void CultureInfo_construct_internal_locale_from_lcid_m1451282539 (); extern "C" void CultureInfo_construct_internal_locale_from_name_m3409722447 (); extern "C" void CultureInfo_construct_internal_locale_from_current_locale_m2579188120 (); extern "C" void CultureInfo_construct_datetime_format_m650587571 (); extern "C" void CultureInfo_construct_number_format_m650450789 (); extern "C" void CultureInfo_ConstructInvariant_m2998357762 (); extern "C" void CultureInfo_CreateTextInfo_m2501367740 (); extern "C" void CultureInfo_CreateCulture_m4255235762 (); extern "C" void DateTimeFormatInfo__ctor_m476740351 (); extern "C" void DateTimeFormatInfo__ctor_m594580360 (); extern "C" void DateTimeFormatInfo__cctor_m770025765 (); extern "C" void DateTimeFormatInfo_GetInstance_m619500550 (); extern "C" void DateTimeFormatInfo_get_IsReadOnly_m1677012783 (); extern "C" void DateTimeFormatInfo_ReadOnly_m3611650447 (); extern "C" void DateTimeFormatInfo_Clone_m1570337592 (); extern "C" void DateTimeFormatInfo_GetFormat_m3554337457 (); extern "C" void DateTimeFormatInfo_GetAbbreviatedMonthName_m3331851106 (); extern "C" void DateTimeFormatInfo_GetEraName_m766646867 (); extern "C" void DateTimeFormatInfo_GetMonthName_m2729105407 (); extern "C" void DateTimeFormatInfo_get_RawAbbreviatedDayNames_m771068001 (); extern "C" void DateTimeFormatInfo_get_RawAbbreviatedMonthNames_m3687851005 (); extern "C" void DateTimeFormatInfo_get_RawDayNames_m3273728530 (); extern "C" void DateTimeFormatInfo_get_RawMonthNames_m3562933614 (); extern "C" void DateTimeFormatInfo_get_AMDesignator_m878927810 (); extern "C" void DateTimeFormatInfo_get_PMDesignator_m1885483027 (); extern "C" void DateTimeFormatInfo_get_DateSeparator_m2833276087 (); extern "C" void DateTimeFormatInfo_get_TimeSeparator_m3488620600 (); extern "C" void DateTimeFormatInfo_get_LongDatePattern_m3644703302 (); extern "C" void DateTimeFormatInfo_get_ShortDatePattern_m1215316584 (); extern "C" void DateTimeFormatInfo_get_ShortTimePattern_m1542255145 (); extern "C" void DateTimeFormatInfo_get_LongTimePattern_m3971641863 (); extern "C" void DateTimeFormatInfo_get_MonthDayPattern_m1446747604 (); extern "C" void DateTimeFormatInfo_get_YearMonthPattern_m2214456463 (); extern "C" void DateTimeFormatInfo_get_FullDateTimePattern_m1244884934 (); extern "C" void DateTimeFormatInfo_get_CurrentInfo_m2432806571 (); extern "C" void DateTimeFormatInfo_get_InvariantInfo_m1430381298 (); extern "C" void DateTimeFormatInfo_get_Calendar_m1179014650 (); extern "C" void DateTimeFormatInfo_set_Calendar_m2253923569 (); extern "C" void DateTimeFormatInfo_get_RFC1123Pattern_m3931364898 (); extern "C" void DateTimeFormatInfo_get_RoundtripPattern_m3512058911 (); extern "C" void DateTimeFormatInfo_get_SortableDateTimePattern_m1830034941 (); extern "C" void DateTimeFormatInfo_get_UniversalSortableDateTimePattern_m1771717908 (); extern "C" void DateTimeFormatInfo_GetAllDateTimePatternsInternal_m1326261985 (); extern "C" void DateTimeFormatInfo_FillAllDateTimePatterns_m1091470146 (); extern "C" void DateTimeFormatInfo_GetAllRawDateTimePatterns_m655159675 (); extern "C" void DateTimeFormatInfo_GetDayName_m186743586 (); extern "C" void DateTimeFormatInfo_GetAbbreviatedDayName_m3899742661 (); extern "C" void DateTimeFormatInfo_FillInvariantPatterns_m1116985894 (); extern "C" void DateTimeFormatInfo_PopulateCombinedList_m498527762 (); extern "C" void DaylightTime__ctor_m3056331743 (); extern "C" void DaylightTime_get_Start_m3918072881 (); extern "C" void DaylightTime_get_End_m1152979434 (); extern "C" void DaylightTime_get_Delta_m2790906475 (); extern "C" void GregorianCalendar__ctor_m2553712055 (); extern "C" void GregorianCalendar__ctor_m1867739610 (); extern "C" void GregorianCalendar_get_Eras_m1588180428 (); extern "C" void GregorianCalendar_set_CalendarType_m158688434 (); extern "C" void GregorianCalendar_GetDayOfMonth_m4091932953 (); extern "C" void GregorianCalendar_GetDayOfWeek_m3196705338 (); extern "C" void GregorianCalendar_GetEra_m1048758548 (); extern "C" void GregorianCalendar_GetMonth_m2408004904 (); extern "C" void GregorianCalendar_GetYear_m3821818313 (); extern "C" void NumberFormatInfo__ctor_m2794192754 (); extern "C" void NumberFormatInfo__ctor_m615782993 (); extern "C" void NumberFormatInfo__ctor_m2099481178 (); extern "C" void NumberFormatInfo__cctor_m177310867 (); extern "C" void NumberFormatInfo_get_CurrencyDecimalDigits_m3362896561 (); extern "C" void NumberFormatInfo_get_CurrencyDecimalSeparator_m3291912373 (); extern "C" void NumberFormatInfo_get_CurrencyGroupSeparator_m4103050439 (); extern "C" void NumberFormatInfo_get_RawCurrencyGroupSizes_m2648216277 (); extern "C" void NumberFormatInfo_get_CurrencyNegativePattern_m1592053109 (); extern "C" void NumberFormatInfo_get_CurrencyPositivePattern_m354581553 (); extern "C" void NumberFormatInfo_get_CurrencySymbol_m4206521017 (); extern "C" void NumberFormatInfo_get_CurrentInfo_m1150615631 (); extern "C" void NumberFormatInfo_get_InvariantInfo_m1900501910 (); extern "C" void NumberFormatInfo_get_NaNSymbol_m1550367333 (); extern "C" void NumberFormatInfo_get_NegativeInfinitySymbol_m3062678821 (); extern "C" void NumberFormatInfo_get_NegativeSign_m760927938 (); extern "C" void NumberFormatInfo_get_NumberDecimalDigits_m1540619001 (); extern "C" void NumberFormatInfo_get_NumberDecimalSeparator_m2024629677 (); extern "C" void NumberFormatInfo_get_NumberGroupSeparator_m2680504255 (); extern "C" void NumberFormatInfo_get_RawNumberGroupSizes_m358731277 (); extern "C" void NumberFormatInfo_get_NumberNegativePattern_m2729974717 (); extern "C" void NumberFormatInfo_set_NumberNegativePattern_m3232258430 (); extern "C" void NumberFormatInfo_get_PercentDecimalDigits_m1070008937 (); extern "C" void NumberFormatInfo_get_PercentDecimalSeparator_m3069173163 (); extern "C" void NumberFormatInfo_get_PercentGroupSeparator_m1671536445 (); extern "C" void NumberFormatInfo_get_RawPercentGroupSizes_m2144395753 (); extern "C" void NumberFormatInfo_get_PercentNegativePattern_m1445269293 (); extern "C" void NumberFormatInfo_get_PercentPositivePattern_m207797737 (); extern "C" void NumberFormatInfo_get_PercentSymbol_m4146154287 (); extern "C" void NumberFormatInfo_get_PerMilleSymbol_m1320523860 (); extern "C" void NumberFormatInfo_get_PositiveInfinitySymbol_m1200376553 (); extern "C" void NumberFormatInfo_get_PositiveSign_m1169031558 (); extern "C" void NumberFormatInfo_GetFormat_m219671647 (); extern "C" void NumberFormatInfo_Clone_m1999373130 (); extern "C" void NumberFormatInfo_GetInstance_m3822355626 (); extern "C" void SortKey__ctor_m1693041873 (); extern "C" void SortKey__ctor_m2331146324 (); extern "C" void SortKey_Compare_m3672073378 (); extern "C" void SortKey_get_OriginalString_m3208667701 (); extern "C" void SortKey_get_KeyData_m3767193105 (); extern "C" void SortKey_Equals_m477142412 (); extern "C" void SortKey_GetHashCode_m3388500464 (); extern "C" void SortKey_ToString_m358511190 (); extern "C" void TextInfo__ctor_m3402153128 (); extern "C" void TextInfo__ctor_m100037022 (); extern "C" void TextInfo_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m3742228713 (); extern "C" void TextInfo_get_ListSeparator_m3704127084 (); extern "C" void TextInfo_get_CultureName_m346063966 (); extern "C" void TextInfo_Equals_m2282464544 (); extern "C" void TextInfo_GetHashCode_m265055480 (); extern "C" void TextInfo_ToString_m2104789920 (); extern "C" void TextInfo_ToLower_m4134533294 (); extern "C" void TextInfo_ToUpper_m87931053 (); extern "C" void TextInfo_ToLower_m1323104334 (); extern "C" void TextInfo_Clone_m2796816861 (); extern "C" void Guid__ctor_m4231849149 (); extern "C" void Guid__ctor_m1439809125 (); extern "C" void Guid__cctor_m2766110369 (); extern "C" void Guid_CheckNull_m2831368219 (); extern "C" void Guid_CheckLength_m1965613350 (); extern "C" void Guid_CheckArray_m2333985879 (); extern "C" void Guid_Compare_m3677181275 (); extern "C" void Guid_CompareTo_m899467726 (); extern "C" void Guid_Equals_m1613304319 (); extern "C" void Guid_CompareTo_m4163940548 (); extern "C" void Guid_Equals_m2229489973 (); extern "C" void Guid_GetHashCode_m885349207 (); extern "C" void Guid_ToHex_m1518905113 (); extern "C" void Guid_NewGuid_m3560729310 (); extern "C" void Guid_AppendInt_m60474956 (); extern "C" void Guid_AppendShort_m2766674707 (); extern "C" void Guid_AppendByte_m1375613333 (); extern "C" void Guid_BaseToString_m2905357353 (); extern "C" void Guid_ToString_m2528531937 (); extern "C" void Guid_ToString_m2135662273 (); extern "C" void Guid_ToString_m3177248019 (); extern "C" void IndexOutOfRangeException__ctor_m707236112 (); extern "C" void IndexOutOfRangeException__ctor_m1621772274 (); extern "C" void IndexOutOfRangeException__ctor_m2445908561 (); extern "C" void Int16_System_IConvertible_ToBoolean_m669530817 (); extern "C" void Int16_System_IConvertible_ToByte_m3751510295 (); extern "C" void Int16_System_IConvertible_ToChar_m946778327 (); extern "C" void Int16_System_IConvertible_ToDateTime_m1660193143 (); extern "C" void Int16_System_IConvertible_ToDecimal_m86989203 (); extern "C" void Int16_System_IConvertible_ToDouble_m2343874615 (); extern "C" void Int16_System_IConvertible_ToInt16_m1181902809 (); extern "C" void Int16_System_IConvertible_ToInt32_m54125517 (); extern "C" void Int16_System_IConvertible_ToInt64_m2649973707 (); extern "C" void Int16_System_IConvertible_ToSByte_m2013479079 (); extern "C" void Int16_System_IConvertible_ToSingle_m2834549719 (); extern "C" void Int16_System_IConvertible_ToType_m1209633567 (); extern "C" void Int16_System_IConvertible_ToUInt16_m2309149559 (); extern "C" void Int16_System_IConvertible_ToUInt32_m3984552759 (); extern "C" void Int16_System_IConvertible_ToUInt64_m138194391 (); extern "C" void Int16_CompareTo_m2745013685 (); extern "C" void Int16_Equals_m3652534636 (); extern "C" void Int16_GetHashCode_m2943154640 (); extern "C" void Int16_CompareTo_m759386634 (); extern "C" void Int16_Equals_m373019507 (); extern "C" void Int16_Parse_m1211345080 (); extern "C" void Int16_Parse_m1815685098 (); extern "C" void Int16_Parse_m1284520629 (); extern "C" void Int16_TryParse_m1822994460 (); extern "C" void Int16_ToString_m1124031606 (); extern "C" void Int16_ToString_m3882509540 (); extern "C" void Int16_ToString_m2054337100 (); extern "C" void Int16_ToString_m416093480 (); extern "C" void Int32_System_IConvertible_ToBoolean_m1849098567 (); extern "C" void Int32_System_IConvertible_ToByte_m3739727953 (); extern "C" void Int32_System_IConvertible_ToChar_m934995985 (); extern "C" void Int32_System_IConvertible_ToDateTime_m3867055025 (); extern "C" void Int32_System_IConvertible_ToDecimal_m1266556953 (); extern "C" void Int32_System_IConvertible_ToDouble_m3905945841 (); extern "C" void Int32_System_IConvertible_ToInt16_m816650207 (); extern "C" void Int32_System_IConvertible_ToInt32_m3983840211 (); extern "C" void Int32_System_IConvertible_ToInt64_m2284721105 (); extern "C" void Int32_System_IConvertible_ToSByte_m1648226477 (); extern "C" void Int32_System_IConvertible_ToSingle_m101653649 (); extern "C" void Int32_System_IConvertible_ToType_m3850025817 (); extern "C" void Int32_System_IConvertible_ToUInt16_m3871220785 (); extern "C" void Int32_System_IConvertible_ToUInt32_m1251656689 (); extern "C" void Int32_System_IConvertible_ToUInt64_m1700265617 (); extern "C" void Int32_CompareTo_m2684051823 (); extern "C" void Int32_Equals_m4061110258 (); extern "C" void Int32_GetHashCode_m3396943446 (); extern "C" void Int32_CompareTo_m2558537238 (); extern "C" void Int32_Equals_m3849884467 (); extern "C" void Int32_ProcessTrailingWhitespace_m1289423315 (); extern "C" void Int32_Parse_m95497208 (); extern "C" void Int32_Parse_m981442986 (); extern "C" void Int32_CheckStyle_m1911119684 (); extern "C" void Int32_JumpOverWhite_m2053318471 (); extern "C" void Int32_FindSign_m549497136 (); extern "C" void Int32_FindCurrency_m1672259821 (); extern "C" void Int32_FindExponent_m2404586770 (); extern "C" void Int32_FindOther_m2390480221 (); extern "C" void Int32_ValidDigit_m2197524532 (); extern "C" void Int32_GetFormatException_m2892587262 (); extern "C" void Int32_Parse_m1713063353 (); extern "C" void Int32_Parse_m3837759498 (); extern "C" void Int32_Parse_m2659730549 (); extern "C" void Int32_TryParse_m695344220 (); extern "C" void Int32_TryParse_m2457543725 (); extern "C" void Int32_ToString_m1286526384 (); extern "C" void Int32_ToString_m881186462 (); extern "C" void Int32_ToString_m3853485906 (); extern "C" void Int32_ToString_m4261017954 (); extern "C" void Int32_GetTypeCode_m1231080401 (); extern "C" void Int64_System_IConvertible_ToBoolean_m3781149192 (); extern "C" void Int64_System_IConvertible_ToByte_m1202689840 (); extern "C" void Int64_System_IConvertible_ToChar_m2692925168 (); extern "C" void Int64_System_IConvertible_ToDateTime_m3631082256 (); extern "C" void Int64_System_IConvertible_ToDecimal_m3198607578 (); extern "C" void Int64_System_IConvertible_ToDouble_m1058776080 (); extern "C" void Int64_System_IConvertible_ToInt16_m3772847328 (); extern "C" void Int64_System_IConvertible_ToInt32_m2645070036 (); extern "C" void Int64_System_IConvertible_ToInt64_m945950930 (); extern "C" void Int64_System_IConvertible_ToSByte_m309456302 (); extern "C" void Int64_System_IConvertible_ToSingle_m1549451184 (); extern "C" void Int64_System_IConvertible_ToType_m3213378488 (); extern "C" void Int64_System_IConvertible_ToUInt16_m1024051024 (); extern "C" void Int64_System_IConvertible_ToUInt32_m2699454224 (); extern "C" void Int64_System_IConvertible_ToUInt64_m3148063152 (); extern "C" void Int64_CompareTo_m3843070222 (); extern "C" void Int64_Equals_m1990436019 (); extern "C" void Int64_GetHashCode_m2140836887 (); extern "C" void Int64_CompareTo_m1210454552 (); extern "C" void Int64_Equals_m1843428819 (); extern "C" void Int64_Parse_m3451396568 (); extern "C" void Int64_Parse_m1096035146 (); extern "C" void Int64_Parse_m3299867831 (); extern "C" void Int64_Parse_m2426231402 (); extern "C" void Int64_Parse_m913466901 (); extern "C" void Int64_TryParse_m2106581948 (); extern "C" void Int64_TryParse_m1199101227 (); extern "C" void Int64_ToString_m3478011791 (); extern "C" void Int64_ToString_m1593114429 (); extern "C" void Int64_ToString_m2505400275 (); extern "C" void Int64_ToString_m3523878849 (); extern "C" void IntPtr__ctor_m2136600871 (); extern "C" void IntPtr__ctor_m2136603816 (); extern "C" void IntPtr__ctor_m2509422495 (); extern "C" void IntPtr__ctor_m1930682647 (); extern "C" void IntPtr_System_Runtime_Serialization_ISerializable_GetObjectData_m1875995893 (); extern "C" void IntPtr_get_Size_m2848612188 (); extern "C" void IntPtr_Equals_m3488505417 (); extern "C" void IntPtr_GetHashCode_m783209249 (); extern "C" void IntPtr_ToInt64_m2695254659 (); extern "C" void IntPtr_ToPointer_m2676680906 (); extern "C" void IntPtr_ToString_m1212174359 (); extern "C" void IntPtr_ToString_m2416995403 (); extern "C" void IntPtr_op_Equality_m72843924 (); extern "C" void IntPtr_op_Inequality_m10053967 (); extern "C" void IntPtr_op_Explicit_m2174167756 (); extern "C" void IntPtr_op_Explicit_m2174170701 (); extern "C" void IntPtr_op_Explicit_m2546989380 (); extern "C" void IntPtr_op_Explicit_m1500672818 (); extern "C" void IntPtr_op_Explicit_m2322222010 (); extern "C" void InvalidCastException__ctor_m1930928124 (); extern "C" void InvalidCastException__ctor_m2000083078 (); extern "C" void InvalidCastException__ctor_m2881613629 (); extern "C" void InvalidOperationException__ctor_m355676978 (); extern "C" void InvalidOperationException__ctor_m1485483280 (); extern "C" void InvalidOperationException__ctor_m2119621158 (); extern "C" void InvalidOperationException__ctor_m3886056819 (); extern "C" void BinaryReader__ctor_m449904828 (); extern "C" void BinaryReader__ctor_m3922058197 (); extern "C" void BinaryReader_System_IDisposable_Dispose_m2749408410 (); extern "C" void BinaryReader_get_BaseStream_m2902401947 (); extern "C" void BinaryReader_Close_m52775227 (); extern "C" void BinaryReader_Dispose_m2135076121 (); extern "C" void BinaryReader_FillBuffer_m3729291059 (); extern "C" void BinaryReader_Read_m2496479153 (); extern "C" void BinaryReader_Read_m3280906008 (); extern "C" void BinaryReader_Read_m2981101450 (); extern "C" void BinaryReader_ReadCharBytes_m1651708170 (); extern "C" void BinaryReader_Read7BitEncodedInt_m1880666088 (); extern "C" void BinaryReader_ReadBoolean_m1888598835 (); extern "C" void BinaryReader_ReadByte_m3105954249 (); extern "C" void BinaryReader_ReadBytes_m3249452767 (); extern "C" void BinaryReader_ReadChar_m2116266889 (); extern "C" void BinaryReader_ReadDecimal_m2694462597 (); extern "C" void BinaryReader_ReadDouble_m2474061801 (); extern "C" void BinaryReader_ReadInt16_m3968581195 (); extern "C" void BinaryReader_ReadInt32_m1620214591 (); extern "C" void BinaryReader_ReadInt64_m2883282109 (); extern "C" void BinaryReader_ReadSByte_m963271833 (); extern "C" void BinaryReader_ReadString_m1372899305 (); extern "C" void BinaryReader_ReadSingle_m2118302857 (); extern "C" void BinaryReader_ReadUInt16_m3403093289 (); extern "C" void BinaryReader_ReadUInt32_m3616500457 (); extern "C" void BinaryReader_ReadUInt64_m4114149001 (); extern "C" void BinaryReader_CheckBuffer_m244572668 (); extern "C" void Directory_CreateDirectory_m677877474 (); extern "C" void Directory_CreateDirectoriesInternal_m1545778887 (); extern "C" void Directory_Exists_m4117375188 (); extern "C" void Directory_GetCurrentDirectory_m3403080603 (); extern "C" void Directory_GetFiles_m2573902858 (); extern "C" void Directory_GetFileSystemEntries_m3873165372 (); extern "C" void DirectoryInfo__ctor_m4029233824 (); extern "C" void DirectoryInfo__ctor_m2875622621 (); extern "C" void DirectoryInfo__ctor_m944219619 (); extern "C" void DirectoryInfo_Initialize_m287338546 (); extern "C" void DirectoryInfo_get_Exists_m1761829637 (); extern "C" void DirectoryInfo_get_Parent_m1129672180 (); extern "C" void DirectoryInfo_Create_m153588510 (); extern "C" void DirectoryInfo_ToString_m2661500299 (); extern "C" void DirectoryNotFoundException__ctor_m2906190070 (); extern "C" void DirectoryNotFoundException__ctor_m1548643788 (); extern "C" void DirectoryNotFoundException__ctor_m2829292855 (); extern "C" void EndOfStreamException__ctor_m2858794028 (); extern "C" void EndOfStreamException__ctor_m1615815533 (); extern "C" void File_Delete_m760984832 (); extern "C" void File_Exists_m1326262381 (); extern "C" void File_Open_m1918038371 (); extern "C" void File_OpenRead_m3104031109 (); extern "C" void File_OpenText_m396847893 (); extern "C" void FileNotFoundException__ctor_m1040614905 (); extern "C" void FileNotFoundException__ctor_m2788024869 (); extern "C" void FileNotFoundException__ctor_m3117006778 (); extern "C" void FileNotFoundException_get_Message_m1881278936 (); extern "C" void FileNotFoundException_GetObjectData_m697609495 (); extern "C" void FileNotFoundException_ToString_m1456954068 (); extern "C" void FileStream__ctor_m3655381520 (); extern "C" void FileStream__ctor_m3377505172 (); extern "C" void FileStream__ctor_m3657053030 (); extern "C" void FileStream__ctor_m3446221265 (); extern "C" void FileStream__ctor_m1468472351 (); extern "C" void FileStream_get_CanRead_m3703756390 (); extern "C" void FileStream_get_CanWrite_m3669951921 (); extern "C" void FileStream_get_CanSeek_m3732511432 (); extern "C" void FileStream_get_Length_m755999491 (); extern "C" void FileStream_get_Position_m887539078 (); extern "C" void FileStream_set_Position_m4070848815 (); extern "C" void FileStream_ReadByte_m3943171153 (); extern "C" void FileStream_WriteByte_m2721827737 (); extern "C" void FileStream_Read_m1809515168 (); extern "C" void FileStream_ReadInternal_m3757743203 (); extern "C" void FileStream_BeginRead_m4009855887 (); extern "C" void FileStream_EndRead_m1164505443 (); extern "C" void FileStream_Write_m445180607 (); extern "C" void FileStream_WriteInternal_m2324297090 (); extern "C" void FileStream_BeginWrite_m2223977498 (); extern "C" void FileStream_EndWrite_m3533551432 (); extern "C" void FileStream_Seek_m4271693569 (); extern "C" void FileStream_SetLength_m922718469 (); extern "C" void FileStream_Flush_m134843343 (); extern "C" void FileStream_Finalize_m223127701 (); extern "C" void FileStream_Dispose_m376280481 (); extern "C" void FileStream_ReadSegment_m570180669 (); extern "C" void FileStream_WriteSegment_m2559616418 (); extern "C" void FileStream_FlushBuffer_m3897535046 (); extern "C" void FileStream_FlushBuffer_m3669139887 (); extern "C" void FileStream_FlushBufferIfDirty_m1568636904 (); extern "C" void FileStream_RefillBuffer_m3559191949 (); extern "C" void FileStream_ReadData_m410796132 (); extern "C" void FileStream_InitBuffer_m157631941 (); extern "C" void FileStream_GetSecureFileName_m778676102 (); extern "C" void FileStream_GetSecureFileName_m1473113911 (); extern "C" void ReadDelegate__ctor_m383609331 (); extern "C" void ReadDelegate_Invoke_m3715810392 (); extern "C" void ReadDelegate_BeginInvoke_m3231845723 (); extern "C" void ReadDelegate_EndInvoke_m1231787239 (); extern "C" void WriteDelegate__ctor_m1440879850 (); extern "C" void WriteDelegate_Invoke_m115242405 (); extern "C" void WriteDelegate_BeginInvoke_m2318511164 (); extern "C" void WriteDelegate_EndInvoke_m1938328570 (); extern "C" void FileStreamAsyncResult__ctor_m3962676300 (); extern "C" void FileStreamAsyncResult_CBWrapper_m1193154321 (); extern "C" void FileStreamAsyncResult_get_AsyncState_m840004493 (); extern "C" void FileStreamAsyncResult_get_AsyncWaitHandle_m4264276527 (); extern "C" void FileStreamAsyncResult_get_IsCompleted_m3246614232 (); extern "C" void FileSystemInfo__ctor_m2002032720 (); extern "C" void FileSystemInfo__ctor_m3151315345 (); extern "C" void FileSystemInfo_GetObjectData_m4060637166 (); extern "C" void FileSystemInfo_get_FullName_m2636706970 (); extern "C" void FileSystemInfo_Refresh_m2264948736 (); extern "C" void FileSystemInfo_InternalRefresh_m567607052 (); extern "C" void FileSystemInfo_CheckPath_m1470264807 (); extern "C" void IOException__ctor_m463615156 (); extern "C" void IOException__ctor_m249933518 (); extern "C" void IOException__ctor_m1602473000 (); extern "C" void IOException__ctor_m1441857525 (); extern "C" void IOException__ctor_m2078305481 (); extern "C" void IsolatedStorageException__ctor_m3114538544 (); extern "C" void IsolatedStorageException__ctor_m1344739026 (); extern "C" void IsolatedStorageException__ctor_m734015345 (); extern "C" void MemoryStream__ctor_m3603177736 (); extern "C" void MemoryStream__ctor_m1061194329 (); extern "C" void MemoryStream__ctor_m1231145921 (); extern "C" void MemoryStream_InternalConstructor_m661185350 (); extern "C" void MemoryStream_CheckIfClosedThrowDisposed_m1053557526 (); extern "C" void MemoryStream_get_CanRead_m3791450881 (); extern "C" void MemoryStream_get_CanSeek_m3820205923 (); extern "C" void MemoryStream_get_CanWrite_m2093513846 (); extern "C" void MemoryStream_set_Capacity_m760203076 (); extern "C" void MemoryStream_get_Length_m588315720 (); extern "C" void MemoryStream_get_Position_m2952192395 (); extern "C" void MemoryStream_set_Position_m2686019828 (); extern "C" void MemoryStream_Dispose_m1459815420 (); extern "C" void MemoryStream_Flush_m3687125034 (); extern "C" void MemoryStream_Read_m3200606651 (); extern "C" void MemoryStream_ReadByte_m2432485142 (); extern "C" void MemoryStream_Seek_m3823297180 (); extern "C" void MemoryStream_CalculateNewCapacity_m358068701 (); extern "C" void MemoryStream_Expand_m292277479 (); extern "C" void MemoryStream_SetLength_m2006253408 (); extern "C" void MemoryStream_ToArray_m3844655770 (); extern "C" void MemoryStream_Write_m1111852548 (); extern "C" void MemoryStream_WriteByte_m3865159134 (); extern "C" void MonoIO__cctor_m3474878605 (); extern "C" void MonoIO_GetException_m1380825636 (); extern "C" void MonoIO_GetException_m973090016 (); extern "C" void MonoIO_CreateDirectory_m510494529 (); extern "C" void MonoIO_GetFileSystemEntries_m809643788 (); extern "C" void MonoIO_GetCurrentDirectory_m2958295317 (); extern "C" void MonoIO_DeleteFile_m991567969 (); extern "C" void MonoIO_GetFileAttributes_m3774473836 (); extern "C" void MonoIO_GetFileType_m2747902883 (); extern "C" void MonoIO_ExistsFile_m4276986322 (); extern "C" void MonoIO_ExistsDirectory_m2166720481 (); extern "C" void MonoIO_GetFileStat_m3422900554 (); extern "C" void MonoIO_Open_m1906428851 (); extern "C" void MonoIO_Close_m3125785430 (); extern "C" void MonoIO_Read_m1938045749 (); extern "C" void MonoIO_Write_m4276992032 (); extern "C" void MonoIO_Seek_m1717806132 (); extern "C" void MonoIO_GetLength_m235623807 (); extern "C" void MonoIO_SetLength_m3949156942 (); extern "C" void MonoIO_get_ConsoleOutput_m238060792 (); extern "C" void MonoIO_get_ConsoleInput_m851882069 (); extern "C" void MonoIO_get_ConsoleError_m1713017619 (); extern "C" void MonoIO_get_VolumeSeparatorChar_m497168440 (); extern "C" void MonoIO_get_DirectorySeparatorChar_m3870760857 (); extern "C" void MonoIO_get_AltDirectorySeparatorChar_m2585277134 (); extern "C" void MonoIO_get_PathSeparator_m608723543 (); extern "C" void NullStream__ctor_m3526317378 (); extern "C" void NullStream_get_CanRead_m2080377659 (); extern "C" void NullStream_get_CanSeek_m2109132701 (); extern "C" void NullStream_get_CanWrite_m589851516 (); extern "C" void NullStream_get_Length_m3751673742 (); extern "C" void NullStream_get_Position_m2102405969 (); extern "C" void NullStream_set_Position_m3104065146 (); extern "C" void NullStream_Flush_m3610264676 (); extern "C" void NullStream_Read_m1573364597 (); extern "C" void NullStream_ReadByte_m1443497884 (); extern "C" void NullStream_Seek_m57934742 (); extern "C" void NullStream_SetLength_m76840858 (); extern "C" void NullStream_Write_m1714447498 (); extern "C" void NullStream_WriteByte_m62142052 (); extern "C" void Path__cctor_m952127721 (); extern "C" void Path_Combine_m4122812896 (); extern "C" void Path_CleanPath_m233704309 (); extern "C" void Path_GetDirectoryName_m1772680861 (); extern "C" void Path_GetFileName_m26786182 (); extern "C" void Path_GetFullPath_m435799225 (); extern "C" void Path_WindowsDriveAdjustment_m578050859 (); extern "C" void Path_InsecureGetFullPath_m1023917237 (); extern "C" void Path_IsDsc_m2558771155 (); extern "C" void Path_GetPathRoot_m2659954950 (); extern "C" void Path_IsPathRooted_m3347626992 (); extern "C" void Path_GetInvalidPathChars_m737233085 (); extern "C" void Path_GetServerAndShare_m2796958082 (); extern "C" void Path_SameRoot_m1004668564 (); extern "C" void Path_CanonicalizePath_m3829459706 (); extern "C" void PathTooLongException__ctor_m1118374853 (); extern "C" void PathTooLongException__ctor_m1169070941 (); extern "C" void PathTooLongException__ctor_m1393064838 (); extern "C" void SearchPattern__cctor_m828731416 (); extern "C" void Stream__ctor_m1433294025 (); extern "C" void Stream__cctor_m1000345604 (); extern "C" void Stream_Dispose_m2904306374 (); extern "C" void Stream_Dispose_m3908539837 (); extern "C" void Stream_Close_m3144153567 (); extern "C" void Stream_ReadByte_m3456529589 (); extern "C" void Stream_WriteByte_m480466941 (); extern "C" void Stream_BeginRead_m2456608939 (); extern "C" void Stream_BeginWrite_m1317962366 (); extern "C" void Stream_EndRead_m2251919559 (); extern "C" void Stream_EndWrite_m3738579556 (); extern "C" void StreamAsyncResult__ctor_m3640305936 (); extern "C" void StreamAsyncResult_SetComplete_m1144351501 (); extern "C" void StreamAsyncResult_SetComplete_m345427690 (); extern "C" void StreamAsyncResult_get_AsyncState_m3529626409 (); extern "C" void StreamAsyncResult_get_AsyncWaitHandle_m452819475 (); extern "C" void StreamAsyncResult_get_IsCompleted_m1862707516 (); extern "C" void StreamAsyncResult_get_Exception_m58775747 (); extern "C" void StreamAsyncResult_get_NBytes_m3491482122 (); extern "C" void StreamAsyncResult_get_Done_m3820504329 (); extern "C" void StreamAsyncResult_set_Done_m603695862 (); extern "C" void StreamReader__ctor_m3256554182 (); extern "C" void StreamReader__ctor_m846704084 (); extern "C" void StreamReader__ctor_m4212687950 (); extern "C" void StreamReader__ctor_m3789405692 (); extern "C" void StreamReader__ctor_m3796369807 (); extern "C" void StreamReader__cctor_m1686835623 (); extern "C" void StreamReader_Initialize_m2919850118 (); extern "C" void StreamReader_Dispose_m2657794490 (); extern "C" void StreamReader_DoChecks_m2189019393 (); extern "C" void StreamReader_ReadBuffer_m2552623632 (); extern "C" void StreamReader_Peek_m3983356789 (); extern "C" void StreamReader_Read_m4040489200 (); extern "C" void StreamReader_Read_m2134404459 (); extern "C" void StreamReader_FindNextEOL_m809222814 (); extern "C" void StreamReader_ReadLine_m887391883 (); extern "C" void StreamReader_ReadToEnd_m383675787 (); extern "C" void NullStreamReader__ctor_m3675090663 (); extern "C" void NullStreamReader_Peek_m2515952764 (); extern "C" void NullStreamReader_Read_m2573085175 (); extern "C" void NullStreamReader_Read_m3682316932 (); extern "C" void NullStreamReader_ReadLine_m1363373796 (); extern "C" void NullStreamReader_ReadToEnd_m2254213202 (); extern "C" void StreamWriter__ctor_m195691908 (); extern "C" void StreamWriter__ctor_m1929719251 (); extern "C" void StreamWriter__cctor_m1403486551 (); extern "C" void StreamWriter_Initialize_m9216430 (); extern "C" void StreamWriter_set_AutoFlush_m4100472995 (); extern "C" void StreamWriter_Dispose_m1732965386 (); extern "C" void StreamWriter_Flush_m4024097848 (); extern "C" void StreamWriter_FlushBytes_m2694185397 (); extern "C" void StreamWriter_Decode_m2860657820 (); extern "C" void StreamWriter_Write_m4266049192 (); extern "C" void StreamWriter_LowLevelWrite_m551013976 (); extern "C" void StreamWriter_LowLevelWrite_m3969440575 (); extern "C" void StreamWriter_Write_m1399991978 (); extern "C" void StreamWriter_Write_m1067578184 (); extern "C" void StreamWriter_Write_m2741735311 (); extern "C" void StreamWriter_Close_m1356042796 (); extern "C" void StreamWriter_Finalize_m3966309260 (); extern "C" void StringReader__ctor_m1181104909 (); extern "C" void StringReader_Dispose_m3317487369 (); extern "C" void StringReader_Peek_m2304275014 (); extern "C" void StringReader_Read_m2361407425 (); extern "C" void StringReader_Read_m11867514 (); extern "C" void StringReader_ReadLine_m1484911836 (); extern "C" void StringReader_ReadToEnd_m1726925146 (); extern "C" void StringReader_CheckObjectDisposedException_m2098659794 (); extern "C" void SynchronizedReader__ctor_m2400239097 (); extern "C" void SynchronizedReader_Peek_m2840653193 (); extern "C" void SynchronizedReader_ReadLine_m1313224031 (); extern "C" void SynchronizedReader_ReadToEnd_m699570487 (); extern "C" void SynchronizedReader_Read_m2897785604 (); extern "C" void SynchronizedReader_Read_m2303608023 (); extern "C" void SynchronizedWriter__ctor_m3325637572 (); extern "C" void SynchronizedWriter_Close_m69203352 (); extern "C" void SynchronizedWriter_Flush_m2737258404 (); extern "C" void SynchronizedWriter_Write_m3398152126 (); extern "C" void SynchronizedWriter_Write_m1449099100 (); extern "C" void SynchronizedWriter_Write_m3123256227 (); extern "C" void SynchronizedWriter_Write_m3259144636 (); extern "C" void SynchronizedWriter_WriteLine_m3967840723 (); extern "C" void SynchronizedWriter_WriteLine_m1236139023 (); extern "C" void TextReader__ctor_m3562505977 (); extern "C" void TextReader__cctor_m2581406676 (); extern "C" void TextReader_Dispose_m377592054 (); extern "C" void TextReader_Dispose_m3273025517 (); extern "C" void TextReader_Peek_m2382758882 (); extern "C" void TextReader_Read_m2439891293 (); extern "C" void TextReader_Read_m1326787678 (); extern "C" void TextReader_ReadLine_m4100402744 (); extern "C" void TextReader_ReadToEnd_m1202764670 (); extern "C" void TextReader_Synchronized_m4205261080 (); extern "C" void NullTextReader__ctor_m195081927 (); extern "C" void NullTextReader_ReadLine_m2540945796 (); extern "C" void TextWriter__ctor_m4246102345 (); extern "C" void TextWriter__cctor_m2298057604 (); extern "C" void TextWriter_Close_m1661994591 (); extern "C" void TextWriter_Dispose_m2348196413 (); extern "C" void TextWriter_Dispose_m183705414 (); extern "C" void TextWriter_Flush_m35082347 (); extern "C" void TextWriter_Synchronized_m2249444629 (); extern "C" void TextWriter_Write_m3406376087 (); extern "C" void TextWriter_Write_m762391029 (); extern "C" void TextWriter_Write_m2436548156 (); extern "C" void TextWriter_Write_m212256533 (); extern "C" void TextWriter_WriteLine_m1071433498 (); extern "C" void TextWriter_WriteLine_m2487661096 (); extern "C" void NullTextWriter__ctor_m1818676423 (); extern "C" void NullTextWriter_Write_m1650030462 (); extern "C" void NullTextWriter_Write_m3007792729 (); extern "C" void NullTextWriter_Write_m1740671447 (); extern "C" void UnexceptionalStreamReader__ctor_m3602034817 (); extern "C" void UnexceptionalStreamReader__cctor_m2274125524 (); extern "C" void UnexceptionalStreamReader_Peek_m3083327274 (); extern "C" void UnexceptionalStreamReader_Read_m3140459685 (); extern "C" void UnexceptionalStreamReader_Read_m3425155094 (); extern "C" void UnexceptionalStreamReader_CheckEOL_m2343953594 (); extern "C" void UnexceptionalStreamReader_ReadLine_m680275730 (); extern "C" void UnexceptionalStreamReader_ReadToEnd_m2553009636 (); extern "C" void UnexceptionalStreamWriter__ctor_m2951022641 (); extern "C" void UnexceptionalStreamWriter_Flush_m3488853355 (); extern "C" void UnexceptionalStreamWriter_Write_m2144061973 (); extern "C" void UnexceptionalStreamWriter_Write_m2227220375 (); extern "C" void UnexceptionalStreamWriter_Write_m1465117941 (); extern "C" void UnexceptionalStreamWriter_Write_m3139275068 (); extern "C" void UnmanagedMemoryStream_get_CanRead_m2499719859 (); extern "C" void UnmanagedMemoryStream_get_CanSeek_m2528474901 (); extern "C" void UnmanagedMemoryStream_get_CanWrite_m704557828 (); extern "C" void UnmanagedMemoryStream_get_Length_m1926078080 (); extern "C" void UnmanagedMemoryStream_get_Position_m51631555 (); extern "C" void UnmanagedMemoryStream_set_Position_m415579462 (); extern "C" void UnmanagedMemoryStream_Read_m3212615137 (); extern "C" void UnmanagedMemoryStream_ReadByte_m4282012848 (); extern "C" void UnmanagedMemoryStream_Seek_m2466946404 (); extern "C" void UnmanagedMemoryStream_SetLength_m4229422158 (); extern "C" void UnmanagedMemoryStream_Flush_m2387314968 (); extern "C" void UnmanagedMemoryStream_Dispose_m3682984170 (); extern "C" void UnmanagedMemoryStream_Write_m1807613270 (); extern "C" void UnmanagedMemoryStream_WriteByte_m750285616 (); extern "C" void LocalDataStoreSlot__ctor_m2687297698 (); extern "C" void LocalDataStoreSlot__cctor_m1991429794 (); extern "C" void LocalDataStoreSlot_Finalize_m2044082711 (); extern "C" void MarshalByRefObject__ctor_m2306543480 (); extern "C" void MarshalByRefObject_get_ObjectIdentity_m426029982 (); extern "C" void Math_Abs_m4017239106 (); extern "C" void Math_Abs_m2633004394 (); extern "C" void Math_Abs_m651703468 (); extern "C" void Math_Ceiling_m3914511415 (); extern "C" void Math_Floor_m1625025992 (); extern "C" void Math_Log_m2309558476 (); extern "C" void Math_Max_m1309380475 (); extern "C" void Math_Min_m811624909 (); extern "C" void Math_Round_m2659396224 (); extern "C" void Math_Round_m2587388934 (); extern "C" void Math_Sin_m1832281148 (); extern "C" void Math_Cos_m1877789613 (); extern "C" void Math_Log_m3325515856 (); extern "C" void Math_Pow_m3040135736 (); extern "C" void Math_Sqrt_m1131084014 (); extern "C" void MemberAccessException__ctor_m1986335264 (); extern "C" void MemberAccessException__ctor_m2147680482 (); extern "C" void MemberAccessException__ctor_m2631492449 (); extern "C" void MethodAccessException__ctor_m1004254055 (); extern "C" void MethodAccessException__ctor_m4244843560 (); extern "C" void MissingFieldException__ctor_m1256695606 (); extern "C" void MissingFieldException__ctor_m237625228 (); extern "C" void MissingFieldException__ctor_m3823922039 (); extern "C" void MissingFieldException_get_Message_m1733981935 (); extern "C" void MissingMemberException__ctor_m4083184326 (); extern "C" void MissingMemberException__ctor_m3562298876 (); extern "C" void MissingMemberException__ctor_m4213358343 (); extern "C" void MissingMemberException__ctor_m3949157688 (); extern "C" void MissingMemberException_GetObjectData_m1444155236 (); extern "C" void MissingMemberException_get_Message_m388478373 (); extern "C" void MissingMethodException__ctor_m3114227021 (); extern "C" void MissingMethodException__ctor_m2328497877 (); extern "C" void MissingMethodException__ctor_m2372430094 (); extern "C" void MissingMethodException__ctor_m3038912081 (); extern "C" void MissingMethodException_get_Message_m3701364460 (); extern "C" void MonoAsyncCall__ctor_m2841366746 (); extern "C" void MonoCustomAttrs__cctor_m3384027722 (); extern "C" void MonoCustomAttrs_IsUserCattrProvider_m151684613 (); extern "C" void MonoCustomAttrs_GetCustomAttributesInternal_m349185144 (); extern "C" void MonoCustomAttrs_GetPseudoCustomAttributes_m3877754150 (); extern "C" void MonoCustomAttrs_GetCustomAttributesBase_m4161804793 (); extern "C" void MonoCustomAttrs_GetCustomAttribute_m1376894045 (); extern "C" void MonoCustomAttrs_GetCustomAttributes_m3020328693 (); extern "C" void MonoCustomAttrs_GetCustomAttributes_m3210789640 (); extern "C" void MonoCustomAttrs_GetCustomAttributesDataInternal_m1332961551 (); extern "C" void MonoCustomAttrs_GetCustomAttributesData_m954311775 (); extern "C" void MonoCustomAttrs_IsDefined_m1052740451 (); extern "C" void MonoCustomAttrs_IsDefinedInternal_m386120631 (); extern "C" void MonoCustomAttrs_GetBasePropertyDefinition_m1612293317 (); extern "C" void MonoCustomAttrs_GetBase_m1327587805 (); extern "C" void MonoCustomAttrs_RetrieveAttributeUsage_m2136597604 (); extern "C" void AttributeInfo__ctor_m2873601639 (); extern "C" void AttributeInfo_get_Usage_m2602974155 (); extern "C" void AttributeInfo_get_InheritanceLevel_m2614791067 (); extern "C" void MonoDocumentationNoteAttribute__ctor_m723067872 (); extern "C" void MonoEnumInfo__ctor_m427288990 (); extern "C" void MonoEnumInfo__cctor_m2878678058 (); extern "C" void MonoEnumInfo_get_enum_info_m1623052572 (); extern "C" void MonoEnumInfo_get_Cache_m295946653 (); extern "C" void MonoEnumInfo_GetInfo_m2492061277 (); extern "C" void IntComparer__ctor_m2760474870 (); extern "C" void IntComparer_Compare_m2812368429 (); extern "C" void IntComparer_Compare_m1003464369 (); extern "C" void LongComparer__ctor_m484720523 (); extern "C" void LongComparer_Compare_m1693908336 (); extern "C" void LongComparer_Compare_m2722675796 (); extern "C" void SByteComparer__ctor_m3350151818 (); extern "C" void SByteComparer_Compare_m902472729 (); extern "C" void SByteComparer_Compare_m1473836669 (); extern "C" void ShortComparer__ctor_m2202587209 (); extern "C" void ShortComparer_Compare_m2284602042 (); extern "C" void ShortComparer_Compare_m2275424446 (); extern "C" void MonoTODOAttribute__ctor_m3523127742 (); extern "C" void MonoTODOAttribute__ctor_m3185129988 (); extern "C" void MonoTouchAOTHelper__cctor_m2104929136 (); extern "C" void MonoType_get_attributes_m3858763267 (); extern "C" void MonoType_GetDefaultConstructor_m209771828 (); extern "C" void MonoType_GetAttributeFlagsImpl_m57896493 (); extern "C" void MonoType_GetConstructorImpl_m2165817190 (); extern "C" void MonoType_GetConstructors_internal_m3333761497 (); extern "C" void MonoType_GetConstructors_m2914995340 (); extern "C" void MonoType_InternalGetEvent_m3590335900 (); extern "C" void MonoType_GetEvent_m2496571007 (); extern "C" void MonoType_GetField_m599214911 (); extern "C" void MonoType_GetFields_internal_m537795545 (); extern "C" void MonoType_GetFields_m1853037196 (); extern "C" void MonoType_GetInterfaces_m3250739582 (); extern "C" void MonoType_GetMethodsByName_m1576473598 (); extern "C" void MonoType_GetMethods_m254951756 (); extern "C" void MonoType_GetMethodImpl_m2617796334 (); extern "C" void MonoType_GetPropertiesByName_m3972083631 (); extern "C" void MonoType_GetPropertyImpl_m2349541479 (); extern "C" void MonoType_HasElementTypeImpl_m3651013126 (); extern "C" void MonoType_IsArrayImpl_m2714061063 (); extern "C" void MonoType_IsByRefImpl_m244089130 (); extern "C" void MonoType_IsPointerImpl_m2437726891 (); extern "C" void MonoType_IsPrimitiveImpl_m472277653 (); extern "C" void MonoType_IsSubclassOf_m2439875510 (); extern "C" void MonoType_InvokeMember_m397738839 (); extern "C" void MonoType_GetElementType_m3405434354 (); extern "C" void MonoType_get_UnderlyingSystemType_m833788001 (); extern "C" void MonoType_get_Assembly_m1158787034 (); extern "C" void MonoType_get_AssemblyQualifiedName_m3709742257 (); extern "C" void MonoType_getFullName_m2683490973 (); extern "C" void MonoType_get_BaseType_m3982183046 (); extern "C" void MonoType_get_FullName_m1705090284 (); extern "C" void MonoType_IsDefined_m574655067 (); extern "C" void MonoType_GetCustomAttributes_m3219692190 (); extern "C" void MonoType_GetCustomAttributes_m3981030795 (); extern "C" void MonoType_get_MemberType_m4102227249 (); extern "C" void MonoType_get_Name_m413070845 (); extern "C" void MonoType_get_Namespace_m1531779339 (); extern "C" void MonoType_get_Module_m3779621798 (); extern "C" void MonoType_get_DeclaringType_m3073537512 (); extern "C" void MonoType_get_ReflectedType_m2303984285 (); extern "C" void MonoType_get_TypeHandle_m2428845255 (); extern "C" void MonoType_GetObjectData_m2425175414 (); extern "C" void MonoType_ToString_m4069763221 (); extern "C" void MonoType_GetGenericArguments_m3677840611 (); extern "C" void MonoType_get_ContainsGenericParameters_m2126365649 (); extern "C" void MonoType_get_IsGenericParameter_m1374410255 (); extern "C" void MonoType_GetGenericTypeDefinition_m467429952 (); extern "C" void MonoType_CheckMethodSecurity_m1994761406 (); extern "C" void MonoType_ReorderParamArrayArguments_m3544296603 (); extern "C" void MonoTypeInfo__ctor_m353652298 (); extern "C" void MulticastDelegate_GetObjectData_m2959136754 (); extern "C" void MulticastDelegate_Equals_m1775662595 (); extern "C" void MulticastDelegate_GetHashCode_m932113511 (); extern "C" void MulticastDelegate_GetInvocationList_m2228922313 (); extern "C" void MulticastDelegate_CombineImpl_m3233588460 (); extern "C" void MulticastDelegate_BaseEquals_m3635930564 (); extern "C" void MulticastDelegate_KPM_m466375933 (); extern "C" void MulticastDelegate_RemoveImpl_m112886219 (); extern "C" void MulticastNotSupportedException__ctor_m686350745 (); extern "C" void MulticastNotSupportedException__ctor_m1379655177 (); extern "C" void MulticastNotSupportedException__ctor_m3265751898 (); extern "C" void NonSerializedAttribute__ctor_m3429108074 (); extern "C" void NotImplementedException__ctor_m2063223793 (); extern "C" void NotImplementedException__ctor_m495190705 (); extern "C" void NotImplementedException__ctor_m544055730 (); extern "C" void NotSupportedException__ctor_m149930845 (); extern "C" void NotSupportedException__ctor_m133757637 (); extern "C" void NotSupportedException__ctor_m1093508894 (); extern "C" void NullReferenceException__ctor_m622546858 (); extern "C" void NullReferenceException__ctor_m2208732056 (); extern "C" void NullReferenceException__ctor_m2985950699 (); extern "C" void NumberFormatter__ctor_m2111196867 (); extern "C" void NumberFormatter__cctor_m1125188925 (); extern "C" void NumberFormatter_GetFormatterTables_m1004885150 (); extern "C" void NumberFormatter_GetTenPowerOf_m3223700535 (); extern "C" void NumberFormatter_InitDecHexDigits_m2164786199 (); extern "C" void NumberFormatter_InitDecHexDigits_m2164789144 (); extern "C" void NumberFormatter_InitDecHexDigits_m3289945484 (); extern "C" void NumberFormatter_FastToDecHex_m84047568 (); extern "C" void NumberFormatter_ToDecHex_m2775434836 (); extern "C" void NumberFormatter_FastDecHexLen_m3326717411 (); extern "C" void NumberFormatter_DecHexLen_m1305612716 (); extern "C" void NumberFormatter_DecHexLen_m1385571854 (); extern "C" void NumberFormatter_ScaleOrder_m2668614822 (); extern "C" void NumberFormatter_InitialFloatingPrecision_m1576619940 (); extern "C" void NumberFormatter_ParsePrecision_m1776481127 (); extern "C" void NumberFormatter_Init_m796042654 (); extern "C" void NumberFormatter_InitHex_m673436066 (); extern "C" void NumberFormatter_Init_m1761120638 (); extern "C" void NumberFormatter_Init_m3900055237 (); extern "C" void NumberFormatter_Init_m1120342906 (); extern "C" void NumberFormatter_Init_m1368030931 (); extern "C" void NumberFormatter_Init_m3795683709 (); extern "C" void NumberFormatter_Init_m2948152342 (); extern "C" void NumberFormatter_ResetCharBuf_m213960083 (); extern "C" void NumberFormatter_Resize_m3447745305 (); extern "C" void NumberFormatter_Append_m4118762351 (); extern "C" void NumberFormatter_Append_m4153218504 (); extern "C" void NumberFormatter_Append_m4139947796 (); extern "C" void NumberFormatter_GetNumberFormatInstance_m958950318 (); extern "C" void NumberFormatter_set_CurrentCulture_m2767449398 (); extern "C" void NumberFormatter_get_IntegerDigits_m1728967757 (); extern "C" void NumberFormatter_get_DecimalDigits_m799523680 (); extern "C" void NumberFormatter_get_IsFloatingSource_m3965742250 (); extern "C" void NumberFormatter_get_IsZero_m1430003665 (); extern "C" void NumberFormatter_get_IsZeroInteger_m1771268559 (); extern "C" void NumberFormatter_RoundPos_m2974247947 (); extern "C" void NumberFormatter_RoundDecimal_m3262983754 (); extern "C" void NumberFormatter_RoundBits_m1678805201 (); extern "C" void NumberFormatter_RemoveTrailingZeros_m3741390329 (); extern "C" void NumberFormatter_AddOneToDecHex_m3773408269 (); extern "C" void NumberFormatter_AddOneToDecHex_m2213293842 (); extern "C" void NumberFormatter_CountTrailingZeros_m208778992 (); extern "C" void NumberFormatter_CountTrailingZeros_m3607920650 (); extern "C" void NumberFormatter_GetInstance_m1116912880 (); extern "C" void NumberFormatter_Release_m2318208149 (); extern "C" void NumberFormatter_SetThreadCurrentCulture_m27395807 (); extern "C" void NumberFormatter_NumberToString_m1767037120 (); extern "C" void NumberFormatter_NumberToString_m3732580729 (); extern "C" void NumberFormatter_NumberToString_m575932624 (); extern "C" void NumberFormatter_NumberToString_m1355610105 (); extern "C" void NumberFormatter_NumberToString_m356875018 (); extern "C" void NumberFormatter_NumberToString_m1136552499 (); extern "C" void NumberFormatter_NumberToString_m590483049 (); extern "C" void NumberFormatter_NumberToString_m1370160530 (); extern "C" void NumberFormatter_NumberToString_m332247865 (); extern "C" void NumberFormatter_NumberToString_m2024857538 (); extern "C" void NumberFormatter_NumberToString_m1355083638 (); extern "C" void NumberFormatter_NumberToString_m3444731974 (); extern "C" void NumberFormatter_NumberToString_m266329463 (); extern "C" void NumberFormatter_NumberToString_m3678340005 (); extern "C" void NumberFormatter_NumberToString_m499937494 (); extern "C" void NumberFormatter_NumberToString_m3420104821 (); extern "C" void NumberFormatter_NumberToString_m817747198 (); extern "C" void NumberFormatter_FastIntegerToString_m2015857610 (); extern "C" void NumberFormatter_IntegerToString_m2916421959 (); extern "C" void NumberFormatter_NumberToString_m913039240 (); extern "C" void NumberFormatter_FormatCurrency_m852663042 (); extern "C" void NumberFormatter_FormatDecimal_m1996938888 (); extern "C" void NumberFormatter_FormatHexadecimal_m386310032 (); extern "C" void NumberFormatter_FormatFixedPoint_m336450221 (); extern "C" void NumberFormatter_FormatRoundtrip_m3567733037 (); extern "C" void NumberFormatter_FormatRoundtrip_m850933974 (); extern "C" void NumberFormatter_FormatGeneral_m273745567 (); extern "C" void NumberFormatter_FormatNumber_m2900015482 (); extern "C" void NumberFormatter_FormatPercent_m3733675388 (); extern "C" void NumberFormatter_FormatExponential_m3503259900 (); extern "C" void NumberFormatter_FormatExponential_m1641420123 (); extern "C" void NumberFormatter_FormatCustom_m619514485 (); extern "C" void NumberFormatter_ZeroTrimEnd_m858705010 (); extern "C" void NumberFormatter_IsZeroOnly_m898090390 (); extern "C" void NumberFormatter_AppendNonNegativeNumber_m3168612876 (); extern "C" void NumberFormatter_AppendIntegerString_m666371448 (); extern "C" void NumberFormatter_AppendIntegerString_m2478096468 (); extern "C" void NumberFormatter_AppendDecimalString_m1754328651 (); extern "C" void NumberFormatter_AppendDecimalString_m3838413543 (); extern "C" void NumberFormatter_AppendIntegerStringWithGroupSeparator_m4148804442 (); extern "C" void NumberFormatter_AppendExponent_m163214555 (); extern "C" void NumberFormatter_AppendOneDigit_m4047621190 (); extern "C" void NumberFormatter_FastAppendDigits_m4132924828 (); extern "C" void NumberFormatter_AppendDigits_m3761533234 (); extern "C" void NumberFormatter_AppendDigits_m860372182 (); extern "C" void NumberFormatter_Multiply10_m4265073128 (); extern "C" void NumberFormatter_Divide10_m1709051645 (); extern "C" void NumberFormatter_GetClone_m2531844292 (); extern "C" void CustomInfo__ctor_m1055759592 (); extern "C" void CustomInfo_GetActiveSection_m3861978683 (); extern "C" void CustomInfo_Parse_m2971752052 (); extern "C" void CustomInfo_Format_m1427734085 (); extern "C" void Object__ctor_m1772956182 (); extern "C" void Object_Equals_m2558036873 (); extern "C" void Object_Equals_m3175838359 (); extern "C" void Object_Finalize_m3027285644 (); extern "C" void Object_GetHashCode_m500842593 (); extern "C" void Object_GetType_m2022236990 (); extern "C" void Object_MemberwiseClone_m883886056 (); extern "C" void Object_ToString_m2286807767 (); extern "C" void Object_ReferenceEquals_m3695130242 (); extern "C" void Object_InternalGetHashCode_m2390902384 (); extern "C" void ObjectDisposedException__ctor_m1180707260 (); extern "C" void ObjectDisposedException__ctor_m3489634552 (); extern "C" void ObjectDisposedException__ctor_m571210567 (); extern "C" void ObjectDisposedException_get_Message_m4164560767 (); extern "C" void ObjectDisposedException_GetObjectData_m2669480868 (); extern "C" void ObsoleteAttribute__ctor_m3622855086 (); extern "C" void ObsoleteAttribute__ctor_m4069910548 (); extern "C" void ObsoleteAttribute__ctor_m3431121129 (); extern "C" void OperatingSystem__ctor_m1430692681 (); extern "C" void OperatingSystem_get_Platform_m949444901 (); extern "C" void OperatingSystem_Clone_m984082471 (); extern "C" void OperatingSystem_GetObjectData_m746174751 (); extern "C" void OperatingSystem_ToString_m3670342834 (); extern "C" void OrdinalComparer__ctor_m98757386 (); extern "C" void OrdinalComparer_Compare_m2663568516 (); extern "C" void OrdinalComparer_Equals_m4124753260 (); extern "C" void OrdinalComparer_GetHashCode_m545733148 (); extern "C" void OutOfMemoryException__ctor_m3970465100 (); extern "C" void OutOfMemoryException__ctor_m1639593101 (); extern "C" void OverflowException__ctor_m1899953028 (); extern "C" void OverflowException__ctor_m3303963134 (); extern "C" void OverflowException__ctor_m2924736197 (); extern "C" void ParamArrayAttribute__ctor_m2760430497 (); extern "C" void RankException__ctor_m2171614254 (); extern "C" void RankException__ctor_m3451921812 (); extern "C" void RankException__ctor_m1930204271 (); extern "C" void AmbiguousMatchException__ctor_m3345667202 (); extern "C" void AmbiguousMatchException__ctor_m1221569984 (); extern "C" void AmbiguousMatchException__ctor_m68259523 (); extern "C" void Assembly__ctor_m3527373192 (); extern "C" void Assembly_get_code_base_m1814794868 (); extern "C" void Assembly_get_fullname_m3799996258 (); extern "C" void Assembly_get_location_m1081941693 (); extern "C" void Assembly_GetCodeBase_m526881390 (); extern "C" void Assembly_get_FullName_m582360994 (); extern "C" void Assembly_get_Location_m3075406557 (); extern "C" void Assembly_IsDefined_m3899547079 (); extern "C" void Assembly_GetCustomAttributes_m4037441461 (); extern "C" void Assembly_GetManifestResourceInternal_m3306015724 (); extern "C" void Assembly_GetTypes_m2225080238 (); extern "C" void Assembly_GetTypes_m1658023543 (); extern "C" void Assembly_GetType_m910605431 (); extern "C" void Assembly_GetType_m60293702 (); extern "C" void Assembly_InternalGetType_m2843289707 (); extern "C" void Assembly_GetType_m3120052774 (); extern "C" void Assembly_FillName_m3921630801 (); extern "C" void Assembly_GetName_m186567048 (); extern "C" void Assembly_GetName_m253695441 (); extern "C" void Assembly_UnprotectedGetName_m1786225822 (); extern "C" void Assembly_ToString_m395441739 (); extern "C" void Assembly_Load_m4081902495 (); extern "C" void Assembly_GetModule_m2523306005 (); extern "C" void Assembly_GetModulesInternal_m1897302435 (); extern "C" void Assembly_GetModules_m3104205309 (); extern "C" void Assembly_GetExecutingAssembly_m1876278943 (); extern "C" void ResolveEventHolder__ctor_m1761692565 (); extern "C" void AssemblyCompanyAttribute__ctor_m2502605305 (); extern "C" void AssemblyConfigurationAttribute__ctor_m4121139744 (); extern "C" void AssemblyCopyrightAttribute__ctor_m3725440687 (); extern "C" void AssemblyDefaultAliasAttribute__ctor_m3432347153 (); extern "C" void AssemblyDelaySignAttribute__ctor_m4221242755 (); extern "C" void AssemblyDescriptionAttribute__ctor_m196881690 (); extern "C" void AssemblyFileVersionAttribute__ctor_m188013914 (); extern "C" void AssemblyInformationalVersionAttribute__ctor_m684917983 (); extern "C" void AssemblyKeyFileAttribute__ctor_m3089249851 (); extern "C" void AssemblyName__ctor_m2021574845 (); extern "C" void AssemblyName__ctor_m1431164030 (); extern "C" void AssemblyName_get_Name_m1123490526 (); extern "C" void AssemblyName_get_Flags_m841716984 (); extern "C" void AssemblyName_get_FullName_m2880072013 (); extern "C" void AssemblyName_get_Version_m700434552 (); extern "C" void AssemblyName_set_Version_m1560254941 (); extern "C" void AssemblyName_ToString_m485215606 (); extern "C" void AssemblyName_get_IsPublicKeyValid_m65110050 (); extern "C" void AssemblyName_InternalGetPublicKeyToken_m1116912397 (); extern "C" void AssemblyName_ComputePublicKeyToken_m1248936939 (); extern "C" void AssemblyName_SetPublicKey_m2883286222 (); extern "C" void AssemblyName_SetPublicKeyToken_m3550661833 (); extern "C" void AssemblyName_GetObjectData_m3727277531 (); extern "C" void AssemblyName_Clone_m1423794147 (); extern "C" void AssemblyName_OnDeserialization_m866678633 (); extern "C" void AssemblyProductAttribute__ctor_m2364447559 (); extern "C" void AssemblyTitleAttribute__ctor_m432794494 (); extern "C" void AssemblyTrademarkAttribute__ctor_m396080901 (); extern "C" void Binder__ctor_m1880433924 (); extern "C" void Binder__cctor_m1976780585 (); extern "C" void Binder_get_DefaultBinder_m695054407 (); extern "C" void Binder_ConvertArgs_m2442440337 (); extern "C" void Binder_GetDerivedLevel_m1285412278 (); extern "C" void Binder_FindMostDerivedMatch_m1519815265 (); extern "C" void Default__ctor_m564903218 (); extern "C" void Default_BindToMethod_m180789448 (); extern "C" void Default_ReorderParameters_m4011929147 (); extern "C" void Default_IsArrayAssignable_m3592878822 (); extern "C" void Default_ChangeType_m3134945120 (); extern "C" void Default_ReorderArgumentArray_m559904859 (); extern "C" void Default_check_type_m1665344327 (); extern "C" void Default_check_arguments_m2569422268 (); extern "C" void Default_SelectMethod_m4061797263 (); extern "C" void Default_SelectMethod_m3301427214 (); extern "C" void Default_GetBetterMethod_m4168201205 (); extern "C" void Default_CompareCloserType_m806190335 (); extern "C" void Default_SelectProperty_m1979388078 (); extern "C" void Default_check_arguments_with_score_m2296414695 (); extern "C" void Default_check_type_with_score_m4064381425 (); extern "C" void ConstructorInfo__ctor_m1318341424 (); extern "C" void ConstructorInfo__cctor_m1731782269 (); extern "C" void ConstructorInfo_get_MemberType_m1468140761 (); extern "C" void ConstructorInfo_Invoke_m759007899 (); extern "C" void CustomAttributeData__ctor_m1024003907 (); extern "C" void CustomAttributeData_get_Constructor_m624500001 (); extern "C" void CustomAttributeData_get_ConstructorArguments_m3485544262 (); extern "C" void CustomAttributeData_get_NamedArguments_m3035361272 (); extern "C" void CustomAttributeData_GetCustomAttributes_m1041584968 (); extern "C" void CustomAttributeData_GetCustomAttributes_m1840127430 (); extern "C" void CustomAttributeData_GetCustomAttributes_m3291957442 (); extern "C" void CustomAttributeData_GetCustomAttributes_m3662380525 (); extern "C" void CustomAttributeData_ToString_m440699946 (); extern "C" void CustomAttributeData_Equals_m613333846 (); extern "C" void CustomAttributeData_GetHashCode_m2481020718 (); extern "C" void CustomAttributeNamedArgument_ToString_m3812330896 (); extern "C" void CustomAttributeNamedArgument_Equals_m109042642 (); extern "C" void CustomAttributeNamedArgument_GetHashCode_m910635190 (); extern "C" void CustomAttributeTypedArgument_ToString_m2065140801 (); extern "C" void CustomAttributeTypedArgument_Equals_m464286849 (); extern "C" void CustomAttributeTypedArgument_GetHashCode_m1079175269 (); extern "C" void DefaultMemberAttribute__ctor_m66421301 (); extern "C" void DefaultMemberAttribute_get_MemberName_m2366986664 (); extern "C" void AssemblyBuilder_get_Location_m2002209681 (); extern "C" void AssemblyBuilder_GetModulesInternal_m2718782039 (); extern "C" void AssemblyBuilder_GetTypes_m3461115874 (); extern "C" void AssemblyBuilder_get_IsCompilerContext_m332025933 (); extern "C" void AssemblyBuilder_not_supported_m186391929 (); extern "C" void AssemblyBuilder_UnprotectedGetName_m3388533202 (); extern "C" void ConstructorBuilder__ctor_m3776339611 (); extern "C" void ConstructorBuilder_get_CallingConvention_m1759375919 (); extern "C" void ConstructorBuilder_get_TypeBuilder_m1751255827 (); extern "C" void ConstructorBuilder_GetParameters_m888861432 (); extern "C" void ConstructorBuilder_GetParametersInternal_m465564565 (); extern "C" void ConstructorBuilder_GetParameterCount_m3832553394 (); extern "C" void ConstructorBuilder_Invoke_m3130091177 (); extern "C" void ConstructorBuilder_Invoke_m3839663735 (); extern "C" void ConstructorBuilder_get_MethodHandle_m3811757201 (); extern "C" void ConstructorBuilder_get_Attributes_m1523127289 (); extern "C" void ConstructorBuilder_get_ReflectedType_m1081966177 (); extern "C" void ConstructorBuilder_get_DeclaringType_m1851519404 (); extern "C" void ConstructorBuilder_get_Name_m693047033 (); extern "C" void ConstructorBuilder_IsDefined_m503974687 (); extern "C" void ConstructorBuilder_GetCustomAttributes_m1576913186 (); extern "C" void ConstructorBuilder_GetCustomAttributes_m2593734159 (); extern "C" void ConstructorBuilder_GetILGenerator_m1097527344 (); extern "C" void ConstructorBuilder_GetILGenerator_m396483969 (); extern "C" void ConstructorBuilder_GetToken_m2130394273 (); extern "C" void ConstructorBuilder_get_Module_m779973538 (); extern "C" void ConstructorBuilder_ToString_m54772113 (); extern "C" void ConstructorBuilder_fixup_m3991829194 (); extern "C" void ConstructorBuilder_get_next_table_index_m4060451216 (); extern "C" void ConstructorBuilder_get_IsCompilerContext_m884160345 (); extern "C" void ConstructorBuilder_not_supported_m993826647 (); extern "C" void ConstructorBuilder_not_created_m1839318289 (); extern "C" void EnumBuilder_get_Assembly_m953263493 (); extern "C" void EnumBuilder_get_AssemblyQualifiedName_m4073403554 (); extern "C" void EnumBuilder_get_BaseType_m1867673731 (); extern "C" void EnumBuilder_get_DeclaringType_m2862908939 (); extern "C" void EnumBuilder_get_FullName_m1393656155 (); extern "C" void EnumBuilder_get_Module_m1719899717 (); extern "C" void EnumBuilder_get_Name_m1759013356 (); extern "C" void EnumBuilder_get_Namespace_m467255932 (); extern "C" void EnumBuilder_get_ReflectedType_m2093355712 (); extern "C" void EnumBuilder_get_TypeHandle_m4284032752 (); extern "C" void EnumBuilder_get_UnderlyingSystemType_m546810590 (); extern "C" void EnumBuilder_GetAttributeFlagsImpl_m1968787096 (); extern "C" void EnumBuilder_GetConstructorImpl_m2615452525 (); extern "C" void EnumBuilder_GetConstructors_m3042128809 (); extern "C" void EnumBuilder_GetCustomAttributes_m513136559 (); extern "C" void EnumBuilder_GetCustomAttributes_m3216433436 (); extern "C" void EnumBuilder_GetElementType_m2881513647 (); extern "C" void EnumBuilder_GetEvent_m1271024006 (); extern "C" void EnumBuilder_GetField_m1074091398 (); extern "C" void EnumBuilder_GetFields_m1392120169 (); extern "C" void EnumBuilder_GetInterfaces_m4245642789 (); extern "C" void EnumBuilder_GetMethodImpl_m133610325 (); extern "C" void EnumBuilder_GetMethods_m2248069569 (); extern "C" void EnumBuilder_GetPropertyImpl_m457098616 (); extern "C" void EnumBuilder_HasElementTypeImpl_m3877283091 (); extern "C" void EnumBuilder_InvokeMember_m4001949930 (); extern "C" void EnumBuilder_IsArrayImpl_m3702084250 (); extern "C" void EnumBuilder_IsByRefImpl_m1232112317 (); extern "C" void EnumBuilder_IsPointerImpl_m2740237182 (); extern "C" void EnumBuilder_IsPrimitiveImpl_m3421858472 (); extern "C" void EnumBuilder_IsValueTypeImpl_m3904157452 (); extern "C" void EnumBuilder_IsDefined_m2341849838 (); extern "C" void EnumBuilder_CreateNotSupportedException_m856223562 (); extern "C" void FieldBuilder_get_Attributes_m3921109250 (); extern "C" void FieldBuilder_get_DeclaringType_m1725909420 (); extern "C" void FieldBuilder_get_FieldHandle_m1219776477 (); extern "C" void FieldBuilder_get_FieldType_m1219556799 (); extern "C" void FieldBuilder_get_Name_m819487801 (); extern "C" void FieldBuilder_get_ReflectedType_m956356193 (); extern "C" void FieldBuilder_GetCustomAttributes_m2903117794 (); extern "C" void FieldBuilder_GetCustomAttributes_m1840342223 (); extern "C" void FieldBuilder_GetValue_m1365484742 (); extern "C" void FieldBuilder_IsDefined_m1233219871 (); extern "C" void FieldBuilder_GetFieldOffset_m849516803 (); extern "C" void FieldBuilder_SetValue_m668442259 (); extern "C" void FieldBuilder_get_UMarshal_m2685231318 (); extern "C" void FieldBuilder_CreateNotSupportedException_m2418755853 (); extern "C" void FieldBuilder_get_Module_m3744550626 (); extern "C" void GenericTypeParameterBuilder_IsSubclassOf_m952653568 (); extern "C" void GenericTypeParameterBuilder_GetAttributeFlagsImpl_m1663262351 (); extern "C" void GenericTypeParameterBuilder_GetConstructorImpl_m545561302 (); extern "C" void GenericTypeParameterBuilder_GetConstructors_m3161529504 (); extern "C" void GenericTypeParameterBuilder_GetEvent_m2196072623 (); extern "C" void GenericTypeParameterBuilder_GetField_m2024354991 (); extern "C" void GenericTypeParameterBuilder_GetFields_m128303008 (); extern "C" void GenericTypeParameterBuilder_GetInterfaces_m437688604 (); extern "C" void GenericTypeParameterBuilder_GetMethods_m1386969194 (); extern "C" void GenericTypeParameterBuilder_GetMethodImpl_m3486858252 (); extern "C" void GenericTypeParameterBuilder_GetPropertyImpl_m3933236897 (); extern "C" void GenericTypeParameterBuilder_HasElementTypeImpl_m814733436 (); extern "C" void GenericTypeParameterBuilder_IsAssignableFrom_m2291646236 (); extern "C" void GenericTypeParameterBuilder_IsInstanceOfType_m2833041284 (); extern "C" void GenericTypeParameterBuilder_IsArrayImpl_m3637457745 (); extern "C" void GenericTypeParameterBuilder_IsByRefImpl_m1167485812 (); extern "C" void GenericTypeParameterBuilder_IsPointerImpl_m763708021 (); extern "C" void GenericTypeParameterBuilder_IsPrimitiveImpl_m2352879583 (); extern "C" void GenericTypeParameterBuilder_IsValueTypeImpl_m2835178563 (); extern "C" void GenericTypeParameterBuilder_InvokeMember_m2055705555 (); extern "C" void GenericTypeParameterBuilder_GetElementType_m3868625048 (); extern "C" void GenericTypeParameterBuilder_get_UnderlyingSystemType_m2109324167 (); extern "C" void GenericTypeParameterBuilder_get_Assembly_m3923688878 (); extern "C" void GenericTypeParameterBuilder_get_AssemblyQualifiedName_m1986145049 (); extern "C" void GenericTypeParameterBuilder_get_BaseType_m1305573036 (); extern "C" void GenericTypeParameterBuilder_get_FullName_m79189380 (); extern "C" void GenericTypeParameterBuilder_IsDefined_m1789048485 (); extern "C" void GenericTypeParameterBuilder_GetCustomAttributes_m3157542694 (); extern "C" void GenericTypeParameterBuilder_GetCustomAttributes_m2400114195 (); extern "C" void GenericTypeParameterBuilder_get_Name_m1381612181 (); extern "C" void GenericTypeParameterBuilder_get_Namespace_m2668458867 (); extern "C" void GenericTypeParameterBuilder_get_Module_m4212322478 (); extern "C" void GenericTypeParameterBuilder_get_DeclaringType_m2257580418 (); extern "C" void GenericTypeParameterBuilder_get_ReflectedType_m1488027191 (); extern "C" void GenericTypeParameterBuilder_get_TypeHandle_m1599953625 (); extern "C" void GenericTypeParameterBuilder_GetGenericArguments_m4080596481 (); extern "C" void GenericTypeParameterBuilder_GetGenericTypeDefinition_m1742966118 (); extern "C" void GenericTypeParameterBuilder_get_ContainsGenericParameters_m2518773659 (); extern "C" void GenericTypeParameterBuilder_get_IsGenericParameter_m633698693 (); extern "C" void GenericTypeParameterBuilder_get_IsGenericType_m1264804288 (); extern "C" void GenericTypeParameterBuilder_get_IsGenericTypeDefinition_m39731123 (); extern "C" void GenericTypeParameterBuilder_not_supported_m716718603 (); extern "C" void GenericTypeParameterBuilder_ToString_m743337261 (); extern "C" void GenericTypeParameterBuilder_Equals_m1747582869 (); extern "C" void GenericTypeParameterBuilder_GetHashCode_m3071919225 (); extern "C" void GenericTypeParameterBuilder_MakeGenericType_m3404220394 (); extern "C" void ILGenerator__ctor_m363767667 (); extern "C" void ILGenerator__cctor_m152040660 (); extern "C" void ILGenerator_add_token_fixup_m1030891159 (); extern "C" void ILGenerator_make_room_m3150005908 (); extern "C" void ILGenerator_emit_int_m1452131359 (); extern "C" void ILGenerator_ll_emit_m2322068804 (); extern "C" void ILGenerator_Emit_m1513421455 (); extern "C" void ILGenerator_Emit_m726728631 (); extern "C" void ILGenerator_label_fixup_m2969084380 (); extern "C" void ILGenerator_Mono_GetCurrentOffset_m436459828 (); extern "C" void MethodBuilder_get_ContainsGenericParameters_m3420227972 (); extern "C" void MethodBuilder_get_MethodHandle_m1281364144 (); extern "C" void MethodBuilder_get_ReturnType_m1886811394 (); extern "C" void MethodBuilder_get_ReflectedType_m3784090528 (); extern "C" void MethodBuilder_get_DeclaringType_m258676459 (); extern "C" void MethodBuilder_get_Name_m3413262028 (); extern "C" void MethodBuilder_get_Attributes_m2121429796 (); extern "C" void MethodBuilder_get_CallingConvention_m3756269872 (); extern "C" void MethodBuilder_GetBaseDefinition_m3625992879 (); extern "C" void MethodBuilder_GetParameters_m1297633455 (); extern "C" void MethodBuilder_GetParameterCount_m1078755501 (); extern "C" void MethodBuilder_Invoke_m1851679456 (); extern "C" void MethodBuilder_IsDefined_m3379756494 (); extern "C" void MethodBuilder_GetCustomAttributes_m1111063247 (); extern "C" void MethodBuilder_GetCustomAttributes_m3294549052 (); extern "C" void MethodBuilder_check_override_m3740987736 (); extern "C" void MethodBuilder_fixup_m526432253 (); extern "C" void MethodBuilder_ToString_m2774987108 (); extern "C" void MethodBuilder_Equals_m341293246 (); extern "C" void MethodBuilder_GetHashCode_m2330513698 (); extern "C" void MethodBuilder_get_next_table_index_m3631261195 (); extern "C" void MethodBuilder_NotSupported_m538712043 (); extern "C" void MethodBuilder_MakeGenericMethod_m3048833464 (); extern "C" void MethodBuilder_get_IsGenericMethodDefinition_m2676161411 (); extern "C" void MethodBuilder_get_IsGenericMethod_m3124339088 (); extern "C" void MethodBuilder_GetGenericArguments_m2521139370 (); extern "C" void MethodBuilder_get_Module_m2724160805 (); extern "C" void MethodToken__ctor_m3710649922 (); extern "C" void MethodToken__cctor_m2370742108 (); extern "C" void MethodToken_Equals_m1986642400 (); extern "C" void MethodToken_GetHashCode_m1919356356 (); extern "C" void MethodToken_get_Token_m1317996739 (); extern "C" void ModuleBuilder__cctor_m1218472467 (); extern "C" void ModuleBuilder_get_next_table_index_m3600803990 (); extern "C" void ModuleBuilder_GetTypes_m2017043429 (); extern "C" void ModuleBuilder_getToken_m242473055 (); extern "C" void ModuleBuilder_GetToken_m1580574749 (); extern "C" void ModuleBuilder_RegisterToken_m2593402065 (); extern "C" void ModuleBuilder_GetTokenGenerator_m4211747974 (); extern "C" void ModuleBuilderTokenGenerator__ctor_m3538557064 (); extern "C" void ModuleBuilderTokenGenerator_GetToken_m2106467927 (); extern "C" void OpCode__ctor_m742870391 (); extern "C" void OpCode_GetHashCode_m1885918234 (); extern "C" void OpCode_Equals_m3328690754 (); extern "C" void OpCode_ToString_m4043065278 (); extern "C" void OpCode_get_Name_m386372902 (); extern "C" void OpCode_get_Size_m2313922819 (); extern "C" void OpCode_get_StackBehaviourPop_m4109383719 (); extern "C" void OpCode_get_StackBehaviourPush_m2842535718 (); extern "C" void OpCodeNames__cctor_m1465031614 (); extern "C" void OpCodes__cctor_m1331312969 (); extern "C" void ParameterBuilder_get_Attributes_m2640139997 (); extern "C" void ParameterBuilder_get_Name_m1429816234 (); extern "C" void ParameterBuilder_get_Position_m388196207 (); extern "C" void TypeBuilder_GetAttributeFlagsImpl_m2415994065 (); extern "C" void TypeBuilder_setup_internal_class_m1841540458 (); extern "C" void TypeBuilder_create_generic_class_m1633445577 (); extern "C" void TypeBuilder_get_Assembly_m870988588 (); extern "C" void TypeBuilder_get_AssemblyQualifiedName_m750470747 (); extern "C" void TypeBuilder_get_BaseType_m1785398826 (); extern "C" void TypeBuilder_get_DeclaringType_m1033527492 (); extern "C" void TypeBuilder_get_UnderlyingSystemType_m301071877 (); extern "C" void TypeBuilder_get_FullName_m1311381250 (); extern "C" void TypeBuilder_get_Module_m1380149676 (); extern "C" void TypeBuilder_get_Name_m225700627 (); extern "C" void TypeBuilder_get_Namespace_m2211701173 (); extern "C" void TypeBuilder_get_ReflectedType_m263974265 (); extern "C" void TypeBuilder_GetConstructorImpl_m4034724308 (); extern "C" void TypeBuilder_IsDefined_m3802777959 (); extern "C" void TypeBuilder_GetCustomAttributes_m425271400 (); extern "C" void TypeBuilder_GetCustomAttributes_m3833453653 (); extern "C" void TypeBuilder_DefineConstructor_m2901130055 (); extern "C" void TypeBuilder_DefineConstructor_m467278373 (); extern "C" void TypeBuilder_DefineDefaultConstructor_m4180060431 (); extern "C" void TypeBuilder_create_runtime_class_m3021676378 (); extern "C" void TypeBuilder_is_nested_in_m2129219235 (); extern "C" void TypeBuilder_has_ctor_method_m2530448875 (); extern "C" void TypeBuilder_CreateType_m1359739084 (); extern "C" void TypeBuilder_GetConstructors_m3659149026 (); extern "C" void TypeBuilder_GetConstructorsInternal_m731270847 (); extern "C" void TypeBuilder_GetElementType_m1124741270 (); extern "C" void TypeBuilder_GetEvent_m1147005997 (); extern "C" void TypeBuilder_GetField_m950073389 (); extern "C" void TypeBuilder_GetFields_m3934792546 (); extern "C" void TypeBuilder_GetInterfaces_m1695120734 (); extern "C" void TypeBuilder_GetMethodsByName_m2328060642 (); extern "C" void TypeBuilder_GetMethods_m3761501928 (); extern "C" void TypeBuilder_GetMethodImpl_m2675220686 (); extern "C" void TypeBuilder_GetPropertyImpl_m2672120863 (); extern "C" void TypeBuilder_HasElementTypeImpl_m3001033082 (); extern "C" void TypeBuilder_InvokeMember_m1599102929 (); extern "C" void TypeBuilder_IsArrayImpl_m1759767571 (); extern "C" void TypeBuilder_IsByRefImpl_m3584762934 (); extern "C" void TypeBuilder_IsPointerImpl_m189715127 (); extern "C" void TypeBuilder_IsPrimitiveImpl_m501522337 (); extern "C" void TypeBuilder_IsValueTypeImpl_m983821317 (); extern "C" void TypeBuilder_MakeGenericType_m740236136 (); extern "C" void TypeBuilder_get_TypeHandle_m2527260375 (); extern "C" void TypeBuilder_SetParent_m2226876871 (); extern "C" void TypeBuilder_get_next_table_index_m2109425124 (); extern "C" void TypeBuilder_get_IsCompilerContext_m432935841 (); extern "C" void TypeBuilder_get_is_created_m695624602 (); extern "C" void TypeBuilder_not_supported_m2004582477 (); extern "C" void TypeBuilder_check_not_created_m4283406443 (); extern "C" void TypeBuilder_check_created_m3022374359 (); extern "C" void TypeBuilder_ToString_m3882393003 (); extern "C" void TypeBuilder_IsAssignableFrom_m2834740190 (); extern "C" void TypeBuilder_IsSubclassOf_m919862466 (); extern "C" void TypeBuilder_IsAssignableTo_m3927127213 (); extern "C" void TypeBuilder_GetGenericArguments_m1892425923 (); extern "C" void TypeBuilder_GetGenericTypeDefinition_m4229681124 (); extern "C" void TypeBuilder_get_ContainsGenericParameters_m446053341 (); extern "C" void TypeBuilder_get_IsGenericParameter_m78451587 (); extern "C" void TypeBuilder_get_IsGenericTypeDefinition_m582825077 (); extern "C" void TypeBuilder_get_IsGenericType_m226951426 (); extern "C" void UnmanagedMarshal_ToMarshalAsAttribute_m4201209287 (); extern "C" void EventInfo__ctor_m2461757520 (); extern "C" void EventInfo_get_EventHandlerType_m2354774861 (); extern "C" void EventInfo_get_MemberType_m3965977017 (); extern "C" void AddEventAdapter__ctor_m2445699769 (); extern "C" void AddEventAdapter_Invoke_m4107836009 (); extern "C" void AddEventAdapter_BeginInvoke_m2800012162 (); extern "C" void AddEventAdapter_EndInvoke_m3991281993 (); extern "C" void FieldInfo__ctor_m1830395376 (); extern "C" void FieldInfo_get_MemberType_m1921984537 (); extern "C" void FieldInfo_get_IsLiteral_m2099153292 (); extern "C" void FieldInfo_get_IsStatic_m24721619 (); extern "C" void FieldInfo_get_IsNotSerialized_m3868603028 (); extern "C" void FieldInfo_SetValue_m1669444927 (); extern "C" void FieldInfo_internal_from_handle_type_m449136039 (); extern "C" void FieldInfo_GetFieldFromHandle_m3507098254 (); extern "C" void FieldInfo_GetFieldOffset_m3781007919 (); extern "C" void FieldInfo_GetUnmanagedMarshal_m3736180640 (); extern "C" void FieldInfo_get_UMarshal_m3592475906 (); extern "C" void FieldInfo_GetPseudoCustomAttributes_m3219838173 (); extern "C" void MemberFilter__ctor_m1519003110 (); extern "C" void MemberFilter_Invoke_m1252503396 (); extern "C" void MemberFilter_BeginInvoke_m1668252761 (); extern "C" void MemberFilter_EndInvoke_m3696206456 (); extern "C" void MemberInfo__ctor_m3915857030 (); extern "C" void MemberInfo_get_Module_m3912547150 (); extern "C" void MemberInfoSerializationHolder__ctor_m939139269 (); extern "C" void MemberInfoSerializationHolder_Serialize_m1332311411 (); extern "C" void MemberInfoSerializationHolder_Serialize_m2526201284 (); extern "C" void MemberInfoSerializationHolder_GetObjectData_m3301233442 (); extern "C" void MemberInfoSerializationHolder_GetRealObject_m2979973448 (); extern "C" void MethodBase__ctor_m2869737180 (); extern "C" void MethodBase_GetMethodFromHandleNoGenericCheck_m3857932574 (); extern "C" void MethodBase_GetMethodFromIntPtr_m1804781085 (); extern "C" void MethodBase_GetMethodFromHandle_m3548347628 (); extern "C" void MethodBase_GetMethodFromHandleInternalType_m1518673981 (); extern "C" void MethodBase_GetParameterCount_m3370013370 (); extern "C" void MethodBase_Invoke_m3435166155 (); extern "C" void MethodBase_get_CallingConvention_m1001031613 (); extern "C" void MethodBase_get_IsPublic_m4089159654 (); extern "C" void MethodBase_get_IsStatic_m4113878699 (); extern "C" void MethodBase_get_IsVirtual_m2071496208 (); extern "C" void MethodBase_get_IsAbstract_m1047696479 (); extern "C" void MethodBase_get_next_table_index_m1161386136 (); extern "C" void MethodBase_GetGenericArguments_m3136597879 (); extern "C" void MethodBase_get_ContainsGenericParameters_m30026257 (); extern "C" void MethodBase_get_IsGenericMethodDefinition_m3580926992 (); extern "C" void MethodBase_get_IsGenericMethod_m3165593181 (); extern "C" void MethodInfo__ctor_m2414387615 (); extern "C" void MethodInfo_get_MemberType_m1399337402 (); extern "C" void MethodInfo_get_ReturnType_m1349485746 (); extern "C" void MethodInfo_MakeGenericMethod_m548581224 (); extern "C" void MethodInfo_GetGenericArguments_m2245069050 (); extern "C" void MethodInfo_get_IsGenericMethod_m2274064352 (); extern "C" void MethodInfo_get_IsGenericMethodDefinition_m1886989779 (); extern "C" void MethodInfo_get_ContainsGenericParameters_m2631056340 (); extern "C" void Missing__ctor_m823829586 (); extern "C" void Missing__cctor_m3581784475 (); extern "C" void Missing_System_Runtime_Serialization_ISerializable_GetObjectData_m3445091833 (); extern "C" void Module__ctor_m1944669826 (); extern "C" void Module__cctor_m3968093547 (); extern "C" void Module_get_Assembly_m4154223570 (); extern "C" void Module_get_ScopeName_m724946931 (); extern "C" void Module_GetCustomAttributes_m2375287279 (); extern "C" void Module_GetObjectData_m8314144 (); extern "C" void Module_InternalGetTypes_m2940532442 (); extern "C" void Module_GetTypes_m134489405 (); extern "C" void Module_IsDefined_m3759276225 (); extern "C" void Module_IsResource_m3085935772 (); extern "C" void Module_ToString_m2326023121 (); extern "C" void Module_filter_by_type_name_m1428086970 (); extern "C" void Module_filter_by_type_name_ignore_case_m825562172 (); extern "C" void MonoCMethod__ctor_m1949313751 (); extern "C" void MonoCMethod_GetParameters_m993439667 (); extern "C" void MonoCMethod_InternalInvoke_m1703330793 (); extern "C" void MonoCMethod_Invoke_m3483919886 (); extern "C" void MonoCMethod_Invoke_m2473345692 (); extern "C" void MonoCMethod_get_MethodHandle_m1736599926 (); extern "C" void MonoCMethod_get_Attributes_m2492640542 (); extern "C" void MonoCMethod_get_CallingConvention_m3412315242 (); extern "C" void MonoCMethod_get_ReflectedType_m3209895836 (); extern "C" void MonoCMethod_get_DeclaringType_m3979449063 (); extern "C" void MonoCMethod_get_Name_m2330810846 (); extern "C" void MonoCMethod_IsDefined_m2679410586 (); extern "C" void MonoCMethod_GetCustomAttributes_m3440607709 (); extern "C" void MonoCMethod_GetCustomAttributes_m2022749770 (); extern "C" void MonoCMethod_ToString_m1692535926 (); extern "C" void MonoCMethod_GetObjectData_m3949447925 (); extern "C" void MonoEvent__ctor_m1732756001 (); extern "C" void MonoEvent_get_Attributes_m3196030141 (); extern "C" void MonoEvent_GetAddMethod_m3118173230 (); extern "C" void MonoEvent_get_DeclaringType_m3994610097 (); extern "C" void MonoEvent_get_ReflectedType_m3225056870 (); extern "C" void MonoEvent_get_Name_m4045390228 (); extern "C" void MonoEvent_ToString_m3407115308 (); extern "C" void MonoEvent_IsDefined_m3229573604 (); extern "C" void MonoEvent_GetCustomAttributes_m2984693479 (); extern "C" void MonoEvent_GetCustomAttributes_m1928774740 (); extern "C" void MonoEvent_GetObjectData_m2378937663 (); extern "C" void MonoEventInfo_get_event_info_m4253936399 (); extern "C" void MonoEventInfo_GetEventInfo_m3342016238 (); extern "C" void MonoField__ctor_m3189620673 (); extern "C" void MonoField_get_Attributes_m2200334717 (); extern "C" void MonoField_get_FieldHandle_m3810546370 (); extern "C" void MonoField_get_FieldType_m3878403556 (); extern "C" void MonoField_GetParentType_m3845576618 (); extern "C" void MonoField_get_ReflectedType_m249627654 (); extern "C" void MonoField_get_DeclaringType_m1019180881 (); extern "C" void MonoField_get_Name_m561340404 (); extern "C" void MonoField_IsDefined_m1408878468 (); extern "C" void MonoField_GetCustomAttributes_m3992853639 (); extern "C" void MonoField_GetCustomAttributes_m3211174388 (); extern "C" void MonoField_GetFieldOffset_m1550054270 (); extern "C" void MonoField_GetValueInternal_m2439735918 (); extern "C" void MonoField_GetValue_m496927467 (); extern "C" void MonoField_ToString_m4218032780 (); extern "C" void MonoField_SetValueInternal_m1841098555 (); extern "C" void MonoField_SetValue_m1189993934 (); extern "C" void MonoField_GetObjectData_m2261672671 (); extern "C" void MonoField_CheckGeneric_m3068937042 (); extern "C" void MonoGenericCMethod__ctor_m673538526 (); extern "C" void MonoGenericCMethod_get_ReflectedType_m1976633775 (); extern "C" void MonoGenericMethod__ctor_m883290339 (); extern "C" void MonoGenericMethod_get_ReflectedType_m162977832 (); extern "C" void MonoMethod__ctor_m370255050 (); extern "C" void MonoMethod_get_name_m439428219 (); extern "C" void MonoMethod_get_base_definition_m1389391157 (); extern "C" void MonoMethod_GetBaseDefinition_m3877450154 (); extern "C" void MonoMethod_get_ReturnType_m2366628327 (); extern "C" void MonoMethod_GetParameters_m1957703466 (); extern "C" void MonoMethod_InternalInvoke_m4222289618 (); extern "C" void MonoMethod_Invoke_m240151045 (); extern "C" void MonoMethod_get_MethodHandle_m3375732565 (); extern "C" void MonoMethod_get_Attributes_m3567797513 (); extern "C" void MonoMethod_get_CallingConvention_m1596053931 (); extern "C" void MonoMethod_get_ReflectedType_m64213147 (); extern "C" void MonoMethod_get_DeclaringType_m833766374 (); extern "C" void MonoMethod_get_Name_m3300938865 (); extern "C" void MonoMethod_IsDefined_m1598659081 (); extern "C" void MonoMethod_GetCustomAttributes_m534554826 (); extern "C" void MonoMethod_GetCustomAttributes_m673046967 (); extern "C" void MonoMethod_GetDllImportAttribute_m3397930907 (); extern "C" void MonoMethod_GetPseudoCustomAttributes_m4233716593 (); extern "C" void MonoMethod_ShouldPrintFullName_m401880127 (); extern "C" void MonoMethod_ToString_m2662663945 (); extern "C" void MonoMethod_GetObjectData_m1160867688 (); extern "C" void MonoMethod_MakeGenericMethod_m2250506909 (); extern "C" void MonoMethod_MakeGenericMethod_impl_m2160588496 (); extern "C" void MonoMethod_GetGenericArguments_m978560229 (); extern "C" void MonoMethod_get_IsGenericMethodDefinition_m279322622 (); extern "C" void MonoMethod_get_IsGenericMethod_m1007555531 (); extern "C" void MonoMethod_get_ContainsGenericParameters_m1023389183 (); extern "C" void MonoMethodInfo_get_method_info_m2207164051 (); extern "C" void MonoMethodInfo_GetMethodInfo_m3883823882 (); extern "C" void MonoMethodInfo_GetDeclaringType_m1399000903 (); extern "C" void MonoMethodInfo_GetReturnType_m2167465812 (); extern "C" void MonoMethodInfo_GetAttributes_m3368954492 (); extern "C" void MonoMethodInfo_GetCallingConvention_m4186754404 (); extern "C" void MonoMethodInfo_get_parameter_info_m584685721 (); extern "C" void MonoMethodInfo_GetParametersInfo_m1882458608 (); extern "C" void MonoProperty__ctor_m1169623126 (); extern "C" void MonoProperty_CachePropertyInfo_m1003517343 (); extern "C" void MonoProperty_get_Attributes_m1446659017 (); extern "C" void MonoProperty_get_CanRead_m4207249871 (); extern "C" void MonoProperty_get_CanWrite_m2098380648 (); extern "C" void MonoProperty_get_PropertyType_m3141941824 (); extern "C" void MonoProperty_get_ReflectedType_m158519463 (); extern "C" void MonoProperty_get_DeclaringType_m928072690 (); extern "C" void MonoProperty_get_Name_m3886549157 (); extern "C" void MonoProperty_GetAccessors_m455294545 (); extern "C" void MonoProperty_GetGetMethod_m2822601598 (); extern "C" void MonoProperty_GetIndexParameters_m2930895730 (); extern "C" void MonoProperty_GetSetMethod_m3665893258 (); extern "C" void MonoProperty_IsDefined_m436586773 (); extern "C" void MonoProperty_GetCustomAttributes_m1088918294 (); extern "C" void MonoProperty_GetCustomAttributes_m2634004995 (); extern "C" void MonoProperty_CreateGetterDelegate_m1512753249 (); extern "C" void MonoProperty_GetValue_m3005067234 (); extern "C" void MonoProperty_GetValue_m1867887996 (); extern "C" void MonoProperty_SetValue_m2220407469 (); extern "C" void MonoProperty_ToString_m3248274237 (); extern "C" void MonoProperty_GetOptionalCustomModifiers_m2413189819 (); extern "C" void MonoProperty_GetRequiredCustomModifiers_m487727196 (); extern "C" void MonoProperty_GetObjectData_m2931203316 (); extern "C" void GetterAdapter__ctor_m1690259617 (); extern "C" void GetterAdapter_Invoke_m1039216292 (); extern "C" void GetterAdapter_BeginInvoke_m183730010 (); extern "C" void GetterAdapter_EndInvoke_m3963824678 (); extern "C" void MonoPropertyInfo_get_property_info_m1244288251 (); extern "C" void MonoPropertyInfo_GetTypeModifiers_m3740551417 (); extern "C" void ParameterInfo__ctor_m3597008161 (); extern "C" void ParameterInfo__ctor_m703590456 (); extern "C" void ParameterInfo__ctor_m3736663868 (); extern "C" void ParameterInfo_ToString_m608350892 (); extern "C" void ParameterInfo_get_ParameterType_m962921011 (); extern "C" void ParameterInfo_get_Attributes_m3667882316 (); extern "C" void ParameterInfo_get_IsIn_m462729209 (); extern "C" void ParameterInfo_get_IsOptional_m2840883508 (); extern "C" void ParameterInfo_get_IsOut_m1465526300 (); extern "C" void ParameterInfo_get_IsRetval_m843554164 (); extern "C" void ParameterInfo_get_Member_m215664551 (); extern "C" void ParameterInfo_get_Name_m1246625812 (); extern "C" void ParameterInfo_get_Position_m2226484697 (); extern "C" void ParameterInfo_GetCustomAttributes_m3587382740 (); extern "C" void ParameterInfo_IsDefined_m1420905444 (); extern "C" void ParameterInfo_GetPseudoCustomAttributes_m760090638 (); extern "C" void Pointer__ctor_m226191707 (); extern "C" void Pointer_System_Runtime_Serialization_ISerializable_GetObjectData_m448849360 (); extern "C" void PropertyInfo__ctor_m539791979 (); extern "C" void PropertyInfo_get_MemberType_m3698268270 (); extern "C" void PropertyInfo_GetValue_m396207607 (); extern "C" void PropertyInfo_SetValue_m3226288870 (); extern "C" void PropertyInfo_GetOptionalCustomModifiers_m1611882438 (); extern "C" void PropertyInfo_GetRequiredCustomModifiers_m3981387111 (); extern "C" void StrongNameKeyPair__ctor_m583813794 (); extern "C" void StrongNameKeyPair_System_Runtime_Serialization_ISerializable_GetObjectData_m285619594 (); extern "C" void StrongNameKeyPair_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m3690645877 (); extern "C" void TargetException__ctor_m983503354 (); extern "C" void TargetException__ctor_m1662849864 (); extern "C" void TargetException__ctor_m1050912827 (); extern "C" void TargetInvocationException__ctor_m2876037082 (); extern "C" void TargetInvocationException__ctor_m706824555 (); extern "C" void TargetParameterCountException__ctor_m2437752064 (); extern "C" void TargetParameterCountException__ctor_m2555943426 (); extern "C" void TargetParameterCountException__ctor_m2385733185 (); extern "C" void TypeFilter__ctor_m3304815558 (); extern "C" void TypeFilter_Invoke_m3691842469 (); extern "C" void TypeFilter_BeginInvoke_m1184564418 (); extern "C" void TypeFilter_EndInvoke_m3571376344 (); extern "C" void ResolveEventArgs__ctor_m2357566712 (); extern "C" void ResolveEventHandler__ctor_m2424315661 (); extern "C" void ResolveEventHandler_Invoke_m4207713166 (); extern "C" void ResolveEventHandler_BeginInvoke_m1625165996 (); extern "C" void ResolveEventHandler_EndInvoke_m3051650750 (); extern "C" void NeutralResourcesLanguageAttribute__ctor_m2317811982 (); extern "C" void ResourceManager__ctor_m1041657915 (); extern "C" void ResourceManager__cctor_m1744528082 (); extern "C" void ResourceReader__ctor_m4021287506 (); extern "C" void ResourceReader__ctor_m3906862375 (); extern "C" void ResourceReader_System_Collections_IEnumerable_GetEnumerator_m117947704 (); extern "C" void ResourceReader_System_IDisposable_Dispose_m275527876 (); extern "C" void ResourceReader_ReadHeaders_m1907491305 (); extern "C" void ResourceReader_CreateResourceInfo_m5769771 (); extern "C" void ResourceReader_Read7BitEncodedInt_m1807673690 (); extern "C" void ResourceReader_ReadValueVer2_m3068653353 (); extern "C" void ResourceReader_ReadValueVer1_m60842242 (); extern "C" void ResourceReader_ReadNonPredefinedValue_m3316818289 (); extern "C" void ResourceReader_LoadResourceValues_m1190122720 (); extern "C" void ResourceReader_Close_m551956177 (); extern "C" void ResourceReader_GetEnumerator_m1820124275 (); extern "C" void ResourceReader_Dispose_m1411491503 (); extern "C" void ResourceCacheItem__ctor_m3336742541 (); extern "C" void ResourceEnumerator__ctor_m3994194575 (); extern "C" void ResourceEnumerator_get_Entry_m715318570 (); extern "C" void ResourceEnumerator_get_Key_m424542697 (); extern "C" void ResourceEnumerator_get_Value_m1012075067 (); extern "C" void ResourceEnumerator_get_Current_m3366221315 (); extern "C" void ResourceEnumerator_MoveNext_m3916307456 (); extern "C" void ResourceEnumerator_Reset_m4126890775 (); extern "C" void ResourceEnumerator_FillCache_m1751484935 (); extern "C" void ResourceInfo__ctor_m4205157633 (); extern "C" void ResourceSet__ctor_m2155833766 (); extern "C" void ResourceSet__ctor_m1435739197 (); extern "C" void ResourceSet__ctor_m1446669582 (); extern "C" void ResourceSet__ctor_m3385168668 (); extern "C" void ResourceSet_System_Collections_IEnumerable_GetEnumerator_m2370128345 (); extern "C" void ResourceSet_Dispose_m1480295523 (); extern "C" void ResourceSet_Dispose_m3120910490 (); extern "C" void ResourceSet_GetEnumerator_m1116109982 (); extern "C" void ResourceSet_GetObjectInternal_m2208724156 (); extern "C" void ResourceSet_GetObject_m543692318 (); extern "C" void ResourceSet_GetObject_m100760991 (); extern "C" void ResourceSet_ReadResources_m2589571379 (); extern "C" void RuntimeResourceSet__ctor_m1041659876 (); extern "C" void RuntimeResourceSet__ctor_m3373926439 (); extern "C" void RuntimeResourceSet__ctor_m1737082738 (); extern "C" void RuntimeResourceSet_GetObject_m167723114 (); extern "C" void RuntimeResourceSet_GetObject_m3242127827 (); extern "C" void RuntimeResourceSet_CloneDisposableObjectIfPossible_m1308606215 (); extern "C" void SatelliteContractVersionAttribute__ctor_m69110617 (); extern "C" void CompilationRelaxationsAttribute__ctor_m3469882264 (); extern "C" void CompilerGeneratedAttribute__ctor_m2546676106 (); extern "C" void DecimalConstantAttribute__ctor_m844034077 (); extern "C" void DefaultDependencyAttribute__ctor_m1966503101 (); extern "C" void InternalsVisibleToAttribute__ctor_m1688588087 (); extern "C" void RuntimeCompatibilityAttribute__ctor_m3343718092 (); extern "C" void RuntimeCompatibilityAttribute_set_WrapNonExceptionThrows_m14743685 (); extern "C" void RuntimeHelpers_InitializeArray_m3388114532 (); extern "C" void RuntimeHelpers_InitializeArray_m2058365049 (); extern "C" void RuntimeHelpers_get_OffsetToStringData_m2708084937 (); extern "C" void StringFreezingAttribute__ctor_m476014489 (); extern "C" void CriticalFinalizerObject__ctor_m358100503 (); extern "C" void CriticalFinalizerObject_Finalize_m3870795499 (); extern "C" void ReliabilityContractAttribute__ctor_m1813433017 (); extern "C" void ClassInterfaceAttribute__ctor_m3543181584 (); extern "C" void ComDefaultInterfaceAttribute__ctor_m3894140624 (); extern "C" void ComImportAttribute__ctor_m1130850294 (); extern "C" void ComVisibleAttribute__ctor_m1005514726 (); extern "C" void DispIdAttribute__ctor_m2923147436 (); extern "C" void DllImportAttribute__ctor_m1952564553 (); extern "C" void DllImportAttribute_get_Value_m819189346 (); extern "C" void FieldOffsetAttribute__ctor_m3654465902 (); extern "C" void GCHandle__ctor_m396637490 (); extern "C" void GCHandle_get_IsAllocated_m1991616348 (); extern "C" void GCHandle_get_Target_m1356841761 (); extern "C" void GCHandle_Alloc_m4018232088 (); extern "C" void GCHandle_Free_m2878302728 (); extern "C" void GCHandle_GetTarget_m385786707 (); extern "C" void GCHandle_GetTargetHandle_m414463034 (); extern "C" void GCHandle_FreeHandle_m2607926881 (); extern "C" void GCHandle_Equals_m2737763611 (); extern "C" void GCHandle_GetHashCode_m3173355379 (); extern "C" void GuidAttribute__ctor_m174694299 (); extern "C" void InAttribute__ctor_m476828707 (); extern "C" void InterfaceTypeAttribute__ctor_m2093508533 (); extern "C" void Marshal__cctor_m156400721 (); extern "C" void Marshal_copy_from_unmanaged_m1711077603 (); extern "C" void Marshal_Copy_m1690250234 (); extern "C" void Marshal_Copy_m1390445676 (); extern "C" void Marshal_ReadByte_m3705434677 (); extern "C" void Marshal_WriteByte_m4239949353 (); extern "C" void MarshalAsAttribute__ctor_m682499176 (); extern "C" void MarshalDirectiveException__ctor_m1090917820 (); extern "C" void MarshalDirectiveException__ctor_m2323399933 (); extern "C" void OptionalAttribute__ctor_m1203139678 (); extern "C" void OutAttribute__ctor_m3736730494 (); extern "C" void PreserveSigAttribute__ctor_m245522005 (); extern "C" void SafeHandle__ctor_m1568307360 (); extern "C" void SafeHandle_Close_m2695195021 (); extern "C" void SafeHandle_DangerousAddRef_m2051469412 (); extern "C" void SafeHandle_DangerousGetHandle_m4113584652 (); extern "C" void SafeHandle_DangerousRelease_m2551287562 (); extern "C" void SafeHandle_Dispose_m951873268 (); extern "C" void SafeHandle_Dispose_m787212651 (); extern "C" void SafeHandle_SetHandle_m1470505077 (); extern "C" void SafeHandle_Finalize_m2699031691 (); extern "C" void TypeLibImportClassAttribute__ctor_m2341378707 (); extern "C" void TypeLibVersionAttribute__ctor_m115624347 (); extern "C" void ActivatedClientTypeEntry__ctor_m1427925562 (); extern "C" void ActivatedClientTypeEntry_get_ApplicationUrl_m3757166703 (); extern "C" void ActivatedClientTypeEntry_get_ContextAttributes_m2565781780 (); extern "C" void ActivatedClientTypeEntry_get_ObjectType_m2838469632 (); extern "C" void ActivatedClientTypeEntry_ToString_m1070162771 (); extern "C" void ActivatedServiceTypeEntry__ctor_m4105441000 (); extern "C" void ActivatedServiceTypeEntry_get_ObjectType_m2192366838 (); extern "C" void ActivatedServiceTypeEntry_ToString_m1265511255 (); extern "C" void ActivationServices_get_ConstructionActivator_m3957898300 (); extern "C" void ActivationServices_CreateProxyFromAttributes_m2361190433 (); extern "C" void ActivationServices_CreateConstructionCall_m2559285452 (); extern "C" void ActivationServices_AllocateUninitializedClassInstance_m91641017 (); extern "C" void ActivationServices_EnableProxyActivation_m2068301505 (); extern "C" void AppDomainLevelActivator__ctor_m1573275682 (); extern "C" void ConstructionLevelActivator__ctor_m1053422160 (); extern "C" void ContextLevelActivator__ctor_m1237745936 (); extern "C" void UrlAttribute_get_UrlValue_m2943225223 (); extern "C" void UrlAttribute_Equals_m3166584024 (); extern "C" void UrlAttribute_GetHashCode_m1694018096 (); extern "C" void UrlAttribute_GetPropertiesForNewContext_m28161747 (); extern "C" void UrlAttribute_IsContextOK_m864962150 (); extern "C" void ChannelData__ctor_m2645775933 (); extern "C" void ChannelData_get_ServerProviders_m3282694237 (); extern "C" void ChannelData_get_ClientProviders_m764839637 (); extern "C" void ChannelData_get_CustomProperties_m3728962065 (); extern "C" void ChannelData_CopyFrom_m3797019541 (); extern "C" void ChannelInfo__ctor_m3788129721 (); extern "C" void ChannelInfo_get_ChannelData_m3007613902 (); extern "C" void ChannelServices__cctor_m1558856244 (); extern "C" void ChannelServices_CreateClientChannelSinkChain_m2763926231 (); extern "C" void ChannelServices_CreateClientChannelSinkChain_m3318618436 (); extern "C" void ChannelServices_RegisterChannel_m1343018521 (); extern "C" void ChannelServices_RegisterChannel_m409692228 (); extern "C" void ChannelServices_RegisterChannelConfig_m2055899810 (); extern "C" void ChannelServices_CreateProvider_m463156604 (); extern "C" void ChannelServices_GetCurrentChannelInfo_m4083928274 (); extern "C" void CrossAppDomainChannel__ctor_m751166236 (); extern "C" void CrossAppDomainChannel__cctor_m1329220625 (); extern "C" void CrossAppDomainChannel_RegisterCrossAppDomainChannel_m537811701 (); extern "C" void CrossAppDomainChannel_get_ChannelName_m3020014076 (); extern "C" void CrossAppDomainChannel_get_ChannelPriority_m1957352252 (); extern "C" void CrossAppDomainChannel_get_ChannelData_m2816187657 (); extern "C" void CrossAppDomainChannel_StartListening_m4255931667 (); extern "C" void CrossAppDomainChannel_CreateMessageSink_m2218895166 (); extern "C" void CrossAppDomainData__ctor_m2327580462 (); extern "C" void CrossAppDomainData_get_DomainID_m3794955859 (); extern "C" void CrossAppDomainData_get_ProcessID_m3945565375 (); extern "C" void CrossAppDomainSink__ctor_m2913778661 (); extern "C" void CrossAppDomainSink__cctor_m315038105 (); extern "C" void CrossAppDomainSink_GetSink_m1469111295 (); extern "C" void CrossAppDomainSink_get_TargetDomainId_m1065872077 (); extern "C" void SinkProviderData__ctor_m1196460420 (); extern "C" void SinkProviderData_get_Children_m2238346578 (); extern "C" void SinkProviderData_get_Properties_m3058815806 (); extern "C" void ClientActivatedIdentity_GetServerObject_m1626506643 (); extern "C" void ClientIdentity__ctor_m3595127653 (); extern "C" void ClientIdentity_get_ClientProxy_m4126686292 (); extern "C" void ClientIdentity_set_ClientProxy_m12327679 (); extern "C" void ClientIdentity_CreateObjRef_m2789811095 (); extern "C" void ClientIdentity_get_TargetUri_m3456785152 (); extern "C" void ConfigHandler__ctor_m2828599929 (); extern "C" void ConfigHandler_ValidatePath_m669680991 (); extern "C" void ConfigHandler_CheckPath_m4139428019 (); extern "C" void ConfigHandler_OnStartParsing_m1924122290 (); extern "C" void ConfigHandler_OnProcessingInstruction_m1288993410 (); extern "C" void ConfigHandler_OnIgnorableWhitespace_m3445514551 (); extern "C" void ConfigHandler_OnStartElement_m3663675513 (); extern "C" void ConfigHandler_ParseElement_m2192346409 (); extern "C" void ConfigHandler_OnEndElement_m2179721696 (); extern "C" void ConfigHandler_ReadCustomProviderData_m2072004816 (); extern "C" void ConfigHandler_ReadLifetine_m4176640056 (); extern "C" void ConfigHandler_ParseTime_m1810159973 (); extern "C" void ConfigHandler_ReadChannel_m1371377746 (); extern "C" void ConfigHandler_ReadProvider_m3082284056 (); extern "C" void ConfigHandler_ReadClientActivated_m1302642856 (); extern "C" void ConfigHandler_ReadServiceActivated_m1359996932 (); extern "C" void ConfigHandler_ReadClientWellKnown_m3688669412 (); extern "C" void ConfigHandler_ReadServiceWellKnown_m3746023488 (); extern "C" void ConfigHandler_ReadInteropXml_m3144955191 (); extern "C" void ConfigHandler_ReadPreload_m856823045 (); extern "C" void ConfigHandler_GetNotNull_m904874737 (); extern "C" void ConfigHandler_ExtractAssembly_m1425451284 (); extern "C" void ConfigHandler_OnChars_m2433222692 (); extern "C" void ConfigHandler_OnEndParsing_m1914300203 (); extern "C" void Context__ctor_m3857262039 (); extern "C" void Context__cctor_m3128910006 (); extern "C" void Context_Finalize_m4240873259 (); extern "C" void Context_get_DefaultContext_m1729123572 (); extern "C" void Context_get_ContextID_m632177530 (); extern "C" void Context_get_ContextProperties_m407806956 (); extern "C" void Context_get_IsDefaultContext_m1317738768 (); extern "C" void Context_get_NeedsContextSink_m1407125469 (); extern "C" void Context_RegisterDynamicProperty_m1382511581 (); extern "C" void Context_UnregisterDynamicProperty_m2713065109 (); extern "C" void Context_GetDynamicPropertyCollection_m762082460 (); extern "C" void Context_NotifyGlobalDynamicSinks_m4248729719 (); extern "C" void Context_get_HasGlobalDynamicSinks_m3725000840 (); extern "C" void Context_NotifyDynamicSinks_m1548895898 (); extern "C" void Context_get_HasDynamicSinks_m1961314373 (); extern "C" void Context_get_HasExitSinks_m1034415328 (); extern "C" void Context_GetProperty_m3347760518 (); extern "C" void Context_SetProperty_m3523401879 (); extern "C" void Context_Freeze_m2478059108 (); extern "C" void Context_ToString_m185373276 (); extern "C" void Context_GetServerContextSinkChain_m2728947955 (); extern "C" void Context_GetClientContextSinkChain_m420750203 (); extern "C" void Context_CreateServerObjectSinkChain_m2651975666 (); extern "C" void Context_CreateEnvoySink_m2224427853 (); extern "C" void Context_SwitchToContext_m2536531850 (); extern "C" void Context_CreateNewContext_m3734751481 (); extern "C" void Context_DoCallBack_m1407016397 (); extern "C" void Context_AllocateDataSlot_m2344201404 (); extern "C" void Context_AllocateNamedDataSlot_m2730654867 (); extern "C" void Context_FreeNamedDataSlot_m2867480440 (); extern "C" void Context_GetData_m2608354665 (); extern "C" void Context_GetNamedDataSlot_m1654679232 (); extern "C" void Context_SetData_m750447798 (); extern "C" void ContextAttribute__ctor_m2021650223 (); extern "C" void ContextAttribute_get_Name_m2613943298 (); extern "C" void ContextAttribute_Equals_m1391598694 (); extern "C" void ContextAttribute_Freeze_m533228205 (); extern "C" void ContextAttribute_GetHashCode_m1120368958 (); extern "C" void ContextAttribute_GetPropertiesForNewContext_m2715005793 (); extern "C" void ContextAttribute_IsContextOK_m3789747444 (); extern "C" void ContextAttribute_IsNewContextOK_m1034674857 (); extern "C" void ContextCallbackObject__ctor_m2631603027 (); extern "C" void ContextCallbackObject_DoCallBack_m2989242441 (); extern "C" void CrossContextChannel__ctor_m2542269426 (); extern "C" void CrossContextDelegate__ctor_m489758422 (); extern "C" void CrossContextDelegate_Invoke_m3190794928 (); extern "C" void CrossContextDelegate_BeginInvoke_m1978908379 (); extern "C" void CrossContextDelegate_EndInvoke_m2472635366 (); extern "C" void DynamicPropertyCollection__ctor_m2891818804 (); extern "C" void DynamicPropertyCollection_get_HasProperties_m728460500 (); extern "C" void DynamicPropertyCollection_RegisterDynamicProperty_m2418746642 (); extern "C" void DynamicPropertyCollection_UnregisterDynamicProperty_m2463280666 (); extern "C" void DynamicPropertyCollection_NotifyMessage_m1690580065 (); extern "C" void DynamicPropertyCollection_FindProperty_m926596200 (); extern "C" void DynamicPropertyReg__ctor_m2702568387 (); extern "C" void SynchronizationAttribute__ctor_m2176888868 (); extern "C" void SynchronizationAttribute__ctor_m3805252456 (); extern "C" void SynchronizationAttribute_set_Locked_m233834078 (); extern "C" void SynchronizationAttribute_ReleaseLock_m3607558612 (); extern "C" void SynchronizationAttribute_GetPropertiesForNewContext_m275738322 (); extern "C" void SynchronizationAttribute_GetClientContextSink_m197546806 (); extern "C" void SynchronizationAttribute_GetServerContextSink_m1092455614 (); extern "C" void SynchronizationAttribute_IsContextOK_m4152767269 (); extern "C" void SynchronizationAttribute_ExitContext_m4269502195 (); extern "C" void SynchronizationAttribute_EnterContext_m3151244183 (); extern "C" void SynchronizedClientContextSink__ctor_m1282225294 (); extern "C" void SynchronizedServerContextSink__ctor_m4169493510 (); extern "C" void EnvoyInfo__ctor_m3896435892 (); extern "C" void EnvoyInfo_get_EnvoySinks_m3781008599 (); extern "C" void FormatterData__ctor_m3716988950 (); extern "C" void Identity__ctor_m4099304260 (); extern "C" void Identity_get_ChannelSink_m1983774607 (); extern "C" void Identity_set_ChannelSink_m3130847940 (); extern "C" void Identity_get_ObjectUri_m2443444253 (); extern "C" void Identity_get_Disposed_m1911726198 (); extern "C" void Identity_set_Disposed_m1071218783 (); extern "C" void Identity_get_ClientDynamicProperties_m2301648525 (); extern "C" void Identity_get_ServerDynamicProperties_m841334805 (); extern "C" void InternalRemotingServices__cctor_m2124821007 (); extern "C" void InternalRemotingServices_GetCachedSoapAttribute_m1251902514 (); extern "C" void LeaseManager__ctor_m2522116882 (); extern "C" void LeaseManager_SetPollTime_m4066717374 (); extern "C" void LeaseSink__ctor_m1766448707 (); extern "C" void LifetimeServices__cctor_m2116108847 (); extern "C" void LifetimeServices_set_LeaseManagerPollTime_m511253658 (); extern "C" void LifetimeServices_set_LeaseTime_m1820419926 (); extern "C" void LifetimeServices_set_RenewOnCallTime_m3204084838 (); extern "C" void LifetimeServices_set_SponsorshipTimeout_m2472745390 (); extern "C" void ArgInfo__ctor_m2209263080 (); extern "C" void ArgInfo_GetInOutArgs_m2515374049 (); extern "C" void AsyncResult__ctor_m4145929563 (); extern "C" void AsyncResult_get_AsyncState_m1982026226 (); extern "C" void AsyncResult_get_AsyncWaitHandle_m1919809002 (); extern "C" void AsyncResult_get_CompletedSynchronously_m448147035 (); extern "C" void AsyncResult_get_IsCompleted_m563284563 (); extern "C" void AsyncResult_get_EndInvokeCalled_m130757730 (); extern "C" void AsyncResult_set_EndInvokeCalled_m4140056803 (); extern "C" void AsyncResult_get_AsyncDelegate_m1003284646 (); extern "C" void AsyncResult_get_NextSink_m920306782 (); extern "C" void AsyncResult_AsyncProcessMessage_m1971781732 (); extern "C" void AsyncResult_GetReplyMessage_m1791966425 (); extern "C" void AsyncResult_SetMessageCtrl_m1503809360 (); extern "C" void AsyncResult_SetCompletedSynchronously_m190268221 (); extern "C" void AsyncResult_EndInvoke_m2269051289 (); extern "C" void AsyncResult_SyncProcessMessage_m2452418033 (); extern "C" void AsyncResult_get_CallMessage_m1178656201 (); extern "C" void AsyncResult_set_CallMessage_m2645023562 (); extern "C" void CallContextRemotingData__ctor_m1116682582 (); extern "C" void CallContextRemotingData_Clone_m1647756742 (); extern "C" void ClientContextTerminatorSink__ctor_m2633454395 (); extern "C" void ConstructionCall__ctor_m1901864150 (); extern "C" void ConstructionCall__ctor_m2332608900 (); extern "C" void ConstructionCall_InitDictionary_m600871527 (); extern "C" void ConstructionCall_set_IsContextOk_m1331988764 (); extern "C" void ConstructionCall_get_ActivationType_m242799220 (); extern "C" void ConstructionCall_get_ActivationTypeName_m2260379688 (); extern "C" void ConstructionCall_get_Activator_m521493960 (); extern "C" void ConstructionCall_set_Activator_m1743955147 (); extern "C" void ConstructionCall_get_CallSiteActivationAttributes_m2779293359 (); extern "C" void ConstructionCall_SetActivationAttributes_m3550123778 (); extern "C" void ConstructionCall_get_ContextProperties_m4182550654 (); extern "C" void ConstructionCall_InitMethodProperty_m3499598409 (); extern "C" void ConstructionCall_GetObjectData_m2981776609 (); extern "C" void ConstructionCall_get_Properties_m690127073 (); extern "C" void ConstructionCallDictionary__ctor_m3483388884 (); extern "C" void ConstructionCallDictionary__cctor_m475710080 (); extern "C" void ConstructionCallDictionary_GetMethodProperty_m3794245472 (); extern "C" void ConstructionCallDictionary_SetMethodProperty_m3933749933 (); extern "C" void EnvoyTerminatorSink__ctor_m381258499 (); extern "C" void EnvoyTerminatorSink__cctor_m2746982666 (); extern "C" void Header__ctor_m3941506987 (); extern "C" void Header__ctor_m1808730226 (); extern "C" void Header__ctor_m84902190 (); extern "C" void HeaderHandler__ctor_m2526578283 (); extern "C" void HeaderHandler_Invoke_m1835336033 (); extern "C" void HeaderHandler_BeginInvoke_m2880476263 (); extern "C" void HeaderHandler_EndInvoke_m4263089894 (); extern "C" void LogicalCallContext__ctor_m122858570 (); extern "C" void LogicalCallContext__ctor_m2483628683 (); extern "C" void LogicalCallContext_GetObjectData_m3064510184 (); extern "C" void LogicalCallContext_SetData_m91070972 (); extern "C" void LogicalCallContext_Clone_m3487936816 (); extern "C" void MethodCall__ctor_m2280547300 (); extern "C" void MethodCall__ctor_m3232041652 (); extern "C" void MethodCall__ctor_m4232248307 (); extern "C" void MethodCall_System_Runtime_Remoting_Messaging_IInternalMessage_set_Uri_m75118319 (); extern "C" void MethodCall_InitMethodProperty_m2379029369 (); extern "C" void MethodCall_GetObjectData_m3092930065 (); extern "C" void MethodCall_get_Args_m2777349738 (); extern "C" void MethodCall_get_LogicalCallContext_m3758703237 (); extern "C" void MethodCall_get_MethodBase_m1563575745 (); extern "C" void MethodCall_get_MethodName_m703141353 (); extern "C" void MethodCall_get_MethodSignature_m3505289450 (); extern "C" void MethodCall_get_Properties_m3494690993 (); extern "C" void MethodCall_InitDictionary_m1823571767 (); extern "C" void MethodCall_get_TypeName_m2818536578 (); extern "C" void MethodCall_get_Uri_m110584337 (); extern "C" void MethodCall_set_Uri_m3629049250 (); extern "C" void MethodCall_Init_m1334986753 (); extern "C" void MethodCall_ResolveMethod_m2191435710 (); extern "C" void MethodCall_CastTo_m2140135600 (); extern "C" void MethodCall_GetTypeNameFromAssemblyQualifiedName_m148372306 (); extern "C" void MethodCall_get_GenericArguments_m3093552433 (); extern "C" void MethodCallDictionary__ctor_m1114585824 (); extern "C" void MethodCallDictionary__cctor_m2964568912 (); extern "C" void MethodDictionary__ctor_m2378316062 (); extern "C" void MethodDictionary_System_Collections_IEnumerable_GetEnumerator_m630697764 (); extern "C" void MethodDictionary_set_MethodKeys_m3153125541 (); extern "C" void MethodDictionary_AllocInternalProperties_m1059718266 (); extern "C" void MethodDictionary_GetInternalProperties_m3176512283 (); extern "C" void MethodDictionary_IsOverridenKey_m2316740400 (); extern "C" void MethodDictionary_get_Item_m2581436698 (); extern "C" void MethodDictionary_set_Item_m213586249 (); extern "C" void MethodDictionary_GetMethodProperty_m1794768370 (); extern "C" void MethodDictionary_SetMethodProperty_m3901784959 (); extern "C" void MethodDictionary_get_Values_m1423085072 (); extern "C" void MethodDictionary_Add_m3929391976 (); extern "C" void MethodDictionary_Contains_m853564490 (); extern "C" void MethodDictionary_Remove_m2229484935 (); extern "C" void MethodDictionary_get_Count_m2528789795 (); extern "C" void MethodDictionary_get_IsSynchronized_m687173714 (); extern "C" void MethodDictionary_get_SyncRoot_m1527806020 (); extern "C" void MethodDictionary_CopyTo_m3173648216 (); extern "C" void MethodDictionary_GetEnumerator_m3961911347 (); extern "C" void DictionaryEnumerator__ctor_m2093730731 (); extern "C" void DictionaryEnumerator_get_Current_m4121501765 (); extern "C" void DictionaryEnumerator_MoveNext_m2250771332 (); extern "C" void DictionaryEnumerator_Reset_m1033504463 (); extern "C" void DictionaryEnumerator_get_Entry_m1513521232 (); extern "C" void DictionaryEnumerator_get_Key_m2050366763 (); extern "C" void DictionaryEnumerator_get_Value_m60906749 (); extern "C" void MethodReturnDictionary__ctor_m1989303198 (); extern "C" void MethodReturnDictionary__cctor_m131783842 (); extern "C" void MonoMethodMessage_get_Args_m2372385990 (); extern "C" void MonoMethodMessage_get_LogicalCallContext_m4081651649 (); extern "C" void MonoMethodMessage_get_MethodBase_m1950873241 (); extern "C" void MonoMethodMessage_get_MethodName_m2720364837 (); extern "C" void MonoMethodMessage_get_MethodSignature_m1148728082 (); extern "C" void MonoMethodMessage_get_TypeName_m2637395646 (); extern "C" void MonoMethodMessage_get_Uri_m2730617429 (); extern "C" void MonoMethodMessage_set_Uri_m1005536772 (); extern "C" void MonoMethodMessage_get_Exception_m1373061008 (); extern "C" void MonoMethodMessage_get_OutArgCount_m1218080105 (); extern "C" void MonoMethodMessage_get_OutArgs_m754565220 (); extern "C" void MonoMethodMessage_get_ReturnValue_m2245026524 (); extern "C" void ObjRefSurrogate__ctor_m2681375704 (); extern "C" void ObjRefSurrogate_SetObjectData_m1124693972 (); extern "C" void RemotingSurrogate__ctor_m1724131135 (); extern "C" void RemotingSurrogate_SetObjectData_m3663110203 (); extern "C" void RemotingSurrogateSelector__ctor_m1480647200 (); extern "C" void RemotingSurrogateSelector__cctor_m2468294029 (); extern "C" void RemotingSurrogateSelector_GetSurrogate_m2656182773 (); extern "C" void ReturnMessage__ctor_m1311493117 (); extern "C" void ReturnMessage__ctor_m3758991866 (); extern "C" void ReturnMessage_System_Runtime_Remoting_Messaging_IInternalMessage_set_Uri_m1208934489 (); extern "C" void ReturnMessage_get_Args_m1415412666 (); extern "C" void ReturnMessage_get_LogicalCallContext_m2558823349 (); extern "C" void ReturnMessage_get_MethodBase_m1896590733 (); extern "C" void ReturnMessage_get_MethodName_m2648484121 (); extern "C" void ReturnMessage_get_MethodSignature_m2675815582 (); extern "C" void ReturnMessage_get_Properties_m3370534783 (); extern "C" void ReturnMessage_get_TypeName_m3911062450 (); extern "C" void ReturnMessage_get_Uri_m1363018977 (); extern "C" void ReturnMessage_set_Uri_m4046194808 (); extern "C" void ReturnMessage_get_Exception_m564038940 (); extern "C" void ReturnMessage_get_OutArgs_m1555180784 (); extern "C" void ReturnMessage_get_ReturnValue_m4052519528 (); extern "C" void ServerContextTerminatorSink__ctor_m1506077966 (); extern "C" void ServerObjectTerminatorSink__ctor_m1125592933 (); extern "C" void StackBuilderSink__ctor_m3066732051 (); extern "C" void SoapAttribute__ctor_m1039917386 (); extern "C" void SoapAttribute_get_UseAttribute_m962217818 (); extern "C" void SoapAttribute_get_XmlNamespace_m1118853738 (); extern "C" void SoapAttribute_SetReflectionObject_m4198154016 (); extern "C" void SoapFieldAttribute__ctor_m3376415230 (); extern "C" void SoapFieldAttribute_get_XmlElementName_m3340405532 (); extern "C" void SoapFieldAttribute_IsInteropXmlElement_m3949259990 (); extern "C" void SoapFieldAttribute_SetReflectionObject_m4166766060 (); extern "C" void SoapMethodAttribute__ctor_m2943197643 (); extern "C" void SoapMethodAttribute_get_UseAttribute_m1295413945 (); extern "C" void SoapMethodAttribute_get_XmlNamespace_m3561998601 (); extern "C" void SoapMethodAttribute_SetReflectionObject_m1225111039 (); extern "C" void SoapParameterAttribute__ctor_m498933869 (); extern "C" void SoapTypeAttribute__ctor_m763881636 (); extern "C" void SoapTypeAttribute_get_UseAttribute_m833942208 (); extern "C" void SoapTypeAttribute_get_XmlElementName_m1699653532 (); extern "C" void SoapTypeAttribute_get_XmlNamespace_m154651984 (); extern "C" void SoapTypeAttribute_get_XmlTypeName_m3245067378 (); extern "C" void SoapTypeAttribute_get_XmlTypeNamespace_m1186792374 (); extern "C" void SoapTypeAttribute_get_IsInteropXmlElement_m4004084751 (); extern "C" void SoapTypeAttribute_get_IsInteropXmlType_m2081107945 (); extern "C" void SoapTypeAttribute_SetReflectionObject_m333377414 (); extern "C" void ObjRef__ctor_m1153489184 (); extern "C" void ObjRef__ctor_m2174528097 (); extern "C" void ObjRef__cctor_m916330125 (); extern "C" void ObjRef_get_IsReferenceToWellKnow_m2771899016 (); extern "C" void ObjRef_get_ChannelInfo_m2862076953 (); extern "C" void ObjRef_get_EnvoyInfo_m2219083329 (); extern "C" void ObjRef_set_EnvoyInfo_m2077304852 (); extern "C" void ObjRef_get_TypeInfo_m3305027018 (); extern "C" void ObjRef_set_TypeInfo_m752870763 (); extern "C" void ObjRef_get_URI_m1667957438 (); extern "C" void ObjRef_set_URI_m837283029 (); extern "C" void ObjRef_GetObjectData_m1166147774 (); extern "C" void ObjRef_GetRealObject_m2762672246 (); extern "C" void ObjRef_UpdateChannelInfo_m3151551622 (); extern "C" void ObjRef_get_ServerType_m164890532 (); extern "C" void ProviderData__ctor_m1408233505 (); extern "C" void ProviderData_CopyFrom_m2676975089 (); extern "C" void ProxyAttribute_CreateInstance_m980921561 (); extern "C" void ProxyAttribute_CreateProxy_m2844329499 (); extern "C" void ProxyAttribute_GetPropertiesForNewContext_m3270579674 (); extern "C" void ProxyAttribute_IsContextOK_m3044902249 (); extern "C" void RealProxy__ctor_m1052917757 (); extern "C" void RealProxy__ctor_m353424490 (); extern "C" void RealProxy__ctor_m3053042265 (); extern "C" void RealProxy_InternalGetProxyType_m1321633559 (); extern "C" void RealProxy_GetProxiedType_m3786182287 (); extern "C" void RealProxy_get_ObjectIdentity_m347429559 (); extern "C" void RealProxy_InternalGetTransparentProxy_m1628758334 (); extern "C" void RealProxy_GetTransparentProxy_m1295804673 (); extern "C" void RealProxy_SetTargetDomain_m1954293026 (); extern "C" void RemotingProxy__ctor_m1901097423 (); extern "C" void RemotingProxy__ctor_m2863168224 (); extern "C" void RemotingProxy__cctor_m4243178796 (); extern "C" void RemotingProxy_get_TypeName_m4078823342 (); extern "C" void RemotingProxy_Finalize_m1311356449 (); extern "C" void RemotingConfiguration__cctor_m689717558 (); extern "C" void RemotingConfiguration_get_ApplicationName_m2748314218 (); extern "C" void RemotingConfiguration_set_ApplicationName_m755243983 (); extern "C" void RemotingConfiguration_get_ProcessId_m583559449 (); extern "C" void RemotingConfiguration_LoadDefaultDelayedChannels_m1856615844 (); extern "C" void RemotingConfiguration_IsRemotelyActivatedClientType_m3024852690 (); extern "C" void RemotingConfiguration_RegisterActivatedClientType_m3696695158 (); extern "C" void RemotingConfiguration_RegisterActivatedServiceType_m3120657222 (); extern "C" void RemotingConfiguration_RegisterWellKnownClientType_m2985305086 (); extern "C" void RemotingConfiguration_RegisterWellKnownServiceType_m826541254 (); extern "C" void RemotingConfiguration_RegisterChannelTemplate_m2900462572 (); extern "C" void RemotingConfiguration_RegisterClientProviderTemplate_m3268554933 (); extern "C" void RemotingConfiguration_RegisterServerProviderTemplate_m3283034669 (); extern "C" void RemotingConfiguration_RegisterChannels_m76287740 (); extern "C" void RemotingConfiguration_RegisterTypes_m3102371468 (); extern "C" void RemotingConfiguration_SetCustomErrorsMode_m4004559116 (); extern "C" void RemotingException__ctor_m2438243102 (); extern "C" void RemotingException__ctor_m3169549476 (); extern "C" void RemotingException__ctor_m1465301855 (); extern "C" void RemotingException__ctor_m2401554 (); extern "C" void RemotingServices__cctor_m722143346 (); extern "C" void RemotingServices_GetVirtualMethod_m2492796715 (); extern "C" void RemotingServices_IsTransparentProxy_m3544746083 (); extern "C" void RemotingServices_GetServerTypeForUri_m2370855021 (); extern "C" void RemotingServices_Unmarshal_m3453424695 (); extern "C" void RemotingServices_Unmarshal_m3493161574 (); extern "C" void RemotingServices_GetRealProxy_m469180406 (); extern "C" void RemotingServices_GetMethodBaseFromMethodMessage_m589251925 (); extern "C" void RemotingServices_GetMethodBaseFromName_m1109362245 (); extern "C" void RemotingServices_FindInterfaceMethod_m1641296449 (); extern "C" void RemotingServices_CreateClientProxy_m1188122341 (); extern "C" void RemotingServices_CreateClientProxy_m1887308374 (); extern "C" void RemotingServices_CreateClientProxyForContextBound_m9934294 (); extern "C" void RemotingServices_GetIdentityForUri_m1730131113 (); extern "C" void RemotingServices_RemoveAppNameFromUri_m1113505532 (); extern "C" void RemotingServices_GetOrCreateClientIdentity_m3862611826 (); extern "C" void RemotingServices_GetClientChannelSinkChain_m3823167339 (); extern "C" void RemotingServices_CreateWellKnownServerIdentity_m2420008897 (); extern "C" void RemotingServices_RegisterServerIdentity_m3253238710 (); extern "C" void RemotingServices_GetProxyForRemoteObject_m1565953531 (); extern "C" void RemotingServices_GetRemoteObject_m2559997024 (); extern "C" void RemotingServices_RegisterInternalChannels_m3428095417 (); extern "C" void RemotingServices_DisposeIdentity_m167351746 (); extern "C" void RemotingServices_GetNormalizedUri_m2995472567 (); extern "C" void ServerIdentity__ctor_m2878147351 (); extern "C" void ServerIdentity_get_ObjectType_m2513984357 (); extern "C" void ServerIdentity_CreateObjRef_m4237980959 (); extern "C" void TrackingServices__cctor_m1041791976 (); extern "C" void TrackingServices_NotifyUnmarshaledObject_m1221428029 (); extern "C" void SingleCallIdentity__ctor_m4127814196 (); extern "C" void SingletonIdentity__ctor_m2376592061 (); extern "C" void SoapServices__cctor_m3438713338 (); extern "C" void SoapServices_get_XmlNsForClrTypeWithAssembly_m1233821831 (); extern "C" void SoapServices_get_XmlNsForClrTypeWithNs_m2315111590 (); extern "C" void SoapServices_get_XmlNsForClrTypeWithNsAndAssembly_m1138177465 (); extern "C" void SoapServices_CodeXmlNamespaceForClrTypeNamespace_m3714871648 (); extern "C" void SoapServices_GetNameKey_m190008428 (); extern "C" void SoapServices_GetAssemblyName_m2151150175 (); extern "C" void SoapServices_GetXmlElementForInteropType_m694138433 (); extern "C" void SoapServices_GetXmlNamespaceForMethodCall_m1539585932 (); extern "C" void SoapServices_GetXmlNamespaceForMethodResponse_m1087154351 (); extern "C" void SoapServices_GetXmlTypeForInteropType_m433232637 (); extern "C" void SoapServices_PreLoad_m4092312816 (); extern "C" void SoapServices_PreLoad_m2947375647 (); extern "C" void SoapServices_RegisterInteropXmlElement_m3512159329 (); extern "C" void SoapServices_RegisterInteropXmlType_m43028713 (); extern "C" void SoapServices_EncodeNs_m2474727155 (); extern "C" void TypeInfo__ctor_m2434846844 (); extern "C" void TypeEntry__ctor_m1060506194 (); extern "C" void TypeEntry_get_AssemblyName_m3220339849 (); extern "C" void TypeEntry_set_AssemblyName_m4010276098 (); extern "C" void TypeEntry_get_TypeName_m4090180189 (); extern "C" void TypeEntry_set_TypeName_m2319758382 (); extern "C" void TypeInfo__ctor_m1057142149 (); extern "C" void TypeInfo_get_TypeName_m2595262561 (); extern "C" void WellKnownClientTypeEntry__ctor_m4275779958 (); extern "C" void WellKnownClientTypeEntry_get_ApplicationUrl_m3216150955 (); extern "C" void WellKnownClientTypeEntry_get_ObjectType_m119167804 (); extern "C" void WellKnownClientTypeEntry_get_ObjectUrl_m2741314918 (); extern "C" void WellKnownClientTypeEntry_ToString_m395526031 (); extern "C" void WellKnownServiceTypeEntry__ctor_m1727189747 (); extern "C" void WellKnownServiceTypeEntry_get_Mode_m1841666540 (); extern "C" void WellKnownServiceTypeEntry_get_ObjectType_m3793356090 (); extern "C" void WellKnownServiceTypeEntry_get_ObjectUri_m2111376023 (); extern "C" void WellKnownServiceTypeEntry_ToString_m1826608795 (); extern "C" void ArrayFixupRecord__ctor_m1595031114 (); extern "C" void ArrayFixupRecord_FixupImpl_m3206607916 (); extern "C" void BaseFixupRecord__ctor_m1604080483 (); extern "C" void BaseFixupRecord_DoFixup_m3820060226 (); extern "C" void DelayedFixupRecord__ctor_m4059832882 (); extern "C" void DelayedFixupRecord_FixupImpl_m2011618677 (); extern "C" void FixupRecord__ctor_m118269336 (); extern "C" void FixupRecord_FixupImpl_m200950775 (); extern "C" void FormatterConverter__ctor_m1043791595 (); extern "C" void FormatterConverter_Convert_m3073452726 (); extern "C" void FormatterConverter_ToBoolean_m2230601372 (); extern "C" void FormatterConverter_ToInt16_m2745602716 (); extern "C" void FormatterConverter_ToInt32_m3613732188 (); extern "C" void FormatterConverter_ToInt64_m1777417340 (); extern "C" void FormatterConverter_ToString_m1400688178 (); extern "C" void BinaryCommon__cctor_m1035902784 (); extern "C" void BinaryCommon_IsPrimitive_m1612386671 (); extern "C" void BinaryCommon_GetTypeFromCode_m4044019293 (); extern "C" void BinaryCommon_SwapBytes_m2472266694 (); extern "C" void BinaryFormatter__ctor_m1913171908 (); extern "C" void BinaryFormatter__ctor_m203421689 (); extern "C" void BinaryFormatter_get_DefaultSurrogateSelector_m2270608689 (); extern "C" void BinaryFormatter_set_AssemblyFormat_m2535395303 (); extern "C" void BinaryFormatter_get_Binder_m2433428471 (); extern "C" void BinaryFormatter_get_Context_m888837013 (); extern "C" void BinaryFormatter_get_SurrogateSelector_m862097470 (); extern "C" void BinaryFormatter_get_FilterLevel_m123523474 (); extern "C" void BinaryFormatter_Deserialize_m3942088227 (); extern "C" void BinaryFormatter_NoCheckDeserialize_m2451994899 (); extern "C" void BinaryFormatter_ReadBinaryHeader_m258242310 (); extern "C" void MessageFormatter_ReadMethodCall_m3773075223 (); extern "C" void MessageFormatter_ReadMethodResponse_m1841037205 (); extern "C" void ObjectReader__ctor_m1992894345 (); extern "C" void ObjectReader_ReadObjectGraph_m1835146551 (); extern "C" void ObjectReader_ReadObjectGraph_m2201506625 (); extern "C" void ObjectReader_ReadNextObject_m4049777926 (); extern "C" void ObjectReader_ReadNextObject_m3897181286 (); extern "C" void ObjectReader_get_CurrentObject_m4031544313 (); extern "C" void ObjectReader_ReadObject_m2173880932 (); extern "C" void ObjectReader_ReadAssembly_m464051452 (); extern "C" void ObjectReader_ReadObjectInstance_m253133777 (); extern "C" void ObjectReader_ReadRefTypeObjectInstance_m4137899912 (); extern "C" void ObjectReader_ReadObjectContent_m4032833558 (); extern "C" void ObjectReader_RegisterObject_m190056615 (); extern "C" void ObjectReader_ReadStringIntance_m210342955 (); extern "C" void ObjectReader_ReadGenericArray_m166573042 (); extern "C" void ObjectReader_ReadBoxedPrimitiveTypeValue_m2629547009 (); extern "C" void ObjectReader_ReadArrayOfPrimitiveType_m2810313603 (); extern "C" void ObjectReader_BlockRead_m3199952246 (); extern "C" void ObjectReader_ReadArrayOfObject_m3481608297 (); extern "C" void ObjectReader_ReadArrayOfString_m2679882455 (); extern "C" void ObjectReader_ReadSimpleArray_m1445274814 (); extern "C" void ObjectReader_ReadTypeMetadata_m2931187119 (); extern "C" void ObjectReader_ReadValue_m122066046 (); extern "C" void ObjectReader_SetObjectValue_m1699342176 (); extern "C" void ObjectReader_RecordFixup_m1141700914 (); extern "C" void ObjectReader_GetDeserializationType_m932539476 (); extern "C" void ObjectReader_ReadType_m524105739 (); extern "C" void ObjectReader_ReadPrimitiveTypeValue_m3787758564 (); extern "C" void ArrayNullFiller__ctor_m241052615 (); extern "C" void TypeMetadata__ctor_m2168678135 (); extern "C" void FormatterServices_GetUninitializedObject_m113523001 (); extern "C" void FormatterServices_GetSafeUninitializedObject_m133866342 (); extern "C" void MultiArrayFixupRecord__ctor_m3677967923 (); extern "C" void MultiArrayFixupRecord_FixupImpl_m2043330103 (); extern "C" void ObjectManager__ctor_m2952664102 (); extern "C" void ObjectManager_DoFixups_m109839835 (); extern "C" void ObjectManager_GetObjectRecord_m2090112317 (); extern "C" void ObjectManager_GetObject_m3336105927 (); extern "C" void ObjectManager_RaiseDeserializationEvent_m4065308332 (); extern "C" void ObjectManager_RaiseOnDeserializingEvent_m2769114934 (); extern "C" void ObjectManager_RaiseOnDeserializedEvent_m3868580957 (); extern "C" void ObjectManager_AddFixup_m470602911 (); extern "C" void ObjectManager_RecordArrayElementFixup_m2718232708 (); extern "C" void ObjectManager_RecordArrayElementFixup_m1349242662 (); extern "C" void ObjectManager_RecordDelayedFixup_m3667857086 (); extern "C" void ObjectManager_RecordFixup_m542439812 (); extern "C" void ObjectManager_RegisterObjectInternal_m1270172209 (); extern "C" void ObjectManager_RegisterObject_m2067765899 (); extern "C" void ObjectRecord__ctor_m3259851313 (); extern "C" void ObjectRecord_SetMemberValue_m4010306395 (); extern "C" void ObjectRecord_SetArrayValue_m2737762809 (); extern "C" void ObjectRecord_SetMemberValue_m2579656503 (); extern "C" void ObjectRecord_get_IsInstanceReady_m760710444 (); extern "C" void ObjectRecord_get_IsUnsolvedObjectReference_m201102828 (); extern "C" void ObjectRecord_get_IsRegistered_m3870447238 (); extern "C" void ObjectRecord_DoFixups_m2556266664 (); extern "C" void ObjectRecord_RemoveFixup_m716979711 (); extern "C" void ObjectRecord_UnchainFixup_m3906372306 (); extern "C" void ObjectRecord_ChainFixup_m2539942872 (); extern "C" void ObjectRecord_LoadData_m3154866397 (); extern "C" void ObjectRecord_get_HasPendingFixups_m2308927162 (); extern "C" void SerializationBinder__ctor_m3744708139 (); extern "C" void SerializationCallbacks__ctor_m2320337270 (); extern "C" void SerializationCallbacks__cctor_m562445802 (); extern "C" void SerializationCallbacks_get_HasDeserializedCallbacks_m4051490391 (); extern "C" void SerializationCallbacks_GetMethodsByAttribute_m1743114550 (); extern "C" void SerializationCallbacks_Invoke_m807932308 (); extern "C" void SerializationCallbacks_RaiseOnDeserializing_m873572750 (); extern "C" void SerializationCallbacks_RaiseOnDeserialized_m361044335 (); extern "C" void SerializationCallbacks_GetSerializationCallbacks_m1535695330 (); extern "C" void CallbackHandler__ctor_m33772597 (); extern "C" void CallbackHandler_Invoke_m2801241699 (); extern "C" void CallbackHandler_BeginInvoke_m1384672208 (); extern "C" void CallbackHandler_EndInvoke_m522922181 (); extern "C" void SerializationEntry__ctor_m2883191396 (); extern "C" void SerializationEntry_get_Name_m929676406 (); extern "C" void SerializationEntry_get_Value_m522021722 (); extern "C" void SerializationException__ctor_m136694722 (); extern "C" void SerializationException__ctor_m4216356480 (); extern "C" void SerializationException__ctor_m987964931 (); extern "C" void SerializationInfo__ctor_m2583224808 (); extern "C" void SerializationInfo_AddValue_m3341936982 (); extern "C" void SerializationInfo_GetValue_m4125471336 (); extern "C" void SerializationInfo_SetType_m3215055064 (); extern "C" void SerializationInfo_GetEnumerator_m2631907363 (); extern "C" void SerializationInfo_AddValue_m2348538716 (); extern "C" void SerializationInfo_AddValue_m2348540514 (); extern "C" void SerializationInfo_AddValue_m3573408328 (); extern "C" void SerializationInfo_AddValue_m1083712391 (); extern "C" void SerializationInfo_AddValue_m4223301306 (); extern "C" void SerializationInfo_AddValue_m2348543459 (); extern "C" void SerializationInfo_AddValue_m787542410 (); extern "C" void SerializationInfo_AddValue_m469120675 (); extern "C" void SerializationInfo_GetBoolean_m1462266865 (); extern "C" void SerializationInfo_GetInt16_m3179906481 (); extern "C" void SerializationInfo_GetInt32_m4048035953 (); extern "C" void SerializationInfo_GetInt64_m2211721105 (); extern "C" void SerializationInfo_GetString_m52579033 (); extern "C" void SerializationInfoEnumerator__ctor_m1782497732 (); extern "C" void SerializationInfoEnumerator_System_Collections_IEnumerator_get_Current_m1751158349 (); extern "C" void SerializationInfoEnumerator_get_Current_m1674825235 (); extern "C" void SerializationInfoEnumerator_get_Name_m4156977240 (); extern "C" void SerializationInfoEnumerator_get_Value_m4259496148 (); extern "C" void SerializationInfoEnumerator_MoveNext_m4116766855 (); extern "C" void SerializationInfoEnumerator_Reset_m1660715632 (); extern "C" void StreamingContext__ctor_m165676124 (); extern "C" void StreamingContext__ctor_m404323882 (); extern "C" void StreamingContext_get_State_m334223851 (); extern "C" void StreamingContext_Equals_m3567411783 (); extern "C" void StreamingContext_GetHashCode_m1804520735 (); extern "C" void RuntimeFieldHandle__ctor_m4059484332 (); extern "C" void RuntimeFieldHandle_get_Value_m2124751302 (); extern "C" void RuntimeFieldHandle_GetObjectData_m1415752713 (); extern "C" void RuntimeFieldHandle_Equals_m3155639198 (); extern "C" void RuntimeFieldHandle_GetHashCode_m2620685942 (); extern "C" void RuntimeMethodHandle__ctor_m794057668 (); extern "C" void RuntimeMethodHandle__ctor_m3786030033 (); extern "C" void RuntimeMethodHandle_get_Value_m2270388129 (); extern "C" void RuntimeMethodHandle_GetObjectData_m3915325998 (); extern "C" void RuntimeMethodHandle_Equals_m3425680831 (); extern "C" void RuntimeMethodHandle_GetHashCode_m1771691683 (); extern "C" void RuntimeTypeHandle__ctor_m437060952 (); extern "C" void RuntimeTypeHandle_get_Value_m3549598952 (); extern "C" void RuntimeTypeHandle_GetObjectData_m2331997365 (); extern "C" void RuntimeTypeHandle_Equals_m3214712582 (); extern "C" void RuntimeTypeHandle_GetHashCode_m3575892074 (); extern "C" void SByte_System_IConvertible_ToBoolean_m1411907866 (); extern "C" void SByte_System_IConvertible_ToByte_m3014394206 (); extern "C" void SByte_System_IConvertible_ToChar_m209662238 (); extern "C" void SByte_System_IConvertible_ToDateTime_m3199045182 (); extern "C" void SByte_System_IConvertible_ToDecimal_m829366252 (); extern "C" void SByte_System_IConvertible_ToDouble_m2644916926 (); extern "C" void SByte_System_IConvertible_ToInt16_m4101107826 (); extern "C" void SByte_System_IConvertible_ToInt32_m2973330534 (); extern "C" void SByte_System_IConvertible_ToInt64_m1274211428 (); extern "C" void SByte_System_IConvertible_ToSByte_m637716800 (); extern "C" void SByte_System_IConvertible_ToSingle_m3135592030 (); extern "C" void SByte_System_IConvertible_ToType_m767613158 (); extern "C" void SByte_System_IConvertible_ToUInt16_m2610191870 (); extern "C" void SByte_System_IConvertible_ToUInt32_m4285595070 (); extern "C" void SByte_System_IConvertible_ToUInt64_m439236702 (); extern "C" void SByte_CompareTo_m2989383868 (); extern "C" void SByte_Equals_m1310501829 (); extern "C" void SByte_GetHashCode_m3213675817 (); extern "C" void SByte_CompareTo_m874593596 (); extern "C" void SByte_Equals_m958983443 (); extern "C" void SByte_Parse_m1565801368 (); extern "C" void SByte_Parse_m798902410 (); extern "C" void SByte_Parse_m1445278549 (); extern "C" void SByte_TryParse_m1515780220 (); extern "C" void SByte_ToString_m1290989501 (); extern "C" void SByte_ToString_m3084859627 (); extern "C" void SByte_ToString_m1923672677 (); extern "C" void SByte_ToString_m926863599 (); extern "C" void CodeAccessPermission__ctor_m1762050467 (); extern "C" void CodeAccessPermission_Equals_m3733109266 (); extern "C" void CodeAccessPermission_GetHashCode_m621045366 (); extern "C" void CodeAccessPermission_ToString_m4186930320 (); extern "C" void CodeAccessPermission_Element_m2845355336 (); extern "C" void CodeAccessPermission_ThrowInvalidPermission_m1519167963 (); extern "C" void AsymmetricAlgorithm__ctor_m1763307756 (); extern "C" void AsymmetricAlgorithm_System_IDisposable_Dispose_m2114841139 (); extern "C" void AsymmetricAlgorithm_get_KeySize_m3282676997 (); extern "C" void AsymmetricAlgorithm_set_KeySize_m503039102 (); extern "C" void AsymmetricAlgorithm_Clear_m3464408343 (); extern "C" void AsymmetricAlgorithm_GetNamedParam_m3241367956 (); extern "C" void AsymmetricKeyExchangeFormatter__ctor_m2175301955 (); extern "C" void AsymmetricSignatureDeformatter__ctor_m3630952218 (); extern "C" void AsymmetricSignatureFormatter__ctor_m497260761 (); extern "C" void Base64Constants__cctor_m1458390568 (); extern "C" void CryptoConfig__cctor_m3908597263 (); extern "C" void CryptoConfig_Initialize_m2703294454 (); extern "C" void CryptoConfig_CreateFromName_m3477093824 (); extern "C" void CryptoConfig_CreateFromName_m3520877612 (); extern "C" void CryptoConfig_MapNameToOID_m2965471927 (); extern "C" void CryptoConfig_EncodeOID_m3599780936 (); extern "C" void CryptoConfig_EncodeLongNumber_m2423541609 (); extern "C" void CryptographicException__ctor_m1518651353 (); extern "C" void CryptographicException__ctor_m2400722889 (); extern "C" void CryptographicException__ctor_m2542276749 (); extern "C" void CryptographicException__ctor_m1958048837 (); extern "C" void CryptographicException__ctor_m3585438106 (); extern "C" void CryptographicUnexpectedOperationException__ctor_m947087589 (); extern "C" void CryptographicUnexpectedOperationException__ctor_m1444713021 (); extern "C" void CryptographicUnexpectedOperationException__ctor_m3151554726 (); extern "C" void CspParameters__ctor_m3804826267 (); extern "C" void CspParameters__ctor_m2607591276 (); extern "C" void CspParameters__ctor_m622357160 (); extern "C" void CspParameters__ctor_m1032703204 (); extern "C" void CspParameters_get_Flags_m85401037 (); extern "C" void CspParameters_set_Flags_m3780635110 (); extern "C" void DES__ctor_m55215635 (); extern "C" void DES__cctor_m1229588474 (); extern "C" void DES_Create_m3635864569 (); extern "C" void DES_Create_m2951526313 (); extern "C" void DES_IsWeakKey_m395042781 (); extern "C" void DES_IsSemiWeakKey_m2127857387 (); extern "C" void DES_get_Key_m1355368637 (); extern "C" void DES_set_Key_m2925591286 (); extern "C" void DESCryptoServiceProvider__ctor_m611616238 (); extern "C" void DESCryptoServiceProvider_CreateDecryptor_m803126126 (); extern "C" void DESCryptoServiceProvider_CreateEncryptor_m1108854678 (); extern "C" void DESCryptoServiceProvider_GenerateIV_m3244683960 (); extern "C" void DESCryptoServiceProvider_GenerateKey_m1803326710 (); extern "C" void DESTransform__ctor_m3930717539 (); extern "C" void DESTransform__cctor_m3334109542 (); extern "C" void DESTransform_CipherFunct_m2387646882 (); extern "C" void DESTransform_Permutation_m2822081834 (); extern "C" void DESTransform_BSwap_m93014511 (); extern "C" void DESTransform_SetKey_m2023182447 (); extern "C" void DESTransform_ProcessBlock_m2076172049 (); extern "C" void DESTransform_ECB_m1050005411 (); extern "C" void DESTransform_GetStrongKey_m1123999973 (); extern "C" void DSA__ctor_m4204943475 (); extern "C" void DSA_Create_m2357499897 (); extern "C" void DSA_Create_m1124303785 (); extern "C" void DSA_ZeroizePrivateKey_m2681539184 (); extern "C" void DSA_FromXmlString_m4148544211 (); extern "C" void DSA_ToXmlString_m996177170 (); extern "C" void DSACryptoServiceProvider__ctor_m515501966 (); extern "C" void DSACryptoServiceProvider__ctor_m2273755103 (); extern "C" void DSACryptoServiceProvider__ctor_m3049271344 (); extern "C" void DSACryptoServiceProvider__cctor_m2613562847 (); extern "C" void DSACryptoServiceProvider_Finalize_m2913492500 (); extern "C" void DSACryptoServiceProvider_get_KeySize_m1055041503 (); extern "C" void DSACryptoServiceProvider_get_PublicOnly_m1018144562 (); extern "C" void DSACryptoServiceProvider_ExportParameters_m1890915433 (); extern "C" void DSACryptoServiceProvider_ImportParameters_m2336972636 (); extern "C" void DSACryptoServiceProvider_CreateSignature_m1822226263 (); extern "C" void DSACryptoServiceProvider_VerifySignature_m4027423871 (); extern "C" void DSACryptoServiceProvider_Dispose_m4270261890 (); extern "C" void DSACryptoServiceProvider_OnKeyGenerated_m3628123519 (); extern "C" void DSASignatureDeformatter__ctor_m611619298 (); extern "C" void DSASignatureDeformatter__ctor_m1067293596 (); extern "C" void DSASignatureDeformatter_SetHashAlgorithm_m30772481 (); extern "C" void DSASignatureDeformatter_SetKey_m2248380921 (); extern "C" void DSASignatureDeformatter_VerifySignature_m909896559 (); extern "C" void DSASignatureDescription__ctor_m3617515695 (); extern "C" void DSASignatureFormatter__ctor_m1468419489 (); extern "C" void DSASignatureFormatter_CreateSignature_m3786868856 (); extern "C" void DSASignatureFormatter_SetHashAlgorithm_m976206784 (); extern "C" void DSASignatureFormatter_SetKey_m4110297114 (); extern "C" void HashAlgorithm__ctor_m1204858244 (); extern "C" void HashAlgorithm_System_IDisposable_Dispose_m562789531 (); extern "C" void HashAlgorithm_get_CanReuseTransform_m3088450879 (); extern "C" void HashAlgorithm_ComputeHash_m1325366732 (); extern "C" void HashAlgorithm_ComputeHash_m2755161132 (); extern "C" void HashAlgorithm_Create_m2014549577 (); extern "C" void HashAlgorithm_get_Hash_m376137601 (); extern "C" void HashAlgorithm_get_HashSize_m2207294548 (); extern "C" void HashAlgorithm_Dispose_m666835064 (); extern "C" void HashAlgorithm_TransformBlock_m3829135048 (); extern "C" void HashAlgorithm_TransformFinalBlock_m1193599374 (); extern "C" void HMAC__ctor_m1246202746 (); extern "C" void HMAC_get_BlockSizeValue_m1165487130 (); extern "C" void HMAC_set_BlockSizeValue_m2390739579 (); extern "C" void HMAC_set_HashName_m876988162 (); extern "C" void HMAC_get_Key_m1472198904 (); extern "C" void HMAC_set_Key_m2294913711 (); extern "C" void HMAC_get_Block_m1790455563 (); extern "C" void HMAC_KeySetup_m198221232 (); extern "C" void HMAC_Dispose_m2786544238 (); extern "C" void HMAC_HashCore_m2163573618 (); extern "C" void HMAC_HashFinal_m2672326474 (); extern "C" void HMAC_Initialize_m1079175002 (); extern "C" void HMAC_Create_m3219387469 (); extern "C" void HMAC_Create_m2470432725 (); extern "C" void HMACMD5__ctor_m1093218926 (); extern "C" void HMACMD5__ctor_m1675538459 (); extern "C" void HMACRIPEMD160__ctor_m3981873572 (); extern "C" void HMACRIPEMD160__ctor_m2607560869 (); extern "C" void HMACSHA1__ctor_m3424706677 (); extern "C" void HMACSHA1__ctor_m2388804980 (); extern "C" void HMACSHA256__ctor_m1517498323 (); extern "C" void HMACSHA256__ctor_m3052953302 (); extern "C" void HMACSHA384__ctor_m943721271 (); extern "C" void HMACSHA384__ctor_m2580162034 (); extern "C" void HMACSHA384__cctor_m3003459414 (); extern "C" void HMACSHA384_set_ProduceLegacyHmacValues_m1568488641 (); extern "C" void HMACSHA512__ctor_m1288671344 (); extern "C" void HMACSHA512__ctor_m700228953 (); extern "C" void HMACSHA512__cctor_m812009789 (); extern "C" void HMACSHA512_set_ProduceLegacyHmacValues_m667703674 (); extern "C" void KeyedHashAlgorithm__ctor_m3887748574 (); extern "C" void KeyedHashAlgorithm_Finalize_m1932170692 (); extern "C" void KeyedHashAlgorithm_get_Key_m2526120156 (); extern "C" void KeyedHashAlgorithm_set_Key_m1327774667 (); extern "C" void KeyedHashAlgorithm_Dispose_m2870004946 (); extern "C" void KeyedHashAlgorithm_ZeroizeKey_m2894944313 (); extern "C" void KeySizes__ctor_m428291391 (); extern "C" void KeySizes_get_MaxSize_m213719012 (); extern "C" void KeySizes_get_MinSize_m986197586 (); extern "C" void KeySizes_get_SkipSize_m3502127683 (); extern "C" void KeySizes_IsLegal_m1623778158 (); extern "C" void KeySizes_IsLegalKeySize_m620693618 (); extern "C" void MACTripleDES__ctor_m1156967612 (); extern "C" void MACTripleDES_Setup_m1287775502 (); extern "C" void MACTripleDES_Finalize_m212085286 (); extern "C" void MACTripleDES_Dispose_m2913920944 (); extern "C" void MACTripleDES_Initialize_m3105423192 (); extern "C" void MACTripleDES_HashCore_m670642740 (); extern "C" void MACTripleDES_HashFinal_m3628572044 (); extern "C" void MD5__ctor_m319382023 (); extern "C" void MD5_Create_m3551683961 (); extern "C" void MD5_Create_m1448060457 (); extern "C" void MD5CryptoServiceProvider__ctor_m2509400698 (); extern "C" void MD5CryptoServiceProvider__cctor_m4294881395 (); extern "C" void MD5CryptoServiceProvider_Finalize_m3752913832 (); extern "C" void MD5CryptoServiceProvider_Dispose_m365177198 (); extern "C" void MD5CryptoServiceProvider_HashCore_m255435378 (); extern "C" void MD5CryptoServiceProvider_HashFinal_m430218570 (); extern "C" void MD5CryptoServiceProvider_Initialize_m4227557466 (); extern "C" void MD5CryptoServiceProvider_ProcessBlock_m1355255830 (); extern "C" void MD5CryptoServiceProvider_ProcessFinalBlock_m2458243595 (); extern "C" void MD5CryptoServiceProvider_AddLength_m3224905112 (); extern "C" void RandomNumberGenerator__ctor_m2911340286 (); extern "C" void RandomNumberGenerator_Create_m2029084057 (); extern "C" void RandomNumberGenerator_Create_m3168592393 (); extern "C" void RC2__ctor_m3351287492 (); extern "C" void RC2_Create_m1909558745 (); extern "C" void RC2_Create_m1027414473 (); extern "C" void RC2_get_EffectiveKeySize_m825827518 (); extern "C" void RC2_get_KeySize_m4162312413 (); extern "C" void RC2_set_KeySize_m3085280342 (); extern "C" void RC2CryptoServiceProvider__ctor_m1138654685 (); extern "C" void RC2CryptoServiceProvider_get_EffectiveKeySize_m741031373 (); extern "C" void RC2CryptoServiceProvider_CreateDecryptor_m1062427871 (); extern "C" void RC2CryptoServiceProvider_CreateEncryptor_m1368156423 (); extern "C" void RC2CryptoServiceProvider_GenerateIV_m4034172969 (); extern "C" void RC2CryptoServiceProvider_GenerateKey_m507682213 (); extern "C" void RC2Transform__ctor_m3390235803 (); extern "C" void RC2Transform__cctor_m754720983 (); extern "C" void RC2Transform_ECB_m224687124 (); extern "C" void Rijndael__ctor_m3342826786 (); extern "C" void Rijndael_Create_m1196531453 (); extern "C" void Rijndael_Create_m3578856229 (); extern "C" void RijndaelManaged__ctor_m504318565 (); extern "C" void RijndaelManaged_GenerateIV_m4176896161 (); extern "C" void RijndaelManaged_GenerateKey_m637133869 (); extern "C" void RijndaelManaged_CreateDecryptor_m382017683 (); extern "C" void RijndaelManaged_CreateEncryptor_m687746235 (); extern "C" void RijndaelManagedTransform__ctor_m380188472 (); extern "C" void RijndaelManagedTransform_System_IDisposable_Dispose_m2279034794 (); extern "C" void RijndaelManagedTransform_get_CanReuseTransform_m1112862356 (); extern "C" void RijndaelManagedTransform_TransformBlock_m549345503 (); extern "C" void RijndaelManagedTransform_TransformFinalBlock_m1653937417 (); extern "C" void RijndaelTransform__ctor_m4212591387 (); extern "C" void RijndaelTransform__cctor_m2341284277 (); extern "C" void RijndaelTransform_Clear_m4008934691 (); extern "C" void RijndaelTransform_ECB_m759186162 (); extern "C" void RijndaelTransform_SubByte_m2002058519 (); extern "C" void RijndaelTransform_Encrypt128_m3918367840 (); extern "C" void RijndaelTransform_Encrypt192_m3340191341 (); extern "C" void RijndaelTransform_Encrypt256_m282559940 (); extern "C" void RijndaelTransform_Decrypt128_m3577856904 (); extern "C" void RijndaelTransform_Decrypt192_m2999680405 (); extern "C" void RijndaelTransform_Decrypt256_m4237016300 (); extern "C" void RIPEMD160__ctor_m3115379325 (); extern "C" void RIPEMD160Managed__ctor_m2275684522 (); extern "C" void RIPEMD160Managed_Initialize_m3724410922 (); extern "C" void RIPEMD160Managed_HashCore_m1945676962 (); extern "C" void RIPEMD160Managed_HashFinal_m3898709370 (); extern "C" void RIPEMD160Managed_Finalize_m3256301432 (); extern "C" void RIPEMD160Managed_ProcessBlock_m2893762534 (); extern "C" void RIPEMD160Managed_Compress_m443778492 (); extern "C" void RIPEMD160Managed_CompressFinal_m4280869119 (); extern "C" void RIPEMD160Managed_ROL_m3397150607 (); extern "C" void RIPEMD160Managed_F_m1849119801 (); extern "C" void RIPEMD160Managed_G_m824425880 (); extern "C" void RIPEMD160Managed_H_m4094699255 (); extern "C" void RIPEMD160Managed_I_m3070005334 (); extern "C" void RIPEMD160Managed_J_m2045311413 (); extern "C" void RIPEMD160Managed_FF_m1086517667 (); extern "C" void RIPEMD160Managed_GG_m1647075779 (); extern "C" void RIPEMD160Managed_HH_m2207633891 (); extern "C" void RIPEMD160Managed_II_m2768192003 (); extern "C" void RIPEMD160Managed_JJ_m3328750115 (); extern "C" void RIPEMD160Managed_FFF_m2515984407 (); extern "C" void RIPEMD160Managed_GGG_m4207329144 (); extern "C" void RIPEMD160Managed_HHH_m1603706585 (); extern "C" void RIPEMD160Managed_III_m3295051322 (); extern "C" void RIPEMD160Managed_JJJ_m691428763 (); extern "C" void RNGCryptoServiceProvider__ctor_m3574180295 (); extern "C" void RNGCryptoServiceProvider__cctor_m2943310534 (); extern "C" void RNGCryptoServiceProvider_Check_m865849837 (); extern "C" void RNGCryptoServiceProvider_RngOpen_m645048892 (); extern "C" void RNGCryptoServiceProvider_RngInitialize_m3158968500 (); extern "C" void RNGCryptoServiceProvider_RngGetBytes_m213562877 (); extern "C" void RNGCryptoServiceProvider_RngClose_m837396522 (); extern "C" void RNGCryptoServiceProvider_GetBytes_m3639238391 (); extern "C" void RNGCryptoServiceProvider_GetNonZeroBytes_m909979576 (); extern "C" void RNGCryptoServiceProvider_Finalize_m1973439803 (); extern "C" void RSA__ctor_m1717134245 (); extern "C" void RSA_Create_m3157832121 (); extern "C" void RSA_Create_m1188512233 (); extern "C" void RSA_ZeroizePrivateKey_m3364848340 (); extern "C" void RSA_FromXmlString_m3641838305 (); extern "C" void RSA_ToXmlString_m2919494468 (); extern "C" void RSACryptoServiceProvider__ctor_m8796060 (); extern "C" void RSACryptoServiceProvider__ctor_m32080133 (); extern "C" void RSACryptoServiceProvider__ctor_m4233192173 (); extern "C" void RSACryptoServiceProvider__cctor_m4085548945 (); extern "C" void RSACryptoServiceProvider_Common_m3809083019 (); extern "C" void RSACryptoServiceProvider_Finalize_m152924998 (); extern "C" void RSACryptoServiceProvider_get_KeySize_m1022373229 (); extern "C" void RSACryptoServiceProvider_get_PublicOnly_m2755170020 (); extern "C" void RSACryptoServiceProvider_DecryptValue_m3565674343 (); extern "C" void RSACryptoServiceProvider_EncryptValue_m511499327 (); extern "C" void RSACryptoServiceProvider_ExportParameters_m71989545 (); extern "C" void RSACryptoServiceProvider_ImportParameters_m3023964864 (); extern "C" void RSACryptoServiceProvider_Dispose_m4161630864 (); extern "C" void RSACryptoServiceProvider_OnKeyGenerated_m4166429105 (); extern "C" void RSAPKCS1KeyExchangeFormatter__ctor_m2849280717 (); extern "C" void RSAPKCS1KeyExchangeFormatter_CreateKeyExchange_m473400456 (); extern "C" void RSAPKCS1KeyExchangeFormatter_SetRSAKey_m2782488748 (); extern "C" void RSAPKCS1SHA1SignatureDescription__ctor_m1746812082 (); extern "C" void RSAPKCS1SignatureDeformatter__ctor_m535201002 (); extern "C" void RSAPKCS1SignatureDeformatter__ctor_m3465174692 (); extern "C" void RSAPKCS1SignatureDeformatter_SetHashAlgorithm_m4108380169 (); extern "C" void RSAPKCS1SignatureDeformatter_SetKey_m3568250865 (); extern "C" void RSAPKCS1SignatureDeformatter_VerifySignature_m2271699363 (); extern "C" void RSAPKCS1SignatureFormatter__ctor_m3211354793 (); extern "C" void RSAPKCS1SignatureFormatter_CreateSignature_m894707804 (); extern "C" void RSAPKCS1SignatureFormatter_SetHashAlgorithm_m15087816 (); extern "C" void RSAPKCS1SignatureFormatter_SetKey_m862512146 (); extern "C" void SHA1__ctor_m910599164 (); extern "C" void SHA1_Create_m2764862537 (); extern "C" void SHA1_Create_m1152395609 (); extern "C" void SHA1CryptoServiceProvider__ctor_m2094228389 (); extern "C" void SHA1CryptoServiceProvider_Finalize_m565501597 (); extern "C" void SHA1CryptoServiceProvider_Dispose_m1115384985 (); extern "C" void SHA1CryptoServiceProvider_HashCore_m221312477 (); extern "C" void SHA1CryptoServiceProvider_HashFinal_m642464225 (); extern "C" void SHA1CryptoServiceProvider_Initialize_m3436081679 (); extern "C" void SHA1Internal__ctor_m2779764927 (); extern "C" void SHA1Internal_HashCore_m2471520887 (); extern "C" void SHA1Internal_HashFinal_m844484623 (); extern "C" void SHA1Internal_Initialize_m2698059061 (); extern "C" void SHA1Internal_ProcessBlock_m2806549466 (); extern "C" void SHA1Internal_InitialiseBuff_m1659676512 (); extern "C" void SHA1Internal_FillBuff_m3885846173 (); extern "C" void SHA1Internal_ProcessFinalBlock_m1828667302 (); extern "C" void SHA1Internal_AddLength_m2579300445 (); extern "C" void SHA1Managed__ctor_m3952187979 (); extern "C" void SHA1Managed_HashCore_m2755230979 (); extern "C" void SHA1Managed_HashFinal_m2842242055 (); extern "C" void SHA1Managed_Initialize_m633762601 (); extern "C" void SHA256__ctor_m3526765978 (); extern "C" void SHA256_Create_m2242546445 (); extern "C" void SHA256_Create_m968110357 (); extern "C" void SHA256Managed__ctor_m1925161709 (); extern "C" void SHA256Managed_HashCore_m1891998501 (); extern "C" void SHA256Managed_HashFinal_m446039593 (); extern "C" void SHA256Managed_Initialize_m2794356679 (); extern "C" void SHA256Managed_ProcessBlock_m4117131779 (); extern "C" void SHA256Managed_ProcessFinalBlock_m2991256248 (); extern "C" void SHA256Managed_AddLength_m4004035979 (); extern "C" void SHA384__ctor_m2952988926 (); extern "C" void SHA384Managed__ctor_m3972787977 (); extern "C" void SHA384Managed_Initialize_m2139501410 (); extern "C" void SHA384Managed_Initialize_m1947821355 (); extern "C" void SHA384Managed_HashCore_m467338305 (); extern "C" void SHA384Managed_HashFinal_m3743867973 (); extern "C" void SHA384Managed_update_m2768239591 (); extern "C" void SHA384Managed_processWord_m2575145806 (); extern "C" void SHA384Managed_unpackWord_m3056553264 (); extern "C" void SHA384Managed_adjustByteCounts_m2303565974 (); extern "C" void SHA384Managed_processLength_m3108542004 (); extern "C" void SHA384Managed_processBlock_m2376644313 (); extern "C" void SHA512__ctor_m3297938999 (); extern "C" void SHA512Managed__ctor_m2261764016 (); extern "C" void SHA512Managed_Initialize_m3491115867 (); extern "C" void SHA512Managed_Initialize_m1471536356 (); extern "C" void SHA512Managed_HashCore_m1161829416 (); extern "C" void SHA512Managed_HashFinal_m2897219948 (); extern "C" void SHA512Managed_update_m2004423182 (); extern "C" void SHA512Managed_processWord_m2245859317 (); extern "C" void SHA512Managed_unpackWord_m3783776233 (); extern "C" void SHA512Managed_adjustByteCounts_m2278926735 (); extern "C" void SHA512Managed_processLength_m3040052269 (); extern "C" void SHA512Managed_processBlock_m4228260946 (); extern "C" void SHA512Managed_rotateRight_m2879233295 (); extern "C" void SHA512Managed_Ch_m311063408 (); extern "C" void SHA512Managed_Maj_m3317611421 (); extern "C" void SHA512Managed_Sum0_m1128336038 (); extern "C" void SHA512Managed_Sum1_m617801861 (); extern "C" void SHA512Managed_Sigma0_m945953344 (); extern "C" void SHA512Managed_Sigma1_m435419167 (); extern "C" void SHAConstants__cctor_m2653985967 (); extern "C" void SignatureDescription__ctor_m565127101 (); extern "C" void SignatureDescription_set_DeformatterAlgorithm_m1987350616 (); extern "C" void SignatureDescription_set_DigestAlgorithm_m1782853785 (); extern "C" void SignatureDescription_set_FormatterAlgorithm_m2575614969 (); extern "C" void SignatureDescription_set_KeyAlgorithm_m2741949518 (); extern "C" void SymmetricAlgorithm__ctor_m3015042793 (); extern "C" void SymmetricAlgorithm_System_IDisposable_Dispose_m1612088406 (); extern "C" void SymmetricAlgorithm_Finalize_m591291609 (); extern "C" void SymmetricAlgorithm_Clear_m421176084 (); extern "C" void SymmetricAlgorithm_Dispose_m3474384861 (); extern "C" void SymmetricAlgorithm_get_BlockSize_m4098581864 (); extern "C" void SymmetricAlgorithm_set_BlockSize_m2273875369 (); extern "C" void SymmetricAlgorithm_get_FeedbackSize_m4247492686 (); extern "C" void SymmetricAlgorithm_get_IV_m2399566439 (); extern "C" void SymmetricAlgorithm_set_IV_m870580644 (); extern "C" void SymmetricAlgorithm_get_Key_m1374487335 (); extern "C" void SymmetricAlgorithm_set_Key_m4256764768 (); extern "C" void SymmetricAlgorithm_get_KeySize_m3649844218 (); extern "C" void SymmetricAlgorithm_set_KeySize_m1757877563 (); extern "C" void SymmetricAlgorithm_get_LegalKeySizes_m472333301 (); extern "C" void SymmetricAlgorithm_get_Mode_m595116277 (); extern "C" void SymmetricAlgorithm_set_Mode_m3645569238 (); extern "C" void SymmetricAlgorithm_get_Padding_m3269163097 (); extern "C" void SymmetricAlgorithm_set_Padding_m2651553690 (); extern "C" void SymmetricAlgorithm_CreateDecryptor_m861706393 (); extern "C" void SymmetricAlgorithm_CreateEncryptor_m1591100785 (); extern "C" void SymmetricAlgorithm_Create_m1327881011 (); extern "C" void ToBase64Transform_System_IDisposable_Dispose_m3306649020 (); extern "C" void ToBase64Transform_Finalize_m1322714047 (); extern "C" void ToBase64Transform_get_CanReuseTransform_m1085934718 (); extern "C" void ToBase64Transform_get_InputBlockSize_m3015719818 (); extern "C" void ToBase64Transform_get_OutputBlockSize_m2038267529 (); extern "C" void ToBase64Transform_Dispose_m171060919 (); extern "C" void ToBase64Transform_TransformBlock_m3037413161 (); extern "C" void ToBase64Transform_InternalTransformBlock_m4265320362 (); extern "C" void ToBase64Transform_TransformFinalBlock_m3613045167 (); extern "C" void ToBase64Transform_InternalTransformFinalBlock_m1422663948 (); extern "C" void TripleDES__ctor_m394410001 (); extern "C" void TripleDES_get_Key_m3541813947 (); extern "C" void TripleDES_set_Key_m1852525880 (); extern "C" void TripleDES_IsWeakKey_m2750070815 (); extern "C" void TripleDES_Create_m1830328057 (); extern "C" void TripleDES_Create_m354804905 (); extern "C" void TripleDESCryptoServiceProvider__ctor_m2538905264 (); extern "C" void TripleDESCryptoServiceProvider_GenerateIV_m1507918646 (); extern "C" void TripleDESCryptoServiceProvider_GenerateKey_m3798176824 (); extern "C" void TripleDESCryptoServiceProvider_CreateDecryptor_m3177241196 (); extern "C" void TripleDESCryptoServiceProvider_CreateEncryptor_m3482969748 (); extern "C" void TripleDESTransform__ctor_m3679252923 (); extern "C" void TripleDESTransform_ECB_m1823441441 (); extern "C" void TripleDESTransform_GetStrongKey_m101650019 (); extern "C" void X509Certificate__ctor_m1909610000 (); extern "C" void X509Certificate__ctor_m3185150413 (); extern "C" void X509Certificate__ctor_m2228518780 (); extern "C" void X509Certificate__ctor_m1187024573 (); extern "C" void X509Certificate_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m755168634 (); extern "C" void X509Certificate_System_Runtime_Serialization_ISerializable_GetObjectData_m2406201743 (); extern "C" void X509Certificate_tostr_m1883898870 (); extern "C" void X509Certificate_Equals_m2510910421 (); extern "C" void X509Certificate_GetCertHash_m2872779852 (); extern "C" void X509Certificate_GetCertHashString_m539795190 (); extern "C" void X509Certificate_GetEffectiveDateString_m523012725 (); extern "C" void X509Certificate_GetExpirationDateString_m1866410017 (); extern "C" void X509Certificate_GetHashCode_m1423591751 (); extern "C" void X509Certificate_GetIssuerName_m1001053335 (); extern "C" void X509Certificate_GetName_m2736019966 (); extern "C" void X509Certificate_GetPublicKey_m3757092702 (); extern "C" void X509Certificate_GetRawCertData_m86483614 (); extern "C" void X509Certificate_ToString_m2228422065 (); extern "C" void X509Certificate_ToString_m2210492776 (); extern "C" void X509Certificate_get_Issuer_m681285767 (); extern "C" void X509Certificate_get_Subject_m4012979648 (); extern "C" void X509Certificate_Equals_m2965547631 (); extern "C" void X509Certificate_Import_m2045724600 (); extern "C" void X509Certificate_Reset_m4169919017 (); extern "C" void SecurityPermission__ctor_m3042719510 (); extern "C" void SecurityPermission_set_Flags_m3479431326 (); extern "C" void SecurityPermission_IsUnrestricted_m113825050 (); extern "C" void SecurityPermission_IsSubsetOf_m2058372554 (); extern "C" void SecurityPermission_ToXml_m258336926 (); extern "C" void SecurityPermission_IsEmpty_m3718545737 (); extern "C" void SecurityPermission_Cast_m644352077 (); extern "C" void StrongNamePublicKeyBlob_Equals_m167131279 (); extern "C" void StrongNamePublicKeyBlob_GetHashCode_m1175711719 (); extern "C" void StrongNamePublicKeyBlob_ToString_m2295430737 (); extern "C" void PermissionSet__ctor_m3410884176 (); extern "C" void PermissionSet__ctor_m1161980594 (); extern "C" void PermissionSet_set_DeclarativeSecurity_m1327442290 (); extern "C" void PermissionSet_CreateFromBinaryFormat_m554196038 (); extern "C" void ApplicationTrust__ctor_m3384937791 (); extern "C" void Evidence__ctor_m2923485872 (); extern "C" void Evidence_get_Count_m2256383184 (); extern "C" void Evidence_get_IsSynchronized_m1680953145 (); extern "C" void Evidence_get_SyncRoot_m397267429 (); extern "C" void Evidence_get_HostEvidenceList_m4094307694 (); extern "C" void Evidence_get_AssemblyEvidenceList_m2146797868 (); extern "C" void Evidence_CopyTo_m2676737933 (); extern "C" void Evidence_Equals_m3042273827 (); extern "C" void Evidence_GetEnumerator_m1666533534 (); extern "C" void Evidence_GetHashCode_m555337339 (); extern "C" void EvidenceEnumerator__ctor_m2234300346 (); extern "C" void EvidenceEnumerator_MoveNext_m262874302 (); extern "C" void EvidenceEnumerator_Reset_m909327129 (); extern "C" void EvidenceEnumerator_get_Current_m2705378437 (); extern "C" void Hash__ctor_m3344615385 (); extern "C" void Hash__ctor_m2508943770 (); extern "C" void Hash_GetObjectData_m3237379831 (); extern "C" void Hash_ToString_m280687476 (); extern "C" void Hash_GetData_m808019137 (); extern "C" void StrongName_get_Name_m2625731792 (); extern "C" void StrongName_get_PublicKey_m99431051 (); extern "C" void StrongName_get_Version_m1418835908 (); extern "C" void StrongName_Equals_m3416747224 (); extern "C" void StrongName_GetHashCode_m1084673968 (); extern "C" void StrongName_ToString_m1987456872 (); extern "C" void WindowsIdentity__ctor_m2888541667 (); extern "C" void WindowsIdentity__cctor_m309158987 (); extern "C" void WindowsIdentity_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m1877162132 (); extern "C" void WindowsIdentity_System_Runtime_Serialization_ISerializable_GetObjectData_m3559271593 (); extern "C" void WindowsIdentity_Dispose_m2952357727 (); extern "C" void WindowsIdentity_GetCurrentToken_m3719460523 (); extern "C" void WindowsIdentity_GetTokenName_m2587745703 (); extern "C" void SecurityContext__ctor_m2890261396 (); extern "C" void SecurityContext__ctor_m1345715454 (); extern "C" void SecurityContext_Capture_m3640798635 (); extern "C" void SecurityContext_get_FlowSuppressed_m2046518873 (); extern "C" void SecurityContext_get_CompressedStack_m649521097 (); extern "C" void SecurityElement__ctor_m3616501115 (); extern "C" void SecurityElement__ctor_m2591154807 (); extern "C" void SecurityElement__cctor_m429967270 (); extern "C" void SecurityElement_get_Children_m3662285689 (); extern "C" void SecurityElement_get_Tag_m1611173913 (); extern "C" void SecurityElement_set_Text_m2824457339 (); extern "C" void SecurityElement_AddAttribute_m979045638 (); extern "C" void SecurityElement_AddChild_m17363117 (); extern "C" void SecurityElement_Escape_m855150247 (); extern "C" void SecurityElement_Unescape_m249625582 (); extern "C" void SecurityElement_IsValidAttributeName_m190948498 (); extern "C" void SecurityElement_IsValidAttributeValue_m1458092724 (); extern "C" void SecurityElement_IsValidTag_m3543842271 (); extern "C" void SecurityElement_IsValidText_m2889048252 (); extern "C" void SecurityElement_SearchForChildByTag_m1597451503 (); extern "C" void SecurityElement_ToString_m1891938598 (); extern "C" void SecurityElement_ToXml_m2446329140 (); extern "C" void SecurityElement_GetAttribute_m3634791704 (); extern "C" void SecurityAttribute__ctor_m3979866052 (); extern "C" void SecurityAttribute_get_Name_m1633103259 (); extern "C" void SecurityAttribute_get_Value_m1891267395 (); extern "C" void SecurityException__ctor_m4184458484 (); extern "C" void SecurityException__ctor_m1163560590 (); extern "C" void SecurityException__ctor_m1779937333 (); extern "C" void SecurityException_get_Demanded_m370801454 (); extern "C" void SecurityException_get_FirstPermissionThatFailed_m4208204342 (); extern "C" void SecurityException_get_PermissionState_m2560577038 (); extern "C" void SecurityException_get_PermissionType_m2335749224 (); extern "C" void SecurityException_get_GrantedSet_m3460059773 (); extern "C" void SecurityException_get_RefusedSet_m4272843656 (); extern "C" void SecurityException_GetObjectData_m2715021970 (); extern "C" void SecurityException_ToString_m3022084793 (); extern "C" void SecurityFrame__ctor_m1972945906 (); extern "C" void SecurityFrame__GetSecurityStack_m4181326791 (); extern "C" void SecurityFrame_InitFromRuntimeFrame_m2623746169 (); extern "C" void SecurityFrame_get_Assembly_m2156341276 (); extern "C" void SecurityFrame_get_Domain_m2707144406 (); extern "C" void SecurityFrame_ToString_m3072626007 (); extern "C" void SecurityFrame_GetStack_m2712475205 (); extern "C" void SecurityManager__cctor_m3992604439 (); extern "C" void SecurityManager_get_SecurityEnabled_m2857115566 (); extern "C" void SecurityManager_Decode_m1966008144 (); extern "C" void SecurityManager_Decode_m958562396 (); extern "C" void SecuritySafeCriticalAttribute__ctor_m4074397875 (); extern "C" void SuppressUnmanagedCodeSecurityAttribute__ctor_m4118844453 (); extern "C" void UnverifiableCodeAttribute__ctor_m3261770352 (); extern "C" void SerializableAttribute__ctor_m3559493780 (); extern "C" void Single_System_IConvertible_ToBoolean_m1763424693 (); extern "C" void Single_System_IConvertible_ToByte_m3813746639 (); extern "C" void Single_System_IConvertible_ToChar_m1479685867 (); extern "C" void Single_System_IConvertible_ToDateTime_m259491893 (); extern "C" void Single_System_IConvertible_ToDecimal_m430630997 (); extern "C" void Single_System_IConvertible_ToDouble_m3847210273 (); extern "C" void Single_System_IConvertible_ToInt16_m2476492917 (); extern "C" void Single_System_IConvertible_ToInt32_m4151896117 (); extern "C" void Single_System_IConvertible_ToInt64_m305537749 (); extern "C" void Single_System_IConvertible_ToSByte_m3027644949 (); extern "C" void Single_System_IConvertible_ToSingle_m1116951951 (); extern "C" void Single_System_IConvertible_ToType_m1756485413 (); extern "C" void Single_System_IConvertible_ToUInt16_m3288807997 (); extern "C" void Single_System_IConvertible_ToUInt32_m1668493233 (); extern "C" void Single_System_IConvertible_ToUInt64_m4272161775 (); extern "C" void Single_CompareTo_m4059132493 (); extern "C" void Single_Equals_m2650902624 (); extern "C" void Single_CompareTo_m3518345828 (); extern "C" void Single_Equals_m2110115959 (); extern "C" void Single_GetHashCode_m65342520 (); extern "C" void Single_IsInfinity_m1725004900 (); extern "C" void Single_IsNaN_m2036953453 (); extern "C" void Single_IsNegativeInfinity_m3390831215 (); extern "C" void Single_IsPositiveInfinity_m1894985771 (); extern "C" void Single_Parse_m4064562812 (); extern "C" void Single_ToString_m5736032 (); extern "C" void Single_ToString_m1436803918 (); extern "C" void Single_ToString_m3798733330 (); extern "C" void Single_GetTypeCode_m4165632757 (); extern "C" void String__ctor_m2618237231 (); extern "C" void String__ctor_m683273815 (); extern "C" void String__ctor_m2956844983 (); extern "C" void String__ctor_m3883063966 (); extern "C" void String__cctor_m351290025 (); extern "C" void String_System_IConvertible_ToBoolean_m1435209676 (); extern "C" void String_System_IConvertible_ToByte_m651944216 (); extern "C" void String_System_IConvertible_ToChar_m2612850740 (); extern "C" void String_System_IConvertible_ToDateTime_m2969728254 (); extern "C" void String_System_IConvertible_ToDecimal_m102415980 (); extern "C" void String_System_IConvertible_ToDouble_m1896960042 (); extern "C" void String_System_IConvertible_ToInt16_m3244865612 (); extern "C" void String_System_IConvertible_ToInt32_m625301516 (); extern "C" void String_System_IConvertible_ToInt64_m1073910444 (); extern "C" void String_System_IConvertible_ToSByte_m3796017644 (); extern "C" void String_System_IConvertible_ToSingle_m3461669016 (); extern "C" void String_System_IConvertible_ToType_m1615588078 (); extern "C" void String_System_IConvertible_ToUInt16_m1338557766 (); extern "C" void String_System_IConvertible_ToUInt32_m4013210298 (); extern "C" void String_System_IConvertible_ToUInt64_m2321911544 (); extern "C" void String_System_Collections_Generic_IEnumerableU3CcharU3E_GetEnumerator_m319382653 (); extern "C" void String_System_Collections_IEnumerable_GetEnumerator_m1432650703 (); extern "C" void String_Equals_m1002918753 (); extern "C" void String_Equals_m3763831415 (); extern "C" void String_Equals_m3541721061 (); extern "C" void String_get_Chars_m3015341861 (); extern "C" void String_Clone_m2600780148 (); extern "C" void String_CopyTo_m3455012278 (); extern "C" void String_ToCharArray_m1208288742 (); extern "C" void String_ToCharArray_m736861184 (); extern "C" void String_Split_m290179486 (); extern "C" void String_Split_m434660345 (); extern "C" void String_Split_m1407702193 (); extern "C" void String_Split_m985753324 (); extern "C" void String_Split_m459616251 (); extern "C" void String_Substring_m2809233063 (); extern "C" void String_Substring_m675079568 (); extern "C" void String_SubstringUnchecked_m3781557708 (); extern "C" void String_Trim_m1030489823 (); extern "C" void String_Trim_m1469603388 (); extern "C" void String_TrimStart_m3483716918 (); extern "C" void String_TrimEnd_m3980947229 (); extern "C" void String_FindNotWhiteSpace_m1718857862 (); extern "C" void String_FindNotInTable_m3192184121 (); extern "C" void String_Compare_m1439712187 (); extern "C" void String_Compare_m1309590114 (); extern "C" void String_Compare_m279494420 (); extern "C" void String_Compare_m3930467693 (); extern "C" void String_CompareTo_m2173220054 (); extern "C" void String_CompareTo_m1951109700 (); extern "C" void String_CompareOrdinal_m1327873633 (); extern "C" void String_CompareOrdinalUnchecked_m1968789502 (); extern "C" void String_CompareOrdinalCaseInsensitiveUnchecked_m4221700897 (); extern "C" void String_EndsWith_m2265568550 (); extern "C" void String_IndexOfAny_m3660242324 (); extern "C" void String_IndexOfAny_m1954541507 (); extern "C" void String_IndexOfAny_m472916468 (); extern "C" void String_IndexOfAnyUnchecked_m706673842 (); extern "C" void String_IndexOf_m864002126 (); extern "C" void String_IndexOf_m1456548334 (); extern "C" void String_IndexOfOrdinal_m2362241597 (); extern "C" void String_IndexOfOrdinalUnchecked_m3747812990 (); extern "C" void String_IndexOfOrdinalIgnoreCaseUnchecked_m1319653504 (); extern "C" void String_IndexOf_m2775210486 (); extern "C" void String_IndexOf_m204546721 (); extern "C" void String_IndexOf_m2077558742 (); extern "C" void String_IndexOfUnchecked_m1897528852 (); extern "C" void String_IndexOf_m1476794331 (); extern "C" void String_IndexOf_m1991631068 (); extern "C" void String_IndexOf_m4052910459 (); extern "C" void String_LastIndexOfAny_m1405458718 (); extern "C" void String_LastIndexOfAny_m2835072121 (); extern "C" void String_LastIndexOfAnyUnchecked_m3532047592 (); extern "C" void String_LastIndexOf_m3245805612 (); extern "C" void String_LastIndexOf_m902083627 (); extern "C" void String_LastIndexOf_m434357900 (); extern "C" void String_LastIndexOfUnchecked_m4042746910 (); extern "C" void String_LastIndexOf_m2747144337 (); extern "C" void String_LastIndexOf_m1189898929 (); extern "C" void String_Contains_m3032019141 (); extern "C" void String_IsNullOrEmpty_m1256468773 (); extern "C" void String_PadRight_m1932151982 (); extern "C" void String_StartsWith_m1500793453 (); extern "C" void String_Replace_m3369701083 (); extern "C" void String_Replace_m2915759397 (); extern "C" void String_ReplaceUnchecked_m872372231 (); extern "C" void String_ReplaceFallback_m3944881236 (); extern "C" void String_Remove_m242090629 (); extern "C" void String_ToLower_m2421900555 (); extern "C" void String_ToLower_m2140020155 (); extern "C" void String_ToLowerInvariant_m4111189975 (); extern "C" void String_ToString_m1382284457 (); extern "C" void String_ToString_m1534627031 (); extern "C" void String_Format_m2471250780 (); extern "C" void String_Format_m2398979370 (); extern "C" void String_Format_m3928391288 (); extern "C" void String_Format_m4050103162 (); extern "C" void String_Format_m3351777162 (); extern "C" void String_FormatHelper_m2506490508 (); extern "C" void String_Concat_m389863537 (); extern "C" void String_Concat_m2809334143 (); extern "C" void String_Concat_m138640077 (); extern "C" void String_Concat_m1825781833 (); extern "C" void String_Concat_m2933632197 (); extern "C" void String_Concat_m3016520001 (); extern "C" void String_Concat_m21867311 (); extern "C" void String_ConcatInternal_m3246297125 (); extern "C" void String_Insert_m3926397187 (); extern "C" void String_Join_m2789530325 (); extern "C" void String_Join_m908926965 (); extern "C" void String_JoinUnchecked_m3141793139 (); extern "C" void String_get_Length_m2979997331 (); extern "C" void String_ParseFormatSpecifier_m3682617588 (); extern "C" void String_ParseDecimal_m2522196181 (); extern "C" void String_InternalSetChar_m3191521125 (); extern "C" void String_InternalSetLength_m4220170206 (); extern "C" void String_GetHashCode_m471729487 (); extern "C" void String_GetCaseInsensitiveHashCode_m952232874 (); extern "C" void String_CreateString_m828432250 (); extern "C" void String_CreateString_m197914714 (); extern "C" void String_CreateString_m416250615 (); extern "C" void String_CreateString_m3205262901 (); extern "C" void String_CreateString_m1597586261 (); extern "C" void String_CreateString_m3402832113 (); extern "C" void String_CreateString_m578950865 (); extern "C" void String_CreateString_m356585284 (); extern "C" void String_memcpy4_m1762596688 (); extern "C" void String_memcpy2_m1338949966 (); extern "C" void String_memcpy1_m3274610253 (); extern "C" void String_memcpy_m3785779208 (); extern "C" void String_CharCopy_m3846447580 (); extern "C" void String_CharCopyReverse_m2265296522 (); extern "C" void String_CharCopy_m805553372 (); extern "C" void String_CharCopy_m432636757 (); extern "C" void String_CharCopyReverse_m1535680650 (); extern "C" void String_InternalSplit_m354977691 (); extern "C" void String_InternalAllocateStr_m4108479373 (); extern "C" void String_op_Equality_m1260523650 (); extern "C" void String_op_Inequality_m2125462205 (); extern "C" void StringComparer__ctor_m50784983 (); extern "C" void StringComparer__cctor_m1092238262 (); extern "C" void StringComparer_get_InvariantCultureIgnoreCase_m3518508912 (); extern "C" void StringComparer_get_OrdinalIgnoreCase_m2513153269 (); extern "C" void StringComparer_Compare_m3931640044 (); extern "C" void StringComparer_Equals_m1694946776 (); extern "C" void StringComparer_GetHashCode_m1067393138 (); extern "C" void SystemException__ctor_m677430257 (); extern "C" void SystemException__ctor_m3697314481 (); extern "C" void SystemException__ctor_m2083527090 (); extern "C" void SystemException__ctor_m253088421 (); extern "C" void ASCIIEncoding__ctor_m3312307762 (); extern "C" void ASCIIEncoding_GetByteCount_m2816111956 (); extern "C" void ASCIIEncoding_GetByteCount_m3333440827 (); extern "C" void ASCIIEncoding_GetBytes_m1888860132 (); extern "C" void ASCIIEncoding_GetBytes_m1102371839 (); extern "C" void ASCIIEncoding_GetBytes_m1463138813 (); extern "C" void ASCIIEncoding_GetBytes_m4012262872 (); extern "C" void ASCIIEncoding_GetCharCount_m1617524400 (); extern "C" void ASCIIEncoding_GetChars_m4229110870 (); extern "C" void ASCIIEncoding_GetChars_m608322798 (); extern "C" void ASCIIEncoding_GetMaxByteCount_m2951644310 (); extern "C" void ASCIIEncoding_GetMaxCharCount_m3743179656 (); extern "C" void ASCIIEncoding_GetString_m3750474735 (); extern "C" void ASCIIEncoding_GetBytes_m1886644629 (); extern "C" void ASCIIEncoding_GetByteCount_m858235493 (); extern "C" void ASCIIEncoding_GetDecoder_m3592483183 (); extern "C" void Decoder__ctor_m1448672242 (); extern "C" void Decoder_set_Fallback_m4287157405 (); extern "C" void Decoder_get_FallbackBuffer_m1620793422 (); extern "C" void DecoderExceptionFallback__ctor_m3484109795 (); extern "C" void DecoderExceptionFallback_CreateFallbackBuffer_m3152161742 (); extern "C" void DecoderExceptionFallback_Equals_m2487768146 (); extern "C" void DecoderExceptionFallback_GetHashCode_m1445478582 (); extern "C" void DecoderExceptionFallbackBuffer__ctor_m1509764995 (); extern "C" void DecoderExceptionFallbackBuffer_get_Remaining_m629320722 (); extern "C" void DecoderExceptionFallbackBuffer_Fallback_m3367248051 (); extern "C" void DecoderExceptionFallbackBuffer_GetNextChar_m3794963074 (); extern "C" void DecoderFallback__ctor_m811029552 (); extern "C" void DecoderFallback__cctor_m3184983421 (); extern "C" void DecoderFallback_get_ExceptionFallback_m325010629 (); extern "C" void DecoderFallback_get_ReplacementFallback_m2886502920 (); extern "C" void DecoderFallback_get_StandardSafeFallback_m2811048538 (); extern "C" void DecoderFallbackBuffer__ctor_m2764245520 (); extern "C" void DecoderFallbackBuffer_Reset_m410678461 (); extern "C" void DecoderFallbackException__ctor_m3678102567 (); extern "C" void DecoderFallbackException__ctor_m1586655803 (); extern "C" void DecoderFallbackException__ctor_m387223961 (); extern "C" void DecoderReplacementFallback__ctor_m2715929664 (); extern "C" void DecoderReplacementFallback__ctor_m1044232898 (); extern "C" void DecoderReplacementFallback_get_DefaultString_m3033954916 (); extern "C" void DecoderReplacementFallback_CreateFallbackBuffer_m2535777809 (); extern "C" void DecoderReplacementFallback_Equals_m574453359 (); extern "C" void DecoderReplacementFallback_GetHashCode_m1988771411 (); extern "C" void DecoderReplacementFallbackBuffer__ctor_m1088992558 (); extern "C" void DecoderReplacementFallbackBuffer_get_Remaining_m3834625199 (); extern "C" void DecoderReplacementFallbackBuffer_Fallback_m4123943606 (); extern "C" void DecoderReplacementFallbackBuffer_GetNextChar_m581213919 (); extern "C" void DecoderReplacementFallbackBuffer_Reset_m4105085133 (); extern "C" void EncoderExceptionFallback__ctor_m389367483 (); extern "C" void EncoderExceptionFallback_CreateFallbackBuffer_m703436318 (); extern "C" void EncoderExceptionFallback_Equals_m2398516522 (); extern "C" void EncoderExceptionFallback_GetHashCode_m2333129102 (); extern "C" void EncoderExceptionFallbackBuffer__ctor_m2397415515 (); extern "C" void EncoderExceptionFallbackBuffer_get_Remaining_m540069098 (); extern "C" void EncoderExceptionFallbackBuffer_Fallback_m3905093511 (); extern "C" void EncoderExceptionFallbackBuffer_Fallback_m3413448272 (); extern "C" void EncoderExceptionFallbackBuffer_GetNextChar_m1461911898 (); extern "C" void EncoderFallback__ctor_m3356968536 (); extern "C" void EncoderFallback__cctor_m504713301 (); extern "C" void EncoderFallback_get_ExceptionFallback_m3519102229 (); extern "C" void EncoderFallback_get_ReplacementFallback_m1506913880 (); extern "C" void EncoderFallback_get_StandardSafeFallback_m2993461258 (); extern "C" void EncoderFallbackBuffer__ctor_m423542328 (); extern "C" void EncoderFallbackException__ctor_m583360255 (); extern "C" void EncoderFallbackException__ctor_m2276513379 (); extern "C" void EncoderFallbackException__ctor_m1029930777 (); extern "C" void EncoderFallbackException__ctor_m923323106 (); extern "C" void EncoderReplacementFallback__ctor_m785936664 (); extern "C" void EncoderReplacementFallback__ctor_m2572399850 (); extern "C" void EncoderReplacementFallback_get_DefaultString_m2944703292 (); extern "C" void EncoderReplacementFallback_CreateFallbackBuffer_m2952723553 (); extern "C" void EncoderReplacementFallback_Equals_m702988615 (); extern "C" void EncoderReplacementFallback_GetHashCode_m322429227 (); extern "C" void EncoderReplacementFallbackBuffer__ctor_m1930588894 (); extern "C" void EncoderReplacementFallbackBuffer_get_Remaining_m3963160455 (); extern "C" void EncoderReplacementFallbackBuffer_Fallback_m1355578442 (); extern "C" void EncoderReplacementFallbackBuffer_Fallback_m2465367699 (); extern "C" void EncoderReplacementFallbackBuffer_Fallback_m2505575553 (); extern "C" void EncoderReplacementFallbackBuffer_GetNextChar_m491962295 (); extern "C" void Encoding__ctor_m1037401021 (); extern "C" void Encoding__ctor_m1203666318 (); extern "C" void Encoding__cctor_m1612564368 (); extern "C" void Encoding___m2147510347 (); extern "C" void Encoding_get_IsReadOnly_m1827016926 (); extern "C" void Encoding_get_DecoderFallback_m3409202121 (); extern "C" void Encoding_set_DecoderFallback_m3527983786 (); extern "C" void Encoding_get_EncoderFallback_m252351353 (); extern "C" void Encoding_SetFallbackInternal_m1712004450 (); extern "C" void Encoding_Equals_m3267361452 (); extern "C" void Encoding_GetByteCount_m3861962638 (); extern "C" void Encoding_GetByteCount_m2187805511 (); extern "C" void Encoding_GetBytes_m2409970698 (); extern "C" void Encoding_GetBytes_m2632143804 (); extern "C" void Encoding_GetBytes_m2769384597 (); extern "C" void Encoding_GetBytes_m957986677 (); extern "C" void Encoding_GetChars_m468469183 (); extern "C" void Encoding_GetDecoder_m3680646086 (); extern "C" void Encoding_InvokeI18N_m2813164284 (); extern "C" void Encoding_GetEncoding_m2886882079 (); extern "C" void Encoding_Clone_m4157729955 (); extern "C" void Encoding_GetEncoding_m4050696948 (); extern "C" void Encoding_GetHashCode_m2437082384 (); extern "C" void Encoding_GetPreamble_m1160659539 (); extern "C" void Encoding_GetString_m565750122 (); extern "C" void Encoding_GetString_m3808087178 (); extern "C" void Encoding_get_ASCII_m1425378925 (); extern "C" void Encoding_get_BigEndianUnicode_m1578127592 (); extern "C" void Encoding_InternalCodePage_m1810234872 (); extern "C" void Encoding_get_Default_m1600689821 (); extern "C" void Encoding_get_ISOLatin1_m4135279598 (); extern "C" void Encoding_get_UTF7_m619557558 (); extern "C" void Encoding_get_UTF8_m619558519 (); extern "C" void Encoding_get_UTF8Unmarked_m1891261276 (); extern "C" void Encoding_get_UTF8UnmarkedUnsafe_m2775471970 (); extern "C" void Encoding_get_Unicode_m2158134329 (); extern "C" void Encoding_get_UTF32_m2026305570 (); extern "C" void Encoding_get_BigEndianUTF32_m3679331473 (); extern "C" void Encoding_GetByteCount_m957110328 (); extern "C" void Encoding_GetBytes_m1804873512 (); extern "C" void ForwardingDecoder__ctor_m2930063152 (); extern "C" void ForwardingDecoder_GetChars_m3390742011 (); extern "C" void Latin1Encoding__ctor_m1980938192 (); extern "C" void Latin1Encoding_GetByteCount_m706721210 (); extern "C" void Latin1Encoding_GetByteCount_m4034541857 (); extern "C" void Latin1Encoding_GetBytes_m4245120190 (); extern "C" void Latin1Encoding_GetBytes_m3965378137 (); extern "C" void Latin1Encoding_GetBytes_m3819398871 (); extern "C" void Latin1Encoding_GetBytes_m2580301874 (); extern "C" void Latin1Encoding_GetCharCount_m3803100950 (); extern "C" void Latin1Encoding_GetChars_m2290403632 (); extern "C" void Latin1Encoding_GetMaxByteCount_m2399868668 (); extern "C" void Latin1Encoding_GetMaxCharCount_m3191404014 (); extern "C" void Latin1Encoding_GetString_m1453607223 (); extern "C" void Latin1Encoding_GetString_m2574520983 (); extern "C" void StringBuilder__ctor_m4031300257 (); extern "C" void StringBuilder__ctor_m3542181846 (); extern "C" void StringBuilder__ctor_m135953004 (); extern "C" void StringBuilder__ctor_m3624398269 (); extern "C" void StringBuilder__ctor_m1143895062 (); extern "C" void StringBuilder__ctor_m1310751873 (); extern "C" void StringBuilder__ctor_m3783410093 (); extern "C" void StringBuilder_System_Runtime_Serialization_ISerializable_GetObjectData_m2909896863 (); extern "C" void StringBuilder_get_Capacity_m884438143 (); extern "C" void StringBuilder_set_Capacity_m519605088 (); extern "C" void StringBuilder_get_Length_m2443133099 (); extern "C" void StringBuilder_set_Length_m1952332172 (); extern "C" void StringBuilder_get_Chars_m1670994701 (); extern "C" void StringBuilder_set_Chars_m1845996850 (); extern "C" void StringBuilder_ToString_m350379841 (); extern "C" void StringBuilder_ToString_m3621056261 (); extern "C" void StringBuilder_Remove_m970775893 (); extern "C" void StringBuilder_Replace_m118777941 (); extern "C" void StringBuilder_Replace_m1895746933 (); extern "C" void StringBuilder_Append_m3898090075 (); extern "C" void StringBuilder_Append_m2189222616 (); extern "C" void StringBuilder_Append_m2189225561 (); extern "C" void StringBuilder_Append_m4120200429 (); extern "C" void StringBuilder_Append_m2143093878 (); extern "C" void StringBuilder_Append_m1038583841 (); extern "C" void StringBuilder_Append_m2623154804 (); extern "C" void StringBuilder_Append_m2996071419 (); extern "C" void StringBuilder_AppendLine_m568622107 (); extern "C" void StringBuilder_AppendLine_m655025863 (); extern "C" void StringBuilder_AppendFormat_m279545936 (); extern "C" void StringBuilder_AppendFormat_m259793396 (); extern "C" void StringBuilder_AppendFormat_m3723191730 (); extern "C" void StringBuilder_AppendFormat_m3487355136 (); extern "C" void StringBuilder_AppendFormat_m508648398 (); extern "C" void StringBuilder_Insert_m745836595 (); extern "C" void StringBuilder_Insert_m1867188302 (); extern "C" void StringBuilder_Insert_m1606924164 (); extern "C" void StringBuilder_InternalEnsureCapacity_m3925915998 (); extern "C" void UnicodeEncoding__ctor_m2464846694 (); extern "C" void UnicodeEncoding__ctor_m628477824 (); extern "C" void UnicodeEncoding__ctor_m1753322493 (); extern "C" void UnicodeEncoding_GetByteCount_m1713744008 (); extern "C" void UnicodeEncoding_GetByteCount_m3953856879 (); extern "C" void UnicodeEncoding_GetByteCount_m2364391577 (); extern "C" void UnicodeEncoding_GetBytes_m1303521840 (); extern "C" void UnicodeEncoding_GetBytes_m877800521 (); extern "C" void UnicodeEncoding_GetBytes_m1942137033 (); extern "C" void UnicodeEncoding_GetBytesInternal_m3215369228 (); extern "C" void UnicodeEncoding_GetCharCount_m515156452 (); extern "C" void UnicodeEncoding_GetChars_m3643772578 (); extern "C" void UnicodeEncoding_GetString_m254667515 (); extern "C" void UnicodeEncoding_GetCharsInternal_m801541210 (); extern "C" void UnicodeEncoding_GetMaxByteCount_m2171016138 (); extern "C" void UnicodeEncoding_GetMaxCharCount_m2962551484 (); extern "C" void UnicodeEncoding_GetDecoder_m3461174523 (); extern "C" void UnicodeEncoding_GetPreamble_m2255522896 (); extern "C" void UnicodeEncoding_Equals_m258981209 (); extern "C" void UnicodeEncoding_GetHashCode_m2705427633 (); extern "C" void UnicodeEncoding_CopyChars_m137508992 (); extern "C" void UnicodeDecoder__ctor_m1607892801 (); extern "C" void UnicodeDecoder_GetChars_m4249510390 (); extern "C" void UTF32Encoding__ctor_m3047105501 (); extern "C" void UTF32Encoding__ctor_m1611597417 (); extern "C" void UTF32Encoding__ctor_m2606271988 (); extern "C" void UTF32Encoding_GetByteCount_m4053178303 (); extern "C" void UTF32Encoding_GetBytes_m2096762137 (); extern "C" void UTF32Encoding_GetCharCount_m2854590747 (); extern "C" void UTF32Encoding_GetChars_m142045579 (); extern "C" void UTF32Encoding_GetMaxByteCount_m4234377217 (); extern "C" void UTF32Encoding_GetMaxCharCount_m730945267 (); extern "C" void UTF32Encoding_GetDecoder_m2353622692 (); extern "C" void UTF32Encoding_GetPreamble_m4266568199 (); extern "C" void UTF32Encoding_Equals_m2030004752 (); extern "C" void UTF32Encoding_GetHashCode_m224607976 (); extern "C" void UTF32Encoding_GetByteCount_m3487534096 (); extern "C" void UTF32Encoding_GetByteCount_m3893434214 (); extern "C" void UTF32Encoding_GetBytes_m1300787456 (); extern "C" void UTF32Encoding_GetBytes_m1671040818 (); extern "C" void UTF32Encoding_GetString_m3449921892 (); extern "C" void UTF32Decoder__ctor_m2891819411 (); extern "C" void UTF32Decoder_GetChars_m1515909476 (); extern "C" void UTF7Encoding__ctor_m3219339181 (); extern "C" void UTF7Encoding__ctor_m2518973028 (); extern "C" void UTF7Encoding__cctor_m533170592 (); extern "C" void UTF7Encoding_GetHashCode_m3782877952 (); extern "C" void UTF7Encoding_Equals_m85066652 (); extern "C" void UTF7Encoding_InternalGetByteCount_m2693580788 (); extern "C" void UTF7Encoding_GetByteCount_m1291682775 (); extern "C" void UTF7Encoding_InternalGetBytes_m3747805498 (); extern "C" void UTF7Encoding_GetBytes_m3199141377 (); extern "C" void UTF7Encoding_InternalGetCharCount_m2327269409 (); extern "C" void UTF7Encoding_GetCharCount_m93095219 (); extern "C" void UTF7Encoding_InternalGetChars_m504744357 (); extern "C" void UTF7Encoding_GetChars_m1244424819 (); extern "C" void UTF7Encoding_GetMaxByteCount_m3189713945 (); extern "C" void UTF7Encoding_GetMaxCharCount_m3981249291 (); extern "C" void UTF7Encoding_GetDecoder_m292232534 (); extern "C" void UTF7Encoding_GetByteCount_m2801467944 (); extern "C" void UTF7Encoding_GetByteCount_m3034247550 (); extern "C" void UTF7Encoding_GetBytes_m3752707352 (); extern "C" void UTF7Encoding_GetBytes_m2773420058 (); extern "C" void UTF7Encoding_GetString_m138259962 (); extern "C" void UTF7Decoder__ctor_m4062693192 (); extern "C" void UTF7Decoder_GetChars_m4162711992 (); extern "C" void UTF8Encoding__ctor_m2222266828 (); extern "C" void UTF8Encoding__ctor_m508869187 (); extern "C" void UTF8Encoding__ctor_m4274875098 (); extern "C" void UTF8Encoding_InternalGetByteCount_m1402598209 (); extern "C" void UTF8Encoding_InternalGetByteCount_m776634770 (); extern "C" void UTF8Encoding_GetByteCount_m3411969974 (); extern "C" void UTF8Encoding_GetByteCount_m2560927815 (); extern "C" void UTF8Encoding_InternalGetBytes_m1304805863 (); extern "C" void UTF8Encoding_InternalGetBytes_m4145641218 (); extern "C" void UTF8Encoding_GetBytes_m758519618 (); extern "C" void UTF8Encoding_GetBytes_m332798299 (); extern "C" void UTF8Encoding_GetBytes_m1643674103 (); extern "C" void UTF8Encoding_InternalGetCharCount_m3413246797 (); extern "C" void UTF8Encoding_InternalGetCharCount_m1382612956 (); extern "C" void UTF8Encoding_Fallback_m2998229612 (); extern "C" void UTF8Encoding_Fallback_m1420233630 (); extern "C" void UTF8Encoding_GetCharCount_m2213382418 (); extern "C" void UTF8Encoding_InternalGetChars_m456868025 (); extern "C" void UTF8Encoding_InternalGetChars_m402940066 (); extern "C" void UTF8Encoding_GetChars_m3098770356 (); extern "C" void UTF8Encoding_GetMaxByteCount_m356326648 (); extern "C" void UTF8Encoding_GetMaxCharCount_m1147861994 (); extern "C" void UTF8Encoding_GetDecoder_m1536997015 (); extern "C" void UTF8Encoding_GetPreamble_m3276889634 (); extern "C" void UTF8Encoding_Equals_m2369930107 (); extern "C" void UTF8Encoding_GetHashCode_m3715871199 (); extern "C" void UTF8Encoding_GetByteCount_m372084253 (); extern "C" void UTF8Encoding_GetString_m3266530939 (); extern "C" void UTF8Decoder__ctor_m2938677702 (); extern "C" void UTF8Decoder_GetChars_m1551461400 (); extern "C" void CompressedStack__ctor_m2633734833 (); extern "C" void CompressedStack__ctor_m1552323470 (); extern "C" void CompressedStack_CreateCopy_m2704662702 (); extern "C" void CompressedStack_Capture_m4188936939 (); extern "C" void CompressedStack_GetObjectData_m1776876798 (); extern "C" void CompressedStack_IsEmpty_m35500159 (); extern "C" void EventWaitHandle__ctor_m1444479942 (); extern "C" void EventWaitHandle_IsManualReset_m4097690010 (); extern "C" void EventWaitHandle_Reset_m330657435 (); extern "C" void EventWaitHandle_Set_m224730030 (); extern "C" void ExecutionContext__ctor_m3342294760 (); extern "C" void ExecutionContext__ctor_m881535614 (); extern "C" void ExecutionContext__ctor_m469890089 (); extern "C" void ExecutionContext_Capture_m1949565907 (); extern "C" void ExecutionContext_GetObjectData_m67437190 (); extern "C" void ExecutionContext_get_SecurityContext_m2311120735 (); extern "C" void ExecutionContext_set_SecurityContext_m3974986970 (); extern "C" void ExecutionContext_get_FlowSuppressed_m927554565 (); extern "C" void ExecutionContext_IsFlowSuppressed_m2941747654 (); extern "C" void Interlocked_CompareExchange_m1859820752 (); extern "C" void ManualResetEvent__ctor_m927697317 (); extern "C" void Monitor_Enter_m476686225 (); extern "C" void Monitor_Exit_m2088237919 (); extern "C" void Monitor_Monitor_pulse_m2154028149 (); extern "C" void Monitor_Monitor_test_synchronised_m711788182 (); extern "C" void Monitor_Pulse_m2153339056 (); extern "C" void Monitor_Monitor_wait_m1648946806 (); extern "C" void Monitor_Wait_m34507825 (); extern "C" void Mutex__ctor_m2061869791 (); extern "C" void Mutex_CreateMutex_internal_m62389004 (); extern "C" void Mutex_ReleaseMutex_internal_m3646831020 (); extern "C" void Mutex_ReleaseMutex_m564775316 (); extern "C" void NativeEventCalls_CreateEvent_internal_m3209574737 (); extern "C" void NativeEventCalls_SetEvent_internal_m2769880995 (); extern "C" void NativeEventCalls_ResetEvent_internal_m2004196566 (); extern "C" void NativeEventCalls_CloseEvent_internal_m996370063 (); extern "C" void SynchronizationLockException__ctor_m1728496155 (); extern "C" void SynchronizationLockException__ctor_m1850368199 (); extern "C" void SynchronizationLockException__ctor_m221922524 (); extern "C" void Thread__ctor_m4293845138 (); extern "C" void Thread__cctor_m3597056408 (); extern "C" void Thread_get_CurrentContext_m1613403838 (); extern "C" void Thread_CurrentThread_internal_m3803103476 (); extern "C" void Thread_get_CurrentThread_m1523593825 (); extern "C" void Thread_FreeLocalSlotValues_m3189496250 (); extern "C" void Thread_GetDomainID_m3584395396 (); extern "C" void Thread_Thread_internal_m1309677628 (); extern "C" void Thread_Thread_init_m3945232696 (); extern "C" void Thread_GetCachedCurrentCulture_m432100475 (); extern "C" void Thread_GetSerializedCurrentCulture_m2858784716 (); extern "C" void Thread_SetCachedCurrentCulture_m1882292988 (); extern "C" void Thread_GetCachedCurrentUICulture_m4218701159 (); extern "C" void Thread_GetSerializedCurrentUICulture_m4095015032 (); extern "C" void Thread_SetCachedCurrentUICulture_m1939313576 (); extern "C" void Thread_get_CurrentCulture_m334626002 (); extern "C" void Thread_get_CurrentUICulture_m740045822 (); extern "C" void Thread_set_IsBackground_m1141752027 (); extern "C" void Thread_SetName_internal_m3255834084 (); extern "C" void Thread_set_Name_m597236523 (); extern "C" void Thread_Start_m4066427317 (); extern "C" void Thread_Thread_free_internal_m1268585386 (); extern "C" void Thread_Finalize_m3157999501 (); extern "C" void Thread_SetState_m2581989004 (); extern "C" void Thread_ClrState_m634688613 (); extern "C" void Thread_GetNewManagedId_m3980934719 (); extern "C" void Thread_GetNewManagedId_internal_m3921195679 (); extern "C" void Thread_get_ExecutionContext_m1683588744 (); extern "C" void Thread_get_ManagedThreadId_m3915632970 (); extern "C" void Thread_GetHashCode_m736270528 (); extern "C" void Thread_GetCompressedStack_m3328677543 (); extern "C" void ThreadAbortException__ctor_m3295562998 (); extern "C" void ThreadAbortException__ctor_m4220973367 (); extern "C" void ThreadInterruptedException__ctor_m2298757640 (); extern "C" void ThreadInterruptedException__ctor_m3158304585 (); extern "C" void ThreadPool_QueueUserWorkItem_m3855506648 (); extern "C" void ThreadStart__ctor_m346361139 (); extern "C" void ThreadStart_Invoke_m225334093 (); extern "C" void ThreadStart_BeginInvoke_m4084423702 (); extern "C" void ThreadStart_EndInvoke_m3441234115 (); extern "C" void ThreadStateException__ctor_m2201794583 (); extern "C" void ThreadStateException__ctor_m1680197848 (); extern "C" void Timer__cctor_m1320176523 (); extern "C" void Timer_Change_m4108080222 (); extern "C" void Timer_Dispose_m4229130271 (); extern "C" void Timer_Change_m4132562187 (); extern "C" void Scheduler__ctor_m1239585238 (); extern "C" void Scheduler__cctor_m3585307799 (); extern "C" void Scheduler_get_Instance_m2238004347 (); extern "C" void Scheduler_Remove_m1246429346 (); extern "C" void Scheduler_Change_m3602739018 (); extern "C" void Scheduler_Add_m1591289733 (); extern "C" void Scheduler_InternalRemove_m1022594523 (); extern "C" void Scheduler_SchedulerThread_m2007715993 (); extern "C" void Scheduler_ShrinkIfNeeded_m4137944589 (); extern "C" void TimerComparer__ctor_m736016095 (); extern "C" void TimerComparer_Compare_m3183691932 (); extern "C" void TimerCallback__ctor_m1834223461 (); extern "C" void TimerCallback_Invoke_m4048637941 (); extern "C" void TimerCallback_BeginInvoke_m138041110 (); extern "C" void TimerCallback_EndInvoke_m3350524917 (); extern "C" void WaitCallback__ctor_m880874013 (); extern "C" void WaitCallback_Invoke_m3979426365 (); extern "C" void WaitCallback_BeginInvoke_m3299023334 (); extern "C" void WaitCallback_EndInvoke_m2361662125 (); extern "C" void WaitHandle__ctor_m4240939554 (); extern "C" void WaitHandle__cctor_m2138011083 (); extern "C" void WaitHandle_System_IDisposable_Dispose_m2431205053 (); extern "C" void WaitHandle_get_Handle_m383799166 (); extern "C" void WaitHandle_set_Handle_m2872485421 (); extern "C" void WaitHandle_WaitOne_internal_m2364279439 (); extern "C" void WaitHandle_Dispose_m2452949270 (); extern "C" void WaitHandle_WaitOne_m1178289523 (); extern "C" void WaitHandle_WaitOne_m467737785 (); extern "C" void WaitHandle_CheckDisposed_m3718910029 (); extern "C" void WaitHandle_Finalize_m1174780672 (); extern "C" void ThreadStaticAttribute__ctor_m1966759021 (); extern "C" void TimeSpan__ctor_m477860848 (); extern "C" void TimeSpan__ctor_m4160332047 (); extern "C" void TimeSpan__ctor_m3191091631 (); extern "C" void TimeSpan__cctor_m2918891343 (); extern "C" void TimeSpan_CalculateTicks_m897131370 (); extern "C" void TimeSpan_get_Days_m1311834346 (); extern "C" void TimeSpan_get_Hours_m1664362814 (); extern "C" void TimeSpan_get_Milliseconds_m424744421 (); extern "C" void TimeSpan_get_Minutes_m1876674446 (); extern "C" void TimeSpan_get_Seconds_m4185591086 (); extern "C" void TimeSpan_get_Ticks_m315930342 (); extern "C" void TimeSpan_get_TotalDays_m3523943921 (); extern "C" void TimeSpan_get_TotalHours_m1520282903 (); extern "C" void TimeSpan_get_TotalMilliseconds_m4053613548 (); extern "C" void TimeSpan_get_TotalMinutes_m854833447 (); extern "C" void TimeSpan_get_TotalSeconds_m3163750087 (); extern "C" void TimeSpan_Add_m1523355138 (); extern "C" void TimeSpan_Compare_m206019349 (); extern "C" void TimeSpan_CompareTo_m4037254268 (); extern "C" void TimeSpan_CompareTo_m2960988804 (); extern "C" void TimeSpan_Equals_m3271948249 (); extern "C" void TimeSpan_Duration_m4177061277 (); extern "C" void TimeSpan_Equals_m2969422609 (); extern "C" void TimeSpan_FromDays_m2307041176 (); extern "C" void TimeSpan_FromHours_m3804628420 (); extern "C" void TimeSpan_FromMinutes_m785017204 (); extern "C" void TimeSpan_FromSeconds_m1904297940 (); extern "C" void TimeSpan_FromMilliseconds_m1386660477 (); extern "C" void TimeSpan_From_m739812553 (); extern "C" void TimeSpan_GetHashCode_m3188156777 (); extern "C" void TimeSpan_Negate_m3511877003 (); extern "C" void TimeSpan_Subtract_m1410255071 (); extern "C" void TimeSpan_ToString_m2803989647 (); extern "C" void TimeSpan_op_Addition_m141072959 (); extern "C" void TimeSpan_op_Equality_m2213378780 (); extern "C" void TimeSpan_op_GreaterThan_m3920451985 (); extern "C" void TimeSpan_op_GreaterThanOrEqual_m2152983360 (); extern "C" void TimeSpan_op_Inequality_m2184437271 (); extern "C" void TimeSpan_op_LessThan_m4265983228 (); extern "C" void TimeSpan_op_LessThanOrEqual_m271837557 (); extern "C" void TimeSpan_op_Subtraction_m3686790579 (); extern "C" void TimeZone__ctor_m26653180 (); extern "C" void TimeZone__cctor_m344152369 (); extern "C" void TimeZone_get_CurrentTimeZone_m2986247742 (); extern "C" void TimeZone_IsDaylightSavingTime_m3245775367 (); extern "C" void TimeZone_IsDaylightSavingTime_m4018955392 (); extern "C" void TimeZone_ToLocalTime_m2341401576 (); extern "C" void TimeZone_ToUniversalTime_m1686398088 (); extern "C" void TimeZone_GetLocalTimeDiff_m1562801158 (); extern "C" void TimeZone_GetLocalTimeDiff_m290923612 (); extern "C" void Type__ctor_m3982515451 (); extern "C" void Type__cctor_m2716798482 (); extern "C" void Type_FilterName_impl_m1368291769 (); extern "C" void Type_FilterNameIgnoreCase_impl_m3759144183 (); extern "C" void Type_FilterAttribute_impl_m1809700868 (); extern "C" void Type_get_Attributes_m1828944147 (); extern "C" void Type_get_DeclaringType_m4083909003 (); extern "C" void Type_get_HasElementType_m4257202252 (); extern "C" void Type_get_IsAbstract_m2161724892 (); extern "C" void Type_get_IsArray_m837983873 (); extern "C" void Type_get_IsByRef_m1896439844 (); extern "C" void Type_get_IsClass_m2426046944 (); extern "C" void Type_get_IsContextful_m535795176 (); extern "C" void Type_get_IsEnum_m3878730619 (); extern "C" void Type_get_IsExplicitLayout_m911179384 (); extern "C" void Type_get_IsInterface_m996103649 (); extern "C" void Type_get_IsMarshalByRef_m345073144 (); extern "C" void Type_get_IsPointer_m839992229 (); extern "C" void Type_get_IsPrimitive_m992199183 (); extern "C" void Type_get_IsSealed_m2383790294 (); extern "C" void Type_get_IsSerializable_m746172153 (); extern "C" void Type_get_IsValueType_m1914757235 (); extern "C" void Type_get_MemberType_m3332420974 (); extern "C" void Type_get_ReflectedType_m3314355776 (); extern "C" void Type_get_TypeHandle_m2396205316 (); extern "C" void Type_Equals_m3925860910 (); extern "C" void Type_Equals_m3120004755 (); extern "C" void Type_EqualsInternal_m1929885654 (); extern "C" void Type_internal_from_handle_m1276658186 (); extern "C" void Type_internal_from_name_m3401043285 (); extern "C" void Type_GetType_m2877589631 (); extern "C" void Type_GetType_m3430407454 (); extern "C" void Type_GetTypeCodeInternal_m3432813657 (); extern "C" void Type_GetTypeCode_m2969996822 (); extern "C" void Type_GetTypeFromHandle_m3806905434 (); extern "C" void Type_GetTypeHandle_m1914576243 (); extern "C" void Type_type_is_subtype_of_m3361675332 (); extern "C" void Type_type_is_assignable_from_m3046828961 (); extern "C" void Type_IsSubclassOf_m1095320857 (); extern "C" void Type_IsAssignableFrom_m1817311413 (); extern "C" void Type_IsInstanceOfType_m2263809757 (); extern "C" void Type_GetHashCode_m3471493766 (); extern "C" void Type_GetMethod_m2884801946 (); extern "C" void Type_GetMethod_m534507110 (); extern "C" void Type_GetMethod_m527054833 (); extern "C" void Type_GetMethod_m2171093265 (); extern "C" void Type_GetProperty_m3455595366 (); extern "C" void Type_GetProperty_m786720973 (); extern "C" void Type_GetProperty_m3045839774 (); extern "C" void Type_GetProperty_m3910337444 (); extern "C" void Type_IsArrayImpl_m813148751 (); extern "C" void Type_IsValueTypeImpl_m4191583068 (); extern "C" void Type_IsContextfulImpl_m509765663 (); extern "C" void Type_IsMarshalByRefImpl_m4102401647 (); extern "C" void Type_GetConstructor_m2586438681 (); extern "C" void Type_GetConstructor_m443034079 (); extern "C" void Type_GetConstructor_m3502935011 (); extern "C" void Type_ToString_m2384448786 (); extern "C" void Type_get_IsSystemType_m3052526531 (); extern "C" void Type_GetGenericArguments_m202281670 (); extern "C" void Type_get_ContainsGenericParameters_m1949542132 (); extern "C" void Type_get_IsGenericTypeDefinition_m3860363596 (); extern "C" void Type_GetGenericTypeDefinition_impl_m987436420 (); extern "C" void Type_GetGenericTypeDefinition_m785420605 (); extern "C" void Type_get_IsGenericType_m3394442905 (); extern "C" void Type_MakeGenericType_m2466937396 (); extern "C" void Type_MakeGenericType_m2305919041 (); extern "C" void Type_get_IsGenericParameter_m1053942860 (); extern "C" void Type_get_IsNested_m2782386097 (); extern "C" void Type_GetPseudoCustomAttributes_m3344475752 (); extern "C" void TypedReference_Equals_m2626069127 (); extern "C" void TypedReference_GetHashCode_m1538911 (); extern "C" void TypeInitializationException__ctor_m679814589 (); extern "C" void TypeInitializationException_GetObjectData_m2924961818 (); extern "C" void TypeLoadException__ctor_m2756824898 (); extern "C" void TypeLoadException__ctor_m249965312 (); extern "C" void TypeLoadException__ctor_m2496850307 (); extern "C" void TypeLoadException_get_Message_m2467761275 (); extern "C" void TypeLoadException_GetObjectData_m1260387808 (); extern "C" void UInt16_System_IConvertible_ToBoolean_m1669361982 (); extern "C" void UInt16_System_IConvertible_ToByte_m1909834982 (); extern "C" void UInt16_System_IConvertible_ToChar_m3870741506 (); extern "C" void UInt16_System_IConvertible_ToDateTime_m1638515148 (); extern "C" void UInt16_System_IConvertible_ToDecimal_m336568286 (); extern "C" void UInt16_System_IConvertible_ToDouble_m3844175992 (); extern "C" void UInt16_System_IConvertible_ToInt16_m3584773694 (); extern "C" void UInt16_System_IConvertible_ToInt32_m965209598 (); extern "C" void UInt16_System_IConvertible_ToInt64_m1413818526 (); extern "C" void UInt16_System_IConvertible_ToSByte_m4135925726 (); extern "C" void UInt16_System_IConvertible_ToSingle_m1113917670 (); extern "C" void UInt16_System_IConvertible_ToType_m435718588 (); extern "C" void UInt16_System_IConvertible_ToUInt16_m3285773716 (); extern "C" void UInt16_System_IConvertible_ToUInt32_m1665458952 (); extern "C" void UInt16_System_IConvertible_ToUInt64_m4269127494 (); extern "C" void UInt16_CompareTo_m2016984612 (); extern "C" void UInt16_Equals_m857648105 (); extern "C" void UInt16_GetHashCode_m592888001 (); extern "C" void UInt16_CompareTo_m2335401604 (); extern "C" void UInt16_Equals_m1176065097 (); extern "C" void UInt16_Parse_m1444018254 (); extern "C" void UInt16_Parse_m148894233 (); extern "C" void UInt16_TryParse_m1136207264 (); extern "C" void UInt16_TryParse_m3401065021 (); extern "C" void UInt16_ToString_m741885559 (); extern "C" void UInt16_ToString_m921266213 (); extern "C" void UInt16_ToString_m3898855915 (); extern "C" void UInt16_ToString_m1090572969 (); extern "C" void UInt32_System_IConvertible_ToBoolean_m2848929732 (); extern "C" void UInt32_System_IConvertible_ToByte_m1898052640 (); extern "C" void UInt32_System_IConvertible_ToChar_m3858959164 (); extern "C" void UInt32_System_IConvertible_ToDateTime_m3845377030 (); extern "C" void UInt32_System_IConvertible_ToDecimal_m1516136036 (); extern "C" void UInt32_System_IConvertible_ToDouble_m1111279922 (); extern "C" void UInt32_System_IConvertible_ToInt16_m3219521092 (); extern "C" void UInt32_System_IConvertible_ToInt32_m599956996 (); extern "C" void UInt32_System_IConvertible_ToInt64_m1048565924 (); extern "C" void UInt32_System_IConvertible_ToSByte_m3770673124 (); extern "C" void UInt32_System_IConvertible_ToSingle_m2675988896 (); extern "C" void UInt32_System_IConvertible_ToType_m3076110838 (); extern "C" void UInt32_System_IConvertible_ToUInt16_m552877646 (); extern "C" void UInt32_System_IConvertible_ToUInt32_m3227530178 (); extern "C" void UInt32_System_IConvertible_ToUInt64_m1536231424 (); extern "C" void UInt32_CompareTo_m1956022750 (); extern "C" void UInt32_Equals_m1266223727 (); extern "C" void UInt32_GetHashCode_m1046676807 (); extern "C" void UInt32_CompareTo_m2274441540 (); extern "C" void UInt32_Equals_m1584642517 (); extern "C" void UInt32_Parse_m178847972 (); extern "C" void UInt32_Parse_m3291857117 (); extern "C" void UInt32_Parse_m1670428837 (); extern "C" void UInt32_Parse_m3087278554 (); extern "C" void UInt32_TryParse_m537116052 (); extern "C" void UInt32_TryParse_m3950000893 (); extern "C" void UInt32_ToString_m904380337 (); extern "C" void UInt32_ToString_m2214910431 (); extern "C" void UInt32_ToString_m1403037425 (); extern "C" void UInt32_ToString_m640530147 (); extern "C" void UInt64_System_IConvertible_ToBoolean_m486013061 (); extern "C" void UInt64_System_IConvertible_ToByte_m3655981823 (); extern "C" void UInt64_System_IConvertible_ToChar_m1321921051 (); extern "C" void UInt64_System_IConvertible_ToDateTime_m3609404261 (); extern "C" void UInt64_System_IConvertible_ToDecimal_m3448186661 (); extern "C" void UInt64_System_IConvertible_ToDouble_m2559077457 (); extern "C" void UInt64_System_IConvertible_ToInt16_m1880750917 (); extern "C" void UInt64_System_IConvertible_ToInt32_m3556154117 (); extern "C" void UInt64_System_IConvertible_ToInt64_m4004763045 (); extern "C" void UInt64_System_IConvertible_ToSByte_m2431902949 (); extern "C" void UInt64_System_IConvertible_ToSingle_m4123786431 (); extern "C" void UInt64_System_IConvertible_ToType_m2439463509 (); extern "C" void UInt64_System_IConvertible_ToUInt16_m2000675181 (); extern "C" void UInt64_System_IConvertible_ToUInt32_m380360417 (); extern "C" void UInt64_System_IConvertible_ToUInt64_m2984028959 (); extern "C" void UInt64_CompareTo_m3115041149 (); extern "C" void UInt64_Equals_m3490516784 (); extern "C" void UInt64_GetHashCode_m4085537544 (); extern "C" void UInt64_CompareTo_m3433462884 (); extern "C" void UInt64_Equals_m3808938519 (); extern "C" void UInt64_Parse_m3335137308 (); extern "C" void UInt64_Parse_m4183475069 (); extern "C" void UInt64_Parse_m3644239463 (); extern "C" void UInt64_TryParse_m1333073810 (); extern "C" void UInt64_ToString_m3095865744 (); extern "C" void UInt64_ToString_m2926838398 (); extern "C" void UInt64_ToString_m54951794 (); extern "C" void UInt64_ToString_m4198358338 (); extern "C" void UIntPtr__ctor_m3952300446 (); extern "C" void UIntPtr__ctor_m3952297501 (); extern "C" void UIntPtr__ctor_m1853619782 (); extern "C" void UIntPtr__cctor_m3952213328 (); extern "C" void UIntPtr_System_Runtime_Serialization_ISerializable_GetObjectData_m1506461934 (); extern "C" void UIntPtr_Equals_m2746368876 (); extern "C" void UIntPtr_GetHashCode_m939387472 (); extern "C" void UIntPtr_ToUInt32_m3683901238 (); extern "C" void UIntPtr_ToUInt64_m958857238 (); extern "C" void UIntPtr_ToPointer_m365084105 (); extern "C" void UIntPtr_ToString_m2250548790 (); extern "C" void UIntPtr_get_Size_m3534433933 (); extern "C" void UIntPtr_op_Equality_m2619366549 (); extern "C" void UIntPtr_op_Inequality_m3507406160 (); extern "C" void UIntPtr_op_Explicit_m2238365276 (); extern "C" void UIntPtr_op_Explicit_m599953533 (); extern "C" void UIntPtr_op_Explicit_m1125931844 (); extern "C" void UIntPtr_op_Explicit_m376973280 (); extern "C" void UIntPtr_op_Explicit_m555260452 (); extern "C" void UIntPtr_op_Explicit_m1125928899 (); extern "C" void UnauthorizedAccessException__ctor_m1360158714 (); extern "C" void UnauthorizedAccessException__ctor_m855147848 (); extern "C" void UnauthorizedAccessException__ctor_m415626811 (); extern "C" void UnhandledExceptionEventArgs__ctor_m764060079 (); extern "C" void UnhandledExceptionEventArgs_get_ExceptionObject_m3487900308 (); extern "C" void UnhandledExceptionEventArgs_get_IsTerminating_m2437875213 (); extern "C" void UnhandledExceptionEventHandler__ctor_m2560140041 (); extern "C" void UnhandledExceptionEventHandler_Invoke_m689053609 (); extern "C" void UnhandledExceptionEventHandler_BeginInvoke_m4281537936 (); extern "C" void UnhandledExceptionEventHandler_EndInvoke_m2562785689 (); extern "C" void UnitySerializationHolder__ctor_m3313764879 (); extern "C" void UnitySerializationHolder_GetTypeData_m1915295124 (); extern "C" void UnitySerializationHolder_GetDBNullData_m3162174122 (); extern "C" void UnitySerializationHolder_GetModuleData_m3074840415 (); extern "C" void UnitySerializationHolder_GetObjectData_m3726496364 (); extern "C" void UnitySerializationHolder_GetRealObject_m3182718270 (); extern "C" void ValueType__ctor_m249728358 (); extern "C" void ValueType_InternalEquals_m1612359418 (); extern "C" void ValueType_DefaultEquals_m1340356096 (); extern "C" void ValueType_Equals_m3030384533 (); extern "C" void ValueType_InternalGetHashCode_m3910310408 (); extern "C" void ValueType_GetHashCode_m3949669881 (); extern "C" void ValueType_ToString_m1045693805 (); extern "C" void Version__ctor_m3513061113 (); extern "C" void Version__ctor_m48000169 (); extern "C" void Version__ctor_m3046694477 (); extern "C" void Version__ctor_m1427678122 (); extern "C" void Version__ctor_m3585293677 (); extern "C" void Version_CheckedSet_m1252626871 (); extern "C" void Version_get_Build_m4183817856 (); extern "C" void Version_get_Major_m489899787 (); extern "C" void Version_get_Minor_m722627079 (); extern "C" void Version_get_Revision_m3477882347 (); extern "C" void Version_Clone_m1917770783 (); extern "C" void Version_CompareTo_m2859625401 (); extern "C" void Version_Equals_m1548770152 (); extern "C" void Version_CompareTo_m673494338 (); extern "C" void Version_Equals_m2986654579 (); extern "C" void Version_GetHashCode_m146914892 (); extern "C" void Version_ToString_m3622155194 (); extern "C" void Version_CreateFromString_m3872168654 (); extern "C" void Version_op_Equality_m21054105 (); extern "C" void Version_op_Inequality_m4221983316 (); extern "C" void WeakReference__ctor_m2482272510 (); extern "C" void WeakReference__ctor_m1824216406 (); extern "C" void WeakReference__ctor_m1724966759 (); extern "C" void WeakReference__ctor_m1465778495 (); extern "C" void WeakReference_AllocateHandle_m3300556457 (); extern "C" void WeakReference_get_Target_m2183973397 (); extern "C" void WeakReference_get_TrackResurrection_m2498111523 (); extern "C" void WeakReference_Finalize_m3030916772 (); extern "C" void WeakReference_GetObjectData_m1524996508 (); extern "C" void Locale_GetText_m2031928403 (); extern "C" void Locale_GetText_m2138526911 (); extern "C" void KeyBuilder_get_Rng_m1224245225 (); extern "C" void KeyBuilder_Key_m489708312 (); extern "C" void KeyBuilder_IV_m3901719576 (); extern "C" void SymmetricTransform__ctor_m1205754880 (); extern "C" void SymmetricTransform_System_IDisposable_Dispose_m455424824 (); extern "C" void SymmetricTransform_Finalize_m1432383547 (); extern "C" void SymmetricTransform_Dispose_m2730879931 (); extern "C" void SymmetricTransform_get_CanReuseTransform_m725989976 (); extern "C" void SymmetricTransform_Transform_m3903574043 (); extern "C" void SymmetricTransform_CBC_m2217465763 (); extern "C" void SymmetricTransform_CFB_m3609349384 (); extern "C" void SymmetricTransform_OFB_m962939772 (); extern "C" void SymmetricTransform_CTS_m122988069 (); extern "C" void SymmetricTransform_CheckInput_m3506478922 (); extern "C" void SymmetricTransform_TransformBlock_m1944043099 (); extern "C" void SymmetricTransform_get_KeepLastBlock_m2173858210 (); extern "C" void SymmetricTransform_InternalTransformBlock_m3380491768 (); extern "C" void SymmetricTransform_Random_m3415780681 (); extern "C" void SymmetricTransform_ThrowBadPaddingException_m2083216889 (); extern "C" void SymmetricTransform_FinalEncrypt_m975601255 (); extern "C" void SymmetricTransform_FinalDecrypt_m3742401599 (); extern "C" void SymmetricTransform_TransformFinalBlock_m2524388439 (); extern "C" void Check_SourceAndPredicate_m2252398949 (); extern "C" void ExtensionAttribute__ctor_m1242622322 (); extern "C" void Aes__ctor_m380511311 (); extern "C" void AesManaged__ctor_m1572578968 (); extern "C" void AesManaged_GenerateIV_m4188712014 (); extern "C" void AesManaged_GenerateKey_m1003425312 (); extern "C" void AesManaged_CreateDecryptor_m1952358980 (); extern "C" void AesManaged_CreateEncryptor_m2258087532 (); extern "C" void AesManaged_get_IV_m3771642968 (); extern "C" void AesManaged_set_IV_m2456625939 (); extern "C" void AesManaged_get_Key_m959186774 (); extern "C" void AesManaged_set_Key_m1884561361 (); extern "C" void AesManaged_get_KeySize_m1856785595 (); extern "C" void AesManaged_set_KeySize_m838068010 (); extern "C" void AesManaged_CreateDecryptor_m2733487560 (); extern "C" void AesManaged_CreateEncryptor_m3462881952 (); extern "C" void AesManaged_Dispose_m2950523276 (); extern "C" void AesTransform__ctor_m2781154868 (); extern "C" void AesTransform__cctor_m1179286690 (); extern "C" void AesTransform_ECB_m2589908703 (); extern "C" void AesTransform_SubByte_m1214814958 (); extern "C" void AesTransform_Encrypt128_m3651261907 (); extern "C" void AesTransform_Decrypt128_m3310750971 (); extern "C" void Locale_GetText_m3269873186 (); extern "C" void Locale_GetText_m946430094 (); extern "C" void HybridDictionary__ctor_m951312923 (); extern "C" void HybridDictionary__ctor_m3356743441 (); extern "C" void HybridDictionary_System_Collections_IEnumerable_GetEnumerator_m633511108 (); extern "C" void HybridDictionary_get_inner_m1544058846 (); extern "C" void HybridDictionary_get_Count_m2544735439 (); extern "C" void HybridDictionary_get_IsSynchronized_m4103840922 (); extern "C" void HybridDictionary_get_Item_m1101975172 (); extern "C" void HybridDictionary_set_Item_m2233477417 (); extern "C" void HybridDictionary_get_SyncRoot_m1280025498 (); extern "C" void HybridDictionary_Add_m1798913928 (); extern "C" void HybridDictionary_Contains_m356410114 (); extern "C" void HybridDictionary_CopyTo_m1553338168 (); extern "C" void HybridDictionary_GetEnumerator_m3022935527 (); extern "C" void HybridDictionary_Remove_m1597248871 (); extern "C" void HybridDictionary_Switch_m4039885821 (); extern "C" void ListDictionary__ctor_m1342781113 (); extern "C" void ListDictionary__ctor_m1799491195 (); extern "C" void ListDictionary_System_Collections_IEnumerable_GetEnumerator_m3647053798 (); extern "C" void ListDictionary_FindEntry_m2277169595 (); extern "C" void ListDictionary_FindEntry_m831100599 (); extern "C" void ListDictionary_AddImpl_m2933606886 (); extern "C" void ListDictionary_get_Count_m3433674349 (); extern "C" void ListDictionary_get_IsSynchronized_m34636604 (); extern "C" void ListDictionary_get_SyncRoot_m1493803004 (); extern "C" void ListDictionary_CopyTo_m1026734678 (); extern "C" void ListDictionary_get_Item_m151625826 (); extern "C" void ListDictionary_set_Item_m588649799 (); extern "C" void ListDictionary_Add_m1089190058 (); extern "C" void ListDictionary_Clear_m3043881700 (); extern "C" void ListDictionary_Contains_m142502176 (); extern "C" void ListDictionary_GetEnumerator_m2156198277 (); extern "C" void ListDictionary_Remove_m4061265285 (); extern "C" void DictionaryNode__ctor_m424034580 (); extern "C" void DictionaryNodeEnumerator__ctor_m3548237087 (); extern "C" void DictionaryNodeEnumerator_FailFast_m4001260572 (); extern "C" void DictionaryNodeEnumerator_MoveNext_m3885899388 (); extern "C" void DictionaryNodeEnumerator_Reset_m3355498799 (); extern "C" void DictionaryNodeEnumerator_get_Current_m3751627803 (); extern "C" void DictionaryNodeEnumerator_get_DictionaryNode_m903305644 (); extern "C" void DictionaryNodeEnumerator_get_Entry_m373272494 (); extern "C" void DictionaryNodeEnumerator_get_Key_m3214255105 (); extern "C" void DictionaryNodeEnumerator_get_Value_m1866106451 (); extern "C" void NameObjectCollectionBase__ctor_m1741929684 (); extern "C" void NameObjectCollectionBase__ctor_m355604501 (); extern "C" void NameObjectCollectionBase_System_Collections_ICollection_get_IsSynchronized_m4292869198 (); extern "C" void NameObjectCollectionBase_System_Collections_ICollection_get_SyncRoot_m625351596 (); extern "C" void NameObjectCollectionBase_System_Collections_ICollection_CopyTo_m606865136 (); extern "C" void NameObjectCollectionBase_Init_m3194316544 (); extern "C" void NameObjectCollectionBase_get_Keys_m411623033 (); extern "C" void NameObjectCollectionBase_GetEnumerator_m2097604182 (); extern "C" void NameObjectCollectionBase_GetObjectData_m3614997106 (); extern "C" void NameObjectCollectionBase_get_Count_m2598648584 (); extern "C" void NameObjectCollectionBase_OnDeserialization_m3096738610 (); extern "C" void NameObjectCollectionBase_get_IsReadOnly_m911678543 (); extern "C" void NameObjectCollectionBase_BaseAdd_m2649117518 (); extern "C" void NameObjectCollectionBase_BaseGet_m3004572221 (); extern "C" void NameObjectCollectionBase_BaseGet_m3404124054 (); extern "C" void NameObjectCollectionBase_BaseGetKey_m3433139160 (); extern "C" void NameObjectCollectionBase_FindFirstMatchedItem_m3932570092 (); extern "C" void _Item__ctor_m887709055 (); extern "C" void _KeysEnumerator__ctor_m837674160 (); extern "C" void _KeysEnumerator_get_Current_m698870767 (); extern "C" void _KeysEnumerator_MoveNext_m2934171782 (); extern "C" void _KeysEnumerator_Reset_m2513360761 (); extern "C" void KeysCollection__ctor_m571748459 (); extern "C" void KeysCollection_System_Collections_ICollection_CopyTo_m3481790195 (); extern "C" void KeysCollection_System_Collections_ICollection_get_IsSynchronized_m261821823 (); extern "C" void KeysCollection_System_Collections_ICollection_get_SyncRoot_m2421942655 (); extern "C" void KeysCollection_get_Count_m1716505797 (); extern "C" void KeysCollection_GetEnumerator_m2467788383 (); extern "C" void NameValueCollection__ctor_m2553202389 (); extern "C" void NameValueCollection__ctor_m3193274006 (); extern "C" void NameValueCollection_Add_m1609818730 (); extern "C" void NameValueCollection_Get_m2840953239 (); extern "C" void NameValueCollection_AsSingleString_m3181933374 (); extern "C" void NameValueCollection_GetKey_m4077148652 (); extern "C" void NameValueCollection_InvalidateCachedArrays_m3569021030 (); extern "C" void EditorBrowsableAttribute__ctor_m2031704921 (); extern "C" void EditorBrowsableAttribute_get_State_m2194662776 (); extern "C" void EditorBrowsableAttribute_Equals_m2138671840 (); extern "C" void EditorBrowsableAttribute_GetHashCode_m2651695940 (); extern "C" void TypeConverterAttribute__ctor_m1679891427 (); extern "C" void TypeConverterAttribute__ctor_m1621665718 (); extern "C" void TypeConverterAttribute__cctor_m54930474 (); extern "C" void TypeConverterAttribute_Equals_m476857406 (); extern "C" void TypeConverterAttribute_GetHashCode_m3397915682 (); extern "C" void TypeConverterAttribute_get_ConverterTypeName_m3078532986 (); extern "C" void DefaultUriParser__ctor_m1912198945 (); extern "C" void DefaultUriParser__ctor_m2197038465 (); extern "C" void MonoTODOAttribute__ctor_m754636072 (); extern "C" void MonoTODOAttribute__ctor_m3809503962 (); extern "C" void DefaultCertificatePolicy__ctor_m4248919730 (); extern "C" void DefaultCertificatePolicy_CheckValidationResult_m4124026463 (); extern "C" void FileWebRequest__ctor_m1190066806 (); extern "C" void FileWebRequest__ctor_m2417420612 (); extern "C" void FileWebRequest_System_Runtime_Serialization_ISerializable_GetObjectData_m3587475368 (); extern "C" void FileWebRequest_GetObjectData_m1166847137 (); extern "C" void FileWebRequestCreator__ctor_m349516791 (); extern "C" void FileWebRequestCreator_Create_m2860446468 (); extern "C" void FtpRequestCreator__ctor_m3461046285 (); extern "C" void FtpRequestCreator_Create_m2169393454 (); extern "C" void FtpWebRequest__ctor_m3137933378 (); extern "C" void FtpWebRequest__cctor_m2914795070 (); extern "C" void FtpWebRequest_U3CcallbackU3Em__B_m1388175350 (); extern "C" void GlobalProxySelection_get_Select_m3561358852 (); extern "C" void HttpRequestCreator__ctor_m2335588533 (); extern "C" void HttpRequestCreator_Create_m3368655414 (); extern "C" void HttpVersion__cctor_m1997660113 (); extern "C" void HttpWebRequest__ctor_m3412251370 (); extern "C" void HttpWebRequest__ctor_m1235446968 (); extern "C" void HttpWebRequest__cctor_m2196070038 (); extern "C" void HttpWebRequest_System_Runtime_Serialization_ISerializable_GetObjectData_m2246907828 (); extern "C" void HttpWebRequest_get_Address_m3157794738 (); extern "C" void HttpWebRequest_get_ServicePoint_m146133801 (); extern "C" void HttpWebRequest_GetServicePoint_m2366596494 (); extern "C" void HttpWebRequest_GetObjectData_m3873995797 (); extern "C" void IPAddress__ctor_m927672017 (); extern "C" void IPAddress__ctor_m3937524101 (); extern "C" void IPAddress__cctor_m3356110606 (); extern "C" void IPAddress_SwapShort_m2091369575 (); extern "C" void IPAddress_HostToNetworkOrder_m3514593469 (); extern "C" void IPAddress_NetworkToHostOrder_m3568389847 (); extern "C" void IPAddress_Parse_m1640477876 (); extern "C" void IPAddress_TryParse_m1385842418 (); extern "C" void IPAddress_ParseIPV4_m120660623 (); extern "C" void IPAddress_ParseIPV6_m3394559565 (); extern "C" void IPAddress_get_InternalIPv4Address_m2101711253 (); extern "C" void IPAddress_get_ScopeId_m2224014450 (); extern "C" void IPAddress_get_AddressFamily_m2364322247 (); extern "C" void IPAddress_IsLoopback_m3449051763 (); extern "C" void IPAddress_ToString_m2947972276 (); extern "C" void IPAddress_ToString_m277532550 (); extern "C" void IPAddress_Equals_m1176433114 (); extern "C" void IPAddress_GetHashCode_m1369616318 (); extern "C" void IPAddress_Hash_m3738146179 (); extern "C" void IPv6Address__ctor_m194879283 (); extern "C" void IPv6Address__ctor_m705628292 (); extern "C" void IPv6Address__ctor_m974981843 (); extern "C" void IPv6Address__cctor_m84116622 (); extern "C" void IPv6Address_Parse_m1303737588 (); extern "C" void IPv6Address_Fill_m1034015862 (); extern "C" void IPv6Address_TryParse_m895448644 (); extern "C" void IPv6Address_TryParse_m711194034 (); extern "C" void IPv6Address_get_Address_m1909339413 (); extern "C" void IPv6Address_get_ScopeId_m2822565682 (); extern "C" void IPv6Address_set_ScopeId_m1866414241 (); extern "C" void IPv6Address_IsLoopback_m3559367027 (); extern "C" void IPv6Address_SwapUShort_m3711871552 (); extern "C" void IPv6Address_AsIPv4Int_m2221656389 (); extern "C" void IPv6Address_IsIPv4Compatible_m3774873342 (); extern "C" void IPv6Address_IsIPv4Mapped_m525075229 (); extern "C" void IPv6Address_ToString_m804087156 (); extern "C" void IPv6Address_ToString_m2548793323 (); extern "C" void IPv6Address_Equals_m1266534874 (); extern "C" void IPv6Address_GetHashCode_m691770942 (); extern "C" void IPv6Address_Hash_m1904786435 (); extern "C" void RemoteCertificateValidationCallback__ctor_m1684204841 (); extern "C" void RemoteCertificateValidationCallback_Invoke_m2321994438 (); extern "C" void RemoteCertificateValidationCallback_BeginInvoke_m3899812411 (); extern "C" void RemoteCertificateValidationCallback_EndInvoke_m3362576995 (); extern "C" void ServicePoint__ctor_m4244145138 (); extern "C" void ServicePoint_get_Address_m1466650202 (); extern "C" void ServicePoint_get_CurrentConnections_m1954016890 (); extern "C" void ServicePoint_get_IdleSince_m3269103731 (); extern "C" void ServicePoint_set_IdleSince_m305314386 (); extern "C" void ServicePoint_set_Expect100Continue_m285998358 (); extern "C" void ServicePoint_set_UseNagleAlgorithm_m4121109536 (); extern "C" void ServicePoint_set_SendContinue_m515260680 (); extern "C" void ServicePoint_set_UsesProxy_m3686577241 (); extern "C" void ServicePoint_set_UseConnect_m3883999836 (); extern "C" void ServicePoint_get_AvailableForRecycling_m4047613978 (); extern "C" void ServicePointManager__cctor_m1197717107 (); extern "C" void ServicePointManager_get_CertificatePolicy_m2939782421 (); extern "C" void ServicePointManager_get_CheckCertificateRevocationList_m2088706324 (); extern "C" void ServicePointManager_get_SecurityProtocol_m2377079580 (); extern "C" void ServicePointManager_get_ServerCertificateValidationCallback_m258265119 (); extern "C" void ServicePointManager_FindServicePoint_m543399130 (); extern "C" void ServicePointManager_RecycleServicePoints_m3960742511 (); extern "C" void SPKey__ctor_m1893054627 (); extern "C" void SPKey_GetHashCode_m4255714790 (); extern "C" void SPKey_Equals_m4194939906 (); extern "C" void WebHeaderCollection__ctor_m40272365 (); extern "C" void WebHeaderCollection__ctor_m3165611438 (); extern "C" void WebHeaderCollection__ctor_m2599998628 (); extern "C" void WebHeaderCollection__cctor_m766347104 (); extern "C" void WebHeaderCollection_System_Runtime_Serialization_ISerializable_GetObjectData_m3098703614 (); extern "C" void WebHeaderCollection_Add_m4256453202 (); extern "C" void WebHeaderCollection_AddWithoutValidate_m1282121770 (); extern "C" void WebHeaderCollection_IsRestricted_m2143660688 (); extern "C" void WebHeaderCollection_OnDeserialization_m829584441 (); extern "C" void WebHeaderCollection_ToString_m3267340486 (); extern "C" void WebHeaderCollection_GetObjectData_m3829341963 (); extern "C" void WebHeaderCollection_get_Count_m955643201 (); extern "C" void WebHeaderCollection_get_Keys_m2328892712 (); extern "C" void WebHeaderCollection_Get_m249241391 (); extern "C" void WebHeaderCollection_GetKey_m721597780 (); extern "C" void WebHeaderCollection_GetEnumerator_m671727323 (); extern "C" void WebHeaderCollection_IsHeaderValue_m3476411603 (); extern "C" void WebHeaderCollection_IsHeaderName_m671697555 (); extern "C" void WebProxy__ctor_m2333292256 (); extern "C" void WebProxy__ctor_m1295075053 (); extern "C" void WebProxy__ctor_m3926845473 (); extern "C" void WebProxy_System_Runtime_Serialization_ISerializable_GetObjectData_m1269108139 (); extern "C" void WebProxy_get_UseDefaultCredentials_m2666418573 (); extern "C" void WebProxy_GetProxy_m1799832125 (); extern "C" void WebProxy_IsBypassed_m2441560530 (); extern "C" void WebProxy_GetObjectData_m2646244990 (); extern "C" void WebProxy_CheckBypassList_m2380971276 (); extern "C" void WebRequest__ctor_m3908406559 (); extern "C" void WebRequest__ctor_m2268070368 (); extern "C" void WebRequest__cctor_m419422830 (); extern "C" void WebRequest_System_Runtime_Serialization_ISerializable_GetObjectData_m3499262348 (); extern "C" void WebRequest_AddDynamicPrefix_m4259958729 (); extern "C" void WebRequest_GetMustImplement_m2345556858 (); extern "C" void WebRequest_get_DefaultWebProxy_m645383963 (); extern "C" void WebRequest_GetDefaultWebProxy_m3231963326 (); extern "C" void WebRequest_GetObjectData_m3619776829 (); extern "C" void WebRequest_AddPrefix_m2923345701 (); extern "C" void AsnEncodedData__ctor_m4216053755 (); extern "C" void AsnEncodedData__ctor_m2841294762 (); extern "C" void AsnEncodedData__ctor_m299043111 (); extern "C" void AsnEncodedData_get_Oid_m2261116610 (); extern "C" void AsnEncodedData_set_Oid_m865125231 (); extern "C" void AsnEncodedData_get_RawData_m334685068 (); extern "C" void AsnEncodedData_set_RawData_m839792539 (); extern "C" void AsnEncodedData_CopyFrom_m406388795 (); extern "C" void AsnEncodedData_ToString_m2998858121 (); extern "C" void AsnEncodedData_Default_m2182260212 (); extern "C" void AsnEncodedData_BasicConstraintsExtension_m1615975146 (); extern "C" void AsnEncodedData_EnhancedKeyUsageExtension_m45972986 (); extern "C" void AsnEncodedData_KeyUsageExtension_m3060938192 (); extern "C" void AsnEncodedData_SubjectKeyIdentifierExtension_m3725367926 (); extern "C" void AsnEncodedData_SubjectAltName_m1574931557 (); extern "C" void AsnEncodedData_NetscapeCertType_m2447693060 (); extern "C" void Oid__ctor_m49113285 (); extern "C" void Oid__ctor_m2787728989 (); extern "C" void Oid__ctor_m1889247193 (); extern "C" void Oid__ctor_m4076384238 (); extern "C" void Oid_get_FriendlyName_m937320993 (); extern "C" void Oid_get_Value_m216923304 (); extern "C" void Oid_GetName_m1845636801 (); extern "C" void OidCollection__ctor_m3592497479 (); extern "C" void OidCollection_System_Collections_ICollection_CopyTo_m3200351709 (); extern "C" void OidCollection_System_Collections_IEnumerable_GetEnumerator_m494890284 (); extern "C" void OidCollection_get_Count_m924395419 (); extern "C" void OidCollection_get_IsSynchronized_m2984568922 (); extern "C" void OidCollection_get_Item_m1851824850 (); extern "C" void OidCollection_get_SyncRoot_m887599928 (); extern "C" void OidCollection_Add_m1834548415 (); extern "C" void OidEnumerator__ctor_m1686464972 (); extern "C" void OidEnumerator_System_Collections_IEnumerator_get_Current_m530360623 (); extern "C" void OidEnumerator_MoveNext_m3766070973 (); extern "C" void OidEnumerator_Reset_m2251511182 (); extern "C" void PublicKey__ctor_m1299060097 (); extern "C" void PublicKey_get_EncodedKeyValue_m334858790 (); extern "C" void PublicKey_get_EncodedParameters_m3678410494 (); extern "C" void PublicKey_get_Key_m2294273754 (); extern "C" void PublicKey_get_Oid_m100819764 (); extern "C" void PublicKey_GetUnsignedBigInteger_m2731897515 (); extern "C" void PublicKey_DecodeDSA_m2700844317 (); extern "C" void PublicKey_DecodeRSA_m3835708506 (); extern "C" void X500DistinguishedName__ctor_m1884931640 (); extern "C" void X500DistinguishedName_Decode_m1854433232 (); extern "C" void X500DistinguishedName_GetSeparator_m1820431761 (); extern "C" void X500DistinguishedName_DecodeRawData_m2106660211 (); extern "C" void X500DistinguishedName_Canonize_m3238640877 (); extern "C" void X500DistinguishedName_AreEqual_m3926647407 (); extern "C" void X509BasicConstraintsExtension__ctor_m4274454898 (); extern "C" void X509BasicConstraintsExtension__ctor_m331703276 (); extern "C" void X509BasicConstraintsExtension__ctor_m2615084218 (); extern "C" void X509BasicConstraintsExtension_get_CertificateAuthority_m2798502193 (); extern "C" void X509BasicConstraintsExtension_get_HasPathLengthConstraint_m2782347167 (); extern "C" void X509BasicConstraintsExtension_get_PathLengthConstraint_m482430355 (); extern "C" void X509BasicConstraintsExtension_CopyFrom_m2536122738 (); extern "C" void X509BasicConstraintsExtension_Decode_m587114879 (); extern "C" void X509BasicConstraintsExtension_Encode_m1897551102 (); extern "C" void X509BasicConstraintsExtension_ToString_m917821682 (); extern "C" void X509Certificate2__ctor_m2334802535 (); extern "C" void X509Certificate2__cctor_m1878821707 (); extern "C" void X509Certificate2_get_Extensions_m3845394932 (); extern "C" void X509Certificate2_get_IssuerName_m3367621449 (); extern "C" void X509Certificate2_get_NotAfter_m3441061389 (); extern "C" void X509Certificate2_get_NotBefore_m4057480336 (); extern "C" void X509Certificate2_get_PrivateKey_m2043008864 (); extern "C" void X509Certificate2_get_PublicKey_m1236823063 (); extern "C" void X509Certificate2_get_SerialNumber_m3272726955 (); extern "C" void X509Certificate2_get_SignatureAlgorithm_m3325406410 (); extern "C" void X509Certificate2_get_SubjectName_m4019514164 (); extern "C" void X509Certificate2_get_Thumbprint_m1619061413 (); extern "C" void X509Certificate2_get_Version_m3267654015 (); extern "C" void X509Certificate2_GetNameInfo_m750863125 (); extern "C" void X509Certificate2_Find_m3631738471 (); extern "C" void X509Certificate2_GetValueAsString_m4160591819 (); extern "C" void X509Certificate2_ImportPkcs12_m976921138 (); extern "C" void X509Certificate2_Import_m295659102 (); extern "C" void X509Certificate2_Reset_m1463369551 (); extern "C" void X509Certificate2_ToString_m2515669489 (); extern "C" void X509Certificate2_ToString_m1920339368 (); extern "C" void X509Certificate2_AppendBuffer_m158196497 (); extern "C" void X509Certificate2_Verify_m1278605553 (); extern "C" void X509Certificate2_get_MonoCertificate_m2548639992 (); extern "C" void X509Certificate2Collection__ctor_m769271012 (); extern "C" void X509Certificate2Collection__ctor_m576565548 (); extern "C" void X509Certificate2Collection_get_Item_m1131271090 (); extern "C" void X509Certificate2Collection_Add_m1268164793 (); extern "C" void X509Certificate2Collection_AddRange_m1617477316 (); extern "C" void X509Certificate2Collection_Contains_m1344146715 (); extern "C" void X509Certificate2Collection_Find_m162772545 (); extern "C" void X509Certificate2Collection_GetEnumerator_m4202348315 (); extern "C" void X509Certificate2Enumerator__ctor_m1258842310 (); extern "C" void X509Certificate2Enumerator_System_Collections_IEnumerator_get_Current_m523796722 (); extern "C" void X509Certificate2Enumerator_System_Collections_IEnumerator_MoveNext_m3958468195 (); extern "C" void X509Certificate2Enumerator_System_Collections_IEnumerator_Reset_m3026796220 (); extern "C" void X509Certificate2Enumerator_get_Current_m812721831 (); extern "C" void X509Certificate2Enumerator_MoveNext_m3485099904 (); extern "C" void X509Certificate2Enumerator_Reset_m3723252011 (); extern "C" void X509CertificateCollection__ctor_m784073364 (); extern "C" void X509CertificateCollection__ctor_m329398404 (); extern "C" void X509CertificateCollection_get_Item_m2960635298 (); extern "C" void X509CertificateCollection_AddRange_m1527743820 (); extern "C" void X509CertificateCollection_GetEnumerator_m1418993187 (); extern "C" void X509CertificateCollection_GetHashCode_m252984435 (); extern "C" void X509CertificateEnumerator__ctor_m2651305038 (); extern "C" void X509CertificateEnumerator_System_Collections_IEnumerator_get_Current_m573192184 (); extern "C" void X509CertificateEnumerator_System_Collections_IEnumerator_MoveNext_m3439615103 (); extern "C" void X509CertificateEnumerator_System_Collections_IEnumerator_Reset_m623123084 (); extern "C" void X509CertificateEnumerator_get_Current_m49822583 (); extern "C" void X509CertificateEnumerator_MoveNext_m1871957220 (); extern "C" void X509CertificateEnumerator_Reset_m2299637595 (); extern "C" void X509Chain__ctor_m440780008 (); extern "C" void X509Chain__ctor_m2887631967 (); extern "C" void X509Chain__cctor_m297182149 (); extern "C" void X509Chain_get_ChainPolicy_m3141824143 (); extern "C" void X509Chain_Build_m417178512 (); extern "C" void X509Chain_Reset_m2382180245 (); extern "C" void X509Chain_get_Roots_m4101675455 (); extern "C" void X509Chain_get_CertificateAuthorities_m1238271486 (); extern "C" void X509Chain_get_CertificateCollection_m1393875737 (); extern "C" void X509Chain_BuildChainFrom_m2777021523 (); extern "C" void X509Chain_SelectBestFromCollection_m3232085257 (); extern "C" void X509Chain_FindParent_m2812194464 (); extern "C" void X509Chain_IsChainComplete_m3441936754 (); extern "C" void X509Chain_IsSelfIssued_m397924845 (); extern "C" void X509Chain_ValidateChain_m976559422 (); extern "C" void X509Chain_Process_m940730694 (); extern "C" void X509Chain_PrepareForNextCertificate_m2507052121 (); extern "C" void X509Chain_WrapUp_m3398853601 (); extern "C" void X509Chain_ProcessCertificateExtensions_m1491797822 (); extern "C" void X509Chain_IsSignedWith_m1198520936 (); extern "C" void X509Chain_GetSubjectKeyIdentifier_m2141872961 (); extern "C" void X509Chain_GetAuthorityKeyIdentifier_m3460155146 (); extern "C" void X509Chain_GetAuthorityKeyIdentifier_m3802915794 (); extern "C" void X509Chain_GetAuthorityKeyIdentifier_m1262096688 (); extern "C" void X509Chain_CheckRevocationOnChain_m1059846149 (); extern "C" void X509Chain_CheckRevocation_m2952361444 (); extern "C" void X509Chain_CheckRevocation_m1219092751 (); extern "C" void X509Chain_FindCrl_m1761802781 (); extern "C" void X509Chain_ProcessCrlExtensions_m3347968374 (); extern "C" void X509Chain_ProcessCrlEntryExtensions_m4212088422 (); extern "C" void X509ChainElement__ctor_m1605854504 (); extern "C" void X509ChainElement_get_Certificate_m2984441897 (); extern "C" void X509ChainElement_get_ChainElementStatus_m1337819701 (); extern "C" void X509ChainElement_get_StatusFlags_m2269812416 (); extern "C" void X509ChainElement_set_StatusFlags_m2679455941 (); extern "C" void X509ChainElement_Count_m466237836 (); extern "C" void X509ChainElement_Set_m2091040175 (); extern "C" void X509ChainElement_UncompressFlags_m3125973708 (); extern "C" void X509ChainElementCollection__ctor_m1079210340 (); extern "C" void X509ChainElementCollection_System_Collections_ICollection_CopyTo_m3190543456 (); extern "C" void X509ChainElementCollection_System_Collections_IEnumerable_GetEnumerator_m31369455 (); extern "C" void X509ChainElementCollection_get_Count_m3531017528 (); extern "C" void X509ChainElementCollection_get_IsSynchronized_m2629487837 (); extern "C" void X509ChainElementCollection_get_Item_m553083826 (); extern "C" void X509ChainElementCollection_get_SyncRoot_m527504827 (); extern "C" void X509ChainElementCollection_GetEnumerator_m1375522587 (); extern "C" void X509ChainElementCollection_Add_m2103492457 (); extern "C" void X509ChainElementCollection_Clear_m2780310927 (); extern "C" void X509ChainElementCollection_Contains_m150098075 (); extern "C" void X509ChainElementEnumerator__ctor_m1406437381 (); extern "C" void X509ChainElementEnumerator_System_Collections_IEnumerator_get_Current_m2217542770 (); extern "C" void X509ChainElementEnumerator_get_Current_m1994757799 (); extern "C" void X509ChainElementEnumerator_MoveNext_m2707933952 (); extern "C" void X509ChainElementEnumerator_Reset_m4033191339 (); extern "C" void X509ChainPolicy__ctor_m1959063574 (); extern "C" void X509ChainPolicy_get_ExtraStore_m3623675233 (); extern "C" void X509ChainPolicy_get_RevocationFlag_m852524363 (); extern "C" void X509ChainPolicy_get_RevocationMode_m2618017401 (); extern "C" void X509ChainPolicy_get_VerificationFlags_m1052595485 (); extern "C" void X509ChainPolicy_get_VerificationTime_m2439570886 (); extern "C" void X509ChainPolicy_Reset_m3900463811 (); extern "C" void X509ChainStatus__ctor_m452901827 (); extern "C" void X509ChainStatus_get_Status_m805216413 (); extern "C" void X509ChainStatus_set_Status_m2412197578 (); extern "C" void X509ChainStatus_set_StatusInformation_m2801383985 (); extern "C" void X509ChainStatus_GetInformation_m369546830 (); extern "C" void X509EnhancedKeyUsageExtension__ctor_m1143045852 (); extern "C" void X509EnhancedKeyUsageExtension_CopyFrom_m3559074914 (); extern "C" void X509EnhancedKeyUsageExtension_Decode_m3913247855 (); extern "C" void X509EnhancedKeyUsageExtension_ToString_m554823682 (); extern "C" void X509Extension__ctor_m1164925482 (); extern "C" void X509Extension__ctor_m2269929986 (); extern "C" void X509Extension_get_Critical_m1925069548 (); extern "C" void X509Extension_set_Critical_m717701037 (); extern "C" void X509Extension_CopyFrom_m3838050346 (); extern "C" void X509Extension_FormatUnkownData_m4234400381 (); extern "C" void X509ExtensionCollection__ctor_m3888740672 (); extern "C" void X509ExtensionCollection_System_Collections_ICollection_CopyTo_m2862251608 (); extern "C" void X509ExtensionCollection_System_Collections_IEnumerable_GetEnumerator_m1951031507 (); extern "C" void X509ExtensionCollection_get_Count_m2621259424 (); extern "C" void X509ExtensionCollection_get_IsSynchronized_m3201439337 (); extern "C" void X509ExtensionCollection_get_SyncRoot_m736404969 (); extern "C" void X509ExtensionCollection_get_Item_m2341415937 (); extern "C" void X509ExtensionCollection_GetEnumerator_m4079469459 (); extern "C" void X509ExtensionEnumerator__ctor_m2165217671 (); extern "C" void X509ExtensionEnumerator_System_Collections_IEnumerator_get_Current_m936939552 (); extern "C" void X509ExtensionEnumerator_get_Current_m3895268839 (); extern "C" void X509ExtensionEnumerator_MoveNext_m1312248716 (); extern "C" void X509ExtensionEnumerator_Reset_m1710656691 (); extern "C" void X509KeyUsageExtension__ctor_m3787253324 (); extern "C" void X509KeyUsageExtension__ctor_m2410062918 (); extern "C" void X509KeyUsageExtension__ctor_m3332265501 (); extern "C" void X509KeyUsageExtension_get_KeyUsages_m3177031359 (); extern "C" void X509KeyUsageExtension_CopyFrom_m1769316556 (); extern "C" void X509KeyUsageExtension_GetValidFlags_m1081049684 (); extern "C" void X509KeyUsageExtension_Decode_m811458265 (); extern "C" void X509KeyUsageExtension_Encode_m1941209444 (); extern "C" void X509KeyUsageExtension_ToString_m1884016728 (); extern "C" void X509Store__ctor_m3799700742 (); extern "C" void X509Store_get_Certificates_m806880954 (); extern "C" void X509Store_get_Factory_m1121149181 (); extern "C" void X509Store_get_Store_m466869703 (); extern "C" void X509Store_Close_m3714886622 (); extern "C" void X509Store_Open_m4134555080 (); extern "C" void X509SubjectKeyIdentifierExtension__ctor_m3478259430 (); extern "C" void X509SubjectKeyIdentifierExtension__ctor_m804319328 (); extern "C" void X509SubjectKeyIdentifierExtension__ctor_m2338585210 (); extern "C" void X509SubjectKeyIdentifierExtension__ctor_m1613029921 (); extern "C" void X509SubjectKeyIdentifierExtension__ctor_m1879279918 (); extern "C" void X509SubjectKeyIdentifierExtension__ctor_m891295656 (); extern "C" void X509SubjectKeyIdentifierExtension_get_SubjectKeyIdentifier_m2494939520 (); extern "C" void X509SubjectKeyIdentifierExtension_CopyFrom_m3398288358 (); extern "C" void X509SubjectKeyIdentifierExtension_FromHexChar_m751746662 (); extern "C" void X509SubjectKeyIdentifierExtension_FromHexChars_m3730448342 (); extern "C" void X509SubjectKeyIdentifierExtension_FromHex_m3994967203 (); extern "C" void X509SubjectKeyIdentifierExtension_Decode_m3290786035 (); extern "C" void X509SubjectKeyIdentifierExtension_Encode_m852919050 (); extern "C" void X509SubjectKeyIdentifierExtension_ToString_m2596463486 (); extern "C" void BaseMachine__ctor_m17432691 (); extern "C" void BaseMachine_Replace_m3336556800 (); extern "C" void BaseMachine_Scan_m223381495 (); extern "C" void BaseMachine_LTRReplace_m3233399719 (); extern "C" void BaseMachine_RTLReplace_m1984309653 (); extern "C" void MatchAppendEvaluator__ctor_m44201646 (); extern "C" void MatchAppendEvaluator_Invoke_m2910809428 (); extern "C" void MatchAppendEvaluator_BeginInvoke_m1979969071 (); extern "C" void MatchAppendEvaluator_EndInvoke_m4264062910 (); extern "C" void Capture__ctor_m3100758399 (); extern "C" void Capture__ctor_m3886528031 (); extern "C" void Capture_get_Index_m2179527098 (); extern "C" void Capture_get_Length_m669809376 (); extern "C" void Capture_get_Value_m2353629574 (); extern "C" void Capture_ToString_m1009743248 (); extern "C" void Capture_get_Text_m1823829274 (); extern "C" void CaptureCollection__ctor_m3212451638 (); extern "C" void CaptureCollection_get_Count_m1248230585 (); extern "C" void CaptureCollection_get_IsSynchronized_m4208332924 (); extern "C" void CaptureCollection_SetValue_m1003011714 (); extern "C" void CaptureCollection_get_SyncRoot_m277260698 (); extern "C" void CaptureCollection_CopyTo_m3440549378 (); extern "C" void CaptureCollection_GetEnumerator_m3962561747 (); extern "C" void CategoryUtils_CategoryFromName_m242979705 (); extern "C" void CategoryUtils_IsCategory_m3802527410 (); extern "C" void CategoryUtils_IsCategory_m60190548 (); extern "C" void FactoryCache__ctor_m3600817686 (); extern "C" void FactoryCache_Add_m2875491713 (); extern "C" void FactoryCache_Cleanup_m2756098695 (); extern "C" void FactoryCache_Lookup_m418619505 (); extern "C" void Key__ctor_m422488661 (); extern "C" void Key_GetHashCode_m3621609140 (); extern "C" void Key_Equals_m3415530204 (); extern "C" void Key_ToString_m2241865016 (); extern "C" void Group__ctor_m3266526719 (); extern "C" void Group__ctor_m3054050776 (); extern "C" void Group__ctor_m1893910730 (); extern "C" void Group__cctor_m2394561571 (); extern "C" void Group_get_Captures_m3515423896 (); extern "C" void Group_get_Success_m3627958764 (); extern "C" void GroupCollection__ctor_m1062211994 (); extern "C" void GroupCollection_get_Count_m1046622944 (); extern "C" void GroupCollection_get_IsSynchronized_m3587250101 (); extern "C" void GroupCollection_get_Item_m3306908978 (); extern "C" void GroupCollection_SetValue_m3728413090 (); extern "C" void GroupCollection_get_SyncRoot_m63200083 (); extern "C" void GroupCollection_CopyTo_m3663984873 (); extern "C" void GroupCollection_GetEnumerator_m1787152634 (); extern "C" void Interpreter__ctor_m3251642755 (); extern "C" void Interpreter_ReadProgramCount_m2800798871 (); extern "C" void Interpreter_Scan_m2842958907 (); extern "C" void Interpreter_Reset_m3474962780 (); extern "C" void Interpreter_Eval_m3588984028 (); extern "C" void Interpreter_EvalChar_m2450579075 (); extern "C" void Interpreter_TryMatch_m3565421809 (); extern "C" void Interpreter_IsPosition_m3803534681 (); extern "C" void Interpreter_IsWordChar_m476497192 (); extern "C" void Interpreter_GetString_m2734447906 (); extern "C" void Interpreter_Open_m1195935623 (); extern "C" void Interpreter_Close_m2152904449 (); extern "C" void Interpreter_Balance_m3040687789 (); extern "C" void Interpreter_Checkpoint_m1072877933 (); extern "C" void Interpreter_Backtrack_m742921570 (); extern "C" void Interpreter_ResetGroups_m2372461072 (); extern "C" void Interpreter_GetLastDefined_m965034067 (); extern "C" void Interpreter_CreateMark_m1503065567 (); extern "C" void Interpreter_GetGroupInfo_m10584263 (); extern "C" void Interpreter_PopulateGroup_m2805800912 (); extern "C" void Interpreter_GenerateMatch_m2993936796 (); extern "C" void IntStack_Pop_m1434102286 (); extern "C" void IntStack_Push_m2506448672 (); extern "C" void IntStack_get_Count_m897242211 (); extern "C" void IntStack_set_Count_m518204432 (); extern "C" void RepeatContext__ctor_m788719250 (); extern "C" void RepeatContext_get_Count_m4097254526 (); extern "C" void RepeatContext_set_Count_m4149390859 (); extern "C" void RepeatContext_get_Start_m1242238737 (); extern "C" void RepeatContext_set_Start_m3788788766 (); extern "C" void RepeatContext_get_IsMinimum_m1600048397 (); extern "C" void RepeatContext_get_IsMaximum_m827569823 (); extern "C" void RepeatContext_get_IsLazy_m2915133623 (); extern "C" void RepeatContext_get_Expression_m540420139 (); extern "C" void RepeatContext_get_Previous_m4141614471 (); extern "C" void InterpreterFactory__ctor_m595479877 (); extern "C" void InterpreterFactory_NewInstance_m992471080 (); extern "C" void InterpreterFactory_get_GroupCount_m2569621216 (); extern "C" void InterpreterFactory_get_Gap_m875969832 (); extern "C" void InterpreterFactory_set_Gap_m2130661461 (); extern "C" void InterpreterFactory_get_Mapping_m4280686600 (); extern "C" void InterpreterFactory_set_Mapping_m1196240885 (); extern "C" void InterpreterFactory_get_NamesMapping_m2841689669 (); extern "C" void InterpreterFactory_set_NamesMapping_m2940156550 (); extern "C" void Interval__ctor_m4154124910 (); extern "C" void Interval_get_Empty_m2836746235 (); extern "C" void Interval_get_IsDiscontiguous_m4161255183 (); extern "C" void Interval_get_IsSingleton_m4044965956 (); extern "C" void Interval_get_IsEmpty_m2142357766 (); extern "C" void Interval_get_Size_m2053259174 (); extern "C" void Interval_IsDisjoint_m1461504100 (); extern "C" void Interval_IsAdjacent_m1171307166 (); extern "C" void Interval_Contains_m2884982059 (); extern "C" void Interval_Contains_m724747494 (); extern "C" void Interval_Intersects_m1836714230 (); extern "C" void Interval_Merge_m2623693586 (); extern "C" void Interval_CompareTo_m953943694 (); extern "C" void IntervalCollection__ctor_m1317729402 (); extern "C" void IntervalCollection_get_Item_m658194390 (); extern "C" void IntervalCollection_Add_m622937095 (); extern "C" void IntervalCollection_Normalize_m2061698533 (); extern "C" void IntervalCollection_GetMetaCollection_m1423119555 (); extern "C" void IntervalCollection_Optimize_m2537418330 (); extern "C" void IntervalCollection_get_Count_m3146453934 (); extern "C" void IntervalCollection_get_IsSynchronized_m46596635 (); extern "C" void IntervalCollection_get_SyncRoot_m165185947 (); extern "C" void IntervalCollection_CopyTo_m1005574359 (); extern "C" void IntervalCollection_GetEnumerator_m4242145148 (); extern "C" void CostDelegate__ctor_m731467895 (); extern "C" void CostDelegate_Invoke_m212988972 (); extern "C" void CostDelegate_BeginInvoke_m1041332600 (); extern "C" void CostDelegate_EndInvoke_m917297514 (); extern "C" void Enumerator__ctor_m218362154 (); extern "C" void Enumerator_get_Current_m2134947410 (); extern "C" void Enumerator_MoveNext_m480234725 (); extern "C" void Enumerator_Reset_m2448293606 (); extern "C" void LinkRef__ctor_m2896599248 (); extern "C" void LinkStack__ctor_m840569467 (); extern "C" void LinkStack_Push_m185806851 (); extern "C" void LinkStack_Pop_m192057428 (); extern "C" void Mark_get_IsDefined_m36891578 (); extern "C" void Mark_get_Index_m4214982375 (); extern "C" void Mark_get_Length_m3639380819 (); extern "C" void Match__ctor_m4051317828 (); extern "C" void Match__ctor_m798974407 (); extern "C" void Match__ctor_m4138800752 (); extern "C" void Match__cctor_m554704873 (); extern "C" void Match_get_Empty_m170222943 (); extern "C" void Match_get_Groups_m445730348 (); extern "C" void Match_NextMatch_m3913445709 (); extern "C" void Match_get_Regex_m1260760027 (); extern "C" void MatchCollection__ctor_m1982569902 (); extern "C" void MatchCollection_get_Count_m4071817434 (); extern "C" void MatchCollection_get_IsSynchronized_m1523540731 (); extern "C" void MatchCollection_get_Item_m2495033586 (); extern "C" void MatchCollection_get_SyncRoot_m2333479705 (); extern "C" void MatchCollection_CopyTo_m2665262947 (); extern "C" void MatchCollection_GetEnumerator_m3446344180 (); extern "C" void MatchCollection_TryToGet_m1603574341 (); extern "C" void MatchCollection_get_FullList_m3038253348 (); extern "C" void Enumerator__ctor_m2762289495 (); extern "C" void Enumerator_System_Collections_IEnumerator_Reset_m4262909997 (); extern "C" void Enumerator_System_Collections_IEnumerator_get_Current_m360409 (); extern "C" void Enumerator_System_Collections_IEnumerator_MoveNext_m1106607422 (); extern "C" void MatchEvaluator__ctor_m2957600143 (); extern "C" void MatchEvaluator_Invoke_m3215261838 (); extern "C" void MatchEvaluator_BeginInvoke_m3315747252 (); extern "C" void MatchEvaluator_EndInvoke_m3976645020 (); extern "C" void MRUList__ctor_m3161932411 (); extern "C" void MRUList_Use_m4144664628 (); extern "C" void MRUList_Evict_m3673261069 (); extern "C" void Node__ctor_m3506872826 (); extern "C" void PatternCompiler__ctor_m640185722 (); extern "C" void PatternCompiler_EncodeOp_m3438255148 (); extern "C" void PatternCompiler_GetMachineFactory_m1519739313 (); extern "C" void PatternCompiler_EmitFalse_m722778152 (); extern "C" void PatternCompiler_EmitTrue_m2656833483 (); extern "C" void PatternCompiler_EmitCount_m3183303781 (); extern "C" void PatternCompiler_EmitCharacter_m3311297038 (); extern "C" void PatternCompiler_EmitCategory_m2446864524 (); extern "C" void PatternCompiler_EmitNotCategory_m3974981937 (); extern "C" void PatternCompiler_EmitRange_m3212229739 (); extern "C" void PatternCompiler_EmitSet_m2895987935 (); extern "C" void PatternCompiler_EmitString_m2313515668 (); extern "C" void PatternCompiler_EmitPosition_m3189000342 (); extern "C" void PatternCompiler_EmitOpen_m1906123864 (); extern "C" void PatternCompiler_EmitClose_m2953485710 (); extern "C" void PatternCompiler_EmitBalanceStart_m153593536 (); extern "C" void PatternCompiler_EmitBalance_m1234756257 (); extern "C" void PatternCompiler_EmitReference_m2226804289 (); extern "C" void PatternCompiler_EmitIfDefined_m1998800056 (); extern "C" void PatternCompiler_EmitSub_m1250623225 (); extern "C" void PatternCompiler_EmitTest_m3519274007 (); extern "C" void PatternCompiler_EmitBranch_m2313940051 (); extern "C" void PatternCompiler_EmitJump_m4159061471 (); extern "C" void PatternCompiler_EmitRepeat_m3913724843 (); extern "C" void PatternCompiler_EmitUntil_m2917116183 (); extern "C" void PatternCompiler_EmitFastRepeat_m1340139951 (); extern "C" void PatternCompiler_EmitIn_m2264896214 (); extern "C" void PatternCompiler_EmitAnchor_m1283354284 (); extern "C" void PatternCompiler_EmitInfo_m2915026460 (); extern "C" void PatternCompiler_NewLink_m629334431 (); extern "C" void PatternCompiler_ResolveLink_m1754537234 (); extern "C" void PatternCompiler_EmitBranchEnd_m676018014 (); extern "C" void PatternCompiler_EmitAlternationEnd_m2098295803 (); extern "C" void PatternCompiler_MakeFlags_m1692978267 (); extern "C" void PatternCompiler_Emit_m992741850 (); extern "C" void PatternCompiler_Emit_m1318559571 (); extern "C" void PatternCompiler_Emit_m2066671991 (); extern "C" void PatternCompiler_get_CurrentAddress_m1919164478 (); extern "C" void PatternCompiler_BeginLink_m4071458319 (); extern "C" void PatternCompiler_EmitLink_m116538795 (); extern "C" void PatternLinkStack__ctor_m451109823 (); extern "C" void PatternLinkStack_set_BaseAddress_m1841392820 (); extern "C" void PatternLinkStack_get_OffsetAddress_m3032139717 (); extern "C" void PatternLinkStack_set_OffsetAddress_m2022131826 (); extern "C" void PatternLinkStack_GetOffset_m222181543 (); extern "C" void PatternLinkStack_GetCurrent_m3766647891 (); extern "C" void PatternLinkStack_SetCurrent_m3645587320 (); extern "C" void QuickSearch__ctor_m2383021006 (); extern "C" void QuickSearch__cctor_m3095711897 (); extern "C" void QuickSearch_get_Length_m2171114063 (); extern "C" void QuickSearch_Search_m3059452826 (); extern "C" void QuickSearch_SetupShiftTable_m73996795 (); extern "C" void QuickSearch_GetShiftDistance_m2673548988 (); extern "C" void QuickSearch_GetChar_m2212630365 (); extern "C" void Regex__ctor_m523653122 (); extern "C" void Regex__ctor_m2980635200 (); extern "C" void Regex__ctor_m2068483208 (); extern "C" void Regex__ctor_m1618790979 (); extern "C" void Regex__cctor_m2866248683 (); extern "C" void Regex_System_Runtime_Serialization_ISerializable_GetObjectData_m522480713 (); extern "C" void Regex_Replace_m2658391113 (); extern "C" void Regex_Replace_m1218008337 (); extern "C" void Regex_validate_options_m625353623 (); extern "C" void Regex_Init_m938259986 (); extern "C" void Regex_InitNewRegex_m2419508729 (); extern "C" void Regex_CreateMachineFactory_m2347116393 (); extern "C" void Regex_get_Options_m3928047814 (); extern "C" void Regex_get_RightToLeft_m3494755007 (); extern "C" void Regex_GroupNumberFromName_m2580513429 (); extern "C" void Regex_GetGroupIndex_m547759882 (); extern "C" void Regex_default_startat_m996366267 (); extern "C" void Regex_IsMatch_m2967892253 (); extern "C" void Regex_IsMatch_m3759940314 (); extern "C" void Regex_Match_m1021969427 (); extern "C" void Regex_Matches_m3092142232 (); extern "C" void Regex_Matches_m4271078207 (); extern "C" void Regex_Replace_m853874381 (); extern "C" void Regex_Replace_m1882314221 (); extern "C" void Regex_ToString_m3480281169 (); extern "C" void Regex_get_GroupCount_m2128334859 (); extern "C" void Regex_get_Gap_m2153899613 (); extern "C" void Regex_CreateMachine_m1572823491 (); extern "C" void Regex_GetGroupNamesArray_m3739926801 (); extern "C" void Regex_get_GroupNumbers_m2500558052 (); extern "C" void ReplacementEvaluator__ctor_m2774850658 (); extern "C" void ReplacementEvaluator_Evaluate_m4205324994 (); extern "C" void ReplacementEvaluator_EvaluateAppend_m4266406947 (); extern "C" void ReplacementEvaluator_get_NeedsGroupsOrCaptures_m1475641324 (); extern "C" void ReplacementEvaluator_Ensure_m619661651 (); extern "C" void ReplacementEvaluator_AddFromReplacement_m4144056411 (); extern "C" void ReplacementEvaluator_AddInt_m3650451619 (); extern "C" void ReplacementEvaluator_Compile_m763546001 (); extern "C" void ReplacementEvaluator_CompileTerm_m2939168366 (); extern "C" void Alternation__ctor_m1090419051 (); extern "C" void Alternation_get_Alternatives_m1740410205 (); extern "C" void Alternation_AddAlternative_m3695967311 (); extern "C" void Alternation_Compile_m333754556 (); extern "C" void Alternation_GetWidth_m1273465607 (); extern "C" void AnchorInfo__ctor_m774944594 (); extern "C" void AnchorInfo__ctor_m2237276956 (); extern "C" void AnchorInfo__ctor_m3146766459 (); extern "C" void AnchorInfo_get_Offset_m110301077 (); extern "C" void AnchorInfo_get_Width_m814480998 (); extern "C" void AnchorInfo_get_Length_m2802687272 (); extern "C" void AnchorInfo_get_IsUnknownWidth_m3273649934 (); extern "C" void AnchorInfo_get_IsComplete_m2840583659 (); extern "C" void AnchorInfo_get_Substring_m1320966366 (); extern "C" void AnchorInfo_get_IgnoreCase_m843009482 (); extern "C" void AnchorInfo_get_Position_m1033547864 (); extern "C" void AnchorInfo_get_IsSubstring_m506285889 (); extern "C" void AnchorInfo_get_IsPosition_m467864027 (); extern "C" void AnchorInfo_GetInterval_m1447205988 (); extern "C" void Assertion__ctor_m936536102 (); extern "C" void Assertion_get_TrueExpression_m1503749732 (); extern "C" void Assertion_set_TrueExpression_m293303211 (); extern "C" void Assertion_get_FalseExpression_m2557605343 (); extern "C" void Assertion_set_FalseExpression_m18812748 (); extern "C" void Assertion_GetWidth_m2142322818 (); extern "C" void BackslashNumber__ctor_m1444209053 (); extern "C" void BackslashNumber_ResolveReference_m705827744 (); extern "C" void BackslashNumber_Compile_m4016920510 (); extern "C" void BalancingGroup__ctor_m1391379608 (); extern "C" void BalancingGroup_set_Balance_m1819477787 (); extern "C" void BalancingGroup_Compile_m191354415 (); extern "C" void CaptureAssertion__ctor_m4132785567 (); extern "C" void CaptureAssertion_set_CapturingGroup_m1020834945 (); extern "C" void CaptureAssertion_Compile_m922447973 (); extern "C" void CaptureAssertion_IsComplex_m987845008 (); extern "C" void CaptureAssertion_get_Alternate_m4248571978 (); extern "C" void CapturingGroup__ctor_m616302850 (); extern "C" void CapturingGroup_get_Index_m1539088601 (); extern "C" void CapturingGroup_set_Index_m1904349670 (); extern "C" void CapturingGroup_get_Name_m1678290617 (); extern "C" void CapturingGroup_set_Name_m2861220216 (); extern "C" void CapturingGroup_get_IsNamed_m2190134608 (); extern "C" void CapturingGroup_Compile_m847947013 (); extern "C" void CapturingGroup_IsComplex_m923392880 (); extern "C" void CapturingGroup_CompareTo_m2476546276 (); extern "C" void CharacterClass__ctor_m318669623 (); extern "C" void CharacterClass__ctor_m3672999653 (); extern "C" void CharacterClass__cctor_m2076983614 (); extern "C" void CharacterClass_AddCategory_m385157186 (); extern "C" void CharacterClass_AddCharacter_m509912608 (); extern "C" void CharacterClass_AddRange_m4184687523 (); extern "C" void CharacterClass_Compile_m3181047384 (); extern "C" void CharacterClass_GetWidth_m2016149227 (); extern "C" void CharacterClass_IsComplex_m3242686525 (); extern "C" void CharacterClass_GetIntervalCost_m3570544782 (); extern "C" void CompositeExpression__ctor_m839662857 (); extern "C" void CompositeExpression_get_Expressions_m2158932996 (); extern "C" void CompositeExpression_GetWidth_m925194962 (); extern "C" void CompositeExpression_IsComplex_m1954466275 (); extern "C" void Expression__ctor_m89241894 (); extern "C" void Expression_GetFixedWidth_m3994281404 (); extern "C" void Expression_GetAnchorInfo_m1428771350 (); extern "C" void ExpressionAssertion__ctor_m2776942238 (); extern "C" void ExpressionAssertion_set_Reverse_m3599260152 (); extern "C" void ExpressionAssertion_set_Negate_m1902108060 (); extern "C" void ExpressionAssertion_get_TestExpression_m1374960432 (); extern "C" void ExpressionAssertion_set_TestExpression_m828897591 (); extern "C" void ExpressionAssertion_Compile_m2907610857 (); extern "C" void ExpressionAssertion_IsComplex_m4273897720 (); extern "C" void ExpressionCollection__ctor_m235484264 (); extern "C" void ExpressionCollection_Add_m3422413233 (); extern "C" void ExpressionCollection_get_Item_m3558752946 (); extern "C" void ExpressionCollection_set_Item_m3407994931 (); extern "C" void ExpressionCollection_OnValidate_m67467971 (); extern "C" void Group__ctor_m358391753 (); extern "C" void Group_AppendExpression_m2176615607 (); extern "C" void Group_Compile_m767805470 (); extern "C" void Group_GetWidth_m3807951077 (); extern "C" void Group_GetAnchorInfo_m1440957557 (); extern "C" void Literal__ctor_m1496565524 (); extern "C" void Literal_CompileLiteral_m187321040 (); extern "C" void Literal_Compile_m2265605006 (); extern "C" void Literal_GetWidth_m2047345525 (); extern "C" void Literal_GetAnchorInfo_m193937285 (); extern "C" void Literal_IsComplex_m712383539 (); extern "C" void NonBacktrackingGroup__ctor_m1908070474 (); extern "C" void NonBacktrackingGroup_Compile_m2947364541 (); extern "C" void NonBacktrackingGroup_IsComplex_m200933176 (); extern "C" void Parser__ctor_m1404972287 (); extern "C" void Parser_ParseDecimal_m3118847812 (); extern "C" void Parser_ParseOctal_m1398273866 (); extern "C" void Parser_ParseHex_m370479069 (); extern "C" void Parser_ParseNumber_m633788361 (); extern "C" void Parser_ParseName_m3152672479 (); extern "C" void Parser_ParseRegularExpression_m3601917447 (); extern "C" void Parser_GetMapping_m2242103141 (); extern "C" void Parser_ParseGroup_m2536720048 (); extern "C" void Parser_ParseGroupingConstruct_m845745261 (); extern "C" void Parser_ParseAssertionType_m3709247266 (); extern "C" void Parser_ParseOptions_m1196738735 (); extern "C" void Parser_ParseCharacterClass_m4053595992 (); extern "C" void Parser_ParseRepetitionBounds_m2180911384 (); extern "C" void Parser_ParseUnicodeCategory_m1866187541 (); extern "C" void Parser_ParseSpecial_m1376060474 (); extern "C" void Parser_ParseEscape_m675256065 (); extern "C" void Parser_ParseName_m417255288 (); extern "C" void Parser_IsNameChar_m1287282583 (); extern "C" void Parser_ParseNumber_m2475743354 (); extern "C" void Parser_ParseDigit_m3105438222 (); extern "C" void Parser_ConsumeWhitespace_m3800733805 (); extern "C" void Parser_ResolveReferences_m1842037937 (); extern "C" void Parser_HandleExplicitNumericGroups_m2933059971 (); extern "C" void Parser_IsIgnoreCase_m3077668423 (); extern "C" void Parser_IsMultiline_m1332832164 (); extern "C" void Parser_IsExplicitCapture_m2152082175 (); extern "C" void Parser_IsSingleline_m4108862573 (); extern "C" void Parser_IsIgnorePatternWhitespace_m4039716246 (); extern "C" void Parser_IsECMAScript_m432342092 (); extern "C" void Parser_NewParseException_m3475856021 (); extern "C" void PositionAssertion__ctor_m2712509165 (); extern "C" void PositionAssertion_Compile_m2491919992 (); extern "C" void PositionAssertion_GetWidth_m4112110283 (); extern "C" void PositionAssertion_IsComplex_m2141947785 (); extern "C" void PositionAssertion_GetAnchorInfo_m3911354203 (); extern "C" void Reference__ctor_m425097396 (); extern "C" void Reference_get_CapturingGroup_m2373399431 (); extern "C" void Reference_set_CapturingGroup_m716261254 (); extern "C" void Reference_get_IgnoreCase_m1035334716 (); extern "C" void Reference_Compile_m2087049322 (); extern "C" void Reference_GetWidth_m2365245465 (); extern "C" void Reference_IsComplex_m868186199 (); extern "C" void RegularExpression__ctor_m365120276 (); extern "C" void RegularExpression_set_GroupCount_m508599630 (); extern "C" void RegularExpression_Compile_m201671475 (); extern "C" void Repetition__ctor_m4270514692 (); extern "C" void Repetition_get_Expression_m2567702849 (); extern "C" void Repetition_set_Expression_m3471937174 (); extern "C" void Repetition_get_Minimum_m1360004544 (); extern "C" void Repetition_Compile_m4261647610 (); extern "C" void Repetition_GetWidth_m681452937 (); extern "C" void Repetition_GetAnchorInfo_m337026333 (); extern "C" void Uri__ctor_m1721267859 (); extern "C" void Uri__ctor_m4101815696 (); extern "C" void Uri__ctor_m1689224330 (); extern "C" void Uri__cctor_m2145170622 (); extern "C" void Uri_System_Runtime_Serialization_ISerializable_GetObjectData_m3581151196 (); extern "C" void Uri_get_AbsoluteUri_m2228269430 (); extern "C" void Uri_get_Authority_m1914393796 (); extern "C" void Uri_get_Host_m1446697833 (); extern "C" void Uri_get_IsFile_m1860057402 (); extern "C" void Uri_get_IsLoopback_m224603913 (); extern "C" void Uri_get_IsUnc_m766729742 (); extern "C" void Uri_get_Scheme_m2606456870 (); extern "C" void Uri_get_IsAbsoluteUri_m145672153 (); extern "C" void Uri_CheckHostName_m294200959 (); extern "C" void Uri_IsIPv4Address_m3490090822 (); extern "C" void Uri_IsDomainAddress_m740222981 (); extern "C" void Uri_CheckSchemeName_m3839723091 (); extern "C" void Uri_IsAlpha_m171894930 (); extern "C" void Uri_Equals_m2208061098 (); extern "C" void Uri_InternalEquals_m2509473274 (); extern "C" void Uri_GetHashCode_m629619726 (); extern "C" void Uri_GetLeftPart_m2866425188 (); extern "C" void Uri_FromHex_m2865381007 (); extern "C" void Uri_HexEscape_m2779785335 (); extern "C" void Uri_IsHexDigit_m4109487926 (); extern "C" void Uri_IsHexEncoding_m3196775920 (); extern "C" void Uri_AppendQueryAndFragment_m1562004088 (); extern "C" void Uri_ToString_m967075364 (); extern "C" void Uri_EscapeString_m2453046424 (); extern "C" void Uri_EscapeString_m1653334917 (); extern "C" void Uri_ParseUri_m3771462925 (); extern "C" void Uri_Unescape_m4097037232 (); extern "C" void Uri_Unescape_m416590285 (); extern "C" void Uri_ParseAsWindowsUNC_m3032435497 (); extern "C" void Uri_ParseAsWindowsAbsoluteFilePath_m1155471572 (); extern "C" void Uri_ParseAsUnixAbsoluteFilePath_m1730599600 (); extern "C" void Uri_Parse_m561053531 (); extern "C" void Uri_ParseNoExceptions_m2517263517 (); extern "C" void Uri_CompactEscaped_m2021013591 (); extern "C" void Uri_Reduce_m1169795993 (); extern "C" void Uri_HexUnescapeMultiByte_m3269245053 (); extern "C" void Uri_GetSchemeDelimiter_m1914409694 (); extern "C" void Uri_GetDefaultPort_m711645873 (); extern "C" void Uri_GetOpaqueWiseSchemeDelimiter_m3781205887 (); extern "C" void Uri_IsPredefinedScheme_m2987522946 (); extern "C" void Uri_get_Parser_m533607664 (); extern "C" void Uri_EnsureAbsoluteUri_m3407571844 (); extern "C" void Uri_op_Equality_m877019543 (); extern "C" void UriScheme__ctor_m535258662 (); extern "C" void UriFormatException__ctor_m2977644479 (); extern "C" void UriFormatException__ctor_m3185454499 (); extern "C" void UriFormatException__ctor_m262177920 (); extern "C" void UriFormatException_System_Runtime_Serialization_ISerializable_GetObjectData_m2011642604 (); extern "C" void UriParser__ctor_m3933763184 (); extern "C" void UriParser__cctor_m1205478205 (); extern "C" void UriParser_InitializeAndValidate_m3968058349 (); extern "C" void UriParser_OnRegister_m3986311499 (); extern "C" void UriParser_set_SchemeName_m706252033 (); extern "C" void UriParser_get_DefaultPort_m3728184791 (); extern "C" void UriParser_set_DefaultPort_m1019606244 (); extern "C" void UriParser_CreateDefaults_m2648397058 (); extern "C" void UriParser_InternalRegister_m1447570189 (); extern "C" void UriParser_GetParser_m635613298 (); extern "C" void Locale_GetText_m4086560262 (); extern "C" void BigInteger__ctor_m2610662484 (); extern "C" void BigInteger__ctor_m1318440774 (); extern "C" void BigInteger__ctor_m3547305722 (); extern "C" void BigInteger__ctor_m2747162922 (); extern "C" void BigInteger__ctor_m1050530395 (); extern "C" void BigInteger__cctor_m2261677710 (); extern "C" void BigInteger_get_Rng_m1505693788 (); extern "C" void BigInteger_GenerateRandom_m2595866790 (); extern "C" void BigInteger_GenerateRandom_m1343108780 (); extern "C" void BigInteger_BitCount_m3880753871 (); extern "C" void BigInteger_TestBit_m4085687739 (); extern "C" void BigInteger_SetBit_m3067778314 (); extern "C" void BigInteger_SetBit_m989579571 (); extern "C" void BigInteger_LowestSetBit_m644775850 (); extern "C" void BigInteger_GetBytes_m561587716 (); extern "C" void BigInteger_ToString_m3209284166 (); extern "C" void BigInteger_ToString_m2413330434 (); extern "C" void BigInteger_Normalize_m2451454954 (); extern "C" void BigInteger_Clear_m542683434 (); extern "C" void BigInteger_GetHashCode_m3211366534 (); extern "C" void BigInteger_ToString_m1505524532 (); extern "C" void BigInteger_Equals_m4043809186 (); extern "C" void BigInteger_ModInverse_m560616920 (); extern "C" void BigInteger_ModPow_m837755469 (); extern "C" void BigInteger_GeneratePseudoPrime_m323167868 (); extern "C" void BigInteger_Incr2_m1628594427 (); extern "C" void BigInteger_op_Implicit_m638921272 (); extern "C" void BigInteger_op_Implicit_m2620841043 (); extern "C" void BigInteger_op_Addition_m1737862829 (); extern "C" void BigInteger_op_Subtraction_m3436814701 (); extern "C" void BigInteger_op_Modulus_m465134612 (); extern "C" void BigInteger_op_Modulus_m2858145418 (); extern "C" void BigInteger_op_Division_m1824126044 (); extern "C" void BigInteger_op_Multiply_m2896976517 (); extern "C" void BigInteger_op_LeftShift_m2333016656 (); extern "C" void BigInteger_op_RightShift_m3774983213 (); extern "C" void BigInteger_op_Equality_m1195898850 (); extern "C" void BigInteger_op_Inequality_m4000708231 (); extern "C" void BigInteger_op_Equality_m1709618143 (); extern "C" void BigInteger_op_Inequality_m549511578 (); extern "C" void BigInteger_op_GreaterThan_m3422164694 (); extern "C" void BigInteger_op_LessThan_m1693109759 (); extern "C" void BigInteger_op_GreaterThanOrEqual_m2091126915 (); extern "C" void BigInteger_op_LessThanOrEqual_m2413275450 (); extern "C" void Kernel_AddSameSign_m3951710603 (); extern "C" void Kernel_Subtract_m593759655 (); extern "C" void Kernel_MinusEq_m2588038513 (); extern "C" void Kernel_PlusEq_m1327972151 (); extern "C" void Kernel_Compare_m3514403080 (); extern "C" void Kernel_SingleByteDivideInPlace_m746013128 (); extern "C" void Kernel_DwordMod_m419221597 (); extern "C" void Kernel_DwordDivMod_m3508261007 (); extern "C" void Kernel_multiByteDivide_m1455363991 (); extern "C" void Kernel_LeftShift_m3640718462 (); extern "C" void Kernel_RightShift_m1364066239 (); extern "C" void Kernel_Multiply_m1952926483 (); extern "C" void Kernel_MultiplyMod2p32pmod_m2080485974 (); extern "C" void Kernel_modInverse_m2584089367 (); extern "C" void Kernel_modInverse_m2477583693 (); extern "C" void ModulusRing__ctor_m2037212078 (); extern "C" void ModulusRing_BarrettReduction_m1160185617 (); extern "C" void ModulusRing_Multiply_m1902123335 (); extern "C" void ModulusRing_Difference_m2583958286 (); extern "C" void ModulusRing_Pow_m668600583 (); extern "C" void ModulusRing_Pow_m3374554770 (); extern "C" void PrimeGeneratorBase__ctor_m804747758 (); extern "C" void PrimeGeneratorBase_get_Confidence_m1495727549 (); extern "C" void PrimeGeneratorBase_get_PrimalityTest_m415255588 (); extern "C" void PrimeGeneratorBase_get_TrialDivisionBounds_m3765645491 (); extern "C" void SequentialSearchPrimeGeneratorBase__ctor_m3197013479 (); extern "C" void SequentialSearchPrimeGeneratorBase_GenerateSearchBase_m3042338792 (); extern "C" void SequentialSearchPrimeGeneratorBase_GenerateNewPrime_m2709469184 (); extern "C" void SequentialSearchPrimeGeneratorBase_GenerateNewPrime_m3023274702 (); extern "C" void SequentialSearchPrimeGeneratorBase_IsPrimeAcceptable_m3870219587 (); extern "C" void PrimalityTest__ctor_m2328223289 (); extern "C" void PrimalityTest_Invoke_m1898501111 (); extern "C" void PrimalityTest_BeginInvoke_m3294511682 (); extern "C" void PrimalityTest_EndInvoke_m1090214203 (); extern "C" void PrimalityTests_GetSPPRounds_m3682781848 (); extern "C" void PrimalityTests_RabinMillerTest_m776850607 (); extern "C" void ASN1__ctor_m3086925575 (); extern "C" void ASN1__ctor_m2727735242 (); extern "C" void ASN1__ctor_m3008094309 (); extern "C" void ASN1_get_Count_m2214472120 (); extern "C" void ASN1_get_Tag_m442995239 (); extern "C" void ASN1_get_Length_m2237640703 (); extern "C" void ASN1_get_Value_m390067040 (); extern "C" void ASN1_set_Value_m213247127 (); extern "C" void ASN1_CompareArray_m2104154182 (); extern "C" void ASN1_CompareValue_m1123010439 (); extern "C" void ASN1_Add_m1424422628 (); extern "C" void ASN1_GetBytes_m2350265955 (); extern "C" void ASN1_Decode_m2560929067 (); extern "C" void ASN1_DecodeTLV_m1331458973 (); extern "C" void ASN1_get_Item_m3727278260 (); extern "C" void ASN1_Element_m2786077841 (); extern "C" void ASN1_ToString_m2072053203 (); extern "C" void ASN1Convert_FromInt32_m570537577 (); extern "C" void ASN1Convert_FromOid_m1663059922 (); extern "C" void ASN1Convert_ToInt32_m2275332600 (); extern "C" void ASN1Convert_ToOid_m581448231 (); extern "C" void ASN1Convert_ToDateTime_m864003254 (); extern "C" void BitConverterLE_GetUIntBytes_m262034205 (); extern "C" void BitConverterLE_GetBytes_m3530550987 (); extern "C" void ARC4Managed__ctor_m340859770 (); extern "C" void ARC4Managed_Finalize_m1353226920 (); extern "C" void ARC4Managed_Dispose_m3405830766 (); extern "C" void ARC4Managed_get_Key_m2464321124 (); extern "C" void ARC4Managed_set_Key_m1483606703 (); extern "C" void ARC4Managed_get_CanReuseTransform_m1071201641 (); extern "C" void ARC4Managed_CreateEncryptor_m2178579654 (); extern "C" void ARC4Managed_CreateDecryptor_m1872851102 (); extern "C" void ARC4Managed_GenerateIV_m2349135020 (); extern "C" void ARC4Managed_GenerateKey_m4106080642 (); extern "C" void ARC4Managed_KeySetup_m705764065 (); extern "C" void ARC4Managed_CheckInput_m3884405629 (); extern "C" void ARC4Managed_TransformBlock_m961675998 (); extern "C" void ARC4Managed_InternalTransformBlock_m158418811 (); extern "C" void ARC4Managed_TransformFinalBlock_m1879343064 (); extern "C" void CryptoConvert_ToHex_m1331445157 (); extern "C" void HMAC__ctor_m3969743837 (); extern "C" void HMAC_get_Key_m2760207782 (); extern "C" void HMAC_set_Key_m1481428161 (); extern "C" void HMAC_Initialize_m1123559404 (); extern "C" void HMAC_HashFinal_m3498276984 (); extern "C" void HMAC_HashCore_m3652556320 (); extern "C" void HMAC_initializePad_m2313790985 (); extern "C" void KeyBuilder_get_Rng_m1400512726 (); extern "C" void KeyBuilder_Key_m2026570507 (); extern "C" void MD2__ctor_m1806345404 (); extern "C" void MD2_Create_m1400591135 (); extern "C" void MD2_Create_m2231408195 (); extern "C" void MD2Managed__ctor_m2257535371 (); extern "C" void MD2Managed__cctor_m782023554 (); extern "C" void MD2Managed_Padding_m3531272693 (); extern "C" void MD2Managed_Initialize_m1198478313 (); extern "C" void MD2Managed_HashCore_m848434243 (); extern "C" void MD2Managed_HashFinal_m3903508827 (); extern "C" void MD2Managed_MD2Transform_m1178472146 (); extern "C" void MD5SHA1__ctor_m2374690196 (); extern "C" void MD5SHA1_Initialize_m1333120384 (); extern "C" void MD5SHA1_HashFinal_m1928907216 (); extern "C" void MD5SHA1_HashCore_m1242406156 (); extern "C" void MD5SHA1_CreateSignature_m1164435223 (); extern "C" void MD5SHA1_VerifySignature_m3462577241 (); extern "C" void PKCS1__cctor_m2574493212 (); extern "C" void PKCS1_Compare_m2966371174 (); extern "C" void PKCS1_I2OSP_m2941319222 (); extern "C" void PKCS1_OS2IP_m3050204367 (); extern "C" void PKCS1_RSASP1_m3485035079 (); extern "C" void PKCS1_RSAVP1_m2589639562 (); extern "C" void PKCS1_Sign_v15_m456933555 (); extern "C" void PKCS1_Verify_v15_m555702422 (); extern "C" void PKCS1_Verify_v15_m4160617511 (); extern "C" void PKCS1_Encode_v15_m2783024148 (); extern "C" void EncryptedPrivateKeyInfo__ctor_m1455841035 (); extern "C" void EncryptedPrivateKeyInfo__ctor_m3104680606 (); extern "C" void EncryptedPrivateKeyInfo_get_Algorithm_m1903026028 (); extern "C" void EncryptedPrivateKeyInfo_get_EncryptedData_m1064226660 (); extern "C" void EncryptedPrivateKeyInfo_get_Salt_m4034382306 (); extern "C" void EncryptedPrivateKeyInfo_get_IterationCount_m1213644604 (); extern "C" void EncryptedPrivateKeyInfo_Decode_m236294626 (); extern "C" void PrivateKeyInfo__ctor_m362104835 (); extern "C" void PrivateKeyInfo__ctor_m3331527846 (); extern "C" void PrivateKeyInfo_get_PrivateKey_m2153221404 (); extern "C" void PrivateKeyInfo_Decode_m2973591770 (); extern "C" void PrivateKeyInfo_RemoveLeadingZero_m3776637556 (); extern "C" void PrivateKeyInfo_Normalize_m3523909062 (); extern "C" void PrivateKeyInfo_DecodeRSA_m311172684 (); extern "C" void PrivateKeyInfo_DecodeDSA_m1682427249 (); extern "C" void RC4__ctor_m3855683348 (); extern "C" void RC4__cctor_m3079970585 (); extern "C" void RC4_get_IV_m3603717424 (); extern "C" void RC4_set_IV_m2067006095 (); extern "C" void RSAManaged__ctor_m3378736176 (); extern "C" void RSAManaged__ctor_m3804256641 (); extern "C" void RSAManaged_Finalize_m3473344050 (); extern "C" void RSAManaged_GenerateKeyPair_m1998786226 (); extern "C" void RSAManaged_get_KeySize_m3861517773 (); extern "C" void RSAManaged_get_PublicOnly_m3066955040 (); extern "C" void RSAManaged_DecryptValue_m3745730427 (); extern "C" void RSAManaged_EncryptValue_m691555411 (); extern "C" void RSAManaged_ExportParameters_m447046473 (); extern "C" void RSAManaged_ImportParameters_m3911092908 (); extern "C" void RSAManaged_Dispose_m2318860068 (); extern "C" void RSAManaged_ToXmlString_m2969901557 (); extern "C" void RSAManaged_GetPaddedValue_m3945925723 (); extern "C" void KeyGeneratedEventHandler__ctor_m3739847195 (); extern "C" void KeyGeneratedEventHandler_Invoke_m1246442575 (); extern "C" void KeyGeneratedEventHandler_BeginInvoke_m452081622 (); extern "C" void KeyGeneratedEventHandler_EndInvoke_m162808235 (); extern "C" void ContentInfo__ctor_m3875806349 (); extern "C" void ContentInfo__ctor_m521342869 (); extern "C" void ContentInfo__ctor_m2758504540 (); extern "C" void ContentInfo__ctor_m3021605653 (); extern "C" void ContentInfo_get_ASN1_m2914115734 (); extern "C" void ContentInfo_get_Content_m2793987994 (); extern "C" void ContentInfo_set_Content_m2661678287 (); extern "C" void ContentInfo_get_ContentType_m3252099384 (); extern "C" void ContentInfo_set_ContentType_m1664057857 (); extern "C" void ContentInfo_GetASN1_m147164789 (); extern "C" void EncryptedData__ctor_m1149165926 (); extern "C" void EncryptedData__ctor_m794340270 (); extern "C" void EncryptedData_get_EncryptionAlgorithm_m3999045305 (); extern "C" void EncryptedData_get_EncryptedContent_m2775206546 (); extern "C" void Alert__ctor_m1050138762 (); extern "C" void Alert__ctor_m2712587944 (); extern "C" void Alert_get_Level_m1997506166 (); extern "C" void Alert_get_Description_m3120128934 (); extern "C" void Alert_get_IsWarning_m3635544347 (); extern "C" void Alert_get_IsCloseNotify_m3620572320 (); extern "C" void Alert_inferAlertLevel_m1028853718 (); extern "C" void Alert_GetAlertMessage_m2724053422 (); extern "C" void CertificateSelectionCallback__ctor_m2794002132 (); extern "C" void CertificateSelectionCallback_Invoke_m1413516687 (); extern "C" void CertificateSelectionCallback_BeginInvoke_m1304521025 (); extern "C" void CertificateSelectionCallback_EndInvoke_m3027480361 (); extern "C" void CertificateValidationCallback__ctor_m2692809593 (); extern "C" void CertificateValidationCallback_Invoke_m481730652 (); extern "C" void CertificateValidationCallback_BeginInvoke_m1580004723 (); extern "C" void CertificateValidationCallback_EndInvoke_m2267930199 (); extern "C" void CertificateValidationCallback2__ctor_m1854682743 (); extern "C" void CertificateValidationCallback2_Invoke_m4228010672 (); extern "C" void CertificateValidationCallback2_BeginInvoke_m1231864174 (); extern "C" void CertificateValidationCallback2_EndInvoke_m2684174416 (); extern "C" void CipherSuite__ctor_m658209606 (); extern "C" void CipherSuite__cctor_m2830170332 (); extern "C" void CipherSuite_get_EncryptionCipher_m3951497384 (); extern "C" void CipherSuite_get_DecryptionCipher_m1358717056 (); extern "C" void CipherSuite_get_ClientHMAC_m3918386475 (); extern "C" void CipherSuite_get_ServerHMAC_m2966460067 (); extern "C" void CipherSuite_get_CipherAlgorithmType_m4289432549 (); extern "C" void CipherSuite_get_HashAlgorithmName_m1304664079 (); extern "C" void CipherSuite_get_HashAlgorithmType_m687406047 (); extern "C" void CipherSuite_get_HashSize_m2484224531 (); extern "C" void CipherSuite_get_ExchangeAlgorithmType_m987153461 (); extern "C" void CipherSuite_get_CipherMode_m2092929468 (); extern "C" void CipherSuite_get_Code_m3312642635 (); extern "C" void CipherSuite_get_Name_m1995865258 (); extern "C" void CipherSuite_get_IsExportable_m534474210 (); extern "C" void CipherSuite_get_KeyMaterialSize_m166819169 (); extern "C" void CipherSuite_get_KeyBlockSize_m3692693747 (); extern "C" void CipherSuite_get_ExpandedKeyMaterialSize_m2373093544 (); extern "C" void CipherSuite_get_EffectiveKeyBits_m1093264636 (); extern "C" void CipherSuite_get_IvSize_m633403350 (); extern "C" void CipherSuite_get_Context_m3949655367 (); extern "C" void CipherSuite_set_Context_m2407825304 (); extern "C" void CipherSuite_Write_m920521461 (); extern "C" void CipherSuite_Write_m3763647761 (); extern "C" void CipherSuite_InitializeCipher_m1046105646 (); extern "C" void CipherSuite_EncryptRecord_m1686609905 (); extern "C" void CipherSuite_DecryptRecord_m3553271804 (); extern "C" void CipherSuite_CreatePremasterSecret_m4245710238 (); extern "C" void CipherSuite_PRF_m4080641496 (); extern "C" void CipherSuite_Expand_m4170799558 (); extern "C" void CipherSuite_createEncryptionCipher_m347042717 (); extern "C" void CipherSuite_createDecryptionCipher_m2049229685 (); extern "C" void CipherSuiteCollection__ctor_m273269703 (); extern "C" void CipherSuiteCollection_System_Collections_IList_get_Item_m3319535496 (); extern "C" void CipherSuiteCollection_System_Collections_IList_set_Item_m4255989087 (); extern "C" void CipherSuiteCollection_System_Collections_ICollection_get_IsSynchronized_m3698127433 (); extern "C" void CipherSuiteCollection_System_Collections_ICollection_get_SyncRoot_m914076225 (); extern "C" void CipherSuiteCollection_System_Collections_IEnumerable_GetEnumerator_m1907853496 (); extern "C" void CipherSuiteCollection_System_Collections_IList_Contains_m3495236659 (); extern "C" void CipherSuiteCollection_System_Collections_IList_IndexOf_m2797029265 (); extern "C" void CipherSuiteCollection_System_Collections_IList_Insert_m414962568 (); extern "C" void CipherSuiteCollection_System_Collections_IList_Remove_m46053536 (); extern "C" void CipherSuiteCollection_System_Collections_IList_RemoveAt_m3013015320 (); extern "C" void CipherSuiteCollection_System_Collections_IList_Add_m2526713273 (); extern "C" void CipherSuiteCollection_get_Item_m95097157 (); extern "C" void CipherSuiteCollection_get_Item_m3036376750 (); extern "C" void CipherSuiteCollection_set_Item_m141821933 (); extern "C" void CipherSuiteCollection_get_Item_m3036374952 (); extern "C" void CipherSuiteCollection_get_Count_m2086503695 (); extern "C" void CipherSuiteCollection_get_IsFixedSize_m2874798629 (); extern "C" void CipherSuiteCollection_get_IsReadOnly_m3871880244 (); extern "C" void CipherSuiteCollection_CopyTo_m2731497872 (); extern "C" void CipherSuiteCollection_Clear_m2278434462 (); extern "C" void CipherSuiteCollection_IndexOf_m3646145168 (); extern "C" void CipherSuiteCollection_IndexOf_m102883581 (); extern "C" void CipherSuiteCollection_Add_m667539191 (); extern "C" void CipherSuiteCollection_add_m1902600707 (); extern "C" void CipherSuiteCollection_add_m2351410469 (); extern "C" void CipherSuiteCollection_cultureAwareCompare_m850129638 (); extern "C" void CipherSuiteFactory_GetSupportedCiphers_m950549359 (); extern "C" void CipherSuiteFactory_GetTls1SupportedCiphers_m1864585473 (); extern "C" void CipherSuiteFactory_GetSsl3SupportedCiphers_m2259956690 (); extern "C" void ClientContext__ctor_m483520879 (); extern "C" void ClientContext_get_SslStream_m714880213 (); extern "C" void ClientContext_get_ClientHelloProtocol_m3083636780 (); extern "C" void ClientContext_set_ClientHelloProtocol_m31446181 (); extern "C" void ClientContext_Clear_m2709420165 (); extern "C" void ClientRecordProtocol__ctor_m3035494461 (); extern "C" void ClientRecordProtocol_GetMessage_m2518248327 (); extern "C" void ClientRecordProtocol_ProcessHandshakeMessage_m3106137596 (); extern "C" void ClientRecordProtocol_createClientHandshakeMessage_m3433791085 (); extern "C" void ClientRecordProtocol_createServerHandshakeMessage_m2388742696 (); extern "C" void ClientSessionCache__cctor_m3222200124 (); extern "C" void ClientSessionCache_Add_m1176188661 (); extern "C" void ClientSessionCache_FromHost_m3499660871 (); extern "C" void ClientSessionCache_FromContext_m1274339950 (); extern "C" void ClientSessionCache_SetContextInCache_m1823103460 (); extern "C" void ClientSessionCache_SetContextFromCache_m2249085247 (); extern "C" void ClientSessionInfo__ctor_m3986042656 (); extern "C" void ClientSessionInfo__cctor_m1522715144 (); extern "C" void ClientSessionInfo_Finalize_m2580870141 (); extern "C" void ClientSessionInfo_get_HostName_m4285397854 (); extern "C" void ClientSessionInfo_get_Id_m277031725 (); extern "C" void ClientSessionInfo_get_Valid_m3298602216 (); extern "C" void ClientSessionInfo_GetContext_m4271145743 (); extern "C" void ClientSessionInfo_SetContext_m2955880067 (); extern "C" void ClientSessionInfo_KeepAlive_m3111167147 (); extern "C" void ClientSessionInfo_Dispose_m1917892930 (); extern "C" void ClientSessionInfo_Dispose_m3809547065 (); extern "C" void ClientSessionInfo_CheckDisposed_m3528977776 (); extern "C" void Context__ctor_m2692561931 (); extern "C" void Context_get_AbbreviatedHandshake_m3621257066 (); extern "C" void Context_set_AbbreviatedHandshake_m66679943 (); extern "C" void Context_get_ProtocolNegotiated_m2137079082 (); extern "C" void Context_set_ProtocolNegotiated_m2979902407 (); extern "C" void Context_get_SecurityProtocol_m2457665585 (); extern "C" void Context_set_SecurityProtocol_m848973232 (); extern "C" void Context_get_SecurityProtocolFlags_m1914144888 (); extern "C" void Context_get_Protocol_m775713592 (); extern "C" void Context_get_SessionId_m1237865483 (); extern "C" void Context_set_SessionId_m3092121576 (); extern "C" void Context_get_CompressionMethod_m487253678 (); extern "C" void Context_set_CompressionMethod_m3462049341 (); extern "C" void Context_get_ServerSettings_m4010613088 (); extern "C" void Context_get_ClientSettings_m4242530400 (); extern "C" void Context_get_LastHandshakeMsg_m1576961185 (); extern "C" void Context_set_LastHandshakeMsg_m1436694014 (); extern "C" void Context_get_HandshakeState_m972066827 (); extern "C" void Context_set_HandshakeState_m3428098438 (); extern "C" void Context_get_ReceivedConnectionEnd_m731026834 (); extern "C" void Context_set_ReceivedConnectionEnd_m1502103331 (); extern "C" void Context_get_SentConnectionEnd_m1343643003 (); extern "C" void Context_set_SentConnectionEnd_m2988269644 (); extern "C" void Context_get_SupportedCiphers_m2251752138 (); extern "C" void Context_set_SupportedCiphers_m2658500263 (); extern "C" void Context_get_HandshakeMessages_m1457854885 (); extern "C" void Context_get_WriteSequenceNumber_m2425723185 (); extern "C" void Context_set_WriteSequenceNumber_m970670722 (); extern "C" void Context_get_ReadSequenceNumber_m1306012538 (); extern "C" void Context_set_ReadSequenceNumber_m3107900585 (); extern "C" void Context_get_ClientRandom_m1978397270 (); extern "C" void Context_set_ClientRandom_m628701865 (); extern "C" void Context_get_ServerRandom_m2005153230 (); extern "C" void Context_set_ServerRandom_m1721522737 (); extern "C" void Context_get_RandomCS_m1402706075 (); extern "C" void Context_set_RandomCS_m2386417540 (); extern "C" void Context_get_RandomSC_m1403167355 (); extern "C" void Context_set_RandomSC_m2143148452 (); extern "C" void Context_get_MasterSecret_m2040743066 (); extern "C" void Context_set_MasterSecret_m748730085 (); extern "C" void Context_get_ClientWriteKey_m2094953427 (); extern "C" void Context_set_ClientWriteKey_m409290444 (); extern "C" void Context_get_ServerWriteKey_m2037627211 (); extern "C" void Context_set_ServerWriteKey_m2638128212 (); extern "C" void Context_get_ClientWriteIV_m621691963 (); extern "C" void Context_set_ClientWriteIV_m3933057208 (); extern "C" void Context_get_ServerWriteIV_m1451126723 (); extern "C" void Context_set_ServerWriteIV_m3450765872 (); extern "C" void Context_get_RecordProtocol_m3223396139 (); extern "C" void Context_set_RecordProtocol_m1649539496 (); extern "C" void Context_GetUnixTime_m545141264 (); extern "C" void Context_GetSecureRandomBytes_m3225475755 (); extern "C" void Context_Clear_m2073665242 (); extern "C" void Context_ClearKeyInfo_m2273078613 (); extern "C" void Context_DecodeProtocolCode_m1937919790 (); extern "C" void Context_ChangeProtocol_m460386024 (); extern "C" void Context_get_Current_m2247657978 (); extern "C" void Context_get_Negotiating_m622190524 (); extern "C" void Context_get_Read_m3694946135 (); extern "C" void Context_get_Write_m3396834016 (); extern "C" void Context_StartSwitchingSecurityParameters_m271202242 (); extern "C" void Context_EndSwitchingSecurityParameters_m284941993 (); extern "C" void TlsClientCertificate__ctor_m1023162040 (); extern "C" void TlsClientCertificate_get_ClientCertificate_m681521287 (); extern "C" void TlsClientCertificate_Update_m3395913260 (); extern "C" void TlsClientCertificate_GetClientCertificate_m468855481 (); extern "C" void TlsClientCertificate_SendCertificates_m1671707015 (); extern "C" void TlsClientCertificate_ProcessAsSsl3_m2390374503 (); extern "C" void TlsClientCertificate_ProcessAsTls1_m2412745622 (); extern "C" void TlsClientCertificate_FindParentCertificate_m4055579138 (); extern "C" void TlsClientCertificateVerify__ctor_m3006072319 (); extern "C" void TlsClientCertificateVerify_Update_m1777063429 (); extern "C" void TlsClientCertificateVerify_ProcessAsSsl3_m1668289134 (); extern "C" void TlsClientCertificateVerify_ProcessAsTls1_m1690660253 (); extern "C" void TlsClientCertificateVerify_getClientCertRSA_m3586152660 (); extern "C" void TlsClientCertificateVerify_getUnsignedBigInteger_m1216540004 (); extern "C" void TlsClientFinished__ctor_m3204287283 (); extern "C" void TlsClientFinished__cctor_m3258319601 (); extern "C" void TlsClientFinished_Update_m1172310609 (); extern "C" void TlsClientFinished_ProcessAsSsl3_m2163388578 (); extern "C" void TlsClientFinished_ProcessAsTls1_m2185759697 (); extern "C" void TlsClientHello__ctor_m2164384861 (); extern "C" void TlsClientHello_Update_m22199271 (); extern "C" void TlsClientHello_ProcessAsSsl3_m4013369932 (); extern "C" void TlsClientHello_ProcessAsTls1_m4035741051 (); extern "C" void TlsClientKeyExchange__ctor_m2125938125 (); extern "C" void TlsClientKeyExchange_ProcessAsSsl3_m1953591228 (); extern "C" void TlsClientKeyExchange_ProcessAsTls1_m1975962347 (); extern "C" void TlsClientKeyExchange_ProcessCommon_m4047558437 (); extern "C" void TlsServerCertificate__ctor_m1168678195 (); extern "C" void TlsServerCertificate_Update_m193766836 (); extern "C" void TlsServerCertificate_ProcessAsSsl3_m3288731615 (); extern "C" void TlsServerCertificate_ProcessAsTls1_m3311102734 (); extern "C" void TlsServerCertificate_checkCertificateUsage_m810534703 (); extern "C" void TlsServerCertificate_validateCertificates_m3450033811 (); extern "C" void TlsServerCertificate_checkServerIdentity_m2567428742 (); extern "C" void TlsServerCertificate_checkDomainName_m205565698 (); extern "C" void TlsServerCertificate_Match_m265784176 (); extern "C" void TlsServerCertificateRequest__ctor_m2335652088 (); extern "C" void TlsServerCertificateRequest_Update_m2299446415 (); extern "C" void TlsServerCertificateRequest_ProcessAsSsl3_m2972161188 (); extern "C" void TlsServerCertificateRequest_ProcessAsTls1_m2994532307 (); extern "C" void TlsServerFinished__ctor_m3574461054 (); extern "C" void TlsServerFinished__cctor_m1271550057 (); extern "C" void TlsServerFinished_Update_m3480508361 (); extern "C" void TlsServerFinished_ProcessAsSsl3_m887802922 (); extern "C" void TlsServerFinished_ProcessAsTls1_m910174041 (); extern "C" void TlsServerHello__ctor_m567935000 (); extern "C" void TlsServerHello_Update_m621158767 (); extern "C" void TlsServerHello_ProcessAsSsl3_m3531078596 (); extern "C" void TlsServerHello_ProcessAsTls1_m3553449715 (); extern "C" void TlsServerHello_processProtocol_m3684387598 (); extern "C" void TlsServerHelloDone__ctor_m911934774 (); extern "C" void TlsServerHelloDone_ProcessAsSsl3_m3691706082 (); extern "C" void TlsServerHelloDone_ProcessAsTls1_m3714077201 (); extern "C" void TlsServerKeyExchange__ctor_m3272285064 (); extern "C" void TlsServerKeyExchange_Update_m2843595775 (); extern "C" void TlsServerKeyExchange_ProcessAsSsl3_m2851948340 (); extern "C" void TlsServerKeyExchange_ProcessAsTls1_m2874319459 (); extern "C" void TlsServerKeyExchange_verifySignature_m61991115 (); extern "C" void HandshakeMessage__ctor_m1474937626 (); extern "C" void HandshakeMessage__ctor_m3955100159 (); extern "C" void HandshakeMessage__ctor_m2754795165 (); extern "C" void HandshakeMessage_get_Context_m3519080307 (); extern "C" void HandshakeMessage_get_HandshakeType_m1324026282 (); extern "C" void HandshakeMessage_get_ContentType_m3318987123 (); extern "C" void HandshakeMessage_Process_m1242505358 (); extern "C" void HandshakeMessage_Update_m566705900 (); extern "C" void HandshakeMessage_EncodeMessage_m1406146266 (); extern "C" void HandshakeMessage_Compare_m1246403066 (); extern "C" void HttpsClientStream__ctor_m1831138033 (); extern "C" void HttpsClientStream_get_TrustFailure_m1743569637 (); extern "C" void HttpsClientStream_RaiseServerCertificateValidation_m1414843622 (); extern "C" void HttpsClientStream_U3CHttpsClientStreamU3Em__0_m3456026544 (); extern "C" void HttpsClientStream_U3CHttpsClientStreamU3Em__1_m3849503321 (); extern "C" void PrivateKeySelectionCallback__ctor_m3708014169 (); extern "C" void PrivateKeySelectionCallback_Invoke_m2835982706 (); extern "C" void PrivateKeySelectionCallback_BeginInvoke_m1098601792 (); extern "C" void PrivateKeySelectionCallback_EndInvoke_m2034230778 (); extern "C" void RecordProtocol__ctor_m680122215 (); extern "C" void RecordProtocol__cctor_m1295387214 (); extern "C" void RecordProtocol_get_Context_m1960772337 (); extern "C" void RecordProtocol_SendRecord_m2691441258 (); extern "C" void RecordProtocol_ProcessChangeCipherSpec_m1060708066 (); extern "C" void RecordProtocol_GetMessage_m2989532828 (); extern "C" void RecordProtocol_BeginReceiveRecord_m2484464879 (); extern "C" void RecordProtocol_InternalReceiveRecordCallback_m1163093802 (); extern "C" void RecordProtocol_EndReceiveRecord_m2844703599 (); extern "C" void RecordProtocol_ReceiveRecord_m1131958450 (); extern "C" void RecordProtocol_ReadRecordBuffer_m1367596554 (); extern "C" void RecordProtocol_ReadClientHelloV2_m4124663563 (); extern "C" void RecordProtocol_ReadStandardRecordBuffer_m1386517462 (); extern "C" void RecordProtocol_ProcessAlert_m4015528952 (); extern "C" void RecordProtocol_SendAlert_m2514944891 (); extern "C" void RecordProtocol_SendAlert_m1748450521 (); extern "C" void RecordProtocol_SendAlert_m1661652283 (); extern "C" void RecordProtocol_SendChangeCipherSpec_m1492403331 (); extern "C" void RecordProtocol_BeginSendRecord_m4074660131 (); extern "C" void RecordProtocol_InternalSendRecordCallback_m396863619 (); extern "C" void RecordProtocol_BeginSendRecord_m284507289 (); extern "C" void RecordProtocol_EndSendRecord_m1779126194 (); extern "C" void RecordProtocol_SendRecord_m1964683252 (); extern "C" void RecordProtocol_EncodeRecord_m3527606936 (); extern "C" void RecordProtocol_EncodeRecord_m1123568120 (); extern "C" void RecordProtocol_encryptRecordFragment_m3671059907 (); extern "C" void RecordProtocol_decryptRecordFragment_m3106472171 (); extern "C" void RecordProtocol_Compare_m2180772028 (); extern "C" void RecordProtocol_ProcessCipherSpecV2Buffer_m572218255 (); extern "C" void RecordProtocol_MapV2CipherCode_m3065399538 (); extern "C" void ReceiveRecordAsyncResult__ctor_m2998582075 (); extern "C" void ReceiveRecordAsyncResult_get_Record_m871815161 (); extern "C" void ReceiveRecordAsyncResult_get_ResultingBuffer_m3820567043 (); extern "C" void ReceiveRecordAsyncResult_get_InitialBuffer_m2778078946 (); extern "C" void ReceiveRecordAsyncResult_get_AsyncState_m3272189028 (); extern "C" void ReceiveRecordAsyncResult_get_AsyncException_m3323094132 (); extern "C" void ReceiveRecordAsyncResult_get_CompletedWithError_m3317022751 (); extern "C" void ReceiveRecordAsyncResult_get_AsyncWaitHandle_m1089809952 (); extern "C" void ReceiveRecordAsyncResult_get_IsCompleted_m736891099 (); extern "C" void ReceiveRecordAsyncResult_SetComplete_m3955953983 (); extern "C" void ReceiveRecordAsyncResult_SetComplete_m1288331580 (); extern "C" void ReceiveRecordAsyncResult_SetComplete_m652335805 (); extern "C" void SendRecordAsyncResult__ctor_m1199829305 (); extern "C" void SendRecordAsyncResult_get_Message_m2765274544 (); extern "C" void SendRecordAsyncResult_get_AsyncState_m2665400351 (); extern "C" void SendRecordAsyncResult_get_AsyncException_m776645195 (); extern "C" void SendRecordAsyncResult_get_CompletedWithError_m771666376 (); extern "C" void SendRecordAsyncResult_get_AsyncWaitHandle_m1260948317 (); extern "C" void SendRecordAsyncResult_get_IsCompleted_m775666514 (); extern "C" void SendRecordAsyncResult_SetComplete_m323449559 (); extern "C" void SendRecordAsyncResult_SetComplete_m1807552551 (); extern "C" void RSASslSignatureDeformatter__ctor_m4240353957 (); extern "C" void RSASslSignatureDeformatter_VerifySignature_m3412064374 (); extern "C" void RSASslSignatureDeformatter_SetHashAlgorithm_m1915873034 (); extern "C" void RSASslSignatureDeformatter_SetKey_m1829004304 (); extern "C" void RSASslSignatureFormatter__ctor_m1725069988 (); extern "C" void RSASslSignatureFormatter_CreateSignature_m2907529851 (); extern "C" void RSASslSignatureFormatter_SetHashAlgorithm_m415040521 (); extern "C" void RSASslSignatureFormatter_SetKey_m1164612593 (); extern "C" void SecurityParameters__ctor_m711073950 (); extern "C" void SecurityParameters_get_Cipher_m2063042602 (); extern "C" void SecurityParameters_set_Cipher_m1888356967 (); extern "C" void SecurityParameters_get_ClientWriteMAC_m509205152 (); extern "C" void SecurityParameters_set_ClientWriteMAC_m2390402827 (); extern "C" void SecurityParameters_get_ServerWriteMAC_m451878936 (); extern "C" void SecurityParameters_set_ServerWriteMAC_m324273299 (); extern "C" void SecurityParameters_Clear_m2412174537 (); extern "C" void SslCipherSuite__ctor_m1794847004 (); extern "C" void SslCipherSuite_ComputeServerRecordMAC_m3251033165 (); extern "C" void SslCipherSuite_ComputeClientRecordMAC_m3845627589 (); extern "C" void SslCipherSuite_ComputeMasterSecret_m2977908955 (); extern "C" void SslCipherSuite_ComputeKeys_m2619481712 (); extern "C" void SslCipherSuite_prf_m1493836693 (); extern "C" void SslClientStream__ctor_m99328227 (); extern "C" void SslClientStream__ctor_m3830369294 (); extern "C" void SslClientStream__ctor_m3070934736 (); extern "C" void SslClientStream__ctor_m1812308023 (); extern "C" void SslClientStream__ctor_m2883483309 (); extern "C" void SslClientStream_add_ServerCertValidation_m4096862828 (); extern "C" void SslClientStream_remove_ServerCertValidation_m2271337009 (); extern "C" void SslClientStream_add_ClientCertSelection_m3598639054 (); extern "C" void SslClientStream_remove_ClientCertSelection_m3341991123 (); extern "C" void SslClientStream_add_PrivateKeySelection_m3756271176 (); extern "C" void SslClientStream_remove_PrivateKeySelection_m7214243 (); extern "C" void SslClientStream_add_ServerCertValidation2_m2720675414 (); extern "C" void SslClientStream_remove_ServerCertValidation2_m737020123 (); extern "C" void SslClientStream_get_InputBuffer_m4205110840 (); extern "C" void SslClientStream_get_ClientCertificates_m4081278826 (); extern "C" void SslClientStream_get_SelectedClientCertificate_m4252887474 (); extern "C" void SslClientStream_get_ServerCertValidationDelegate_m459420051 (); extern "C" void SslClientStream_set_ServerCertValidationDelegate_m772375792 (); extern "C" void SslClientStream_get_ClientCertSelectionDelegate_m3262721995 (); extern "C" void SslClientStream_set_ClientCertSelectionDelegate_m1954811816 (); extern "C" void SslClientStream_get_PrivateKeyCertSelectionDelegate_m3305681381 (); extern "C" void SslClientStream_set_PrivateKeyCertSelectionDelegate_m3816935658 (); extern "C" void SslClientStream_Finalize_m1289121787 (); extern "C" void SslClientStream_Dispose_m2208138235 (); extern "C" void SslClientStream_OnBeginNegotiateHandshake_m3558591952 (); extern "C" void SslClientStream_SafeReceiveRecord_m4180109699 (); extern "C" void SslClientStream_OnNegotiateHandshakeCallback_m2911909321 (); extern "C" void SslClientStream_OnLocalCertificateSelection_m3738340919 (); extern "C" void SslClientStream_get_HaveRemoteValidation2Callback_m712645822 (); extern "C" void SslClientStream_OnRemoteCertificateValidation2_m549297777 (); extern "C" void SslClientStream_OnRemoteCertificateValidation_m2995372221 (); extern "C" void SslClientStream_RaiseServerCertificateValidation_m738622279 (); extern "C" void SslClientStream_RaiseServerCertificateValidation2_m1222389749 (); extern "C" void SslClientStream_RaiseClientCertificateSelection_m4278211596 (); extern "C" void SslClientStream_OnLocalPrivateKeySelection_m3261566884 (); extern "C" void SslClientStream_RaisePrivateKeySelection_m3264140164 (); extern "C" void SslHandshakeHash__ctor_m1720849178 (); extern "C" void SslHandshakeHash_Initialize_m3218164453 (); extern "C" void SslHandshakeHash_HashFinal_m1716921183 (); extern "C" void SslHandshakeHash_HashCore_m1118046919 (); extern "C" void SslHandshakeHash_CreateSignature_m1753519462 (); extern "C" void SslHandshakeHash_initializePad_m1112962160 (); extern "C" void SslStreamBase__ctor_m1932094885 (); extern "C" void SslStreamBase__cctor_m4024786316 (); extern "C" void SslStreamBase_AsyncHandshakeCallback_m2999600224 (); extern "C" void SslStreamBase_get_MightNeedHandshake_m3486515364 (); extern "C" void SslStreamBase_NegotiateHandshake_m4275951676 (); extern "C" void SslStreamBase_RaiseLocalCertificateSelection_m3048410672 (); extern "C" void SslStreamBase_RaiseRemoteCertificateValidation_m1070332522 (); extern "C" void SslStreamBase_RaiseRemoteCertificateValidation2_m2704286450 (); extern "C" void SslStreamBase_RaiseLocalPrivateKeySelection_m2365509687 (); extern "C" void SslStreamBase_get_CheckCertRevocationStatus_m3165157124 (); extern "C" void SslStreamBase_set_CheckCertRevocationStatus_m2461874581 (); extern "C" void SslStreamBase_get_CipherAlgorithm_m4086753563 (); extern "C" void SslStreamBase_get_CipherStrength_m2205541504 (); extern "C" void SslStreamBase_get_HashAlgorithm_m3705882325 (); extern "C" void SslStreamBase_get_HashStrength_m769179779 (); extern "C" void SslStreamBase_get_KeyExchangeStrength_m4089580817 (); extern "C" void SslStreamBase_get_KeyExchangeAlgorithm_m3009312272 (); extern "C" void SslStreamBase_get_SecurityProtocol_m2787356191 (); extern "C" void SslStreamBase_get_ServerCertificate_m2089787471 (); extern "C" void SslStreamBase_get_ServerCertificates_m925494264 (); extern "C" void SslStreamBase_BeginNegotiateHandshake_m2998761743 (); extern "C" void SslStreamBase_EndNegotiateHandshake_m2402424015 (); extern "C" void SslStreamBase_BeginRead_m1224799779 (); extern "C" void SslStreamBase_InternalBeginRead_m2665365405 (); extern "C" void SslStreamBase_InternalReadCallback_m4035244488 (); extern "C" void SslStreamBase_InternalBeginWrite_m3259256466 (); extern "C" void SslStreamBase_InternalWriteCallback_m1764266237 (); extern "C" void SslStreamBase_BeginWrite_m1786584070 (); extern "C" void SslStreamBase_EndRead_m29185563 (); extern "C" void SslStreamBase_EndWrite_m2816354780 (); extern "C" void SslStreamBase_Close_m3657358167 (); extern "C" void SslStreamBase_Flush_m2030445923 (); extern "C" void SslStreamBase_Read_m558115208 (); extern "C" void SslStreamBase_Read_m2805310696 (); extern "C" void SslStreamBase_Seek_m3066335689 (); extern "C" void SslStreamBase_SetLength_m1474200217 (); extern "C" void SslStreamBase_Write_m1278747915 (); extern "C" void SslStreamBase_Write_m139555499 (); extern "C" void SslStreamBase_get_CanRead_m780009774 (); extern "C" void SslStreamBase_get_CanSeek_m808764816 (); extern "C" void SslStreamBase_get_CanWrite_m3228120041 (); extern "C" void SslStreamBase_get_Length_m3676785979 (); extern "C" void SslStreamBase_get_Position_m3149709758 (); extern "C" void SslStreamBase_set_Position_m718728987 (); extern "C" void SslStreamBase_Finalize_m1889580673 (); extern "C" void SslStreamBase_Dispose_m927762229 (); extern "C" void SslStreamBase_resetBuffer_m54784942 (); extern "C" void SslStreamBase_checkDisposed_m2873255308 (); extern "C" void InternalAsyncResult__ctor_m358982211 (); extern "C" void InternalAsyncResult_get_ProceedAfterHandshake_m2894433668 (); extern "C" void InternalAsyncResult_get_FromWrite_m619101712 (); extern "C" void InternalAsyncResult_get_Buffer_m2758631523 (); extern "C" void InternalAsyncResult_get_Offset_m3785298228 (); extern "C" void InternalAsyncResult_get_Count_m2489795056 (); extern "C" void InternalAsyncResult_get_BytesRead_m2065687810 (); extern "C" void InternalAsyncResult_get_AsyncState_m478600163 (); extern "C" void InternalAsyncResult_get_AsyncException_m789203443 (); extern "C" void InternalAsyncResult_get_CompletedWithError_m2268946270 (); extern "C" void InternalAsyncResult_get_AsyncWaitHandle_m2858026241 (); extern "C" void InternalAsyncResult_get_IsCompleted_m517442172 (); extern "C" void InternalAsyncResult_SetComplete_m849188890 (); extern "C" void InternalAsyncResult_SetComplete_m1458533341 (); extern "C" void InternalAsyncResult_SetComplete_m2488678142 (); extern "C" void InternalAsyncResult_SetComplete_m1352916269 (); extern "C" void TlsCipherSuite__ctor_m1139271371 (); extern "C" void TlsCipherSuite_ComputeServerRecordMAC_m3713639486 (); extern "C" void TlsCipherSuite_ComputeClientRecordMAC_m13266614 (); extern "C" void TlsCipherSuite_ComputeMasterSecret_m988816908 (); extern "C" void TlsCipherSuite_ComputeKeys_m3237102751 (); extern "C" void TlsClientSettings__ctor_m929581301 (); extern "C" void TlsClientSettings_get_TargetHost_m4152838452 (); extern "C" void TlsClientSettings_set_TargetHost_m2074298781 (); extern "C" void TlsClientSettings_get_Certificates_m3576351313 (); extern "C" void TlsClientSettings_set_Certificates_m2196533972 (); extern "C" void TlsClientSettings_get_ClientCertificate_m1621563643 (); extern "C" void TlsClientSettings_set_ClientCertificate_m1801603000 (); extern "C" void TlsClientSettings_UpdateCertificateRSA_m715783041 (); extern "C" void TlsException__ctor_m1800218670 (); extern "C" void TlsException__ctor_m3172375189 (); extern "C" void TlsException__ctor_m1532839414 (); extern "C" void TlsException__ctor_m1100072882 (); extern "C" void TlsException__ctor_m314055256 (); extern "C" void TlsException__ctor_m761809044 (); extern "C" void TlsException_get_Alert_m2233021222 (); extern "C" void TlsServerSettings__ctor_m1004039293 (); extern "C" void TlsServerSettings_get_ServerKeyExchange_m635755587 (); extern "C" void TlsServerSettings_set_ServerKeyExchange_m1327105940 (); extern "C" void TlsServerSettings_get_Certificates_m2110079385 (); extern "C" void TlsServerSettings_set_Certificates_m3296554870 (); extern "C" void TlsServerSettings_get_CertificateRSA_m2184825443 (); extern "C" void TlsServerSettings_get_RsaParameters_m2649016060 (); extern "C" void TlsServerSettings_set_RsaParameters_m1298390193 (); extern "C" void TlsServerSettings_set_SignedParams_m1629591715 (); extern "C" void TlsServerSettings_get_CertificateRequest_m741313462 (); extern "C" void TlsServerSettings_set_CertificateRequest_m3309749971 (); extern "C" void TlsServerSettings_set_CertificateTypes_m2445254267 (); extern "C" void TlsServerSettings_set_DistinguisedNames_m3842714172 (); extern "C" void TlsServerSettings_UpdateCertificateRSA_m2131580665 (); extern "C" void TlsStream__ctor_m2595943107 (); extern "C" void TlsStream__ctor_m868803046 (); extern "C" void TlsStream_get_EOF_m3756372902 (); extern "C" void TlsStream_get_CanWrite_m3459717159 (); extern "C" void TlsStream_get_CanRead_m4251163952 (); extern "C" void TlsStream_get_CanSeek_m4279918994 (); extern "C" void TlsStream_get_Position_m872901500 (); extern "C" void TlsStream_set_Position_m1335791449 (); extern "C" void TlsStream_get_Length_m2901233273 (); extern "C" void TlsStream_ReadSmallValue_m1160118396 (); extern "C" void TlsStream_ReadByte_m4124498283 (); extern "C" void TlsStream_ReadInt16_m3059078429 (); extern "C" void TlsStream_ReadInt24_m64683956 (); extern "C" void TlsStream_ReadBytes_m3691381117 (); extern "C" void TlsStream_Write_m1211282283 (); extern "C" void TlsStream_Write_m3380208203 (); extern "C" void TlsStream_WriteInt24_m3944062020 (); extern "C" void TlsStream_Write_m3380210001 (); extern "C" void TlsStream_Write_m106187721 (); extern "C" void TlsStream_Reset_m242376048 (); extern "C" void TlsStream_ToArray_m613486997 (); extern "C" void TlsStream_Flush_m2679890405 (); extern "C" void TlsStream_SetLength_m702479131 (); extern "C" void TlsStream_Seek_m484817355 (); extern "C" void TlsStream_Read_m3435838442 (); extern "C" void TlsStream_Write_m2853472233 (); extern "C" void ValidationResult_get_Trusted_m3614004972 (); extern "C" void ValidationResult_get_ErrorCode_m4021319972 (); extern "C" void AuthorityKeyIdentifierExtension__ctor_m273322001 (); extern "C" void AuthorityKeyIdentifierExtension_Decode_m3261570505 (); extern "C" void AuthorityKeyIdentifierExtension_get_Identifier_m3285341703 (); extern "C" void AuthorityKeyIdentifierExtension_ToString_m196471364 (); extern "C" void BasicConstraintsExtension__ctor_m1872483704 (); extern "C" void BasicConstraintsExtension_Decode_m3853789606 (); extern "C" void BasicConstraintsExtension_Encode_m699231182 (); extern "C" void BasicConstraintsExtension_get_CertificateAuthority_m1090073055 (); extern "C" void BasicConstraintsExtension_ToString_m2175497377 (); extern "C" void ExtendedKeyUsageExtension__ctor_m2456177771 (); extern "C" void ExtendedKeyUsageExtension_Decode_m1804174611 (); extern "C" void ExtendedKeyUsageExtension_Encode_m2944583483 (); extern "C" void ExtendedKeyUsageExtension_get_KeyPurpose_m1025837013 (); extern "C" void ExtendedKeyUsageExtension_ToString_m3885476046 (); extern "C" void GeneralNames__ctor_m2995468779 (); extern "C" void GeneralNames_get_DNSNames_m2643734506 (); extern "C" void GeneralNames_get_IPAddresses_m2790419794 (); extern "C" void GeneralNames_ToString_m1119274128 (); extern "C" void KeyUsageExtension__ctor_m2614086738 (); extern "C" void KeyUsageExtension_Decode_m318383628 (); extern "C" void KeyUsageExtension_Encode_m1458792500 (); extern "C" void KeyUsageExtension_Support_m2695467029 (); extern "C" void KeyUsageExtension_ToString_m3863870599 (); extern "C" void NetscapeCertTypeExtension__ctor_m3785381751 (); extern "C" void NetscapeCertTypeExtension_Decode_m4024937351 (); extern "C" void NetscapeCertTypeExtension_Support_m1416151043 (); extern "C" void NetscapeCertTypeExtension_ToString_m3439723074 (); extern "C" void SubjectAltNameExtension__ctor_m607242584 (); extern "C" void SubjectAltNameExtension_Decode_m3473224134 (); extern "C" void SubjectAltNameExtension_get_DNSNames_m3652648031 (); extern "C" void SubjectAltNameExtension_get_IPAddresses_m3152105661 (); extern "C" void SubjectAltNameExtension_ToString_m2980757505 (); extern "C" void PKCS12__ctor_m2645615037 (); extern "C" void PKCS12__ctor_m1570997648 (); extern "C" void PKCS12__ctor_m3732648396 (); extern "C" void PKCS12__cctor_m4222558608 (); extern "C" void PKCS12_Decode_m3657725204 (); extern "C" void PKCS12_Finalize_m2970192261 (); extern "C" void PKCS12_set_Password_m255122339 (); extern "C" void PKCS12_get_IterationCount_m1936461050 (); extern "C" void PKCS12_set_IterationCount_m4214894503 (); extern "C" void PKCS12_get_Keys_m3197281000 (); extern "C" void PKCS12_get_Certificates_m425759547 (); extern "C" void PKCS12_get_RNG_m944600768 (); extern "C" void PKCS12_Compare_m1707054334 (); extern "C" void PKCS12_GetSymmetricAlgorithm_m2527458883 (); extern "C" void PKCS12_Decrypt_m2583016519 (); extern "C" void PKCS12_Decrypt_m1699029656 (); extern "C" void PKCS12_Encrypt_m3283559711 (); extern "C" void PKCS12_GetExistingParameters_m1851295361 (); extern "C" void PKCS12_AddPrivateKey_m3693882703 (); extern "C" void PKCS12_ReadSafeBag_m4010108072 (); extern "C" void PKCS12_CertificateSafeBag_m2143586463 (); extern "C" void PKCS12_MAC_m1203837730 (); extern "C" void PKCS12_GetBytes_m1971373682 (); extern "C" void PKCS12_EncryptedContentInfo_m722640604 (); extern "C" void PKCS12_AddCertificate_m3895304625 (); extern "C" void PKCS12_AddCertificate_m710679726 (); extern "C" void PKCS12_RemoveCertificate_m2867856866 (); extern "C" void PKCS12_RemoveCertificate_m2039050845 (); extern "C" void PKCS12_Clone_m668285869 (); extern "C" void PKCS12_get_MaximumPasswordLength_m1083541051 (); extern "C" void DeriveBytes__ctor_m4046501000 (); extern "C" void DeriveBytes__cctor_m405383205 (); extern "C" void DeriveBytes_set_HashName_m2086526224 (); extern "C" void DeriveBytes_set_IterationCount_m35620668 (); extern "C" void DeriveBytes_set_Password_m2839198645 (); extern "C" void DeriveBytes_set_Salt_m801246362 (); extern "C" void DeriveBytes_Adjust_m1390246396 (); extern "C" void DeriveBytes_Derive_m641766759 (); extern "C" void DeriveBytes_DeriveKey_m3484345305 (); extern "C" void DeriveBytes_DeriveIV_m1504468791 (); extern "C" void DeriveBytes_DeriveMAC_m3291939529 (); extern "C" void SafeBag__ctor_m2711801934 (); extern "C" void SafeBag_get_BagOID_m2256458192 (); extern "C" void SafeBag_get_ASN1_m3365953951 (); extern "C" void X501__cctor_m2619822114 (); extern "C" void X501_ToString_m1957208426 (); extern "C" void X501_ToString_m1526231602 (); extern "C" void X501_AppendEntry_m1741585464 (); extern "C" void X509Certificate__ctor_m1688356825 (); extern "C" void X509Certificate__cctor_m3957890465 (); extern "C" void X509Certificate_Parse_m1221896268 (); extern "C" void X509Certificate_GetUnsignedBigInteger_m3057380224 (); extern "C" void X509Certificate_get_DSA_m1952040247 (); extern "C" void X509Certificate_set_DSA_m1562150692 (); extern "C" void X509Certificate_get_Extensions_m577630462 (); extern "C" void X509Certificate_get_Hash_m2925829113 (); extern "C" void X509Certificate_get_IssuerName_m3235776392 (); extern "C" void X509Certificate_get_KeyAlgorithm_m3661706164 (); extern "C" void X509Certificate_get_KeyAlgorithmParameters_m2708577349 (); extern "C" void X509Certificate_set_KeyAlgorithmParameters_m769560986 (); extern "C" void X509Certificate_get_PublicKey_m835022733 (); extern "C" void X509Certificate_get_RSA_m842279223 (); extern "C" void X509Certificate_set_RSA_m547377152 (); extern "C" void X509Certificate_get_RawData_m2988459721 (); extern "C" void X509Certificate_get_SerialNumber_m1906128776 (); extern "C" void X509Certificate_get_Signature_m2856370319 (); extern "C" void X509Certificate_get_SignatureAlgorithm_m2628075899 (); extern "C" void X509Certificate_get_SubjectName_m4227284693 (); extern "C" void X509Certificate_get_ValidFrom_m3810659470 (); extern "C" void X509Certificate_get_ValidUntil_m2484027100 (); extern "C" void X509Certificate_get_Version_m1452122189 (); extern "C" void X509Certificate_get_IsCurrent_m3064883298 (); extern "C" void X509Certificate_WasCurrent_m3800725474 (); extern "C" void X509Certificate_VerifySignature_m120457372 (); extern "C" void X509Certificate_VerifySignature_m120874446 (); extern "C" void X509Certificate_VerifySignature_m1482842161 (); extern "C" void X509Certificate_get_IsSelfSigned_m3915010913 (); extern "C" void X509Certificate_GetIssuerName_m3574279585 (); extern "C" void X509Certificate_GetSubjectName_m1835981788 (); extern "C" void X509Certificate_GetObjectData_m2959679786 (); extern "C" void X509Certificate_PEM_m3879103085 (); extern "C" void X509CertificateCollection__ctor_m2517521230 (); extern "C" void X509CertificateCollection__ctor_m1273937252 (); extern "C" void X509CertificateCollection_System_Collections_IEnumerable_GetEnumerator_m4286050429 (); extern "C" void X509CertificateCollection_get_Item_m1107000690 (); extern "C" void X509CertificateCollection_Add_m1585739833 (); extern "C" void X509CertificateCollection_AddRange_m2353463272 (); extern "C" void X509CertificateCollection_Contains_m1747801975 (); extern "C" void X509CertificateCollection_GetEnumerator_m2226643995 (); extern "C" void X509CertificateCollection_GetHashCode_m2363682709 (); extern "C" void X509CertificateCollection_IndexOf_m2746488929 (); extern "C" void X509CertificateCollection_Remove_m2746334158 (); extern "C" void X509CertificateCollection_Compare_m1507319785 (); extern "C" void X509CertificateEnumerator__ctor_m3786714110 (); extern "C" void X509CertificateEnumerator_System_Collections_IEnumerator_get_Current_m974397704 (); extern "C" void X509CertificateEnumerator_System_Collections_IEnumerator_MoveNext_m1008796181 (); extern "C" void X509CertificateEnumerator_System_Collections_IEnumerator_Reset_m2173605650 (); extern "C" void X509CertificateEnumerator_get_Current_m1696796071 (); extern "C" void X509CertificateEnumerator_MoveNext_m4038787598 (); extern "C" void X509CertificateEnumerator_Reset_m2282105749 (); extern "C" void X509Chain__ctor_m4239706530 (); extern "C" void X509Chain__ctor_m2818311608 (); extern "C" void X509Chain_get_Status_m4000836433 (); extern "C" void X509Chain_get_TrustAnchors_m885238782 (); extern "C" void X509Chain_Build_m2539190260 (); extern "C" void X509Chain_IsValid_m122831928 (); extern "C" void X509Chain_FindCertificateParent_m3659377521 (); extern "C" void X509Chain_FindCertificateRoot_m3426389033 (); extern "C" void X509Chain_IsTrusted_m622221811 (); extern "C" void X509Chain_IsParent_m3808002146 (); extern "C" void X509Crl__ctor_m1270803331 (); extern "C" void X509Crl_Parse_m3104051218 (); extern "C" void X509Crl_get_Extensions_m2379703492 (); extern "C" void X509Crl_get_Hash_m2225876287 (); extern "C" void X509Crl_get_IssuerName_m3020541034 (); extern "C" void X509Crl_get_NextUpdate_m1145701656 (); extern "C" void X509Crl_Compare_m1588393905 (); extern "C" void X509Crl_GetCrlEntry_m698190412 (); extern "C" void X509Crl_GetCrlEntry_m1555363125 (); extern "C" void X509Crl_GetHashName_m3316681040 (); extern "C" void X509Crl_VerifySignature_m1549750422 (); extern "C" void X509Crl_VerifySignature_m1550167496 (); extern "C" void X509Crl_VerifySignature_m4119089195 (); extern "C" void X509CrlEntry__ctor_m2720899934 (); extern "C" void X509CrlEntry_get_SerialNumber_m2092313770 (); extern "C" void X509CrlEntry_get_RevocationDate_m1346115726 (); extern "C" void X509CrlEntry_get_Extensions_m3036329986 (); extern "C" void X509Extension__ctor_m2888521900 (); extern "C" void X509Extension__ctor_m3298017424 (); extern "C" void X509Extension_Decode_m4266869134 (); extern "C" void X509Extension_Encode_m1112310710 (); extern "C" void X509Extension_get_Oid_m1309247492 (); extern "C" void X509Extension_get_Critical_m3010458874 (); extern "C" void X509Extension_get_Value_m1722264871 (); extern "C" void X509Extension_Equals_m131878599 (); extern "C" void X509Extension_GetHashCode_m1621273003 (); extern "C" void X509Extension_WriteLine_m4265102453 (); extern "C" void X509Extension_ToString_m1923324847 (); extern "C" void X509ExtensionCollection__ctor_m3777468326 (); extern "C" void X509ExtensionCollection__ctor_m2115523054 (); extern "C" void X509ExtensionCollection_System_Collections_IEnumerable_GetEnumerator_m2588592549 (); extern "C" void X509ExtensionCollection_IndexOf_m1626273533 (); extern "C" void X509ExtensionCollection_get_Item_m2008681985 (); extern "C" void X509Store__ctor_m3740673213 (); extern "C" void X509Store_get_Certificates_m3817753304 (); extern "C" void X509Store_get_Crls_m2221659197 (); extern "C" void X509Store_Load_m507057712 (); extern "C" void X509Store_LoadCertificate_m2281266908 (); extern "C" void X509Store_LoadCrl_m371472464 (); extern "C" void X509Store_CheckStore_m4197144772 (); extern "C" void X509Store_BuildCertificatesCollection_m1851273927 (); extern "C" void X509Store_BuildCrlsCollection_m2551806712 (); extern "C" void X509StoreManager_get_CurrentUser_m856219042 (); extern "C" void X509StoreManager_get_LocalMachine_m3736537920 (); extern "C" void X509StoreManager_get_TrustedRootCertificates_m2593128238 (); extern "C" void X509Stores__ctor_m3067409489 (); extern "C" void X509Stores_get_TrustedRoot_m4006515680 (); extern "C" void X509Stores_Open_m3798926259 (); extern "C" void AddComponentMenu__ctor_m1521317712 (); extern "C" void AddComponentMenu__ctor_m3281913735 (); extern "C" void AnimationCurve__ctor_m2436282331 (); extern "C" void AnimationCurve__ctor_m4037844610 (); extern "C" void AnimationCurve_Cleanup_m386995588 (); extern "C" void AnimationCurve_Finalize_m2382224032 (); extern "C" void AnimationCurve_Init_m4012213483 (); extern "C" void AnimationEvent__ctor_m3893222711 (); extern "C" void AnimationEvent_get_data_m2818928483 (); extern "C" void AnimationEvent_set_data_m1709280462 (); extern "C" void AnimationEvent_get_stringParameter_m774178145 (); extern "C" void AnimationEvent_set_stringParameter_m4027163538 (); extern "C" void AnimationEvent_get_floatParameter_m585550415 (); extern "C" void AnimationEvent_set_floatParameter_m3972419412 (); extern "C" void AnimationEvent_get_intParameter_m1837369744 (); extern "C" void AnimationEvent_set_intParameter_m1983832533 (); extern "C" void AnimationEvent_get_objectReferenceParameter_m1449907980 (); extern "C" void AnimationEvent_set_objectReferenceParameter_m2952903185 (); extern "C" void AnimationEvent_get_functionName_m508701692 (); extern "C" void AnimationEvent_set_functionName_m3347976661 (); extern "C" void AnimationEvent_get_time_m4165710255 (); extern "C" void AnimationEvent_set_time_m2746909172 (); extern "C" void AnimationEvent_get_messageOptions_m501221094 (); extern "C" void AnimationEvent_set_messageOptions_m927737387 (); extern "C" void AnimationEvent_get_isFiredByLegacy_m1265747114 (); extern "C" void AnimationEvent_get_isFiredByAnimator_m877765704 (); extern "C" void AnimationEvent_get_animationState_m2712753230 (); extern "C" void AnimationEvent_get_animatorStateInfo_m194903218 (); extern "C" void AnimationEvent_get_animatorClipInfo_m493861262 (); extern "C" void AnimationEvent_GetHash_m2586883417 (); extern "C" void Animator_SetTrigger_m514363822 (); extern "C" void Animator_ResetTrigger_m4152421915 (); extern "C" void Animator_get_runtimeAnimatorController_m1822082727 (); extern "C" void Animator_StringToHash_m4020897098 (); extern "C" void Animator_SetTriggerString_m1378271133 (); extern "C" void Animator_ResetTriggerString_m1817269834 (); extern "C" void AnimatorStateInfo_IsName_m1653922768 (); extern "C" void AnimatorStateInfo_get_fullPathHash_m3257074542 (); extern "C" void AnimatorStateInfo_get_nameHash_m453823205 (); extern "C" void AnimatorStateInfo_get_shortNameHash_m994885515 (); extern "C" void AnimatorStateInfo_get_normalizedTime_m2531821060 (); extern "C" void AnimatorStateInfo_get_length_m3147284742 (); extern "C" void AnimatorStateInfo_get_speed_m247405833 (); extern "C" void AnimatorStateInfo_get_speedMultiplier_m489756842 (); extern "C" void AnimatorStateInfo_get_tagHash_m3543262078 (); extern "C" void AnimatorStateInfo_IsTag_m119936877 (); extern "C" void AnimatorStateInfo_get_loop_m1495892586 (); extern "C" void AnimatorTransitionInfo_IsName_m1283663078 (); extern "C" void AnimatorTransitionInfo_IsUserName_m2732197659 (); extern "C" void AnimatorTransitionInfo_get_fullPathHash_m3335466636 (); extern "C" void AnimatorTransitionInfo_get_nameHash_m2102867203 (); extern "C" void AnimatorTransitionInfo_get_userNameHash_m249220782 (); extern "C" void AnimatorTransitionInfo_get_normalizedTime_m3258684986 (); extern "C" void AnimatorTransitionInfo_get_anyState_m3421556405 (); extern "C" void AnimatorTransitionInfo_get_entry_m2038132324 (); extern "C" void AnimatorTransitionInfo_get_exit_m2568505102 (); extern "C" void Application_get_isPlaying_m987993960 (); extern "C" void Application_get_isEditor_m1279348309 (); extern "C" void Application_get_platform_m2918632856 (); extern "C" void Application_CallLogCallback_m419361836 (); extern "C" void LogCallback__ctor_m286543475 (); extern "C" void LogCallback_Invoke_m1886455446 (); extern "C" void LogCallback_BeginInvoke_m1640350401 (); extern "C" void LogCallback_EndInvoke_m2883514883 (); extern "C" void AssemblyIsEditorAssembly__ctor_m582741130 (); extern "C" void AssetBundle_LoadAsset_m3749681325 (); extern "C" void AssetBundle_LoadAsset_Internal_m1258146911 (); extern "C" void AssetBundle_LoadAssetWithSubAssets_Internal_m1442956208 (); extern "C" void AssetBundleCreateRequest__ctor_m109192972 (); extern "C" void AssetBundleCreateRequest_get_assetBundle_m198975995 (); extern "C" void AssetBundleCreateRequest_DisableCompatibilityChecks_m616322731 (); extern "C" void AssetBundleRequest__ctor_m1736261360 (); extern "C" void AssetBundleRequest_get_asset_m1874521436 (); extern "C" void AssetBundleRequest_get_allAssets_m2335877586 (); extern "C" void AsyncOperation__ctor_m162101250 (); extern "C" void AsyncOperation_InternalDestroy_m838183325 (); extern "C" void AsyncOperation_Finalize_m1717604640 (); extern "C" void AsyncOperation_get_isDone_m2747591837 (); extern "C" void AsyncOperation_get_progress_m2178550628 (); extern "C" void AsyncOperation_get_priority_m1711502735 (); extern "C" void AsyncOperation_set_priority_m4201963860 (); extern "C" void AsyncOperation_get_allowSceneActivation_m4131883466 (); extern "C" void AsyncOperation_set_allowSceneActivation_m2093104207 (); extern "C" void AttributeHelperEngine__cctor_m2686080064 (); extern "C" void AttributeHelperEngine_GetParentTypeDisallowingMultipleInclusion_m799857845 (); extern "C" void AttributeHelperEngine_GetRequiredComponents_m2666115467 (); extern "C" void AttributeHelperEngine_CheckIsEditorScript_m2105533310 (); extern "C" void AudioClip_InvokePCMReaderCallback_Internal_m963695910 (); extern "C" void AudioClip_InvokePCMSetPositionCallback_Internal_m194702160 (); extern "C" void PCMReaderCallback__ctor_m2350128290 (); extern "C" void PCMReaderCallback_Invoke_m2982892301 (); extern "C" void PCMReaderCallback_BeginInvoke_m3711541228 (); extern "C" void PCMReaderCallback_EndInvoke_m1134768050 (); extern "C" void PCMSetPositionCallback__ctor_m2986500852 (); extern "C" void PCMSetPositionCallback_Invoke_m1757186207 (); extern "C" void PCMSetPositionCallback_BeginInvoke_m3959339032 (); extern "C" void PCMSetPositionCallback_EndInvoke_m239431428 (); extern "C" void AudioSettings_InvokeOnAudioConfigurationChanged_m1851666322 (); extern "C" void AudioConfigurationChangeHandler__ctor_m2273531181 (); extern "C" void AudioConfigurationChangeHandler_Invoke_m3047533822 (); extern "C" void AudioConfigurationChangeHandler_BeginInvoke_m194625699 (); extern "C" void AudioConfigurationChangeHandler_EndInvoke_m218260925 (); extern "C" void Behaviour__ctor_m1624944828 (); extern "C" void Behaviour_get_enabled_m1239363704 (); extern "C" void Behaviour_set_enabled_m2046806933 (); extern "C" void Behaviour_get_isActiveAndEnabled_m210167461 (); extern "C" void BitStream__ctor_m922403980 (); extern "C" void BitStream_Serializeb_m1472011233 (); extern "C" void BitStream_Serializec_m1377214154 (); extern "C" void BitStream_Serializes_m1382809078 (); extern "C" void BitStream_Serializei_m2193239290 (); extern "C" void BitStream_Serializef_m145870244 (); extern "C" void BitStream_Serializeq_m2989370589 (); extern "C" void BitStream_INTERNAL_CALL_Serializeq_m999142740 (); extern "C" void BitStream_Serializev_m2820325190 (); extern "C" void BitStream_INTERNAL_CALL_Serializev_m2004861039 (); extern "C" void BitStream_Serializen_m3655149335 (); extern "C" void BitStream_INTERNAL_CALL_Serializen_m4031551296 (); extern "C" void BitStream_Serialize_m2001881067 (); extern "C" void BitStream_Serialize_m2728753561 (); extern "C" void BitStream_Serialize_m4204437271 (); extern "C" void BitStream_Serialize_m4204493009 (); extern "C" void BitStream_Serialize_m1473984011 (); extern "C" void BitStream_Serialize_m518836656 (); extern "C" void BitStream_Serialize_m4132505111 (); extern "C" void BitStream_Serialize_m1228905660 (); extern "C" void BitStream_Serialize_m981417501 (); extern "C" void BitStream_Serialize_m3209712194 (); extern "C" void BitStream_Serialize_m4247024188 (); extern "C" void BitStream_Serialize_m3563231771 (); extern "C" void BitStream_get_isReading_m3929869641 (); extern "C" void BitStream_get_isWriting_m3632391065 (); extern "C" void BitStream_Serialize_m2763015060 (); extern "C" void Bounds__ctor_m4160293652 (); extern "C" void Bounds_GetHashCode_m3067388679 (); extern "C" void Bounds_Equals_m2517451939 (); extern "C" void Bounds_get_center_m4084610404 (); extern "C" void Bounds_set_center_m2605643707 (); extern "C" void Bounds_get_size_m3666348432 (); extern "C" void Bounds_set_size_m4109809039 (); extern "C" void Bounds_get_extents_m2111648188 (); extern "C" void Bounds_set_extents_m2603836823 (); extern "C" void Bounds_get_min_m2329472069 (); extern "C" void Bounds_get_max_m2329243351 (); extern "C" void Bounds_SetMinMax_m2186020994 (); extern "C" void Bounds_Encapsulate_m3624685234 (); extern "C" void Bounds_ToString_m1795228795 (); extern "C" void Bounds_op_Equality_m2855966622 (); extern "C" void Bounds_op_Inequality_m4292292377 (); extern "C" void Camera_get_nearClipPlane_m4074655061 (); extern "C" void Camera_get_farClipPlane_m388706726 (); extern "C" void Camera_get_depth_m3642810036 (); extern "C" void Camera_get_cullingMask_m1045975289 (); extern "C" void Camera_get_eventMask_m3669132771 (); extern "C" void Camera_get_pixelRect_m936851539 (); extern "C" void Camera_INTERNAL_get_pixelRect_m1853722860 (); extern "C" void Camera_get_targetTexture_m1468336738 (); extern "C" void Camera_get_clearFlags_m192466552 (); extern "C" void Camera_ScreenToViewportPoint_m3727203754 (); extern "C" void Camera_INTERNAL_CALL_ScreenToViewportPoint_m3712526702 (); extern "C" void Camera_ScreenPointToRay_m1733083890 (); extern "C" void Camera_INTERNAL_CALL_ScreenPointToRay_m371614468 (); extern "C" void Camera_get_main_m671815697 (); extern "C" void Camera_get_allCamerasCount_m3993434431 (); extern "C" void Camera_GetAllCameras_m3771867787 (); extern "C" void Camera_FireOnPreCull_m4184591338 (); extern "C" void Camera_FireOnPreRender_m2754549070 (); extern "C" void Camera_FireOnPostRender_m865551979 (); extern "C" void Camera_RaycastTry_m569221064 (); extern "C" void Camera_INTERNAL_CALL_RaycastTry_m2819346616 (); extern "C" void Camera_RaycastTry2D_m3256311322 (); extern "C" void Camera_INTERNAL_CALL_RaycastTry2D_m2796313289 (); extern "C" void CameraCallback__ctor_m3976281469 (); extern "C" void CameraCallback_Invoke_m3757410555 (); extern "C" void CameraCallback_BeginInvoke_m3719545510 (); extern "C" void CameraCallback_EndInvoke_m534836749 (); extern "C" void Canvas_add_willRenderCanvases_m716439881 (); extern "C" void Canvas_remove_willRenderCanvases_m158291336 (); extern "C" void Canvas_get_renderMode_m3669121200 (); extern "C" void Canvas_get_isRootCanvas_m4030632706 (); extern "C" void Canvas_get_worldCamera_m2621449230 (); extern "C" void Canvas_get_scaleFactor_m1187077271 (); extern "C" void Canvas_set_scaleFactor_m2206436828 (); extern "C" void Canvas_get_referencePixelsPerUnit_m3759589197 (); extern "C" void Canvas_set_referencePixelsPerUnit_m1910706966 (); extern "C" void Canvas_get_pixelPerfect_m2847994693 (); extern "C" void Canvas_get_renderOrder_m2295969794 (); extern "C" void Canvas_get_overrideSorting_m3812884636 (); extern "C" void Canvas_set_overrideSorting_m1850487749 (); extern "C" void Canvas_get_sortingOrder_m1274160674 (); extern "C" void Canvas_set_sortingOrder_m1522807655 (); extern "C" void Canvas_get_sortingLayerID_m3425838272 (); extern "C" void Canvas_set_sortingLayerID_m2317502469 (); extern "C" void Canvas_GetDefaultCanvasMaterial_m1655363178 (); extern "C" void Canvas_SendWillRenderCanvases_m1768133093 (); extern "C" void Canvas_ForceUpdateCanvases_m1970133101 (); extern "C" void WillRenderCanvases__ctor_m1509285774 (); extern "C" void WillRenderCanvases_Invoke_m4113031528 (); extern "C" void WillRenderCanvases_BeginInvoke_m205611811 (); extern "C" void WillRenderCanvases_EndInvoke_m2320713886 (); extern "C" void CanvasGroup_get_alpha_m2646612977 (); extern "C" void CanvasGroup_set_alpha_m2140801370 (); extern "C" void CanvasGroup_get_interactable_m2411844645 (); extern "C" void CanvasGroup_get_blocksRaycasts_m1777916261 (); extern "C" void CanvasGroup_get_ignoreParentGroups_m1831887525 (); extern "C" void CanvasGroup_IsRaycastLocationValid_m3946913220 (); extern "C" void CanvasRenderer_SetColor_m3198078515 (); extern "C" void CanvasRenderer_INTERNAL_CALL_SetColor_m2907146764 (); extern "C" void CanvasRenderer_GetColor_m3075393702 (); extern "C" void CanvasRenderer_INTERNAL_CALL_GetColor_m3176368896 (); extern "C" void CanvasRenderer_EnableRectClipping_m896218272 (); extern "C" void CanvasRenderer_INTERNAL_CALL_EnableRectClipping_m105013257 (); extern "C" void CanvasRenderer_DisableRectClipping_m2654388030 (); extern "C" void CanvasRenderer_set_hasPopInstruction_m2112255713 (); extern "C" void CanvasRenderer_get_materialCount_m311942031 (); extern "C" void CanvasRenderer_set_materialCount_m1694897644 (); extern "C" void CanvasRenderer_SetMaterial_m355382012 (); extern "C" void CanvasRenderer_SetMaterial_m1603188579 (); extern "C" void CanvasRenderer_set_popMaterialCount_m589784503 (); extern "C" void CanvasRenderer_SetPopMaterial_m1315408685 (); extern "C" void CanvasRenderer_SetTexture_m137327939 (); extern "C" void CanvasRenderer_SetMesh_m1150548475 (); extern "C" void CanvasRenderer_Clear_m1606508093 (); extern "C" void CanvasRenderer_SplitUIVertexStreams_m4126093916 (); extern "C" void CanvasRenderer_SplitUIVertexStreamsInternal_m987675768 (); extern "C" void CanvasRenderer_SplitIndiciesStreamsInternal_m269466040 (); extern "C" void CanvasRenderer_CreateUIVertexStream_m2702356137 (); extern "C" void CanvasRenderer_CreateUIVertexStreamInternal_m997370835 (); extern "C" void CanvasRenderer_AddUIVertexStream_m1865056747 (); extern "C" void CanvasRenderer_get_cull_m3343855795 (); extern "C" void CanvasRenderer_set_cull_m3433952120 (); extern "C" void CanvasRenderer_get_absoluteDepth_m1613567475 (); extern "C" void CanvasRenderer_get_hasMoved_m1392755130 (); extern "C" void Collider_get_attachedRigidbody_m2821754842 (); extern "C" void Collider2D_get_attachedRigidbody_m2908627162 (); extern "C" void Collision__ctor_m183727591 (); extern "C" void Collision_get_relativeVelocity_m1067992885 (); extern "C" void Collision_get_rigidbody_m1973745126 (); extern "C" void Collision_get_collider_m1325344374 (); extern "C" void Collision_get_transform_m3247945030 (); extern "C" void Collision_get_gameObject_m4245316464 (); extern "C" void Collision_get_contacts_m658316947 (); extern "C" void Collision_GetEnumerator_m218695993 (); extern "C" void Collision_get_impulse_m2182857643 (); extern "C" void Collision_get_impactForceSum_m3741050290 (); extern "C" void Collision_get_frictionForceSum_m3009900454 (); extern "C" void Collision_get_other_m541712697 (); extern "C" void Collision2D__ctor_m3298468565 (); extern "C" void Collision2D_get_enabled_m3761113681 (); extern "C" void Collision2D_get_rigidbody_m4259461250 (); extern "C" void Collision2D_get_collider_m4116040666 (); extern "C" void Collision2D_get_transform_m2182628532 (); extern "C" void Collision2D_get_gameObject_m718845954 (); extern "C" void Collision2D_get_contacts_m4248754423 (); extern "C" void Collision2D_get_relativeVelocity_m2960747782 (); extern "C" void Color__ctor_m2252924356 (); extern "C" void Color__ctor_m103496991 (); extern "C" void Color_ToString_m2277845527 (); extern "C" void Color_GetHashCode_m170503301 (); extern "C" void Color_Equals_m3016668205 (); extern "C" void Color_Lerp_m3494628845 (); extern "C" void Color_get_red_m4288945411 (); extern "C" void Color_get_white_m3038282331 (); extern "C" void Color_get_black_m1687201969 (); extern "C" void Color_get_clear_m2578346879 (); extern "C" void Color_op_Multiply_m204757678 (); extern "C" void Color_op_Implicit_m2638307542 (); extern "C" void Color32__ctor_m576906339 (); extern "C" void Color32_ToString_m909782902 (); extern "C" void Color32_op_Implicit_m3684884838 (); extern "C" void Color32_op_Implicit_m358459656 (); extern "C" void Component__ctor_m4238603388 (); extern "C" void Component_get_transform_m4257140443 (); extern "C" void Component_get_gameObject_m1170635899 (); extern "C" void Component_GetComponent_m936021879 (); extern "C" void Component_GetComponentFastPath_m1455568887 (); extern "C" void Component_GetComponent_m840247168 (); extern "C" void Component_GetComponentInChildren_m680239315 (); extern "C" void Component_GetComponentInChildren_m1899663946 (); extern "C" void Component_GetComponentsInChildren_m1419556996 (); extern "C" void Component_GetComponentsInChildren_m2446525049 (); extern "C" void Component_GetComponentInParent_m1953645192 (); extern "C" void Component_GetComponentsInParent_m345477753 (); extern "C" void Component_GetComponentsInParent_m608460772 (); extern "C" void Component_GetComponents_m2975031400 (); extern "C" void Component_GetComponentsForListInternal_m814665735 (); extern "C" void Component_GetComponents_m3426812285 (); extern "C" void Component_get_tag_m217485006 (); extern "C" void Component_set_tag_m3240989163 (); extern "C" void Component_CompareTag_m305486283 (); extern "C" void Component_SendMessageUpwards_m2772130661 (); extern "C" void Component_SendMessageUpwards_m2473191947 (); extern "C" void Component_SendMessageUpwards_m767712765 (); extern "C" void Component_SendMessageUpwards_m707848499 (); extern "C" void Component_SendMessage_m1163914169 (); extern "C" void Component_SendMessage_m904598583 (); extern "C" void Component_SendMessage_m2359133481 (); extern "C" void Component_SendMessage_m1912331399 (); extern "C" void Component_BroadcastMessage_m3961995854 (); extern "C" void Component_BroadcastMessage_m3546905666 (); extern "C" void Component_BroadcastMessage_m2857110644 (); extern "C" void Component_BroadcastMessage_m1985948636 (); extern "C" void ControllerColliderHit__ctor_m3119252854 (); extern "C" void ControllerColliderHit_get_controller_m4144115758 (); extern "C" void ControllerColliderHit_get_collider_m1024441863 (); extern "C" void ControllerColliderHit_get_rigidbody_m2091369205 (); extern "C" void ControllerColliderHit_get_gameObject_m3516749633 (); extern "C" void ControllerColliderHit_get_transform_m1182304469 (); extern "C" void ControllerColliderHit_get_point_m1436351445 (); extern "C" void ControllerColliderHit_get_normal_m2642806628 (); extern "C" void ControllerColliderHit_get_moveDirection_m3645766003 (); extern "C" void ControllerColliderHit_get_moveLength_m3314200770 (); extern "C" void ControllerColliderHit_get_push_m2385571563 (); extern "C" void ControllerColliderHit_set_push_m1358618172 (); extern "C" void Coroutine__ctor_m3143611649 (); extern "C" void Coroutine_ReleaseCoroutine_m3084231540 (); extern "C" void Coroutine_Finalize_m3970219969 (); extern "C" void CullingGroup_Finalize_m1779710340 (); extern "C" void CullingGroup_Dispose_m3554617051 (); extern "C" void CullingGroup_SendEvents_m1355834984 (); extern "C" void CullingGroup_FinalizerFailure_m4240538940 (); extern "C" void StateChanged__ctor_m3267025420 (); extern "C" void StateChanged_Invoke_m3174530616 (); extern "C" void StateChanged_BeginInvoke_m163021837 (); extern "C" void StateChanged_EndInvoke_m4182061596 (); extern "C" void Debug__cctor_m37515655 (); extern "C" void Debug_get_logger_m275693158 (); extern "C" void Debug_Log_m1731103628 (); extern "C" void Debug_LogError_m4127342994 (); extern "C" void Debug_LogError_m214246398 (); extern "C" void Debug_LogException_m248970745 (); extern "C" void Debug_LogException_m2264672311 (); extern "C" void Debug_LogWarning_m3123317694 (); extern "C" void Debug_LogWarning_m4097176146 (); extern "C" void DebugLogHandler__ctor_m1521597024 (); extern "C" void DebugLogHandler_Internal_Log_m3731237167 (); extern "C" void DebugLogHandler_Internal_LogException_m1007136309 (); extern "C" void DebugLogHandler_LogFormat_m1190453926 (); extern "C" void DebugLogHandler_LogException_m3623531313 (); extern "C" void DisallowMultipleComponent__ctor_m3170514567 (); extern "C" void Display__ctor_m923501527 (); extern "C" void Display__ctor_m3179075037 (); extern "C" void Display__cctor_m2376647350 (); extern "C" void Display_RecreateDisplayList_m581883884 (); extern "C" void Display_FireDisplaysUpdated_m3581134697 (); extern "C" void DisplaysUpdatedDelegate__ctor_m3468699627 (); extern "C" void DisplaysUpdatedDelegate_Invoke_m3958989829 (); extern "C" void DisplaysUpdatedDelegate_BeginInvoke_m3264685798 (); extern "C" void DisplaysUpdatedDelegate_EndInvoke_m3466741627 (); extern "C" void DrivenRectTransformTracker_Add_m3461523141 (); extern "C" void DrivenRectTransformTracker_Clear_m309315364 (); extern "C" void Event__ctor_m1609448063 (); extern "C" void Event__ctor_m66398544 (); extern "C" void Event_Finalize_m2449826179 (); extern "C" void Event_get_mousePosition_m3610425949 (); extern "C" void Event_get_current_m238587645 (); extern "C" void Event_Internal_MakeMasterEventCurrent_m213199903 (); extern "C" void Event_get_isKey_m645126607 (); extern "C" void Event_get_isMouse_m3551276757 (); extern "C" void Event_GetHashCode_m2341647470 (); extern "C" void Event_Equals_m2374615830 (); extern "C" void Event_ToString_m3661517518 (); extern "C" void Event_Init_m3525277126 (); extern "C" void Event_Cleanup_m3160122945 (); extern "C" void Event_get_rawType_m696564524 (); extern "C" void Event_get_type_m2209939250 (); extern "C" void Event_Internal_GetMousePosition_m2054214537 (); extern "C" void Event_get_modifiers_m4020990886 (); extern "C" void Event_get_character_m3663172667 (); extern "C" void Event_get_commandName_m1197792621 (); extern "C" void Event_get_keyCode_m1820698462 (); extern "C" void Event_Internal_SetNativeEvent_m930902932 (); extern "C" void Event_set_displayIndex_m4130090435 (); extern "C" void Event_PopEvent_m2790075015 (); extern "C" void ArgumentCache__ctor_m4004594141 (); extern "C" void ArgumentCache_get_unityObjectArgument_m3221396682 (); extern "C" void ArgumentCache_get_unityObjectArgumentAssemblyTypeName_m2706134059 (); extern "C" void ArgumentCache_get_intArgument_m688472510 (); extern "C" void ArgumentCache_get_floatArgument_m457274527 (); extern "C" void ArgumentCache_get_stringArgument_m621059457 (); extern "C" void ArgumentCache_get_boolArgument_m948935837 (); extern "C" void ArgumentCache_TidyAssemblyTypeName_m705559900 (); extern "C" void ArgumentCache_OnBeforeSerialize_m2323221949 (); extern "C" void ArgumentCache_OnAfterDeserialize_m3764330697 (); extern "C" void BaseInvokableCall__ctor_m2839815662 (); extern "C" void BaseInvokableCall__ctor_m1692884045 (); extern "C" void BaseInvokableCall_AllowInvoke_m2941661095 (); extern "C" void InvokableCall__ctor_m1927467228 (); extern "C" void InvokableCall__ctor_m3567423952 (); extern "C" void InvokableCall_Invoke_m1513455731 (); extern "C" void InvokableCall_Find_m2076119333 (); extern "C" void InvokableCallList__ctor_m2413334847 (); extern "C" void InvokableCallList_AddPersistentInvokableCall_m4220625340 (); extern "C" void InvokableCallList_AddListener_m1356872764 (); extern "C" void InvokableCallList_RemoveListener_m855004700 (); extern "C" void InvokableCallList_ClearPersistent_m1690187553 (); extern "C" void InvokableCallList_Invoke_m575840373 (); extern "C" void PersistentCall__ctor_m3363339247 (); extern "C" void PersistentCall_get_target_m3400889750 (); extern "C" void PersistentCall_get_methodName_m3021973351 (); extern "C" void PersistentCall_get_mode_m1522877562 (); extern "C" void PersistentCall_get_arguments_m1871980514 (); extern "C" void PersistentCall_IsValid_m1010437221 (); extern "C" void PersistentCall_GetRuntimeCall_m3912860610 (); extern "C" void PersistentCall_GetObjectCall_m1043326447 (); extern "C" void PersistentCallGroup__ctor_m3119615256 (); extern "C" void PersistentCallGroup_Initialize_m3484159567 (); extern "C" void UnityAction__ctor_m4130179243 (); extern "C" void UnityAction_Invoke_m1979593925 (); extern "C" void UnityAction_BeginInvoke_m3541271198 (); extern "C" void UnityAction_EndInvoke_m794691643 (); extern "C" void UnityEvent__ctor_m1715209183 (); extern "C" void UnityEvent_AddListener_m4099140869 (); extern "C" void UnityEvent_FindMethod_Impl_m2897220818 (); extern "C" void UnityEvent_GetDelegate_m2043983920 (); extern "C" void UnityEvent_GetDelegate_m1012258596 (); extern "C" void UnityEvent_Invoke_m2672830205 (); extern "C" void UnityEventBase__ctor_m199506446 (); extern "C" void UnityEventBase_UnityEngine_ISerializationCallbackReceiver_OnBeforeSerialize_m1699382396 (); extern "C" void UnityEventBase_UnityEngine_ISerializationCallbackReceiver_OnAfterDeserialize_m1605173738 (); extern "C" void UnityEventBase_FindMethod_m1166071979 (); extern "C" void UnityEventBase_FindMethod_m113598831 (); extern "C" void UnityEventBase_DirtyPersistentCalls_m1636785090 (); extern "C" void UnityEventBase_RebuildPersistentCallsIfNeeded_m4147202091 (); extern "C" void UnityEventBase_AddCall_m1246572149 (); extern "C" void UnityEventBase_RemoveListener_m276725997 (); extern "C" void UnityEventBase_Invoke_m3681078084 (); extern "C" void UnityEventBase_ToString_m249191135 (); extern "C" void UnityEventBase_GetValidMethodInfo_m2325301202 (); extern "C" void ExecuteInEditMode__ctor_m1394231890 (); extern "C" void Playable__ctor_m2241556995 (); extern "C" void Playable__ctor_m3752126010 (); extern "C" void Playable_Dispose_m2747727607 (); extern "C" void Playable_GetUniqueIDInternal_m1016415712 (); extern "C" void Playable_Connect_m622693985 (); extern "C" void Playable_Connect_m1578187905 (); extern "C" void Playable_Disconnect_m3811503323 (); extern "C" void Playable_ReleaseEnginePlayable_m2094169144 (); extern "C" void Playable_InstantiateEnginePlayable_m3931021595 (); extern "C" void Playable_GenerateUniqueId_m3980506242 (); extern "C" void Playable_SetInputWeightInternal_m3751861498 (); extern "C" void Playable_GetInputWeightInternal_m2277506695 (); extern "C" void Playable_get_time_m4261299130 (); extern "C" void Playable_set_time_m4095539287 (); extern "C" void Playable_get_state_m3392280896 (); extern "C" void Playable_set_state_m2851443923 (); extern "C" void Playable_ConnectInternal_m3467855684 (); extern "C" void Playable_DisconnectInternal_m216904862 (); extern "C" void Playable_GetInput_m777009268 (); extern "C" void Playable_GetInputs_m1899129588 (); extern "C" void Playable_get_inputCount_m3038792623 (); extern "C" void Playable_get_outputCount_m2666149542 (); extern "C" void Playable_ClearInputs_m4141811767 (); extern "C" void Playable_GetOutput_m1666786747 (); extern "C" void Playable_GetOutputs_m3506315017 (); extern "C" void Playable_GetInputsInternal_m2169096151 (); extern "C" void Playable_GetOutputsInternal_m891872506 (); extern "C" void Playable_Finalize_m175426431 (); extern "C" void Playable_Dispose_m2255939968 (); extern "C" void Playable_Equals_m1149042830 (); extern "C" void Playable_GetHashCode_m3165087730 (); extern "C" void Playable_CompareIntPtr_m2113594311 (); extern "C" void Playable_IsNativePlayableAlive_m1365031800 (); extern "C" void Playable_CheckPlayableValidity_m2318405566 (); extern "C" void Playable_CheckInputBounds_m1883207375 (); extern "C" void Playable_CheckInputBounds_m3596125390 (); extern "C" void Playable_GetInputWeight_m837530218 (); extern "C" void Playable_SetInputWeight_m2698917277 (); extern "C" void Playable_GetInputs_m1527871507 (); extern "C" void Playable_GetOutputs_m3459436598 (); extern "C" void Playable_PrepareFrame_m497491591 (); extern "C" void Playable_ProcessFrame_m2039333501 (); extern "C" void Playable_OnSetTime_m3177236154 (); extern "C" void Playable_OnSetPlayState_m3539986029 (); extern "C" void Playable_op_Equality_m3091846835 (); extern "C" void Playable_op_Inequality_m3181167342 (); extern "C" void Playable_op_Implicit_m2513159357 (); extern "C" void Font_add_textureRebuilt_m3323945916 (); extern "C" void Font_remove_textureRebuilt_m2804643593 (); extern "C" void Font_get_material_m2407307367 (); extern "C" void Font_HasCharacter_m2480770466 (); extern "C" void Font_InvokeTextureRebuilt_Internal_m1357223658 (); extern "C" void Font_get_dynamic_m3880144684 (); extern "C" void Font_get_fontSize_m3025810271 (); extern "C" void FontTextureRebuildCallback__ctor_m2909762077 (); extern "C" void FontTextureRebuildCallback_Invoke_m3507488951 (); extern "C" void FontTextureRebuildCallback_BeginInvoke_m2984345076 (); extern "C" void FontTextureRebuildCallback_EndInvoke_m2078440109 (); extern "C" void GameObject__ctor_m3920833606 (); extern "C" void GameObject_GetComponent_m1004814461 (); extern "C" void GameObject_GetComponentFastPath_m2905716663 (); extern "C" void GameObject_GetComponentInChildren_m1490154500 (); extern "C" void GameObject_GetComponentInParent_m434474382 (); extern "C" void GameObject_GetComponents_m1126578334 (); extern "C" void GameObject_GetComponentsInChildren_m305836803 (); extern "C" void GameObject_GetComponentsInParent_m521317102 (); extern "C" void GameObject_GetComponentsInternal_m181453881 (); extern "C" void GameObject_get_transform_m1278640159 (); extern "C" void GameObject_get_layer_m1648550306 (); extern "C" void GameObject_set_layer_m1872241535 (); extern "C" void GameObject_SetActive_m3538205401 (); extern "C" void GameObject_get_activeSelf_m3858025161 (); extern "C" void GameObject_get_activeInHierarchy_m612450965 (); extern "C" void GameObject_get_tag_m211612200 (); extern "C" void GameObject_set_tag_m859036203 (); extern "C" void GameObject_CompareTag_m3153977471 (); extern "C" void GameObject_SendMessage_m423373689 (); extern "C" void GameObject_Internal_AddComponentWithType_m2266369934 (); extern "C" void GameObject_AddComponent_m2208780168 (); extern "C" void GameObject_Internal_CreateGameObject_m2521325981 (); extern "C" void Gradient__ctor_m3068495933 (); extern "C" void Gradient_Init_m2544372343 (); extern "C" void Gradient_Cleanup_m850820223 (); extern "C" void Gradient_Finalize_m3875885829 (); extern "C" void GUI__cctor_m1345698031 (); extern "C" void GUI_set_nextScrollStepTime_m3820512796 (); extern "C" void GUI_set_skin_m1213959601 (); extern "C" void GUI_get_skin_m4001454842 (); extern "C" void GUI_DoSetSkin_m800823745 (); extern "C" void GUI_CallWindowDelegate_m2260338804 (); extern "C" void GUI_set_changed_m727947722 (); extern "C" void ScrollViewState__ctor_m739544590 (); extern "C" void WindowFunction__ctor_m732638321 (); extern "C" void WindowFunction_Invoke_m2798584028 (); extern "C" void WindowFunction_BeginInvoke_m526788181 (); extern "C" void WindowFunction_EndInvoke_m203456257 (); extern "C" void GUIContent__ctor_m923375087 (); extern "C" void GUIContent__ctor_m174155123 (); extern "C" void GUIContent__cctor_m2372727710 (); extern "C" void GUIContent_Temp_m2857440895 (); extern "C" void GUIContent_Temp_m3826417963 (); extern "C" void GUIContent_ClearStaticCache_m2388858588 (); extern "C" void GUILayer_HitTest_m3356120918 (); extern "C" void GUILayer_INTERNAL_CALL_HitTest_m4210766818 (); extern "C" void GUILayout_Width_m2259621411 (); extern "C" void GUILayout_Height_m3774802884 (); extern "C" void GUILayoutEntry__ctor_m3586081151 (); extern "C" void GUILayoutEntry__cctor_m4107715149 (); extern "C" void GUILayoutEntry_get_style_m3507897988 (); extern "C" void GUILayoutEntry_set_style_m706118245 (); extern "C" void GUILayoutEntry_get_margin_m3705107036 (); extern "C" void GUILayoutEntry_CalcWidth_m3370167343 (); extern "C" void GUILayoutEntry_CalcHeight_m1899786880 (); extern "C" void GUILayoutEntry_SetHorizontal_m3810336940 (); extern "C" void GUILayoutEntry_SetVertical_m880890586 (); extern "C" void GUILayoutEntry_ApplyStyleSettings_m937804029 (); extern "C" void GUILayoutEntry_ApplyOptions_m2425801465 (); extern "C" void GUILayoutEntry_ToString_m4021956595 (); extern "C" void GUILayoutGroup__ctor_m3393996275 (); extern "C" void GUILayoutGroup_get_margin_m1931560361 (); extern "C" void GUILayoutGroup_ApplyOptions_m743820812 (); extern "C" void GUILayoutGroup_ApplyStyleSettings_m1024249546 (); extern "C" void GUILayoutGroup_ResetCursor_m982464342 (); extern "C" void GUILayoutGroup_CalcWidth_m1234746178 (); extern "C" void GUILayoutGroup_SetHorizontal_m985132857 (); extern "C" void GUILayoutGroup_CalcHeight_m126240205 (); extern "C" void GUILayoutGroup_SetVertical_m967336103 (); extern "C" void GUILayoutGroup_ToString_m2567598720 (); extern "C" void GUILayoutOption__ctor_m573459815 (); extern "C" void GUILayoutUtility__cctor_m1548085895 (); extern "C" void GUILayoutUtility_SelectIDList_m801008209 (); extern "C" void GUILayoutUtility_Begin_m2012081982 (); extern "C" void GUILayoutUtility_BeginWindow_m4017651538 (); extern "C" void GUILayoutUtility_Layout_m1143185416 (); extern "C" void GUILayoutUtility_LayoutFromEditorWindow_m3347777775 (); extern "C" void GUILayoutUtility_LayoutFreeGroup_m2250873692 (); extern "C" void GUILayoutUtility_LayoutSingleGroup_m1841651392 (); extern "C" void GUILayoutUtility_get_spaceStyle_m3628948340 (); extern "C" void GUILayoutUtility_Internal_GetWindowRect_m1168223211 (); extern "C" void GUILayoutUtility_INTERNAL_CALL_Internal_GetWindowRect_m1468033111 (); extern "C" void GUILayoutUtility_Internal_MoveWindow_m2191818611 (); extern "C" void GUILayoutUtility_INTERNAL_CALL_Internal_MoveWindow_m115257690 (); extern "C" void LayoutCache__ctor_m3196944573 (); extern "C" void GUIScrollGroup__ctor_m2652149846 (); extern "C" void GUIScrollGroup_CalcWidth_m2187011109 (); extern "C" void GUIScrollGroup_SetHorizontal_m3329305078 (); extern "C" void GUIScrollGroup_CalcHeight_m3876649290 (); extern "C" void GUIScrollGroup_SetVertical_m3472565924 (); extern "C" void GUISettings__ctor_m1563013787 (); extern "C" void GUISettings_get_cursorColor_m3617656164 (); extern "C" void GUISettings_get_cursorFlashSpeed_m3510903059 (); extern "C" void GUISettings_get_selectionColor_m3945610946 (); extern "C" void GUISettings_Internal_GetCursorFlashSpeed_m2094683006 (); extern "C" void GUISkin__ctor_m3819836417 (); extern "C" void GUISkin_OnEnable_m3659769829 (); extern "C" void GUISkin_get_font_m4064925714 (); extern "C" void GUISkin_set_font_m2298219977 (); extern "C" void GUISkin_get_box_m3284280323 (); extern "C" void GUISkin_set_box_m35439328 (); extern "C" void GUISkin_get_label_m3553254700 (); extern "C" void GUISkin_set_label_m4062710537 (); extern "C" void GUISkin_get_textField_m3831281733 (); extern "C" void GUISkin_set_textField_m2041526946 (); extern "C" void GUISkin_get_textArea_m4283710532 (); extern "C" void GUISkin_set_textArea_m1255688077 (); extern "C" void GUISkin_get_button_m3628017756 (); extern "C" void GUISkin_set_button_m2794546469 (); extern "C" void GUISkin_get_toggle_m3519495166 (); extern "C" void GUISkin_set_toggle_m3743241159 (); extern "C" void GUISkin_get_window_m3620644250 (); extern "C" void GUISkin_set_window_m93050723 (); extern "C" void GUISkin_get_horizontalSlider_m1556961103 (); extern "C" void GUISkin_set_horizontalSlider_m2400811288 (); extern "C" void GUISkin_get_horizontalSliderThumb_m561455017 (); extern "C" void GUISkin_set_horizontalSliderThumb_m3534756102 (); extern "C" void GUISkin_get_verticalSlider_m3077048033 (); extern "C" void GUISkin_set_verticalSlider_m2007128362 (); extern "C" void GUISkin_get_verticalSliderThumb_m4032125783 (); extern "C" void GUISkin_set_verticalSliderThumb_m1533703220 (); extern "C" void GUISkin_get_horizontalScrollbar_m4254994650 (); extern "C" void GUISkin_set_horizontalScrollbar_m2358004279 (); extern "C" void GUISkin_get_horizontalScrollbarThumb_m543401214 (); extern "C" void GUISkin_set_horizontalScrollbarThumb_m1178477383 (); extern "C" void GUISkin_get_horizontalScrollbarLeftButton_m1723095443 (); extern "C" void GUISkin_set_horizontalScrollbarLeftButton_m1050046448 (); extern "C" void GUISkin_get_horizontalScrollbarRightButton_m3218269270 (); extern "C" void GUISkin_set_horizontalScrollbarRightButton_m75365919 (); extern "C" void GUISkin_get_verticalScrollbar_m3029557256 (); extern "C" void GUISkin_set_verticalScrollbar_m3705641189 (); extern "C" void GUISkin_get_verticalScrollbarThumb_m2548474512 (); extern "C" void GUISkin_set_verticalScrollbarThumb_m1958138201 (); extern "C" void GUISkin_get_verticalScrollbarUpButton_m2399801237 (); extern "C" void GUISkin_set_verticalScrollbarUpButton_m3911333362 (); extern "C" void GUISkin_get_verticalScrollbarDownButton_m1448263900 (); extern "C" void GUISkin_set_verticalScrollbarDownButton_m138386233 (); extern "C" void GUISkin_get_scrollView_m3339613116 (); extern "C" void GUISkin_set_scrollView_m4285810053 (); extern "C" void GUISkin_get_customStyles_m816658303 (); extern "C" void GUISkin_set_customStyles_m1092778308 (); extern "C" void GUISkin_get_settings_m3861471971 (); extern "C" void GUISkin_get_error_m2137471808 (); extern "C" void GUISkin_Apply_m3870939405 (); extern "C" void GUISkin_BuildStyleCache_m504236350 (); extern "C" void GUISkin_GetStyle_m2474694726 (); extern "C" void GUISkin_FindStyle_m2067600169 (); extern "C" void GUISkin_MakeCurrent_m174297994 (); extern "C" void GUISkin_GetEnumerator_m1290986451 (); extern "C" void SkinChangedDelegate__ctor_m1472037998 (); extern "C" void SkinChangedDelegate_Invoke_m3141787208 (); extern "C" void SkinChangedDelegate_BeginInvoke_m1122457923 (); extern "C" void SkinChangedDelegate_EndInvoke_m3094371710 (); extern "C" void GUIStyle__ctor_m478034167 (); extern "C" void GUIStyle__ctor_m584655914 (); extern "C" void GUIStyle__cctor_m1452061078 (); extern "C" void GUIStyle_Finalize_m3401789451 (); extern "C" void GUIStyle_InternalOnAfterDeserialize_m1012732492 (); extern "C" void GUIStyle_get_normal_m42729964 (); extern "C" void GUIStyle_set_normal_m3590268413 (); extern "C" void GUIStyle_get_hover_m3685402873 (); extern "C" void GUIStyle_set_hover_m660294266 (); extern "C" void GUIStyle_get_active_m1150072907 (); extern "C" void GUIStyle_set_active_m79497342 (); extern "C" void GUIStyle_get_onNormal_m3672490987 (); extern "C" void GUIStyle_set_onNormal_m3860399646 (); extern "C" void GUIStyle_get_onHover_m3525397274 (); extern "C" void GUIStyle_set_onHover_m946102841 (); extern "C" void GUIStyle_get_onActive_m484866634 (); extern "C" void GUIStyle_set_onActive_m349628575 (); extern "C" void GUIStyle_get_focused_m2717215092 (); extern "C" void GUIStyle_set_focused_m1026899231 (); extern "C" void GUIStyle_get_onFocused_m3570657109 (); extern "C" void GUIStyle_set_onFocused_m811032862 (); extern "C" void GUIStyle_get_border_m1826068707 (); extern "C" void GUIStyle_set_border_m3254356648 (); extern "C" void GUIStyle_get_margin_m4279849445 (); extern "C" void GUIStyle_set_margin_m698201642 (); extern "C" void GUIStyle_get_padding_m3072941276 (); extern "C" void GUIStyle_set_padding_m458170651 (); extern "C" void GUIStyle_get_overflow_m2862114233 (); extern "C" void GUIStyle_set_overflow_m3029326398 (); extern "C" void GUIStyle_get_clipOffset_m3134687732 (); extern "C" void GUIStyle_set_clipOffset_m2780638285 (); extern "C" void GUIStyle_get_font_m1061814606 (); extern "C" void GUIStyle_set_font_m3587533075 (); extern "C" void GUIStyle_get_lineHeight_m3977255453 (); extern "C" void GUIStyle_Internal_Draw_m3671619263 (); extern "C" void GUIStyle_Draw_m2853558582 (); extern "C" void GUIStyle_Draw_m645175538 (); extern "C" void GUIStyle_Draw_m1301423966 (); extern "C" void GUIStyle_Draw_m860139579 (); extern "C" void GUIStyle_Draw_m2994577084 (); extern "C" void GUIStyle_Draw_m489809217 (); extern "C" void GUIStyle_DrawCursor_m4169664613 (); extern "C" void GUIStyle_DrawWithTextSelection_m469195656 (); extern "C" void GUIStyle_DrawWithTextSelection_m984171349 (); extern "C" void GUIStyle_get_none_m2767659632 (); extern "C" void GUIStyle_GetCursorPixelPosition_m296157110 (); extern "C" void GUIStyle_GetCursorStringIndex_m3223359742 (); extern "C" void GUIStyle_GetNumCharactersThatFitWithinWidth_m3286030319 (); extern "C" void GUIStyle_CalcSize_m2299809257 (); extern "C" void GUIStyle_CalcSizeWithConstraints_m3659418291 (); extern "C" void GUIStyle_CalcScreenSize_m1487928496 (); extern "C" void GUIStyle_CalcHeight_m3565424293 (); extern "C" void GUIStyle_get_isHeightDependantOnWidth_m1959928889 (); extern "C" void GUIStyle_CalcMinMaxWidth_m421008639 (); extern "C" void GUIStyle_ToString_m2491778876 (); extern "C" void GUIStyle_Init_m3292093053 (); extern "C" void GUIStyle_InitCopy_m3063430789 (); extern "C" void GUIStyle_Cleanup_m2498094777 (); extern "C" void GUIStyle_get_name_m4046186628 (); extern "C" void GUIStyle_set_name_m4125925261 (); extern "C" void GUIStyle_GetStyleStatePtr_m2550872619 (); extern "C" void GUIStyle_AssignStyleState_m4030196091 (); extern "C" void GUIStyle_GetRectOffsetPtr_m1931607252 (); extern "C" void GUIStyle_AssignRectOffset_m519705394 (); extern "C" void GUIStyle_get_imagePosition_m3876152522 (); extern "C" void GUIStyle_set_imagePosition_m1689669769 (); extern "C" void GUIStyle_get_alignment_m1533628953 (); extern "C" void GUIStyle_set_alignment_m4252900834 (); extern "C" void GUIStyle_get_wordWrap_m3830782768 (); extern "C" void GUIStyle_set_wordWrap_m3800572853 (); extern "C" void GUIStyle_get_clipping_m2044798529 (); extern "C" void GUIStyle_set_clipping_m771351942 (); extern "C" void GUIStyle_get_contentOffset_m2092220605 (); extern "C" void GUIStyle_set_contentOffset_m3385864054 (); extern "C" void GUIStyle_INTERNAL_get_contentOffset_m2078390432 (); extern "C" void GUIStyle_INTERNAL_set_contentOffset_m3891089324 (); extern "C" void GUIStyle_get_Internal_clipOffset_m4123163318 (); extern "C" void GUIStyle_set_Internal_clipOffset_m411599389 (); extern "C" void GUIStyle_INTERNAL_get_Internal_clipOffset_m3417369433 (); extern "C" void GUIStyle_INTERNAL_set_Internal_clipOffset_m188352869 (); extern "C" void GUIStyle_get_fixedWidth_m3249098964 (); extern "C" void GUIStyle_set_fixedWidth_m2486234607 (); extern "C" void GUIStyle_get_fixedHeight_m2441634427 (); extern "C" void GUIStyle_set_fixedHeight_m2209877368 (); extern "C" void GUIStyle_get_stretchWidth_m38609341 (); extern "C" void GUIStyle_set_stretchWidth_m829487234 (); extern "C" void GUIStyle_get_stretchHeight_m1700703922 (); extern "C" void GUIStyle_set_stretchHeight_m703419995 (); extern "C" void GUIStyle_Internal_GetLineHeight_m4224806028 (); extern "C" void GUIStyle_SetFontInternal_m2859258365 (); extern "C" void GUIStyle_GetFontInternalDuringLoadingThread_m1458608761 (); extern "C" void GUIStyle_GetFontInternal_m2928804526 (); extern "C" void GUIStyle_get_fontSize_m2938276678 (); extern "C" void GUIStyle_set_fontSize_m3621764235 (); extern "C" void GUIStyle_get_fontStyle_m3314019014 (); extern "C" void GUIStyle_set_fontStyle_m3298083597 (); extern "C" void GUIStyle_get_richText_m1558667173 (); extern "C" void GUIStyle_set_richText_m1293612906 (); extern "C" void GUIStyle_Internal_Draw_m3365779187 (); extern "C" void GUIStyle_Internal_Draw2_m2706374407 (); extern "C" void GUIStyle_INTERNAL_CALL_Internal_Draw2_m1512749466 (); extern "C" void GUIStyle_Internal_DrawPrefixLabel_m1343381847 (); extern "C" void GUIStyle_INTERNAL_CALL_Internal_DrawPrefixLabel_m3654921866 (); extern "C" void GUIStyle_Internal_GetCursorFlashOffset_m3106442082 (); extern "C" void GUIStyle_Internal_DrawCursor_m496261262 (); extern "C" void GUIStyle_INTERNAL_CALL_Internal_DrawCursor_m330118499 (); extern "C" void GUIStyle_Internal_DrawWithTextSelection_m538670273 (); extern "C" void GUIStyle_SetDefaultFont_m1041826325 (); extern "C" void GUIStyle_Internal_GetCursorPixelPosition_m336331745 (); extern "C" void GUIStyle_INTERNAL_CALL_Internal_GetCursorPixelPosition_m2602567800 (); extern "C" void GUIStyle_Internal_GetCursorStringIndex_m1275963970 (); extern "C" void GUIStyle_INTERNAL_CALL_Internal_GetCursorStringIndex_m3457179887 (); extern "C" void GUIStyle_Internal_GetNumCharactersThatFitWithinWidth_m470425907 (); extern "C" void GUIStyle_Internal_CalcSize_m1389308622 (); extern "C" void GUIStyle_Internal_CalcSizeWithConstraints_m484790978 (); extern "C" void GUIStyle_INTERNAL_CALL_Internal_CalcSizeWithConstraints_m2048982689 (); extern "C" void GUIStyle_Internal_CalcHeight_m3448302985 (); extern "C" void GUIStyle_Internal_CalcMinMaxWidth_m1670371175 (); extern "C" void GUIStyle_op_Implicit_m169215436 (); extern "C" void GUIStyleState__ctor_m2789776190 (); extern "C" void GUIStyleState__ctor_m1478971583 (); extern "C" void GUIStyleState_ProduceGUIStyleStateFromDeserialization_m243465942 (); extern "C" void GUIStyleState_GetGUIStyleState_m511242685 (); extern "C" void GUIStyleState_Finalize_m2707805284 (); extern "C" void GUIStyleState_Init_m872813398 (); extern "C" void GUIStyleState_Cleanup_m3584086848 (); extern "C" void GUIStyleState_GetBackgroundInternalFromDeserialization_m2608056493 (); extern "C" void GUIStyleState_GetBackgroundInternal_m2898492250 (); extern "C" void GUIStyleState_set_textColor_m3058467057 (); extern "C" void GUIStyleState_INTERNAL_set_textColor_m2711899875 (); extern "C" void GUITargetAttribute_GetGUITargetAttrValue_m1884776752 (); extern "C" void GUIUtility__cctor_m2712534225 (); extern "C" void GUIUtility_get_pixelsPerPoint_m2351352349 (); extern "C" void GUIUtility_get_hotControl_m4135893409 (); extern "C" void GUIUtility_GetDefaultSkin_m3151786562 (); extern "C" void GUIUtility_BeginGUI_m1799121707 (); extern "C" void GUIUtility_EndGUI_m1069008217 (); extern "C" void GUIUtility_EndGUIFromException_m1739426121 (); extern "C" void GUIUtility_CheckOnGUI_m640002012 (); extern "C" void GUIUtility_Internal_GetPixelsPerPoint_m4247925832 (); extern "C" void GUIUtility_Internal_GetHotControl_m1758149964 (); extern "C" void GUIUtility_get_keyboardControl_m1277835431 (); extern "C" void GUIUtility_get_systemCopyBuffer_m1467578008 (); extern "C" void GUIUtility_set_systemCopyBuffer_m2088074937 (); extern "C" void GUIUtility_Internal_GetDefaultSkin_m1795114979 (); extern "C" void GUIUtility_Internal_ExitGUI_m725832131 (); extern "C" void GUIUtility_Internal_GetGUIDepth_m2619692036 (); extern "C" void HostData__ctor_m2522227771 (); extern "C" void HostData_get_useNat_m4254429010 (); extern "C" void HostData_set_useNat_m2634285015 (); extern "C" void HostData_get_gameType_m875859009 (); extern "C" void HostData_set_gameType_m1771624304 (); extern "C" void HostData_get_gameName_m681830226 (); extern "C" void HostData_set_gameName_m938459135 (); extern "C" void HostData_get_connectedPlayers_m3966863803 (); extern "C" void HostData_set_connectedPlayers_m3058270080 (); extern "C" void HostData_get_playerLimit_m2278605994 (); extern "C" void HostData_set_playerLimit_m957940103 (); extern "C" void HostData_get_ip_m3205883706 (); extern "C" void HostData_set_ip_m3644075347 (); extern "C" void HostData_get_port_m3377460051 (); extern "C" void HostData_set_port_m2810254104 (); extern "C" void HostData_get_passwordProtected_m255763581 (); extern "C" void HostData_set_passwordProtected_m4099253222 (); extern "C" void HostData_get_comment_m2806883628 (); extern "C" void HostData_set_comment_m3861418087 (); extern "C" void HostData_get_guid_m4094499646 (); extern "C" void HostData_set_guid_m3576769299 (); extern "C" void HumanBone_get_boneName_m4281149553 (); extern "C" void HumanBone_set_boneName_m2758161818 (); extern "C" void HumanBone_get_humanName_m1702517944 (); extern "C" void HumanBone_set_humanName_m1186126593 (); extern "C" void IL2CPPStructAlignmentAttribute__ctor_m55581643 (); extern "C" void Input__cctor_m1327041086 (); extern "C" void Input_GetAxis_m2027668530 (); extern "C" void Input_GetAxisRaw_m1900207208 (); extern "C" void Input_GetButtonDown_m1879002085 (); extern "C" void Input_GetMouseButton_m4080958081 (); extern "C" void Input_GetMouseButtonDown_m2031691843 (); extern "C" void Input_GetMouseButtonUp_m2588144188 (); extern "C" void Input_get_mousePosition_m4020233228 (); extern "C" void Input_INTERNAL_get_mousePosition_m4008828427 (); extern "C" void Input_get_mouseScrollDelta_m3050122505 (); extern "C" void Input_INTERNAL_get_mouseScrollDelta_m2726147504 (); extern "C" void Input_get_mousePresent_m3235491246 (); extern "C" void Input_get_acceleration_m3697865796 (); extern "C" void Input_INTERNAL_get_acceleration_m3372612331 (); extern "C" void Input_GetTouch_m2282421092 (); extern "C" void Input_get_touchCount_m1430909390 (); extern "C" void Input_get_touchSupported_m634162567 (); extern "C" void Input_set_imeCompositionMode_m1719849947 (); extern "C" void Input_get_compositionString_m1541052002 (); extern "C" void Input_set_compositionCursorPos_m3225375732 (); extern "C" void Input_INTERNAL_set_compositionCursorPos_m1084763314 (); extern "C" void DefaultValueAttribute__ctor_m1665393712 (); extern "C" void DefaultValueAttribute_get_Value_m1575119971 (); extern "C" void DefaultValueAttribute_Equals_m1990537309 (); extern "C" void DefaultValueAttribute_GetHashCode_m3284653761 (); extern "C" void ExcludeFromDocsAttribute__ctor_m623077387 (); extern "C" void ADBannerView__cctor_m2737897525 (); extern "C" void ADBannerView_Native_DestroyBanner_m3588853962 (); extern "C" void ADBannerView_Finalize_m2140033770 (); extern "C" void ADBannerView_FireBannerWasClicked_m3637402988 (); extern "C" void ADBannerView_FireBannerWasLoaded_m3273736514 (); extern "C" void ADBannerView_FireBannerFailedToLoad_m1790847436 (); extern "C" void BannerFailedToLoadDelegate__ctor_m2629571602 (); extern "C" void BannerFailedToLoadDelegate_Invoke_m3262427884 (); extern "C" void BannerFailedToLoadDelegate_BeginInvoke_m1073531935 (); extern "C" void BannerFailedToLoadDelegate_EndInvoke_m3595591458 (); extern "C" void BannerWasClickedDelegate__ctor_m1483041906 (); extern "C" void BannerWasClickedDelegate_Invoke_m1164690252 (); extern "C" void BannerWasClickedDelegate_BeginInvoke_m2463719615 (); extern "C" void BannerWasClickedDelegate_EndInvoke_m2721376130 (); extern "C" void BannerWasLoadedDelegate__ctor_m74826402 (); extern "C" void BannerWasLoadedDelegate_Invoke_m3949163900 (); extern "C" void BannerWasLoadedDelegate_BeginInvoke_m2489699591 (); extern "C" void BannerWasLoadedDelegate_EndInvoke_m3402094002 (); extern "C" void ADInterstitialAd__cctor_m1224608307 (); extern "C" void ADInterstitialAd_Native_DestroyInterstitial_m1874896972 (); extern "C" void ADInterstitialAd_Finalize_m3863008616 (); extern "C" void ADInterstitialAd_FireInterstitialWasLoaded_m1452242756 (); extern "C" void ADInterstitialAd_FireInterstitialWasViewed_m802485635 (); extern "C" void InterstitialWasLoadedDelegate__ctor_m2439394720 (); extern "C" void InterstitialWasLoadedDelegate_Invoke_m2428938746 (); extern "C" void InterstitialWasLoadedDelegate_BeginInvoke_m1425628105 (); extern "C" void InterstitialWasLoadedDelegate_EndInvoke_m2339731376 (); extern "C" void InterstitialWasViewedDelegate__ctor_m2752017695 (); extern "C" void InterstitialWasViewedDelegate_Invoke_m3038628409 (); extern "C" void InterstitialWasViewedDelegate_BeginInvoke_m3141305002 (); extern "C" void InterstitialWasViewedDelegate_EndInvoke_m971591343 (); extern "C" void LocalNotification__ctor_m2361357092 (); extern "C" void LocalNotification__cctor_m4000496905 (); extern "C" void LocalNotification_GetFireDate_m3226659871 (); extern "C" void LocalNotification_SetFireDate_m1553477818 (); extern "C" void LocalNotification_get_fireDate_m2185968852 (); extern "C" void LocalNotification_set_fireDate_m3705017239 (); extern "C" void LocalNotification_get_timeZone_m2940284639 (); extern "C" void LocalNotification_set_timeZone_m2670784108 (); extern "C" void LocalNotification_get_repeatInterval_m2938542676 (); extern "C" void LocalNotification_set_repeatInterval_m2284412131 (); extern "C" void LocalNotification_get_repeatCalendar_m916891826 (); extern "C" void LocalNotification_set_repeatCalendar_m599340503 (); extern "C" void LocalNotification_get_alertBody_m3216658234 (); extern "C" void LocalNotification_set_alertBody_m3334455103 (); extern "C" void LocalNotification_get_alertAction_m4064597262 (); extern "C" void LocalNotification_set_alertAction_m860676139 (); extern "C" void LocalNotification_get_hasAction_m3802604239 (); extern "C" void LocalNotification_set_hasAction_m3331895596 (); extern "C" void LocalNotification_get_alertLaunchImage_m3685756786 (); extern "C" void LocalNotification_set_alertLaunchImage_m2289744825 (); extern "C" void LocalNotification_get_applicationIconBadgeNumber_m598051564 (); extern "C" void LocalNotification_set_applicationIconBadgeNumber_m4106546993 (); extern "C" void LocalNotification_get_soundName_m2126669654 (); extern "C" void LocalNotification_set_soundName_m870364323 (); extern "C" void LocalNotification_get_defaultSoundName_m2358493375 (); extern "C" void LocalNotification_get_userInfo_m4128471802 (); extern "C" void LocalNotification_set_userInfo_m3850714959 (); extern "C" void LocalNotification_Destroy_m3155596668 (); extern "C" void LocalNotification_Finalize_m22293182 (); extern "C" void LocalNotification_InitWrapper_m910277669 (); extern "C" void RemoteNotification__ctor_m56993883 (); extern "C" void RemoteNotification_get_alertBody_m3725360779 (); extern "C" void RemoteNotification_get_hasAction_m2262891258 (); extern "C" void RemoteNotification_get_applicationIconBadgeNumber_m1135788693 (); extern "C" void RemoteNotification_get_soundName_m2635372199 (); extern "C" void RemoteNotification_get_userInfo_m4136631987 (); extern "C" void RemoteNotification_Destroy_m570710259 (); extern "C" void RemoteNotification_Finalize_m1495193127 (); extern "C" void Keyframe__ctor_m2655645489 (); extern "C" void Keyframe__ctor_m3412708539 (); extern "C" void Keyframe_get_time_m1367974951 (); extern "C" void Keyframe_set_time_m2674731900 (); extern "C" void Keyframe_get_value_m1003136441 (); extern "C" void Keyframe_set_value_m2735107322 (); extern "C" void Keyframe_get_inTangent_m2236973672 (); extern "C" void Keyframe_set_inTangent_m1264152747 (); extern "C" void Keyframe_get_outTangent_m2520753969 (); extern "C" void Keyframe_set_outTangent_m4071134898 (); extern "C" void Keyframe_get_tangentMode_m1245220572 (); extern "C" void Keyframe_set_tangentMode_m2444824761 (); extern "C" void LayerMask_op_Implicit_m1595580047 (); extern "C" void LayerMask_op_Implicit_m2608572187 (); extern "C" void Logger__ctor_m654679389 (); extern "C" void Logger_get_logHandler_m2576399569 (); extern "C" void Logger_set_logHandler_m2661029584 (); extern "C" void Logger_get_logEnabled_m3803347955 (); extern "C" void Logger_set_logEnabled_m1919624760 (); extern "C" void Logger_get_filterLogType_m1512373196 (); extern "C" void Logger_set_filterLogType_m3244716167 (); extern "C" void Logger_IsLogTypeAllowed_m3362907658 (); extern "C" void Logger_GetString_m3033796341 (); extern "C" void Logger_Log_m3875808634 (); extern "C" void Logger_Log_m3185878806 (); extern "C" void Logger_LogFormat_m4050017187 (); extern "C" void Logger_LogException_m426775790 (); extern "C" void Material__ctor_m2546967560 (); extern "C" void Material_get_mainTexture_m1012267054 (); extern "C" void Material_GetTexture_m1284113328 (); extern "C" void Material_GetTexture_m3767468771 (); extern "C" void Material_SetFloat_m981710063 (); extern "C" void Material_SetFloat_m170145518 (); extern "C" void Material_SetInt_m2649395040 (); extern "C" void Material_HasProperty_m2077312757 (); extern "C" void Material_HasProperty_m190825214 (); extern "C" void Material_Internal_CreateWithMaterial_m2349411671 (); extern "C" void Material_EnableKeyword_m3802712984 (); extern "C" void Material_DisableKeyword_m572736419 (); extern "C" void Mathf__cctor_m1875403730 (); extern "C" void Mathf_Sin_m2014639246 (); extern "C" void Mathf_Cos_m2060147711 (); extern "C" void Mathf_Sqrt_m3592270478 (); extern "C" void Mathf_Abs_m3641135540 (); extern "C" void Mathf_Min_m2322067385 (); extern "C" void Mathf_Min_m2413438171 (); extern "C" void Mathf_Max_m3923796455 (); extern "C" void Mathf_Max_m2911193737 (); extern "C" void Mathf_Pow_m2793367923 (); extern "C" void Mathf_Log_m2062790663 (); extern "C" void Mathf_Ceil_m3793305609 (); extern "C" void Mathf_Floor_m1715447770 (); extern "C" void Mathf_Round_m2677810712 (); extern "C" void Mathf_CeilToInt_m3621832739 (); extern "C" void Mathf_FloorToInt_m268511322 (); extern "C" void Mathf_RoundToInt_m3163545820 (); extern "C" void Mathf_Sign_m4040614993 (); extern "C" void Mathf_Clamp_m3872743893 (); extern "C" void Mathf_Clamp_m510460741 (); extern "C" void Mathf_Clamp01_m2272733930 (); extern "C" void Mathf_Lerp_m3257777633 (); extern "C" void Mathf_Approximately_m1395529776 (); extern "C" void Mathf_SmoothDamp_m779170481 (); extern "C" void Mathf_Repeat_m3424250200 (); extern "C" void Mathf_InverseLerp_m152689993 (); extern "C" void Matrix4x4_get_Item_m2279862332 (); extern "C" void Matrix4x4_get_Item_m1280478331 (); extern "C" void Matrix4x4_GetHashCode_m4083477721 (); extern "C" void Matrix4x4_Equals_m3534208385 (); extern "C" void Matrix4x4_GetColumn_m786071102 (); extern "C" void Matrix4x4_MultiplyPoint3x4_m2198174902 (); extern "C" void Matrix4x4_ToString_m294134723 (); extern "C" void Mesh__ctor_m2684203808 (); extern "C" void Mesh_Internal_Create_m3749730360 (); extern "C" void Mesh_Clear_m1789068674 (); extern "C" void Mesh_Clear_m90337099 (); extern "C" void Mesh_get_vertices_m3685486174 (); extern "C" void Mesh_SetVertices_m701834806 (); extern "C" void Mesh_SetVerticesInternal_m1274639230 (); extern "C" void Mesh_get_normals_m3396909641 (); extern "C" void Mesh_SetNormals_m2039144779 (); extern "C" void Mesh_SetNormalsInternal_m1710845385 (); extern "C" void Mesh_get_tangents_m3235865682 (); extern "C" void Mesh_SetTangents_m2005345740 (); extern "C" void Mesh_SetTangentsInternal_m763303177 (); extern "C" void Mesh_get_uv_m558008935 (); extern "C" void Mesh_get_uv2_m118417421 (); extern "C" void Mesh_ExtractListData_m2453560898 (); extern "C" void Mesh_SetUVsInternal_m4014622176 (); extern "C" void Mesh_SetUVs_m116216925 (); extern "C" void Mesh_get_colors32_m192356802 (); extern "C" void Mesh_SetColors_m3313707935 (); extern "C" void Mesh_SetColors32Internal_m1830241000 (); extern "C" void Mesh_RecalculateBounds_m3754336742 (); extern "C" void Mesh_SetTriangles_m456382467 (); extern "C" void Mesh_SetTrianglesInternal_m2955775213 (); extern "C" void Mesh_GetIndices_m637494532 (); extern "C" void MonoBehaviour__ctor_m2022291967 (); extern "C" void MonoBehaviour_Internal_CancelInvokeAll_m972795186 (); extern "C" void MonoBehaviour_Internal_IsInvokingAll_m3154030143 (); extern "C" void MonoBehaviour_Invoke_m2825545578 (); extern "C" void MonoBehaviour_InvokeRepeating_m1115468640 (); extern "C" void MonoBehaviour_CancelInvoke_m3230208631 (); extern "C" void MonoBehaviour_CancelInvoke_m2461959659 (); extern "C" void MonoBehaviour_IsInvoking_m1460913732 (); extern "C" void MonoBehaviour_IsInvoking_m3881121150 (); extern "C" void MonoBehaviour_StartCoroutine_m2135303124 (); extern "C" void MonoBehaviour_StartCoroutine_Auto_m1831125106 (); extern "C" void MonoBehaviour_StartCoroutine_m2964903975 (); extern "C" void MonoBehaviour_StartCoroutine_m2272783641 (); extern "C" void MonoBehaviour_StopCoroutine_m2790918991 (); extern "C" void MonoBehaviour_StopCoroutine_m1340700766 (); extern "C" void MonoBehaviour_StopCoroutine_m1762309278 (); extern "C" void MonoBehaviour_StopCoroutineViaEnumerator_Auto_m2181342074 (); extern "C" void MonoBehaviour_StopCoroutine_Auto_m1074098068 (); extern "C" void MonoBehaviour_StopAllCoroutines_m1437893335 (); extern "C" void MonoBehaviour_print_m1497342762 (); extern "C" void MonoBehaviour_get_useGUILayout_m4058409766 (); extern "C" void MonoBehaviour_set_useGUILayout_m589898551 (); extern "C" void NetworkMessageInfo_get_timestamp_m3597535726 (); extern "C" void NetworkMessageInfo_get_sender_m2720861079 (); extern "C" void NetworkMessageInfo_get_networkView_m221874487 (); extern "C" void NetworkMessageInfo_NullNetworkView_m516412409 (); extern "C" void NetworkPlayer__ctor_m978047135 (); extern "C" void NetworkPlayer_Internal_GetIPAddress_m2705922677 (); extern "C" void NetworkPlayer_Internal_GetPort_m2646691040 (); extern "C" void NetworkPlayer_Internal_GetExternalIP_m4147820797 (); extern "C" void NetworkPlayer_Internal_GetExternalPort_m152642746 (); extern "C" void NetworkPlayer_Internal_GetLocalIP_m3142644809 (); extern "C" void NetworkPlayer_Internal_GetLocalPort_m4290647008 (); extern "C" void NetworkPlayer_Internal_GetPlayerIndex_m1155344837 (); extern "C" void NetworkPlayer_Internal_GetGUID_m82698821 (); extern "C" void NetworkPlayer_Internal_GetLocalGUID_m668021995 (); extern "C" void NetworkPlayer_GetHashCode_m2832997817 (); extern "C" void NetworkPlayer_Equals_m1380117345 (); extern "C" void NetworkPlayer_get_ipAddress_m206939407 (); extern "C" void NetworkPlayer_get_port_m4260923428 (); extern "C" void NetworkPlayer_get_guid_m1193250345 (); extern "C" void NetworkPlayer_ToString_m4115863651 (); extern "C" void NetworkPlayer_get_externalIP_m420672594 (); extern "C" void NetworkPlayer_get_externalPort_m2392166863 (); extern "C" void NetworkPlayer_get_unassigned_m865556847 (); extern "C" void NetworkPlayer_op_Equality_m1190866952 (); extern "C" void NetworkPlayer_op_Inequality_m3921017795 (); extern "C" void NetworkView_Find_m2926682619 (); extern "C" void NetworkView_INTERNAL_CALL_Find_m752431216 (); extern "C" void NetworkViewID_get_unassigned_m2302461037 (); extern "C" void NetworkViewID_INTERNAL_get_unassigned_m3953385100 (); extern "C" void NetworkViewID_Internal_IsMine_m619939661 (); extern "C" void NetworkViewID_INTERNAL_CALL_Internal_IsMine_m2052798080 (); extern "C" void NetworkViewID_Internal_GetOwner_m874421061 (); extern "C" void NetworkViewID_INTERNAL_CALL_Internal_GetOwner_m2405750590 (); extern "C" void NetworkViewID_Internal_GetString_m679444096 (); extern "C" void NetworkViewID_INTERNAL_CALL_Internal_GetString_m1523080203 (); extern "C" void NetworkViewID_Internal_Compare_m2541220858 (); extern "C" void NetworkViewID_INTERNAL_CALL_Internal_Compare_m1319175441 (); extern "C" void NetworkViewID_GetHashCode_m2420635706 (); extern "C" void NetworkViewID_Equals_m2612049122 (); extern "C" void NetworkViewID_get_isMine_m2754407673 (); extern "C" void NetworkViewID_get_owner_m576069262 (); extern "C" void NetworkViewID_ToString_m3783538050 (); extern "C" void NetworkViewID_op_Equality_m776200489 (); extern "C" void NetworkViewID_op_Inequality_m4224856356 (); extern "C" void Object__ctor_m570634126 (); extern "C" void Object_Internal_CloneSingle_m3129073756 (); extern "C" void Object_Internal_InstantiateSingle_m3047563925 (); extern "C" void Object_INTERNAL_CALL_Internal_InstantiateSingle_m1201424140 (); extern "C" void Object_Destroy_m2260435093 (); extern "C" void Object_Destroy_m176400816 (); extern "C" void Object_DestroyImmediate_m1826427014 (); extern "C" void Object_DestroyImmediate_m349958679 (); extern "C" void Object_FindObjectsOfType_m975740280 (); extern "C" void Object_get_name_m3709440845 (); extern "C" void Object_set_name_m1123518500 (); extern "C" void Object_DontDestroyOnLoad_m4064482788 (); extern "C" void Object_get_hideFlags_m1893459363 (); extern "C" void Object_set_hideFlags_m41317712 (); extern "C" void Object_DestroyObject_m3324336244 (); extern "C" void Object_DestroyObject_m3900253135 (); extern "C" void Object_FindSceneObjectsOfType_m2168852346 (); extern "C" void Object_FindObjectsOfTypeIncludingAssets_m1276784656 (); extern "C" void Object_ToString_m2155033093 (); extern "C" void Object_DoesObjectWithInstanceIDExist_m3762691104 (); extern "C" void Object_Equals_m1697651929 (); extern "C" void Object_GetHashCode_m1758859581 (); extern "C" void Object_CompareBaseObjects_m2625210252 (); extern "C" void Object_IsNativeObjectAlive_m434626365 (); extern "C" void Object_GetInstanceID_m200424466 (); extern "C" void Object_GetCachedPtr_m1583421857 (); extern "C" void Object_Instantiate_m2255090103 (); extern "C" void Object_Instantiate_m3040600263 (); extern "C" void Object_CheckNullArgument_m264735768 (); extern "C" void Object_FindObjectOfType_m3820159265 (); extern "C" void Object_op_Implicit_m2106766291 (); extern "C" void Object_op_Equality_m3964590952 (); extern "C" void Object_op_Inequality_m1296218211 (); extern "C" void Physics_Raycast_m1758069759 (); extern "C" void Physics_Raycast_m1600345803 (); extern "C" void Physics_Raycast_m165875788 (); extern "C" void Physics_RaycastAll_m1771931441 (); extern "C" void Physics_RaycastAll_m1269007794 (); extern "C" void Physics_RaycastAll_m892728677 (); extern "C" void Physics_INTERNAL_CALL_RaycastAll_m2642095530 (); extern "C" void Physics_Internal_Raycast_m3365413907 (); extern "C" void Physics_INTERNAL_CALL_Internal_Raycast_m1291554392 (); extern "C" void Physics2D__cctor_m2087591309 (); extern "C" void Physics2D_Internal_Raycast_m4294843026 (); extern "C" void Physics2D_INTERNAL_CALL_Internal_Raycast_m1210233913 (); extern "C" void Physics2D_Raycast_m1435321255 (); extern "C" void Physics2D_Raycast_m301626417 (); extern "C" void Physics2D_RaycastAll_m3437166214 (); extern "C" void Physics2D_INTERNAL_CALL_RaycastAll_m765742583 (); extern "C" void Plane__ctor_m2201046863 (); extern "C" void Plane_get_normal_m3534129213 (); extern "C" void Plane_get_distance_m2612484153 (); extern "C" void Plane_Raycast_m2829769106 (); extern "C" void PropertyAttribute__ctor_m1741701746 (); extern "C" void Quaternion__ctor_m1100844011 (); extern "C" void Quaternion_Dot_m580284 (); extern "C" void Quaternion_Inverse_m3542515566 (); extern "C" void Quaternion_INTERNAL_CALL_Inverse_m4175627710 (); extern "C" void Quaternion_ToString_m1793285860 (); extern "C" void Quaternion_Euler_m1204688217 (); extern "C" void Quaternion_Internal_FromEulerRad_m3681319598 (); extern "C" void Quaternion_INTERNAL_CALL_Internal_FromEulerRad_m1312441940 (); extern "C" void Quaternion_GetHashCode_m3823258238 (); extern "C" void Quaternion_Equals_m3843409946 (); extern "C" void Quaternion_op_Multiply_m3077481361 (); extern "C" void Quaternion_op_Multiply_m3771288979 (); extern "C" void Quaternion_op_Inequality_m4197259746 (); extern "C" void RangeAttribute__ctor_m1279576482 (); extern "C" void Ray__ctor_m2662468509 (); extern "C" void Ray_get_origin_m3064983562 (); extern "C" void Ray_get_direction_m3201866877 (); extern "C" void Ray_GetPoint_m1171104822 (); extern "C" void Ray_ToString_m1391619614 (); extern "C" void RaycastHit_get_point_m4165497838 (); extern "C" void RaycastHit_get_normal_m1346998891 (); extern "C" void RaycastHit_get_distance_m800944203 (); extern "C" void RaycastHit_get_collider_m3116882274 (); extern "C" void RaycastHit2D_get_point_m2072691227 (); extern "C" void RaycastHit2D_get_normal_m894503390 (); extern "C" void RaycastHit2D_get_fraction_m2313516650 (); extern "C" void RaycastHit2D_get_collider_m789902306 (); extern "C" void RaycastHit2D_get_rigidbody_m1059160360 (); extern "C" void RaycastHit2D_get_transform_m1318597140 (); extern "C" void Rect__ctor_m3291325233 (); extern "C" void Rect_get_x_m982385354 (); extern "C" void Rect_set_x_m577970569 (); extern "C" void Rect_get_y_m982386315 (); extern "C" void Rect_set_y_m67436392 (); extern "C" void Rect_get_position_m2933356232 (); extern "C" void Rect_get_center_m610643572 (); extern "C" void Rect_get_min_m275942709 (); extern "C" void Rect_get_max_m275713991 (); extern "C" void Rect_get_width_m2824209432 (); extern "C" void Rect_set_width_m3771513595 (); extern "C" void Rect_get_height_m2154960823 (); extern "C" void Rect_set_height_m3398820332 (); extern "C" void Rect_get_size_m136480416 (); extern "C" void Rect_get_xMin_m371109962 (); extern "C" void Rect_set_xMin_m265803321 (); extern "C" void Rect_get_yMin_m399739113 (); extern "C" void Rect_set_yMin_m3716298746 (); extern "C" void Rect_get_xMax_m370881244 (); extern "C" void Rect_set_xMax_m1513853159 (); extern "C" void Rect_get_yMax_m399510395 (); extern "C" void Rect_set_yMax_m669381288 (); extern "C" void Rect_ToString_m2093687658 (); extern "C" void Rect_Contains_m3556594010 (); extern "C" void Rect_Contains_m3556594041 (); extern "C" void Rect_OrderMinMax_m3424313368 (); extern "C" void Rect_Overlaps_m669681106 (); extern "C" void Rect_Overlaps_m2751672171 (); extern "C" void Rect_GetHashCode_m89026168 (); extern "C" void Rect_Equals_m1091722644 (); extern "C" void Rect_op_Inequality_m2236552616 (); extern "C" void Rect_op_Equality_m1552341101 (); extern "C" void RectOffset__ctor_m2395783478 (); extern "C" void RectOffset__ctor_m358348983 (); extern "C" void RectOffset_Init_m3353955934 (); extern "C" void RectOffset_Cleanup_m2914212664 (); extern "C" void RectOffset_get_left_m4104523390 (); extern "C" void RectOffset_set_left_m901965251 (); extern "C" void RectOffset_get_right_m3831383975 (); extern "C" void RectOffset_set_right_m2119805444 (); extern "C" void RectOffset_get_top_m140097312 (); extern "C" void RectOffset_set_top_m3043172093 (); extern "C" void RectOffset_get_bottom_m2106858018 (); extern "C" void RectOffset_set_bottom_m3840454247 (); extern "C" void RectOffset_get_horizontal_m1186440923 (); extern "C" void RectOffset_get_vertical_m3650431789 (); extern "C" void RectOffset_Finalize_m3416542060 (); extern "C" void RectOffset_ToString_m2231965149 (); extern "C" void RectTransform_add_reapplyDrivenProperties_m1968705467 (); extern "C" void RectTransform_remove_reapplyDrivenProperties_m2607613076 (); extern "C" void RectTransform_get_rect_m1566017036 (); extern "C" void RectTransform_INTERNAL_get_rect_m1980775561 (); extern "C" void RectTransform_get_anchorMin_m688674174 (); extern "C" void RectTransform_set_anchorMin_m989253483 (); extern "C" void RectTransform_INTERNAL_get_anchorMin_m1139643287 (); extern "C" void RectTransform_INTERNAL_set_anchorMin_m370577571 (); extern "C" void RectTransform_get_anchorMax_m688445456 (); extern "C" void RectTransform_set_anchorMax_m715345817 (); extern "C" void RectTransform_INTERNAL_get_anchorMax_m1238440233 (); extern "C" void RectTransform_INTERNAL_set_anchorMax_m469374517 (); extern "C" void RectTransform_get_anchoredPosition_m2318455998 (); extern "C" void RectTransform_set_anchoredPosition_m1498949997 (); extern "C" void RectTransform_INTERNAL_get_anchoredPosition_m840986985 (); extern "C" void RectTransform_INTERNAL_set_anchoredPosition_m2329865949 (); extern "C" void RectTransform_get_sizeDelta_m4279424984 (); extern "C" void RectTransform_set_sizeDelta_m1223846609 (); extern "C" void RectTransform_INTERNAL_get_sizeDelta_m4117062897 (); extern "C" void RectTransform_INTERNAL_set_sizeDelta_m3347997181 (); extern "C" void RectTransform_get_pivot_m3785570595 (); extern "C" void RectTransform_set_pivot_m457344806 (); extern "C" void RectTransform_INTERNAL_get_pivot_m322514492 (); extern "C" void RectTransform_INTERNAL_set_pivot_m237146440 (); extern "C" void RectTransform_SendReapplyDrivenProperties_m2261331528 (); extern "C" void RectTransform_GetLocalCorners_m1867617311 (); extern "C" void RectTransform_GetWorldCorners_m1829917190 (); extern "C" void RectTransform_set_offsetMin_m951793481 (); extern "C" void RectTransform_set_offsetMax_m677885815 (); extern "C" void RectTransform_SetInsetAndSizeFromParentEdge_m1924354604 (); extern "C" void RectTransform_SetSizeWithCurrentAnchors_m4019722691 (); extern "C" void RectTransform_GetParentSize_m3092718635 (); extern "C" void ReapplyDrivenProperties__ctor_m3710908308 (); extern "C" void ReapplyDrivenProperties_Invoke_m3880635155 (); extern "C" void ReapplyDrivenProperties_BeginInvoke_m1851329218 (); extern "C" void ReapplyDrivenProperties_EndInvoke_m3686159268 (); extern "C" void RectTransformUtility__cctor_m4293768260 (); extern "C" void RectTransformUtility_RectangleContainsScreenPoint_m1460676684 (); extern "C" void RectTransformUtility_INTERNAL_CALL_RectangleContainsScreenPoint_m1592514141 (); extern "C" void RectTransformUtility_PixelAdjustPoint_m2518308759 (); extern "C" void RectTransformUtility_PixelAdjustPoint_m1313063708 (); extern "C" void RectTransformUtility_INTERNAL_CALL_PixelAdjustPoint_m1509640863 (); extern "C" void RectTransformUtility_PixelAdjustRect_m3727716130 (); extern "C" void RectTransformUtility_INTERNAL_CALL_PixelAdjustRect_m1038323288 (); extern "C" void RectTransformUtility_ScreenPointToWorldPointInRectangle_m3856201718 (); extern "C" void RectTransformUtility_ScreenPointToLocalPointInRectangle_m666650172 (); extern "C" void RectTransformUtility_ScreenPointToRay_m1216104542 (); extern "C" void RectTransformUtility_FlipLayoutOnAxis_m3487429352 (); extern "C" void RectTransformUtility_FlipLayoutAxes_m2163490602 (); extern "C" void RectTransformUtility_GetTransposed_m2060823533 (); extern "C" void Renderer_get_sortingLayerID_m1954594923 (); extern "C" void Renderer_get_sortingOrder_m3623465101 (); extern "C" void RenderTexture_Internal_GetWidth_m1030655936 (); extern "C" void RenderTexture_Internal_GetHeight_m1940011033 (); extern "C" void RenderTexture_get_width_m1498578543 (); extern "C" void RenderTexture_get_height_m4010076224 (); extern "C" void RequireComponent__ctor_m2023271172 (); extern "C" void ResourceRequest__ctor_m2863879896 (); extern "C" void ResourceRequest_get_asset_m670320982 (); extern "C" void Resources_Load_m3601699608 (); extern "C" void Rigidbody_AddForce_m3682301239 (); extern "C" void Rigidbody_INTERNAL_CALL_AddForce_m3651654387 (); extern "C" void RPC__ctor_m281827604 (); extern "C" void Screen_get_width_m3080333084 (); extern "C" void Screen_get_height_m1504859443 (); extern "C" void Screen_get_dpi_m3780069159 (); extern "C" void ScriptableObject__ctor_m1827087273 (); extern "C" void ScriptableObject_Internal_CreateScriptableObject_m2334361070 (); extern "C" void ScriptableObject_CreateInstance_m750914562 (); extern "C" void ScriptableObject_CreateInstance_m3255479417 (); extern "C" void ScriptableObject_CreateInstanceFromType_m3795352533 (); extern "C" void RequiredByNativeCodeAttribute__ctor_m940065582 (); extern "C" void UsedByNativeCodeAttribute__ctor_m3320039756 (); extern "C" void SelectionBaseAttribute__ctor_m3830336046 (); extern "C" void SendMouseEvents__cctor_m2731695210 (); extern "C" void SendMouseEvents_SetMouseMoved_m2590456785 (); extern "C" void SendMouseEvents_DoSendMouseEvents_m4104134333 (); extern "C" void SendMouseEvents_SendEvents_m3877180750 (); extern "C" void HitInfo_SendMessage_m2569183060 (); extern "C" void HitInfo_Compare_m4083757090 (); extern "C" void HitInfo_op_Implicit_m1943931337 (); extern "C" void FormerlySerializedAsAttribute__ctor_m2703462003 (); extern "C" void FormerlySerializedAsAttribute_get_oldName_m2935479929 (); extern "C" void SerializeField__ctor_m4068807987 (); extern "C" void SerializePrivateVariables__ctor_m889466149 (); extern "C" void SetupCoroutine_InvokeMember_m3691215301 (); extern "C" void Shader_PropertyToID_m3019342011 (); extern "C" void SharedBetweenAnimatorsAttribute__ctor_m2764338918 (); extern "C" void SliderState__ctor_m3732503849 (); extern "C" void GameCenterPlatform__ctor_m573039859 (); extern "C" void GameCenterPlatform__cctor_m102270234 (); extern "C" void GameCenterPlatform_UnityEngine_SocialPlatforms_ISocialPlatform_LoadFriends_m2468032119 (); extern "C" void GameCenterPlatform_UnityEngine_SocialPlatforms_ISocialPlatform_Authenticate_m305325355 (); extern "C" void GameCenterPlatform_Internal_Authenticate_m582381960 (); extern "C" void GameCenterPlatform_Internal_Authenticated_m2780967960 (); extern "C" void GameCenterPlatform_Internal_UserName_m1252299660 (); extern "C" void GameCenterPlatform_Internal_UserID_m385481212 (); extern "C" void GameCenterPlatform_Internal_Underage_m4169738944 (); extern "C" void GameCenterPlatform_Internal_UserImage_m3175776130 (); extern "C" void GameCenterPlatform_Internal_LoadFriends_m1921936862 (); extern "C" void GameCenterPlatform_Internal_LoadAchievementDescriptions_m1394384079 (); extern "C" void GameCenterPlatform_Internal_LoadAchievements_m817891229 (); extern "C" void GameCenterPlatform_Internal_ReportProgress_m2511520970 (); extern "C" void GameCenterPlatform_Internal_ReportScore_m408601947 (); extern "C" void GameCenterPlatform_Internal_LoadScores_m523283944 (); extern "C" void GameCenterPlatform_Internal_ShowAchievementsUI_m1934331464 (); extern "C" void GameCenterPlatform_Internal_ShowLeaderboardUI_m3057704739 (); extern "C" void GameCenterPlatform_Internal_LoadUsers_m4218820079 (); extern "C" void GameCenterPlatform_Internal_ResetAllAchievements_m165059209 (); extern "C" void GameCenterPlatform_Internal_ShowDefaultAchievementBanner_m3108376897 (); extern "C" void GameCenterPlatform_ResetAllAchievements_m878609996 (); extern "C" void GameCenterPlatform_ShowDefaultAchievementCompletionBanner_m2516168699 (); extern "C" void GameCenterPlatform_ShowLeaderboardUI_m3791866548 (); extern "C" void GameCenterPlatform_Internal_ShowSpecificLeaderboardUI_m1768304742 (); extern "C" void GameCenterPlatform_ClearAchievementDescriptions_m3158758843 (); extern "C" void GameCenterPlatform_SetAchievementDescription_m3174496109 (); extern "C" void GameCenterPlatform_SetAchievementDescriptionImage_m3728674360 (); extern "C" void GameCenterPlatform_TriggerAchievementDescriptionCallback_m1497473051 (); extern "C" void GameCenterPlatform_AuthenticateCallbackWrapper_m2896042779 (); extern "C" void GameCenterPlatform_ClearFriends_m1761222218 (); extern "C" void GameCenterPlatform_SetFriends_m3378244042 (); extern "C" void GameCenterPlatform_SetFriendImage_m4228294663 (); extern "C" void GameCenterPlatform_TriggerFriendsCallbackWrapper_m3845044787 (); extern "C" void GameCenterPlatform_AchievementCallbackWrapper_m2031411110 (); extern "C" void GameCenterPlatform_ProgressCallbackWrapper_m165794409 (); extern "C" void GameCenterPlatform_ScoreCallbackWrapper_m2797312324 (); extern "C" void GameCenterPlatform_ScoreLoaderCallbackWrapper_m2588839053 (); extern "C" void GameCenterPlatform_get_localUser_m1634439374 (); extern "C" void GameCenterPlatform_PopulateLocalUser_m2583301917 (); extern "C" void GameCenterPlatform_LoadAchievementDescriptions_m232801667 (); extern "C" void GameCenterPlatform_ReportProgress_m4110499833 (); extern "C" void GameCenterPlatform_LoadAchievements_m2745782249 (); extern "C" void GameCenterPlatform_ReportScore_m1009544586 (); extern "C" void GameCenterPlatform_LoadScores_m3562614827 (); extern "C" void GameCenterPlatform_LoadScores_m2883394111 (); extern "C" void GameCenterPlatform_LeaderboardCallbackWrapper_m2165153529 (); extern "C" void GameCenterPlatform_GetLoading_m2084830155 (); extern "C" void GameCenterPlatform_VerifyAuthentication_m4096949980 (); extern "C" void GameCenterPlatform_ShowAchievementsUI_m2437339590 (); extern "C" void GameCenterPlatform_ShowLeaderboardUI_m302984165 (); extern "C" void GameCenterPlatform_ClearUsers_m4212910653 (); extern "C" void GameCenterPlatform_SetUser_m847940592 (); extern "C" void GameCenterPlatform_SetUserImage_m3066589434 (); extern "C" void GameCenterPlatform_TriggerUsersCallbackWrapper_m2446471631 (); extern "C" void GameCenterPlatform_LoadUsers_m981272890 (); extern "C" void GameCenterPlatform_SafeSetUserImage_m3650098397 (); extern "C" void GameCenterPlatform_SafeClearArray_m2546851889 (); extern "C" void GameCenterPlatform_CreateLeaderboard_m2295049883 (); extern "C" void GameCenterPlatform_CreateAchievement_m1828880347 (); extern "C" void GameCenterPlatform_TriggerResetAchievementCallback_m1285257317 (); extern "C" void GcAchievementData_ToAchievement_m3239514930 (); extern "C" void GcAchievementDescriptionData_ToAchievementDescription_m3125480712 (); extern "C" void GcLeaderboard__ctor_m4042810199 (); extern "C" void GcLeaderboard_Finalize_m4015840938 (); extern "C" void GcLeaderboard_Contains_m100384368 (); extern "C" void GcLeaderboard_SetScores_m1734279820 (); extern "C" void GcLeaderboard_SetLocalScore_m3970132532 (); extern "C" void GcLeaderboard_SetMaxRange_m3160374921 (); extern "C" void GcLeaderboard_SetTitle_m3781988000 (); extern "C" void GcLeaderboard_Internal_LoadScores_m1783152707 (); extern "C" void GcLeaderboard_Internal_LoadScoresWithUsers_m1315210452 (); extern "C" void GcLeaderboard_Loading_m294711596 (); extern "C" void GcLeaderboard_Dispose_m301614325 (); extern "C" void GcScoreData_ToScore_m2728389301 (); extern "C" void GcUserProfileData_ToUserProfile_m1509702721 (); extern "C" void GcUserProfileData_AddToArray_m3757655355 (); extern "C" void Achievement__ctor_m377036415 (); extern "C" void Achievement__ctor_m2960680429 (); extern "C" void Achievement__ctor_m3345265521 (); extern "C" void Achievement_ToString_m2974157186 (); extern "C" void Achievement_get_id_m1680539866 (); extern "C" void Achievement_set_id_m3123429815 (); extern "C" void Achievement_get_percentCompleted_m2492759109 (); extern "C" void Achievement_set_percentCompleted_m1005987436 (); extern "C" void Achievement_get_completed_m3689853355 (); extern "C" void Achievement_get_hidden_m2954555244 (); extern "C" void Achievement_get_lastReportedDate_m445111052 (); extern "C" void AchievementDescription__ctor_m3032164909 (); extern "C" void AchievementDescription_ToString_m1633092820 (); extern "C" void AchievementDescription_SetImage_m1092175896 (); extern "C" void AchievementDescription_get_id_m3162941612 (); extern "C" void AchievementDescription_set_id_m2215766207 (); extern "C" void AchievementDescription_get_title_m1294089737 (); extern "C" void AchievementDescription_get_achievedDescription_m4248956218 (); extern "C" void AchievementDescription_get_unachievedDescription_m3429874753 (); extern "C" void AchievementDescription_get_hidden_m734162136 (); extern "C" void AchievementDescription_get_points_m4158769271 (); extern "C" void Leaderboard__ctor_m596857571 (); extern "C" void Leaderboard_ToString_m114482384 (); extern "C" void Leaderboard_SetLocalUserScore_m700491556 (); extern "C" void Leaderboard_SetMaxRange_m3779908734 (); extern "C" void Leaderboard_SetScores_m1463319879 (); extern "C" void Leaderboard_SetTitle_m771163339 (); extern "C" void Leaderboard_GetUserFilter_m3119905721 (); extern "C" void Leaderboard_get_id_m2379239336 (); extern "C" void Leaderboard_set_id_m2022535593 (); extern "C" void Leaderboard_get_userScope_m3547770469 (); extern "C" void Leaderboard_set_userScope_m3914830286 (); extern "C" void Leaderboard_get_range_m234965965 (); extern "C" void Leaderboard_set_range_m2830170470 (); extern "C" void Leaderboard_get_timeScope_m2356081377 (); extern "C" void Leaderboard_set_timeScope_m3669793618 (); extern "C" void LocalUser__ctor_m1052633066 (); extern "C" void LocalUser_SetFriends_m3475409220 (); extern "C" void LocalUser_SetAuthenticated_m653377406 (); extern "C" void LocalUser_SetUnderage_m2968368872 (); extern "C" void LocalUser_get_authenticated_m3657159816 (); extern "C" void Score__ctor_m113497156 (); extern "C" void Score__ctor_m3768037481 (); extern "C" void Score_ToString_m3380639973 (); extern "C" void Score_get_leaderboardID_m1097777176 (); extern "C" void Score_set_leaderboardID_m3646875387 (); extern "C" void Score_get_value_m3381234835 (); extern "C" void Score_set_value_m2229956626 (); extern "C" void UserProfile__ctor_m1280449570 (); extern "C" void UserProfile__ctor_m2682768015 (); extern "C" void UserProfile_ToString_m2563774257 (); extern "C" void UserProfile_SetUserName_m914181770 (); extern "C" void UserProfile_SetUserID_m1515238170 (); extern "C" void UserProfile_SetImage_m1928130753 (); extern "C" void UserProfile_get_userName_m3149753764 (); extern "C" void UserProfile_get_id_m2095754825 (); extern "C" void UserProfile_get_isFriend_m1712941209 (); extern "C" void UserProfile_get_state_m1340538601 (); extern "C" void Range__ctor_m872630735 (); extern "C" void SortingLayer_GetLayerValueFromID_m2560954442 (); extern "C" void SpaceAttribute__ctor_m3636842103 (); extern "C" void SpaceAttribute__ctor_m2299833492 (); extern "C" void Sprite_get_rect_m132626493 (); extern "C" void Sprite_INTERNAL_get_rect_m853825042 (); extern "C" void Sprite_get_pixelsPerUnit_m2438708453 (); extern "C" void Sprite_get_texture_m1481489947 (); extern "C" void Sprite_get_textureRect_m3946160520 (); extern "C" void Sprite_INTERNAL_get_textureRect_m1939414807 (); extern "C" void Sprite_get_border_m1562752938 (); extern "C" void Sprite_INTERNAL_get_border_m855941073 (); extern "C" void DataUtility_GetInnerUV_m860985145 (); extern "C" void DataUtility_INTERNAL_CALL_GetInnerUV_m4066645897 (); extern "C" void DataUtility_GetOuterUV_m2974486430 (); extern "C" void DataUtility_INTERNAL_CALL_GetOuterUV_m3695722564 (); extern "C" void DataUtility_GetPadding_m3826542291 (); extern "C" void DataUtility_INTERNAL_CALL_GetPadding_m3174755375 (); extern "C" void DataUtility_GetMinSize_m1313355571 (); extern "C" void DataUtility_Internal_GetMinSize_m885438560 (); extern "C" void StackTraceUtility__cctor_m1486031939 (); extern "C" void StackTraceUtility_SetProjectFolder_m3541316899 (); extern "C" void StackTraceUtility_ExtractStackTrace_m235366505 (); extern "C" void StackTraceUtility_IsSystemStacktraceType_m295158192 (); extern "C" void StackTraceUtility_ExtractStringFromExceptionInternal_m803331050 (); extern "C" void StackTraceUtility_PostprocessStacktrace_m556856210 (); extern "C" void StackTraceUtility_ExtractFormattedStackTrace_m3996939365 (); extern "C" void StateMachineBehaviour__ctor_m3149540562 (); extern "C" void StateMachineBehaviour_OnStateEnter_m2858660338 (); extern "C" void StateMachineBehaviour_OnStateUpdate_m2829799871 (); extern "C" void StateMachineBehaviour_OnStateExit_m922939338 (); extern "C" void StateMachineBehaviour_OnStateMove_m834394999 (); extern "C" void StateMachineBehaviour_OnStateIK_m2478904358 (); extern "C" void StateMachineBehaviour_OnStateMachineEnter_m3756430466 (); extern "C" void StateMachineBehaviour_OnStateMachineExit_m4198306608 (); extern "C" void StateMachineBehaviour_OnStateEnter_m1932811376 (); extern "C" void StateMachineBehaviour_OnStateUpdate_m2812313539 (); extern "C" void StateMachineBehaviour_OnStateExit_m2956750232 (); extern "C" void StateMachineBehaviour_OnStateMove_m2938949899 (); extern "C" void StateMachineBehaviour_OnStateIK_m3126912700 (); extern "C" void StateMachineBehaviour_OnStateMachineEnter_m2392556512 (); extern "C" void StateMachineBehaviour_OnStateMachineExit_m2976228338 (); extern "C" void SystemInfo_get_deviceType_m2827604277 (); extern "C" void TextAreaAttribute__ctor_m2577573455 (); extern "C" void TextEditor__ctor_m1029296947 (); extern "C" void TextGenerationSettings_CompareColors_m2801108564 (); extern "C" void TextGenerationSettings_CompareVector2_m332687775 (); extern "C" void TextGenerationSettings_Equals_m3950599493 (); extern "C" void TextGenerator__ctor_m3994909811 (); extern "C" void TextGenerator__ctor_m1563237700 (); extern "C" void TextGenerator_System_IDisposable_Dispose_m3586435340 (); extern "C" void TextGenerator_Finalize_m3211881231 (); extern "C" void TextGenerator_ValidatedSettings_m1098807955 (); extern "C" void TextGenerator_Invalidate_m620450028 (); extern "C" void TextGenerator_GetCharacters_m2483060112 (); extern "C" void TextGenerator_GetLines_m2441503301 (); extern "C" void TextGenerator_GetVertices_m1097518625 (); extern "C" void TextGenerator_GetPreferredWidth_m1618543389 (); extern "C" void TextGenerator_GetPreferredHeight_m1770778044 (); extern "C" void TextGenerator_Populate_m953583418 (); extern "C" void TextGenerator_PopulateAlways_m4138837161 (); extern "C" void TextGenerator_get_verts_m1179011229 (); extern "C" void TextGenerator_get_characters_m3420670449 (); extern "C" void TextGenerator_get_lines_m3197542168 (); extern "C" void TextGenerator_Init_m1881520001 (); extern "C" void TextGenerator_Dispose_cpp_m959647828 (); extern "C" void TextGenerator_Populate_Internal_m1773862789 (); extern "C" void TextGenerator_Populate_Internal_cpp_m3249805403 (); extern "C" void TextGenerator_INTERNAL_CALL_Populate_Internal_cpp_m2939372809 (); extern "C" void TextGenerator_get_rectExtents_m2200526529 (); extern "C" void TextGenerator_INTERNAL_get_rectExtents_m4152002332 (); extern "C" void TextGenerator_get_vertexCount_m818659347 (); extern "C" void TextGenerator_GetVerticesInternal_m2005679319 (); extern "C" void TextGenerator_get_characterCountVisible_m2621262708 (); extern "C" void TextGenerator_GetCharactersInternal_m3189630150 (); extern "C" void TextGenerator_get_lineCount_m3121044867 (); extern "C" void TextGenerator_GetLinesInternal_m702225117 (); extern "C" void Texture__ctor_m516856734 (); extern "C" void Texture_Internal_GetWidth_m1143336192 (); extern "C" void Texture_Internal_GetHeight_m1065663213 (); extern "C" void Texture_get_width_m1557399609 (); extern "C" void Texture_get_height_m1538561974 (); extern "C" void Texture2D__ctor_m1883511258 (); extern "C" void Texture2D_Internal_Create_m457592211 (); extern "C" void Texture2D_get_whiteTexture_m1214146742 (); extern "C" void Texture2D_GetPixelBilinear_m2169326019 (); extern "C" void Texture2D_INTERNAL_CALL_GetPixelBilinear_m2056702809 (); extern "C" void Time_get_deltaTime_m2741110510 (); extern "C" void Time_get_unscaledTime_m319114521 (); extern "C" void Time_get_unscaledDeltaTime_m285638843 (); extern "C" void Time_get_realtimeSinceStartup_m2972554983 (); extern "C" void TooltipAttribute__ctor_m3341446606 (); extern "C" void Touch_get_fingerId_m1427167959 (); extern "C" void Touch_get_position_m1943849441 (); extern "C" void Touch_get_phase_m3314549414 (); extern "C" void Touch_get_type_m1428398012 (); extern "C" void TouchScreenKeyboard__ctor_m3607055310 (); extern "C" void TouchScreenKeyboard_Destroy_m3865079199 (); extern "C" void TouchScreenKeyboard_Finalize_m541415163 (); extern "C" void TouchScreenKeyboard_TouchScreenKeyboard_InternalConstructorHelper_m3839791280 (); extern "C" void TouchScreenKeyboard_get_isSupported_m2472329766 (); extern "C" void TouchScreenKeyboard_Open_m3070776627 (); extern "C" void TouchScreenKeyboard_Open_m751274250 (); extern "C" void TouchScreenKeyboard_Open_m3970504870 (); extern "C" void TouchScreenKeyboard_get_text_m2874389744 (); extern "C" void TouchScreenKeyboard_set_text_m1654889403 (); extern "C" void TouchScreenKeyboard_set_hideInput_m2518551559 (); extern "C" void TouchScreenKeyboard_get_active_m4287082086 (); extern "C" void TouchScreenKeyboard_set_active_m3667959159 (); extern "C" void TouchScreenKeyboard_get_done_m25268130 (); extern "C" void TouchScreenKeyboard_get_wasCanceled_m3910688420 (); extern "C" void TrackedReference_Equals_m732758423 (); extern "C" void TrackedReference_GetHashCode_m894516347 (); extern "C" void TrackedReference_op_Equality_m4125598506 (); extern "C" void Transform_get_position_m2211398607 (); extern "C" void Transform_set_position_m3111394108 (); extern "C" void Transform_INTERNAL_get_position_m1705230066 (); extern "C" void Transform_INTERNAL_set_position_m1126232166 (); extern "C" void Transform_get_localPosition_m668140784 (); extern "C" void Transform_set_localPosition_m3504330903 (); extern "C" void Transform_INTERNAL_get_localPosition_m2703574131 (); extern "C" void Transform_INTERNAL_set_localPosition_m221305727 (); extern "C" void Transform_get_forward_m877665793 (); extern "C" void Transform_get_rotation_m11483428 (); extern "C" void Transform_set_rotation_m1525803229 (); extern "C" void Transform_INTERNAL_get_rotation_m2389720173 (); extern "C" void Transform_INTERNAL_set_rotation_m2051942009 (); extern "C" void Transform_get_localRotation_m3343229381 (); extern "C" void Transform_set_localRotation_m3719981474 (); extern "C" void Transform_INTERNAL_get_localRotation_m1409235788 (); extern "C" void Transform_INTERNAL_set_localRotation_m2898114752 (); extern "C" void Transform_get_localScale_m3886572677 (); extern "C" void Transform_set_localScale_m310756934 (); extern "C" void Transform_INTERNAL_get_localScale_m1534477480 (); extern "C" void Transform_INTERNAL_set_localScale_m3463244060 (); extern "C" void Transform_get_parent_m2236876972 (); extern "C" void Transform_set_parent_m3231272063 (); extern "C" void Transform_get_parentInternal_m3763475785 (); extern "C" void Transform_set_parentInternal_m1254352386 (); extern "C" void Transform_SetParent_m3449663462 (); extern "C" void Transform_SetParent_m263985879 (); extern "C" void Transform_get_worldToLocalMatrix_m3792395652 (); extern "C" void Transform_INTERNAL_get_worldToLocalMatrix_m3861589095 (); extern "C" void Transform_Rotate_m637363399 (); extern "C" void Transform_Rotate_m3141515812 (); extern "C" void Transform_TransformPoint_m437395512 (); extern "C" void Transform_INTERNAL_CALL_TransformPoint_m1435510371 (); extern "C" void Transform_InverseTransformPoint_m1626812000 (); extern "C" void Transform_INTERNAL_CALL_InverseTransformPoint_m1782292189 (); extern "C" void Transform_get_childCount_m2107810675 (); extern "C" void Transform_SetAsFirstSibling_m1746075601 (); extern "C" void Transform_IsChildOf_m3321648579 (); extern "C" void Transform_GetEnumerator_m688365631 (); extern "C" void Transform_GetChild_m4040462992 (); extern "C" void Enumerator__ctor_m856668951 (); extern "C" void Enumerator_get_Current_m1838268607 (); extern "C" void Enumerator_MoveNext_m1095530856 (); extern "C" void Enumerator_Reset_m258411155 (); extern "C" void UIVertex__cctor_m2134470424 (); extern "C" void UnhandledExceptionHandler_RegisterUECatcher_m143130254 (); extern "C" void UnhandledExceptionHandler_HandleUnhandledException_m4033241923 (); extern "C" void UnhandledExceptionHandler_PrintException_m3142367935 (); extern "C" void UnhandledExceptionHandler_NativeUnhandledExceptionHandler_m1608070048 (); extern "C" void UnityException__ctor_m1176480467 (); extern "C" void UnityException__ctor_m743662351 (); extern "C" void UnityException__ctor_m2780758535 (); extern "C" void UnityException__ctor_m2001840532 (); extern "C" void UnityString_Format_m427603113 (); extern "C" void Vector2__ctor_m1517109030 (); extern "C" void Vector2_get_Item_m2185542843 (); extern "C" void Vector2_set_Item_m2767519328 (); extern "C" void Vector2_Scale_m1743563745 (); extern "C" void Vector2_ToString_m3859776067 (); extern "C" void Vector2_GetHashCode_m128434585 (); extern "C" void Vector2_Equals_m3404198849 (); extern "C" void Vector2_Dot_m2437602225 (); extern "C" void Vector2_get_sqrMagnitude_m996072851 (); extern "C" void Vector2_SqrMagnitude_m4007443280 (); extern "C" void Vector2_get_zero_m199872368 (); extern "C" void Vector2_get_one_m2767488832 (); extern "C" void Vector2_get_up_m1197831267 (); extern "C" void Vector2_get_right_m3495203638 (); extern "C" void Vector2_op_Addition_m1173049553 (); extern "C" void Vector2_op_Subtraction_m2097149401 (); extern "C" void Vector2_op_Multiply_m1738245082 (); extern "C" void Vector2_op_Division_m747627697 (); extern "C" void Vector2_op_Equality_m1927481448 (); extern "C" void Vector2_op_Inequality_m1638984867 (); extern "C" void Vector2_op_Implicit_m4083860659 (); extern "C" void Vector2_op_Implicit_m482286037 (); extern "C" void Vector3__ctor_m2926210380 (); extern "C" void Vector3__ctor_m1846874791 (); extern "C" void Vector3_Lerp_m650470329 (); extern "C" void Vector3_get_Item_m108333500 (); extern "C" void Vector3_set_Item_m1844835745 (); extern "C" void Vector3_GetHashCode_m3912867704 (); extern "C" void Vector3_Equals_m3337192096 (); extern "C" void Vector3_Normalize_m3047997355 (); extern "C" void Vector3_get_normalized_m2650940353 (); extern "C" void Vector3_ToString_m3566373060 (); extern "C" void Vector3_Dot_m2370485424 (); extern "C" void Vector3_Distance_m3366690344 (); extern "C" void Vector3_Magnitude_m995314358 (); extern "C" void Vector3_SqrMagnitude_m1662776270 (); extern "C" void Vector3_get_sqrMagnitude_m1207423764 (); extern "C" void Vector3_Min_m10392601 (); extern "C" void Vector3_Max_m545730887 (); extern "C" void Vector3_get_zero_m2017759730 (); extern "C" void Vector3_get_one_m886467710 (); extern "C" void Vector3_get_forward_m1039372701 (); extern "C" void Vector3_get_back_m1326515313 (); extern "C" void Vector3_get_up_m4046647141 (); extern "C" void Vector3_get_down_m1397301612 (); extern "C" void Vector3_get_left_m1616598929 (); extern "C" void Vector3_get_right_m4015137012 (); extern "C" void Vector3_op_Addition_m695438225 (); extern "C" void Vector3_op_Subtraction_m2842958165 (); extern "C" void Vector3_op_Multiply_m973638459 (); extern "C" void Vector3_op_Division_m4277988370 (); extern "C" void Vector3_op_Equality_m582817895 (); extern "C" void Vector3_op_Inequality_m231387234 (); extern "C" void Vector4__ctor_m2441427762 (); extern "C" void Vector4_get_Item_m2326091453 (); extern "C" void Vector4_set_Item_m922152162 (); extern "C" void Vector4_GetHashCode_m3402333527 (); extern "C" void Vector4_Equals_m3270185343 (); extern "C" void Vector4_ToString_m3272970053 (); extern "C" void Vector4_Dot_m2303368623 (); extern "C" void Vector4_get_sqrMagnitude_m1418774677 (); extern "C" void Vector4_get_zero_m3835647092 (); extern "C" void Vector4_op_Division_m3513381747 (); extern "C" void WaitForEndOfFrame__ctor_m4124201226 (); extern "C" void WaitForFixedUpdate__ctor_m2916734308 (); extern "C" void WaitForSeconds__ctor_m3184996201 (); extern "C" void WrapperlessIcall__ctor_m1888400594 (); extern "C" void WritableAttribute__ctor_m2205809533 (); extern "C" void YieldInstruction__ctor_m539393484 (); extern "C" void GenericStack__ctor_m2328546233 (); extern "C" void MathfInternal__cctor_m2600550988 (); extern "C" void NetFxCoreExtensions_CreateDelegate_m3408605866 (); extern "C" void NetFxCoreExtensions_GetMethodInfo_m1628849205 (); extern "C" void TypeInferenceRuleAttribute__ctor_m1168575159 (); extern "C" void TypeInferenceRuleAttribute__ctor_m2173394041 (); extern "C" void TypeInferenceRuleAttribute_ToString_m318752778 (); extern "C" void AbstractEventData__ctor_m3016870691 (); extern "C" void AbstractEventData_Reset_m663303632 (); extern "C" void AbstractEventData_Use_m245202952 (); extern "C" void AbstractEventData_get_used_m4054984437 (); extern "C" void AxisEventData__ctor_m3411840806 (); extern "C" void AxisEventData_get_moveVector_m2997093594 (); extern "C" void AxisEventData_set_moveVector_m286185191 (); extern "C" void AxisEventData_get_moveDir_m2739466109 (); extern "C" void AxisEventData_set_moveDir_m2213568926 (); extern "C" void BaseEventData__ctor_m3246352982 (); extern "C" void BaseEventData_get_currentInputModule_m502779959 (); extern "C" void BaseEventData_get_selectedObject_m2003968484 (); extern "C" void BaseEventData_set_selectedObject_m3912430657 (); extern "C" void BaseInputModule__ctor_m2920801056 (); extern "C" void BaseInputModule_get_eventSystem_m3949125731 (); extern "C" void BaseInputModule_OnEnable_m3913388134 (); extern "C" void BaseInputModule_OnDisable_m1496885127 (); extern "C" void BaseInputModule_FindFirstRaycast_m3775114583 (); extern "C" void BaseInputModule_DetermineMoveDirection_m1298463611 (); extern "C" void BaseInputModule_DetermineMoveDirection_m1501057824 (); extern "C" void BaseInputModule_FindCommonRoot_m1904275501 (); extern "C" void BaseInputModule_HandlePointerExitAndEnter_m779127058 (); extern "C" void BaseInputModule_GetAxisEventData_m3789039491 (); extern "C" void BaseInputModule_GetBaseEventData_m1707430642 (); extern "C" void BaseInputModule_IsPointerOverGameObject_m674758553 (); extern "C" void BaseInputModule_ShouldActivateModule_m222600132 (); extern "C" void BaseInputModule_DeactivateModule_m2572518820 (); extern "C" void BaseInputModule_ActivateModule_m1091790819 (); extern "C" void BaseInputModule_UpdateModule_m2691994233 (); extern "C" void BaseInputModule_IsModuleSupported_m4245324872 (); extern "C" void BaseRaycaster__ctor_m2197027296 (); extern "C" void BaseRaycaster_get_priority_m2850487385 (); extern "C" void BaseRaycaster_get_sortOrderPriority_m1812907489 (); extern "C" void BaseRaycaster_get_renderOrderPriority_m486229993 (); extern "C" void BaseRaycaster_ToString_m540855283 (); extern "C" void BaseRaycaster_OnEnable_m2705129894 (); extern "C" void BaseRaycaster_OnDisable_m2695585351 (); extern "C" void EventSystem__ctor_m1614698108 (); extern "C" void EventSystem__cctor_m2328904881 (); extern "C" void EventSystem_get_current_m3483537871 (); extern "C" void EventSystem_set_current_m3070848986 (); extern "C" void EventSystem_get_sendNavigationEvents_m2758658484 (); extern "C" void EventSystem_set_sendNavigationEvents_m332228817 (); extern "C" void EventSystem_get_pixelDragThreshold_m3269248010 (); extern "C" void EventSystem_set_pixelDragThreshold_m3094844391 (); extern "C" void EventSystem_get_currentInputModule_m1694913485 (); extern "C" void EventSystem_get_firstSelectedGameObject_m540473918 (); extern "C" void EventSystem_set_firstSelectedGameObject_m1040716465 (); extern "C" void EventSystem_get_currentSelectedGameObject_m4236083783 (); extern "C" void EventSystem_get_lastSelectedGameObject_m2351525314 (); extern "C" void EventSystem_UpdateModules_m2696555928 (); extern "C" void EventSystem_get_alreadySelecting_m3074958957 (); extern "C" void EventSystem_SetSelectedGameObject_m2116591616 (); extern "C" void EventSystem_get_baseEventDataCache_m1763003665 (); extern "C" void EventSystem_SetSelectedGameObject_m1869236832 (); extern "C" void EventSystem_RaycastComparer_m3178660990 (); extern "C" void EventSystem_RaycastAll_m538533603 (); extern "C" void EventSystem_IsPointerOverGameObject_m4276458404 (); extern "C" void EventSystem_IsPointerOverGameObject_m4003394293 (); extern "C" void EventSystem_OnEnable_m1909198730 (); extern "C" void EventSystem_OnDisable_m3791523043 (); extern "C" void EventSystem_TickModules_m4074329476 (); extern "C" void EventSystem_Update_m242895889 (); extern "C" void EventSystem_ChangeEventModule_m1717769816 (); extern "C" void EventSystem_ToString_m3844548247 (); extern "C" void EventTrigger__ctor_m3410186115 (); extern "C" void EventTrigger_get_triggers_m900961340 (); extern "C" void EventTrigger_set_triggers_m2956640203 (); extern "C" void EventTrigger_Execute_m1768335209 (); extern "C" void EventTrigger_OnPointerEnter_m3698974435 (); extern "C" void EventTrigger_OnPointerExit_m4069405409 (); extern "C" void EventTrigger_OnDrag_m621966250 (); extern "C" void EventTrigger_OnDrop_m1949092623 (); extern "C" void EventTrigger_OnPointerDown_m3676323037 (); extern "C" void EventTrigger_OnPointerUp_m902762948 (); extern "C" void EventTrigger_OnPointerClick_m4229222963 (); extern "C" void EventTrigger_OnSelect_m3604185014 (); extern "C" void EventTrigger_OnDeselect_m1138247351 (); extern "C" void EventTrigger_OnScroll_m2448369713 (); extern "C" void EventTrigger_OnMove_m4043957787 (); extern "C" void EventTrigger_OnUpdateSelected_m1400064574 (); extern "C" void EventTrigger_OnInitializePotentialDrag_m802339386 (); extern "C" void EventTrigger_OnBeginDrag_m356440287 (); extern "C" void EventTrigger_OnEndDrag_m168497709 (); extern "C" void EventTrigger_OnSubmit_m974012114 (); extern "C" void EventTrigger_OnCancel_m972464948 (); extern "C" void Entry__ctor_m515618144 (); extern "C" void TriggerEvent__ctor_m1729711890 (); extern "C" void ExecuteEvents__cctor_m2728541814 (); extern "C" void ExecuteEvents_Execute_m3788527851 (); extern "C" void ExecuteEvents_Execute_m2062412449 (); extern "C" void ExecuteEvents_Execute_m1462933149 (); extern "C" void ExecuteEvents_Execute_m225834756 (); extern "C" void ExecuteEvents_Execute_m153166907 (); extern "C" void ExecuteEvents_Execute_m3770536826 (); extern "C" void ExecuteEvents_Execute_m2468788383 (); extern "C" void ExecuteEvents_Execute_m1192678962 (); extern "C" void ExecuteEvents_Execute_m1674228205 (); extern "C" void ExecuteEvents_Execute_m1220342551 (); extern "C" void ExecuteEvents_Execute_m1271506489 (); extern "C" void ExecuteEvents_Execute_m3050600610 (); extern "C" void ExecuteEvents_Execute_m1947619370 (); extern "C" void ExecuteEvents_Execute_m279235849 (); extern "C" void ExecuteEvents_Execute_m1420971509 (); extern "C" void ExecuteEvents_Execute_m951556494 (); extern "C" void ExecuteEvents_Execute_m3179930348 (); extern "C" void ExecuteEvents_get_pointerEnterHandler_m2954525018 (); extern "C" void ExecuteEvents_get_pointerExitHandler_m509229616 (); extern "C" void ExecuteEvents_get_pointerDownHandler_m916646952 (); extern "C" void ExecuteEvents_get_pointerUpHandler_m1834169334 (); extern "C" void ExecuteEvents_get_pointerClickHandler_m2881872730 (); extern "C" void ExecuteEvents_get_initializePotentialDrag_m3514083626 (); extern "C" void ExecuteEvents_get_beginDragHandler_m1163039340 (); extern "C" void ExecuteEvents_get_dragHandler_m1884359226 (); extern "C" void ExecuteEvents_get_endDragHandler_m811393096 (); extern "C" void ExecuteEvents_get_dropHandler_m1933111770 (); extern "C" void ExecuteEvents_get_scrollHandler_m62853082 (); extern "C" void ExecuteEvents_get_updateSelectedHandler_m2735401530 (); extern "C" void ExecuteEvents_get_selectHandler_m1963257146 (); extern "C" void ExecuteEvents_get_deselectHandler_m2539146650 (); extern "C" void ExecuteEvents_get_moveHandler_m1400410010 (); extern "C" void ExecuteEvents_get_submitHandler_m3307200186 (); extern "C" void ExecuteEvents_get_cancelHandler_m120249338 (); extern "C" void ExecuteEvents_GetEventChain_m1321751930 (); extern "C" void ExecuteEvents_U3Cs_HandlerListPoolU3Em__0_m1727672693 (); extern "C" void Physics2DRaycaster__ctor_m3212916644 (); extern "C" void Physics2DRaycaster_Raycast_m4133606104 (); extern "C" void PhysicsRaycaster__ctor_m4288212754 (); extern "C" void PhysicsRaycaster_get_eventCamera_m810838145 (); extern "C" void PhysicsRaycaster_get_depth_m589853138 (); extern "C" void PhysicsRaycaster_get_finalEventMask_m2246936003 (); extern "C" void PhysicsRaycaster_get_eventMask_m610257178 (); extern "C" void PhysicsRaycaster_set_eventMask_m3869486707 (); extern "C" void PhysicsRaycaster_Raycast_m743134250 (); extern "C" void PhysicsRaycaster_U3CRaycastU3Em__1_m3832860601 (); extern "C" void PointerEventData__ctor_m82194942 (); extern "C" void PointerEventData_get_pointerEnter_m1754340511 (); extern "C" void PointerEventData_set_pointerEnter_m3909544698 (); extern "C" void PointerEventData_get_lastPress_m3682396203 (); extern "C" void PointerEventData_set_lastPress_m1523028000 (); extern "C" void PointerEventData_get_rawPointerPress_m4005541676 (); extern "C" void PointerEventData_set_rawPointerPress_m505214625 (); extern "C" void PointerEventData_get_pointerDrag_m2109300143 (); extern "C" void PointerEventData_set_pointerDrag_m1194168164 (); extern "C" void PointerEventData_get_pointerCurrentRaycast_m874132826 (); extern "C" void PointerEventData_set_pointerCurrentRaycast_m2884097807 (); extern "C" void PointerEventData_get_pointerPressRaycast_m990488592 (); extern "C" void PointerEventData_set_pointerPressRaycast_m126348485 (); extern "C" void PointerEventData_get_eligibleForClick_m804806107 (); extern "C" void PointerEventData_set_eligibleForClick_m4124670100 (); extern "C" void PointerEventData_get_pointerId_m315063471 (); extern "C" void PointerEventData_set_pointerId_m204336548 (); extern "C" void PointerEventData_get_position_m2263123361 (); extern "C" void PointerEventData_set_position_m1287828138 (); extern "C" void PointerEventData_get_delta_m4112242786 (); extern "C" void PointerEventData_set_delta_m3480102791 (); extern "C" void PointerEventData_get_pressPosition_m2718149942 (); extern "C" void PointerEventData_set_pressPosition_m3056630579 (); extern "C" void PointerEventData_get_worldPosition_m489722276 (); extern "C" void PointerEventData_set_worldPosition_m914315875 (); extern "C" void PointerEventData_get_worldNormal_m3470386274 (); extern "C" void PointerEventData_set_worldNormal_m2060170853 (); extern "C" void PointerEventData_get_clickTime_m2529670096 (); extern "C" void PointerEventData_set_clickTime_m3487651291 (); extern "C" void PointerEventData_get_clickCount_m341347570 (); extern "C" void PointerEventData_set_clickCount_m2279104927 (); extern "C" void PointerEventData_get_scrollDelta_m3602781717 (); extern "C" void PointerEventData_set_scrollDelta_m3507625908 (); extern "C" void PointerEventData_get_useDragThreshold_m2749684085 (); extern "C" void PointerEventData_set_useDragThreshold_m2530254510 (); extern "C" void PointerEventData_get_dragging_m3319220148 (); extern "C" void PointerEventData_set_dragging_m1730892973 (); extern "C" void PointerEventData_get_button_m796143251 (); extern "C" void PointerEventData_set_button_m2720287992 (); extern "C" void PointerEventData_IsPointerMoving_m1462208007 (); extern "C" void PointerEventData_IsScrolling_m2052637201 (); extern "C" void PointerEventData_get_enterEventCamera_m1535306943 (); extern "C" void PointerEventData_get_pressEventCamera_m2764092724 (); extern "C" void PointerEventData_get_pointerPress_m3028028234 (); extern "C" void PointerEventData_set_pointerPress_m3037509477 (); extern "C" void PointerEventData_ToString_m746384051 (); extern "C" void PointerInputModule__ctor_m2748126408 (); extern "C" void PointerInputModule_GetPointerData_m1554981113 (); extern "C" void PointerInputModule_RemovePointerData_m3101459861 (); extern "C" void PointerInputModule_GetTouchPointerEventData_m2194758459 (); extern "C" void PointerInputModule_CopyFromTo_m431867808 (); extern "C" void PointerInputModule_StateForMouseButton_m1241430345 (); extern "C" void PointerInputModule_GetMousePointerEventData_m1489718224 (); extern "C" void PointerInputModule_GetMousePointerEventData_m3291859233 (); extern "C" void PointerInputModule_GetLastPointerEventData_m238778665 (); extern "C" void PointerInputModule_ShouldStartDrag_m1910083073 (); extern "C" void PointerInputModule_ProcessMove_m2382689080 (); extern "C" void PointerInputModule_ProcessDrag_m1875452405 (); extern "C" void PointerInputModule_IsPointerOverGameObject_m1132541469 (); extern "C" void PointerInputModule_ClearSelection_m1490775995 (); extern "C" void PointerInputModule_ToString_m1837754533 (); extern "C" void PointerInputModule_DeselectIfSelectionChanged_m522880394 (); extern "C" void ButtonState__ctor_m858021496 (); extern "C" void ButtonState_get_eventData_m3874795698 (); extern "C" void ButtonState_set_eventData_m471696551 (); extern "C" void ButtonState_get_button_m3169210133 (); extern "C" void ButtonState_set_button_m2005500214 (); extern "C" void MouseButtonEventData__ctor_m4233842466 (); extern "C" void MouseButtonEventData_PressedThisFrame_m3377699805 (); extern "C" void MouseButtonEventData_ReleasedThisFrame_m949274724 (); extern "C" void MouseState__ctor_m2621211907 (); extern "C" void MouseState_AnyPressesThisFrame_m3921583709 (); extern "C" void MouseState_AnyReleasesThisFrame_m2672125158 (); extern "C" void MouseState_GetButtonState_m96912714 (); extern "C" void MouseState_SetButtonState_m3470421591 (); extern "C" void RaycasterManager__cctor_m1509381251 (); extern "C" void RaycasterManager_AddRaycaster_m4159868023 (); extern "C" void RaycasterManager_GetRaycasters_m4152256966 (); extern "C" void RaycasterManager_RemoveRaycasters_m4290330819 (); extern "C" void RaycastResult_get_gameObject_m1138099278 (); extern "C" void RaycastResult_set_gameObject_m726369707 (); extern "C" void RaycastResult_get_isValid_m3098154392 (); extern "C" void RaycastResult_Clear_m2117708874 (); extern "C" void RaycastResult_ToString_m2924263764 (); extern "C" void StandaloneInputModule__ctor_m3585261844 (); extern "C" void StandaloneInputModule_get_inputMode_m3683217473 (); extern "C" void StandaloneInputModule_get_allowActivationOnMobileDevice_m898677649 (); extern "C" void StandaloneInputModule_set_allowActivationOnMobileDevice_m2716306402 (); extern "C" void StandaloneInputModule_get_forceModuleActive_m4263603128 (); extern "C" void StandaloneInputModule_set_forceModuleActive_m2821456585 (); extern "C" void StandaloneInputModule_get_inputActionsPerSecond_m386579003 (); extern "C" void StandaloneInputModule_set_inputActionsPerSecond_m3962672568 (); extern "C" void StandaloneInputModule_get_repeatDelay_m756347909 (); extern "C" void StandaloneInputModule_set_repeatDelay_m3283777070 (); extern "C" void StandaloneInputModule_get_horizontalAxis_m4124505505 (); extern "C" void StandaloneInputModule_set_horizontalAxis_m1994117648 (); extern "C" void StandaloneInputModule_get_verticalAxis_m828001843 (); extern "C" void StandaloneInputModule_set_verticalAxis_m3009801854 (); extern "C" void StandaloneInputModule_get_submitButton_m1573295782 (); extern "C" void StandaloneInputModule_set_submitButton_m3989846251 (); extern "C" void StandaloneInputModule_get_cancelButton_m3049849608 (); extern "C" void StandaloneInputModule_set_cancelButton_m822377417 (); extern "C" void StandaloneInputModule_UpdateModule_m4260747781 (); extern "C" void StandaloneInputModule_IsModuleSupported_m1519744700 (); extern "C" void StandaloneInputModule_ShouldActivateModule_m3115394256 (); extern "C" void StandaloneInputModule_ActivateModule_m1130429551 (); extern "C" void StandaloneInputModule_DeactivateModule_m1049634608 (); extern "C" void StandaloneInputModule_Process_m3720469665 (); extern "C" void StandaloneInputModule_ProcessTouchEvents_m3567487943 (); extern "C" void StandaloneInputModule_ProcessTouchPress_m2953705401 (); extern "C" void StandaloneInputModule_SendSubmitEventToSelectedObject_m2183743635 (); extern "C" void StandaloneInputModule_GetRawMoveVector_m3480660049 (); extern "C" void StandaloneInputModule_SendMoveEventToSelectedObject_m439066490 (); extern "C" void StandaloneInputModule_ProcessMouseEvent_m2927305846 (); extern "C" void StandaloneInputModule_ProcessMouseEvent_m1104664775 (); extern "C" void StandaloneInputModule_SendUpdateEventToSelectedObject_m1730287810 (); extern "C" void StandaloneInputModule_ProcessMousePress_m794465737 (); extern "C" void TouchInputModule__ctor_m339421258 (); extern "C" void TouchInputModule_get_allowActivationOnStandalone_m2975554192 (); extern "C" void TouchInputModule_set_allowActivationOnStandalone_m2844331589 (); extern "C" void TouchInputModule_get_forceModuleActive_m3711716298 (); extern "C" void TouchInputModule_set_forceModuleActive_m3663751039 (); extern "C" void TouchInputModule_UpdateModule_m1492847119 (); extern "C" void TouchInputModule_IsModuleSupported_m3258396622 (); extern "C" void TouchInputModule_ShouldActivateModule_m1989212798 (); extern "C" void TouchInputModule_UseFakeInput_m1788394586 (); extern "C" void TouchInputModule_Process_m2613923415 (); extern "C" void TouchInputModule_FakeTouches_m1483201856 (); extern "C" void TouchInputModule_ProcessTouchEvents_m2652204291 (); extern "C" void TouchInputModule_ProcessTouchPress_m3277592771 (); extern "C" void TouchInputModule_DeactivateModule_m873087546 (); extern "C" void TouchInputModule_ToString_m2343614755 (); extern "C" void UIBehaviour__ctor_m1261553468 (); extern "C" void UIBehaviour_Awake_m1499158687 (); extern "C" void UIBehaviour_OnEnable_m4047103690 (); extern "C" void UIBehaviour_Start_m208691260 (); extern "C" void UIBehaviour_OnDisable_m1347100067 (); extern "C" void UIBehaviour_OnDestroy_m3524632117 (); extern "C" void UIBehaviour_IsActive_m3417391654 (); extern "C" void UIBehaviour_OnRectTransformDimensionsChange_m406568928 (); extern "C" void UIBehaviour_OnBeforeTransformParentChanged_m216909636 (); extern "C" void UIBehaviour_OnTransformParentChanged_m1017023781 (); extern "C" void UIBehaviour_OnDidApplyAnimationProperties_m1721800419 (); extern "C" void UIBehaviour_OnCanvasGroupChanged_m2106086004 (); extern "C" void UIBehaviour_OnCanvasHierarchyChanged_m1210291326 (); extern "C" void UIBehaviour_IsDestroyed_m3027499227 (); extern "C" void AnimationTriggers__ctor_m4034548412 (); extern "C" void AnimationTriggers_get_normalTrigger_m326085791 (); extern "C" void AnimationTriggers_set_normalTrigger_m2497706644 (); extern "C" void AnimationTriggers_get_highlightedTrigger_m1862702265 (); extern "C" void AnimationTriggers_set_highlightedTrigger_m3911773112 (); extern "C" void AnimationTriggers_get_pressedTrigger_m3081240394 (); extern "C" void AnimationTriggers_set_pressedTrigger_m763343943 (); extern "C" void AnimationTriggers_get_disabledTrigger_m2031458154 (); extern "C" void AnimationTriggers_set_disabledTrigger_m472449385 (); extern "C" void AspectRatioFitter__ctor_m832848312 (); extern "C" void AspectRatioFitter_get_aspectMode_m1442516665 (); extern "C" void AspectRatioFitter_set_aspectMode_m3373690308 (); extern "C" void AspectRatioFitter_get_aspectRatio_m1760059860 (); extern "C" void AspectRatioFitter_set_aspectRatio_m934620095 (); extern "C" void AspectRatioFitter_get_rectTransform_m3884626579 (); extern "C" void AspectRatioFitter_OnEnable_m1429572302 (); extern "C" void AspectRatioFitter_OnDisable_m1808005663 (); extern "C" void AspectRatioFitter_OnRectTransformDimensionsChange_m1500370780 (); extern "C" void AspectRatioFitter_UpdateRect_m1803770713 (); extern "C" void AspectRatioFitter_GetSizeDeltaToProduceSize_m1662613595 (); extern "C" void AspectRatioFitter_GetParentSize_m642682972 (); extern "C" void AspectRatioFitter_SetLayoutHorizontal_m4171834758 (); extern "C" void AspectRatioFitter_SetLayoutVertical_m815552664 (); extern "C" void AspectRatioFitter_SetDirty_m1662064540 (); extern "C" void BaseMeshEffect__ctor_m2332499996 (); extern "C" void BaseMeshEffect_get_graphic_m2567098443 (); extern "C" void BaseMeshEffect_OnEnable_m1303077354 (); extern "C" void BaseMeshEffect_OnDisable_m2181629571 (); extern "C" void BaseMeshEffect_OnDidApplyAnimationProperties_m4231090115 (); extern "C" void BaseMeshEffect_ModifyMesh_m4260756811 (); extern "C" void BaseVertexEffect__ctor_m1287105989 (); extern "C" void Button__ctor_m3363033049 (); extern "C" void Button_get_onClick_m1145127631 (); extern "C" void Button_set_onClick_m2495243460 (); extern "C" void Button_Press_m3889091706 (); extern "C" void Button_OnPointerClick_m2363576585 (); extern "C" void Button_OnSubmit_m3916273468 (); extern "C" void Button_OnFinishSubmit_m46760755 (); extern "C" void U3COnFinishSubmitU3Ec__Iterator1__ctor_m299272262 (); extern "C" void U3COnFinishSubmitU3Ec__Iterator1_System_Collections_Generic_IEnumeratorU3CobjectU3E_get_Current_m784619862 (); extern "C" void U3COnFinishSubmitU3Ec__Iterator1_System_Collections_IEnumerator_get_Current_m353356010 (); extern "C" void U3COnFinishSubmitU3Ec__Iterator1_MoveNext_m2222960880 (); extern "C" void U3COnFinishSubmitU3Ec__Iterator1_Dispose_m4031085315 (); extern "C" void U3COnFinishSubmitU3Ec__Iterator1_Reset_m2240672499 (); extern "C" void ButtonClickedEvent__ctor_m1416137305 (); extern "C" void CanvasScaler__ctor_m2274485483 (); extern "C" void CanvasScaler_get_uiScaleMode_m1718779723 (); extern "C" void CanvasScaler_set_uiScaleMode_m2713670988 (); extern "C" void CanvasScaler_get_referencePixelsPerUnit_m1471911967 (); extern "C" void CanvasScaler_set_referencePixelsPerUnit_m2513762540 (); extern "C" void CanvasScaler_get_scaleFactor_m2444679941 (); extern "C" void CanvasScaler_set_scaleFactor_m1527181766 (); extern "C" void CanvasScaler_get_referenceResolution_m484379826 (); extern "C" void CanvasScaler_set_referenceResolution_m4024849975 (); extern "C" void CanvasScaler_get_screenMatchMode_m2287362655 (); extern "C" void CanvasScaler_set_screenMatchMode_m1314095482 (); extern "C" void CanvasScaler_get_matchWidthOrHeight_m3211176417 (); extern "C" void CanvasScaler_set_matchWidthOrHeight_m500879978 (); extern "C" void CanvasScaler_get_physicalUnit_m3572932406 (); extern "C" void CanvasScaler_set_physicalUnit_m1052630401 (); extern "C" void CanvasScaler_get_fallbackScreenDPI_m2341917339 (); extern "C" void CanvasScaler_set_fallbackScreenDPI_m979123696 (); extern "C" void CanvasScaler_get_defaultSpriteDPI_m2728800301 (); extern "C" void CanvasScaler_set_defaultSpriteDPI_m1099048862 (); extern "C" void CanvasScaler_get_dynamicPixelsPerUnit_m3811209707 (); extern "C" void CanvasScaler_set_dynamicPixelsPerUnit_m1481681568 (); extern "C" void CanvasScaler_OnEnable_m3864540859 (); extern "C" void CanvasScaler_OnDisable_m4277586898 (); extern "C" void CanvasScaler_Update_m3516435330 (); extern "C" void CanvasScaler_Handle_m2195907873 (); extern "C" void CanvasScaler_HandleWorldCanvas_m1282362827 (); extern "C" void CanvasScaler_HandleConstantPixelSize_m22621284 (); extern "C" void CanvasScaler_HandleScaleWithScreenSize_m3412612446 (); extern "C" void CanvasScaler_HandleConstantPhysicalSize_m1320301949 (); extern "C" void CanvasScaler_SetScaleFactor_m376581883 (); extern "C" void CanvasScaler_SetReferencePixelsPerUnit_m96000151 (); extern "C" void CanvasUpdateRegistry__ctor_m4143486701 (); extern "C" void CanvasUpdateRegistry__cctor_m3411939936 (); extern "C" void CanvasUpdateRegistry_get_instance_m1077376867 (); extern "C" void CanvasUpdateRegistry_ObjectValidForUpdate_m3662506294 (); extern "C" void CanvasUpdateRegistry_CleanInvalidItems_m3668170109 (); extern "C" void CanvasUpdateRegistry_PerformUpdate_m4284602133 (); extern "C" void CanvasUpdateRegistry_ParentCount_m1557937541 (); extern "C" void CanvasUpdateRegistry_SortLayoutList_m217615053 (); extern "C" void CanvasUpdateRegistry_RegisterCanvasElementForLayoutRebuild_m1282865408 (); extern "C" void CanvasUpdateRegistry_TryRegisterCanvasElementForLayoutRebuild_m3477281917 (); extern "C" void CanvasUpdateRegistry_InternalRegisterCanvasElementForLayoutRebuild_m584808143 (); extern "C" void CanvasUpdateRegistry_RegisterCanvasElementForGraphicRebuild_m1487849090 (); extern "C" void CanvasUpdateRegistry_TryRegisterCanvasElementForGraphicRebuild_m795284133 (); extern "C" void CanvasUpdateRegistry_InternalRegisterCanvasElementForGraphicRebuild_m1322910355 (); extern "C" void CanvasUpdateRegistry_UnRegisterCanvasElementForRebuild_m2188113711 (); extern "C" void CanvasUpdateRegistry_InternalUnRegisterCanvasElementForLayoutRebuild_m1911897302 (); extern "C" void CanvasUpdateRegistry_InternalUnRegisterCanvasElementForGraphicRebuild_m3807968620 (); extern "C" void CanvasUpdateRegistry_IsRebuildingLayout_m1167551012 (); extern "C" void CanvasUpdateRegistry_IsRebuildingGraphics_m2979891973 (); extern "C" void ClipperRegistry__ctor_m3311832913 (); extern "C" void ClipperRegistry_get_instance_m1642325505 (); extern "C" void ClipperRegistry_Cull_m2386993349 (); extern "C" void ClipperRegistry_Register_m2777461237 (); extern "C" void ClipperRegistry_Unregister_m926013180 (); extern "C" void Clipping_FindCullAndClipWorldRect_m3007966961 (); extern "C" void Clipping_RectIntersect_m2589422792 (); extern "C" void ColorBlock_get_normalColor_m1021113593 (); extern "C" void ColorBlock_set_normalColor_m2914277480 (); extern "C" void ColorBlock_get_highlightedColor_m2834784533 (); extern "C" void ColorBlock_set_highlightedColor_m4179336310 (); extern "C" void ColorBlock_get_pressedColor_m2014354534 (); extern "C" void ColorBlock_set_pressedColor_m830240709 (); extern "C" void ColorBlock_get_disabledColor_m2484721348 (); extern "C" void ColorBlock_set_disabledColor_m215468861 (); extern "C" void ColorBlock_get_colorMultiplier_m2799886278 (); extern "C" void ColorBlock_set_colorMultiplier_m1029562789 (); extern "C" void ColorBlock_get_fadeDuration_m2386809488 (); extern "C" void ColorBlock_set_fadeDuration_m1171991323 (); extern "C" void ColorBlock_get_defaultColorBlock_m533915527 (); extern "C" void ContentSizeFitter__ctor_m3832398161 (); extern "C" void ContentSizeFitter_get_horizontalFit_m2851743464 (); extern "C" void ContentSizeFitter_set_horizontalFit_m798679123 (); extern "C" void ContentSizeFitter_get_verticalFit_m2576006486 (); extern "C" void ContentSizeFitter_set_verticalFit_m4130929281 (); extern "C" void ContentSizeFitter_get_rectTransform_m1096586412 (); extern "C" void ContentSizeFitter_OnEnable_m4224530581 (); extern "C" void ContentSizeFitter_OnDisable_m2552366392 (); extern "C" void ContentSizeFitter_OnRectTransformDimensionsChange_m733583797 (); extern "C" void ContentSizeFitter_HandleSelfFittingAlongAxis_m2083972471 (); extern "C" void ContentSizeFitter_SetLayoutHorizontal_m629859679 (); extern "C" void ContentSizeFitter_SetLayoutVertical_m2322479793 (); extern "C" void ContentSizeFitter_SetDirty_m162055523 (); extern "C" void ColorTween_get_startColor_m2341745789 (); extern "C" void ColorTween_set_startColor_m1548058556 (); extern "C" void ColorTween_get_targetColor_m3334930584 (); extern "C" void ColorTween_set_targetColor_m1091345019 (); extern "C" void ColorTween_get_tweenMode_m4011161954 (); extern "C" void ColorTween_set_tweenMode_m1316837809 (); extern "C" void ColorTween_get_duration_m2603018997 (); extern "C" void ColorTween_set_duration_m347866734 (); extern "C" void ColorTween_get_ignoreTimeScale_m27222826 (); extern "C" void ColorTween_set_ignoreTimeScale_m4222585787 (); extern "C" void ColorTween_TweenValue_m3209849337 (); extern "C" void ColorTween_AddOnChangedCallback_m1109647485 (); extern "C" void ColorTween_GetIgnoreTimescale_m2054009071 (); extern "C" void ColorTween_GetDuration_m1400665524 (); extern "C" void ColorTween_ValidTarget_m2504867349 (); extern "C" void ColorTweenCallback__ctor_m1815857490 (); extern "C" void FloatTween_get_startValue_m3485407671 (); extern "C" void FloatTween_set_startValue_m367615212 (); extern "C" void FloatTween_get_targetValue_m197139962 (); extern "C" void FloatTween_set_targetValue_m27109721 (); extern "C" void FloatTween_get_duration_m108772764 (); extern "C" void FloatTween_set_duration_m4177197863 (); extern "C" void FloatTween_get_ignoreTimeScale_m1786680995 (); extern "C" void FloatTween_set_ignoreTimeScale_m556709748 (); extern "C" void FloatTween_TweenValue_m1980315890 (); extern "C" void FloatTween_AddOnChangedCallback_m2815182481 (); extern "C" void FloatTween_GetIgnoreTimescale_m1972218454 (); extern "C" void FloatTween_GetDuration_m2290037293 (); extern "C" void FloatTween_ValidTarget_m3394239118 (); extern "C" void FloatTweenCallback__ctor_m2342804402 (); extern "C" void DefaultControls__cctor_m1303793449 (); extern "C" void DefaultControls_CreateUIElementRoot_m335662421 (); extern "C" void DefaultControls_CreateUIObject_m1826457530 (); extern "C" void DefaultControls_SetDefaultTextValues_m2676194036 (); extern "C" void DefaultControls_SetDefaultColorTransitionValues_m2995057500 (); extern "C" void DefaultControls_SetParentAndAlign_m867848490 (); extern "C" void DefaultControls_SetLayerRecursively_m2948337421 (); extern "C" void DefaultControls_CreatePanel_m131101809 (); extern "C" void DefaultControls_CreateButton_m2909407539 (); extern "C" void DefaultControls_CreateText_m414838766 (); extern "C" void DefaultControls_CreateImage_m3925407496 (); extern "C" void DefaultControls_CreateRawImage_m383828052 (); extern "C" void DefaultControls_CreateSlider_m3090010146 (); extern "C" void DefaultControls_CreateScrollbar_m2399849235 (); extern "C" void DefaultControls_CreateToggle_m1602114261 (); extern "C" void DefaultControls_CreateInputField_m3813899985 (); extern "C" void DefaultControls_CreateDropdown_m481152210 (); extern "C" void DefaultControls_CreateScrollView_m2763877395 (); extern "C" void Dropdown__ctor_m3574287322 (); extern "C" void Dropdown__cctor_m2946628371 (); extern "C" void Dropdown_get_template_m3674548779 (); extern "C" void Dropdown_set_template_m498709600 (); extern "C" void Dropdown_get_captionText_m1044804357 (); extern "C" void Dropdown_set_captionText_m4143100948 (); extern "C" void Dropdown_get_captionImage_m3689507433 (); extern "C" void Dropdown_set_captionImage_m3401548772 (); extern "C" void Dropdown_get_itemText_m2015261424 (); extern "C" void Dropdown_set_itemText_m3975071291 (); extern "C" void Dropdown_get_itemImage_m2263268950 (); extern "C" void Dropdown_set_itemImage_m838838347 (); extern "C" void Dropdown_get_options_m399918042 (); extern "C" void Dropdown_set_options_m4132251955 (); extern "C" void Dropdown_get_onValueChanged_m2646663760 (); extern "C" void Dropdown_set_onValueChanged_m2821991323 (); extern "C" void Dropdown_get_value_m3628689352 (); extern "C" void Dropdown_set_value_m2635023165 (); extern "C" void Dropdown_Awake_m3811892541 (); extern "C" void Dropdown_RefreshShownValue_m9458643 (); extern "C" void Dropdown_AddOptions_m1960749669 (); extern "C" void Dropdown_AddOptions_m4199474459 (); extern "C" void Dropdown_AddOptions_m1674488487 (); extern "C" void Dropdown_ClearOptions_m1343016059 (); extern "C" void Dropdown_SetupTemplate_m2277850703 (); extern "C" void Dropdown_OnPointerClick_m3417107146 (); extern "C" void Dropdown_OnSubmit_m3218526299 (); extern "C" void Dropdown_OnCancel_m3216979133 (); extern "C" void Dropdown_Show_m2564525543 (); extern "C" void Dropdown_CreateBlocker_m4177511350 (); extern "C" void Dropdown_DestroyBlocker_m442421122 (); extern "C" void Dropdown_CreateDropdownList_m1827964190 (); extern "C" void Dropdown_DestroyDropdownList_m2466702489 (); extern "C" void Dropdown_CreateItem_m3067956674 (); extern "C" void Dropdown_DestroyItem_m927755334 (); extern "C" void Dropdown_AddItem_m2798122239 (); extern "C" void Dropdown_AlphaFadeList_m2508072608 (); extern "C" void Dropdown_AlphaFadeList_m3646986629 (); extern "C" void Dropdown_SetAlpha_m3190511269 (); extern "C" void Dropdown_Hide_m2250183404 (); extern "C" void Dropdown_DelayedDestroyDropdownList_m3972931676 (); extern "C" void Dropdown_OnSelectItem_m2377815715 (); extern "C" void U3CDelayedDestroyDropdownListU3Ec__Iterator2__ctor_m1282717409 (); extern "C" void U3CDelayedDestroyDropdownListU3Ec__Iterator2_System_Collections_Generic_IEnumeratorU3CobjectU3E_get_Current_m2519696603 (); extern "C" void U3CDelayedDestroyDropdownListU3Ec__Iterator2_System_Collections_IEnumerator_get_Current_m2793709167 (); extern "C" void U3CDelayedDestroyDropdownListU3Ec__Iterator2_MoveNext_m1977022453 (); extern "C" void U3CDelayedDestroyDropdownListU3Ec__Iterator2_Dispose_m4229066462 (); extern "C" void U3CDelayedDestroyDropdownListU3Ec__Iterator2_Reset_m3224117646 (); extern "C" void U3CShowU3Ec__AnonStorey6__ctor_m2795061609 (); extern "C" void U3CShowU3Ec__AnonStorey6_U3CU3Em__2_m811212697 (); extern "C" void DropdownEvent__ctor_m3364351936 (); extern "C" void DropdownItem__ctor_m653383513 (); extern "C" void DropdownItem_get_text_m2361276100 (); extern "C" void DropdownItem_set_text_m2302793037 (); extern "C" void DropdownItem_get_image_m1361578890 (); extern "C" void DropdownItem_set_image_m97204957 (); extern "C" void DropdownItem_get_rectTransform_m1644273588 (); extern "C" void DropdownItem_set_rectTransform_m2348579039 (); extern "C" void DropdownItem_get_toggle_m2842574180 (); extern "C" void DropdownItem_set_toggle_m4246626175 (); extern "C" void DropdownItem_OnPointerEnter_m2208531769 (); extern "C" void DropdownItem_OnCancel_m3886441502 (); extern "C" void OptionData__ctor_m2550995262 (); extern "C" void OptionData__ctor_m3621517956 (); extern "C" void OptionData__ctor_m715763394 (); extern "C" void OptionData__ctor_m2001511174 (); extern "C" void OptionData_get_text_m2592726207 (); extern "C" void OptionData_set_text_m704016114 (); extern "C" void OptionData_get_image_m1245765107 (); extern "C" void OptionData_set_image_m4214652734 (); extern "C" void OptionDataList__ctor_m4183200960 (); extern "C" void OptionDataList_get_options_m397502342 (); extern "C" void OptionDataList_set_options_m2193073293 (); extern "C" void FontData__ctor_m2630121554 (); extern "C" void FontData_UnityEngine_ISerializationCallbackReceiver_OnBeforeSerialize_m3538586040 (); extern "C" void FontData_UnityEngine_ISerializationCallbackReceiver_OnAfterDeserialize_m2785911854 (); extern "C" void FontData_get_defaultFontData_m3606420120 (); extern "C" void FontData_get_font_m3285096249 (); extern "C" void FontData_set_font_m504888792 (); extern "C" void FontData_get_fontSize_m146058531 (); extern "C" void FontData_set_fontSize_m539119952 (); extern "C" void FontData_get_fontStyle_m2936188273 (); extern "C" void FontData_set_fontStyle_m3987465618 (); extern "C" void FontData_get_bestFit_m4181968066 (); extern "C" void FontData_set_bestFit_m408210551 (); extern "C" void FontData_get_minSize_m3681174594 (); extern "C" void FontData_set_minSize_m3139125175 (); extern "C" void FontData_get_maxSize_m2908696020 (); extern "C" void FontData_set_maxSize_m2259967561 (); extern "C" void FontData_get_alignment_m3864278344 (); extern "C" void FontData_set_alignment_m4148907005 (); extern "C" void FontData_get_alignByGeometry_m1074013123 (); extern "C" void FontData_set_alignByGeometry_m1124841400 (); extern "C" void FontData_get_richText_m3819861494 (); extern "C" void FontData_set_richText_m2399891183 (); extern "C" void FontData_get_horizontalOverflow_m1371187570 (); extern "C" void FontData_set_horizontalOverflow_m1187704845 (); extern "C" void FontData_get_verticalOverflow_m1971090326 (); extern "C" void FontData_set_verticalOverflow_m1743547277 (); extern "C" void FontData_get_lineSpacing_m3558513826 (); extern "C" void FontData_set_lineSpacing_m3483835721 (); extern "C" void FontUpdateTracker__cctor_m1924252658 (); extern "C" void FontUpdateTracker_TrackText_m1576315537 (); extern "C" void FontUpdateTracker_RebuildForFont_m4050910816 (); extern "C" void FontUpdateTracker_UntrackText_m1952028010 (); extern "C" void Graphic__ctor_m4066569555 (); extern "C" void Graphic__cctor_m1027508410 (); extern "C" void Graphic_get_defaultGraphicMaterial_m456140641 (); extern "C" void Graphic_get_color_m2048831972 (); extern "C" void Graphic_set_color_m1311501487 (); extern "C" void Graphic_get_raycastTarget_m3436649332 (); extern "C" void Graphic_set_raycastTarget_m639541381 (); extern "C" void Graphic_get_useLegacyMeshGeneration_m1330224975 (); extern "C" void Graphic_set_useLegacyMeshGeneration_m693817504 (); extern "C" void Graphic_SetAllDirty_m2074784484 (); extern "C" void Graphic_SetLayoutDirty_m2165278999 (); extern "C" void Graphic_SetVerticesDirty_m2313177576 (); extern "C" void Graphic_SetMaterialDirty_m282639610 (); extern "C" void Graphic_OnRectTransformDimensionsChange_m1660020535 (); extern "C" void Graphic_OnBeforeTransformParentChanged_m2612648205 (); extern "C" void Graphic_OnTransformParentChanged_m321513902 (); extern "C" void Graphic_get_depth_m1908843203 (); extern "C" void Graphic_get_rectTransform_m4017371950 (); extern "C" void Graphic_get_canvas_m4291384250 (); extern "C" void Graphic_CacheCanvas_m512847723 (); extern "C" void Graphic_get_canvasRenderer_m184553434 (); extern "C" void Graphic_get_defaultMaterial_m3094002583 (); extern "C" void Graphic_get_material_m3381093914 (); extern "C" void Graphic_set_material_m2202379063 (); extern "C" void Graphic_get_materialForRendering_m1154169789 (); extern "C" void Graphic_get_mainTexture_m2936700123 (); extern "C" void Graphic_OnEnable_m1102673235 (); extern "C" void Graphic_OnDisable_m264069178 (); extern "C" void Graphic_OnCanvasHierarchyChanged_m514781447 (); extern "C" void Graphic_Rebuild_m444579746 (); extern "C" void Graphic_LayoutComplete_m1944323924 (); extern "C" void Graphic_GraphicUpdateComplete_m4174302747 (); extern "C" void Graphic_UpdateMaterial_m1564277409 (); extern "C" void Graphic_UpdateGeometry_m2127951660 (); extern "C" void Graphic_DoMeshGeneration_m2507046369 (); extern "C" void Graphic_DoLegacyMeshGeneration_m3761597322 (); extern "C" void Graphic_get_workerMesh_m1691010424 (); extern "C" void Graphic_OnFillVBO_m316398351 (); extern "C" void Graphic_OnPopulateMesh_m192648803 (); extern "C" void Graphic_OnPopulateMesh_m3177058550 (); extern "C" void Graphic_OnDidApplyAnimationProperties_m3600197626 (); extern "C" void Graphic_SetNativeSize_m2816336555 (); extern "C" void Graphic_Raycast_m822891196 (); extern "C" void Graphic_PixelAdjustPoint_m440199187 (); extern "C" void Graphic_GetPixelAdjustedRect_m517144655 (); extern "C" void Graphic_CrossFadeColor_m3194947827 (); extern "C" void Graphic_CrossFadeColor_m1834346026 (); extern "C" void Graphic_CreateColorFromAlpha_m3334630 (); extern "C" void Graphic_CrossFadeAlpha_m157692256 (); extern "C" void Graphic_RegisterDirtyLayoutCallback_m4189019746 (); extern "C" void Graphic_UnregisterDirtyLayoutCallback_m856391721 (); extern "C" void Graphic_RegisterDirtyVerticesCallback_m1901460593 (); extern "C" void Graphic_UnregisterDirtyVerticesCallback_m3291531384 (); extern "C" void Graphic_RegisterDirtyMaterialCallback_m984855455 (); extern "C" void Graphic_UnregisterDirtyMaterialCallback_m2374926246 (); extern "C" void Graphic_UnityEngine_UI_ICanvasElement_IsDestroyed_m2164415202 (); extern "C" void Graphic_UnityEngine_UI_ICanvasElement_get_transform_m1663879910 (); extern "C" void GraphicRaycaster__ctor_m361051581 (); extern "C" void GraphicRaycaster__cctor_m2120568208 (); extern "C" void GraphicRaycaster_get_sortOrderPriority_m2826757774 (); extern "C" void GraphicRaycaster_get_renderOrderPriority_m4133744982 (); extern "C" void GraphicRaycaster_get_ignoreReversedGraphics_m4072803617 (); extern "C" void GraphicRaycaster_set_ignoreReversedGraphics_m1428686170 (); extern "C" void GraphicRaycaster_get_blockingObjects_m3655591395 (); extern "C" void GraphicRaycaster_set_blockingObjects_m421631540 (); extern "C" void GraphicRaycaster_get_canvas_m1333156416 (); extern "C" void GraphicRaycaster_Raycast_m1880111711 (); extern "C" void GraphicRaycaster_get_eventCamera_m2522555180 (); extern "C" void GraphicRaycaster_Raycast_m3191301018 (); extern "C" void GraphicRaycaster_U3CRaycastU3Em__3_m3990589484 (); extern "C" void GraphicRegistry__ctor_m3010929046 (); extern "C" void GraphicRegistry__cctor_m2662390999 (); extern "C" void GraphicRegistry_get_instance_m2305942177 (); extern "C" void GraphicRegistry_RegisterGraphicForCanvas_m977086278 (); extern "C" void GraphicRegistry_UnregisterGraphicForCanvas_m707013965 (); extern "C" void GraphicRegistry_GetGraphicsForCanvas_m2740028912 (); extern "C" void GridLayoutGroup__ctor_m1378214348 (); extern "C" void GridLayoutGroup_get_startCorner_m2778672189 (); extern "C" void GridLayoutGroup_set_startCorner_m2937777206 (); extern "C" void GridLayoutGroup_get_startAxis_m1539688149 (); extern "C" void GridLayoutGroup_set_startAxis_m628518814 (); extern "C" void GridLayoutGroup_get_cellSize_m1318291007 (); extern "C" void GridLayoutGroup_set_cellSize_m1641372194 (); extern "C" void GridLayoutGroup_get_spacing_m660869033 (); extern "C" void GridLayoutGroup_set_spacing_m2353797514 (); extern "C" void GridLayoutGroup_get_constraint_m3287218001 (); extern "C" void GridLayoutGroup_set_constraint_m1995004480 (); extern "C" void GridLayoutGroup_get_constraintCount_m2592905067 (); extern "C" void GridLayoutGroup_set_constraintCount_m2898625584 (); extern "C" void GridLayoutGroup_CalculateLayoutInputHorizontal_m3283749622 (); extern "C" void GridLayoutGroup_CalculateLayoutInputVertical_m1216862728 (); extern "C" void GridLayoutGroup_SetLayoutHorizontal_m3405189786 (); extern "C" void GridLayoutGroup_SetLayoutVertical_m501906092 (); extern "C" void GridLayoutGroup_SetCellsAlongAxis_m3322008010 (); extern "C" void HorizontalLayoutGroup__ctor_m9362858 (); extern "C" void HorizontalLayoutGroup_CalculateLayoutInputHorizontal_m1229423832 (); extern "C" void HorizontalLayoutGroup_CalculateLayoutInputVertical_m4119749738 (); extern "C" void HorizontalLayoutGroup_SetLayoutHorizontal_m819130872 (); extern "C" void HorizontalLayoutGroup_SetLayoutVertical_m3176307082 (); extern "C" void HorizontalOrVerticalLayoutGroup__ctor_m258856643 (); extern "C" void HorizontalOrVerticalLayoutGroup_get_spacing_m494525775 (); extern "C" void HorizontalOrVerticalLayoutGroup_set_spacing_m3226528036 (); extern "C" void HorizontalOrVerticalLayoutGroup_get_childForceExpandWidth_m1705552999 (); extern "C" void HorizontalOrVerticalLayoutGroup_set_childForceExpandWidth_m1348569144 (); extern "C" void HorizontalOrVerticalLayoutGroup_get_childForceExpandHeight_m1836349768 (); extern "C" void HorizontalOrVerticalLayoutGroup_set_childForceExpandHeight_m3910057317 (); extern "C" void HorizontalOrVerticalLayoutGroup_CalcAlongAxis_m423831906 (); extern "C" void HorizontalOrVerticalLayoutGroup_SetChildrenAlongAxis_m3440700494 (); extern "C" void Image__ctor_m3858093632 (); extern "C" void Image__cctor_m3154689389 (); extern "C" void Image_get_sprite_m3572636301 (); extern "C" void Image_set_sprite_m572551402 (); extern "C" void Image_get_overrideSprite_m3218085753 (); extern "C" void Image_set_overrideSprite_m129622486 (); extern "C" void Image_get_type_m1778977993 (); extern "C" void Image_set_type_m3406009990 (); extern "C" void Image_get_preserveAspect_m1146932479 (); extern "C" void Image_set_preserveAspect_m3374507356 (); extern "C" void Image_get_fillCenter_m3817752307 (); extern "C" void Image_set_fillCenter_m811493200 (); extern "C" void Image_get_fillMethod_m2526834505 (); extern "C" void Image_set_fillMethod_m505110962 (); extern "C" void Image_get_fillAmount_m3193252212 (); extern "C" void Image_set_fillAmount_m1583793743 (); extern "C" void Image_get_fillClockwise_m2414458422 (); extern "C" void Image_set_fillClockwise_m3747842887 (); extern "C" void Image_get_fillOrigin_m2333809822 (); extern "C" void Image_set_fillOrigin_m3202820731 (); extern "C" void Image_get_eventAlphaThreshold_m2236338352 (); extern "C" void Image_set_eventAlphaThreshold_m229582947 (); extern "C" void Image_get_mainTexture_m3619971528 (); extern "C" void Image_get_hasBorder_m2233588589 (); extern "C" void Image_get_pixelsPerUnit_m2679127645 (); extern "C" void Image_OnBeforeSerialize_m3089868192 (); extern "C" void Image_OnAfterDeserialize_m1760560454 (); extern "C" void Image_GetDrawingDimensions_m755640489 (); extern "C" void Image_SetNativeSize_m828608152 (); extern "C" void Image_OnPopulateMesh_m435930979 (); extern "C" void Image_GenerateSimpleSprite_m106729008 (); extern "C" void Image_GenerateSlicedSprite_m4239922765 (); extern "C" void Image_GenerateTiledSprite_m4269137945 (); extern "C" void Image_AddQuad_m3277178 (); extern "C" void Image_AddQuad_m2061170408 (); extern "C" void Image_GetAdjustedBorders_m3337288947 (); extern "C" void Image_GenerateFilledSprite_m589086176 (); extern "C" void Image_RadialCut_m2286713844 (); extern "C" void Image_RadialCut_m531564570 (); extern "C" void Image_CalculateLayoutInputHorizontal_m3229499650 (); extern "C" void Image_CalculateLayoutInputVertical_m2293900052 (); extern "C" void Image_get_minWidth_m214977549 (); extern "C" void Image_get_preferredWidth_m63596798 (); extern "C" void Image_get_flexibleWidth_m1852529796 (); extern "C" void Image_get_minHeight_m2873151074 (); extern "C" void Image_get_preferredHeight_m2475315089 (); extern "C" void Image_get_flexibleHeight_m2097663179 (); extern "C" void Image_get_layoutPriority_m1611774403 (); extern "C" void Image_IsRaycastLocationValid_m1303041002 (); extern "C" void Image_MapCoordinate_m1478133288 (); extern "C" void InputField__ctor_m2020289915 (); extern "C" void InputField__cctor_m2017349010 (); extern "C" void InputField_get_mesh_m2359671532 (); extern "C" void InputField_get_cachedInputTextGenerator_m1093502060 (); extern "C" void InputField_set_shouldHideMobileInput_m4025452486 (); extern "C" void InputField_get_shouldHideMobileInput_m3268284241 (); extern "C" void InputField_get_shouldActivateOnSelect_m3772452453 (); extern "C" void InputField_get_text_m3972300732 (); extern "C" void InputField_set_text_m203843887 (); extern "C" void InputField_get_isFocused_m1249071051 (); extern "C" void InputField_get_caretBlinkRate_m3180928607 (); extern "C" void InputField_set_caretBlinkRate_m3976284076 (); extern "C" void InputField_get_caretWidth_m168198637 (); extern "C" void InputField_set_caretWidth_m566265370 (); extern "C" void InputField_get_textComponent_m2329519363 (); extern "C" void InputField_set_textComponent_m4116377302 (); extern "C" void InputField_get_placeholder_m1494472373 (); extern "C" void InputField_set_placeholder_m1981544106 (); extern "C" void InputField_get_caretColor_m3643265483 (); extern "C" void InputField_set_caretColor_m1187620416 (); extern "C" void InputField_get_customCaretColor_m15835893 (); extern "C" void InputField_set_customCaretColor_m2443486254 (); extern "C" void InputField_get_selectionColor_m240252578 (); extern "C" void InputField_set_selectionColor_m1343496137 (); extern "C" void InputField_get_onEndEdit_m3802925699 (); extern "C" void InputField_set_onEndEdit_m2414983338 (); extern "C" void InputField_get_onValueChange_m2707279446 (); extern "C" void InputField_set_onValueChange_m1682014085 (); extern "C" void InputField_get_onValueChanged_m2321341872 (); extern "C" void InputField_set_onValueChanged_m3205399099 (); extern "C" void InputField_get_onValidateInput_m2116536287 (); extern "C" void InputField_set_onValidateInput_m1603970312 (); extern "C" void InputField_get_characterLimit_m2780159932 (); extern "C" void InputField_set_characterLimit_m1004148585 (); extern "C" void InputField_get_contentType_m1921772191 (); extern "C" void InputField_set_contentType_m831644236 (); extern "C" void InputField_get_lineType_m3024149779 (); extern "C" void InputField_set_lineType_m2862985194 (); extern "C" void InputField_get_inputType_m2348834559 (); extern "C" void InputField_set_inputType_m3518963754 (); extern "C" void InputField_get_keyboardType_m682150197 (); extern "C" void InputField_set_keyboardType_m2584868886 (); extern "C" void InputField_get_characterValidation_m4244038975 (); extern "C" void InputField_set_characterValidation_m3783277294 (); extern "C" void InputField_get_readOnly_m991875110 (); extern "C" void InputField_set_readOnly_m1486621087 (); extern "C" void InputField_get_multiLine_m2265790891 (); extern "C" void InputField_get_asteriskChar_m3297406588 (); extern "C" void InputField_set_asteriskChar_m353877103 (); extern "C" void InputField_get_wasCanceled_m3717712640 (); extern "C" void InputField_ClampPos_m1654447641 (); extern "C" void InputField_get_caretPositionInternal_m1805548065 (); extern "C" void InputField_set_caretPositionInternal_m3521473046 (); extern "C" void InputField_get_caretSelectPositionInternal_m2541357245 (); extern "C" void InputField_set_caretSelectPositionInternal_m4114170802 (); extern "C" void InputField_get_hasSelection_m69592150 (); extern "C" void InputField_get_caretPosition_m1600046468 (); extern "C" void InputField_set_caretPosition_m417406201 (); extern "C" void InputField_get_selectionAnchorPosition_m3946868514 (); extern "C" void InputField_set_selectionAnchorPosition_m4265241751 (); extern "C" void InputField_get_selectionFocusPosition_m3487835103 (); extern "C" void InputField_set_selectionFocusPosition_m3645383436 (); extern "C" void InputField_OnEnable_m3151717419 (); extern "C" void InputField_OnDisable_m3654896738 (); extern "C" void InputField_CaretBlink_m3410390944 (); extern "C" void InputField_SetCaretVisible_m1704739146 (); extern "C" void InputField_SetCaretActive_m1463120 (); extern "C" void InputField_OnFocus_m466029714 (); extern "C" void InputField_SelectAll_m4063966302 (); extern "C" void InputField_MoveTextEnd_m2126814125 (); extern "C" void InputField_MoveTextStart_m2867546804 (); extern "C" void InputField_get_clipboard_m1517672713 (); extern "C" void InputField_set_clipboard_m1137802704 (); extern "C" void InputField_InPlaceEditing_m3152517681 (); extern "C" void InputField_LateUpdate_m658657720 (); extern "C" void InputField_ScreenToLocal_m1499722466 (); extern "C" void InputField_GetUnclampedCharacterLineFromPosition_m3510038353 (); extern "C" void InputField_GetCharacterIndexFromPosition_m4275941159 (); extern "C" void InputField_MayDrag_m3557501854 (); extern "C" void InputField_OnBeginDrag_m1531063271 (); extern "C" void InputField_OnDrag_m91839394 (); extern "C" void InputField_MouseDragOutsideRect_m854880935 (); extern "C" void InputField_OnEndDrag_m4049045301 (); extern "C" void InputField_OnPointerDown_m2912611813 (); extern "C" void InputField_KeyPressed_m56514315 (); extern "C" void InputField_IsValidChar_m3270378798 (); extern "C" void InputField_ProcessEvent_m946297147 (); extern "C" void InputField_OnUpdateSelected_m636353350 (); extern "C" void InputField_GetSelectedString_m1040556478 (); extern "C" void InputField_FindtNextWordBegin_m2221118514 (); extern "C" void InputField_MoveRight_m815186690 (); extern "C" void InputField_FindtPrevWordBegin_m201815282 (); extern "C" void InputField_MoveLeft_m2120951525 (); extern "C" void InputField_DetermineCharacterLine_m3657739513 (); extern "C" void InputField_LineUpCharacterPosition_m1478103368 (); extern "C" void InputField_LineDownCharacterPosition_m263003663 (); extern "C" void InputField_MoveDown_m1297332275 (); extern "C" void InputField_MoveDown_m3574910698 (); extern "C" void InputField_MoveUp_m3783029356 (); extern "C" void InputField_MoveUp_m2694527889 (); extern "C" void InputField_Delete_m3723424084 (); extern "C" void InputField_ForwardSpace_m957387114 (); extern "C" void InputField_Backspace_m3222521688 (); extern "C" void InputField_Insert_m2452101819 (); extern "C" void InputField_SendOnValueChangedAndUpdateLabel_m3331240455 (); extern "C" void InputField_SendOnValueChanged_m2613517587 (); extern "C" void InputField_SendOnSubmit_m3215072040 (); extern "C" void InputField_Append_m2987278559 (); extern "C" void InputField_Append_m917566458 (); extern "C" void InputField_UpdateLabel_m4272237956 (); extern "C" void InputField_IsSelectionVisible_m1151128811 (); extern "C" void InputField_GetLineStartPosition_m1032176150 (); extern "C" void InputField_GetLineEndPosition_m293479951 (); extern "C" void InputField_SetDrawRangeToContainCaretPosition_m2772169252 (); extern "C" void InputField_ForceLabelUpdate_m3497155803 (); extern "C" void InputField_MarkGeometryAsDirty_m178860986 (); extern "C" void InputField_Rebuild_m4149891194 (); extern "C" void InputField_LayoutComplete_m3197989932 (); extern "C" void InputField_GraphicUpdateComplete_m2162277955 (); extern "C" void InputField_UpdateGeometry_m3381617668 (); extern "C" void InputField_AssignPositioningIfNeeded_m20735637 (); extern "C" void InputField_OnFillVBO_m2411846934 (); extern "C" void InputField_GenerateCaret_m2836783818 (); extern "C" void InputField_CreateCursorVerts_m1990252457 (); extern "C" void InputField_GenerateHightlight_m3464703695 (); extern "C" void InputField_Validate_m4235185069 (); extern "C" void InputField_ActivateInputField_m2072753740 (); extern "C" void InputField_ActivateInputFieldInternal_m2572296937 (); extern "C" void InputField_OnSelect_m1785968830 (); extern "C" void InputField_OnPointerClick_m2029011499 (); extern "C" void InputField_DeactivateInputField_m2310323789 (); extern "C" void InputField_OnDeselect_m1884183999 (); extern "C" void InputField_OnSubmit_m3450763226 (); extern "C" void InputField_EnforceContentType_m4178225210 (); extern "C" void InputField_SetToCustomIfContentTypeIsNot_m1700869631 (); extern "C" void InputField_SetToCustom_m2598912359 (); extern "C" void InputField_DoStateTransition_m1731594340 (); extern "C" void InputField_UnityEngine_UI_ICanvasElement_IsDestroyed_m2781637606 (); extern "C" void InputField_UnityEngine_UI_ICanvasElement_get_transform_m2979159434 (); extern "C" void U3CCaretBlinkU3Ec__Iterator3__ctor_m1860697329 (); extern "C" void U3CCaretBlinkU3Ec__Iterator3_System_Collections_Generic_IEnumeratorU3CobjectU3E_get_Current_m1074854283 (); extern "C" void U3CCaretBlinkU3Ec__Iterator3_System_Collections_IEnumerator_get_Current_m2948952863 (); extern "C" void U3CCaretBlinkU3Ec__Iterator3_MoveNext_m4141316197 (); extern "C" void U3CCaretBlinkU3Ec__Iterator3_Dispose_m1322021102 (); extern "C" void U3CCaretBlinkU3Ec__Iterator3_Reset_m3802097566 (); extern "C" void U3CMouseDragOutsideRectU3Ec__Iterator4__ctor_m1030435559 (); extern "C" void U3CMouseDragOutsideRectU3Ec__Iterator4_System_Collections_Generic_IEnumeratorU3CobjectU3E_get_Current_m265708309 (); extern "C" void U3CMouseDragOutsideRectU3Ec__Iterator4_System_Collections_IEnumerator_get_Current_m3574804649 (); extern "C" void U3CMouseDragOutsideRectU3Ec__Iterator4_MoveNext_m656051503 (); extern "C" void U3CMouseDragOutsideRectU3Ec__Iterator4_Dispose_m2304377188 (); extern "C" void U3CMouseDragOutsideRectU3Ec__Iterator4_Reset_m2971835796 (); extern "C" void OnChangeEvent__ctor_m1829440895 (); extern "C" void OnValidateInput__ctor_m318825293 (); extern "C" void OnValidateInput_Invoke_m1377115157 (); extern "C" void OnValidateInput_BeginInvoke_m2130883566 (); extern "C" void OnValidateInput_EndInvoke_m1254779679 (); extern "C" void SubmitEvent__ctor_m3123354920 (); extern "C" void LayoutElement__ctor_m1101568265 (); extern "C" void LayoutElement_get_ignoreLayout_m3020545774 (); extern "C" void LayoutElement_set_ignoreLayout_m31533195 (); extern "C" void LayoutElement_CalculateLayoutInputHorizontal_m3047948889 (); extern "C" void LayoutElement_CalculateLayoutInputVertical_m809913899 (); extern "C" void LayoutElement_get_minWidth_m3361650980 (); extern "C" void LayoutElement_set_minWidth_m2427874975 (); extern "C" void LayoutElement_get_minHeight_m1635779627 (); extern "C" void LayoutElement_set_minHeight_m400728776 (); extern "C" void LayoutElement_get_preferredWidth_m616720597 (); extern "C" void LayoutElement_set_preferredWidth_m1262908558 (); extern "C" void LayoutElement_get_preferredHeight_m2442283674 (); extern "C" void LayoutElement_set_preferredHeight_m2941475513 (); extern "C" void LayoutElement_get_flexibleWidth_m3810035149 (); extern "C" void LayoutElement_set_flexibleWidth_m2155570278 (); extern "C" void LayoutElement_get_flexibleHeight_m2650786978 (); extern "C" void LayoutElement_set_flexibleHeight_m549217761 (); extern "C" void LayoutElement_get_layoutPriority_m2626166170 (); extern "C" void LayoutElement_OnEnable_m1046652381 (); extern "C" void LayoutElement_OnTransformParentChanged_m4077176376 (); extern "C" void LayoutElement_OnDisable_m2822390000 (); extern "C" void LayoutElement_OnDidApplyAnimationProperties_m614601136 (); extern "C" void LayoutElement_OnBeforeTransformParentChanged_m253470231 (); extern "C" void LayoutElement_SetDirty_m1279144619 (); extern "C" void LayoutGroup__ctor_m1400544614 (); extern "C" void LayoutGroup_get_padding_m3073855587 (); extern "C" void LayoutGroup_set_padding_m1597085962 (); extern "C" void LayoutGroup_get_childAlignment_m357689196 (); extern "C" void LayoutGroup_set_childAlignment_m2559376521 (); extern "C" void LayoutGroup_get_rectTransform_m331638721 (); extern "C" void LayoutGroup_get_rectChildren_m2856991542 (); extern "C" void LayoutGroup_CalculateLayoutInputHorizontal_m89763996 (); extern "C" void LayoutGroup_get_minWidth_m1427346727 (); extern "C" void LayoutGroup_get_preferredWidth_m3558143640 (); extern "C" void LayoutGroup_get_flexibleWidth_m2519446442 (); extern "C" void LayoutGroup_get_minHeight_m1801889928 (); extern "C" void LayoutGroup_get_preferredHeight_m3432084791 (); extern "C" void LayoutGroup_get_flexibleHeight_m1297242725 (); extern "C" void LayoutGroup_get_layoutPriority_m3819074141 (); extern "C" void LayoutGroup_OnEnable_m88893536 (); extern "C" void LayoutGroup_OnDisable_m3196636877 (); extern "C" void LayoutGroup_OnDidApplyAnimationProperties_m657723149 (); extern "C" void LayoutGroup_GetTotalMinSize_m3187537614 (); extern "C" void LayoutGroup_GetTotalPreferredSize_m2664141949 (); extern "C" void LayoutGroup_GetTotalFlexibleSize_m2703956501 (); extern "C" void LayoutGroup_GetStartOffset_m3060950207 (); extern "C" void LayoutGroup_SetLayoutInputForAxis_m396008818 (); extern "C" void LayoutGroup_SetChildAlongAxis_m4214960168 (); extern "C" void LayoutGroup_get_isRootLayoutGroup_m3172189078 (); extern "C" void LayoutGroup_OnRectTransformDimensionsChange_m30528906 (); extern "C" void LayoutGroup_OnTransformChildrenChanged_m420993286 (); extern "C" void LayoutGroup_SetDirty_m321385774 (); extern "C" void LayoutRebuilder__ctor_m3516226301 (); extern "C" void LayoutRebuilder__cctor_m1146736720 (); extern "C" void LayoutRebuilder_Initialize_m1265316458 (); extern "C" void LayoutRebuilder_Clear_m922359592 (); extern "C" void LayoutRebuilder_ReapplyDrivenProperties_m965971988 (); extern "C" void LayoutRebuilder_get_transform_m3231462112 (); extern "C" void LayoutRebuilder_IsDestroyed_m4004091228 (); extern "C" void LayoutRebuilder_StripDisabledBehavioursFromList_m51650679 (); extern "C" void LayoutRebuilder_ForceRebuildLayoutImmediate_m3701079759 (); extern "C" void LayoutRebuilder_Rebuild_m407530040 (); extern "C" void LayoutRebuilder_PerformLayoutControl_m724256510 (); extern "C" void LayoutRebuilder_PerformLayoutCalculation_m941802386 (); extern "C" void LayoutRebuilder_MarkLayoutForRebuild_m901621521 (); extern "C" void LayoutRebuilder_ValidLayoutGroup_m1488924317 (); extern "C" void LayoutRebuilder_ValidController_m2724682388 (); extern "C" void LayoutRebuilder_MarkLayoutRootForRebuild_m1708966351 (); extern "C" void LayoutRebuilder_LayoutComplete_m182540522 (); extern "C" void LayoutRebuilder_GraphicUpdateComplete_m408201157 (); extern "C" void LayoutRebuilder_GetHashCode_m1333271044 (); extern "C" void LayoutRebuilder_Equals_m3575022752 (); extern "C" void LayoutRebuilder_ToString_m2403814582 (); extern "C" void LayoutRebuilder_U3Cs_RebuildersU3Em__6_m831129568 (); extern "C" void LayoutRebuilder_U3CStripDisabledBehavioursFromListU3Em__7_m1620076941 (); extern "C" void LayoutRebuilder_U3CRebuildU3Em__8_m1336267783 (); extern "C" void LayoutRebuilder_U3CRebuildU3Em__9_m1269261030 (); extern "C" void LayoutRebuilder_U3CRebuildU3Em__A_m733207006 (); extern "C" void LayoutRebuilder_U3CRebuildU3Em__B_m666200253 (); extern "C" void LayoutUtility_GetMinSize_m220738634 (); extern "C" void LayoutUtility_GetPreferredSize_m889669625 (); extern "C" void LayoutUtility_GetFlexibleSize_m3922234755 (); extern "C" void LayoutUtility_GetMinWidth_m3030453932 (); extern "C" void LayoutUtility_GetPreferredWidth_m2872373467 (); extern "C" void LayoutUtility_GetFlexibleWidth_m1272624485 (); extern "C" void LayoutUtility_GetMinHeight_m1456033095 (); extern "C" void LayoutUtility_GetPreferredHeight_m850505976 (); extern "C" void LayoutUtility_GetFlexibleHeight_m2797895086 (); extern "C" void LayoutUtility_GetLayoutProperty_m846328268 (); extern "C" void LayoutUtility_GetLayoutProperty_m3561974560 (); extern "C" void LayoutUtility_U3CGetMinWidthU3Em__C_m2477279317 (); extern "C" void LayoutUtility_U3CGetPreferredWidthU3Em__D_m626210533 (); extern "C" void LayoutUtility_U3CGetPreferredWidthU3Em__E_m2911073988 (); extern "C" void LayoutUtility_U3CGetFlexibleWidthU3Em__F_m2196499833 (); extern "C" void LayoutUtility_U3CGetMinHeightU3Em__10_m3245482414 (); extern "C" void LayoutUtility_U3CGetPreferredHeightU3Em__11_m3744212990 (); extern "C" void LayoutUtility_U3CGetPreferredHeightU3Em__12_m1734109149 (); extern "C" void LayoutUtility_U3CGetFlexibleHeightU3Em__13_m3482485010 (); extern "C" void Mask__ctor_m3917673311 (); extern "C" void Mask_get_rectTransform_m950047934 (); extern "C" void Mask_get_showMaskGraphic_m2608629537 (); extern "C" void Mask_set_showMaskGraphic_m218433430 (); extern "C" void Mask_get_graphic_m2101144526 (); extern "C" void Mask_MaskEnabled_m1398570944 (); extern "C" void Mask_OnSiblingGraphicEnabledDisabled_m1780324373 (); extern "C" void Mask_OnEnable_m2035884999 (); extern "C" void Mask_OnDisable_m3423830086 (); extern "C" void Mask_IsRaycastLocationValid_m4053137295 (); extern "C" void Mask_GetModifiedMaterial_m3826173342 (); extern "C" void MaskableGraphic__ctor_m3514233785 (); extern "C" void MaskableGraphic_get_onCullStateChanged_m2293098922 (); extern "C" void MaskableGraphic_set_onCullStateChanged_m1901835143 (); extern "C" void MaskableGraphic_get_maskable_m2226181992 (); extern "C" void MaskableGraphic_set_maskable_m3088187909 (); extern "C" void MaskableGraphic_GetModifiedMaterial_m2422156902 (); extern "C" void MaskableGraphic_Cull_m1710243867 (); extern "C" void MaskableGraphic_SetClipRect_m3970693835 (); extern "C" void MaskableGraphic_OnEnable_m487460141 (); extern "C" void MaskableGraphic_OnDisable_m2667299744 (); extern "C" void MaskableGraphic_OnTransformParentChanged_m2836893064 (); extern "C" void MaskableGraphic_ParentMaskStateChanged_m3501359204 (); extern "C" void MaskableGraphic_OnCanvasHierarchyChanged_m3030160609 (); extern "C" void MaskableGraphic_get_canvasRect_m2184399948 (); extern "C" void MaskableGraphic_UpdateClipParent_m2337272942 (); extern "C" void MaskableGraphic_RecalculateClipping_m400162188 (); extern "C" void MaskableGraphic_RecalculateMasking_m2250524558 (); extern "C" void MaskableGraphic_UnityEngine_UI_IClippable_get_rectTransform_m3856601786 (); extern "C" void CullStateChangedEvent__ctor_m2540235971 (); extern "C" void MaskUtilities__ctor_m1166009725 (); extern "C" void MaskUtilities_Notify2DMaskStateChanged_m2199550555 (); extern "C" void MaskUtilities_NotifyStencilStateChanged_m2159873435 (); extern "C" void MaskUtilities_FindRootSortOverrideCanvas_m4219954651 (); extern "C" void MaskUtilities_GetStencilDepth_m2786493988 (); extern "C" void MaskUtilities_GetRectMaskForClippable_m396614586 (); extern "C" void MaskUtilities_GetRectMasksForClip_m447525417 (); extern "C" void Misc_Destroy_m612433153 (); extern "C" void Misc_DestroyImmediate_m40421862 (); extern "C" void Navigation_get_mode_m721480509 (); extern "C" void Navigation_set_mode_m1506614802 (); extern "C" void Navigation_get_selectOnUp_m2566832818 (); extern "C" void Navigation_set_selectOnUp_m2875366329 (); extern "C" void Navigation_get_selectOnDown_m929912185 (); extern "C" void Navigation_set_selectOnDown_m2647056978 (); extern "C" void Navigation_get_selectOnLeft_m1149209502 (); extern "C" void Navigation_set_selectOnLeft_m619081677 (); extern "C" void Navigation_get_selectOnRight_m2410966663 (); extern "C" void Navigation_set_selectOnRight_m1544013280 (); extern "C" void Navigation_get_defaultNavigation_m492829917 (); extern "C" void Outline__ctor_m4004117817 (); extern "C" void Outline_ModifyMesh_m4125422123 (); extern "C" void PositionAsUV1__ctor_m3124267078 (); extern "C" void PositionAsUV1_ModifyMesh_m2424047928 (); extern "C" void RawImage__ctor_m3149617176 (); extern "C" void RawImage_get_mainTexture_m3607327198 (); extern "C" void RawImage_get_texture_m2545896727 (); extern "C" void RawImage_set_texture_m153141914 (); extern "C" void RawImage_get_uvRect_m605244702 (); extern "C" void RawImage_set_uvRect_m1381047731 (); extern "C" void RawImage_SetNativeSize_m131446896 (); extern "C" void RawImage_OnPopulateMesh_m1483685179 (); extern "C" void RectangularVertexClipper__ctor_m1771616896 (); extern "C" void RectangularVertexClipper_GetCanvasRect_m4121299266 (); extern "C" void RectMask2D__ctor_m743839689 (); extern "C" void RectMask2D_get_canvasRect_m3883544836 (); extern "C" void RectMask2D_get_rectTransform_m3879504040 (); extern "C" void RectMask2D_OnEnable_m4063473437 (); extern "C" void RectMask2D_OnDisable_m1854562224 (); extern "C" void RectMask2D_IsRaycastLocationValid_m3081840229 (); extern "C" void RectMask2D_PerformClipping_m2105337834 (); extern "C" void RectMask2D_AddClippable_m3020362282 (); extern "C" void RectMask2D_RemoveClippable_m2506427137 (); extern "C" void RectMask2D_OnTransformParentChanged_m136007544 (); extern "C" void RectMask2D_OnCanvasHierarchyChanged_m329275089 (); extern "C" void Scrollbar__ctor_m842961365 (); extern "C" void Scrollbar_get_handleRect_m2010533702 (); extern "C" void Scrollbar_set_handleRect_m2375555625 (); extern "C" void Scrollbar_get_direction_m2158550533 (); extern "C" void Scrollbar_set_direction_m1167543746 (); extern "C" void Scrollbar_get_value_m3398262479 (); extern "C" void Scrollbar_set_value_m1765490852 (); extern "C" void Scrollbar_get_size_m1139900549 (); extern "C" void Scrollbar_set_size_m298852062 (); extern "C" void Scrollbar_get_numberOfSteps_m1873821577 (); extern "C" void Scrollbar_set_numberOfSteps_m2505501262 (); extern "C" void Scrollbar_get_onValueChanged_m312588368 (); extern "C" void Scrollbar_set_onValueChanged_m2941912493 (); extern "C" void Scrollbar_get_stepSize_m1660915953 (); extern "C" void Scrollbar_Rebuild_m36029024 (); extern "C" void Scrollbar_LayoutComplete_m4096546066 (); extern "C" void Scrollbar_GraphicUpdateComplete_m3945082525 (); extern "C" void Scrollbar_OnEnable_m2059823505 (); extern "C" void Scrollbar_OnDisable_m4165923772 (); extern "C" void Scrollbar_UpdateCachedReferences_m1478280386 (); extern "C" void Scrollbar_Set_m2588040310 (); extern "C" void Scrollbar_Set_m3384196167 (); extern "C" void Scrollbar_OnRectTransformDimensionsChange_m1089670457 (); extern "C" void Scrollbar_get_axis_m3425831999 (); extern "C" void Scrollbar_get_reverseValue_m581327093 (); extern "C" void Scrollbar_UpdateVisuals_m2753592989 (); extern "C" void Scrollbar_UpdateDrag_m494154322 (); extern "C" void Scrollbar_MayDrag_m2868972512 (); extern "C" void Scrollbar_OnBeginDrag_m1703358541 (); extern "C" void Scrollbar_OnDrag_m4023431036 (); extern "C" void Scrollbar_OnPointerDown_m984641739 (); extern "C" void Scrollbar_ClickRepeat_m1553202218 (); extern "C" void Scrollbar_OnPointerUp_m2249681202 (); extern "C" void Scrollbar_OnMove_m2506066825 (); extern "C" void Scrollbar_FindSelectableOnLeft_m976215998 (); extern "C" void Scrollbar_FindSelectableOnRight_m1343135335 (); extern "C" void Scrollbar_FindSelectableOnUp_m2968886994 (); extern "C" void Scrollbar_FindSelectableOnDown_m756918681 (); extern "C" void Scrollbar_OnInitializePotentialDrag_m2407430440 (); extern "C" void Scrollbar_SetDirection_m826288644 (); extern "C" void Scrollbar_UnityEngine_UI_ICanvasElement_IsDestroyed_m3229708772 (); extern "C" void Scrollbar_UnityEngine_UI_ICanvasElement_get_transform_m1065549160 (); extern "C" void U3CClickRepeatU3Ec__Iterator5__ctor_m46482857 (); extern "C" void U3CClickRepeatU3Ec__Iterator5_System_Collections_Generic_IEnumeratorU3CobjectU3E_get_Current_m1538503635 (); extern "C" void U3CClickRepeatU3Ec__Iterator5_System_Collections_IEnumerator_get_Current_m1635106151 (); extern "C" void U3CClickRepeatU3Ec__Iterator5_MoveNext_m451466413 (); extern "C" void U3CClickRepeatU3Ec__Iterator5_Dispose_m1618635686 (); extern "C" void U3CClickRepeatU3Ec__Iterator5_Reset_m1987883094 (); extern "C" void ScrollEvent__ctor_m2724827255 (); extern "C" void ScrollRect__ctor_m3113131930 (); extern "C" void ScrollRect_get_content_m3701632330 (); extern "C" void ScrollRect_set_content_m234982541 (); extern "C" void ScrollRect_get_horizontal_m3680042345 (); extern "C" void ScrollRect_set_horizontal_m943369506 (); extern "C" void ScrollRect_get_vertical_m135712059 (); extern "C" void ScrollRect_set_vertical_m3763666420 (); extern "C" void ScrollRect_get_movementType_m4014199657 (); extern "C" void ScrollRect_set_movementType_m4233390924 (); extern "C" void ScrollRect_get_elasticity_m1540742464 (); extern "C" void ScrollRect_set_elasticity_m957382251 (); extern "C" void ScrollRect_get_inertia_m723925623 (); extern "C" void ScrollRect_set_inertia_m4277812460 (); extern "C" void ScrollRect_get_decelerationRate_m2763364646 (); extern "C" void ScrollRect_set_decelerationRate_m1911965765 (); extern "C" void ScrollRect_get_scrollSensitivity_m1352024717 (); extern "C" void ScrollRect_set_scrollSensitivity_m310245950 (); extern "C" void ScrollRect_get_viewport_m1780465687 (); extern "C" void ScrollRect_set_viewport_m1031184500 (); extern "C" void ScrollRect_get_horizontalScrollbar_m2383265157 (); extern "C" void ScrollRect_set_horizontalScrollbar_m2130920826 (); extern "C" void ScrollRect_get_verticalScrollbar_m801913715 (); extern "C" void ScrollRect_set_verticalScrollbar_m845729640 (); extern "C" void ScrollRect_get_horizontalScrollbarVisibility_m2805283129 (); extern "C" void ScrollRect_set_horizontalScrollbarVisibility_m1831067046 (); extern "C" void ScrollRect_get_verticalScrollbarVisibility_m1678458407 (); extern "C" void ScrollRect_set_verticalScrollbarVisibility_m4230518264 (); extern "C" void ScrollRect_get_horizontalScrollbarSpacing_m2867145992 (); extern "C" void ScrollRect_set_horizontalScrollbarSpacing_m1996166051 (); extern "C" void ScrollRect_get_verticalScrollbarSpacing_m1095438682 (); extern "C" void ScrollRect_set_verticalScrollbarSpacing_m4137600145 (); extern "C" void ScrollRect_get_onValueChanged_m4119396560 (); extern "C" void ScrollRect_set_onValueChanged_m499269979 (); extern "C" void ScrollRect_get_viewRect_m911909082 (); extern "C" void ScrollRect_get_velocity_m4218059637 (); extern "C" void ScrollRect_set_velocity_m4003401302 (); extern "C" void ScrollRect_get_rectTransform_m836427513 (); extern "C" void ScrollRect_Rebuild_m3329025723 (); extern "C" void ScrollRect_LayoutComplete_m1579087085 (); extern "C" void ScrollRect_GraphicUpdateComplete_m2238911074 (); extern "C" void ScrollRect_UpdateCachedData_m4281892159 (); extern "C" void ScrollRect_OnEnable_m4156082604 (); extern "C" void ScrollRect_OnDisable_m430479105 (); extern "C" void ScrollRect_IsActive_m1128064300 (); extern "C" void ScrollRect_EnsureLayoutHasRebuilt_m1972800323 (); extern "C" void ScrollRect_StopMovement_m4209251323 (); extern "C" void ScrollRect_OnScroll_m2633232840 (); extern "C" void ScrollRect_OnInitializePotentialDrag_m2313515395 (); extern "C" void ScrollRect_OnBeginDrag_m1465783272 (); extern "C" void ScrollRect_OnEndDrag_m1604287350 (); extern "C" void ScrollRect_OnDrag_m286963457 (); extern "C" void ScrollRect_SetContentAnchoredPosition_m716182300 (); extern "C" void ScrollRect_LateUpdate_m3780926201 (); extern "C" void ScrollRect_UpdatePrevData_m454081040 (); extern "C" void ScrollRect_UpdateScrollbars_m2912536474 (); extern "C" void ScrollRect_get_normalizedPosition_m1721330264 (); extern "C" void ScrollRect_set_normalizedPosition_m2973019475 (); extern "C" void ScrollRect_get_horizontalNormalizedPosition_m1672288203 (); extern "C" void ScrollRect_set_horizontalNormalizedPosition_m2007203264 (); extern "C" void ScrollRect_get_verticalNormalizedPosition_m4163579805 (); extern "C" void ScrollRect_set_verticalNormalizedPosition_m2636032814 (); extern "C" void ScrollRect_SetHorizontalNormalizedPosition_m653475821 (); extern "C" void ScrollRect_SetVerticalNormalizedPosition_m3957527707 (); extern "C" void ScrollRect_SetNormalizedPosition_m4196700166 (); extern "C" void ScrollRect_RubberDelta_m403235940 (); extern "C" void ScrollRect_OnRectTransformDimensionsChange_m2105458366 (); extern "C" void ScrollRect_get_hScrollingNeeded_m1668641607 (); extern "C" void ScrollRect_get_vScrollingNeeded_m594530553 (); extern "C" void ScrollRect_CalculateLayoutInputHorizontal_m4036022504 (); extern "C" void ScrollRect_CalculateLayoutInputVertical_m4225463418 (); extern "C" void ScrollRect_get_minWidth_m525847771 (); extern "C" void ScrollRect_get_preferredWidth_m2213910348 (); extern "C" void ScrollRect_get_flexibleWidth_m2753178742 (); extern "C" void ScrollRect_get_minHeight_m3920193364 (); extern "C" void ScrollRect_get_preferredHeight_m415558403 (); extern "C" void ScrollRect_get_flexibleHeight_m4247976729 (); extern "C" void ScrollRect_get_layoutPriority_m3681037785 (); extern "C" void ScrollRect_SetLayoutHorizontal_m1751158760 (); extern "C" void ScrollRect_SetLayoutVertical_m1385100154 (); extern "C" void ScrollRect_UpdateScrollbarVisibility_m2808994247 (); extern "C" void ScrollRect_UpdateScrollbarLayout_m2579760607 (); extern "C" void ScrollRect_UpdateBounds_m1752242888 (); extern "C" void ScrollRect_GetBounds_m1535126094 (); extern "C" void ScrollRect_CalculateOffset_m224839950 (); extern "C" void ScrollRect_SetDirty_m93607546 (); extern "C" void ScrollRect_SetDirtyCaching_m4215531847 (); extern "C" void ScrollRect_UnityEngine_UI_ICanvasElement_IsDestroyed_m1861319301 (); extern "C" void ScrollRect_UnityEngine_UI_ICanvasElement_get_transform_m3316531305 (); extern "C" void ScrollRectEvent__ctor_m985343040 (); extern "C" void Selectable__ctor_m1133588277 (); extern "C" void Selectable__cctor_m299402008 (); extern "C" void Selectable_get_allSelectables_m476416992 (); extern "C" void Selectable_get_navigation_m3138151376 (); extern "C" void Selectable_set_navigation_m3946690907 (); extern "C" void Selectable_get_transition_m4100650273 (); extern "C" void Selectable_set_transition_m1538436886 (); extern "C" void Selectable_get_colors_m2926475394 (); extern "C" void Selectable_set_colors_m2365118697 (); extern "C" void Selectable_get_spriteState_m102480676 (); extern "C" void Selectable_set_spriteState_m3715637593 (); extern "C" void Selectable_get_animationTriggers_m4030265988 (); extern "C" void Selectable_set_animationTriggers_m1859718713 (); extern "C" void Selectable_get_targetGraphic_m1206082259 (); extern "C" void Selectable_set_targetGraphic_m54088136 (); extern "C" void Selectable_get_interactable_m1204033370 (); extern "C" void Selectable_set_interactable_m2686686419 (); extern "C" void Selectable_get_isPointerInside_m3778852455 (); extern "C" void Selectable_set_isPointerInside_m1584068316 (); extern "C" void Selectable_get_isPointerDown_m451775501 (); extern "C" void Selectable_set_isPointerDown_m2193598850 (); extern "C" void Selectable_get_hasSelection_m771189340 (); extern "C" void Selectable_set_hasSelection_m138443861 (); extern "C" void Selectable_get_image_m978701700 (); extern "C" void Selectable_set_image_m4179082937 (); extern "C" void Selectable_get_animator_m1533578598 (); extern "C" void Selectable_Awake_m1371193496 (); extern "C" void Selectable_OnCanvasGroupChanged_m4067350875 (); extern "C" void Selectable_IsInteractable_m1810942779 (); extern "C" void Selectable_OnDidApplyAnimationProperties_m4092978140 (); extern "C" void Selectable_OnEnable_m1472090161 (); extern "C" void Selectable_OnSetProperty_m571656523 (); extern "C" void Selectable_OnDisable_m3126059292 (); extern "C" void Selectable_get_currentSelectionState_m730905540 (); extern "C" void Selectable_InstantClearState_m1586585368 (); extern "C" void Selectable_DoStateTransition_m1211483242 (); extern "C" void Selectable_FindSelectable_m1109039701 (); extern "C" void Selectable_GetPointOnRectEdge_m371681446 (); extern "C" void Selectable_Navigate_m2039225725 (); extern "C" void Selectable_FindSelectableOnLeft_m3101734378 (); extern "C" void Selectable_FindSelectableOnRight_m2809695675 (); extern "C" void Selectable_FindSelectableOnUp_m3489533950 (); extern "C" void Selectable_FindSelectableOnDown_m2882437061 (); extern "C" void Selectable_OnMove_m2478875177 (); extern "C" void Selectable_StartColorTween_m2559093428 (); extern "C" void Selectable_DoSpriteSwap_m1929545238 (); extern "C" void Selectable_TriggerAnimation_m2433448647 (); extern "C" void Selectable_IsHighlighted_m4047826052 (); extern "C" void Selectable_IsPressed_m3407797331 (); extern "C" void Selectable_IsPressed_m2192098489 (); extern "C" void Selectable_UpdateSelectionState_m2602683415 (); extern "C" void Selectable_EvaluateAndTransitionToSelectionState_m2419808192 (); extern "C" void Selectable_InternalEvaluateAndTransitionToSelectionState_m543442976 (); extern "C" void Selectable_OnPointerDown_m706592619 (); extern "C" void Selectable_OnPointerUp_m533192658 (); extern "C" void Selectable_OnPointerEnter_m1831644693 (); extern "C" void Selectable_OnPointerExit_m1099674991 (); extern "C" void Selectable_OnSelect_m2798350404 (); extern "C" void Selectable_OnDeselect_m4120267717 (); extern "C" void Selectable_Select_m2377336299 (); extern "C" void SetPropertyUtility_SetColor_m4210708935 (); extern "C" void Shadow__ctor_m2944649643 (); extern "C" void Shadow_get_effectColor_m2953989785 (); extern "C" void Shadow_set_effectColor_m1407835720 (); extern "C" void Shadow_get_effectDistance_m1102454733 (); extern "C" void Shadow_set_effectDistance_m192801982 (); extern "C" void Shadow_get_useGraphicAlpha_m3687634123 (); extern "C" void Shadow_set_useGraphicAlpha_m3814129472 (); extern "C" void Shadow_ApplyShadowZeroAlloc_m338158484 (); extern "C" void Shadow_ApplyShadow_m3534003541 (); extern "C" void Shadow_ModifyMesh_m111179421 (); extern "C" void Slider__ctor_m347403018 (); extern "C" void Slider_get_fillRect_m2450877128 (); extern "C" void Slider_set_fillRect_m3297119715 (); extern "C" void Slider_get_handleRect_m2151134125 (); extern "C" void Slider_set_handleRect_m3189108254 (); extern "C" void Slider_get_direction_m2329138173 (); extern "C" void Slider_set_direction_m1506600084 (); extern "C" void Slider_get_minValue_m84589142 (); extern "C" void Slider_set_minValue_m3023646485 (); extern "C" void Slider_get_maxValue_m1907557124 (); extern "C" void Slider_set_maxValue_m4261736743 (); extern "C" void Slider_get_wholeNumbers_m3990960296 (); extern "C" void Slider_set_wholeNumbers_m3974827169 (); extern "C" void Slider_get_value_m2021634844 (); extern "C" void Slider_set_value_m4201041935 (); extern "C" void Slider_get_normalizedValue_m2918004645 (); extern "C" void Slider_set_normalizedValue_m3382161958 (); extern "C" void Slider_get_onValueChanged_m3585429728 (); extern "C" void Slider_set_onValueChanged_m544103115 (); extern "C" void Slider_get_stepSize_m3189751172 (); extern "C" void Slider_Rebuild_m204900683 (); extern "C" void Slider_LayoutComplete_m3716644733 (); extern "C" void Slider_GraphicUpdateComplete_m837060050 (); extern "C" void Slider_OnEnable_m683704380 (); extern "C" void Slider_OnDisable_m160936561 (); extern "C" void Slider_OnDidApplyAnimationProperties_m317765809 (); extern "C" void Slider_UpdateCachedReferences_m3913831469 (); extern "C" void Slider_ClampValue_m4124802439 (); extern "C" void Slider_Set_m2575079457 (); extern "C" void Slider_Set_m2043565372 (); extern "C" void Slider_OnRectTransformDimensionsChange_m4044006958 (); extern "C" void Slider_get_axis_m591825817 (); extern "C" void Slider_get_reverseValue_m1915319492 (); extern "C" void Slider_UpdateVisuals_m1355864786 (); extern "C" void Slider_UpdateDrag_m913163651 (); extern "C" void Slider_MayDrag_m2965973935 (); extern "C" void Slider_OnPointerDown_m2064356406 (); extern "C" void Slider_OnDrag_m2689187441 (); extern "C" void Slider_OnMove_m3684755636 (); extern "C" void Slider_FindSelectableOnLeft_m601280629 (); extern "C" void Slider_FindSelectableOnRight_m2605040784 (); extern "C" void Slider_FindSelectableOnUp_m3326038345 (); extern "C" void Slider_FindSelectableOnDown_m381983312 (); extern "C" void Slider_OnInitializePotentialDrag_m3120616467 (); extern "C" void Slider_SetDirection_m1955116790 (); extern "C" void Slider_UnityEngine_UI_ICanvasElement_IsDestroyed_m1155329269 (); extern "C" void Slider_UnityEngine_UI_ICanvasElement_get_transform_m2086174425 (); extern "C" void SliderEvent__ctor_m1429088576 (); extern "C" void SpriteState_get_highlightedSprite_m2511270273 (); extern "C" void SpriteState_set_highlightedSprite_m2778751948 (); extern "C" void SpriteState_get_pressedSprite_m591013456 (); extern "C" void SpriteState_set_pressedSprite_m2255650395 (); extern "C" void SpriteState_get_disabledSprite_m1512804506 (); extern "C" void SpriteState_set_disabledSprite_m1447937271 (); extern "C" void StencilMaterial__cctor_m2688860949 (); extern "C" void StencilMaterial_Add_m1399519863 (); extern "C" void StencilMaterial_Add_m310944030 (); extern "C" void StencilMaterial_Add_m264449278 (); extern "C" void StencilMaterial_Remove_m1013236306 (); extern "C" void StencilMaterial_ClearAll_m3351668800 (); extern "C" void MatEntry__ctor_m3447775725 (); extern "C" void Text__ctor_m216739390 (); extern "C" void Text__cctor_m1941857583 (); extern "C" void Text_get_cachedTextGenerator_m337653083 (); extern "C" void Text_get_cachedTextGeneratorForLayout_m1260141146 (); extern "C" void Text_get_mainTexture_m718426116 (); extern "C" void Text_FontTextureChanged_m740758478 (); extern "C" void Text_get_font_m2437753165 (); extern "C" void Text_set_font_m1978976364 (); extern "C" void Text_get_text_m3833038297 (); extern "C" void Text_set_text_m302679026 (); extern "C" void Text_get_supportRichText_m226316153 (); extern "C" void Text_set_supportRichText_m1299469806 (); extern "C" void Text_get_resizeTextForBestFit_m3751631302 (); extern "C" void Text_set_resizeTextForBestFit_m241625791 (); extern "C" void Text_get_resizeTextMinSize_m557265325 (); extern "C" void Text_set_resizeTextMinSize_m3506017186 (); extern "C" void Text_get_resizeTextMaxSize_m4079754047 (); extern "C" void Text_set_resizeTextMaxSize_m2626859572 (); extern "C" void Text_get_alignment_m2624482868 (); extern "C" void Text_set_alignment_m4246723817 (); extern "C" void Text_get_alignByGeometry_m3404407727 (); extern "C" void Text_set_alignByGeometry_m812094372 (); extern "C" void Text_get_fontSize_m2862645687 (); extern "C" void Text_set_fontSize_m2013207524 (); extern "C" void Text_get_horizontalOverflow_m428751238 (); extern "C" void Text_set_horizontalOverflow_m1764021409 (); extern "C" void Text_get_verticalOverflow_m4214690218 (); extern "C" void Text_set_verticalOverflow_m1954003489 (); extern "C" void Text_get_lineSpacing_m2968404366 (); extern "C" void Text_set_lineSpacing_m3440093 (); extern "C" void Text_get_fontStyle_m1258883933 (); extern "C" void Text_set_fontStyle_m2882242342 (); extern "C" void Text_get_pixelsPerUnit_m4148756467 (); extern "C" void Text_OnEnable_m3618900104 (); extern "C" void Text_OnDisable_m957690789 (); extern "C" void Text_UpdateGeometry_m1493208737 (); extern "C" void Text_GetGenerationSettings_m554596117 (); extern "C" void Text_GetTextAnchorPivot_m7192668 (); extern "C" void Text_OnPopulateMesh_m869628001 (); extern "C" void Text_CalculateLayoutInputHorizontal_m2550743748 (); extern "C" void Text_CalculateLayoutInputVertical_m4013862230 (); extern "C" void Text_get_minWidth_m1415472311 (); extern "C" void Text_get_preferredWidth_m2672417320 (); extern "C" void Text_get_flexibleWidth_m3322158618 (); extern "C" void Text_get_minHeight_m1433783032 (); extern "C" void Text_get_preferredHeight_m1744372647 (); extern "C" void Text_get_flexibleHeight_m411516405 (); extern "C" void Text_get_layoutPriority_m4042521525 (); extern "C" void Toggle__ctor_m4173251063 (); extern "C" void Toggle_get_group_m514230010 (); extern "C" void Toggle_set_group_m4294827183 (); extern "C" void Toggle_Rebuild_m1120034174 (); extern "C" void Toggle_LayoutComplete_m3030592304 (); extern "C" void Toggle_GraphicUpdateComplete_m1104468671 (); extern "C" void Toggle_OnEnable_m975679023 (); extern "C" void Toggle_OnDisable_m622215902 (); extern "C" void Toggle_OnDidApplyAnimationProperties_m3936866462 (); extern "C" void Toggle_SetToggleGroup_m4196871663 (); extern "C" void Toggle_get_isOn_m2105608497 (); extern "C" void Toggle_set_isOn_m3467664234 (); extern "C" void Toggle_Set_m1284620590 (); extern "C" void Toggle_Set_m1795838095 (); extern "C" void Toggle_PlayEffect_m2897367561 (); extern "C" void Toggle_Start_m3120388855 (); extern "C" void Toggle_InternalToggle_m3534245278 (); extern "C" void Toggle_OnPointerClick_m3273211815 (); extern "C" void Toggle_OnSubmit_m2658606814 (); extern "C" void Toggle_UnityEngine_UI_ICanvasElement_IsDestroyed_m3606481250 (); extern "C" void Toggle_UnityEngine_UI_ICanvasElement_get_transform_m4001149958 (); extern "C" void ToggleEvent__ctor_m110328288 (); extern "C" void ToggleGroup__ctor_m1179503632 (); extern "C" void ToggleGroup_get_allowSwitchOff_m1895769533 (); extern "C" void ToggleGroup_set_allowSwitchOff_m2429094938 (); extern "C" void ToggleGroup_ValidateToggleIsInGroup_m1953593831 (); extern "C" void ToggleGroup_NotifyToggleOn_m2022309259 (); extern "C" void ToggleGroup_UnregisterToggle_m451307479 (); extern "C" void ToggleGroup_RegisterToggle_m2622505488 (); extern "C" void ToggleGroup_AnyTogglesOn_m401060308 (); extern "C" void ToggleGroup_ActiveToggles_m1762871396 (); extern "C" void ToggleGroup_SetAllTogglesOff_m4240216963 (); extern "C" void ToggleGroup_U3CAnyTogglesOnU3Em__4_m3428369122 (); extern "C" void ToggleGroup_U3CActiveTogglesU3Em__5_m3656404306 (); extern "C" void VertexHelper__ctor_m3006260889 (); extern "C" void VertexHelper__ctor_m4240166773 (); extern "C" void VertexHelper__cctor_m2517678132 (); extern "C" void VertexHelper_Clear_m412394180 (); extern "C" void VertexHelper_get_currentVertCount_m3425330353 (); extern "C" void VertexHelper_get_currentIndexCount_m3847254668 (); extern "C" void VertexHelper_PopulateUIVertex_m910319817 (); extern "C" void VertexHelper_SetUIVertex_m3429482805 (); extern "C" void VertexHelper_FillMesh_m2371101047 (); extern "C" void VertexHelper_Dispose_m2696974486 (); extern "C" void VertexHelper_AddVert_m1784639198 (); extern "C" void VertexHelper_AddVert_m1490065189 (); extern "C" void VertexHelper_AddVert_m1127238042 (); extern "C" void VertexHelper_AddTriangle_m514578993 (); extern "C" void VertexHelper_AddUIVertexQuad_m765809318 (); extern "C" void VertexHelper_AddUIVertexStream_m1704624332 (); extern "C" void VertexHelper_AddUIVertexTriangleStream_m1263262953 (); extern "C" void VertexHelper_GetUIVertexStream_m1078623420 (); extern "C" void VerticalLayoutGroup__ctor_m2648549884 (); extern "C" void VerticalLayoutGroup_CalculateLayoutInputHorizontal_m1704122566 (); extern "C" void VerticalLayoutGroup_CalculateLayoutInputVertical_m920247256 (); extern "C" void VerticalLayoutGroup_SetLayoutHorizontal_m244631242 (); extern "C" void VerticalLayoutGroup_SetLayoutVertical_m2764536540 (); extern "C" void CameraController__ctor_m1305907962 (); extern "C" void CameraController_Start_m253045754 (); extern "C" void CameraController_LateUpdate_m786793369 (); extern "C" void PlayerController__ctor_m2658519486 (); extern "C" void PlayerController_Start_m1605657278 (); extern "C" void PlayerController_FixedUpdate_m270852281 (); extern "C" void PlayerController_OnTriggerEnter_m3392021114 (); extern "C" void PlayerController_SetCountText_m1021738208 (); extern "C" void Rotator__ctor_m1971779198 (); extern "C" void Rotator_Update_m2722475087 (); extern const methodPointerType g_MethodPointers[10404] = { Locale_GetText_m2389348044, Locale_GetText_m2218462520, SafeHandleZeroOrMinusOneIsInvalid__ctor_m3517386007, SafeHandleZeroOrMinusOneIsInvalid_get_IsInvalid_m1067813380, SafeWaitHandle__ctor_m2304648142, SafeWaitHandle_ReleaseHandle_m225694928, CodePointIndexer__ctor_m1627820919, CodePointIndexer_ToIndex_m2811911057, TableRange__ctor_m3599194282, Contraction__ctor_m4198429461, ContractionComparer__ctor_m1678187352, ContractionComparer__cctor_m2104149, ContractionComparer_Compare_m3351171011, Level2Map__ctor_m1114927875, Level2MapComparer__ctor_m1764634816, Level2MapComparer__cctor_m2681975533, Level2MapComparer_Compare_m1356360283, MSCompatUnicodeTable__cctor_m2555601275, MSCompatUnicodeTable_GetTailoringInfo_m350198803, MSCompatUnicodeTable_BuildTailoringTables_m392171468, MSCompatUnicodeTable_SetCJKReferences_m2831602013, MSCompatUnicodeTable_Category_m714095701, MSCompatUnicodeTable_Level1_m1653658500, MSCompatUnicodeTable_Level2_m3161210309, MSCompatUnicodeTable_Level3_m373794822, MSCompatUnicodeTable_IsIgnorable_m3234859979, MSCompatUnicodeTable_IsIgnorableNonSpacing_m4268593916, MSCompatUnicodeTable_ToKanaTypeInsensitive_m3450247664, MSCompatUnicodeTable_ToWidthCompat_m1071471274, MSCompatUnicodeTable_HasSpecialWeight_m3716746070, MSCompatUnicodeTable_IsHalfWidthKana_m1031776025, MSCompatUnicodeTable_IsHiragana_m2175293414, MSCompatUnicodeTable_IsJapaneseSmallLetter_m3143042617, MSCompatUnicodeTable_get_IsReady_m989669506, MSCompatUnicodeTable_GetResource_m1919022169, MSCompatUnicodeTable_UInt32FromBytePtr_m108136383, MSCompatUnicodeTable_FillCJK_m1143983080, MSCompatUnicodeTable_FillCJKCore_m2741346761, MSCompatUnicodeTableUtil__cctor_m2862883485, SimpleCollator__ctor_m3894313767, SimpleCollator__cctor_m1599258646, SimpleCollator_SetCJKTable_m1695548744, SimpleCollator_GetNeutralCulture_m2928766877, SimpleCollator_Category_m191567536, SimpleCollator_Level1_m830769311, SimpleCollator_Level2_m1794183443, SimpleCollator_IsHalfKana_m3193940553, SimpleCollator_GetContraction_m3093419443, SimpleCollator_GetContraction_m1209314148, SimpleCollator_GetTailContraction_m31293987, SimpleCollator_GetTailContraction_m3773938932, SimpleCollator_FilterOptions_m1756004783, SimpleCollator_GetExtenderType_m1908961333, SimpleCollator_ToDashTypeValue_m2421194399, SimpleCollator_FilterExtender_m3148823481, SimpleCollator_IsIgnorable_m4132152338, SimpleCollator_IsSafe_m575256339, SimpleCollator_GetSortKey_m1379820039, SimpleCollator_GetSortKey_m4243574631, SimpleCollator_GetSortKey_m315817675, SimpleCollator_FillSortKeyRaw_m3040933930, SimpleCollator_FillSurrogateSortKeyRaw_m3127065804, SimpleCollator_CompareOrdinal_m712144577, SimpleCollator_CompareQuick_m2053836602, SimpleCollator_CompareOrdinalIgnoreCase_m2671662527, SimpleCollator_Compare_m1335009039, SimpleCollator_ClearBuffer_m3079572920, SimpleCollator_QuickCheckPossible_m2783866695, SimpleCollator_CompareInternal_m2883409076, SimpleCollator_CompareFlagPair_m2729119818, SimpleCollator_IsPrefix_m3203677694, SimpleCollator_IsPrefix_m3891336350, SimpleCollator_IsPrefix_m2215601431, SimpleCollator_IsSuffix_m74058015, SimpleCollator_IsSuffix_m1088571519, SimpleCollator_QuickIndexOf_m2845818816, SimpleCollator_IndexOf_m3062309067, SimpleCollator_IndexOfOrdinal_m1896144901, SimpleCollator_IndexOfOrdinalIgnoreCase_m3414283139, SimpleCollator_IndexOfSortKey_m175081590, SimpleCollator_IndexOf_m859847038, SimpleCollator_LastIndexOf_m2017636865, SimpleCollator_LastIndexOfOrdinal_m2043339535, SimpleCollator_LastIndexOfOrdinalIgnoreCase_m2479821325, SimpleCollator_LastIndexOfSortKey_m1215896936, SimpleCollator_LastIndexOf_m1438809524, SimpleCollator_MatchesForward_m3033109065, SimpleCollator_MatchesForwardCore_m4219153676, SimpleCollator_MatchesPrimitive_m4274637912, SimpleCollator_MatchesBackward_m2723732854, SimpleCollator_MatchesBackwardCore_m1571229341, Context__ctor_m1103265712, PreviousInfo__ctor_m144561586, SortKeyBuffer__ctor_m3429486059, SortKeyBuffer_Reset_m3243252295, SortKeyBuffer_Initialize_m100616957, SortKeyBuffer_AppendCJKExtension_m2180112849, SortKeyBuffer_AppendKana_m1941661717, SortKeyBuffer_AppendNormal_m789725103, SortKeyBuffer_AppendLevel5_m3934449371, SortKeyBuffer_AppendBufferPrimitive_m2920762936, SortKeyBuffer_GetResultAndReset_m4049148397, SortKeyBuffer_GetOptimizedLength_m4238719184, SortKeyBuffer_GetResult_m3192512021, TailoringInfo__ctor_m3207920174, BigInteger__ctor_m3704863258, BigInteger__ctor_m2711034688, BigInteger__ctor_m1494705524, BigInteger__ctor_m504969840, BigInteger__ctor_m3103304609, BigInteger__cctor_m2648738004, BigInteger_get_Rng_m765650082, BigInteger_GenerateRandom_m2802147052, BigInteger_GenerateRandom_m4253307430, BigInteger_Randomize_m2896043860, BigInteger_Randomize_m939072904, BigInteger_BitCount_m2806782665, BigInteger_TestBit_m1773572170, BigInteger_TestBit_m2795990017, BigInteger_SetBit_m2279269508, BigInteger_SetBit_m3438761593, BigInteger_LowestSetBit_m2480304804, BigInteger_GetBytes_m1628218698, BigInteger_ToString_m1883360448, BigInteger_ToString_m3090523388, BigInteger_Normalize_m1377483748, BigInteger_Clear_m2771926564, BigInteger_GetHashCode_m1746556492, BigInteger_ToString_m2572155514, BigInteger_Equals_m2754111464, BigInteger_ModInverse_m2802984018, BigInteger_ModPow_m3768768275, BigInteger_IsProbablePrime_m1415542107, BigInteger_GeneratePseudoPrime_m1117071170, BigInteger_Incr2_m3857837557, BigInteger_op_Implicit_m3211779122, BigInteger_op_Implicit_m2149647129, BigInteger_op_Addition_m1794246055, BigInteger_op_Subtraction_m3817287731, BigInteger_op_Modulus_m4020058202, BigInteger_op_Modulus_m3137058896, BigInteger_op_Division_m1880509270, BigInteger_op_Multiply_m2953359743, BigInteger_op_Multiply_m1950895881, BigInteger_op_LeftShift_m43331734, BigInteger_op_RightShift_m1514227367, BigInteger_op_Equality_m2978468520, BigInteger_op_Inequality_m3358209997, BigInteger_op_Equality_m3743829593, BigInteger_op_Inequality_m1216595348, BigInteger_op_GreaterThan_m2626925084, BigInteger_op_LessThan_m3727321209, BigInteger_op_GreaterThanOrEqual_m1000888957, BigInteger_op_LessThanOrEqual_m4161155456, Kernel_AddSameSign_m3215396177, Kernel_Subtract_m3798488993, Kernel_MinusEq_m327282667, Kernel_PlusEq_m3333254525, Kernel_Compare_m2163492354, Kernel_SingleByteDivideInPlace_m1308374798, Kernel_DwordMod_m1976612823, Kernel_DwordDivMod_m1857966345, Kernel_multiByteDivide_m3174393565, Kernel_LeftShift_m2845478852, Kernel_RightShift_m2481442105, Kernel_MultiplyByDword_m254641343, Kernel_Multiply_m1732433625, Kernel_MultiplyMod2p32pmod_m3017282768, Kernel_modInverse_m293471249, Kernel_modInverse_m2730926279, ModulusRing__ctor_m2714405032, ModulusRing_BarrettReduction_m2942755287, ModulusRing_Multiply_m2973563789, ModulusRing_Difference_m1446083540, ModulusRing_Pow_m3873329921, ModulusRing_Pow_m2579315160, PrimeGeneratorBase__ctor_m1226717416, PrimeGeneratorBase_get_Confidence_m2613103415, PrimeGeneratorBase_get_PrimalityTest_m1532631454, PrimeGeneratorBase_get_TrialDivisionBounds_m1253247865, SequentialSearchPrimeGeneratorBase__ctor_m2757499105, SequentialSearchPrimeGeneratorBase_GenerateSearchBase_m2793952994, SequentialSearchPrimeGeneratorBase_GenerateNewPrime_m1129470714, SequentialSearchPrimeGeneratorBase_GenerateNewPrime_m220784712, SequentialSearchPrimeGeneratorBase_IsPrimeAcceptable_m465227145, PrimalityTest__ctor_m1169421875, PrimalityTest_Invoke_m753416817, PrimalityTest_BeginInvoke_m2556828168, PrimalityTest_EndInvoke_m1884117505, PrimalityTests_GetSPPRounds_m2107793502, PrimalityTests_Test_m3408474536, PrimalityTests_RabinMillerTest_m2609046185, PrimalityTests_SmallPrimeSppTest_m2393113007, Runtime_GetDisplayName_m1581849017, ASN1__ctor_m2151045169, ASN1__ctor_m520959860, ASN1__ctor_m1275189007, ASN1_get_Count_m1333946978, ASN1_get_Tag_m3498647997, ASN1_get_Length_m711165077, ASN1_get_Value_m3158558710, ASN1_set_Value_m1539277917, ASN1_CompareArray_m2898057484, ASN1_CompareValue_m3775459761, ASN1_Add_m4076871950, ASN1_GetBytes_m653053737, ASN1_Decode_m3655129841, ASN1_DecodeTLV_m4051437923, ASN1_get_Item_m210610506, ASN1_Element_m2807922775, ASN1_ToString_m374840985, ASN1Convert_FromInt32_m571910399, ASN1Convert_FromOid_m1191866008, ASN1Convert_ToInt32_m3294327310, ASN1Convert_ToOid_m1584150353, ASN1Convert_ToDateTime_m1541196208, BitConverterLE_GetUIntBytes_m2711216227, BitConverterLE_GetBytes_m3726708497, BitConverterLE_UShortFromBytes_m2244877436, BitConverterLE_UIntFromBytes_m318761967, BitConverterLE_ULongFromBytes_m2716396614, BitConverterLE_ToInt16_m2252348306, BitConverterLE_ToInt32_m2888821382, BitConverterLE_ToSingle_m3430028734, BitConverterLE_ToDouble_m4182216094, BlockProcessor__ctor_m3353238986, BlockProcessor_Finalize_m1137753970, BlockProcessor_Initialize_m3614798244, BlockProcessor_Core_m2224984694, BlockProcessor_Core_m1715183702, BlockProcessor_Final_m2868771374, CryptoConvert_ToInt32LE_m2023521787, CryptoConvert_ToUInt32LE_m558101659, CryptoConvert_GetBytesLE_m62772046, CryptoConvert_ToCapiPrivateKeyBlob_m1139689325, CryptoConvert_FromCapiPublicKeyBlob_m2773702008, CryptoConvert_FromCapiPublicKeyBlob_m1285057119, CryptoConvert_ToCapiPublicKeyBlob_m4141543943, CryptoConvert_ToCapiKeyBlob_m2611438349, DSAManaged__ctor_m1342239545, DSAManaged_add_KeyGenerated_m1677002343, DSAManaged_remove_KeyGenerated_m3864760974, DSAManaged_Finalize_m3333954938, DSAManaged_Generate_m1196580113, DSAManaged_GenerateKeyPair_m414103146, DSAManaged_add_m3640666386, DSAManaged_GenerateParams_m2842017800, DSAManaged_get_Random_m1436172465, DSAManaged_get_KeySize_m3299647161, DSAManaged_get_PublicOnly_m2380856856, DSAManaged_NormalizeArray_m2316124043, DSAManaged_ExportParameters_m4217036623, DSAManaged_ImportParameters_m3610982722, DSAManaged_CreateSignature_m2835018685, DSAManaged_VerifySignature_m2521906789, DSAManaged_Dispose_m3450076380, KeyGeneratedEventHandler__ctor_m3640396755, KeyGeneratedEventHandler_Invoke_m257300999, KeyGeneratedEventHandler_BeginInvoke_m3899350926, KeyGeneratedEventHandler_EndInvoke_m1157390179, KeyBuilder_get_Rng_m4045185360, KeyBuilder_Key_m180785233, KeyBuilder_IV_m3476112319, KeyPairPersistence__ctor_m4074919992, KeyPairPersistence__ctor_m1684061812, KeyPairPersistence__cctor_m487272190, KeyPairPersistence_get_Filename_m2155113634, KeyPairPersistence_get_KeyValue_m204692013, KeyPairPersistence_set_KeyValue_m2790955742, KeyPairPersistence_Load_m625005177, KeyPairPersistence_Save_m870778642, KeyPairPersistence_Remove_m860812121, KeyPairPersistence_get_UserPath_m1086915307, KeyPairPersistence_get_MachinePath_m4003471731, KeyPairPersistence__CanSecure_m255016359, KeyPairPersistence__ProtectUser_m3671478836, KeyPairPersistence__ProtectMachine_m1278598652, KeyPairPersistence__IsUserProtected_m2378307061, KeyPairPersistence__IsMachineProtected_m4266693987, KeyPairPersistence_CanSecure_m4211984108, KeyPairPersistence_ProtectUser_m976461369, KeyPairPersistence_ProtectMachine_m4131870679, KeyPairPersistence_IsUserProtected_m635426682, KeyPairPersistence_IsMachineProtected_m3976964542, KeyPairPersistence_get_CanChange_m3754956646, KeyPairPersistence_get_UseDefaultKeyContainer_m1048698904, KeyPairPersistence_get_UseMachineKeyStore_m2900159998, KeyPairPersistence_get_ContainerName_m3424430483, KeyPairPersistence_Copy_m2616974335, KeyPairPersistence_FromXml_m1868637128, KeyPairPersistence_ToXml_m2810455020, MACAlgorithm__ctor_m1891225170, MACAlgorithm_Initialize_m3361709802, MACAlgorithm_Core_m3581743643, MACAlgorithm_Final_m1570388531, PKCS1__cctor_m332300130, PKCS1_Compare_m2391456096, PKCS1_I2OSP_m2501804848, PKCS1_OS2IP_m2579010453, PKCS1_RSAEP_m3602740544, PKCS1_RSASP1_m4047396749, PKCS1_RSAVP1_m3152001232, PKCS1_Encrypt_v15_m1679755779, PKCS1_Sign_v15_m3245483309, PKCS1_Verify_v15_m2792601436, PKCS1_Verify_v15_m2792585377, PKCS1_Encode_v15_m2534638350, EncryptedPrivateKeyInfo__ctor_m297039621, EncryptedPrivateKeyInfo__ctor_m814995684, EncryptedPrivateKeyInfo_get_Algorithm_m3460417254, EncryptedPrivateKeyInfo_get_EncryptedData_m3098438110, EncryptedPrivateKeyInfo_get_Salt_m3294338600, EncryptedPrivateKeyInfo_get_IterationCount_m3247856054, EncryptedPrivateKeyInfo_Decode_m2270506076, PrivateKeyInfo__ctor_m4185878217, PrivateKeyInfo__ctor_m2892013472, PrivateKeyInfo_get_PrivateKey_m941592214, PrivateKeyInfo_Decode_m2233548064, PrivateKeyInfo_RemoveLeadingZero_m599046126, PrivateKeyInfo_Normalize_m3904382092, PrivateKeyInfo_DecodeRSA_m1382613138, PrivateKeyInfo_DecodeDSA_m1419148139, RSAManaged__ctor_m1958471367, RSAManaged_add_KeyGenerated_m3011900107, RSAManaged_remove_KeyGenerated_m1973955406, RSAManaged_Finalize_m570970668, RSAManaged_GenerateKeyPair_m1527592312, RSAManaged_get_KeySize_m4283487431, RSAManaged_get_PublicOnly_m3109512522, RSAManaged_DecryptValue_m544963905, RSAManaged_EncryptValue_m1785756185, RSAManaged_ExportParameters_m3006701455, RSAManaged_ImportParameters_m1366434854, RSAManaged_Dispose_m1837005162, RSAManaged_ToXmlString_m4064102331, RSAManaged_get_IsCrtPossible_m2743607449, RSAManaged_GetPaddedValue_m213320097, KeyGeneratedEventHandler__ctor_m1163909473, KeyGeneratedEventHandler_Invoke_m3806097557, KeyGeneratedEventHandler_BeginInvoke_m222007324, KeyGeneratedEventHandler_EndInvoke_m1234248689, SymmetricTransform__ctor_m1475215417, SymmetricTransform_System_IDisposable_Dispose_m1151008543, SymmetricTransform_Finalize_m1006776290, SymmetricTransform_Dispose_m450958196, SymmetricTransform_get_CanReuseTransform_m190401535, SymmetricTransform_Transform_m308748098, SymmetricTransform_CBC_m3015659530, SymmetricTransform_CFB_m112575855, SymmetricTransform_OFB_m1761133539, SymmetricTransform_CTS_m921181836, SymmetricTransform_CheckInput_m1764190083, SymmetricTransform_TransformBlock_m2213503636, SymmetricTransform_get_KeepLastBlock_m3624333001, SymmetricTransform_InternalTransformBlock_m887525681, SymmetricTransform_Random_m1163295234, SymmetricTransform_ThrowBadPaddingException_m2110679520, SymmetricTransform_FinalEncrypt_m1422688800, SymmetricTransform_FinalDecrypt_m4189489144, SymmetricTransform_TransformFinalBlock_m173090430, ContentInfo__ctor_m2595262291, ContentInfo__ctor_m943312527, ContentInfo__ctor_m3180474198, ContentInfo__ctor_m1175820379, ContentInfo_get_ASN1_m3134854108, ContentInfo_get_Content_m3215957652, ContentInfo_set_Content_m3455581589, ContentInfo_get_ContentType_m633311998, ContentInfo_set_ContentType_m3906424955, ContentInfo_GetASN1_m1539758703, EncryptedData__ctor_m3201940140, EncryptedData__ctor_m816185204, EncryptedData_get_EncryptionAlgorithm_m2635090815, EncryptedData_get_EncryptedContent_m1390437900, StrongName__cctor_m1937985856, StrongName_get_PublicKey_m4163536910, StrongName_get_PublicKeyToken_m1378294189, StrongName_get_TokenAlgorithm_m1030232697, PKCS12__ctor_m3712246019, PKCS12__ctor_m3690240934, PKCS12__ctor_m252275042, PKCS12__cctor_m2928380682, PKCS12_Decode_m1208795610, PKCS12_Finalize_m510753919, PKCS12_set_Password_m451279849, PKCS12_get_IterationCount_m3782498752, PKCS12_set_IterationCount_m2830125857, PKCS12_get_Certificates_m3935451749, PKCS12_get_RNG_m2501991994, PKCS12_Compare_m143948868, PKCS12_GetSymmetricAlgorithm_m1131954313, PKCS12_Decrypt_m1846702093, PKCS12_Decrypt_m232511250, PKCS12_Encrypt_m2547245285, PKCS12_GetExistingParameters_m713420615, PKCS12_AddPrivateKey_m2603644745, PKCS12_ReadSafeBag_m2164322798, PKCS12_CertificateSafeBag_m3963003161, PKCS12_MAC_m1584310760, PKCS12_GetBytes_m683139820, PKCS12_EncryptedContentInfo_m3437609430, PKCS12_AddCertificate_m1604686507, PKCS12_AddCertificate_m3204746356, PKCS12_RemoveCertificate_m1503902376, PKCS12_RemoveCertificate_m4138771671, PKCS12_Clone_m3498443123, PKCS12_get_MaximumPasswordLength_m2869456565, DeriveBytes__ctor_m2756803278, DeriveBytes__cctor_m3374426783, DeriveBytes_set_HashName_m523420758, DeriveBytes_set_IterationCount_m2864069558, DeriveBytes_set_Password_m1276093179, DeriveBytes_set_Salt_m319391456, DeriveBytes_Adjust_m4034919030, DeriveBytes_Derive_m2199157985, DeriveBytes_DeriveKey_m4278248607, DeriveBytes_DeriveIV_m3746835889, DeriveBytes_DeriveMAC_m4085842831, SafeBag__ctor_m1500172744, SafeBag_get_BagOID_m14265110, SafeBag_get_ASN1_m1523235481, X501__cctor_m1545850908, X501_ToString_m3743123940, X501_ToString_m823511368, X501_AppendEntry_m827206706, X509Certificate__ctor_m3212421763, X509Certificate__cctor_m988953959, X509Certificate_Parse_m750702354, X509Certificate_GetUnsignedBigInteger_m2414881990, X509Certificate_get_DSA_m3669842785, X509Certificate_get_IssuerName_m3431933902, X509Certificate_get_KeyAlgorithmParameters_m1145471883, X509Certificate_get_PublicKey_m1256992391, X509Certificate_get_RawData_m1241414723, X509Certificate_get_SubjectName_m1718232911, X509Certificate_get_ValidFrom_m1301607688, X509Certificate_get_ValidUntil_m2012833186, X509Certificate_GetIssuerName_m3616837067, X509Certificate_GetSubjectName_m3155263730, X509Certificate_GetObjectData_m3977767844, X509Certificate_PEM_m3139059379, X509CertificateCollection__ctor_m2939490888, X509CertificateCollection_System_Collections_IEnumerable_GetEnumerator_m2090803959, X509CertificateCollection_get_Item_m1700022920, X509CertificateCollection_Add_m3333619839, X509CertificateCollection_GetEnumerator_m2493839045, X509CertificateCollection_GetHashCode_m2385527643, X509CertificateEnumerator__ctor_m504493944, X509CertificateEnumerator_System_Collections_IEnumerator_get_Current_m1864372558, X509CertificateEnumerator_System_Collections_IEnumerator_MoveNext_m30952411, X509CertificateEnumerator_System_Collections_IEnumerator_Reset_m2379885912, X509CertificateEnumerator_get_Current_m325537617, X509CertificateEnumerator_MoveNext_m4095170824, X509CertificateEnumerator_Reset_m21349903, X509Extension__ctor_m1503753254, X509Extension_Decode_m2024676052, X509Extension_Equals_m2581060621, X509Extension_GetHashCode_m3467310705, X509Extension_WriteLine_m3127227707, X509Extension_ToString_m633627125, X509ExtensionCollection__ctor_m2030423328, X509ExtensionCollection__ctor_m1676008680, X509ExtensionCollection_System_Collections_IEnumerable_GetEnumerator_m2595246751, SecurityParser__ctor_m1163074771, SecurityParser_LoadXml_m446823232, SecurityParser_ToXml_m3913405971, SecurityParser_OnStartParsing_m3841263363, SecurityParser_OnProcessingInstruction_m1547961809, SecurityParser_OnIgnorableWhitespace_m731146886, SecurityParser_OnStartElement_m4096581066, SecurityParser_OnEndElement_m2589612977, SecurityParser_OnChars_m1522268083, SecurityParser_OnEndParsing_m3668248508, SmallXmlParser__ctor_m3001211011, SmallXmlParser_Error_m26295006, SmallXmlParser_UnexpectedEndError_m2375866660, SmallXmlParser_IsNameChar_m1063489066, SmallXmlParser_IsWhitespace_m2144732407, SmallXmlParser_SkipWhitespaces_m2329793144, SmallXmlParser_HandleWhitespaces_m1038007407, SmallXmlParser_SkipWhitespaces_m3800487407, SmallXmlParser_Peek_m1856282464, SmallXmlParser_Read_m1913414875, SmallXmlParser_Expect_m2513955019, SmallXmlParser_ReadUntil_m2981293420, SmallXmlParser_ReadName_m2721114783, SmallXmlParser_Parse_m1621116747, SmallXmlParser_Cleanup_m614519621, SmallXmlParser_ReadContent_m2273734372, SmallXmlParser_HandleBufferedContent_m1598683251, SmallXmlParser_ReadCharacters_m2964534529, SmallXmlParser_ReadReference_m3589655222, SmallXmlParser_ReadCharacterReference_m4056299549, SmallXmlParser_ReadAttribute_m1488878490, SmallXmlParser_ReadCDATASection_m316037423, SmallXmlParser_ReadComment_m1185826634, AttrListImpl__ctor_m2704548741, AttrListImpl_get_Length_m2232614890, AttrListImpl_GetName_m1594181746, AttrListImpl_GetValue_m3442878158, AttrListImpl_GetValue_m4106706213, AttrListImpl_get_Names_m3037395809, AttrListImpl_get_Values_m713372555, AttrListImpl_Clear_m110682032, AttrListImpl_Add_m1977035706, SmallXmlParserException__ctor_m2365134382, AccessViolationException__ctor_m1376995463, AccessViolationException__ctor_m1694290248, ActivationContext_System_Runtime_Serialization_ISerializable_GetObjectData_m1366995411, ActivationContext_Finalize_m3264355754, ActivationContext_Dispose_m1939940853, ActivationContext_Dispose_m3181365932, Activator_CreateInstance_m1399154923, Activator_CreateInstance_m2161363287, Activator_CreateInstance_m3442201027, Activator_CreateInstance_m3273083411, Activator_CreateInstance_m876910386, Activator_CheckType_m2434998173, Activator_CheckAbstractType_m2181712027, Activator_CreateInstanceInternal_m3564227118, AppDomain_add_UnhandledException_m1729490677, AppDomain_remove_UnhandledException_m1873750054, AppDomain_getFriendlyName_m290133299, AppDomain_getCurDomain_m2514231979, AppDomain_get_CurrentDomain_m3448347417, AppDomain_LoadAssembly_m4215712056, AppDomain_Load_m3534527363, AppDomain_Load_m2577869746, AppDomain_InternalSetContext_m3131801719, AppDomain_InternalGetContext_m41184350, AppDomain_InternalGetDefaultContext_m3839071361, AppDomain_InternalGetProcessGuid_m3162302728, AppDomain_GetProcessGuid_m3698396509, AppDomain_ToString_m1440401511, AppDomain_DoTypeResolve_m2539304708, AppDomainInitializer__ctor_m1326333162, AppDomainInitializer_Invoke_m1655649116, AppDomainInitializer_BeginInvoke_m1784264109, AppDomainInitializer_EndInvoke_m4178097146, AppDomainSetup__ctor_m2756908093, ApplicationException__ctor_m659975414, ApplicationException__ctor_m1727689164, ApplicationException__ctor_m2651787575, ApplicationIdentity_System_Runtime_Serialization_ISerializable_GetObjectData_m769720520, ApplicationIdentity_ToString_m654104720, ArgIterator_Equals_m1215992796, ArgIterator_GetHashCode_m3474761664, ArgumentException__ctor_m571182463, ArgumentException__ctor_m3544856547, ArgumentException__ctor_m2711220147, ArgumentException__ctor_m732321503, ArgumentException__ctor_m618145847, ArgumentException__ctor_m1401467456, ArgumentException_get_ParamName_m1483230569, ArgumentException_get_Message_m2632345848, ArgumentException_GetObjectData_m1913895325, ArgumentNullException__ctor_m2162372070, ArgumentNullException__ctor_m135444188, ArgumentNullException__ctor_m3341069848, ArgumentNullException__ctor_m3819080231, ArgumentOutOfRangeException__ctor_m410800215, ArgumentOutOfRangeException__ctor_m2026296331, ArgumentOutOfRangeException__ctor_m1193970951, ArgumentOutOfRangeException__ctor_m3596949525, ArgumentOutOfRangeException__ctor_m1722319128, ArgumentOutOfRangeException_get_Message_m873931152, ArgumentOutOfRangeException_GetObjectData_m558051445, ArithmeticException__ctor_m3440978604, ArithmeticException__ctor_m4261424086, ArithmeticException__ctor_m2817528301, Array__ctor_m497751576, Array_System_Collections_IList_get_Item_m2415566125, Array_System_Collections_IList_set_Item_m1450941252, Array_System_Collections_IList_Add_m3099269674, Array_System_Collections_IList_Clear_m412725562, Array_System_Collections_IList_Contains_m3746951906, Array_System_Collections_IList_IndexOf_m53357442, Array_System_Collections_IList_Insert_m3772933805, Array_System_Collections_IList_Remove_m4136562011, Array_System_Collections_IList_RemoveAt_m969759165, Array_System_Collections_ICollection_get_Count_m1062882991, Array_InternalArray__ICollection_get_Count_m1680332058, Array_InternalArray__ICollection_get_IsReadOnly_m1501007613, Array_InternalArray__ICollection_Clear_m474435621, Array_InternalArray__RemoveAt_m907509114, Array_get_Length_m1203127607, Array_get_LongLength_m1209728916, Array_get_Rank_m1671008509, Array_GetRank_m2808306300, Array_GetLength_m1450876743, Array_GetLongLength_m1044315650, Array_GetLowerBound_m2369136542, Array_GetValue_m2756916811, Array_SetValue_m2302374076, Array_GetValueImpl_m3335714605, Array_SetValueImpl_m111809118, Array_FastCopy_m256067930, Array_CreateInstanceImpl_m3310710603, Array_get_IsSynchronized_m3792108821, Array_get_SyncRoot_m3847217543, Array_get_IsFixedSize_m2362830166, Array_get_IsReadOnly_m2469891811, Array_GetEnumerator_m2728734362, Array_GetUpperBound_m97365085, Array_GetValue_m244209261, Array_GetValue_m612327306, Array_GetValue_m1617218957, Array_GetValue_m244212206, Array_GetValue_m2095831338, Array_GetValue_m375587694, Array_SetValue_m3564405919, Array_SetValue_m2615500313, Array_SetValue_m235879135, Array_SetValue_m3564402974, Array_SetValue_m1131996281, Array_SetValue_m1477510398, Array_CreateInstance_m1364223436, Array_CreateInstance_m3172696715, Array_CreateInstance_m3652670508, Array_CreateInstance_m1053747690, Array_CreateInstance_m814141195, Array_GetIntArray_m3246603532, Array_CreateInstance_m1056577835, Array_GetValue_m2759746956, Array_SetValue_m2305204221, Array_BinarySearch_m183313925, Array_BinarySearch_m3131524835, Array_BinarySearch_m2035084453, Array_BinarySearch_m3041952835, Array_DoBinarySearch_m1921037304, Array_Clear_m2499577033, Array_ClearInternal_m1225452710, Array_Clone_m1369268734, Array_Copy_m3799309042, Array_Copy_m2598616668, Array_Copy_m583019867, Array_Copy_m3799311987, Array_IndexOf_m480670679, Array_IndexOf_m1662246496, Array_IndexOf_m1794349687, Array_Initialize_m2637385596, Array_LastIndexOf_m673447137, Array_LastIndexOf_m776394134, Array_LastIndexOf_m2203224833, Array_get_swapper_m896107047, Array_Reverse_m3430038334, Array_Reverse_m3064094494, Array_Sort_m3616962096, Array_Sort_m576952892, Array_Sort_m3443575448, Array_Sort_m3912494992, Array_Sort_m2177774092, Array_Sort_m870898844, Array_Sort_m2057456952, Array_Sort_m4285041580, Array_int_swapper_m3033759158, Array_obj_swapper_m2255293358, Array_slow_swapper_m1091278254, Array_double_swapper_m1951199390, Array_new_gap_m3653386306, Array_combsort_m3790031292, Array_combsort_m1119151831, Array_combsort_m4251658817, Array_qsort_m2618274951, Array_swap_m3373592551, Array_compare_m3860906437, Array_CopyTo_m910233845, Array_CopyTo_m910236790, Array_ConstrainedCopy_m695713564, SimpleEnumerator__ctor_m3050649903, SimpleEnumerator_get_Current_m2780033260, SimpleEnumerator_MoveNext_m1861458941, SimpleEnumerator_Reset_m2184834678, SimpleEnumerator_Clone_m3819340217, Swapper__ctor_m1046757893, Swapper_Invoke_m3507571047, Swapper_BeginInvoke_m3139859620, Swapper_EndInvoke_m843808405, ArrayTypeMismatchException__ctor_m3327347719, ArrayTypeMismatchException__ctor_m869946971, ArrayTypeMismatchException__ctor_m3506476232, AssemblyLoadEventHandler__ctor_m1325133929, AssemblyLoadEventHandler_Invoke_m2285851689, AssemblyLoadEventHandler_BeginInvoke_m812195344, AssemblyLoadEventHandler_EndInvoke_m1285684985, AsyncCallback__ctor_m1986959762, AsyncCallback_Invoke_m1752195575, AsyncCallback_BeginInvoke_m363146458, AsyncCallback_EndInvoke_m2904663202, Attribute__ctor_m2985353781, Attribute_CheckParameters_m1745623298, Attribute_GetCustomAttribute_m506754809, Attribute_GetCustomAttribute_m3786533732, Attribute_GetHashCode_m3717491592, Attribute_IsDefined_m165799938, Attribute_IsDefined_m3508553943, Attribute_IsDefined_m1309172166, Attribute_IsDefined_m3614779195, Attribute_Equals_m2390113828, AttributeUsageAttribute__ctor_m3458174515, AttributeUsageAttribute_get_AllowMultiple_m3957081766, AttributeUsageAttribute_set_AllowMultiple_m3296043115, AttributeUsageAttribute_get_Inherited_m927710919, AttributeUsageAttribute_set_Inherited_m4032258508, BitConverter__cctor_m2046566571, BitConverter_AmILittleEndian_m4037180432, BitConverter_DoubleWordsAreSwapped_m4219885442, BitConverter_DoubleToInt64Bits_m4106078782, BitConverter_GetBytes_m223769997, BitConverter_GetBytes_m1348727701, BitConverter_PutBytes_m189291454, BitConverter_ToInt64_m3205751581, BitConverter_ToString_m1865594174, BitConverter_ToString_m190732574, Boolean__cctor_m1619527460, Boolean_System_IConvertible_ToType_m305773363, Boolean_System_IConvertible_ToBoolean_m1529027437, Boolean_System_IConvertible_ToByte_m689202539, Boolean_System_IConvertible_ToChar_m61046955, Boolean_System_IConvertible_ToDateTime_m2146018443, Boolean_System_IConvertible_ToDecimal_m2708222975, Boolean_System_IConvertible_ToDouble_m4044182987, Boolean_System_IConvertible_ToInt16_m1902909573, Boolean_System_IConvertible_ToInt32_m282594809, Boolean_System_IConvertible_ToInt64_m2886263351, Boolean_System_IConvertible_ToSByte_m2350844819, Boolean_System_IConvertible_ToSingle_m249236267, Boolean_System_IConvertible_ToUInt16_m136688779, Boolean_System_IConvertible_ToUInt32_m3723299531, Boolean_System_IConvertible_ToUInt64_m119372075, Boolean_CompareTo_m324613897, Boolean_Equals_m1178456600, Boolean_CompareTo_m3388665506, Boolean_Equals_m4087985523, Boolean_GetHashCode_m841540860, Boolean_Parse_m3007515274, Boolean_ToString_m2512358154, Boolean_GetTypeCode_m1624087223, Boolean_ToString_m2019601528, Buffer_ByteLength_m3699202119, Buffer_BlockCopy_m1580643184, Buffer_ByteLengthInternal_m22076516, Buffer_BlockCopyInternal_m1988595087, Byte_System_IConvertible_ToType_m2101067301, Byte_System_IConvertible_ToBoolean_m750195189, Byte_System_IConvertible_ToByte_m2117963023, Byte_System_IConvertible_ToChar_m1237710763, Byte_System_IConvertible_ToDateTime_m3914393141, Byte_System_IConvertible_ToDecimal_m2270065237, Byte_System_IConvertible_ToDouble_m2741577889, Byte_System_IConvertible_ToInt16_m1270736309, Byte_System_IConvertible_ToInt32_m1299459829, Byte_System_IConvertible_ToInt64_m3271837141, Byte_System_IConvertible_ToSByte_m864432533, Byte_System_IConvertible_ToSingle_m3059059407, Byte_System_IConvertible_ToUInt16_m1061177661, Byte_System_IConvertible_ToUInt32_m4228367665, Byte_System_IConvertible_ToUInt64_m2529248559, Byte_CompareTo_m1774805901, Byte_Equals_m4077775008, Byte_GetHashCode_m2610389752, Byte_CompareTo_m3248632740, Byte_Equals_m2522538359, Byte_Parse_m1558065596, Byte_Parse_m3498070023, Byte_Parse_m2576952376, Byte_TryParse_m1476880242, Byte_TryParse_m570779293, Byte_ToString_m961894880, Byte_ToString_m3965014306, Byte_ToString_m4244510414, Byte_ToString_m1210459538, Char__cctor_m3887439662, Char_System_IConvertible_ToType_m2466414707, Char_System_IConvertible_ToBoolean_m661905383, Char_System_IConvertible_ToByte_m4241151069, Char_System_IConvertible_ToChar_m3360898809, Char_System_IConvertible_ToDateTime_m1177409155, Char_System_IConvertible_ToDecimal_m2181775431, Char_System_IConvertible_ToDouble_m3015824495, Char_System_IConvertible_ToInt16_m2665056295, Char_System_IConvertible_ToInt32_m2693779815, Char_System_IConvertible_ToInt64_m371189831, Char_System_IConvertible_ToSByte_m2258752519, Char_System_IConvertible_ToSingle_m3333306013, Char_System_IConvertible_ToUInt16_m1335424267, Char_System_IConvertible_ToUInt32_m207646975, Char_System_IConvertible_ToUInt64_m2803495165, Char_GetDataTablePointers_m2324968695, Char_CompareTo_m3049402459, Char_Equals_m158269074, Char_CompareTo_m2003432292, Char_Equals_m2979193691, Char_GetHashCode_m3546188522, Char_GetUnicodeCategory_m494586991, Char_IsDigit_m1743537211, Char_IsLetter_m1699036490, Char_IsLetterOrDigit_m2290383044, Char_IsLower_m1584081639, Char_IsSurrogate_m3822546544, Char_IsUpper_m1832446694, Char_IsWhiteSpace_m2745315955, Char_IsWhiteSpace_m2601279167, Char_CheckParameter_m3313481947, Char_Parse_m2418192084, Char_ToLower_m3095077372, Char_ToLowerInvariant_m2407684316, Char_ToLower_m849361594, Char_ToUpper_m3343442427, Char_ToUpperInvariant_m4158859197, Char_ToString_m2089191214, Char_ToString_m2826712476, Char_GetTypeCode_m4226232807, CharEnumerator__ctor_m2119134439, CharEnumerator_System_Collections_IEnumerator_get_Current_m1493871051, CharEnumerator_System_IDisposable_Dispose_m2219960452, CharEnumerator_get_Current_m2945781287, CharEnumerator_Clone_m901055723, CharEnumerator_MoveNext_m4014585483, CharEnumerator_Reset_m383249576, CLSCompliantAttribute__ctor_m435742109, ArrayList__ctor_m1878432947, ArrayList__ctor_m2944534244, ArrayList__ctor_m3809992068, ArrayList__ctor_m2092447551, ArrayList__cctor_m1914750298, ArrayList_get_Item_m1166987603, ArrayList_set_Item_m2414691872, ArrayList_get_Count_m2097776283, ArrayList_get_Capacity_m3412570896, ArrayList_set_Capacity_m1308073401, ArrayList_get_IsFixedSize_m251458097, ArrayList_get_IsReadOnly_m3925803688, ArrayList_get_IsSynchronized_m3702851162, ArrayList_get_SyncRoot_m3144760460, ArrayList_EnsureCapacity_m3260945178, ArrayList_Shift_m1958944947, ArrayList_Add_m3739290814, ArrayList_Clear_m3579533534, ArrayList_Contains_m3069487426, ArrayList_IndexOf_m3912283158, ArrayList_IndexOf_m3469098113, ArrayList_IndexOf_m2652961270, ArrayList_Insert_m3577288841, ArrayList_InsertRange_m149552657, ArrayList_Remove_m2154849791, ArrayList_RemoveAt_m3961189785, ArrayList_CopyTo_m1415118951, ArrayList_CopyTo_m329661392, ArrayList_CopyTo_m3681134010, ArrayList_GetEnumerator_m286938677, ArrayList_AddRange_m92466430, ArrayList_Sort_m1269445711, ArrayList_Sort_m3766841105, ArrayList_ToArray_m4285016508, ArrayList_ToArray_m810504347, ArrayList_Clone_m3926405785, ArrayList_ThrowNewArgumentOutOfRangeException_m2507388507, ArrayList_Synchronized_m4034047634, ArrayList_ReadOnly_m1881161056, ArrayListWrapper__ctor_m2531120873, ArrayListWrapper_get_Item_m4057977780, ArrayListWrapper_set_Item_m602076299, ArrayListWrapper_get_Count_m452148104, ArrayListWrapper_get_Capacity_m1260206851, ArrayListWrapper_set_Capacity_m2188723684, ArrayListWrapper_get_IsFixedSize_m3370166250, ArrayListWrapper_get_IsReadOnly_m2086744527, ArrayListWrapper_get_IsSynchronized_m109922817, ArrayListWrapper_get_SyncRoot_m427241453, ArrayListWrapper_Add_m4158350129, ArrayListWrapper_Clear_m3530269331, ArrayListWrapper_Contains_m1021145147, ArrayListWrapper_IndexOf_m3076823305, ArrayListWrapper_IndexOf_m3633003118, ArrayListWrapper_IndexOf_m3715286313, ArrayListWrapper_Insert_m218981812, ArrayListWrapper_InsertRange_m1261127932, ArrayListWrapper_Remove_m2062487284, ArrayListWrapper_RemoveAt_m1097952068, ArrayListWrapper_CopyTo_m26666194, ArrayListWrapper_CopyTo_m2160991557, ArrayListWrapper_CopyTo_m127332079, ArrayListWrapper_GetEnumerator_m568286678, ArrayListWrapper_AddRange_m819293673, ArrayListWrapper_Clone_m1229511256, ArrayListWrapper_Sort_m20930554, ArrayListWrapper_Sort_m408534076, ArrayListWrapper_ToArray_m1651255351, ArrayListWrapper_ToArray_m2775301700, FixedSizeArrayListWrapper__ctor_m193000370, FixedSizeArrayListWrapper_get_ErrorMessage_m2762836670, FixedSizeArrayListWrapper_get_Capacity_m3089739858, FixedSizeArrayListWrapper_set_Capacity_m383644411, FixedSizeArrayListWrapper_get_IsFixedSize_m1343011119, FixedSizeArrayListWrapper_Add_m1946065152, FixedSizeArrayListWrapper_AddRange_m1220667072, FixedSizeArrayListWrapper_Clear_m2440861404, FixedSizeArrayListWrapper_Insert_m1251937227, FixedSizeArrayListWrapper_InsertRange_m1775317971, FixedSizeArrayListWrapper_Remove_m1591103357, FixedSizeArrayListWrapper_RemoveAt_m3664919515, ReadOnlyArrayListWrapper__ctor_m471776423, ReadOnlyArrayListWrapper_get_ErrorMessage_m1411886211, ReadOnlyArrayListWrapper_get_IsReadOnly_m2940664529, ReadOnlyArrayListWrapper_get_Item_m1660065334, ReadOnlyArrayListWrapper_set_Item_m1186907789, ReadOnlyArrayListWrapper_Sort_m749027708, ReadOnlyArrayListWrapper_Sort_m480650942, SimpleEnumerator__ctor_m1935311375, SimpleEnumerator__cctor_m3488675551, SimpleEnumerator_Clone_m2022283902, SimpleEnumerator_MoveNext_m2664074008, SimpleEnumerator_get_Current_m252748273, SimpleEnumerator_Reset_m268374331, SynchronizedArrayListWrapper__ctor_m4141735093, SynchronizedArrayListWrapper_get_Item_m678734312, SynchronizedArrayListWrapper_set_Item_m3286476863, SynchronizedArrayListWrapper_get_Count_m3690732372, SynchronizedArrayListWrapper_get_Capacity_m4073764791, SynchronizedArrayListWrapper_set_Capacity_m3235728024, SynchronizedArrayListWrapper_get_IsFixedSize_m954881462, SynchronizedArrayListWrapper_get_IsReadOnly_m2563021443, SynchronizedArrayListWrapper_get_IsSynchronized_m4242880693, SynchronizedArrayListWrapper_get_SyncRoot_m2182052385, SynchronizedArrayListWrapper_Add_m1801020901, SynchronizedArrayListWrapper_Clear_m967709279, SynchronizedArrayListWrapper_Contains_m2141754631, SynchronizedArrayListWrapper_IndexOf_m1643782589, SynchronizedArrayListWrapper_IndexOf_m1797551674, SynchronizedArrayListWrapper_IndexOf_m632165597, SynchronizedArrayListWrapper_Insert_m3041883752, SynchronizedArrayListWrapper_InsertRange_m3126926000, SynchronizedArrayListWrapper_Remove_m3298552256, SynchronizedArrayListWrapper_RemoveAt_m761260536, SynchronizedArrayListWrapper_CopyTo_m482181254, SynchronizedArrayListWrapper_CopyTo_m1282221585, SynchronizedArrayListWrapper_CopyTo_m2945798331, SynchronizedArrayListWrapper_GetEnumerator_m1865470114, SynchronizedArrayListWrapper_AddRange_m3039635357, SynchronizedArrayListWrapper_Clone_m4092650148, SynchronizedArrayListWrapper_Sort_m3679045294, SynchronizedArrayListWrapper_Sort_m3231436016, SynchronizedArrayListWrapper_ToArray_m1930965123, SynchronizedArrayListWrapper_ToArray_m3090795384, BitArray__ctor_m3201524094, BitArray__ctor_m4198813761, BitArray_getByte_m3145028169, BitArray_get_Count_m3361743632, BitArray_get_IsSynchronized_m1429626361, BitArray_get_Item_m2410594623, BitArray_set_Item_m3947323368, BitArray_get_Length_m3443319207, BitArray_get_SyncRoot_m2715422501, BitArray_Clone_m2861181472, BitArray_CopyTo_m4014022605, BitArray_Get_m3891356663, BitArray_Set_m3317154012, BitArray_GetEnumerator_m3978161118, BitArrayEnumerator__ctor_m1920950519, BitArrayEnumerator_Clone_m2817229885, BitArrayEnumerator_get_Current_m1969619056, BitArrayEnumerator_MoveNext_m335765299, BitArrayEnumerator_Reset_m1654885828, BitArrayEnumerator_checkVersion_m1931091421, CaseInsensitiveComparer__ctor_m2757957596, CaseInsensitiveComparer__ctor_m2896485459, CaseInsensitiveComparer__cctor_m3410210641, CaseInsensitiveComparer_get_DefaultInvariant_m3275911077, CaseInsensitiveComparer_Compare_m1716797375, CaseInsensitiveHashCodeProvider__ctor_m1687836093, CaseInsensitiveHashCodeProvider__ctor_m2475550317, CaseInsensitiveHashCodeProvider__cctor_m301215120, CaseInsensitiveHashCodeProvider_AreEqual_m2045397501, CaseInsensitiveHashCodeProvider_AreEqual_m3653217300, CaseInsensitiveHashCodeProvider_get_DefaultInvariant_m1403540293, CaseInsensitiveHashCodeProvider_GetHashCode_m517823364, CollectionBase__ctor_m3181013581, CollectionBase_System_Collections_ICollection_CopyTo_m634775447, CollectionBase_System_Collections_ICollection_get_SyncRoot_m3961010597, CollectionBase_System_Collections_ICollection_get_IsSynchronized_m1284188723, CollectionBase_System_Collections_IList_Add_m161097623, CollectionBase_System_Collections_IList_Contains_m2561799305, CollectionBase_System_Collections_IList_IndexOf_m2310978159, CollectionBase_System_Collections_IList_Insert_m917928546, CollectionBase_System_Collections_IList_Remove_m872150918, CollectionBase_System_Collections_IList_get_IsFixedSize_m2924084920, CollectionBase_System_Collections_IList_get_IsReadOnly_m271239489, CollectionBase_System_Collections_IList_get_Item_m2255771116, CollectionBase_System_Collections_IList_set_Item_m2274989497, CollectionBase_get_Count_m313265901, CollectionBase_GetEnumerator_m661855675, CollectionBase_Clear_m587146872, CollectionBase_RemoveAt_m3296919743, CollectionBase_get_InnerList_m2840879970, CollectionBase_get_List_m2531266242, CollectionBase_OnClear_m777794841, CollectionBase_OnClearComplete_m606486578, CollectionBase_OnInsert_m4273696622, CollectionBase_OnInsertComplete_m722388807, CollectionBase_OnRemove_m4013840057, CollectionBase_OnRemoveComplete_m2848404370, CollectionBase_OnSet_m3575325083, CollectionBase_OnSetComplete_m2205481652, CollectionBase_OnValidate_m2432491880, Comparer__ctor_m1283355951, Comparer__ctor_m357023199, Comparer__cctor_m647232606, Comparer_Compare_m3505220244, Comparer_GetObjectData_m2758478157, DictionaryEntry__ctor_m2600671860, DictionaryEntry_get_Key_m3516209325, DictionaryEntry_get_Value_m4281303039, KeyNotFoundException__ctor_m3542895460, KeyNotFoundException__ctor_m171814565, Hashtable__ctor_m1514037738, Hashtable__ctor_m880032671, Hashtable__ctor_m2919534560, Hashtable__ctor_m2902886459, Hashtable__ctor_m556844962, Hashtable__ctor_m2095001914, Hashtable__ctor_m775991879, Hashtable__ctor_m1961291234, Hashtable__ctor_m346689243, Hashtable__ctor_m2213883947, Hashtable__ctor_m553622419, Hashtable__ctor_m2202593038, Hashtable__cctor_m3503400707, Hashtable_System_Collections_IEnumerable_GetEnumerator_m2131971349, Hashtable_set_comparer_m3192953638, Hashtable_set_hcp_m3304781571, Hashtable_get_Count_m3337476178, Hashtable_get_IsSynchronized_m1352381059, Hashtable_get_SyncRoot_m2620554101, Hashtable_get_Keys_m17177747, Hashtable_get_Values_m1695500481, Hashtable_get_Item_m492674313, Hashtable_set_Item_m1018975416, Hashtable_CopyTo_m3581696583, Hashtable_Add_m2279986841, Hashtable_Clear_m3215138325, Hashtable_Contains_m1066475641, Hashtable_GetEnumerator_m737865954, Hashtable_Remove_m2304720630, Hashtable_ContainsKey_m1913745934, Hashtable_Clone_m3562010576, Hashtable_GetObjectData_m4219804808, Hashtable_OnDeserialization_m2896861916, Hashtable_Synchronized_m4005846889, Hashtable_GetHash_m527227236, Hashtable_KeyEquals_m1149622430, Hashtable_AdjustThreshold_m2169901284, Hashtable_SetTable_m463771856, Hashtable_Find_m3443418693, Hashtable_Rehash_m3720779099, Hashtable_PutImpl_m3449217138, Hashtable_CopyToArray_m3683911294, Hashtable_TestPrime_m2080981348, Hashtable_CalcPrime_m1477965287, Hashtable_ToPrime_m840372929, Enumerator__ctor_m2929100063, Enumerator__cctor_m3324675076, Enumerator_FailFast_m625309813, Enumerator_Reset_m1232915318, Enumerator_MoveNext_m2304846205, Enumerator_get_Entry_m213677431, Enumerator_get_Key_m3177998354, Enumerator_get_Value_m1383107108, Enumerator_get_Current_m3445727148, HashKeys__ctor_m1470241507, HashKeys_get_Count_m3782068299, HashKeys_get_IsSynchronized_m3549913758, HashKeys_get_SyncRoot_m3744595786, HashKeys_CopyTo_m1861978568, HashKeys_GetEnumerator_m1874815769, HashValues__ctor_m3879614837, HashValues_get_Count_m2417436125, HashValues_get_IsSynchronized_m1643199180, HashValues_get_SyncRoot_m734931640, HashValues_CopyTo_m1506944218, HashValues_GetEnumerator_m3140901163, KeyMarker__ctor_m3432183904, KeyMarker__cctor_m2836389709, SyncHashtable__ctor_m3716654572, SyncHashtable__ctor_m330612341, SyncHashtable_System_Collections_IEnumerable_GetEnumerator_m4026891787, SyncHashtable_GetObjectData_m765378770, SyncHashtable_get_Count_m3563238812, SyncHashtable_get_IsSynchronized_m3501702649, SyncHashtable_get_SyncRoot_m513487403, SyncHashtable_get_Keys_m4083312137, SyncHashtable_get_Values_m830409911, SyncHashtable_get_Item_m2996310803, SyncHashtable_set_Item_m1054132354, SyncHashtable_CopyTo_m3853140753, SyncHashtable_Add_m626175119, SyncHashtable_Clear_m1117089631, SyncHashtable_Contains_m2133514563, SyncHashtable_GetEnumerator_m1352826924, SyncHashtable_Remove_m1658619584, SyncHashtable_ContainsKey_m3017313540, SyncHashtable_Clone_m1874575834, SortedList__ctor_m3703218657, SortedList__ctor_m3028782514, SortedList__ctor_m690679828, SortedList__ctor_m37047406, SortedList__cctor_m2648532460, SortedList_System_Collections_IEnumerable_GetEnumerator_m76581074, SortedList_get_Count_m418925185, SortedList_get_IsSynchronized_m2706175784, SortedList_get_SyncRoot_m808976468, SortedList_get_IsFixedSize_m296838179, SortedList_get_IsReadOnly_m47942262, SortedList_get_Item_m3913687818, SortedList_set_Item_m3021572719, SortedList_get_Capacity_m3653672298, SortedList_set_Capacity_m1257766347, SortedList_Add_m3440224898, SortedList_Contains_m2222218676, SortedList_GetEnumerator_m201395865, SortedList_Remove_m3031745197, SortedList_CopyTo_m894370686, SortedList_Clone_m2984157137, SortedList_RemoveAt_m1080176299, SortedList_IndexOfKey_m3014350519, SortedList_ContainsKey_m4196656883, SortedList_GetByIndex_m3326735940, SortedList_EnsureCapacity_m3463945643, SortedList_PutImpl_m1191987689, SortedList_GetImpl_m3718651850, SortedList_InitTable_m1786490575, SortedList_Find_m658979188, Enumerator__ctor_m3335019990, Enumerator__cctor_m3450571131, Enumerator_Reset_m3315186463, Enumerator_MoveNext_m1322809720, Enumerator_get_Entry_m3448921202, Enumerator_get_Key_m1154255281, Enumerator_get_Value_m2186199043, Enumerator_get_Current_m2122963403, Enumerator_Clone_m1775779288, Stack__ctor_m1821673314, Stack__ctor_m2374718803, Stack__ctor_m2880977331, Stack_Resize_m1932726631, Stack_get_Count_m3511538634, Stack_get_IsSynchronized_m1915076875, Stack_get_SyncRoot_m320831869, Stack_Clear_m3522773901, Stack_Clone_m2500471496, Stack_CopyTo_m2646481343, Stack_GetEnumerator_m671500004, Stack_Peek_m4186849970, Stack_Pop_m4291786044, Stack_Push_m3581559000, Enumerator__ctor_m2769057665, Enumerator_Clone_m2639856257, Enumerator_get_Current_m1130675124, Enumerator_MoveNext_m2568547317, Enumerator_Reset_m3448965886, Console__cctor_m3994882451, Console_SetEncodings_m3783235582, Console_get_Error_m3008907509, Console_Open_m1728401432, Console_OpenStandardError_m1760848776, Console_OpenStandardInput_m3911497162, Console_OpenStandardOutput_m51663653, ContextBoundObject__ctor_m3620281863, Convert__cctor_m707299055, Convert_InternalFromBase64String_m4258381458, Convert_FromBase64String_m901846280, Convert_ToBase64String_m1841808901, Convert_ToBase64String_m3905122085, Convert_ToBoolean_m3519963972, Convert_ToBoolean_m4054695157, Convert_ToBoolean_m4035732699, Convert_ToBoolean_m4285295428, Convert_ToBoolean_m1934898328, Convert_ToBoolean_m1934901273, Convert_ToBoolean_m2180767915, Convert_ToBoolean_m1934896530, Convert_ToBoolean_m1414469113, Convert_ToBoolean_m849533587, Convert_ToBoolean_m849536532, Convert_ToBoolean_m849531789, Convert_ToBoolean_m531114797, Convert_ToBoolean_m2689543975, Convert_ToByte_m1016186092, Convert_ToByte_m1388227464, Convert_ToByte_m3870622435, Convert_ToByte_m3752700205, Convert_ToByte_m4002262934, Convert_ToByte_m263200262, Convert_ToByte_m263203207, Convert_ToByte_m509069849, Convert_ToByte_m263198464, Convert_ToByte_m25971949, Convert_ToByte_m310449511, Convert_ToByte_m566501093, Convert_ToByte_m566504038, Convert_ToByte_m566499295, Convert_ToByte_m1585524373, Convert_ToChar_m975090646, Convert_ToChar_m353236550, Convert_ToChar_m353239495, Convert_ToChar_m2498420566, Convert_ToChar_m599106137, Convert_ToChar_m353234752, Convert_ToChar_m3723111847, Convert_ToChar_m3357626021, Convert_ToChar_m3357628966, Convert_ToChar_m3357624223, Convert_ToChar_m703219413, Convert_ToDateTime_m4273293575, Convert_ToDateTime_m2667391648, Convert_ToDateTime_m2667393446, Convert_ToDateTime_m2667396391, Convert_ToDateTime_m1222840310, Convert_ToDateTime_m1253401141, Convert_ToDateTime_m2913263033, Convert_ToDateTime_m2082043967, Convert_ToDateTime_m2082045765, Convert_ToDateTime_m2082048710, Convert_ToDecimal_m841898000, Convert_ToDecimal_m3676664690, Convert_ToDecimal_m6300041, Convert_ToDecimal_m255862770, Convert_ToDecimal_m2497653290, Convert_ToDecimal_m2497656235, Convert_ToDecimal_m2743522877, Convert_ToDecimal_m2497651492, Convert_ToDecimal_m2501309835, Convert_ToDecimal_m1115068225, Convert_ToDecimal_m1115071170, Convert_ToDecimal_m1115066427, Convert_ToDecimal_m3776384697, Convert_ToDouble_m1966172364, Convert_ToDouble_m1367243830, Convert_ToDouble_m525641411, Convert_ToDouble_m1150945613, Convert_ToDouble_m1400508342, Convert_ToDouble_m3920050662, Convert_ToDouble_m3920053607, Convert_ToDouble_m4165920249, Convert_ToDouble_m3920048864, Convert_ToDouble_m4191850823, Convert_ToDouble_m2259713797, Convert_ToDouble_m2259716742, Convert_ToDouble_m2259711999, Convert_ToDouble_m1171958389, Convert_ToInt16_m1720411158, Convert_ToInt16_m3439678764, Convert_ToInt16_m3440077982, Convert_ToInt16_m279880205, Convert_ToInt16_m4191059139, Convert_ToInt16_m145654572, Convert_ToInt16_m3741024176, Convert_ToInt16_m3741027121, Convert_ToInt16_m3986893763, Convert_ToInt16_m3741022378, Convert_ToInt16_m2248972561, Convert_ToInt16_m1004860027, Convert_ToInt16_m1004862972, Convert_ToInt16_m1004858229, Convert_ToInt16_m686441237, Convert_ToInt16_m3524047423, Convert_ToInt32_m2303815306, Convert_ToInt32_m100433720, Convert_ToInt32_m100832938, Convert_ToInt32_m863284353, Convert_ToInt32_m3517141967, Convert_ToInt32_m3766704696, Convert_ToInt32_m3303645861, Convert_ToInt32_m3549512503, Convert_ToInt32_m3303641118, Convert_ToInt32_m1053332613, Convert_ToInt32_m330942855, Convert_ToInt32_m330945800, Convert_ToInt32_m330941057, Convert_ToInt32_m12524065, Convert_ToInt32_m2328407475, Convert_ToInt64_m2815084104, Convert_ToInt64_m4109529146, Convert_ToInt64_m4109928364, Convert_ToInt64_m1374553151, Convert_ToInt64_m3672181841, Convert_ToInt64_m3921744570, Convert_ToInt64_m3031549538, Convert_ToInt64_m3031552483, Convert_ToInt64_m3277419125, Convert_ToInt64_m3031547740, Convert_ToInt64_m4240420881, Convert_ToInt64_m946235843, Convert_ToInt64_m485982729, Convert_ToInt64_m485985674, Convert_ToInt64_m485980931, Convert_ToInt64_m167563939, Convert_ToInt64_m2221310705, Convert_ToSByte_m523726500, Convert_ToSByte_m1290929502, Convert_ToSByte_m1291328720, Convert_ToSByte_m3378162843, Convert_ToSByte_m827320437, Convert_ToSByte_m1076883166, Convert_ToSByte_m1554306494, Convert_ToSByte_m1554309439, Convert_ToSByte_m1554304696, Convert_ToSByte_m1295525151, Convert_ToSByte_m1936088621, Convert_ToSByte_m1936091566, Convert_ToSByte_m1936086823, Convert_ToSByte_m2570600013, Convert_ToSingle_m3622587564, Convert_ToSingle_m2381390934, Convert_ToSingle_m2182056611, Convert_ToSingle_m788736365, Convert_ToSingle_m1038299094, Convert_ToSingle_m998872518, Convert_ToSingle_m998875463, Convert_ToSingle_m1244742105, Convert_ToSingle_m998870720, Convert_ToSingle_m459230503, Convert_ToSingle_m1897504549, Convert_ToSingle_m1897507494, Convert_ToSingle_m1897502751, Convert_ToSingle_m1734305365, Convert_ToString_m427788191, Convert_ToString_m1285681781, Convert_ToUInt16_m386651276, Convert_ToUInt16_m3839993974, Convert_ToUInt16_m3840393192, Convert_ToUInt16_m3241087619, Convert_ToUInt16_m2346919309, Convert_ToUInt16_m2596482038, Convert_ToUInt16_m3265893798, Convert_ToUInt16_m3265896743, Convert_ToUInt16_m3511763385, Convert_ToUInt16_m3265892000, Convert_ToUInt16_m3161828615, Convert_ToUInt16_m3455687493, Convert_ToUInt16_m3455690438, Convert_ToUInt16_m141936181, Convert_ToUInt32_m175516108, Convert_ToUInt32_m2606324534, Convert_ToUInt32_m2606723752, Convert_ToUInt32_m3029952451, Convert_ToUInt32_m2201561165, Convert_ToUInt32_m2451123894, Convert_ToUInt32_m3676846822, Convert_ToUInt32_m3676849767, Convert_ToUInt32_m3922716409, Convert_ToUInt32_m3676845024, Convert_ToUInt32_m3903361607, Convert_ToUInt32_m3310332294, Convert_ToUInt32_m3310327551, Convert_ToUInt32_m2991910559, Convert_ToUInt32_m883469173, Convert_ToUInt64_m3087942316, Convert_ToUInt64_m67300950, Convert_ToUInt64_m67700168, Convert_ToUInt64_m1647411363, Convert_ToUInt64_m1741321069, Convert_ToUInt64_m1990883798, Convert_ToUInt64_m2276527046, Convert_ToUInt64_m2276529991, Convert_ToUInt64_m2522396633, Convert_ToUInt64_m2276525248, Convert_ToUInt64_m1711588135, Convert_ToUInt64_m2850089253, Convert_ToUInt64_m2850087455, Convert_ToUInt64_m2531670463, Convert_ToUInt64_m2986662997, Convert_ChangeType_m2922880930, Convert_ToType_m353901888, CultureAwareComparer__ctor_m3948021717, CultureAwareComparer_Compare_m797802695, CultureAwareComparer_Equals_m1431689813, CultureAwareComparer_GetHashCode_m2106379807, CurrentSystemTimeZone__ctor_m1114897456, CurrentSystemTimeZone__ctor_m4151899394, CurrentSystemTimeZone_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m167746118, CurrentSystemTimeZone_GetTimeZoneData_m615725030, CurrentSystemTimeZone_GetDaylightChanges_m2350299512, CurrentSystemTimeZone_GetUtcOffset_m376788806, CurrentSystemTimeZone_OnDeserialization_m3995478209, CurrentSystemTimeZone_GetDaylightTimeFromData_m3433378959, DateTime__ctor_m4059138700, DateTime__ctor_m145640619, DateTime__ctor_m580066412, DateTime__ctor_m1594789867, DateTime__ctor_m270463751, DateTime__ctor_m2747883466, DateTime__ctor_m3805233578, DateTime__cctor_m2266812979, DateTime_System_IConvertible_ToBoolean_m2607169538, DateTime_System_IConvertible_ToByte_m3369899810, DateTime_System_IConvertible_ToChar_m4085197502, DateTime_System_IConvertible_ToDateTime_m1478929736, DateTime_System_IConvertible_ToDecimal_m53652706, DateTime_System_IConvertible_ToDouble_m3492146548, DateTime_System_IConvertible_ToInt16_m3303672066, DateTime_System_IConvertible_ToInt32_m2595315522, DateTime_System_IConvertible_ToInt64_m3286355362, DateTime_System_IConvertible_ToSByte_m551886946, DateTime_System_IConvertible_ToSingle_m1051597858, DateTime_System_IConvertible_ToType_m1980756024, DateTime_System_IConvertible_ToUInt16_m3136984848, DateTime_System_IConvertible_ToUInt32_m634562052, DateTime_System_IConvertible_ToUInt64_m2163654274, DateTime_AbsoluteDays_m1774199309, DateTime_FromTicks_m1238653738, DateTime_get_Month_m1871036171, DateTime_get_Day_m609985447, DateTime_get_DayOfWeek_m1793620473, DateTime_get_Hour_m1857077531, DateTime_get_Minute_m1138831307, DateTime_get_Second_m3430069803, DateTime_GetTimeMonotonic_m2483860980, DateTime_GetNow_m2752959917, DateTime_get_Now_m1812131422, DateTime_get_Ticks_m386468226, DateTime_get_Today_m3010825801, DateTime_get_UtcNow_m685282732, DateTime_get_Year_m2333942068, DateTime_get_Kind_m3496013602, DateTime_Add_m1332740042, DateTime_AddTicks_m2395456952, DateTime_AddMilliseconds_m1717403134, DateTime_AddSeconds_m2515640243, DateTime_Compare_m1646075697, DateTime_CompareTo_m246114144, DateTime_CompareTo_m1522800900, DateTime_Equals_m1479384337, DateTime_FromBinary_m1447091502, DateTime_SpecifyKind_m2123544880, DateTime_DaysInMonth_m1394183022, DateTime_Equals_m13666989, DateTime_CheckDateTimeKind_m1840811157, DateTime_GetHashCode_m2255586565, DateTime_IsLeapYear_m3404721384, DateTime_Parse_m1801557718, DateTime_Parse_m1424797081, DateTime_CoreParse_m2501063101, DateTime_YearMonthDayFormats_m200860137, DateTime__ParseNumber_m223303221, DateTime__ParseEnum_m780384966, DateTime__ParseString_m3760446054, DateTime__ParseAmPm_m618382890, DateTime__ParseTimeSeparator_m4168494975, DateTime__ParseDateSeparator_m1287691040, DateTime_IsLetter_m3983328653, DateTime__DoParse_m760672305, DateTime_ParseExact_m3158704214, DateTime_ParseExact_m4017898168, DateTime_CheckStyle_m1804676438, DateTime_ParseExact_m3576065686, DateTime_Subtract_m4130550807, DateTime_ToString_m3221907059, DateTime_ToString_m1268589345, DateTime_ToString_m2141430949, DateTime_ToLocalTime_m3629183118, DateTime_ToUniversalTime_m691668206, DateTime_op_Addition_m4061583523, DateTime_op_Equality_m2277436664, DateTime_op_GreaterThan_m3846016869, DateTime_op_GreaterThanOrEqual_m717787228, DateTime_op_Inequality_m3446449971, DateTime_op_LessThan_m35073816, DateTime_op_LessThanOrEqual_m354447689, DateTime_op_Subtraction_m3609021319, DateTimeOffset__ctor_m206991153, DateTimeOffset__ctor_m2612619655, DateTimeOffset__ctor_m2468003023, DateTimeOffset__ctor_m846097640, DateTimeOffset__cctor_m2485435494, DateTimeOffset_System_IComparable_CompareTo_m1459743069, DateTimeOffset_System_Runtime_Serialization_ISerializable_GetObjectData_m2682194308, DateTimeOffset_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m3161484655, DateTimeOffset_CompareTo_m1122350244, DateTimeOffset_Equals_m4108087019, DateTimeOffset_Equals_m1431331290, DateTimeOffset_GetHashCode_m1972583858, DateTimeOffset_ToString_m983707174, DateTimeOffset_ToString_m4001156824, DateTimeOffset_get_DateTime_m2501837032, DateTimeOffset_get_Offset_m3938299132, DateTimeOffset_get_UtcDateTime_m2831969300, DateTimeUtils_CountRepeat_m1708225203, DateTimeUtils_ZeroPad_m685144038, DateTimeUtils_ParseQuotedString_m3109565730, DateTimeUtils_GetStandardPattern_m4117827954, DateTimeUtils_GetStandardPattern_m2287988683, DateTimeUtils_ToString_m2982668092, DateTimeUtils_ToString_m2366015855, DBNull__ctor_m1342883088, DBNull__ctor_m200724049, DBNull__cctor_m2492573853, DBNull_System_IConvertible_ToBoolean_m945636952, DBNull_System_IConvertible_ToByte_m3763115532, DBNull_System_IConvertible_ToChar_m1429054760, DBNull_System_IConvertible_ToDateTime_m677875698, DBNull_System_IConvertible_ToDecimal_m3907810552, DBNull_System_IConvertible_ToDouble_m2435356702, DBNull_System_IConvertible_ToInt16_m906928600, DBNull_System_IConvertible_ToInt32_m2582331800, DBNull_System_IConvertible_ToInt64_m3030940728, DBNull_System_IConvertible_ToSByte_m1458080632, DBNull_System_IConvertible_ToSingle_m4000065676, DBNull_System_IConvertible_ToType_m3878736354, DBNull_System_IConvertible_ToUInt16_m1876954426, DBNull_System_IConvertible_ToUInt32_m256639662, DBNull_System_IConvertible_ToUInt64_m2860308204, DBNull_GetObjectData_m825308334, DBNull_ToString_m1866708381, DBNull_ToString_m1417959115, Decimal__ctor_m2513372273, Decimal__ctor_m3224507889, Decimal__ctor_m2172724314, Decimal__ctor_m3224510834, Decimal__ctor_m2172727259, Decimal__ctor_m1313518859, Decimal__ctor_m1063956130, Decimal__cctor_m2694156045, Decimal_System_IConvertible_ToType_m3174931036, Decimal_System_IConvertible_ToBoolean_m632609316, Decimal_System_IConvertible_ToByte_m852949524, Decimal_System_IConvertible_ToChar_m224793940, Decimal_System_IConvertible_ToDateTime_m126860468, Decimal_System_IConvertible_ToDecimal_m1811804854, Decimal_System_IConvertible_ToDouble_m2491245620, Decimal_System_IConvertible_ToInt16_m2684098812, Decimal_System_IConvertible_ToInt32_m1063784048, Decimal_System_IConvertible_ToInt64_m3667452590, Decimal_System_IConvertible_ToSByte_m3132034058, Decimal_System_IConvertible_ToSingle_m2991266196, Decimal_System_IConvertible_ToUInt16_m2878718708, Decimal_System_IConvertible_ToUInt32_m2170362164, Decimal_System_IConvertible_ToUInt64_m2861402004, Decimal_GetBits_m3135740910, Decimal_Add_m228744192, Decimal_Subtract_m4038646005, Decimal_GetHashCode_m3725649587, Decimal_u64_m2792266019, Decimal_s64_m2409928640, Decimal_Equals_m1154754945, Decimal_Equals_m3414174927, Decimal_IsZero_m379800408, Decimal_Floor_m2586872671, Decimal_Multiply_m201714661, Decimal_Divide_m555230192, Decimal_Compare_m2326407199, Decimal_CompareTo_m2551434482, Decimal_CompareTo_m2260095952, Decimal_Equals_m3235245971, Decimal_Parse_m3786250826, Decimal_ThrowAtPos_m2498186320, Decimal_ThrowInvalidExp_m2882909866, Decimal_stripStyles_m1011490529, Decimal_Parse_m2075137301, Decimal_PerformParse_m2251733520, Decimal_ToString_m3542473445, Decimal_ToString_m143310003, Decimal_ToString_m1778338145, Decimal_decimal2UInt64_m3964664210, Decimal_decimal2Int64_m4033216548, Decimal_decimalIncr_m877616783, Decimal_string2decimal_m3618231257, Decimal_decimalSetExponent_m618812921, Decimal_decimal2double_m128837253, Decimal_decimalFloorAndTrunc_m1954139757, Decimal_decimalMult_m3364322611, Decimal_decimalDiv_m3855399918, Decimal_decimalCompare_m57377858, Decimal_op_Increment_m1999568348, Decimal_op_Subtraction_m1143274995, Decimal_op_Multiply_m3464599935, Decimal_op_Division_m3950902742, Decimal_op_Explicit_m444543858, Decimal_op_Explicit_m3069219439, Decimal_op_Explicit_m1899223848, Decimal_op_Explicit_m1178707977, Decimal_op_Explicit_m2040523874, Decimal_op_Explicit_m1320008003, Decimal_op_Explicit_m3678935617, Decimal_op_Explicit_m2958419746, Decimal_op_Implicit_m394719939, Decimal_op_Implicit_m4082450700, Decimal_op_Implicit_m3836579315, Decimal_op_Implicit_m3967123276, Decimal_op_Implicit_m3836581113, Decimal_op_Implicit_m3967125074, Decimal_op_Implicit_m3836584058, Decimal_op_Implicit_m3967128019, Decimal_op_Explicit_m1480046292, Decimal_op_Explicit_m1230483563, Decimal_op_Explicit_m2130641906, Decimal_op_Explicit_m2624557563, Decimal_op_Inequality_m4269318701, Decimal_op_Equality_m4013483186, Decimal_op_GreaterThan_m2234430307, Decimal_op_LessThan_m3506122450, Delegate_get_Method_m669548326, Delegate_get_Target_m2860483769, Delegate_CreateDelegate_internal_m498460281, Delegate_SetMulticastInvoke_m4051533378, Delegate_arg_type_match_m1575175281, Delegate_return_type_match_m2221559117, Delegate_CreateDelegate_m1630815211, Delegate_CreateDelegate_m3460497746, Delegate_CreateDelegate_m2273250141, Delegate_CreateDelegate_m1085193661, Delegate_GetCandidateMethod_m1148532482, Delegate_CreateDelegate_m812395778, Delegate_CreateDelegate_m715202082, Delegate_CreateDelegate_m789236573, Delegate_CreateDelegate_m3528508448, Delegate_Clone_m3463780544, Delegate_Equals_m2291127683, Delegate_GetHashCode_m2407269851, Delegate_GetObjectData_m3060947374, Delegate_GetInvocationList_m1958947583, Delegate_Combine_m1842362874, Delegate_Combine_m2723747920, Delegate_CombineImpl_m3377741042, Delegate_Remove_m3898886541, Delegate_RemoveImpl_m3027030277, DelegateSerializationHolder__ctor_m3368674811, DelegateSerializationHolder_GetDelegateData_m3517598358, DelegateSerializationHolder_GetObjectData_m107938392, DelegateSerializationHolder_GetRealObject_m296541084, DelegateEntry__ctor_m2030858126, DelegateEntry_DeserializeDelegate_m151701220, DebuggableAttribute__ctor_m1767828745, DebuggerDisplayAttribute__ctor_m1198914250, DebuggerDisplayAttribute_set_Name_m332508078, DebuggerHiddenAttribute__ctor_m3386146146, DebuggerStepThroughAttribute__ctor_m1656896911, DebuggerTypeProxyAttribute__ctor_m3197476783, StackFrame__ctor_m3629772014, StackFrame__ctor_m926982238, StackFrame_get_frame_info_m2232383397, StackFrame_GetFileLineNumber_m3834796759, StackFrame_GetFileName_m3640041868, StackFrame_GetSecureFileName_m2430240099, StackFrame_GetILOffset_m2885157332, StackFrame_GetMethod_m1989802200, StackFrame_GetNativeOffset_m2753641064, StackFrame_GetInternalMethodName_m623093646, StackFrame_ToString_m2085846783, StackTrace__ctor_m1636562966, StackTrace__ctor_m449371190, StackTrace__ctor_m109564407, StackTrace__ctor_m2492097932, StackTrace__ctor_m2042930289, StackTrace_init_frames_m198588387, StackTrace_get_trace_m483954897, StackTrace_get_FrameCount_m2721777661, StackTrace_GetFrame_m2975179401, StackTrace_ToString_m317965015, DivideByZeroException__ctor_m3910919290, DivideByZeroException__ctor_m581941947, DllNotFoundException__ctor_m3414970969, DllNotFoundException__ctor_m2210937882, Double_System_IConvertible_ToType_m3081766574, Double_System_IConvertible_ToBoolean_m1420114956, Double_System_IConvertible_ToByte_m3166411992, Double_System_IConvertible_ToChar_m832351220, Double_System_IConvertible_ToDateTime_m2501791934, Double_System_IConvertible_ToDecimal_m87321260, Double_System_IConvertible_ToDouble_m233905130, Double_System_IConvertible_ToInt16_m3883955340, Double_System_IConvertible_ToInt32_m1264391244, Double_System_IConvertible_ToInt64_m1713000172, Double_System_IConvertible_ToSByte_m140140076, Double_System_IConvertible_ToSingle_m1798614104, Double_System_IConvertible_ToUInt16_m3970470150, Double_System_IConvertible_ToUInt32_m2350155386, Double_System_IConvertible_ToUInt64_m658856632, Double_CompareTo_m2864423062, Double_Equals_m1597124279, Double_CompareTo_m2074073668, Double_Equals_m806774885, Double_GetHashCode_m2106126735, Double_IsInfinity_m3094155474, Double_IsNaN_m506471885, Double_IsNegativeInfinity_m553043933, Double_IsPositiveInfinity_m3352165785, Double_Parse_m3110783306, Double_Parse_m2930245738, Double_Parse_m3249074997, Double_Parse_m1451965917, Double_TryParseStringConstant_m2653461779, Double_ParseImpl_m1244982012, Double_ToString_m3380246633, Double_ToString_m937670807, Double_ToString_m2573497243, EntryPointNotFoundException__ctor_m2371781647, EntryPointNotFoundException__ctor_m3139612880, Enum__ctor_m701753108, Enum__cctor_m4092380953, Enum_System_IConvertible_ToBoolean_m2146376156, Enum_System_IConvertible_ToByte_m1060234888, Enum_System_IConvertible_ToChar_m179982628, Enum_System_IConvertible_ToDateTime_m4246330158, Enum_System_IConvertible_ToDecimal_m3666246204, Enum_System_IConvertible_ToDouble_m4172089306, Enum_System_IConvertible_ToInt16_m2840902492, Enum_System_IConvertible_ToInt32_m2869626012, Enum_System_IConvertible_ToInt64_m547036028, Enum_System_IConvertible_ToSByte_m2434598716, Enum_System_IConvertible_ToSingle_m194603528, Enum_System_IConvertible_ToType_m3110119966, Enum_System_IConvertible_ToUInt16_m2491689078, Enum_System_IConvertible_ToUInt32_m1363911786, Enum_System_IConvertible_ToUInt64_m3959759976, Enum_GetTypeCode_m403915996, Enum_get_value_m2922212495, Enum_get_Value_m291898479, Enum_FindPosition_m20879982, Enum_GetName_m3333121265, Enum_IsDefined_m2781598580, Enum_get_underlying_type_m3481337786, Enum_GetUnderlyingType_m2468052512, Enum_FindName_m1872558967, Enum_GetValue_m75952491, Enum_Parse_m1799348482, Enum_compare_value_to_m1798628381, Enum_CompareTo_m1622811206, Enum_ToString_m1469276249, Enum_ToString_m4089777287, Enum_ToString_m1466259273, Enum_ToString_m3635159947, Enum_ToObject_m3484832841, Enum_ToObject_m845831469, Enum_ToObject_m845833267, Enum_ToObject_m845836212, Enum_ToObject_m1129836274, Enum_ToObject_m1091702854, Enum_ToObject_m1448253266, Enum_ToObject_m1448255064, Enum_ToObject_m1448258009, Enum_Equals_m4008135815, Enum_get_hashcode_m3881137336, Enum_GetHashCode_m4018839007, Enum_FormatSpecifier_X_m2324577611, Enum_FormatFlags_m994697154, Enum_Format_m1097709535, Environment_get_SocketSecurityEnabled_m2002704895, Environment_get_NewLine_m1034655108, Environment_get_Platform_m977128040, Environment_GetOSVersionString_m2885926456, Environment_get_OSVersion_m2506362029, Environment_internalGetEnvironmentVariable_m1433380067, Environment_GetEnvironmentVariable_m3419218304, Environment_GetWindowsFolderPath_m274642490, Environment_GetFolderPath_m4247985398, Environment_ReadXdgUserDir_m2296308400, Environment_InternalGetFolderPath_m3585366137, Environment_get_IsRunningOnWindows_m1303597216, Environment_GetMachineConfigPath_m4130630145, Environment_internalGetHome_m253471857, EventArgs__ctor_m1904770202, EventArgs__cctor_m2731205203, EventHandler__ctor_m4096468317, EventHandler_Invoke_m1659461265, EventHandler_BeginInvoke_m76205456, EventHandler_EndInvoke_m2432290285, Exception__ctor_m3223090658, Exception__ctor_m3870771296, Exception__ctor_m3602014243, Exception__ctor_m1328171222, Exception_get_InnerException_m1427945535, Exception_set_HResult_m3566571225, Exception_get_ClassName_m2925782135, Exception_get_Message_m1013139483, Exception_get_Source_m2795291433, Exception_get_StackTrace_m382134187, Exception_GetObjectData_m1945031808, Exception_ToString_m1076460401, Exception_GetFullNameForStackTrace_m130874526, Exception_GetType_m913902486, ExecutionEngineException__ctor_m303736736, ExecutionEngineException__ctor_m2979248353, FieldAccessException__ctor_m4068849444, FieldAccessException__ctor_m843948638, FieldAccessException__ctor_m2990930533, FlagsAttribute__ctor_m4285382720, FormatException__ctor_m2563336121, FormatException__ctor_m27151337, FormatException__ctor_m173965690, GC_SuppressFinalize_m1160635446, Calendar__ctor_m2652724106, Calendar_Clone_m1933662586, Calendar_CheckReadOnly_m955278002, Calendar_get_EraNames_m1732675382, CCFixed_FromDateTime_m3211963997, CCFixed_day_of_week_m3355969935, CCGregorianCalendar_is_leap_year_m229298524, CCGregorianCalendar_fixed_from_dmy_m3822859421, CCGregorianCalendar_year_from_fixed_m1525760974, CCGregorianCalendar_my_from_fixed_m3120089585, CCGregorianCalendar_dmy_from_fixed_m3698401994, CCGregorianCalendar_month_from_fixed_m3688850581, CCGregorianCalendar_day_from_fixed_m3729332281, CCGregorianCalendar_GetDayOfMonth_m2484684921, CCGregorianCalendar_GetMonth_m2310195656, CCGregorianCalendar_GetYear_m632074537, CCMath_div_m3921680315, CCMath_mod_m4177458858, CCMath_div_mod_m3137892397, CompareInfo__ctor_m2717172747, CompareInfo__ctor_m4083915963, CompareInfo__cctor_m2145880322, CompareInfo_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m3454540043, CompareInfo_get_UseManagedCollation_m2323857615, CompareInfo_construct_compareinfo_m2022101582, CompareInfo_free_internal_collator_m1379817450, CompareInfo_internal_compare_m4086146477, CompareInfo_assign_sortkey_m1948194573, CompareInfo_internal_index_m2497885245, CompareInfo_Finalize_m147184759, CompareInfo_internal_compare_managed_m564523597, CompareInfo_internal_compare_switch_m1799621832, CompareInfo_Compare_m163670860, CompareInfo_Compare_m3716808947, CompareInfo_Compare_m2372235443, CompareInfo_Equals_m3684038010, CompareInfo_GetHashCode_m2323369182, CompareInfo_GetSortKey_m3202721135, CompareInfo_IndexOf_m2367270856, CompareInfo_internal_index_managed_m3605761693, CompareInfo_internal_index_switch_m2905236232, CompareInfo_IndexOf_m2925180783, CompareInfo_IsPrefix_m376759374, CompareInfo_IsSuffix_m1542106991, CompareInfo_LastIndexOf_m2014556670, CompareInfo_LastIndexOf_m2573358757, CompareInfo_ToString_m1329064616, CompareInfo_get_LCID_m2545212208, CultureInfo__ctor_m3984190515, CultureInfo__ctor_m3309312746, CultureInfo__ctor_m501073747, CultureInfo__ctor_m799101632, CultureInfo__ctor_m2439903714, CultureInfo__cctor_m2140474891, CultureInfo_get_InvariantCulture_m764001524, CultureInfo_get_CurrentCulture_m2905498779, CultureInfo_get_CurrentUICulture_m1742589319, CultureInfo_ConstructCurrentCulture_m3092907025, CultureInfo_ConstructCurrentUICulture_m1453287293, CultureInfo_get_LCID_m1645560313, CultureInfo_get_Name_m1067687641, CultureInfo_get_Parent_m451838736, CultureInfo_get_TextInfo_m3424110770, CultureInfo_get_IcuName_m794066458, CultureInfo_Clone_m1893614152, CultureInfo_Equals_m2811537169, CultureInfo_GetHashCode_m1389692277, CultureInfo_ToString_m429412721, CultureInfo_get_CompareInfo_m1894655206, CultureInfo_get_IsNeutralCulture_m3281017630, CultureInfo_CheckNeutral_m2341300737, CultureInfo_get_NumberFormat_m149371268, CultureInfo_set_NumberFormat_m929801593, CultureInfo_get_DateTimeFormat_m1881597700, CultureInfo_set_DateTimeFormat_m1095763797, CultureInfo_get_IsReadOnly_m3153492313, CultureInfo_GetFormat_m1536954785, CultureInfo_Construct_m2429096343, CultureInfo_ConstructInternalLocaleFromName_m3079104193, CultureInfo_ConstructInternalLocaleFromLcid_m332238777, CultureInfo_ConstructInternalLocaleFromCurrentLocale_m39643311, CultureInfo_construct_internal_locale_from_lcid_m1451282539, CultureInfo_construct_internal_locale_from_name_m3409722447, CultureInfo_construct_internal_locale_from_current_locale_m2579188120, CultureInfo_construct_datetime_format_m650587571, CultureInfo_construct_number_format_m650450789, CultureInfo_ConstructInvariant_m2998357762, CultureInfo_CreateTextInfo_m2501367740, CultureInfo_CreateCulture_m4255235762, DateTimeFormatInfo__ctor_m476740351, DateTimeFormatInfo__ctor_m594580360, DateTimeFormatInfo__cctor_m770025765, DateTimeFormatInfo_GetInstance_m619500550, DateTimeFormatInfo_get_IsReadOnly_m1677012783, DateTimeFormatInfo_ReadOnly_m3611650447, DateTimeFormatInfo_Clone_m1570337592, DateTimeFormatInfo_GetFormat_m3554337457, DateTimeFormatInfo_GetAbbreviatedMonthName_m3331851106, DateTimeFormatInfo_GetEraName_m766646867, DateTimeFormatInfo_GetMonthName_m2729105407, DateTimeFormatInfo_get_RawAbbreviatedDayNames_m771068001, DateTimeFormatInfo_get_RawAbbreviatedMonthNames_m3687851005, DateTimeFormatInfo_get_RawDayNames_m3273728530, DateTimeFormatInfo_get_RawMonthNames_m3562933614, DateTimeFormatInfo_get_AMDesignator_m878927810, DateTimeFormatInfo_get_PMDesignator_m1885483027, DateTimeFormatInfo_get_DateSeparator_m2833276087, DateTimeFormatInfo_get_TimeSeparator_m3488620600, DateTimeFormatInfo_get_LongDatePattern_m3644703302, DateTimeFormatInfo_get_ShortDatePattern_m1215316584, DateTimeFormatInfo_get_ShortTimePattern_m1542255145, DateTimeFormatInfo_get_LongTimePattern_m3971641863, DateTimeFormatInfo_get_MonthDayPattern_m1446747604, DateTimeFormatInfo_get_YearMonthPattern_m2214456463, DateTimeFormatInfo_get_FullDateTimePattern_m1244884934, DateTimeFormatInfo_get_CurrentInfo_m2432806571, DateTimeFormatInfo_get_InvariantInfo_m1430381298, DateTimeFormatInfo_get_Calendar_m1179014650, DateTimeFormatInfo_set_Calendar_m2253923569, DateTimeFormatInfo_get_RFC1123Pattern_m3931364898, DateTimeFormatInfo_get_RoundtripPattern_m3512058911, DateTimeFormatInfo_get_SortableDateTimePattern_m1830034941, DateTimeFormatInfo_get_UniversalSortableDateTimePattern_m1771717908, DateTimeFormatInfo_GetAllDateTimePatternsInternal_m1326261985, DateTimeFormatInfo_FillAllDateTimePatterns_m1091470146, DateTimeFormatInfo_GetAllRawDateTimePatterns_m655159675, DateTimeFormatInfo_GetDayName_m186743586, DateTimeFormatInfo_GetAbbreviatedDayName_m3899742661, DateTimeFormatInfo_FillInvariantPatterns_m1116985894, DateTimeFormatInfo_PopulateCombinedList_m498527762, DaylightTime__ctor_m3056331743, DaylightTime_get_Start_m3918072881, DaylightTime_get_End_m1152979434, DaylightTime_get_Delta_m2790906475, GregorianCalendar__ctor_m2553712055, GregorianCalendar__ctor_m1867739610, GregorianCalendar_get_Eras_m1588180428, GregorianCalendar_set_CalendarType_m158688434, GregorianCalendar_GetDayOfMonth_m4091932953, GregorianCalendar_GetDayOfWeek_m3196705338, GregorianCalendar_GetEra_m1048758548, GregorianCalendar_GetMonth_m2408004904, GregorianCalendar_GetYear_m3821818313, NumberFormatInfo__ctor_m2794192754, NumberFormatInfo__ctor_m615782993, NumberFormatInfo__ctor_m2099481178, NumberFormatInfo__cctor_m177310867, NumberFormatInfo_get_CurrencyDecimalDigits_m3362896561, NumberFormatInfo_get_CurrencyDecimalSeparator_m3291912373, NumberFormatInfo_get_CurrencyGroupSeparator_m4103050439, NumberFormatInfo_get_RawCurrencyGroupSizes_m2648216277, NumberFormatInfo_get_CurrencyNegativePattern_m1592053109, NumberFormatInfo_get_CurrencyPositivePattern_m354581553, NumberFormatInfo_get_CurrencySymbol_m4206521017, NumberFormatInfo_get_CurrentInfo_m1150615631, NumberFormatInfo_get_InvariantInfo_m1900501910, NumberFormatInfo_get_NaNSymbol_m1550367333, NumberFormatInfo_get_NegativeInfinitySymbol_m3062678821, NumberFormatInfo_get_NegativeSign_m760927938, NumberFormatInfo_get_NumberDecimalDigits_m1540619001, NumberFormatInfo_get_NumberDecimalSeparator_m2024629677, NumberFormatInfo_get_NumberGroupSeparator_m2680504255, NumberFormatInfo_get_RawNumberGroupSizes_m358731277, NumberFormatInfo_get_NumberNegativePattern_m2729974717, NumberFormatInfo_set_NumberNegativePattern_m3232258430, NumberFormatInfo_get_PercentDecimalDigits_m1070008937, NumberFormatInfo_get_PercentDecimalSeparator_m3069173163, NumberFormatInfo_get_PercentGroupSeparator_m1671536445, NumberFormatInfo_get_RawPercentGroupSizes_m2144395753, NumberFormatInfo_get_PercentNegativePattern_m1445269293, NumberFormatInfo_get_PercentPositivePattern_m207797737, NumberFormatInfo_get_PercentSymbol_m4146154287, NumberFormatInfo_get_PerMilleSymbol_m1320523860, NumberFormatInfo_get_PositiveInfinitySymbol_m1200376553, NumberFormatInfo_get_PositiveSign_m1169031558, NumberFormatInfo_GetFormat_m219671647, NumberFormatInfo_Clone_m1999373130, NumberFormatInfo_GetInstance_m3822355626, SortKey__ctor_m1693041873, SortKey__ctor_m2331146324, SortKey_Compare_m3672073378, SortKey_get_OriginalString_m3208667701, SortKey_get_KeyData_m3767193105, SortKey_Equals_m477142412, SortKey_GetHashCode_m3388500464, SortKey_ToString_m358511190, TextInfo__ctor_m3402153128, TextInfo__ctor_m100037022, TextInfo_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m3742228713, TextInfo_get_ListSeparator_m3704127084, TextInfo_get_CultureName_m346063966, TextInfo_Equals_m2282464544, TextInfo_GetHashCode_m265055480, TextInfo_ToString_m2104789920, TextInfo_ToLower_m4134533294, TextInfo_ToUpper_m87931053, TextInfo_ToLower_m1323104334, TextInfo_Clone_m2796816861, Guid__ctor_m4231849149, Guid__ctor_m1439809125, Guid__cctor_m2766110369, Guid_CheckNull_m2831368219, Guid_CheckLength_m1965613350, Guid_CheckArray_m2333985879, Guid_Compare_m3677181275, Guid_CompareTo_m899467726, Guid_Equals_m1613304319, Guid_CompareTo_m4163940548, Guid_Equals_m2229489973, Guid_GetHashCode_m885349207, Guid_ToHex_m1518905113, Guid_NewGuid_m3560729310, Guid_AppendInt_m60474956, Guid_AppendShort_m2766674707, Guid_AppendByte_m1375613333, Guid_BaseToString_m2905357353, Guid_ToString_m2528531937, Guid_ToString_m2135662273, Guid_ToString_m3177248019, IndexOutOfRangeException__ctor_m707236112, IndexOutOfRangeException__ctor_m1621772274, IndexOutOfRangeException__ctor_m2445908561, Int16_System_IConvertible_ToBoolean_m669530817, Int16_System_IConvertible_ToByte_m3751510295, Int16_System_IConvertible_ToChar_m946778327, Int16_System_IConvertible_ToDateTime_m1660193143, Int16_System_IConvertible_ToDecimal_m86989203, Int16_System_IConvertible_ToDouble_m2343874615, Int16_System_IConvertible_ToInt16_m1181902809, Int16_System_IConvertible_ToInt32_m54125517, Int16_System_IConvertible_ToInt64_m2649973707, Int16_System_IConvertible_ToSByte_m2013479079, Int16_System_IConvertible_ToSingle_m2834549719, Int16_System_IConvertible_ToType_m1209633567, Int16_System_IConvertible_ToUInt16_m2309149559, Int16_System_IConvertible_ToUInt32_m3984552759, Int16_System_IConvertible_ToUInt64_m138194391, Int16_CompareTo_m2745013685, Int16_Equals_m3652534636, Int16_GetHashCode_m2943154640, Int16_CompareTo_m759386634, Int16_Equals_m373019507, Int16_Parse_m1211345080, Int16_Parse_m1815685098, Int16_Parse_m1284520629, Int16_TryParse_m1822994460, Int16_ToString_m1124031606, Int16_ToString_m3882509540, Int16_ToString_m2054337100, Int16_ToString_m416093480, Int32_System_IConvertible_ToBoolean_m1849098567, Int32_System_IConvertible_ToByte_m3739727953, Int32_System_IConvertible_ToChar_m934995985, Int32_System_IConvertible_ToDateTime_m3867055025, Int32_System_IConvertible_ToDecimal_m1266556953, Int32_System_IConvertible_ToDouble_m3905945841, Int32_System_IConvertible_ToInt16_m816650207, Int32_System_IConvertible_ToInt32_m3983840211, Int32_System_IConvertible_ToInt64_m2284721105, Int32_System_IConvertible_ToSByte_m1648226477, Int32_System_IConvertible_ToSingle_m101653649, Int32_System_IConvertible_ToType_m3850025817, Int32_System_IConvertible_ToUInt16_m3871220785, Int32_System_IConvertible_ToUInt32_m1251656689, Int32_System_IConvertible_ToUInt64_m1700265617, Int32_CompareTo_m2684051823, Int32_Equals_m4061110258, Int32_GetHashCode_m3396943446, Int32_CompareTo_m2558537238, Int32_Equals_m3849884467, Int32_ProcessTrailingWhitespace_m1289423315, Int32_Parse_m95497208, Int32_Parse_m981442986, Int32_CheckStyle_m1911119684, Int32_JumpOverWhite_m2053318471, Int32_FindSign_m549497136, Int32_FindCurrency_m1672259821, Int32_FindExponent_m2404586770, Int32_FindOther_m2390480221, Int32_ValidDigit_m2197524532, Int32_GetFormatException_m2892587262, Int32_Parse_m1713063353, Int32_Parse_m3837759498, Int32_Parse_m2659730549, Int32_TryParse_m695344220, Int32_TryParse_m2457543725, Int32_ToString_m1286526384, Int32_ToString_m881186462, Int32_ToString_m3853485906, Int32_ToString_m4261017954, Int32_GetTypeCode_m1231080401, Int64_System_IConvertible_ToBoolean_m3781149192, Int64_System_IConvertible_ToByte_m1202689840, Int64_System_IConvertible_ToChar_m2692925168, Int64_System_IConvertible_ToDateTime_m3631082256, Int64_System_IConvertible_ToDecimal_m3198607578, Int64_System_IConvertible_ToDouble_m1058776080, Int64_System_IConvertible_ToInt16_m3772847328, Int64_System_IConvertible_ToInt32_m2645070036, Int64_System_IConvertible_ToInt64_m945950930, Int64_System_IConvertible_ToSByte_m309456302, Int64_System_IConvertible_ToSingle_m1549451184, Int64_System_IConvertible_ToType_m3213378488, Int64_System_IConvertible_ToUInt16_m1024051024, Int64_System_IConvertible_ToUInt32_m2699454224, Int64_System_IConvertible_ToUInt64_m3148063152, Int64_CompareTo_m3843070222, Int64_Equals_m1990436019, Int64_GetHashCode_m2140836887, Int64_CompareTo_m1210454552, Int64_Equals_m1843428819, Int64_Parse_m3451396568, Int64_Parse_m1096035146, Int64_Parse_m3299867831, Int64_Parse_m2426231402, Int64_Parse_m913466901, Int64_TryParse_m2106581948, Int64_TryParse_m1199101227, Int64_ToString_m3478011791, Int64_ToString_m1593114429, Int64_ToString_m2505400275, Int64_ToString_m3523878849, IntPtr__ctor_m2136600871, IntPtr__ctor_m2136603816, IntPtr__ctor_m2509422495, IntPtr__ctor_m1930682647, IntPtr_System_Runtime_Serialization_ISerializable_GetObjectData_m1875995893, IntPtr_get_Size_m2848612188, IntPtr_Equals_m3488505417, IntPtr_GetHashCode_m783209249, IntPtr_ToInt64_m2695254659, IntPtr_ToPointer_m2676680906, IntPtr_ToString_m1212174359, IntPtr_ToString_m2416995403, IntPtr_op_Equality_m72843924, IntPtr_op_Inequality_m10053967, IntPtr_op_Explicit_m2174167756, IntPtr_op_Explicit_m2174170701, IntPtr_op_Explicit_m2546989380, IntPtr_op_Explicit_m1500672818, IntPtr_op_Explicit_m2322222010, InvalidCastException__ctor_m1930928124, InvalidCastException__ctor_m2000083078, InvalidCastException__ctor_m2881613629, InvalidOperationException__ctor_m355676978, InvalidOperationException__ctor_m1485483280, InvalidOperationException__ctor_m2119621158, InvalidOperationException__ctor_m3886056819, BinaryReader__ctor_m449904828, BinaryReader__ctor_m3922058197, BinaryReader_System_IDisposable_Dispose_m2749408410, BinaryReader_get_BaseStream_m2902401947, BinaryReader_Close_m52775227, BinaryReader_Dispose_m2135076121, BinaryReader_FillBuffer_m3729291059, BinaryReader_Read_m2496479153, BinaryReader_Read_m3280906008, BinaryReader_Read_m2981101450, BinaryReader_ReadCharBytes_m1651708170, BinaryReader_Read7BitEncodedInt_m1880666088, BinaryReader_ReadBoolean_m1888598835, BinaryReader_ReadByte_m3105954249, BinaryReader_ReadBytes_m3249452767, BinaryReader_ReadChar_m2116266889, BinaryReader_ReadDecimal_m2694462597, BinaryReader_ReadDouble_m2474061801, BinaryReader_ReadInt16_m3968581195, BinaryReader_ReadInt32_m1620214591, BinaryReader_ReadInt64_m2883282109, BinaryReader_ReadSByte_m963271833, BinaryReader_ReadString_m1372899305, BinaryReader_ReadSingle_m2118302857, BinaryReader_ReadUInt16_m3403093289, BinaryReader_ReadUInt32_m3616500457, BinaryReader_ReadUInt64_m4114149001, BinaryReader_CheckBuffer_m244572668, Directory_CreateDirectory_m677877474, Directory_CreateDirectoriesInternal_m1545778887, Directory_Exists_m4117375188, Directory_GetCurrentDirectory_m3403080603, Directory_GetFiles_m2573902858, Directory_GetFileSystemEntries_m3873165372, DirectoryInfo__ctor_m4029233824, DirectoryInfo__ctor_m2875622621, DirectoryInfo__ctor_m944219619, DirectoryInfo_Initialize_m287338546, DirectoryInfo_get_Exists_m1761829637, DirectoryInfo_get_Parent_m1129672180, DirectoryInfo_Create_m153588510, DirectoryInfo_ToString_m2661500299, DirectoryNotFoundException__ctor_m2906190070, DirectoryNotFoundException__ctor_m1548643788, DirectoryNotFoundException__ctor_m2829292855, EndOfStreamException__ctor_m2858794028, EndOfStreamException__ctor_m1615815533, File_Delete_m760984832, File_Exists_m1326262381, File_Open_m1918038371, File_OpenRead_m3104031109, File_OpenText_m396847893, FileNotFoundException__ctor_m1040614905, FileNotFoundException__ctor_m2788024869, FileNotFoundException__ctor_m3117006778, FileNotFoundException_get_Message_m1881278936, FileNotFoundException_GetObjectData_m697609495, FileNotFoundException_ToString_m1456954068, FileStream__ctor_m3655381520, FileStream__ctor_m3377505172, FileStream__ctor_m3657053030, FileStream__ctor_m3446221265, FileStream__ctor_m1468472351, FileStream_get_CanRead_m3703756390, FileStream_get_CanWrite_m3669951921, FileStream_get_CanSeek_m3732511432, FileStream_get_Length_m755999491, FileStream_get_Position_m887539078, FileStream_set_Position_m4070848815, FileStream_ReadByte_m3943171153, FileStream_WriteByte_m2721827737, FileStream_Read_m1809515168, FileStream_ReadInternal_m3757743203, FileStream_BeginRead_m4009855887, FileStream_EndRead_m1164505443, FileStream_Write_m445180607, FileStream_WriteInternal_m2324297090, FileStream_BeginWrite_m2223977498, FileStream_EndWrite_m3533551432, FileStream_Seek_m4271693569, FileStream_SetLength_m922718469, FileStream_Flush_m134843343, FileStream_Finalize_m223127701, FileStream_Dispose_m376280481, FileStream_ReadSegment_m570180669, FileStream_WriteSegment_m2559616418, FileStream_FlushBuffer_m3897535046, FileStream_FlushBuffer_m3669139887, FileStream_FlushBufferIfDirty_m1568636904, FileStream_RefillBuffer_m3559191949, FileStream_ReadData_m410796132, FileStream_InitBuffer_m157631941, FileStream_GetSecureFileName_m778676102, FileStream_GetSecureFileName_m1473113911, ReadDelegate__ctor_m383609331, ReadDelegate_Invoke_m3715810392, ReadDelegate_BeginInvoke_m3231845723, ReadDelegate_EndInvoke_m1231787239, WriteDelegate__ctor_m1440879850, WriteDelegate_Invoke_m115242405, WriteDelegate_BeginInvoke_m2318511164, WriteDelegate_EndInvoke_m1938328570, FileStreamAsyncResult__ctor_m3962676300, FileStreamAsyncResult_CBWrapper_m1193154321, FileStreamAsyncResult_get_AsyncState_m840004493, FileStreamAsyncResult_get_AsyncWaitHandle_m4264276527, FileStreamAsyncResult_get_IsCompleted_m3246614232, FileSystemInfo__ctor_m2002032720, FileSystemInfo__ctor_m3151315345, FileSystemInfo_GetObjectData_m4060637166, FileSystemInfo_get_FullName_m2636706970, FileSystemInfo_Refresh_m2264948736, FileSystemInfo_InternalRefresh_m567607052, FileSystemInfo_CheckPath_m1470264807, IOException__ctor_m463615156, IOException__ctor_m249933518, IOException__ctor_m1602473000, IOException__ctor_m1441857525, IOException__ctor_m2078305481, IsolatedStorageException__ctor_m3114538544, IsolatedStorageException__ctor_m1344739026, IsolatedStorageException__ctor_m734015345, MemoryStream__ctor_m3603177736, MemoryStream__ctor_m1061194329, MemoryStream__ctor_m1231145921, MemoryStream_InternalConstructor_m661185350, MemoryStream_CheckIfClosedThrowDisposed_m1053557526, MemoryStream_get_CanRead_m3791450881, MemoryStream_get_CanSeek_m3820205923, MemoryStream_get_CanWrite_m2093513846, MemoryStream_set_Capacity_m760203076, MemoryStream_get_Length_m588315720, MemoryStream_get_Position_m2952192395, MemoryStream_set_Position_m2686019828, MemoryStream_Dispose_m1459815420, MemoryStream_Flush_m3687125034, MemoryStream_Read_m3200606651, MemoryStream_ReadByte_m2432485142, MemoryStream_Seek_m3823297180, MemoryStream_CalculateNewCapacity_m358068701, MemoryStream_Expand_m292277479, MemoryStream_SetLength_m2006253408, MemoryStream_ToArray_m3844655770, MemoryStream_Write_m1111852548, MemoryStream_WriteByte_m3865159134, MonoIO__cctor_m3474878605, MonoIO_GetException_m1380825636, MonoIO_GetException_m973090016, MonoIO_CreateDirectory_m510494529, MonoIO_GetFileSystemEntries_m809643788, MonoIO_GetCurrentDirectory_m2958295317, MonoIO_DeleteFile_m991567969, MonoIO_GetFileAttributes_m3774473836, MonoIO_GetFileType_m2747902883, MonoIO_ExistsFile_m4276986322, MonoIO_ExistsDirectory_m2166720481, MonoIO_GetFileStat_m3422900554, MonoIO_Open_m1906428851, MonoIO_Close_m3125785430, MonoIO_Read_m1938045749, MonoIO_Write_m4276992032, MonoIO_Seek_m1717806132, MonoIO_GetLength_m235623807, MonoIO_SetLength_m3949156942, MonoIO_get_ConsoleOutput_m238060792, MonoIO_get_ConsoleInput_m851882069, MonoIO_get_ConsoleError_m1713017619, MonoIO_get_VolumeSeparatorChar_m497168440, MonoIO_get_DirectorySeparatorChar_m3870760857, MonoIO_get_AltDirectorySeparatorChar_m2585277134, MonoIO_get_PathSeparator_m608723543, NullStream__ctor_m3526317378, NullStream_get_CanRead_m2080377659, NullStream_get_CanSeek_m2109132701, NullStream_get_CanWrite_m589851516, NullStream_get_Length_m3751673742, NullStream_get_Position_m2102405969, NullStream_set_Position_m3104065146, NullStream_Flush_m3610264676, NullStream_Read_m1573364597, NullStream_ReadByte_m1443497884, NullStream_Seek_m57934742, NullStream_SetLength_m76840858, NullStream_Write_m1714447498, NullStream_WriteByte_m62142052, Path__cctor_m952127721, Path_Combine_m4122812896, Path_CleanPath_m233704309, Path_GetDirectoryName_m1772680861, Path_GetFileName_m26786182, Path_GetFullPath_m435799225, Path_WindowsDriveAdjustment_m578050859, Path_InsecureGetFullPath_m1023917237, Path_IsDsc_m2558771155, Path_GetPathRoot_m2659954950, Path_IsPathRooted_m3347626992, Path_GetInvalidPathChars_m737233085, Path_GetServerAndShare_m2796958082, Path_SameRoot_m1004668564, Path_CanonicalizePath_m3829459706, PathTooLongException__ctor_m1118374853, PathTooLongException__ctor_m1169070941, PathTooLongException__ctor_m1393064838, SearchPattern__cctor_m828731416, Stream__ctor_m1433294025, Stream__cctor_m1000345604, Stream_Dispose_m2904306374, Stream_Dispose_m3908539837, Stream_Close_m3144153567, Stream_ReadByte_m3456529589, Stream_WriteByte_m480466941, Stream_BeginRead_m2456608939, Stream_BeginWrite_m1317962366, Stream_EndRead_m2251919559, Stream_EndWrite_m3738579556, StreamAsyncResult__ctor_m3640305936, StreamAsyncResult_SetComplete_m1144351501, StreamAsyncResult_SetComplete_m345427690, StreamAsyncResult_get_AsyncState_m3529626409, StreamAsyncResult_get_AsyncWaitHandle_m452819475, StreamAsyncResult_get_IsCompleted_m1862707516, StreamAsyncResult_get_Exception_m58775747, StreamAsyncResult_get_NBytes_m3491482122, StreamAsyncResult_get_Done_m3820504329, StreamAsyncResult_set_Done_m603695862, StreamReader__ctor_m3256554182, StreamReader__ctor_m846704084, StreamReader__ctor_m4212687950, StreamReader__ctor_m3789405692, StreamReader__ctor_m3796369807, StreamReader__cctor_m1686835623, StreamReader_Initialize_m2919850118, StreamReader_Dispose_m2657794490, StreamReader_DoChecks_m2189019393, StreamReader_ReadBuffer_m2552623632, StreamReader_Peek_m3983356789, StreamReader_Read_m4040489200, StreamReader_Read_m2134404459, StreamReader_FindNextEOL_m809222814, StreamReader_ReadLine_m887391883, StreamReader_ReadToEnd_m383675787, NullStreamReader__ctor_m3675090663, NullStreamReader_Peek_m2515952764, NullStreamReader_Read_m2573085175, NullStreamReader_Read_m3682316932, NullStreamReader_ReadLine_m1363373796, NullStreamReader_ReadToEnd_m2254213202, StreamWriter__ctor_m195691908, StreamWriter__ctor_m1929719251, StreamWriter__cctor_m1403486551, StreamWriter_Initialize_m9216430, StreamWriter_set_AutoFlush_m4100472995, StreamWriter_Dispose_m1732965386, StreamWriter_Flush_m4024097848, StreamWriter_FlushBytes_m2694185397, StreamWriter_Decode_m2860657820, StreamWriter_Write_m4266049192, StreamWriter_LowLevelWrite_m551013976, StreamWriter_LowLevelWrite_m3969440575, StreamWriter_Write_m1399991978, StreamWriter_Write_m1067578184, StreamWriter_Write_m2741735311, StreamWriter_Close_m1356042796, StreamWriter_Finalize_m3966309260, StringReader__ctor_m1181104909, StringReader_Dispose_m3317487369, StringReader_Peek_m2304275014, StringReader_Read_m2361407425, StringReader_Read_m11867514, StringReader_ReadLine_m1484911836, StringReader_ReadToEnd_m1726925146, StringReader_CheckObjectDisposedException_m2098659794, SynchronizedReader__ctor_m2400239097, SynchronizedReader_Peek_m2840653193, SynchronizedReader_ReadLine_m1313224031, SynchronizedReader_ReadToEnd_m699570487, SynchronizedReader_Read_m2897785604, SynchronizedReader_Read_m2303608023, SynchronizedWriter__ctor_m3325637572, SynchronizedWriter_Close_m69203352, SynchronizedWriter_Flush_m2737258404, SynchronizedWriter_Write_m3398152126, SynchronizedWriter_Write_m1449099100, SynchronizedWriter_Write_m3123256227, SynchronizedWriter_Write_m3259144636, SynchronizedWriter_WriteLine_m3967840723, SynchronizedWriter_WriteLine_m1236139023, TextReader__ctor_m3562505977, TextReader__cctor_m2581406676, TextReader_Dispose_m377592054, TextReader_Dispose_m3273025517, TextReader_Peek_m2382758882, TextReader_Read_m2439891293, TextReader_Read_m1326787678, TextReader_ReadLine_m4100402744, TextReader_ReadToEnd_m1202764670, TextReader_Synchronized_m4205261080, NullTextReader__ctor_m195081927, NullTextReader_ReadLine_m2540945796, TextWriter__ctor_m4246102345, TextWriter__cctor_m2298057604, TextWriter_Close_m1661994591, TextWriter_Dispose_m2348196413, TextWriter_Dispose_m183705414, TextWriter_Flush_m35082347, TextWriter_Synchronized_m2249444629, TextWriter_Write_m3406376087, TextWriter_Write_m762391029, TextWriter_Write_m2436548156, TextWriter_Write_m212256533, TextWriter_WriteLine_m1071433498, TextWriter_WriteLine_m2487661096, NullTextWriter__ctor_m1818676423, NullTextWriter_Write_m1650030462, NullTextWriter_Write_m3007792729, NullTextWriter_Write_m1740671447, UnexceptionalStreamReader__ctor_m3602034817, UnexceptionalStreamReader__cctor_m2274125524, UnexceptionalStreamReader_Peek_m3083327274, UnexceptionalStreamReader_Read_m3140459685, UnexceptionalStreamReader_Read_m3425155094, UnexceptionalStreamReader_CheckEOL_m2343953594, UnexceptionalStreamReader_ReadLine_m680275730, UnexceptionalStreamReader_ReadToEnd_m2553009636, UnexceptionalStreamWriter__ctor_m2951022641, UnexceptionalStreamWriter_Flush_m3488853355, UnexceptionalStreamWriter_Write_m2144061973, UnexceptionalStreamWriter_Write_m2227220375, UnexceptionalStreamWriter_Write_m1465117941, UnexceptionalStreamWriter_Write_m3139275068, UnmanagedMemoryStream_get_CanRead_m2499719859, UnmanagedMemoryStream_get_CanSeek_m2528474901, UnmanagedMemoryStream_get_CanWrite_m704557828, UnmanagedMemoryStream_get_Length_m1926078080, UnmanagedMemoryStream_get_Position_m51631555, UnmanagedMemoryStream_set_Position_m415579462, UnmanagedMemoryStream_Read_m3212615137, UnmanagedMemoryStream_ReadByte_m4282012848, UnmanagedMemoryStream_Seek_m2466946404, UnmanagedMemoryStream_SetLength_m4229422158, UnmanagedMemoryStream_Flush_m2387314968, UnmanagedMemoryStream_Dispose_m3682984170, UnmanagedMemoryStream_Write_m1807613270, UnmanagedMemoryStream_WriteByte_m750285616, LocalDataStoreSlot__ctor_m2687297698, LocalDataStoreSlot__cctor_m1991429794, LocalDataStoreSlot_Finalize_m2044082711, MarshalByRefObject__ctor_m2306543480, MarshalByRefObject_get_ObjectIdentity_m426029982, Math_Abs_m4017239106, Math_Abs_m2633004394, Math_Abs_m651703468, Math_Ceiling_m3914511415, Math_Floor_m1625025992, Math_Log_m2309558476, Math_Max_m1309380475, Math_Min_m811624909, Math_Round_m2659396224, Math_Round_m2587388934, Math_Sin_m1832281148, Math_Cos_m1877789613, Math_Log_m3325515856, Math_Pow_m3040135736, Math_Sqrt_m1131084014, MemberAccessException__ctor_m1986335264, MemberAccessException__ctor_m2147680482, MemberAccessException__ctor_m2631492449, MethodAccessException__ctor_m1004254055, MethodAccessException__ctor_m4244843560, MissingFieldException__ctor_m1256695606, MissingFieldException__ctor_m237625228, MissingFieldException__ctor_m3823922039, MissingFieldException_get_Message_m1733981935, MissingMemberException__ctor_m4083184326, MissingMemberException__ctor_m3562298876, MissingMemberException__ctor_m4213358343, MissingMemberException__ctor_m3949157688, MissingMemberException_GetObjectData_m1444155236, MissingMemberException_get_Message_m388478373, MissingMethodException__ctor_m3114227021, MissingMethodException__ctor_m2328497877, MissingMethodException__ctor_m2372430094, MissingMethodException__ctor_m3038912081, MissingMethodException_get_Message_m3701364460, MonoAsyncCall__ctor_m2841366746, MonoCustomAttrs__cctor_m3384027722, MonoCustomAttrs_IsUserCattrProvider_m151684613, MonoCustomAttrs_GetCustomAttributesInternal_m349185144, MonoCustomAttrs_GetPseudoCustomAttributes_m3877754150, MonoCustomAttrs_GetCustomAttributesBase_m4161804793, MonoCustomAttrs_GetCustomAttribute_m1376894045, MonoCustomAttrs_GetCustomAttributes_m3020328693, MonoCustomAttrs_GetCustomAttributes_m3210789640, MonoCustomAttrs_GetCustomAttributesDataInternal_m1332961551, MonoCustomAttrs_GetCustomAttributesData_m954311775, MonoCustomAttrs_IsDefined_m1052740451, MonoCustomAttrs_IsDefinedInternal_m386120631, MonoCustomAttrs_GetBasePropertyDefinition_m1612293317, MonoCustomAttrs_GetBase_m1327587805, MonoCustomAttrs_RetrieveAttributeUsage_m2136597604, AttributeInfo__ctor_m2873601639, AttributeInfo_get_Usage_m2602974155, AttributeInfo_get_InheritanceLevel_m2614791067, MonoDocumentationNoteAttribute__ctor_m723067872, MonoEnumInfo__ctor_m427288990, MonoEnumInfo__cctor_m2878678058, MonoEnumInfo_get_enum_info_m1623052572, MonoEnumInfo_get_Cache_m295946653, MonoEnumInfo_GetInfo_m2492061277, IntComparer__ctor_m2760474870, IntComparer_Compare_m2812368429, IntComparer_Compare_m1003464369, LongComparer__ctor_m484720523, LongComparer_Compare_m1693908336, LongComparer_Compare_m2722675796, SByteComparer__ctor_m3350151818, SByteComparer_Compare_m902472729, SByteComparer_Compare_m1473836669, ShortComparer__ctor_m2202587209, ShortComparer_Compare_m2284602042, ShortComparer_Compare_m2275424446, MonoTODOAttribute__ctor_m3523127742, MonoTODOAttribute__ctor_m3185129988, MonoTouchAOTHelper__cctor_m2104929136, MonoType_get_attributes_m3858763267, MonoType_GetDefaultConstructor_m209771828, MonoType_GetAttributeFlagsImpl_m57896493, MonoType_GetConstructorImpl_m2165817190, MonoType_GetConstructors_internal_m3333761497, MonoType_GetConstructors_m2914995340, MonoType_InternalGetEvent_m3590335900, MonoType_GetEvent_m2496571007, MonoType_GetField_m599214911, MonoType_GetFields_internal_m537795545, MonoType_GetFields_m1853037196, MonoType_GetInterfaces_m3250739582, MonoType_GetMethodsByName_m1576473598, MonoType_GetMethods_m254951756, MonoType_GetMethodImpl_m2617796334, MonoType_GetPropertiesByName_m3972083631, MonoType_GetPropertyImpl_m2349541479, MonoType_HasElementTypeImpl_m3651013126, MonoType_IsArrayImpl_m2714061063, MonoType_IsByRefImpl_m244089130, MonoType_IsPointerImpl_m2437726891, MonoType_IsPrimitiveImpl_m472277653, MonoType_IsSubclassOf_m2439875510, MonoType_InvokeMember_m397738839, MonoType_GetElementType_m3405434354, MonoType_get_UnderlyingSystemType_m833788001, MonoType_get_Assembly_m1158787034, MonoType_get_AssemblyQualifiedName_m3709742257, MonoType_getFullName_m2683490973, MonoType_get_BaseType_m3982183046, MonoType_get_FullName_m1705090284, MonoType_IsDefined_m574655067, MonoType_GetCustomAttributes_m3219692190, MonoType_GetCustomAttributes_m3981030795, MonoType_get_MemberType_m4102227249, MonoType_get_Name_m413070845, MonoType_get_Namespace_m1531779339, MonoType_get_Module_m3779621798, MonoType_get_DeclaringType_m3073537512, MonoType_get_ReflectedType_m2303984285, MonoType_get_TypeHandle_m2428845255, MonoType_GetObjectData_m2425175414, MonoType_ToString_m4069763221, MonoType_GetGenericArguments_m3677840611, MonoType_get_ContainsGenericParameters_m2126365649, MonoType_get_IsGenericParameter_m1374410255, MonoType_GetGenericTypeDefinition_m467429952, MonoType_CheckMethodSecurity_m1994761406, MonoType_ReorderParamArrayArguments_m3544296603, MonoTypeInfo__ctor_m353652298, MulticastDelegate_GetObjectData_m2959136754, MulticastDelegate_Equals_m1775662595, MulticastDelegate_GetHashCode_m932113511, MulticastDelegate_GetInvocationList_m2228922313, MulticastDelegate_CombineImpl_m3233588460, MulticastDelegate_BaseEquals_m3635930564, MulticastDelegate_KPM_m466375933, MulticastDelegate_RemoveImpl_m112886219, MulticastNotSupportedException__ctor_m686350745, MulticastNotSupportedException__ctor_m1379655177, MulticastNotSupportedException__ctor_m3265751898, NonSerializedAttribute__ctor_m3429108074, NotImplementedException__ctor_m2063223793, NotImplementedException__ctor_m495190705, NotImplementedException__ctor_m544055730, NotSupportedException__ctor_m149930845, NotSupportedException__ctor_m133757637, NotSupportedException__ctor_m1093508894, NullReferenceException__ctor_m622546858, NullReferenceException__ctor_m2208732056, NullReferenceException__ctor_m2985950699, NumberFormatter__ctor_m2111196867, NumberFormatter__cctor_m1125188925, NumberFormatter_GetFormatterTables_m1004885150, NumberFormatter_GetTenPowerOf_m3223700535, NumberFormatter_InitDecHexDigits_m2164786199, NumberFormatter_InitDecHexDigits_m2164789144, NumberFormatter_InitDecHexDigits_m3289945484, NumberFormatter_FastToDecHex_m84047568, NumberFormatter_ToDecHex_m2775434836, NumberFormatter_FastDecHexLen_m3326717411, NumberFormatter_DecHexLen_m1305612716, NumberFormatter_DecHexLen_m1385571854, NumberFormatter_ScaleOrder_m2668614822, NumberFormatter_InitialFloatingPrecision_m1576619940, NumberFormatter_ParsePrecision_m1776481127, NumberFormatter_Init_m796042654, NumberFormatter_InitHex_m673436066, NumberFormatter_Init_m1761120638, NumberFormatter_Init_m3900055237, NumberFormatter_Init_m1120342906, NumberFormatter_Init_m1368030931, NumberFormatter_Init_m3795683709, NumberFormatter_Init_m2948152342, NumberFormatter_ResetCharBuf_m213960083, NumberFormatter_Resize_m3447745305, NumberFormatter_Append_m4118762351, NumberFormatter_Append_m4153218504, NumberFormatter_Append_m4139947796, NumberFormatter_GetNumberFormatInstance_m958950318, NumberFormatter_set_CurrentCulture_m2767449398, NumberFormatter_get_IntegerDigits_m1728967757, NumberFormatter_get_DecimalDigits_m799523680, NumberFormatter_get_IsFloatingSource_m3965742250, NumberFormatter_get_IsZero_m1430003665, NumberFormatter_get_IsZeroInteger_m1771268559, NumberFormatter_RoundPos_m2974247947, NumberFormatter_RoundDecimal_m3262983754, NumberFormatter_RoundBits_m1678805201, NumberFormatter_RemoveTrailingZeros_m3741390329, NumberFormatter_AddOneToDecHex_m3773408269, NumberFormatter_AddOneToDecHex_m2213293842, NumberFormatter_CountTrailingZeros_m208778992, NumberFormatter_CountTrailingZeros_m3607920650, NumberFormatter_GetInstance_m1116912880, NumberFormatter_Release_m2318208149, NumberFormatter_SetThreadCurrentCulture_m27395807, NumberFormatter_NumberToString_m1767037120, NumberFormatter_NumberToString_m3732580729, NumberFormatter_NumberToString_m575932624, NumberFormatter_NumberToString_m1355610105, NumberFormatter_NumberToString_m356875018, NumberFormatter_NumberToString_m1136552499, NumberFormatter_NumberToString_m590483049, NumberFormatter_NumberToString_m1370160530, NumberFormatter_NumberToString_m332247865, NumberFormatter_NumberToString_m2024857538, NumberFormatter_NumberToString_m1355083638, NumberFormatter_NumberToString_m3444731974, NumberFormatter_NumberToString_m266329463, NumberFormatter_NumberToString_m3678340005, NumberFormatter_NumberToString_m499937494, NumberFormatter_NumberToString_m3420104821, NumberFormatter_NumberToString_m817747198, NumberFormatter_FastIntegerToString_m2015857610, NumberFormatter_IntegerToString_m2916421959, NumberFormatter_NumberToString_m913039240, NumberFormatter_FormatCurrency_m852663042, NumberFormatter_FormatDecimal_m1996938888, NumberFormatter_FormatHexadecimal_m386310032, NumberFormatter_FormatFixedPoint_m336450221, NumberFormatter_FormatRoundtrip_m3567733037, NumberFormatter_FormatRoundtrip_m850933974, NumberFormatter_FormatGeneral_m273745567, NumberFormatter_FormatNumber_m2900015482, NumberFormatter_FormatPercent_m3733675388, NumberFormatter_FormatExponential_m3503259900, NumberFormatter_FormatExponential_m1641420123, NumberFormatter_FormatCustom_m619514485, NumberFormatter_ZeroTrimEnd_m858705010, NumberFormatter_IsZeroOnly_m898090390, NumberFormatter_AppendNonNegativeNumber_m3168612876, NumberFormatter_AppendIntegerString_m666371448, NumberFormatter_AppendIntegerString_m2478096468, NumberFormatter_AppendDecimalString_m1754328651, NumberFormatter_AppendDecimalString_m3838413543, NumberFormatter_AppendIntegerStringWithGroupSeparator_m4148804442, NumberFormatter_AppendExponent_m163214555, NumberFormatter_AppendOneDigit_m4047621190, NumberFormatter_FastAppendDigits_m4132924828, NumberFormatter_AppendDigits_m3761533234, NumberFormatter_AppendDigits_m860372182, NumberFormatter_Multiply10_m4265073128, NumberFormatter_Divide10_m1709051645, NumberFormatter_GetClone_m2531844292, CustomInfo__ctor_m1055759592, CustomInfo_GetActiveSection_m3861978683, CustomInfo_Parse_m2971752052, CustomInfo_Format_m1427734085, Object__ctor_m1772956182, Object_Equals_m2558036873, Object_Equals_m3175838359, Object_Finalize_m3027285644, Object_GetHashCode_m500842593, Object_GetType_m2022236990, Object_MemberwiseClone_m883886056, Object_ToString_m2286807767, Object_ReferenceEquals_m3695130242, Object_InternalGetHashCode_m2390902384, ObjectDisposedException__ctor_m1180707260, ObjectDisposedException__ctor_m3489634552, ObjectDisposedException__ctor_m571210567, ObjectDisposedException_get_Message_m4164560767, ObjectDisposedException_GetObjectData_m2669480868, ObsoleteAttribute__ctor_m3622855086, ObsoleteAttribute__ctor_m4069910548, ObsoleteAttribute__ctor_m3431121129, OperatingSystem__ctor_m1430692681, OperatingSystem_get_Platform_m949444901, OperatingSystem_Clone_m984082471, OperatingSystem_GetObjectData_m746174751, OperatingSystem_ToString_m3670342834, OrdinalComparer__ctor_m98757386, OrdinalComparer_Compare_m2663568516, OrdinalComparer_Equals_m4124753260, OrdinalComparer_GetHashCode_m545733148, OutOfMemoryException__ctor_m3970465100, OutOfMemoryException__ctor_m1639593101, OverflowException__ctor_m1899953028, OverflowException__ctor_m3303963134, OverflowException__ctor_m2924736197, ParamArrayAttribute__ctor_m2760430497, RankException__ctor_m2171614254, RankException__ctor_m3451921812, RankException__ctor_m1930204271, AmbiguousMatchException__ctor_m3345667202, AmbiguousMatchException__ctor_m1221569984, AmbiguousMatchException__ctor_m68259523, Assembly__ctor_m3527373192, Assembly_get_code_base_m1814794868, Assembly_get_fullname_m3799996258, Assembly_get_location_m1081941693, Assembly_GetCodeBase_m526881390, Assembly_get_FullName_m582360994, Assembly_get_Location_m3075406557, Assembly_IsDefined_m3899547079, Assembly_GetCustomAttributes_m4037441461, Assembly_GetManifestResourceInternal_m3306015724, Assembly_GetTypes_m2225080238, Assembly_GetTypes_m1658023543, Assembly_GetType_m910605431, Assembly_GetType_m60293702, Assembly_InternalGetType_m2843289707, Assembly_GetType_m3120052774, Assembly_FillName_m3921630801, Assembly_GetName_m186567048, Assembly_GetName_m253695441, Assembly_UnprotectedGetName_m1786225822, Assembly_ToString_m395441739, Assembly_Load_m4081902495, Assembly_GetModule_m2523306005, Assembly_GetModulesInternal_m1897302435, Assembly_GetModules_m3104205309, Assembly_GetExecutingAssembly_m1876278943, ResolveEventHolder__ctor_m1761692565, AssemblyCompanyAttribute__ctor_m2502605305, AssemblyConfigurationAttribute__ctor_m4121139744, AssemblyCopyrightAttribute__ctor_m3725440687, AssemblyDefaultAliasAttribute__ctor_m3432347153, AssemblyDelaySignAttribute__ctor_m4221242755, AssemblyDescriptionAttribute__ctor_m196881690, AssemblyFileVersionAttribute__ctor_m188013914, AssemblyInformationalVersionAttribute__ctor_m684917983, AssemblyKeyFileAttribute__ctor_m3089249851, AssemblyName__ctor_m2021574845, AssemblyName__ctor_m1431164030, AssemblyName_get_Name_m1123490526, AssemblyName_get_Flags_m841716984, AssemblyName_get_FullName_m2880072013, AssemblyName_get_Version_m700434552, AssemblyName_set_Version_m1560254941, AssemblyName_ToString_m485215606, AssemblyName_get_IsPublicKeyValid_m65110050, AssemblyName_InternalGetPublicKeyToken_m1116912397, AssemblyName_ComputePublicKeyToken_m1248936939, AssemblyName_SetPublicKey_m2883286222, AssemblyName_SetPublicKeyToken_m3550661833, AssemblyName_GetObjectData_m3727277531, AssemblyName_Clone_m1423794147, AssemblyName_OnDeserialization_m866678633, AssemblyProductAttribute__ctor_m2364447559, AssemblyTitleAttribute__ctor_m432794494, AssemblyTrademarkAttribute__ctor_m396080901, Binder__ctor_m1880433924, Binder__cctor_m1976780585, Binder_get_DefaultBinder_m695054407, Binder_ConvertArgs_m2442440337, Binder_GetDerivedLevel_m1285412278, Binder_FindMostDerivedMatch_m1519815265, Default__ctor_m564903218, Default_BindToMethod_m180789448, Default_ReorderParameters_m4011929147, Default_IsArrayAssignable_m3592878822, Default_ChangeType_m3134945120, Default_ReorderArgumentArray_m559904859, Default_check_type_m1665344327, Default_check_arguments_m2569422268, Default_SelectMethod_m4061797263, Default_SelectMethod_m3301427214, Default_GetBetterMethod_m4168201205, Default_CompareCloserType_m806190335, Default_SelectProperty_m1979388078, Default_check_arguments_with_score_m2296414695, Default_check_type_with_score_m4064381425, ConstructorInfo__ctor_m1318341424, ConstructorInfo__cctor_m1731782269, ConstructorInfo_get_MemberType_m1468140761, ConstructorInfo_Invoke_m759007899, CustomAttributeData__ctor_m1024003907, CustomAttributeData_get_Constructor_m624500001, CustomAttributeData_get_ConstructorArguments_m3485544262, CustomAttributeData_get_NamedArguments_m3035361272, CustomAttributeData_GetCustomAttributes_m1041584968, CustomAttributeData_GetCustomAttributes_m1840127430, CustomAttributeData_GetCustomAttributes_m3291957442, CustomAttributeData_GetCustomAttributes_m3662380525, CustomAttributeData_ToString_m440699946, CustomAttributeData_Equals_m613333846, CustomAttributeData_GetHashCode_m2481020718, CustomAttributeNamedArgument_ToString_m3812330896, CustomAttributeNamedArgument_Equals_m109042642, CustomAttributeNamedArgument_GetHashCode_m910635190, CustomAttributeTypedArgument_ToString_m2065140801, CustomAttributeTypedArgument_Equals_m464286849, CustomAttributeTypedArgument_GetHashCode_m1079175269, DefaultMemberAttribute__ctor_m66421301, DefaultMemberAttribute_get_MemberName_m2366986664, AssemblyBuilder_get_Location_m2002209681, AssemblyBuilder_GetModulesInternal_m2718782039, AssemblyBuilder_GetTypes_m3461115874, AssemblyBuilder_get_IsCompilerContext_m332025933, AssemblyBuilder_not_supported_m186391929, AssemblyBuilder_UnprotectedGetName_m3388533202, ConstructorBuilder__ctor_m3776339611, ConstructorBuilder_get_CallingConvention_m1759375919, ConstructorBuilder_get_TypeBuilder_m1751255827, ConstructorBuilder_GetParameters_m888861432, ConstructorBuilder_GetParametersInternal_m465564565, ConstructorBuilder_GetParameterCount_m3832553394, ConstructorBuilder_Invoke_m3130091177, ConstructorBuilder_Invoke_m3839663735, ConstructorBuilder_get_MethodHandle_m3811757201, ConstructorBuilder_get_Attributes_m1523127289, ConstructorBuilder_get_ReflectedType_m1081966177, ConstructorBuilder_get_DeclaringType_m1851519404, ConstructorBuilder_get_Name_m693047033, ConstructorBuilder_IsDefined_m503974687, ConstructorBuilder_GetCustomAttributes_m1576913186, ConstructorBuilder_GetCustomAttributes_m2593734159, ConstructorBuilder_GetILGenerator_m1097527344, ConstructorBuilder_GetILGenerator_m396483969, ConstructorBuilder_GetToken_m2130394273, ConstructorBuilder_get_Module_m779973538, ConstructorBuilder_ToString_m54772113, ConstructorBuilder_fixup_m3991829194, ConstructorBuilder_get_next_table_index_m4060451216, ConstructorBuilder_get_IsCompilerContext_m884160345, ConstructorBuilder_not_supported_m993826647, ConstructorBuilder_not_created_m1839318289, EnumBuilder_get_Assembly_m953263493, EnumBuilder_get_AssemblyQualifiedName_m4073403554, EnumBuilder_get_BaseType_m1867673731, EnumBuilder_get_DeclaringType_m2862908939, EnumBuilder_get_FullName_m1393656155, EnumBuilder_get_Module_m1719899717, EnumBuilder_get_Name_m1759013356, EnumBuilder_get_Namespace_m467255932, EnumBuilder_get_ReflectedType_m2093355712, EnumBuilder_get_TypeHandle_m4284032752, EnumBuilder_get_UnderlyingSystemType_m546810590, EnumBuilder_GetAttributeFlagsImpl_m1968787096, EnumBuilder_GetConstructorImpl_m2615452525, EnumBuilder_GetConstructors_m3042128809, EnumBuilder_GetCustomAttributes_m513136559, EnumBuilder_GetCustomAttributes_m3216433436, EnumBuilder_GetElementType_m2881513647, EnumBuilder_GetEvent_m1271024006, EnumBuilder_GetField_m1074091398, EnumBuilder_GetFields_m1392120169, EnumBuilder_GetInterfaces_m4245642789, EnumBuilder_GetMethodImpl_m133610325, EnumBuilder_GetMethods_m2248069569, EnumBuilder_GetPropertyImpl_m457098616, EnumBuilder_HasElementTypeImpl_m3877283091, EnumBuilder_InvokeMember_m4001949930, EnumBuilder_IsArrayImpl_m3702084250, EnumBuilder_IsByRefImpl_m1232112317, EnumBuilder_IsPointerImpl_m2740237182, EnumBuilder_IsPrimitiveImpl_m3421858472, EnumBuilder_IsValueTypeImpl_m3904157452, EnumBuilder_IsDefined_m2341849838, EnumBuilder_CreateNotSupportedException_m856223562, FieldBuilder_get_Attributes_m3921109250, FieldBuilder_get_DeclaringType_m1725909420, FieldBuilder_get_FieldHandle_m1219776477, FieldBuilder_get_FieldType_m1219556799, FieldBuilder_get_Name_m819487801, FieldBuilder_get_ReflectedType_m956356193, FieldBuilder_GetCustomAttributes_m2903117794, FieldBuilder_GetCustomAttributes_m1840342223, FieldBuilder_GetValue_m1365484742, FieldBuilder_IsDefined_m1233219871, FieldBuilder_GetFieldOffset_m849516803, FieldBuilder_SetValue_m668442259, FieldBuilder_get_UMarshal_m2685231318, FieldBuilder_CreateNotSupportedException_m2418755853, FieldBuilder_get_Module_m3744550626, GenericTypeParameterBuilder_IsSubclassOf_m952653568, GenericTypeParameterBuilder_GetAttributeFlagsImpl_m1663262351, GenericTypeParameterBuilder_GetConstructorImpl_m545561302, GenericTypeParameterBuilder_GetConstructors_m3161529504, GenericTypeParameterBuilder_GetEvent_m2196072623, GenericTypeParameterBuilder_GetField_m2024354991, GenericTypeParameterBuilder_GetFields_m128303008, GenericTypeParameterBuilder_GetInterfaces_m437688604, GenericTypeParameterBuilder_GetMethods_m1386969194, GenericTypeParameterBuilder_GetMethodImpl_m3486858252, GenericTypeParameterBuilder_GetPropertyImpl_m3933236897, GenericTypeParameterBuilder_HasElementTypeImpl_m814733436, GenericTypeParameterBuilder_IsAssignableFrom_m2291646236, GenericTypeParameterBuilder_IsInstanceOfType_m2833041284, GenericTypeParameterBuilder_IsArrayImpl_m3637457745, GenericTypeParameterBuilder_IsByRefImpl_m1167485812, GenericTypeParameterBuilder_IsPointerImpl_m763708021, GenericTypeParameterBuilder_IsPrimitiveImpl_m2352879583, GenericTypeParameterBuilder_IsValueTypeImpl_m2835178563, GenericTypeParameterBuilder_InvokeMember_m2055705555, GenericTypeParameterBuilder_GetElementType_m3868625048, GenericTypeParameterBuilder_get_UnderlyingSystemType_m2109324167, GenericTypeParameterBuilder_get_Assembly_m3923688878, GenericTypeParameterBuilder_get_AssemblyQualifiedName_m1986145049, GenericTypeParameterBuilder_get_BaseType_m1305573036, GenericTypeParameterBuilder_get_FullName_m79189380, GenericTypeParameterBuilder_IsDefined_m1789048485, GenericTypeParameterBuilder_GetCustomAttributes_m3157542694, GenericTypeParameterBuilder_GetCustomAttributes_m2400114195, GenericTypeParameterBuilder_get_Name_m1381612181, GenericTypeParameterBuilder_get_Namespace_m2668458867, GenericTypeParameterBuilder_get_Module_m4212322478, GenericTypeParameterBuilder_get_DeclaringType_m2257580418, GenericTypeParameterBuilder_get_ReflectedType_m1488027191, GenericTypeParameterBuilder_get_TypeHandle_m1599953625, GenericTypeParameterBuilder_GetGenericArguments_m4080596481, GenericTypeParameterBuilder_GetGenericTypeDefinition_m1742966118, GenericTypeParameterBuilder_get_ContainsGenericParameters_m2518773659, GenericTypeParameterBuilder_get_IsGenericParameter_m633698693, GenericTypeParameterBuilder_get_IsGenericType_m1264804288, GenericTypeParameterBuilder_get_IsGenericTypeDefinition_m39731123, GenericTypeParameterBuilder_not_supported_m716718603, GenericTypeParameterBuilder_ToString_m743337261, GenericTypeParameterBuilder_Equals_m1747582869, GenericTypeParameterBuilder_GetHashCode_m3071919225, GenericTypeParameterBuilder_MakeGenericType_m3404220394, ILGenerator__ctor_m363767667, ILGenerator__cctor_m152040660, ILGenerator_add_token_fixup_m1030891159, ILGenerator_make_room_m3150005908, ILGenerator_emit_int_m1452131359, ILGenerator_ll_emit_m2322068804, ILGenerator_Emit_m1513421455, ILGenerator_Emit_m726728631, ILGenerator_label_fixup_m2969084380, ILGenerator_Mono_GetCurrentOffset_m436459828, MethodBuilder_get_ContainsGenericParameters_m3420227972, MethodBuilder_get_MethodHandle_m1281364144, MethodBuilder_get_ReturnType_m1886811394, MethodBuilder_get_ReflectedType_m3784090528, MethodBuilder_get_DeclaringType_m258676459, MethodBuilder_get_Name_m3413262028, MethodBuilder_get_Attributes_m2121429796, MethodBuilder_get_CallingConvention_m3756269872, MethodBuilder_GetBaseDefinition_m3625992879, MethodBuilder_GetParameters_m1297633455, MethodBuilder_GetParameterCount_m1078755501, MethodBuilder_Invoke_m1851679456, MethodBuilder_IsDefined_m3379756494, MethodBuilder_GetCustomAttributes_m1111063247, MethodBuilder_GetCustomAttributes_m3294549052, MethodBuilder_check_override_m3740987736, MethodBuilder_fixup_m526432253, MethodBuilder_ToString_m2774987108, MethodBuilder_Equals_m341293246, MethodBuilder_GetHashCode_m2330513698, MethodBuilder_get_next_table_index_m3631261195, MethodBuilder_NotSupported_m538712043, MethodBuilder_MakeGenericMethod_m3048833464, MethodBuilder_get_IsGenericMethodDefinition_m2676161411, MethodBuilder_get_IsGenericMethod_m3124339088, MethodBuilder_GetGenericArguments_m2521139370, MethodBuilder_get_Module_m2724160805, MethodToken__ctor_m3710649922, MethodToken__cctor_m2370742108, MethodToken_Equals_m1986642400, MethodToken_GetHashCode_m1919356356, MethodToken_get_Token_m1317996739, ModuleBuilder__cctor_m1218472467, ModuleBuilder_get_next_table_index_m3600803990, ModuleBuilder_GetTypes_m2017043429, ModuleBuilder_getToken_m242473055, ModuleBuilder_GetToken_m1580574749, ModuleBuilder_RegisterToken_m2593402065, ModuleBuilder_GetTokenGenerator_m4211747974, ModuleBuilderTokenGenerator__ctor_m3538557064, ModuleBuilderTokenGenerator_GetToken_m2106467927, OpCode__ctor_m742870391, OpCode_GetHashCode_m1885918234, OpCode_Equals_m3328690754, OpCode_ToString_m4043065278, OpCode_get_Name_m386372902, OpCode_get_Size_m2313922819, OpCode_get_StackBehaviourPop_m4109383719, OpCode_get_StackBehaviourPush_m2842535718, OpCodeNames__cctor_m1465031614, OpCodes__cctor_m1331312969, ParameterBuilder_get_Attributes_m2640139997, ParameterBuilder_get_Name_m1429816234, ParameterBuilder_get_Position_m388196207, TypeBuilder_GetAttributeFlagsImpl_m2415994065, TypeBuilder_setup_internal_class_m1841540458, TypeBuilder_create_generic_class_m1633445577, TypeBuilder_get_Assembly_m870988588, TypeBuilder_get_AssemblyQualifiedName_m750470747, TypeBuilder_get_BaseType_m1785398826, TypeBuilder_get_DeclaringType_m1033527492, TypeBuilder_get_UnderlyingSystemType_m301071877, TypeBuilder_get_FullName_m1311381250, TypeBuilder_get_Module_m1380149676, TypeBuilder_get_Name_m225700627, TypeBuilder_get_Namespace_m2211701173, TypeBuilder_get_ReflectedType_m263974265, TypeBuilder_GetConstructorImpl_m4034724308, TypeBuilder_IsDefined_m3802777959, TypeBuilder_GetCustomAttributes_m425271400, TypeBuilder_GetCustomAttributes_m3833453653, TypeBuilder_DefineConstructor_m2901130055, TypeBuilder_DefineConstructor_m467278373, TypeBuilder_DefineDefaultConstructor_m4180060431, TypeBuilder_create_runtime_class_m3021676378, TypeBuilder_is_nested_in_m2129219235, TypeBuilder_has_ctor_method_m2530448875, TypeBuilder_CreateType_m1359739084, TypeBuilder_GetConstructors_m3659149026, TypeBuilder_GetConstructorsInternal_m731270847, TypeBuilder_GetElementType_m1124741270, TypeBuilder_GetEvent_m1147005997, TypeBuilder_GetField_m950073389, TypeBuilder_GetFields_m3934792546, TypeBuilder_GetInterfaces_m1695120734, TypeBuilder_GetMethodsByName_m2328060642, TypeBuilder_GetMethods_m3761501928, TypeBuilder_GetMethodImpl_m2675220686, TypeBuilder_GetPropertyImpl_m2672120863, TypeBuilder_HasElementTypeImpl_m3001033082, TypeBuilder_InvokeMember_m1599102929, TypeBuilder_IsArrayImpl_m1759767571, TypeBuilder_IsByRefImpl_m3584762934, TypeBuilder_IsPointerImpl_m189715127, TypeBuilder_IsPrimitiveImpl_m501522337, TypeBuilder_IsValueTypeImpl_m983821317, TypeBuilder_MakeGenericType_m740236136, TypeBuilder_get_TypeHandle_m2527260375, TypeBuilder_SetParent_m2226876871, TypeBuilder_get_next_table_index_m2109425124, TypeBuilder_get_IsCompilerContext_m432935841, TypeBuilder_get_is_created_m695624602, TypeBuilder_not_supported_m2004582477, TypeBuilder_check_not_created_m4283406443, TypeBuilder_check_created_m3022374359, TypeBuilder_ToString_m3882393003, TypeBuilder_IsAssignableFrom_m2834740190, TypeBuilder_IsSubclassOf_m919862466, TypeBuilder_IsAssignableTo_m3927127213, TypeBuilder_GetGenericArguments_m1892425923, TypeBuilder_GetGenericTypeDefinition_m4229681124, TypeBuilder_get_ContainsGenericParameters_m446053341, TypeBuilder_get_IsGenericParameter_m78451587, TypeBuilder_get_IsGenericTypeDefinition_m582825077, TypeBuilder_get_IsGenericType_m226951426, UnmanagedMarshal_ToMarshalAsAttribute_m4201209287, EventInfo__ctor_m2461757520, EventInfo_get_EventHandlerType_m2354774861, EventInfo_get_MemberType_m3965977017, AddEventAdapter__ctor_m2445699769, AddEventAdapter_Invoke_m4107836009, AddEventAdapter_BeginInvoke_m2800012162, AddEventAdapter_EndInvoke_m3991281993, FieldInfo__ctor_m1830395376, FieldInfo_get_MemberType_m1921984537, FieldInfo_get_IsLiteral_m2099153292, FieldInfo_get_IsStatic_m24721619, FieldInfo_get_IsNotSerialized_m3868603028, FieldInfo_SetValue_m1669444927, FieldInfo_internal_from_handle_type_m449136039, FieldInfo_GetFieldFromHandle_m3507098254, FieldInfo_GetFieldOffset_m3781007919, FieldInfo_GetUnmanagedMarshal_m3736180640, FieldInfo_get_UMarshal_m3592475906, FieldInfo_GetPseudoCustomAttributes_m3219838173, MemberFilter__ctor_m1519003110, MemberFilter_Invoke_m1252503396, MemberFilter_BeginInvoke_m1668252761, MemberFilter_EndInvoke_m3696206456, MemberInfo__ctor_m3915857030, MemberInfo_get_Module_m3912547150, MemberInfoSerializationHolder__ctor_m939139269, MemberInfoSerializationHolder_Serialize_m1332311411, MemberInfoSerializationHolder_Serialize_m2526201284, MemberInfoSerializationHolder_GetObjectData_m3301233442, MemberInfoSerializationHolder_GetRealObject_m2979973448, MethodBase__ctor_m2869737180, MethodBase_GetMethodFromHandleNoGenericCheck_m3857932574, MethodBase_GetMethodFromIntPtr_m1804781085, MethodBase_GetMethodFromHandle_m3548347628, MethodBase_GetMethodFromHandleInternalType_m1518673981, MethodBase_GetParameterCount_m3370013370, MethodBase_Invoke_m3435166155, MethodBase_get_CallingConvention_m1001031613, MethodBase_get_IsPublic_m4089159654, MethodBase_get_IsStatic_m4113878699, MethodBase_get_IsVirtual_m2071496208, MethodBase_get_IsAbstract_m1047696479, MethodBase_get_next_table_index_m1161386136, MethodBase_GetGenericArguments_m3136597879, MethodBase_get_ContainsGenericParameters_m30026257, MethodBase_get_IsGenericMethodDefinition_m3580926992, MethodBase_get_IsGenericMethod_m3165593181, MethodInfo__ctor_m2414387615, MethodInfo_get_MemberType_m1399337402, MethodInfo_get_ReturnType_m1349485746, MethodInfo_MakeGenericMethod_m548581224, MethodInfo_GetGenericArguments_m2245069050, MethodInfo_get_IsGenericMethod_m2274064352, MethodInfo_get_IsGenericMethodDefinition_m1886989779, MethodInfo_get_ContainsGenericParameters_m2631056340, Missing__ctor_m823829586, Missing__cctor_m3581784475, Missing_System_Runtime_Serialization_ISerializable_GetObjectData_m3445091833, Module__ctor_m1944669826, Module__cctor_m3968093547, Module_get_Assembly_m4154223570, Module_get_ScopeName_m724946931, Module_GetCustomAttributes_m2375287279, Module_GetObjectData_m8314144, Module_InternalGetTypes_m2940532442, Module_GetTypes_m134489405, Module_IsDefined_m3759276225, Module_IsResource_m3085935772, Module_ToString_m2326023121, Module_filter_by_type_name_m1428086970, Module_filter_by_type_name_ignore_case_m825562172, MonoCMethod__ctor_m1949313751, MonoCMethod_GetParameters_m993439667, MonoCMethod_InternalInvoke_m1703330793, MonoCMethod_Invoke_m3483919886, MonoCMethod_Invoke_m2473345692, MonoCMethod_get_MethodHandle_m1736599926, MonoCMethod_get_Attributes_m2492640542, MonoCMethod_get_CallingConvention_m3412315242, MonoCMethod_get_ReflectedType_m3209895836, MonoCMethod_get_DeclaringType_m3979449063, MonoCMethod_get_Name_m2330810846, MonoCMethod_IsDefined_m2679410586, MonoCMethod_GetCustomAttributes_m3440607709, MonoCMethod_GetCustomAttributes_m2022749770, MonoCMethod_ToString_m1692535926, MonoCMethod_GetObjectData_m3949447925, MonoEvent__ctor_m1732756001, MonoEvent_get_Attributes_m3196030141, MonoEvent_GetAddMethod_m3118173230, MonoEvent_get_DeclaringType_m3994610097, MonoEvent_get_ReflectedType_m3225056870, MonoEvent_get_Name_m4045390228, MonoEvent_ToString_m3407115308, MonoEvent_IsDefined_m3229573604, MonoEvent_GetCustomAttributes_m2984693479, MonoEvent_GetCustomAttributes_m1928774740, MonoEvent_GetObjectData_m2378937663, MonoEventInfo_get_event_info_m4253936399, MonoEventInfo_GetEventInfo_m3342016238, MonoField__ctor_m3189620673, MonoField_get_Attributes_m2200334717, MonoField_get_FieldHandle_m3810546370, MonoField_get_FieldType_m3878403556, MonoField_GetParentType_m3845576618, MonoField_get_ReflectedType_m249627654, MonoField_get_DeclaringType_m1019180881, MonoField_get_Name_m561340404, MonoField_IsDefined_m1408878468, MonoField_GetCustomAttributes_m3992853639, MonoField_GetCustomAttributes_m3211174388, MonoField_GetFieldOffset_m1550054270, MonoField_GetValueInternal_m2439735918, MonoField_GetValue_m496927467, MonoField_ToString_m4218032780, MonoField_SetValueInternal_m1841098555, MonoField_SetValue_m1189993934, MonoField_GetObjectData_m2261672671, MonoField_CheckGeneric_m3068937042, MonoGenericCMethod__ctor_m673538526, MonoGenericCMethod_get_ReflectedType_m1976633775, MonoGenericMethod__ctor_m883290339, MonoGenericMethod_get_ReflectedType_m162977832, MonoMethod__ctor_m370255050, MonoMethod_get_name_m439428219, MonoMethod_get_base_definition_m1389391157, MonoMethod_GetBaseDefinition_m3877450154, MonoMethod_get_ReturnType_m2366628327, MonoMethod_GetParameters_m1957703466, MonoMethod_InternalInvoke_m4222289618, MonoMethod_Invoke_m240151045, MonoMethod_get_MethodHandle_m3375732565, MonoMethod_get_Attributes_m3567797513, MonoMethod_get_CallingConvention_m1596053931, MonoMethod_get_ReflectedType_m64213147, MonoMethod_get_DeclaringType_m833766374, MonoMethod_get_Name_m3300938865, MonoMethod_IsDefined_m1598659081, MonoMethod_GetCustomAttributes_m534554826, MonoMethod_GetCustomAttributes_m673046967, MonoMethod_GetDllImportAttribute_m3397930907, MonoMethod_GetPseudoCustomAttributes_m4233716593, MonoMethod_ShouldPrintFullName_m401880127, MonoMethod_ToString_m2662663945, MonoMethod_GetObjectData_m1160867688, MonoMethod_MakeGenericMethod_m2250506909, MonoMethod_MakeGenericMethod_impl_m2160588496, MonoMethod_GetGenericArguments_m978560229, MonoMethod_get_IsGenericMethodDefinition_m279322622, MonoMethod_get_IsGenericMethod_m1007555531, MonoMethod_get_ContainsGenericParameters_m1023389183, MonoMethodInfo_get_method_info_m2207164051, MonoMethodInfo_GetMethodInfo_m3883823882, MonoMethodInfo_GetDeclaringType_m1399000903, MonoMethodInfo_GetReturnType_m2167465812, MonoMethodInfo_GetAttributes_m3368954492, MonoMethodInfo_GetCallingConvention_m4186754404, MonoMethodInfo_get_parameter_info_m584685721, MonoMethodInfo_GetParametersInfo_m1882458608, MonoProperty__ctor_m1169623126, MonoProperty_CachePropertyInfo_m1003517343, MonoProperty_get_Attributes_m1446659017, MonoProperty_get_CanRead_m4207249871, MonoProperty_get_CanWrite_m2098380648, MonoProperty_get_PropertyType_m3141941824, MonoProperty_get_ReflectedType_m158519463, MonoProperty_get_DeclaringType_m928072690, MonoProperty_get_Name_m3886549157, MonoProperty_GetAccessors_m455294545, MonoProperty_GetGetMethod_m2822601598, MonoProperty_GetIndexParameters_m2930895730, MonoProperty_GetSetMethod_m3665893258, MonoProperty_IsDefined_m436586773, MonoProperty_GetCustomAttributes_m1088918294, MonoProperty_GetCustomAttributes_m2634004995, MonoProperty_CreateGetterDelegate_m1512753249, MonoProperty_GetValue_m3005067234, MonoProperty_GetValue_m1867887996, MonoProperty_SetValue_m2220407469, MonoProperty_ToString_m3248274237, MonoProperty_GetOptionalCustomModifiers_m2413189819, MonoProperty_GetRequiredCustomModifiers_m487727196, MonoProperty_GetObjectData_m2931203316, GetterAdapter__ctor_m1690259617, GetterAdapter_Invoke_m1039216292, GetterAdapter_BeginInvoke_m183730010, GetterAdapter_EndInvoke_m3963824678, MonoPropertyInfo_get_property_info_m1244288251, MonoPropertyInfo_GetTypeModifiers_m3740551417, ParameterInfo__ctor_m3597008161, ParameterInfo__ctor_m703590456, ParameterInfo__ctor_m3736663868, ParameterInfo_ToString_m608350892, ParameterInfo_get_ParameterType_m962921011, ParameterInfo_get_Attributes_m3667882316, ParameterInfo_get_IsIn_m462729209, ParameterInfo_get_IsOptional_m2840883508, ParameterInfo_get_IsOut_m1465526300, ParameterInfo_get_IsRetval_m843554164, ParameterInfo_get_Member_m215664551, ParameterInfo_get_Name_m1246625812, ParameterInfo_get_Position_m2226484697, ParameterInfo_GetCustomAttributes_m3587382740, ParameterInfo_IsDefined_m1420905444, ParameterInfo_GetPseudoCustomAttributes_m760090638, Pointer__ctor_m226191707, Pointer_System_Runtime_Serialization_ISerializable_GetObjectData_m448849360, PropertyInfo__ctor_m539791979, PropertyInfo_get_MemberType_m3698268270, PropertyInfo_GetValue_m396207607, PropertyInfo_SetValue_m3226288870, PropertyInfo_GetOptionalCustomModifiers_m1611882438, PropertyInfo_GetRequiredCustomModifiers_m3981387111, StrongNameKeyPair__ctor_m583813794, StrongNameKeyPair_System_Runtime_Serialization_ISerializable_GetObjectData_m285619594, StrongNameKeyPair_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m3690645877, TargetException__ctor_m983503354, TargetException__ctor_m1662849864, TargetException__ctor_m1050912827, TargetInvocationException__ctor_m2876037082, TargetInvocationException__ctor_m706824555, TargetParameterCountException__ctor_m2437752064, TargetParameterCountException__ctor_m2555943426, TargetParameterCountException__ctor_m2385733185, TypeFilter__ctor_m3304815558, TypeFilter_Invoke_m3691842469, TypeFilter_BeginInvoke_m1184564418, TypeFilter_EndInvoke_m3571376344, ResolveEventArgs__ctor_m2357566712, ResolveEventHandler__ctor_m2424315661, ResolveEventHandler_Invoke_m4207713166, ResolveEventHandler_BeginInvoke_m1625165996, ResolveEventHandler_EndInvoke_m3051650750, NeutralResourcesLanguageAttribute__ctor_m2317811982, ResourceManager__ctor_m1041657915, ResourceManager__cctor_m1744528082, ResourceReader__ctor_m4021287506, ResourceReader__ctor_m3906862375, ResourceReader_System_Collections_IEnumerable_GetEnumerator_m117947704, ResourceReader_System_IDisposable_Dispose_m275527876, ResourceReader_ReadHeaders_m1907491305, ResourceReader_CreateResourceInfo_m5769771, ResourceReader_Read7BitEncodedInt_m1807673690, ResourceReader_ReadValueVer2_m3068653353, ResourceReader_ReadValueVer1_m60842242, ResourceReader_ReadNonPredefinedValue_m3316818289, ResourceReader_LoadResourceValues_m1190122720, ResourceReader_Close_m551956177, ResourceReader_GetEnumerator_m1820124275, ResourceReader_Dispose_m1411491503, ResourceCacheItem__ctor_m3336742541, ResourceEnumerator__ctor_m3994194575, ResourceEnumerator_get_Entry_m715318570, ResourceEnumerator_get_Key_m424542697, ResourceEnumerator_get_Value_m1012075067, ResourceEnumerator_get_Current_m3366221315, ResourceEnumerator_MoveNext_m3916307456, ResourceEnumerator_Reset_m4126890775, ResourceEnumerator_FillCache_m1751484935, ResourceInfo__ctor_m4205157633, ResourceSet__ctor_m2155833766, ResourceSet__ctor_m1435739197, ResourceSet__ctor_m1446669582, ResourceSet__ctor_m3385168668, ResourceSet_System_Collections_IEnumerable_GetEnumerator_m2370128345, ResourceSet_Dispose_m1480295523, ResourceSet_Dispose_m3120910490, ResourceSet_GetEnumerator_m1116109982, ResourceSet_GetObjectInternal_m2208724156, ResourceSet_GetObject_m543692318, ResourceSet_GetObject_m100760991, ResourceSet_ReadResources_m2589571379, RuntimeResourceSet__ctor_m1041659876, RuntimeResourceSet__ctor_m3373926439, RuntimeResourceSet__ctor_m1737082738, RuntimeResourceSet_GetObject_m167723114, RuntimeResourceSet_GetObject_m3242127827, RuntimeResourceSet_CloneDisposableObjectIfPossible_m1308606215, SatelliteContractVersionAttribute__ctor_m69110617, CompilationRelaxationsAttribute__ctor_m3469882264, CompilerGeneratedAttribute__ctor_m2546676106, DecimalConstantAttribute__ctor_m844034077, DefaultDependencyAttribute__ctor_m1966503101, InternalsVisibleToAttribute__ctor_m1688588087, RuntimeCompatibilityAttribute__ctor_m3343718092, RuntimeCompatibilityAttribute_set_WrapNonExceptionThrows_m14743685, RuntimeHelpers_InitializeArray_m3388114532, RuntimeHelpers_InitializeArray_m2058365049, RuntimeHelpers_get_OffsetToStringData_m2708084937, StringFreezingAttribute__ctor_m476014489, CriticalFinalizerObject__ctor_m358100503, CriticalFinalizerObject_Finalize_m3870795499, ReliabilityContractAttribute__ctor_m1813433017, ClassInterfaceAttribute__ctor_m3543181584, ComDefaultInterfaceAttribute__ctor_m3894140624, ComImportAttribute__ctor_m1130850294, ComVisibleAttribute__ctor_m1005514726, DispIdAttribute__ctor_m2923147436, DllImportAttribute__ctor_m1952564553, DllImportAttribute_get_Value_m819189346, FieldOffsetAttribute__ctor_m3654465902, GCHandle__ctor_m396637490, GCHandle_get_IsAllocated_m1991616348, GCHandle_get_Target_m1356841761, GCHandle_Alloc_m4018232088, GCHandle_Free_m2878302728, GCHandle_GetTarget_m385786707, GCHandle_GetTargetHandle_m414463034, GCHandle_FreeHandle_m2607926881, GCHandle_Equals_m2737763611, GCHandle_GetHashCode_m3173355379, GuidAttribute__ctor_m174694299, InAttribute__ctor_m476828707, InterfaceTypeAttribute__ctor_m2093508533, Marshal__cctor_m156400721, Marshal_copy_from_unmanaged_m1711077603, Marshal_Copy_m1690250234, Marshal_Copy_m1390445676, Marshal_ReadByte_m3705434677, Marshal_WriteByte_m4239949353, MarshalAsAttribute__ctor_m682499176, MarshalDirectiveException__ctor_m1090917820, MarshalDirectiveException__ctor_m2323399933, OptionalAttribute__ctor_m1203139678, OutAttribute__ctor_m3736730494, PreserveSigAttribute__ctor_m245522005, SafeHandle__ctor_m1568307360, SafeHandle_Close_m2695195021, SafeHandle_DangerousAddRef_m2051469412, SafeHandle_DangerousGetHandle_m4113584652, SafeHandle_DangerousRelease_m2551287562, SafeHandle_Dispose_m951873268, SafeHandle_Dispose_m787212651, SafeHandle_SetHandle_m1470505077, SafeHandle_Finalize_m2699031691, TypeLibImportClassAttribute__ctor_m2341378707, TypeLibVersionAttribute__ctor_m115624347, ActivatedClientTypeEntry__ctor_m1427925562, ActivatedClientTypeEntry_get_ApplicationUrl_m3757166703, ActivatedClientTypeEntry_get_ContextAttributes_m2565781780, ActivatedClientTypeEntry_get_ObjectType_m2838469632, ActivatedClientTypeEntry_ToString_m1070162771, ActivatedServiceTypeEntry__ctor_m4105441000, ActivatedServiceTypeEntry_get_ObjectType_m2192366838, ActivatedServiceTypeEntry_ToString_m1265511255, ActivationServices_get_ConstructionActivator_m3957898300, ActivationServices_CreateProxyFromAttributes_m2361190433, ActivationServices_CreateConstructionCall_m2559285452, ActivationServices_AllocateUninitializedClassInstance_m91641017, ActivationServices_EnableProxyActivation_m2068301505, AppDomainLevelActivator__ctor_m1573275682, ConstructionLevelActivator__ctor_m1053422160, ContextLevelActivator__ctor_m1237745936, UrlAttribute_get_UrlValue_m2943225223, UrlAttribute_Equals_m3166584024, UrlAttribute_GetHashCode_m1694018096, UrlAttribute_GetPropertiesForNewContext_m28161747, UrlAttribute_IsContextOK_m864962150, ChannelData__ctor_m2645775933, ChannelData_get_ServerProviders_m3282694237, ChannelData_get_ClientProviders_m764839637, ChannelData_get_CustomProperties_m3728962065, ChannelData_CopyFrom_m3797019541, ChannelInfo__ctor_m3788129721, ChannelInfo_get_ChannelData_m3007613902, ChannelServices__cctor_m1558856244, ChannelServices_CreateClientChannelSinkChain_m2763926231, ChannelServices_CreateClientChannelSinkChain_m3318618436, ChannelServices_RegisterChannel_m1343018521, ChannelServices_RegisterChannel_m409692228, ChannelServices_RegisterChannelConfig_m2055899810, ChannelServices_CreateProvider_m463156604, ChannelServices_GetCurrentChannelInfo_m4083928274, CrossAppDomainChannel__ctor_m751166236, CrossAppDomainChannel__cctor_m1329220625, CrossAppDomainChannel_RegisterCrossAppDomainChannel_m537811701, CrossAppDomainChannel_get_ChannelName_m3020014076, CrossAppDomainChannel_get_ChannelPriority_m1957352252, CrossAppDomainChannel_get_ChannelData_m2816187657, CrossAppDomainChannel_StartListening_m4255931667, CrossAppDomainChannel_CreateMessageSink_m2218895166, CrossAppDomainData__ctor_m2327580462, CrossAppDomainData_get_DomainID_m3794955859, CrossAppDomainData_get_ProcessID_m3945565375, CrossAppDomainSink__ctor_m2913778661, CrossAppDomainSink__cctor_m315038105, CrossAppDomainSink_GetSink_m1469111295, CrossAppDomainSink_get_TargetDomainId_m1065872077, SinkProviderData__ctor_m1196460420, SinkProviderData_get_Children_m2238346578, SinkProviderData_get_Properties_m3058815806, ClientActivatedIdentity_GetServerObject_m1626506643, ClientIdentity__ctor_m3595127653, ClientIdentity_get_ClientProxy_m4126686292, ClientIdentity_set_ClientProxy_m12327679, ClientIdentity_CreateObjRef_m2789811095, ClientIdentity_get_TargetUri_m3456785152, ConfigHandler__ctor_m2828599929, ConfigHandler_ValidatePath_m669680991, ConfigHandler_CheckPath_m4139428019, ConfigHandler_OnStartParsing_m1924122290, ConfigHandler_OnProcessingInstruction_m1288993410, ConfigHandler_OnIgnorableWhitespace_m3445514551, ConfigHandler_OnStartElement_m3663675513, ConfigHandler_ParseElement_m2192346409, ConfigHandler_OnEndElement_m2179721696, ConfigHandler_ReadCustomProviderData_m2072004816, ConfigHandler_ReadLifetine_m4176640056, ConfigHandler_ParseTime_m1810159973, ConfigHandler_ReadChannel_m1371377746, ConfigHandler_ReadProvider_m3082284056, ConfigHandler_ReadClientActivated_m1302642856, ConfigHandler_ReadServiceActivated_m1359996932, ConfigHandler_ReadClientWellKnown_m3688669412, ConfigHandler_ReadServiceWellKnown_m3746023488, ConfigHandler_ReadInteropXml_m3144955191, ConfigHandler_ReadPreload_m856823045, ConfigHandler_GetNotNull_m904874737, ConfigHandler_ExtractAssembly_m1425451284, ConfigHandler_OnChars_m2433222692, ConfigHandler_OnEndParsing_m1914300203, Context__ctor_m3857262039, Context__cctor_m3128910006, Context_Finalize_m4240873259, Context_get_DefaultContext_m1729123572, Context_get_ContextID_m632177530, Context_get_ContextProperties_m407806956, Context_get_IsDefaultContext_m1317738768, Context_get_NeedsContextSink_m1407125469, Context_RegisterDynamicProperty_m1382511581, Context_UnregisterDynamicProperty_m2713065109, Context_GetDynamicPropertyCollection_m762082460, Context_NotifyGlobalDynamicSinks_m4248729719, Context_get_HasGlobalDynamicSinks_m3725000840, Context_NotifyDynamicSinks_m1548895898, Context_get_HasDynamicSinks_m1961314373, Context_get_HasExitSinks_m1034415328, Context_GetProperty_m3347760518, Context_SetProperty_m3523401879, Context_Freeze_m2478059108, Context_ToString_m185373276, Context_GetServerContextSinkChain_m2728947955, Context_GetClientContextSinkChain_m420750203, Context_CreateServerObjectSinkChain_m2651975666, Context_CreateEnvoySink_m2224427853, Context_SwitchToContext_m2536531850, Context_CreateNewContext_m3734751481, Context_DoCallBack_m1407016397, Context_AllocateDataSlot_m2344201404, Context_AllocateNamedDataSlot_m2730654867, Context_FreeNamedDataSlot_m2867480440, Context_GetData_m2608354665, Context_GetNamedDataSlot_m1654679232, Context_SetData_m750447798, ContextAttribute__ctor_m2021650223, ContextAttribute_get_Name_m2613943298, ContextAttribute_Equals_m1391598694, ContextAttribute_Freeze_m533228205, ContextAttribute_GetHashCode_m1120368958, ContextAttribute_GetPropertiesForNewContext_m2715005793, ContextAttribute_IsContextOK_m3789747444, ContextAttribute_IsNewContextOK_m1034674857, ContextCallbackObject__ctor_m2631603027, ContextCallbackObject_DoCallBack_m2989242441, CrossContextChannel__ctor_m2542269426, CrossContextDelegate__ctor_m489758422, CrossContextDelegate_Invoke_m3190794928, CrossContextDelegate_BeginInvoke_m1978908379, CrossContextDelegate_EndInvoke_m2472635366, DynamicPropertyCollection__ctor_m2891818804, DynamicPropertyCollection_get_HasProperties_m728460500, DynamicPropertyCollection_RegisterDynamicProperty_m2418746642, DynamicPropertyCollection_UnregisterDynamicProperty_m2463280666, DynamicPropertyCollection_NotifyMessage_m1690580065, DynamicPropertyCollection_FindProperty_m926596200, DynamicPropertyReg__ctor_m2702568387, SynchronizationAttribute__ctor_m2176888868, SynchronizationAttribute__ctor_m3805252456, SynchronizationAttribute_set_Locked_m233834078, SynchronizationAttribute_ReleaseLock_m3607558612, SynchronizationAttribute_GetPropertiesForNewContext_m275738322, SynchronizationAttribute_GetClientContextSink_m197546806, SynchronizationAttribute_GetServerContextSink_m1092455614, SynchronizationAttribute_IsContextOK_m4152767269, SynchronizationAttribute_ExitContext_m4269502195, SynchronizationAttribute_EnterContext_m3151244183, SynchronizedClientContextSink__ctor_m1282225294, SynchronizedServerContextSink__ctor_m4169493510, EnvoyInfo__ctor_m3896435892, EnvoyInfo_get_EnvoySinks_m3781008599, FormatterData__ctor_m3716988950, Identity__ctor_m4099304260, Identity_get_ChannelSink_m1983774607, Identity_set_ChannelSink_m3130847940, Identity_get_ObjectUri_m2443444253, Identity_get_Disposed_m1911726198, Identity_set_Disposed_m1071218783, Identity_get_ClientDynamicProperties_m2301648525, Identity_get_ServerDynamicProperties_m841334805, InternalRemotingServices__cctor_m2124821007, InternalRemotingServices_GetCachedSoapAttribute_m1251902514, LeaseManager__ctor_m2522116882, LeaseManager_SetPollTime_m4066717374, LeaseSink__ctor_m1766448707, LifetimeServices__cctor_m2116108847, LifetimeServices_set_LeaseManagerPollTime_m511253658, LifetimeServices_set_LeaseTime_m1820419926, LifetimeServices_set_RenewOnCallTime_m3204084838, LifetimeServices_set_SponsorshipTimeout_m2472745390, ArgInfo__ctor_m2209263080, ArgInfo_GetInOutArgs_m2515374049, AsyncResult__ctor_m4145929563, AsyncResult_get_AsyncState_m1982026226, AsyncResult_get_AsyncWaitHandle_m1919809002, AsyncResult_get_CompletedSynchronously_m448147035, AsyncResult_get_IsCompleted_m563284563, AsyncResult_get_EndInvokeCalled_m130757730, AsyncResult_set_EndInvokeCalled_m4140056803, AsyncResult_get_AsyncDelegate_m1003284646, AsyncResult_get_NextSink_m920306782, AsyncResult_AsyncProcessMessage_m1971781732, AsyncResult_GetReplyMessage_m1791966425, AsyncResult_SetMessageCtrl_m1503809360, AsyncResult_SetCompletedSynchronously_m190268221, AsyncResult_EndInvoke_m2269051289, AsyncResult_SyncProcessMessage_m2452418033, AsyncResult_get_CallMessage_m1178656201, AsyncResult_set_CallMessage_m2645023562, CallContextRemotingData__ctor_m1116682582, CallContextRemotingData_Clone_m1647756742, ClientContextTerminatorSink__ctor_m2633454395, ConstructionCall__ctor_m1901864150, ConstructionCall__ctor_m2332608900, ConstructionCall_InitDictionary_m600871527, ConstructionCall_set_IsContextOk_m1331988764, ConstructionCall_get_ActivationType_m242799220, ConstructionCall_get_ActivationTypeName_m2260379688, ConstructionCall_get_Activator_m521493960, ConstructionCall_set_Activator_m1743955147, ConstructionCall_get_CallSiteActivationAttributes_m2779293359, ConstructionCall_SetActivationAttributes_m3550123778, ConstructionCall_get_ContextProperties_m4182550654, ConstructionCall_InitMethodProperty_m3499598409, ConstructionCall_GetObjectData_m2981776609, ConstructionCall_get_Properties_m690127073, ConstructionCallDictionary__ctor_m3483388884, ConstructionCallDictionary__cctor_m475710080, ConstructionCallDictionary_GetMethodProperty_m3794245472, ConstructionCallDictionary_SetMethodProperty_m3933749933, EnvoyTerminatorSink__ctor_m381258499, EnvoyTerminatorSink__cctor_m2746982666, Header__ctor_m3941506987, Header__ctor_m1808730226, Header__ctor_m84902190, HeaderHandler__ctor_m2526578283, HeaderHandler_Invoke_m1835336033, HeaderHandler_BeginInvoke_m2880476263, HeaderHandler_EndInvoke_m4263089894, LogicalCallContext__ctor_m122858570, LogicalCallContext__ctor_m2483628683, LogicalCallContext_GetObjectData_m3064510184, LogicalCallContext_SetData_m91070972, LogicalCallContext_Clone_m3487936816, MethodCall__ctor_m2280547300, MethodCall__ctor_m3232041652, MethodCall__ctor_m4232248307, MethodCall_System_Runtime_Remoting_Messaging_IInternalMessage_set_Uri_m75118319, MethodCall_InitMethodProperty_m2379029369, MethodCall_GetObjectData_m3092930065, MethodCall_get_Args_m2777349738, MethodCall_get_LogicalCallContext_m3758703237, MethodCall_get_MethodBase_m1563575745, MethodCall_get_MethodName_m703141353, MethodCall_get_MethodSignature_m3505289450, MethodCall_get_Properties_m3494690993, MethodCall_InitDictionary_m1823571767, MethodCall_get_TypeName_m2818536578, MethodCall_get_Uri_m110584337, MethodCall_set_Uri_m3629049250, MethodCall_Init_m1334986753, MethodCall_ResolveMethod_m2191435710, MethodCall_CastTo_m2140135600, MethodCall_GetTypeNameFromAssemblyQualifiedName_m148372306, MethodCall_get_GenericArguments_m3093552433, MethodCallDictionary__ctor_m1114585824, MethodCallDictionary__cctor_m2964568912, MethodDictionary__ctor_m2378316062, MethodDictionary_System_Collections_IEnumerable_GetEnumerator_m630697764, MethodDictionary_set_MethodKeys_m3153125541, MethodDictionary_AllocInternalProperties_m1059718266, MethodDictionary_GetInternalProperties_m3176512283, MethodDictionary_IsOverridenKey_m2316740400, MethodDictionary_get_Item_m2581436698, MethodDictionary_set_Item_m213586249, MethodDictionary_GetMethodProperty_m1794768370, MethodDictionary_SetMethodProperty_m3901784959, MethodDictionary_get_Values_m1423085072, MethodDictionary_Add_m3929391976, MethodDictionary_Contains_m853564490, MethodDictionary_Remove_m2229484935, MethodDictionary_get_Count_m2528789795, MethodDictionary_get_IsSynchronized_m687173714, MethodDictionary_get_SyncRoot_m1527806020, MethodDictionary_CopyTo_m3173648216, MethodDictionary_GetEnumerator_m3961911347, DictionaryEnumerator__ctor_m2093730731, DictionaryEnumerator_get_Current_m4121501765, DictionaryEnumerator_MoveNext_m2250771332, DictionaryEnumerator_Reset_m1033504463, DictionaryEnumerator_get_Entry_m1513521232, DictionaryEnumerator_get_Key_m2050366763, DictionaryEnumerator_get_Value_m60906749, MethodReturnDictionary__ctor_m1989303198, MethodReturnDictionary__cctor_m131783842, MonoMethodMessage_get_Args_m2372385990, MonoMethodMessage_get_LogicalCallContext_m4081651649, MonoMethodMessage_get_MethodBase_m1950873241, MonoMethodMessage_get_MethodName_m2720364837, MonoMethodMessage_get_MethodSignature_m1148728082, MonoMethodMessage_get_TypeName_m2637395646, MonoMethodMessage_get_Uri_m2730617429, MonoMethodMessage_set_Uri_m1005536772, MonoMethodMessage_get_Exception_m1373061008, MonoMethodMessage_get_OutArgCount_m1218080105, MonoMethodMessage_get_OutArgs_m754565220, MonoMethodMessage_get_ReturnValue_m2245026524, ObjRefSurrogate__ctor_m2681375704, ObjRefSurrogate_SetObjectData_m1124693972, RemotingSurrogate__ctor_m1724131135, RemotingSurrogate_SetObjectData_m3663110203, RemotingSurrogateSelector__ctor_m1480647200, RemotingSurrogateSelector__cctor_m2468294029, RemotingSurrogateSelector_GetSurrogate_m2656182773, ReturnMessage__ctor_m1311493117, ReturnMessage__ctor_m3758991866, ReturnMessage_System_Runtime_Remoting_Messaging_IInternalMessage_set_Uri_m1208934489, ReturnMessage_get_Args_m1415412666, ReturnMessage_get_LogicalCallContext_m2558823349, ReturnMessage_get_MethodBase_m1896590733, ReturnMessage_get_MethodName_m2648484121, ReturnMessage_get_MethodSignature_m2675815582, ReturnMessage_get_Properties_m3370534783, ReturnMessage_get_TypeName_m3911062450, ReturnMessage_get_Uri_m1363018977, ReturnMessage_set_Uri_m4046194808, ReturnMessage_get_Exception_m564038940, ReturnMessage_get_OutArgs_m1555180784, ReturnMessage_get_ReturnValue_m4052519528, ServerContextTerminatorSink__ctor_m1506077966, ServerObjectTerminatorSink__ctor_m1125592933, StackBuilderSink__ctor_m3066732051, SoapAttribute__ctor_m1039917386, SoapAttribute_get_UseAttribute_m962217818, SoapAttribute_get_XmlNamespace_m1118853738, SoapAttribute_SetReflectionObject_m4198154016, SoapFieldAttribute__ctor_m3376415230, SoapFieldAttribute_get_XmlElementName_m3340405532, SoapFieldAttribute_IsInteropXmlElement_m3949259990, SoapFieldAttribute_SetReflectionObject_m4166766060, SoapMethodAttribute__ctor_m2943197643, SoapMethodAttribute_get_UseAttribute_m1295413945, SoapMethodAttribute_get_XmlNamespace_m3561998601, SoapMethodAttribute_SetReflectionObject_m1225111039, SoapParameterAttribute__ctor_m498933869, SoapTypeAttribute__ctor_m763881636, SoapTypeAttribute_get_UseAttribute_m833942208, SoapTypeAttribute_get_XmlElementName_m1699653532, SoapTypeAttribute_get_XmlNamespace_m154651984, SoapTypeAttribute_get_XmlTypeName_m3245067378, SoapTypeAttribute_get_XmlTypeNamespace_m1186792374, SoapTypeAttribute_get_IsInteropXmlElement_m4004084751, SoapTypeAttribute_get_IsInteropXmlType_m2081107945, SoapTypeAttribute_SetReflectionObject_m333377414, ObjRef__ctor_m1153489184, ObjRef__ctor_m2174528097, ObjRef__cctor_m916330125, ObjRef_get_IsReferenceToWellKnow_m2771899016, ObjRef_get_ChannelInfo_m2862076953, ObjRef_get_EnvoyInfo_m2219083329, ObjRef_set_EnvoyInfo_m2077304852, ObjRef_get_TypeInfo_m3305027018, ObjRef_set_TypeInfo_m752870763, ObjRef_get_URI_m1667957438, ObjRef_set_URI_m837283029, ObjRef_GetObjectData_m1166147774, ObjRef_GetRealObject_m2762672246, ObjRef_UpdateChannelInfo_m3151551622, ObjRef_get_ServerType_m164890532, ProviderData__ctor_m1408233505, ProviderData_CopyFrom_m2676975089, ProxyAttribute_CreateInstance_m980921561, ProxyAttribute_CreateProxy_m2844329499, ProxyAttribute_GetPropertiesForNewContext_m3270579674, ProxyAttribute_IsContextOK_m3044902249, RealProxy__ctor_m1052917757, RealProxy__ctor_m353424490, RealProxy__ctor_m3053042265, RealProxy_InternalGetProxyType_m1321633559, RealProxy_GetProxiedType_m3786182287, RealProxy_get_ObjectIdentity_m347429559, RealProxy_InternalGetTransparentProxy_m1628758334, RealProxy_GetTransparentProxy_m1295804673, RealProxy_SetTargetDomain_m1954293026, RemotingProxy__ctor_m1901097423, RemotingProxy__ctor_m2863168224, RemotingProxy__cctor_m4243178796, RemotingProxy_get_TypeName_m4078823342, RemotingProxy_Finalize_m1311356449, RemotingConfiguration__cctor_m689717558, RemotingConfiguration_get_ApplicationName_m2748314218, RemotingConfiguration_set_ApplicationName_m755243983, RemotingConfiguration_get_ProcessId_m583559449, RemotingConfiguration_LoadDefaultDelayedChannels_m1856615844, RemotingConfiguration_IsRemotelyActivatedClientType_m3024852690, RemotingConfiguration_RegisterActivatedClientType_m3696695158, RemotingConfiguration_RegisterActivatedServiceType_m3120657222, RemotingConfiguration_RegisterWellKnownClientType_m2985305086, RemotingConfiguration_RegisterWellKnownServiceType_m826541254, RemotingConfiguration_RegisterChannelTemplate_m2900462572, RemotingConfiguration_RegisterClientProviderTemplate_m3268554933, RemotingConfiguration_RegisterServerProviderTemplate_m3283034669, RemotingConfiguration_RegisterChannels_m76287740, RemotingConfiguration_RegisterTypes_m3102371468, RemotingConfiguration_SetCustomErrorsMode_m4004559116, RemotingException__ctor_m2438243102, RemotingException__ctor_m3169549476, RemotingException__ctor_m1465301855, RemotingException__ctor_m2401554, RemotingServices__cctor_m722143346, RemotingServices_GetVirtualMethod_m2492796715, RemotingServices_IsTransparentProxy_m3544746083, RemotingServices_GetServerTypeForUri_m2370855021, RemotingServices_Unmarshal_m3453424695, RemotingServices_Unmarshal_m3493161574, RemotingServices_GetRealProxy_m469180406, RemotingServices_GetMethodBaseFromMethodMessage_m589251925, RemotingServices_GetMethodBaseFromName_m1109362245, RemotingServices_FindInterfaceMethod_m1641296449, RemotingServices_CreateClientProxy_m1188122341, RemotingServices_CreateClientProxy_m1887308374, RemotingServices_CreateClientProxyForContextBound_m9934294, RemotingServices_GetIdentityForUri_m1730131113, RemotingServices_RemoveAppNameFromUri_m1113505532, RemotingServices_GetOrCreateClientIdentity_m3862611826, RemotingServices_GetClientChannelSinkChain_m3823167339, RemotingServices_CreateWellKnownServerIdentity_m2420008897, RemotingServices_RegisterServerIdentity_m3253238710, RemotingServices_GetProxyForRemoteObject_m1565953531, RemotingServices_GetRemoteObject_m2559997024, RemotingServices_RegisterInternalChannels_m3428095417, RemotingServices_DisposeIdentity_m167351746, RemotingServices_GetNormalizedUri_m2995472567, ServerIdentity__ctor_m2878147351, ServerIdentity_get_ObjectType_m2513984357, ServerIdentity_CreateObjRef_m4237980959, TrackingServices__cctor_m1041791976, TrackingServices_NotifyUnmarshaledObject_m1221428029, SingleCallIdentity__ctor_m4127814196, SingletonIdentity__ctor_m2376592061, SoapServices__cctor_m3438713338, SoapServices_get_XmlNsForClrTypeWithAssembly_m1233821831, SoapServices_get_XmlNsForClrTypeWithNs_m2315111590, SoapServices_get_XmlNsForClrTypeWithNsAndAssembly_m1138177465, SoapServices_CodeXmlNamespaceForClrTypeNamespace_m3714871648, SoapServices_GetNameKey_m190008428, SoapServices_GetAssemblyName_m2151150175, SoapServices_GetXmlElementForInteropType_m694138433, SoapServices_GetXmlNamespaceForMethodCall_m1539585932, SoapServices_GetXmlNamespaceForMethodResponse_m1087154351, SoapServices_GetXmlTypeForInteropType_m433232637, SoapServices_PreLoad_m4092312816, SoapServices_PreLoad_m2947375647, SoapServices_RegisterInteropXmlElement_m3512159329, SoapServices_RegisterInteropXmlType_m43028713, SoapServices_EncodeNs_m2474727155, TypeInfo__ctor_m2434846844, TypeEntry__ctor_m1060506194, TypeEntry_get_AssemblyName_m3220339849, TypeEntry_set_AssemblyName_m4010276098, TypeEntry_get_TypeName_m4090180189, TypeEntry_set_TypeName_m2319758382, TypeInfo__ctor_m1057142149, TypeInfo_get_TypeName_m2595262561, WellKnownClientTypeEntry__ctor_m4275779958, WellKnownClientTypeEntry_get_ApplicationUrl_m3216150955, WellKnownClientTypeEntry_get_ObjectType_m119167804, WellKnownClientTypeEntry_get_ObjectUrl_m2741314918, WellKnownClientTypeEntry_ToString_m395526031, WellKnownServiceTypeEntry__ctor_m1727189747, WellKnownServiceTypeEntry_get_Mode_m1841666540, WellKnownServiceTypeEntry_get_ObjectType_m3793356090, WellKnownServiceTypeEntry_get_ObjectUri_m2111376023, WellKnownServiceTypeEntry_ToString_m1826608795, ArrayFixupRecord__ctor_m1595031114, ArrayFixupRecord_FixupImpl_m3206607916, BaseFixupRecord__ctor_m1604080483, BaseFixupRecord_DoFixup_m3820060226, DelayedFixupRecord__ctor_m4059832882, DelayedFixupRecord_FixupImpl_m2011618677, FixupRecord__ctor_m118269336, FixupRecord_FixupImpl_m200950775, FormatterConverter__ctor_m1043791595, FormatterConverter_Convert_m3073452726, FormatterConverter_ToBoolean_m2230601372, FormatterConverter_ToInt16_m2745602716, FormatterConverter_ToInt32_m3613732188, FormatterConverter_ToInt64_m1777417340, FormatterConverter_ToString_m1400688178, BinaryCommon__cctor_m1035902784, BinaryCommon_IsPrimitive_m1612386671, BinaryCommon_GetTypeFromCode_m4044019293, BinaryCommon_SwapBytes_m2472266694, BinaryFormatter__ctor_m1913171908, BinaryFormatter__ctor_m203421689, BinaryFormatter_get_DefaultSurrogateSelector_m2270608689, BinaryFormatter_set_AssemblyFormat_m2535395303, BinaryFormatter_get_Binder_m2433428471, BinaryFormatter_get_Context_m888837013, BinaryFormatter_get_SurrogateSelector_m862097470, BinaryFormatter_get_FilterLevel_m123523474, BinaryFormatter_Deserialize_m3942088227, BinaryFormatter_NoCheckDeserialize_m2451994899, BinaryFormatter_ReadBinaryHeader_m258242310, MessageFormatter_ReadMethodCall_m3773075223, MessageFormatter_ReadMethodResponse_m1841037205, ObjectReader__ctor_m1992894345, ObjectReader_ReadObjectGraph_m1835146551, ObjectReader_ReadObjectGraph_m2201506625, ObjectReader_ReadNextObject_m4049777926, ObjectReader_ReadNextObject_m3897181286, ObjectReader_get_CurrentObject_m4031544313, ObjectReader_ReadObject_m2173880932, ObjectReader_ReadAssembly_m464051452, ObjectReader_ReadObjectInstance_m253133777, ObjectReader_ReadRefTypeObjectInstance_m4137899912, ObjectReader_ReadObjectContent_m4032833558, ObjectReader_RegisterObject_m190056615, ObjectReader_ReadStringIntance_m210342955, ObjectReader_ReadGenericArray_m166573042, ObjectReader_ReadBoxedPrimitiveTypeValue_m2629547009, ObjectReader_ReadArrayOfPrimitiveType_m2810313603, ObjectReader_BlockRead_m3199952246, ObjectReader_ReadArrayOfObject_m3481608297, ObjectReader_ReadArrayOfString_m2679882455, ObjectReader_ReadSimpleArray_m1445274814, ObjectReader_ReadTypeMetadata_m2931187119, ObjectReader_ReadValue_m122066046, ObjectReader_SetObjectValue_m1699342176, ObjectReader_RecordFixup_m1141700914, ObjectReader_GetDeserializationType_m932539476, ObjectReader_ReadType_m524105739, ObjectReader_ReadPrimitiveTypeValue_m3787758564, ArrayNullFiller__ctor_m241052615, TypeMetadata__ctor_m2168678135, FormatterServices_GetUninitializedObject_m113523001, FormatterServices_GetSafeUninitializedObject_m133866342, MultiArrayFixupRecord__ctor_m3677967923, MultiArrayFixupRecord_FixupImpl_m2043330103, ObjectManager__ctor_m2952664102, ObjectManager_DoFixups_m109839835, ObjectManager_GetObjectRecord_m2090112317, ObjectManager_GetObject_m3336105927, ObjectManager_RaiseDeserializationEvent_m4065308332, ObjectManager_RaiseOnDeserializingEvent_m2769114934, ObjectManager_RaiseOnDeserializedEvent_m3868580957, ObjectManager_AddFixup_m470602911, ObjectManager_RecordArrayElementFixup_m2718232708, ObjectManager_RecordArrayElementFixup_m1349242662, ObjectManager_RecordDelayedFixup_m3667857086, ObjectManager_RecordFixup_m542439812, ObjectManager_RegisterObjectInternal_m1270172209, ObjectManager_RegisterObject_m2067765899, ObjectRecord__ctor_m3259851313, ObjectRecord_SetMemberValue_m4010306395, ObjectRecord_SetArrayValue_m2737762809, ObjectRecord_SetMemberValue_m2579656503, ObjectRecord_get_IsInstanceReady_m760710444, ObjectRecord_get_IsUnsolvedObjectReference_m201102828, ObjectRecord_get_IsRegistered_m3870447238, ObjectRecord_DoFixups_m2556266664, ObjectRecord_RemoveFixup_m716979711, ObjectRecord_UnchainFixup_m3906372306, ObjectRecord_ChainFixup_m2539942872, ObjectRecord_LoadData_m3154866397, ObjectRecord_get_HasPendingFixups_m2308927162, SerializationBinder__ctor_m3744708139, SerializationCallbacks__ctor_m2320337270, SerializationCallbacks__cctor_m562445802, SerializationCallbacks_get_HasDeserializedCallbacks_m4051490391, SerializationCallbacks_GetMethodsByAttribute_m1743114550, SerializationCallbacks_Invoke_m807932308, SerializationCallbacks_RaiseOnDeserializing_m873572750, SerializationCallbacks_RaiseOnDeserialized_m361044335, SerializationCallbacks_GetSerializationCallbacks_m1535695330, CallbackHandler__ctor_m33772597, CallbackHandler_Invoke_m2801241699, CallbackHandler_BeginInvoke_m1384672208, CallbackHandler_EndInvoke_m522922181, SerializationEntry__ctor_m2883191396, SerializationEntry_get_Name_m929676406, SerializationEntry_get_Value_m522021722, SerializationException__ctor_m136694722, SerializationException__ctor_m4216356480, SerializationException__ctor_m987964931, SerializationInfo__ctor_m2583224808, SerializationInfo_AddValue_m3341936982, SerializationInfo_GetValue_m4125471336, SerializationInfo_SetType_m3215055064, SerializationInfo_GetEnumerator_m2631907363, SerializationInfo_AddValue_m2348538716, SerializationInfo_AddValue_m2348540514, SerializationInfo_AddValue_m3573408328, SerializationInfo_AddValue_m1083712391, SerializationInfo_AddValue_m4223301306, SerializationInfo_AddValue_m2348543459, SerializationInfo_AddValue_m787542410, SerializationInfo_AddValue_m469120675, SerializationInfo_GetBoolean_m1462266865, SerializationInfo_GetInt16_m3179906481, SerializationInfo_GetInt32_m4048035953, SerializationInfo_GetInt64_m2211721105, SerializationInfo_GetString_m52579033, SerializationInfoEnumerator__ctor_m1782497732, SerializationInfoEnumerator_System_Collections_IEnumerator_get_Current_m1751158349, SerializationInfoEnumerator_get_Current_m1674825235, SerializationInfoEnumerator_get_Name_m4156977240, SerializationInfoEnumerator_get_Value_m4259496148, SerializationInfoEnumerator_MoveNext_m4116766855, SerializationInfoEnumerator_Reset_m1660715632, StreamingContext__ctor_m165676124, StreamingContext__ctor_m404323882, StreamingContext_get_State_m334223851, StreamingContext_Equals_m3567411783, StreamingContext_GetHashCode_m1804520735, RuntimeFieldHandle__ctor_m4059484332, RuntimeFieldHandle_get_Value_m2124751302, RuntimeFieldHandle_GetObjectData_m1415752713, RuntimeFieldHandle_Equals_m3155639198, RuntimeFieldHandle_GetHashCode_m2620685942, RuntimeMethodHandle__ctor_m794057668, RuntimeMethodHandle__ctor_m3786030033, RuntimeMethodHandle_get_Value_m2270388129, RuntimeMethodHandle_GetObjectData_m3915325998, RuntimeMethodHandle_Equals_m3425680831, RuntimeMethodHandle_GetHashCode_m1771691683, RuntimeTypeHandle__ctor_m437060952, RuntimeTypeHandle_get_Value_m3549598952, RuntimeTypeHandle_GetObjectData_m2331997365, RuntimeTypeHandle_Equals_m3214712582, RuntimeTypeHandle_GetHashCode_m3575892074, SByte_System_IConvertible_ToBoolean_m1411907866, SByte_System_IConvertible_ToByte_m3014394206, SByte_System_IConvertible_ToChar_m209662238, SByte_System_IConvertible_ToDateTime_m3199045182, SByte_System_IConvertible_ToDecimal_m829366252, SByte_System_IConvertible_ToDouble_m2644916926, SByte_System_IConvertible_ToInt16_m4101107826, SByte_System_IConvertible_ToInt32_m2973330534, SByte_System_IConvertible_ToInt64_m1274211428, SByte_System_IConvertible_ToSByte_m637716800, SByte_System_IConvertible_ToSingle_m3135592030, SByte_System_IConvertible_ToType_m767613158, SByte_System_IConvertible_ToUInt16_m2610191870, SByte_System_IConvertible_ToUInt32_m4285595070, SByte_System_IConvertible_ToUInt64_m439236702, SByte_CompareTo_m2989383868, SByte_Equals_m1310501829, SByte_GetHashCode_m3213675817, SByte_CompareTo_m874593596, SByte_Equals_m958983443, SByte_Parse_m1565801368, SByte_Parse_m798902410, SByte_Parse_m1445278549, SByte_TryParse_m1515780220, SByte_ToString_m1290989501, SByte_ToString_m3084859627, SByte_ToString_m1923672677, SByte_ToString_m926863599, CodeAccessPermission__ctor_m1762050467, CodeAccessPermission_Equals_m3733109266, CodeAccessPermission_GetHashCode_m621045366, CodeAccessPermission_ToString_m4186930320, CodeAccessPermission_Element_m2845355336, CodeAccessPermission_ThrowInvalidPermission_m1519167963, AsymmetricAlgorithm__ctor_m1763307756, AsymmetricAlgorithm_System_IDisposable_Dispose_m2114841139, AsymmetricAlgorithm_get_KeySize_m3282676997, AsymmetricAlgorithm_set_KeySize_m503039102, AsymmetricAlgorithm_Clear_m3464408343, AsymmetricAlgorithm_GetNamedParam_m3241367956, AsymmetricKeyExchangeFormatter__ctor_m2175301955, AsymmetricSignatureDeformatter__ctor_m3630952218, AsymmetricSignatureFormatter__ctor_m497260761, Base64Constants__cctor_m1458390568, CryptoConfig__cctor_m3908597263, CryptoConfig_Initialize_m2703294454, CryptoConfig_CreateFromName_m3477093824, CryptoConfig_CreateFromName_m3520877612, CryptoConfig_MapNameToOID_m2965471927, CryptoConfig_EncodeOID_m3599780936, CryptoConfig_EncodeLongNumber_m2423541609, CryptographicException__ctor_m1518651353, CryptographicException__ctor_m2400722889, CryptographicException__ctor_m2542276749, CryptographicException__ctor_m1958048837, CryptographicException__ctor_m3585438106, CryptographicUnexpectedOperationException__ctor_m947087589, CryptographicUnexpectedOperationException__ctor_m1444713021, CryptographicUnexpectedOperationException__ctor_m3151554726, CspParameters__ctor_m3804826267, CspParameters__ctor_m2607591276, CspParameters__ctor_m622357160, CspParameters__ctor_m1032703204, CspParameters_get_Flags_m85401037, CspParameters_set_Flags_m3780635110, DES__ctor_m55215635, DES__cctor_m1229588474, DES_Create_m3635864569, DES_Create_m2951526313, DES_IsWeakKey_m395042781, DES_IsSemiWeakKey_m2127857387, DES_get_Key_m1355368637, DES_set_Key_m2925591286, DESCryptoServiceProvider__ctor_m611616238, DESCryptoServiceProvider_CreateDecryptor_m803126126, DESCryptoServiceProvider_CreateEncryptor_m1108854678, DESCryptoServiceProvider_GenerateIV_m3244683960, DESCryptoServiceProvider_GenerateKey_m1803326710, DESTransform__ctor_m3930717539, DESTransform__cctor_m3334109542, DESTransform_CipherFunct_m2387646882, DESTransform_Permutation_m2822081834, DESTransform_BSwap_m93014511, DESTransform_SetKey_m2023182447, DESTransform_ProcessBlock_m2076172049, DESTransform_ECB_m1050005411, DESTransform_GetStrongKey_m1123999973, DSA__ctor_m4204943475, DSA_Create_m2357499897, DSA_Create_m1124303785, DSA_ZeroizePrivateKey_m2681539184, DSA_FromXmlString_m4148544211, DSA_ToXmlString_m996177170, DSACryptoServiceProvider__ctor_m515501966, DSACryptoServiceProvider__ctor_m2273755103, DSACryptoServiceProvider__ctor_m3049271344, DSACryptoServiceProvider__cctor_m2613562847, DSACryptoServiceProvider_Finalize_m2913492500, DSACryptoServiceProvider_get_KeySize_m1055041503, DSACryptoServiceProvider_get_PublicOnly_m1018144562, DSACryptoServiceProvider_ExportParameters_m1890915433, DSACryptoServiceProvider_ImportParameters_m2336972636, DSACryptoServiceProvider_CreateSignature_m1822226263, DSACryptoServiceProvider_VerifySignature_m4027423871, DSACryptoServiceProvider_Dispose_m4270261890, DSACryptoServiceProvider_OnKeyGenerated_m3628123519, DSASignatureDeformatter__ctor_m611619298, DSASignatureDeformatter__ctor_m1067293596, DSASignatureDeformatter_SetHashAlgorithm_m30772481, DSASignatureDeformatter_SetKey_m2248380921, DSASignatureDeformatter_VerifySignature_m909896559, DSASignatureDescription__ctor_m3617515695, DSASignatureFormatter__ctor_m1468419489, DSASignatureFormatter_CreateSignature_m3786868856, DSASignatureFormatter_SetHashAlgorithm_m976206784, DSASignatureFormatter_SetKey_m4110297114, HashAlgorithm__ctor_m1204858244, HashAlgorithm_System_IDisposable_Dispose_m562789531, HashAlgorithm_get_CanReuseTransform_m3088450879, HashAlgorithm_ComputeHash_m1325366732, HashAlgorithm_ComputeHash_m2755161132, HashAlgorithm_Create_m2014549577, HashAlgorithm_get_Hash_m376137601, HashAlgorithm_get_HashSize_m2207294548, HashAlgorithm_Dispose_m666835064, HashAlgorithm_TransformBlock_m3829135048, HashAlgorithm_TransformFinalBlock_m1193599374, HMAC__ctor_m1246202746, HMAC_get_BlockSizeValue_m1165487130, HMAC_set_BlockSizeValue_m2390739579, HMAC_set_HashName_m876988162, HMAC_get_Key_m1472198904, HMAC_set_Key_m2294913711, HMAC_get_Block_m1790455563, HMAC_KeySetup_m198221232, HMAC_Dispose_m2786544238, HMAC_HashCore_m2163573618, HMAC_HashFinal_m2672326474, HMAC_Initialize_m1079175002, HMAC_Create_m3219387469, HMAC_Create_m2470432725, HMACMD5__ctor_m1093218926, HMACMD5__ctor_m1675538459, HMACRIPEMD160__ctor_m3981873572, HMACRIPEMD160__ctor_m2607560869, HMACSHA1__ctor_m3424706677, HMACSHA1__ctor_m2388804980, HMACSHA256__ctor_m1517498323, HMACSHA256__ctor_m3052953302, HMACSHA384__ctor_m943721271, HMACSHA384__ctor_m2580162034, HMACSHA384__cctor_m3003459414, HMACSHA384_set_ProduceLegacyHmacValues_m1568488641, HMACSHA512__ctor_m1288671344, HMACSHA512__ctor_m700228953, HMACSHA512__cctor_m812009789, HMACSHA512_set_ProduceLegacyHmacValues_m667703674, KeyedHashAlgorithm__ctor_m3887748574, KeyedHashAlgorithm_Finalize_m1932170692, KeyedHashAlgorithm_get_Key_m2526120156, KeyedHashAlgorithm_set_Key_m1327774667, KeyedHashAlgorithm_Dispose_m2870004946, KeyedHashAlgorithm_ZeroizeKey_m2894944313, KeySizes__ctor_m428291391, KeySizes_get_MaxSize_m213719012, KeySizes_get_MinSize_m986197586, KeySizes_get_SkipSize_m3502127683, KeySizes_IsLegal_m1623778158, KeySizes_IsLegalKeySize_m620693618, MACTripleDES__ctor_m1156967612, MACTripleDES_Setup_m1287775502, MACTripleDES_Finalize_m212085286, MACTripleDES_Dispose_m2913920944, MACTripleDES_Initialize_m3105423192, MACTripleDES_HashCore_m670642740, MACTripleDES_HashFinal_m3628572044, MD5__ctor_m319382023, MD5_Create_m3551683961, MD5_Create_m1448060457, MD5CryptoServiceProvider__ctor_m2509400698, MD5CryptoServiceProvider__cctor_m4294881395, MD5CryptoServiceProvider_Finalize_m3752913832, MD5CryptoServiceProvider_Dispose_m365177198, MD5CryptoServiceProvider_HashCore_m255435378, MD5CryptoServiceProvider_HashFinal_m430218570, MD5CryptoServiceProvider_Initialize_m4227557466, MD5CryptoServiceProvider_ProcessBlock_m1355255830, MD5CryptoServiceProvider_ProcessFinalBlock_m2458243595, MD5CryptoServiceProvider_AddLength_m3224905112, RandomNumberGenerator__ctor_m2911340286, RandomNumberGenerator_Create_m2029084057, RandomNumberGenerator_Create_m3168592393, RC2__ctor_m3351287492, RC2_Create_m1909558745, RC2_Create_m1027414473, RC2_get_EffectiveKeySize_m825827518, RC2_get_KeySize_m4162312413, RC2_set_KeySize_m3085280342, RC2CryptoServiceProvider__ctor_m1138654685, RC2CryptoServiceProvider_get_EffectiveKeySize_m741031373, RC2CryptoServiceProvider_CreateDecryptor_m1062427871, RC2CryptoServiceProvider_CreateEncryptor_m1368156423, RC2CryptoServiceProvider_GenerateIV_m4034172969, RC2CryptoServiceProvider_GenerateKey_m507682213, RC2Transform__ctor_m3390235803, RC2Transform__cctor_m754720983, RC2Transform_ECB_m224687124, Rijndael__ctor_m3342826786, Rijndael_Create_m1196531453, Rijndael_Create_m3578856229, RijndaelManaged__ctor_m504318565, RijndaelManaged_GenerateIV_m4176896161, RijndaelManaged_GenerateKey_m637133869, RijndaelManaged_CreateDecryptor_m382017683, RijndaelManaged_CreateEncryptor_m687746235, RijndaelManagedTransform__ctor_m380188472, RijndaelManagedTransform_System_IDisposable_Dispose_m2279034794, RijndaelManagedTransform_get_CanReuseTransform_m1112862356, RijndaelManagedTransform_TransformBlock_m549345503, RijndaelManagedTransform_TransformFinalBlock_m1653937417, RijndaelTransform__ctor_m4212591387, RijndaelTransform__cctor_m2341284277, RijndaelTransform_Clear_m4008934691, RijndaelTransform_ECB_m759186162, RijndaelTransform_SubByte_m2002058519, RijndaelTransform_Encrypt128_m3918367840, RijndaelTransform_Encrypt192_m3340191341, RijndaelTransform_Encrypt256_m282559940, RijndaelTransform_Decrypt128_m3577856904, RijndaelTransform_Decrypt192_m2999680405, RijndaelTransform_Decrypt256_m4237016300, RIPEMD160__ctor_m3115379325, RIPEMD160Managed__ctor_m2275684522, RIPEMD160Managed_Initialize_m3724410922, RIPEMD160Managed_HashCore_m1945676962, RIPEMD160Managed_HashFinal_m3898709370, RIPEMD160Managed_Finalize_m3256301432, RIPEMD160Managed_ProcessBlock_m2893762534, RIPEMD160Managed_Compress_m443778492, RIPEMD160Managed_CompressFinal_m4280869119, RIPEMD160Managed_ROL_m3397150607, RIPEMD160Managed_F_m1849119801, RIPEMD160Managed_G_m824425880, RIPEMD160Managed_H_m4094699255, RIPEMD160Managed_I_m3070005334, RIPEMD160Managed_J_m2045311413, RIPEMD160Managed_FF_m1086517667, RIPEMD160Managed_GG_m1647075779, RIPEMD160Managed_HH_m2207633891, RIPEMD160Managed_II_m2768192003, RIPEMD160Managed_JJ_m3328750115, RIPEMD160Managed_FFF_m2515984407, RIPEMD160Managed_GGG_m4207329144, RIPEMD160Managed_HHH_m1603706585, RIPEMD160Managed_III_m3295051322, RIPEMD160Managed_JJJ_m691428763, RNGCryptoServiceProvider__ctor_m3574180295, RNGCryptoServiceProvider__cctor_m2943310534, RNGCryptoServiceProvider_Check_m865849837, RNGCryptoServiceProvider_RngOpen_m645048892, RNGCryptoServiceProvider_RngInitialize_m3158968500, RNGCryptoServiceProvider_RngGetBytes_m213562877, RNGCryptoServiceProvider_RngClose_m837396522, RNGCryptoServiceProvider_GetBytes_m3639238391, RNGCryptoServiceProvider_GetNonZeroBytes_m909979576, RNGCryptoServiceProvider_Finalize_m1973439803, RSA__ctor_m1717134245, RSA_Create_m3157832121, RSA_Create_m1188512233, RSA_ZeroizePrivateKey_m3364848340, RSA_FromXmlString_m3641838305, RSA_ToXmlString_m2919494468, RSACryptoServiceProvider__ctor_m8796060, RSACryptoServiceProvider__ctor_m32080133, RSACryptoServiceProvider__ctor_m4233192173, RSACryptoServiceProvider__cctor_m4085548945, RSACryptoServiceProvider_Common_m3809083019, RSACryptoServiceProvider_Finalize_m152924998, RSACryptoServiceProvider_get_KeySize_m1022373229, RSACryptoServiceProvider_get_PublicOnly_m2755170020, RSACryptoServiceProvider_DecryptValue_m3565674343, RSACryptoServiceProvider_EncryptValue_m511499327, RSACryptoServiceProvider_ExportParameters_m71989545, RSACryptoServiceProvider_ImportParameters_m3023964864, RSACryptoServiceProvider_Dispose_m4161630864, RSACryptoServiceProvider_OnKeyGenerated_m4166429105, RSAPKCS1KeyExchangeFormatter__ctor_m2849280717, RSAPKCS1KeyExchangeFormatter_CreateKeyExchange_m473400456, RSAPKCS1KeyExchangeFormatter_SetRSAKey_m2782488748, RSAPKCS1SHA1SignatureDescription__ctor_m1746812082, RSAPKCS1SignatureDeformatter__ctor_m535201002, RSAPKCS1SignatureDeformatter__ctor_m3465174692, RSAPKCS1SignatureDeformatter_SetHashAlgorithm_m4108380169, RSAPKCS1SignatureDeformatter_SetKey_m3568250865, RSAPKCS1SignatureDeformatter_VerifySignature_m2271699363, RSAPKCS1SignatureFormatter__ctor_m3211354793, RSAPKCS1SignatureFormatter_CreateSignature_m894707804, RSAPKCS1SignatureFormatter_SetHashAlgorithm_m15087816, RSAPKCS1SignatureFormatter_SetKey_m862512146, SHA1__ctor_m910599164, SHA1_Create_m2764862537, SHA1_Create_m1152395609, SHA1CryptoServiceProvider__ctor_m2094228389, SHA1CryptoServiceProvider_Finalize_m565501597, SHA1CryptoServiceProvider_Dispose_m1115384985, SHA1CryptoServiceProvider_HashCore_m221312477, SHA1CryptoServiceProvider_HashFinal_m642464225, SHA1CryptoServiceProvider_Initialize_m3436081679, SHA1Internal__ctor_m2779764927, SHA1Internal_HashCore_m2471520887, SHA1Internal_HashFinal_m844484623, SHA1Internal_Initialize_m2698059061, SHA1Internal_ProcessBlock_m2806549466, SHA1Internal_InitialiseBuff_m1659676512, SHA1Internal_FillBuff_m3885846173, SHA1Internal_ProcessFinalBlock_m1828667302, SHA1Internal_AddLength_m2579300445, SHA1Managed__ctor_m3952187979, SHA1Managed_HashCore_m2755230979, SHA1Managed_HashFinal_m2842242055, SHA1Managed_Initialize_m633762601, SHA256__ctor_m3526765978, SHA256_Create_m2242546445, SHA256_Create_m968110357, SHA256Managed__ctor_m1925161709, SHA256Managed_HashCore_m1891998501, SHA256Managed_HashFinal_m446039593, SHA256Managed_Initialize_m2794356679, SHA256Managed_ProcessBlock_m4117131779, SHA256Managed_ProcessFinalBlock_m2991256248, SHA256Managed_AddLength_m4004035979, SHA384__ctor_m2952988926, SHA384Managed__ctor_m3972787977, SHA384Managed_Initialize_m2139501410, SHA384Managed_Initialize_m1947821355, SHA384Managed_HashCore_m467338305, SHA384Managed_HashFinal_m3743867973, SHA384Managed_update_m2768239591, SHA384Managed_processWord_m2575145806, SHA384Managed_unpackWord_m3056553264, SHA384Managed_adjustByteCounts_m2303565974, SHA384Managed_processLength_m3108542004, SHA384Managed_processBlock_m2376644313, SHA512__ctor_m3297938999, SHA512Managed__ctor_m2261764016, SHA512Managed_Initialize_m3491115867, SHA512Managed_Initialize_m1471536356, SHA512Managed_HashCore_m1161829416, SHA512Managed_HashFinal_m2897219948, SHA512Managed_update_m2004423182, SHA512Managed_processWord_m2245859317, SHA512Managed_unpackWord_m3783776233, SHA512Managed_adjustByteCounts_m2278926735, SHA512Managed_processLength_m3040052269, SHA512Managed_processBlock_m4228260946, SHA512Managed_rotateRight_m2879233295, SHA512Managed_Ch_m311063408, SHA512Managed_Maj_m3317611421, SHA512Managed_Sum0_m1128336038, SHA512Managed_Sum1_m617801861, SHA512Managed_Sigma0_m945953344, SHA512Managed_Sigma1_m435419167, SHAConstants__cctor_m2653985967, SignatureDescription__ctor_m565127101, SignatureDescription_set_DeformatterAlgorithm_m1987350616, SignatureDescription_set_DigestAlgorithm_m1782853785, SignatureDescription_set_FormatterAlgorithm_m2575614969, SignatureDescription_set_KeyAlgorithm_m2741949518, SymmetricAlgorithm__ctor_m3015042793, SymmetricAlgorithm_System_IDisposable_Dispose_m1612088406, SymmetricAlgorithm_Finalize_m591291609, SymmetricAlgorithm_Clear_m421176084, SymmetricAlgorithm_Dispose_m3474384861, SymmetricAlgorithm_get_BlockSize_m4098581864, SymmetricAlgorithm_set_BlockSize_m2273875369, SymmetricAlgorithm_get_FeedbackSize_m4247492686, SymmetricAlgorithm_get_IV_m2399566439, SymmetricAlgorithm_set_IV_m870580644, SymmetricAlgorithm_get_Key_m1374487335, SymmetricAlgorithm_set_Key_m4256764768, SymmetricAlgorithm_get_KeySize_m3649844218, SymmetricAlgorithm_set_KeySize_m1757877563, SymmetricAlgorithm_get_LegalKeySizes_m472333301, SymmetricAlgorithm_get_Mode_m595116277, SymmetricAlgorithm_set_Mode_m3645569238, SymmetricAlgorithm_get_Padding_m3269163097, SymmetricAlgorithm_set_Padding_m2651553690, SymmetricAlgorithm_CreateDecryptor_m861706393, SymmetricAlgorithm_CreateEncryptor_m1591100785, SymmetricAlgorithm_Create_m1327881011, ToBase64Transform_System_IDisposable_Dispose_m3306649020, ToBase64Transform_Finalize_m1322714047, ToBase64Transform_get_CanReuseTransform_m1085934718, ToBase64Transform_get_InputBlockSize_m3015719818, ToBase64Transform_get_OutputBlockSize_m2038267529, ToBase64Transform_Dispose_m171060919, ToBase64Transform_TransformBlock_m3037413161, ToBase64Transform_InternalTransformBlock_m4265320362, ToBase64Transform_TransformFinalBlock_m3613045167, ToBase64Transform_InternalTransformFinalBlock_m1422663948, TripleDES__ctor_m394410001, TripleDES_get_Key_m3541813947, TripleDES_set_Key_m1852525880, TripleDES_IsWeakKey_m2750070815, TripleDES_Create_m1830328057, TripleDES_Create_m354804905, TripleDESCryptoServiceProvider__ctor_m2538905264, TripleDESCryptoServiceProvider_GenerateIV_m1507918646, TripleDESCryptoServiceProvider_GenerateKey_m3798176824, TripleDESCryptoServiceProvider_CreateDecryptor_m3177241196, TripleDESCryptoServiceProvider_CreateEncryptor_m3482969748, TripleDESTransform__ctor_m3679252923, TripleDESTransform_ECB_m1823441441, TripleDESTransform_GetStrongKey_m101650019, X509Certificate__ctor_m1909610000, X509Certificate__ctor_m3185150413, X509Certificate__ctor_m2228518780, X509Certificate__ctor_m1187024573, X509Certificate_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m755168634, X509Certificate_System_Runtime_Serialization_ISerializable_GetObjectData_m2406201743, X509Certificate_tostr_m1883898870, X509Certificate_Equals_m2510910421, X509Certificate_GetCertHash_m2872779852, X509Certificate_GetCertHashString_m539795190, X509Certificate_GetEffectiveDateString_m523012725, X509Certificate_GetExpirationDateString_m1866410017, X509Certificate_GetHashCode_m1423591751, X509Certificate_GetIssuerName_m1001053335, X509Certificate_GetName_m2736019966, X509Certificate_GetPublicKey_m3757092702, X509Certificate_GetRawCertData_m86483614, X509Certificate_ToString_m2228422065, X509Certificate_ToString_m2210492776, X509Certificate_get_Issuer_m681285767, X509Certificate_get_Subject_m4012979648, X509Certificate_Equals_m2965547631, X509Certificate_Import_m2045724600, X509Certificate_Reset_m4169919017, SecurityPermission__ctor_m3042719510, SecurityPermission_set_Flags_m3479431326, SecurityPermission_IsUnrestricted_m113825050, SecurityPermission_IsSubsetOf_m2058372554, SecurityPermission_ToXml_m258336926, SecurityPermission_IsEmpty_m3718545737, SecurityPermission_Cast_m644352077, StrongNamePublicKeyBlob_Equals_m167131279, StrongNamePublicKeyBlob_GetHashCode_m1175711719, StrongNamePublicKeyBlob_ToString_m2295430737, PermissionSet__ctor_m3410884176, PermissionSet__ctor_m1161980594, PermissionSet_set_DeclarativeSecurity_m1327442290, PermissionSet_CreateFromBinaryFormat_m554196038, ApplicationTrust__ctor_m3384937791, Evidence__ctor_m2923485872, Evidence_get_Count_m2256383184, Evidence_get_IsSynchronized_m1680953145, Evidence_get_SyncRoot_m397267429, Evidence_get_HostEvidenceList_m4094307694, Evidence_get_AssemblyEvidenceList_m2146797868, Evidence_CopyTo_m2676737933, Evidence_Equals_m3042273827, Evidence_GetEnumerator_m1666533534, Evidence_GetHashCode_m555337339, EvidenceEnumerator__ctor_m2234300346, EvidenceEnumerator_MoveNext_m262874302, EvidenceEnumerator_Reset_m909327129, EvidenceEnumerator_get_Current_m2705378437, Hash__ctor_m3344615385, Hash__ctor_m2508943770, Hash_GetObjectData_m3237379831, Hash_ToString_m280687476, Hash_GetData_m808019137, StrongName_get_Name_m2625731792, StrongName_get_PublicKey_m99431051, StrongName_get_Version_m1418835908, StrongName_Equals_m3416747224, StrongName_GetHashCode_m1084673968, StrongName_ToString_m1987456872, WindowsIdentity__ctor_m2888541667, WindowsIdentity__cctor_m309158987, WindowsIdentity_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m1877162132, WindowsIdentity_System_Runtime_Serialization_ISerializable_GetObjectData_m3559271593, WindowsIdentity_Dispose_m2952357727, WindowsIdentity_GetCurrentToken_m3719460523, WindowsIdentity_GetTokenName_m2587745703, SecurityContext__ctor_m2890261396, SecurityContext__ctor_m1345715454, SecurityContext_Capture_m3640798635, SecurityContext_get_FlowSuppressed_m2046518873, SecurityContext_get_CompressedStack_m649521097, SecurityElement__ctor_m3616501115, SecurityElement__ctor_m2591154807, SecurityElement__cctor_m429967270, SecurityElement_get_Children_m3662285689, SecurityElement_get_Tag_m1611173913, SecurityElement_set_Text_m2824457339, SecurityElement_AddAttribute_m979045638, SecurityElement_AddChild_m17363117, SecurityElement_Escape_m855150247, SecurityElement_Unescape_m249625582, SecurityElement_IsValidAttributeName_m190948498, SecurityElement_IsValidAttributeValue_m1458092724, SecurityElement_IsValidTag_m3543842271, SecurityElement_IsValidText_m2889048252, SecurityElement_SearchForChildByTag_m1597451503, SecurityElement_ToString_m1891938598, SecurityElement_ToXml_m2446329140, SecurityElement_GetAttribute_m3634791704, SecurityAttribute__ctor_m3979866052, SecurityAttribute_get_Name_m1633103259, SecurityAttribute_get_Value_m1891267395, SecurityException__ctor_m4184458484, SecurityException__ctor_m1163560590, SecurityException__ctor_m1779937333, SecurityException_get_Demanded_m370801454, SecurityException_get_FirstPermissionThatFailed_m4208204342, SecurityException_get_PermissionState_m2560577038, SecurityException_get_PermissionType_m2335749224, SecurityException_get_GrantedSet_m3460059773, SecurityException_get_RefusedSet_m4272843656, SecurityException_GetObjectData_m2715021970, SecurityException_ToString_m3022084793, SecurityFrame__ctor_m1972945906, SecurityFrame__GetSecurityStack_m4181326791, SecurityFrame_InitFromRuntimeFrame_m2623746169, SecurityFrame_get_Assembly_m2156341276, SecurityFrame_get_Domain_m2707144406, SecurityFrame_ToString_m3072626007, SecurityFrame_GetStack_m2712475205, SecurityManager__cctor_m3992604439, SecurityManager_get_SecurityEnabled_m2857115566, SecurityManager_Decode_m1966008144, SecurityManager_Decode_m958562396, SecuritySafeCriticalAttribute__ctor_m4074397875, SuppressUnmanagedCodeSecurityAttribute__ctor_m4118844453, UnverifiableCodeAttribute__ctor_m3261770352, SerializableAttribute__ctor_m3559493780, Single_System_IConvertible_ToBoolean_m1763424693, Single_System_IConvertible_ToByte_m3813746639, Single_System_IConvertible_ToChar_m1479685867, Single_System_IConvertible_ToDateTime_m259491893, Single_System_IConvertible_ToDecimal_m430630997, Single_System_IConvertible_ToDouble_m3847210273, Single_System_IConvertible_ToInt16_m2476492917, Single_System_IConvertible_ToInt32_m4151896117, Single_System_IConvertible_ToInt64_m305537749, Single_System_IConvertible_ToSByte_m3027644949, Single_System_IConvertible_ToSingle_m1116951951, Single_System_IConvertible_ToType_m1756485413, Single_System_IConvertible_ToUInt16_m3288807997, Single_System_IConvertible_ToUInt32_m1668493233, Single_System_IConvertible_ToUInt64_m4272161775, Single_CompareTo_m4059132493, Single_Equals_m2650902624, Single_CompareTo_m3518345828, Single_Equals_m2110115959, Single_GetHashCode_m65342520, Single_IsInfinity_m1725004900, Single_IsNaN_m2036953453, Single_IsNegativeInfinity_m3390831215, Single_IsPositiveInfinity_m1894985771, Single_Parse_m4064562812, Single_ToString_m5736032, Single_ToString_m1436803918, Single_ToString_m3798733330, Single_GetTypeCode_m4165632757, String__ctor_m2618237231, String__ctor_m683273815, String__ctor_m2956844983, String__ctor_m3883063966, String__cctor_m351290025, String_System_IConvertible_ToBoolean_m1435209676, String_System_IConvertible_ToByte_m651944216, String_System_IConvertible_ToChar_m2612850740, String_System_IConvertible_ToDateTime_m2969728254, String_System_IConvertible_ToDecimal_m102415980, String_System_IConvertible_ToDouble_m1896960042, String_System_IConvertible_ToInt16_m3244865612, String_System_IConvertible_ToInt32_m625301516, String_System_IConvertible_ToInt64_m1073910444, String_System_IConvertible_ToSByte_m3796017644, String_System_IConvertible_ToSingle_m3461669016, String_System_IConvertible_ToType_m1615588078, String_System_IConvertible_ToUInt16_m1338557766, String_System_IConvertible_ToUInt32_m4013210298, String_System_IConvertible_ToUInt64_m2321911544, String_System_Collections_Generic_IEnumerableU3CcharU3E_GetEnumerator_m319382653, String_System_Collections_IEnumerable_GetEnumerator_m1432650703, String_Equals_m1002918753, String_Equals_m3763831415, String_Equals_m3541721061, String_get_Chars_m3015341861, String_Clone_m2600780148, String_CopyTo_m3455012278, String_ToCharArray_m1208288742, String_ToCharArray_m736861184, String_Split_m290179486, String_Split_m434660345, String_Split_m1407702193, String_Split_m985753324, String_Split_m459616251, String_Substring_m2809233063, String_Substring_m675079568, String_SubstringUnchecked_m3781557708, String_Trim_m1030489823, String_Trim_m1469603388, String_TrimStart_m3483716918, String_TrimEnd_m3980947229, String_FindNotWhiteSpace_m1718857862, String_FindNotInTable_m3192184121, String_Compare_m1439712187, String_Compare_m1309590114, String_Compare_m279494420, String_Compare_m3930467693, String_CompareTo_m2173220054, String_CompareTo_m1951109700, String_CompareOrdinal_m1327873633, String_CompareOrdinalUnchecked_m1968789502, String_CompareOrdinalCaseInsensitiveUnchecked_m4221700897, String_EndsWith_m2265568550, String_IndexOfAny_m3660242324, String_IndexOfAny_m1954541507, String_IndexOfAny_m472916468, String_IndexOfAnyUnchecked_m706673842, String_IndexOf_m864002126, String_IndexOf_m1456548334, String_IndexOfOrdinal_m2362241597, String_IndexOfOrdinalUnchecked_m3747812990, String_IndexOfOrdinalIgnoreCaseUnchecked_m1319653504, String_IndexOf_m2775210486, String_IndexOf_m204546721, String_IndexOf_m2077558742, String_IndexOfUnchecked_m1897528852, String_IndexOf_m1476794331, String_IndexOf_m1991631068, String_IndexOf_m4052910459, String_LastIndexOfAny_m1405458718, String_LastIndexOfAny_m2835072121, String_LastIndexOfAnyUnchecked_m3532047592, String_LastIndexOf_m3245805612, String_LastIndexOf_m902083627, String_LastIndexOf_m434357900, String_LastIndexOfUnchecked_m4042746910, String_LastIndexOf_m2747144337, String_LastIndexOf_m1189898929, String_Contains_m3032019141, String_IsNullOrEmpty_m1256468773, String_PadRight_m1932151982, String_StartsWith_m1500793453, String_Replace_m3369701083, String_Replace_m2915759397, String_ReplaceUnchecked_m872372231, String_ReplaceFallback_m3944881236, String_Remove_m242090629, String_ToLower_m2421900555, String_ToLower_m2140020155, String_ToLowerInvariant_m4111189975, String_ToString_m1382284457, String_ToString_m1534627031, String_Format_m2471250780, String_Format_m2398979370, String_Format_m3928391288, String_Format_m4050103162, String_Format_m3351777162, String_FormatHelper_m2506490508, String_Concat_m389863537, String_Concat_m2809334143, String_Concat_m138640077, String_Concat_m1825781833, String_Concat_m2933632197, String_Concat_m3016520001, String_Concat_m21867311, String_ConcatInternal_m3246297125, String_Insert_m3926397187, String_Join_m2789530325, String_Join_m908926965, String_JoinUnchecked_m3141793139, String_get_Length_m2979997331, String_ParseFormatSpecifier_m3682617588, String_ParseDecimal_m2522196181, String_InternalSetChar_m3191521125, String_InternalSetLength_m4220170206, String_GetHashCode_m471729487, String_GetCaseInsensitiveHashCode_m952232874, String_CreateString_m828432250, String_CreateString_m197914714, String_CreateString_m416250615, String_CreateString_m3205262901, String_CreateString_m1597586261, String_CreateString_m3402832113, String_CreateString_m578950865, String_CreateString_m356585284, String_memcpy4_m1762596688, String_memcpy2_m1338949966, String_memcpy1_m3274610253, String_memcpy_m3785779208, String_CharCopy_m3846447580, String_CharCopyReverse_m2265296522, String_CharCopy_m805553372, String_CharCopy_m432636757, String_CharCopyReverse_m1535680650, String_InternalSplit_m354977691, String_InternalAllocateStr_m4108479373, String_op_Equality_m1260523650, String_op_Inequality_m2125462205, StringComparer__ctor_m50784983, StringComparer__cctor_m1092238262, StringComparer_get_InvariantCultureIgnoreCase_m3518508912, StringComparer_get_OrdinalIgnoreCase_m2513153269, StringComparer_Compare_m3931640044, StringComparer_Equals_m1694946776, StringComparer_GetHashCode_m1067393138, SystemException__ctor_m677430257, SystemException__ctor_m3697314481, SystemException__ctor_m2083527090, SystemException__ctor_m253088421, ASCIIEncoding__ctor_m3312307762, ASCIIEncoding_GetByteCount_m2816111956, ASCIIEncoding_GetByteCount_m3333440827, ASCIIEncoding_GetBytes_m1888860132, ASCIIEncoding_GetBytes_m1102371839, ASCIIEncoding_GetBytes_m1463138813, ASCIIEncoding_GetBytes_m4012262872, ASCIIEncoding_GetCharCount_m1617524400, ASCIIEncoding_GetChars_m4229110870, ASCIIEncoding_GetChars_m608322798, ASCIIEncoding_GetMaxByteCount_m2951644310, ASCIIEncoding_GetMaxCharCount_m3743179656, ASCIIEncoding_GetString_m3750474735, ASCIIEncoding_GetBytes_m1886644629, ASCIIEncoding_GetByteCount_m858235493, ASCIIEncoding_GetDecoder_m3592483183, Decoder__ctor_m1448672242, Decoder_set_Fallback_m4287157405, Decoder_get_FallbackBuffer_m1620793422, DecoderExceptionFallback__ctor_m3484109795, DecoderExceptionFallback_CreateFallbackBuffer_m3152161742, DecoderExceptionFallback_Equals_m2487768146, DecoderExceptionFallback_GetHashCode_m1445478582, DecoderExceptionFallbackBuffer__ctor_m1509764995, DecoderExceptionFallbackBuffer_get_Remaining_m629320722, DecoderExceptionFallbackBuffer_Fallback_m3367248051, DecoderExceptionFallbackBuffer_GetNextChar_m3794963074, DecoderFallback__ctor_m811029552, DecoderFallback__cctor_m3184983421, DecoderFallback_get_ExceptionFallback_m325010629, DecoderFallback_get_ReplacementFallback_m2886502920, DecoderFallback_get_StandardSafeFallback_m2811048538, DecoderFallbackBuffer__ctor_m2764245520, DecoderFallbackBuffer_Reset_m410678461, DecoderFallbackException__ctor_m3678102567, DecoderFallbackException__ctor_m1586655803, DecoderFallbackException__ctor_m387223961, DecoderReplacementFallback__ctor_m2715929664, DecoderReplacementFallback__ctor_m1044232898, DecoderReplacementFallback_get_DefaultString_m3033954916, DecoderReplacementFallback_CreateFallbackBuffer_m2535777809, DecoderReplacementFallback_Equals_m574453359, DecoderReplacementFallback_GetHashCode_m1988771411, DecoderReplacementFallbackBuffer__ctor_m1088992558, DecoderReplacementFallbackBuffer_get_Remaining_m3834625199, DecoderReplacementFallbackBuffer_Fallback_m4123943606, DecoderReplacementFallbackBuffer_GetNextChar_m581213919, DecoderReplacementFallbackBuffer_Reset_m4105085133, EncoderExceptionFallback__ctor_m389367483, EncoderExceptionFallback_CreateFallbackBuffer_m703436318, EncoderExceptionFallback_Equals_m2398516522, EncoderExceptionFallback_GetHashCode_m2333129102, EncoderExceptionFallbackBuffer__ctor_m2397415515, EncoderExceptionFallbackBuffer_get_Remaining_m540069098, EncoderExceptionFallbackBuffer_Fallback_m3905093511, EncoderExceptionFallbackBuffer_Fallback_m3413448272, EncoderExceptionFallbackBuffer_GetNextChar_m1461911898, EncoderFallback__ctor_m3356968536, EncoderFallback__cctor_m504713301, EncoderFallback_get_ExceptionFallback_m3519102229, EncoderFallback_get_ReplacementFallback_m1506913880, EncoderFallback_get_StandardSafeFallback_m2993461258, EncoderFallbackBuffer__ctor_m423542328, EncoderFallbackException__ctor_m583360255, EncoderFallbackException__ctor_m2276513379, EncoderFallbackException__ctor_m1029930777, EncoderFallbackException__ctor_m923323106, EncoderReplacementFallback__ctor_m785936664, EncoderReplacementFallback__ctor_m2572399850, EncoderReplacementFallback_get_DefaultString_m2944703292, EncoderReplacementFallback_CreateFallbackBuffer_m2952723553, EncoderReplacementFallback_Equals_m702988615, EncoderReplacementFallback_GetHashCode_m322429227, EncoderReplacementFallbackBuffer__ctor_m1930588894, EncoderReplacementFallbackBuffer_get_Remaining_m3963160455, EncoderReplacementFallbackBuffer_Fallback_m1355578442, EncoderReplacementFallbackBuffer_Fallback_m2465367699, EncoderReplacementFallbackBuffer_Fallback_m2505575553, EncoderReplacementFallbackBuffer_GetNextChar_m491962295, Encoding__ctor_m1037401021, Encoding__ctor_m1203666318, Encoding__cctor_m1612564368, Encoding___m2147510347, Encoding_get_IsReadOnly_m1827016926, Encoding_get_DecoderFallback_m3409202121, Encoding_set_DecoderFallback_m3527983786, Encoding_get_EncoderFallback_m252351353, Encoding_SetFallbackInternal_m1712004450, Encoding_Equals_m3267361452, Encoding_GetByteCount_m3861962638, Encoding_GetByteCount_m2187805511, Encoding_GetBytes_m2409970698, Encoding_GetBytes_m2632143804, Encoding_GetBytes_m2769384597, Encoding_GetBytes_m957986677, Encoding_GetChars_m468469183, Encoding_GetDecoder_m3680646086, Encoding_InvokeI18N_m2813164284, Encoding_GetEncoding_m2886882079, Encoding_Clone_m4157729955, Encoding_GetEncoding_m4050696948, Encoding_GetHashCode_m2437082384, Encoding_GetPreamble_m1160659539, Encoding_GetString_m565750122, Encoding_GetString_m3808087178, Encoding_get_ASCII_m1425378925, Encoding_get_BigEndianUnicode_m1578127592, Encoding_InternalCodePage_m1810234872, Encoding_get_Default_m1600689821, Encoding_get_ISOLatin1_m4135279598, Encoding_get_UTF7_m619557558, Encoding_get_UTF8_m619558519, Encoding_get_UTF8Unmarked_m1891261276, Encoding_get_UTF8UnmarkedUnsafe_m2775471970, Encoding_get_Unicode_m2158134329, Encoding_get_UTF32_m2026305570, Encoding_get_BigEndianUTF32_m3679331473, Encoding_GetByteCount_m957110328, Encoding_GetBytes_m1804873512, ForwardingDecoder__ctor_m2930063152, ForwardingDecoder_GetChars_m3390742011, Latin1Encoding__ctor_m1980938192, Latin1Encoding_GetByteCount_m706721210, Latin1Encoding_GetByteCount_m4034541857, Latin1Encoding_GetBytes_m4245120190, Latin1Encoding_GetBytes_m3965378137, Latin1Encoding_GetBytes_m3819398871, Latin1Encoding_GetBytes_m2580301874, Latin1Encoding_GetCharCount_m3803100950, Latin1Encoding_GetChars_m2290403632, Latin1Encoding_GetMaxByteCount_m2399868668, Latin1Encoding_GetMaxCharCount_m3191404014, Latin1Encoding_GetString_m1453607223, Latin1Encoding_GetString_m2574520983, StringBuilder__ctor_m4031300257, StringBuilder__ctor_m3542181846, StringBuilder__ctor_m135953004, StringBuilder__ctor_m3624398269, StringBuilder__ctor_m1143895062, StringBuilder__ctor_m1310751873, StringBuilder__ctor_m3783410093, StringBuilder_System_Runtime_Serialization_ISerializable_GetObjectData_m2909896863, StringBuilder_get_Capacity_m884438143, StringBuilder_set_Capacity_m519605088, StringBuilder_get_Length_m2443133099, StringBuilder_set_Length_m1952332172, StringBuilder_get_Chars_m1670994701, StringBuilder_set_Chars_m1845996850, StringBuilder_ToString_m350379841, StringBuilder_ToString_m3621056261, StringBuilder_Remove_m970775893, StringBuilder_Replace_m118777941, StringBuilder_Replace_m1895746933, StringBuilder_Append_m3898090075, StringBuilder_Append_m2189222616, StringBuilder_Append_m2189225561, StringBuilder_Append_m4120200429, StringBuilder_Append_m2143093878, StringBuilder_Append_m1038583841, StringBuilder_Append_m2623154804, StringBuilder_Append_m2996071419, StringBuilder_AppendLine_m568622107, StringBuilder_AppendLine_m655025863, StringBuilder_AppendFormat_m279545936, StringBuilder_AppendFormat_m259793396, StringBuilder_AppendFormat_m3723191730, StringBuilder_AppendFormat_m3487355136, StringBuilder_AppendFormat_m508648398, StringBuilder_Insert_m745836595, StringBuilder_Insert_m1867188302, StringBuilder_Insert_m1606924164, StringBuilder_InternalEnsureCapacity_m3925915998, UnicodeEncoding__ctor_m2464846694, UnicodeEncoding__ctor_m628477824, UnicodeEncoding__ctor_m1753322493, UnicodeEncoding_GetByteCount_m1713744008, UnicodeEncoding_GetByteCount_m3953856879, UnicodeEncoding_GetByteCount_m2364391577, UnicodeEncoding_GetBytes_m1303521840, UnicodeEncoding_GetBytes_m877800521, UnicodeEncoding_GetBytes_m1942137033, UnicodeEncoding_GetBytesInternal_m3215369228, UnicodeEncoding_GetCharCount_m515156452, UnicodeEncoding_GetChars_m3643772578, UnicodeEncoding_GetString_m254667515, UnicodeEncoding_GetCharsInternal_m801541210, UnicodeEncoding_GetMaxByteCount_m2171016138, UnicodeEncoding_GetMaxCharCount_m2962551484, UnicodeEncoding_GetDecoder_m3461174523, UnicodeEncoding_GetPreamble_m2255522896, UnicodeEncoding_Equals_m258981209, UnicodeEncoding_GetHashCode_m2705427633, UnicodeEncoding_CopyChars_m137508992, UnicodeDecoder__ctor_m1607892801, UnicodeDecoder_GetChars_m4249510390, UTF32Encoding__ctor_m3047105501, UTF32Encoding__ctor_m1611597417, UTF32Encoding__ctor_m2606271988, UTF32Encoding_GetByteCount_m4053178303, UTF32Encoding_GetBytes_m2096762137, UTF32Encoding_GetCharCount_m2854590747, UTF32Encoding_GetChars_m142045579, UTF32Encoding_GetMaxByteCount_m4234377217, UTF32Encoding_GetMaxCharCount_m730945267, UTF32Encoding_GetDecoder_m2353622692, UTF32Encoding_GetPreamble_m4266568199, UTF32Encoding_Equals_m2030004752, UTF32Encoding_GetHashCode_m224607976, UTF32Encoding_GetByteCount_m3487534096, UTF32Encoding_GetByteCount_m3893434214, UTF32Encoding_GetBytes_m1300787456, UTF32Encoding_GetBytes_m1671040818, UTF32Encoding_GetString_m3449921892, UTF32Decoder__ctor_m2891819411, UTF32Decoder_GetChars_m1515909476, UTF7Encoding__ctor_m3219339181, UTF7Encoding__ctor_m2518973028, UTF7Encoding__cctor_m533170592, UTF7Encoding_GetHashCode_m3782877952, UTF7Encoding_Equals_m85066652, UTF7Encoding_InternalGetByteCount_m2693580788, UTF7Encoding_GetByteCount_m1291682775, UTF7Encoding_InternalGetBytes_m3747805498, UTF7Encoding_GetBytes_m3199141377, UTF7Encoding_InternalGetCharCount_m2327269409, UTF7Encoding_GetCharCount_m93095219, UTF7Encoding_InternalGetChars_m504744357, UTF7Encoding_GetChars_m1244424819, UTF7Encoding_GetMaxByteCount_m3189713945, UTF7Encoding_GetMaxCharCount_m3981249291, UTF7Encoding_GetDecoder_m292232534, UTF7Encoding_GetByteCount_m2801467944, UTF7Encoding_GetByteCount_m3034247550, UTF7Encoding_GetBytes_m3752707352, UTF7Encoding_GetBytes_m2773420058, UTF7Encoding_GetString_m138259962, UTF7Decoder__ctor_m4062693192, UTF7Decoder_GetChars_m4162711992, UTF8Encoding__ctor_m2222266828, UTF8Encoding__ctor_m508869187, UTF8Encoding__ctor_m4274875098, UTF8Encoding_InternalGetByteCount_m1402598209, UTF8Encoding_InternalGetByteCount_m776634770, UTF8Encoding_GetByteCount_m3411969974, UTF8Encoding_GetByteCount_m2560927815, UTF8Encoding_InternalGetBytes_m1304805863, UTF8Encoding_InternalGetBytes_m4145641218, UTF8Encoding_GetBytes_m758519618, UTF8Encoding_GetBytes_m332798299, UTF8Encoding_GetBytes_m1643674103, UTF8Encoding_InternalGetCharCount_m3413246797, UTF8Encoding_InternalGetCharCount_m1382612956, UTF8Encoding_Fallback_m2998229612, UTF8Encoding_Fallback_m1420233630, UTF8Encoding_GetCharCount_m2213382418, UTF8Encoding_InternalGetChars_m456868025, UTF8Encoding_InternalGetChars_m402940066, UTF8Encoding_GetChars_m3098770356, UTF8Encoding_GetMaxByteCount_m356326648, UTF8Encoding_GetMaxCharCount_m1147861994, UTF8Encoding_GetDecoder_m1536997015, UTF8Encoding_GetPreamble_m3276889634, UTF8Encoding_Equals_m2369930107, UTF8Encoding_GetHashCode_m3715871199, UTF8Encoding_GetByteCount_m372084253, UTF8Encoding_GetString_m3266530939, UTF8Decoder__ctor_m2938677702, UTF8Decoder_GetChars_m1551461400, CompressedStack__ctor_m2633734833, CompressedStack__ctor_m1552323470, CompressedStack_CreateCopy_m2704662702, CompressedStack_Capture_m4188936939, CompressedStack_GetObjectData_m1776876798, CompressedStack_IsEmpty_m35500159, EventWaitHandle__ctor_m1444479942, EventWaitHandle_IsManualReset_m4097690010, EventWaitHandle_Reset_m330657435, EventWaitHandle_Set_m224730030, ExecutionContext__ctor_m3342294760, ExecutionContext__ctor_m881535614, ExecutionContext__ctor_m469890089, ExecutionContext_Capture_m1949565907, ExecutionContext_GetObjectData_m67437190, ExecutionContext_get_SecurityContext_m2311120735, ExecutionContext_set_SecurityContext_m3974986970, ExecutionContext_get_FlowSuppressed_m927554565, ExecutionContext_IsFlowSuppressed_m2941747654, Interlocked_CompareExchange_m1859820752, ManualResetEvent__ctor_m927697317, Monitor_Enter_m476686225, Monitor_Exit_m2088237919, Monitor_Monitor_pulse_m2154028149, Monitor_Monitor_test_synchronised_m711788182, Monitor_Pulse_m2153339056, Monitor_Monitor_wait_m1648946806, Monitor_Wait_m34507825, Mutex__ctor_m2061869791, Mutex_CreateMutex_internal_m62389004, Mutex_ReleaseMutex_internal_m3646831020, Mutex_ReleaseMutex_m564775316, NativeEventCalls_CreateEvent_internal_m3209574737, NativeEventCalls_SetEvent_internal_m2769880995, NativeEventCalls_ResetEvent_internal_m2004196566, NativeEventCalls_CloseEvent_internal_m996370063, SynchronizationLockException__ctor_m1728496155, SynchronizationLockException__ctor_m1850368199, SynchronizationLockException__ctor_m221922524, Thread__ctor_m4293845138, Thread__cctor_m3597056408, Thread_get_CurrentContext_m1613403838, Thread_CurrentThread_internal_m3803103476, Thread_get_CurrentThread_m1523593825, Thread_FreeLocalSlotValues_m3189496250, Thread_GetDomainID_m3584395396, Thread_Thread_internal_m1309677628, Thread_Thread_init_m3945232696, Thread_GetCachedCurrentCulture_m432100475, Thread_GetSerializedCurrentCulture_m2858784716, Thread_SetCachedCurrentCulture_m1882292988, Thread_GetCachedCurrentUICulture_m4218701159, Thread_GetSerializedCurrentUICulture_m4095015032, Thread_SetCachedCurrentUICulture_m1939313576, Thread_get_CurrentCulture_m334626002, Thread_get_CurrentUICulture_m740045822, Thread_set_IsBackground_m1141752027, Thread_SetName_internal_m3255834084, Thread_set_Name_m597236523, Thread_Start_m4066427317, Thread_Thread_free_internal_m1268585386, Thread_Finalize_m3157999501, Thread_SetState_m2581989004, Thread_ClrState_m634688613, Thread_GetNewManagedId_m3980934719, Thread_GetNewManagedId_internal_m3921195679, Thread_get_ExecutionContext_m1683588744, Thread_get_ManagedThreadId_m3915632970, Thread_GetHashCode_m736270528, Thread_GetCompressedStack_m3328677543, ThreadAbortException__ctor_m3295562998, ThreadAbortException__ctor_m4220973367, ThreadInterruptedException__ctor_m2298757640, ThreadInterruptedException__ctor_m3158304585, ThreadPool_QueueUserWorkItem_m3855506648, ThreadStart__ctor_m346361139, ThreadStart_Invoke_m225334093, ThreadStart_BeginInvoke_m4084423702, ThreadStart_EndInvoke_m3441234115, ThreadStateException__ctor_m2201794583, ThreadStateException__ctor_m1680197848, Timer__cctor_m1320176523, Timer_Change_m4108080222, Timer_Dispose_m4229130271, Timer_Change_m4132562187, Scheduler__ctor_m1239585238, Scheduler__cctor_m3585307799, Scheduler_get_Instance_m2238004347, Scheduler_Remove_m1246429346, Scheduler_Change_m3602739018, Scheduler_Add_m1591289733, Scheduler_InternalRemove_m1022594523, Scheduler_SchedulerThread_m2007715993, Scheduler_ShrinkIfNeeded_m4137944589, TimerComparer__ctor_m736016095, TimerComparer_Compare_m3183691932, TimerCallback__ctor_m1834223461, TimerCallback_Invoke_m4048637941, TimerCallback_BeginInvoke_m138041110, TimerCallback_EndInvoke_m3350524917, WaitCallback__ctor_m880874013, WaitCallback_Invoke_m3979426365, WaitCallback_BeginInvoke_m3299023334, WaitCallback_EndInvoke_m2361662125, WaitHandle__ctor_m4240939554, WaitHandle__cctor_m2138011083, WaitHandle_System_IDisposable_Dispose_m2431205053, WaitHandle_get_Handle_m383799166, WaitHandle_set_Handle_m2872485421, WaitHandle_WaitOne_internal_m2364279439, WaitHandle_Dispose_m2452949270, WaitHandle_WaitOne_m1178289523, WaitHandle_WaitOne_m467737785, WaitHandle_CheckDisposed_m3718910029, WaitHandle_Finalize_m1174780672, ThreadStaticAttribute__ctor_m1966759021, TimeSpan__ctor_m477860848, TimeSpan__ctor_m4160332047, TimeSpan__ctor_m3191091631, TimeSpan__cctor_m2918891343, TimeSpan_CalculateTicks_m897131370, TimeSpan_get_Days_m1311834346, TimeSpan_get_Hours_m1664362814, TimeSpan_get_Milliseconds_m424744421, TimeSpan_get_Minutes_m1876674446, TimeSpan_get_Seconds_m4185591086, TimeSpan_get_Ticks_m315930342, TimeSpan_get_TotalDays_m3523943921, TimeSpan_get_TotalHours_m1520282903, TimeSpan_get_TotalMilliseconds_m4053613548, TimeSpan_get_TotalMinutes_m854833447, TimeSpan_get_TotalSeconds_m3163750087, TimeSpan_Add_m1523355138, TimeSpan_Compare_m206019349, TimeSpan_CompareTo_m4037254268, TimeSpan_CompareTo_m2960988804, TimeSpan_Equals_m3271948249, TimeSpan_Duration_m4177061277, TimeSpan_Equals_m2969422609, TimeSpan_FromDays_m2307041176, TimeSpan_FromHours_m3804628420, TimeSpan_FromMinutes_m785017204, TimeSpan_FromSeconds_m1904297940, TimeSpan_FromMilliseconds_m1386660477, TimeSpan_From_m739812553, TimeSpan_GetHashCode_m3188156777, TimeSpan_Negate_m3511877003, TimeSpan_Subtract_m1410255071, TimeSpan_ToString_m2803989647, TimeSpan_op_Addition_m141072959, TimeSpan_op_Equality_m2213378780, TimeSpan_op_GreaterThan_m3920451985, TimeSpan_op_GreaterThanOrEqual_m2152983360, TimeSpan_op_Inequality_m2184437271, TimeSpan_op_LessThan_m4265983228, TimeSpan_op_LessThanOrEqual_m271837557, TimeSpan_op_Subtraction_m3686790579, TimeZone__ctor_m26653180, TimeZone__cctor_m344152369, TimeZone_get_CurrentTimeZone_m2986247742, TimeZone_IsDaylightSavingTime_m3245775367, TimeZone_IsDaylightSavingTime_m4018955392, TimeZone_ToLocalTime_m2341401576, TimeZone_ToUniversalTime_m1686398088, TimeZone_GetLocalTimeDiff_m1562801158, TimeZone_GetLocalTimeDiff_m290923612, Type__ctor_m3982515451, Type__cctor_m2716798482, Type_FilterName_impl_m1368291769, Type_FilterNameIgnoreCase_impl_m3759144183, Type_FilterAttribute_impl_m1809700868, Type_get_Attributes_m1828944147, Type_get_DeclaringType_m4083909003, Type_get_HasElementType_m4257202252, Type_get_IsAbstract_m2161724892, Type_get_IsArray_m837983873, Type_get_IsByRef_m1896439844, Type_get_IsClass_m2426046944, Type_get_IsContextful_m535795176, Type_get_IsEnum_m3878730619, Type_get_IsExplicitLayout_m911179384, Type_get_IsInterface_m996103649, Type_get_IsMarshalByRef_m345073144, Type_get_IsPointer_m839992229, Type_get_IsPrimitive_m992199183, Type_get_IsSealed_m2383790294, Type_get_IsSerializable_m746172153, Type_get_IsValueType_m1914757235, Type_get_MemberType_m3332420974, Type_get_ReflectedType_m3314355776, Type_get_TypeHandle_m2396205316, Type_Equals_m3925860910, Type_Equals_m3120004755, Type_EqualsInternal_m1929885654, Type_internal_from_handle_m1276658186, Type_internal_from_name_m3401043285, Type_GetType_m2877589631, Type_GetType_m3430407454, Type_GetTypeCodeInternal_m3432813657, Type_GetTypeCode_m2969996822, Type_GetTypeFromHandle_m3806905434, Type_GetTypeHandle_m1914576243, Type_type_is_subtype_of_m3361675332, Type_type_is_assignable_from_m3046828961, Type_IsSubclassOf_m1095320857, Type_IsAssignableFrom_m1817311413, Type_IsInstanceOfType_m2263809757, Type_GetHashCode_m3471493766, Type_GetMethod_m2884801946, Type_GetMethod_m534507110, Type_GetMethod_m527054833, Type_GetMethod_m2171093265, Type_GetProperty_m3455595366, Type_GetProperty_m786720973, Type_GetProperty_m3045839774, Type_GetProperty_m3910337444, Type_IsArrayImpl_m813148751, Type_IsValueTypeImpl_m4191583068, Type_IsContextfulImpl_m509765663, Type_IsMarshalByRefImpl_m4102401647, Type_GetConstructor_m2586438681, Type_GetConstructor_m443034079, Type_GetConstructor_m3502935011, Type_ToString_m2384448786, Type_get_IsSystemType_m3052526531, Type_GetGenericArguments_m202281670, Type_get_ContainsGenericParameters_m1949542132, Type_get_IsGenericTypeDefinition_m3860363596, Type_GetGenericTypeDefinition_impl_m987436420, Type_GetGenericTypeDefinition_m785420605, Type_get_IsGenericType_m3394442905, Type_MakeGenericType_m2466937396, Type_MakeGenericType_m2305919041, Type_get_IsGenericParameter_m1053942860, Type_get_IsNested_m2782386097, Type_GetPseudoCustomAttributes_m3344475752, TypedReference_Equals_m2626069127, TypedReference_GetHashCode_m1538911, TypeInitializationException__ctor_m679814589, TypeInitializationException_GetObjectData_m2924961818, TypeLoadException__ctor_m2756824898, TypeLoadException__ctor_m249965312, TypeLoadException__ctor_m2496850307, TypeLoadException_get_Message_m2467761275, TypeLoadException_GetObjectData_m1260387808, UInt16_System_IConvertible_ToBoolean_m1669361982, UInt16_System_IConvertible_ToByte_m1909834982, UInt16_System_IConvertible_ToChar_m3870741506, UInt16_System_IConvertible_ToDateTime_m1638515148, UInt16_System_IConvertible_ToDecimal_m336568286, UInt16_System_IConvertible_ToDouble_m3844175992, UInt16_System_IConvertible_ToInt16_m3584773694, UInt16_System_IConvertible_ToInt32_m965209598, UInt16_System_IConvertible_ToInt64_m1413818526, UInt16_System_IConvertible_ToSByte_m4135925726, UInt16_System_IConvertible_ToSingle_m1113917670, UInt16_System_IConvertible_ToType_m435718588, UInt16_System_IConvertible_ToUInt16_m3285773716, UInt16_System_IConvertible_ToUInt32_m1665458952, UInt16_System_IConvertible_ToUInt64_m4269127494, UInt16_CompareTo_m2016984612, UInt16_Equals_m857648105, UInt16_GetHashCode_m592888001, UInt16_CompareTo_m2335401604, UInt16_Equals_m1176065097, UInt16_Parse_m1444018254, UInt16_Parse_m148894233, UInt16_TryParse_m1136207264, UInt16_TryParse_m3401065021, UInt16_ToString_m741885559, UInt16_ToString_m921266213, UInt16_ToString_m3898855915, UInt16_ToString_m1090572969, UInt32_System_IConvertible_ToBoolean_m2848929732, UInt32_System_IConvertible_ToByte_m1898052640, UInt32_System_IConvertible_ToChar_m3858959164, UInt32_System_IConvertible_ToDateTime_m3845377030, UInt32_System_IConvertible_ToDecimal_m1516136036, UInt32_System_IConvertible_ToDouble_m1111279922, UInt32_System_IConvertible_ToInt16_m3219521092, UInt32_System_IConvertible_ToInt32_m599956996, UInt32_System_IConvertible_ToInt64_m1048565924, UInt32_System_IConvertible_ToSByte_m3770673124, UInt32_System_IConvertible_ToSingle_m2675988896, UInt32_System_IConvertible_ToType_m3076110838, UInt32_System_IConvertible_ToUInt16_m552877646, UInt32_System_IConvertible_ToUInt32_m3227530178, UInt32_System_IConvertible_ToUInt64_m1536231424, UInt32_CompareTo_m1956022750, UInt32_Equals_m1266223727, UInt32_GetHashCode_m1046676807, UInt32_CompareTo_m2274441540, UInt32_Equals_m1584642517, UInt32_Parse_m178847972, UInt32_Parse_m3291857117, UInt32_Parse_m1670428837, UInt32_Parse_m3087278554, UInt32_TryParse_m537116052, UInt32_TryParse_m3950000893, UInt32_ToString_m904380337, UInt32_ToString_m2214910431, UInt32_ToString_m1403037425, UInt32_ToString_m640530147, UInt64_System_IConvertible_ToBoolean_m486013061, UInt64_System_IConvertible_ToByte_m3655981823, UInt64_System_IConvertible_ToChar_m1321921051, UInt64_System_IConvertible_ToDateTime_m3609404261, UInt64_System_IConvertible_ToDecimal_m3448186661, UInt64_System_IConvertible_ToDouble_m2559077457, UInt64_System_IConvertible_ToInt16_m1880750917, UInt64_System_IConvertible_ToInt32_m3556154117, UInt64_System_IConvertible_ToInt64_m4004763045, UInt64_System_IConvertible_ToSByte_m2431902949, UInt64_System_IConvertible_ToSingle_m4123786431, UInt64_System_IConvertible_ToType_m2439463509, UInt64_System_IConvertible_ToUInt16_m2000675181, UInt64_System_IConvertible_ToUInt32_m380360417, UInt64_System_IConvertible_ToUInt64_m2984028959, UInt64_CompareTo_m3115041149, UInt64_Equals_m3490516784, UInt64_GetHashCode_m4085537544, UInt64_CompareTo_m3433462884, UInt64_Equals_m3808938519, UInt64_Parse_m3335137308, UInt64_Parse_m4183475069, UInt64_Parse_m3644239463, UInt64_TryParse_m1333073810, UInt64_ToString_m3095865744, UInt64_ToString_m2926838398, UInt64_ToString_m54951794, UInt64_ToString_m4198358338, UIntPtr__ctor_m3952300446, UIntPtr__ctor_m3952297501, UIntPtr__ctor_m1853619782, UIntPtr__cctor_m3952213328, UIntPtr_System_Runtime_Serialization_ISerializable_GetObjectData_m1506461934, UIntPtr_Equals_m2746368876, UIntPtr_GetHashCode_m939387472, UIntPtr_ToUInt32_m3683901238, UIntPtr_ToUInt64_m958857238, UIntPtr_ToPointer_m365084105, UIntPtr_ToString_m2250548790, UIntPtr_get_Size_m3534433933, UIntPtr_op_Equality_m2619366549, UIntPtr_op_Inequality_m3507406160, UIntPtr_op_Explicit_m2238365276, UIntPtr_op_Explicit_m599953533, UIntPtr_op_Explicit_m1125931844, UIntPtr_op_Explicit_m376973280, UIntPtr_op_Explicit_m555260452, UIntPtr_op_Explicit_m1125928899, UnauthorizedAccessException__ctor_m1360158714, UnauthorizedAccessException__ctor_m855147848, UnauthorizedAccessException__ctor_m415626811, UnhandledExceptionEventArgs__ctor_m764060079, UnhandledExceptionEventArgs_get_ExceptionObject_m3487900308, UnhandledExceptionEventArgs_get_IsTerminating_m2437875213, UnhandledExceptionEventHandler__ctor_m2560140041, UnhandledExceptionEventHandler_Invoke_m689053609, UnhandledExceptionEventHandler_BeginInvoke_m4281537936, UnhandledExceptionEventHandler_EndInvoke_m2562785689, UnitySerializationHolder__ctor_m3313764879, UnitySerializationHolder_GetTypeData_m1915295124, UnitySerializationHolder_GetDBNullData_m3162174122, UnitySerializationHolder_GetModuleData_m3074840415, UnitySerializationHolder_GetObjectData_m3726496364, UnitySerializationHolder_GetRealObject_m3182718270, ValueType__ctor_m249728358, ValueType_InternalEquals_m1612359418, ValueType_DefaultEquals_m1340356096, ValueType_Equals_m3030384533, ValueType_InternalGetHashCode_m3910310408, ValueType_GetHashCode_m3949669881, ValueType_ToString_m1045693805, Version__ctor_m3513061113, Version__ctor_m48000169, Version__ctor_m3046694477, Version__ctor_m1427678122, Version__ctor_m3585293677, Version_CheckedSet_m1252626871, Version_get_Build_m4183817856, Version_get_Major_m489899787, Version_get_Minor_m722627079, Version_get_Revision_m3477882347, Version_Clone_m1917770783, Version_CompareTo_m2859625401, Version_Equals_m1548770152, Version_CompareTo_m673494338, Version_Equals_m2986654579, Version_GetHashCode_m146914892, Version_ToString_m3622155194, Version_CreateFromString_m3872168654, Version_op_Equality_m21054105, Version_op_Inequality_m4221983316, WeakReference__ctor_m2482272510, WeakReference__ctor_m1824216406, WeakReference__ctor_m1724966759, WeakReference__ctor_m1465778495, WeakReference_AllocateHandle_m3300556457, WeakReference_get_Target_m2183973397, WeakReference_get_TrackResurrection_m2498111523, WeakReference_Finalize_m3030916772, WeakReference_GetObjectData_m1524996508, Locale_GetText_m2031928403, Locale_GetText_m2138526911, KeyBuilder_get_Rng_m1224245225, KeyBuilder_Key_m489708312, KeyBuilder_IV_m3901719576, SymmetricTransform__ctor_m1205754880, SymmetricTransform_System_IDisposable_Dispose_m455424824, SymmetricTransform_Finalize_m1432383547, SymmetricTransform_Dispose_m2730879931, SymmetricTransform_get_CanReuseTransform_m725989976, SymmetricTransform_Transform_m3903574043, SymmetricTransform_CBC_m2217465763, SymmetricTransform_CFB_m3609349384, SymmetricTransform_OFB_m962939772, SymmetricTransform_CTS_m122988069, SymmetricTransform_CheckInput_m3506478922, SymmetricTransform_TransformBlock_m1944043099, SymmetricTransform_get_KeepLastBlock_m2173858210, SymmetricTransform_InternalTransformBlock_m3380491768, SymmetricTransform_Random_m3415780681, SymmetricTransform_ThrowBadPaddingException_m2083216889, SymmetricTransform_FinalEncrypt_m975601255, SymmetricTransform_FinalDecrypt_m3742401599, SymmetricTransform_TransformFinalBlock_m2524388439, Check_SourceAndPredicate_m2252398949, ExtensionAttribute__ctor_m1242622322, Aes__ctor_m380511311, AesManaged__ctor_m1572578968, AesManaged_GenerateIV_m4188712014, AesManaged_GenerateKey_m1003425312, AesManaged_CreateDecryptor_m1952358980, AesManaged_CreateEncryptor_m2258087532, AesManaged_get_IV_m3771642968, AesManaged_set_IV_m2456625939, AesManaged_get_Key_m959186774, AesManaged_set_Key_m1884561361, AesManaged_get_KeySize_m1856785595, AesManaged_set_KeySize_m838068010, AesManaged_CreateDecryptor_m2733487560, AesManaged_CreateEncryptor_m3462881952, AesManaged_Dispose_m2950523276, AesTransform__ctor_m2781154868, AesTransform__cctor_m1179286690, AesTransform_ECB_m2589908703, AesTransform_SubByte_m1214814958, AesTransform_Encrypt128_m3651261907, AesTransform_Decrypt128_m3310750971, Locale_GetText_m3269873186, Locale_GetText_m946430094, HybridDictionary__ctor_m951312923, HybridDictionary__ctor_m3356743441, HybridDictionary_System_Collections_IEnumerable_GetEnumerator_m633511108, HybridDictionary_get_inner_m1544058846, HybridDictionary_get_Count_m2544735439, HybridDictionary_get_IsSynchronized_m4103840922, HybridDictionary_get_Item_m1101975172, HybridDictionary_set_Item_m2233477417, HybridDictionary_get_SyncRoot_m1280025498, HybridDictionary_Add_m1798913928, HybridDictionary_Contains_m356410114, HybridDictionary_CopyTo_m1553338168, HybridDictionary_GetEnumerator_m3022935527, HybridDictionary_Remove_m1597248871, HybridDictionary_Switch_m4039885821, ListDictionary__ctor_m1342781113, ListDictionary__ctor_m1799491195, ListDictionary_System_Collections_IEnumerable_GetEnumerator_m3647053798, ListDictionary_FindEntry_m2277169595, ListDictionary_FindEntry_m831100599, ListDictionary_AddImpl_m2933606886, ListDictionary_get_Count_m3433674349, ListDictionary_get_IsSynchronized_m34636604, ListDictionary_get_SyncRoot_m1493803004, ListDictionary_CopyTo_m1026734678, ListDictionary_get_Item_m151625826, ListDictionary_set_Item_m588649799, ListDictionary_Add_m1089190058, ListDictionary_Clear_m3043881700, ListDictionary_Contains_m142502176, ListDictionary_GetEnumerator_m2156198277, ListDictionary_Remove_m4061265285, DictionaryNode__ctor_m424034580, DictionaryNodeEnumerator__ctor_m3548237087, DictionaryNodeEnumerator_FailFast_m4001260572, DictionaryNodeEnumerator_MoveNext_m3885899388, DictionaryNodeEnumerator_Reset_m3355498799, DictionaryNodeEnumerator_get_Current_m3751627803, DictionaryNodeEnumerator_get_DictionaryNode_m903305644, DictionaryNodeEnumerator_get_Entry_m373272494, DictionaryNodeEnumerator_get_Key_m3214255105, DictionaryNodeEnumerator_get_Value_m1866106451, NameObjectCollectionBase__ctor_m1741929684, NameObjectCollectionBase__ctor_m355604501, NameObjectCollectionBase_System_Collections_ICollection_get_IsSynchronized_m4292869198, NameObjectCollectionBase_System_Collections_ICollection_get_SyncRoot_m625351596, NameObjectCollectionBase_System_Collections_ICollection_CopyTo_m606865136, NameObjectCollectionBase_Init_m3194316544, NameObjectCollectionBase_get_Keys_m411623033, NameObjectCollectionBase_GetEnumerator_m2097604182, NameObjectCollectionBase_GetObjectData_m3614997106, NameObjectCollectionBase_get_Count_m2598648584, NameObjectCollectionBase_OnDeserialization_m3096738610, NameObjectCollectionBase_get_IsReadOnly_m911678543, NameObjectCollectionBase_BaseAdd_m2649117518, NameObjectCollectionBase_BaseGet_m3004572221, NameObjectCollectionBase_BaseGet_m3404124054, NameObjectCollectionBase_BaseGetKey_m3433139160, NameObjectCollectionBase_FindFirstMatchedItem_m3932570092, _Item__ctor_m887709055, _KeysEnumerator__ctor_m837674160, _KeysEnumerator_get_Current_m698870767, _KeysEnumerator_MoveNext_m2934171782, _KeysEnumerator_Reset_m2513360761, KeysCollection__ctor_m571748459, KeysCollection_System_Collections_ICollection_CopyTo_m3481790195, KeysCollection_System_Collections_ICollection_get_IsSynchronized_m261821823, KeysCollection_System_Collections_ICollection_get_SyncRoot_m2421942655, KeysCollection_get_Count_m1716505797, KeysCollection_GetEnumerator_m2467788383, NameValueCollection__ctor_m2553202389, NameValueCollection__ctor_m3193274006, NameValueCollection_Add_m1609818730, NameValueCollection_Get_m2840953239, NameValueCollection_AsSingleString_m3181933374, NameValueCollection_GetKey_m4077148652, NameValueCollection_InvalidateCachedArrays_m3569021030, EditorBrowsableAttribute__ctor_m2031704921, EditorBrowsableAttribute_get_State_m2194662776, EditorBrowsableAttribute_Equals_m2138671840, EditorBrowsableAttribute_GetHashCode_m2651695940, TypeConverterAttribute__ctor_m1679891427, TypeConverterAttribute__ctor_m1621665718, TypeConverterAttribute__cctor_m54930474, TypeConverterAttribute_Equals_m476857406, TypeConverterAttribute_GetHashCode_m3397915682, TypeConverterAttribute_get_ConverterTypeName_m3078532986, DefaultUriParser__ctor_m1912198945, DefaultUriParser__ctor_m2197038465, MonoTODOAttribute__ctor_m754636072, MonoTODOAttribute__ctor_m3809503962, DefaultCertificatePolicy__ctor_m4248919730, DefaultCertificatePolicy_CheckValidationResult_m4124026463, FileWebRequest__ctor_m1190066806, FileWebRequest__ctor_m2417420612, FileWebRequest_System_Runtime_Serialization_ISerializable_GetObjectData_m3587475368, FileWebRequest_GetObjectData_m1166847137, FileWebRequestCreator__ctor_m349516791, FileWebRequestCreator_Create_m2860446468, FtpRequestCreator__ctor_m3461046285, FtpRequestCreator_Create_m2169393454, FtpWebRequest__ctor_m3137933378, FtpWebRequest__cctor_m2914795070, FtpWebRequest_U3CcallbackU3Em__B_m1388175350, GlobalProxySelection_get_Select_m3561358852, HttpRequestCreator__ctor_m2335588533, HttpRequestCreator_Create_m3368655414, HttpVersion__cctor_m1997660113, HttpWebRequest__ctor_m3412251370, HttpWebRequest__ctor_m1235446968, HttpWebRequest__cctor_m2196070038, HttpWebRequest_System_Runtime_Serialization_ISerializable_GetObjectData_m2246907828, HttpWebRequest_get_Address_m3157794738, HttpWebRequest_get_ServicePoint_m146133801, HttpWebRequest_GetServicePoint_m2366596494, HttpWebRequest_GetObjectData_m3873995797, IPAddress__ctor_m927672017, IPAddress__ctor_m3937524101, IPAddress__cctor_m3356110606, IPAddress_SwapShort_m2091369575, IPAddress_HostToNetworkOrder_m3514593469, IPAddress_NetworkToHostOrder_m3568389847, IPAddress_Parse_m1640477876, IPAddress_TryParse_m1385842418, IPAddress_ParseIPV4_m120660623, IPAddress_ParseIPV6_m3394559565, IPAddress_get_InternalIPv4Address_m2101711253, IPAddress_get_ScopeId_m2224014450, IPAddress_get_AddressFamily_m2364322247, IPAddress_IsLoopback_m3449051763, IPAddress_ToString_m2947972276, IPAddress_ToString_m277532550, IPAddress_Equals_m1176433114, IPAddress_GetHashCode_m1369616318, IPAddress_Hash_m3738146179, IPv6Address__ctor_m194879283, IPv6Address__ctor_m705628292, IPv6Address__ctor_m974981843, IPv6Address__cctor_m84116622, IPv6Address_Parse_m1303737588, IPv6Address_Fill_m1034015862, IPv6Address_TryParse_m895448644, IPv6Address_TryParse_m711194034, IPv6Address_get_Address_m1909339413, IPv6Address_get_ScopeId_m2822565682, IPv6Address_set_ScopeId_m1866414241, IPv6Address_IsLoopback_m3559367027, IPv6Address_SwapUShort_m3711871552, IPv6Address_AsIPv4Int_m2221656389, IPv6Address_IsIPv4Compatible_m3774873342, IPv6Address_IsIPv4Mapped_m525075229, IPv6Address_ToString_m804087156, IPv6Address_ToString_m2548793323, IPv6Address_Equals_m1266534874, IPv6Address_GetHashCode_m691770942, IPv6Address_Hash_m1904786435, RemoteCertificateValidationCallback__ctor_m1684204841, RemoteCertificateValidationCallback_Invoke_m2321994438, RemoteCertificateValidationCallback_BeginInvoke_m3899812411, RemoteCertificateValidationCallback_EndInvoke_m3362576995, ServicePoint__ctor_m4244145138, ServicePoint_get_Address_m1466650202, ServicePoint_get_CurrentConnections_m1954016890, ServicePoint_get_IdleSince_m3269103731, ServicePoint_set_IdleSince_m305314386, ServicePoint_set_Expect100Continue_m285998358, ServicePoint_set_UseNagleAlgorithm_m4121109536, ServicePoint_set_SendContinue_m515260680, ServicePoint_set_UsesProxy_m3686577241, ServicePoint_set_UseConnect_m3883999836, ServicePoint_get_AvailableForRecycling_m4047613978, ServicePointManager__cctor_m1197717107, ServicePointManager_get_CertificatePolicy_m2939782421, ServicePointManager_get_CheckCertificateRevocationList_m2088706324, ServicePointManager_get_SecurityProtocol_m2377079580, ServicePointManager_get_ServerCertificateValidationCallback_m258265119, ServicePointManager_FindServicePoint_m543399130, ServicePointManager_RecycleServicePoints_m3960742511, SPKey__ctor_m1893054627, SPKey_GetHashCode_m4255714790, SPKey_Equals_m4194939906, WebHeaderCollection__ctor_m40272365, WebHeaderCollection__ctor_m3165611438, WebHeaderCollection__ctor_m2599998628, WebHeaderCollection__cctor_m766347104, WebHeaderCollection_System_Runtime_Serialization_ISerializable_GetObjectData_m3098703614, WebHeaderCollection_Add_m4256453202, WebHeaderCollection_AddWithoutValidate_m1282121770, WebHeaderCollection_IsRestricted_m2143660688, WebHeaderCollection_OnDeserialization_m829584441, WebHeaderCollection_ToString_m3267340486, WebHeaderCollection_GetObjectData_m3829341963, WebHeaderCollection_get_Count_m955643201, WebHeaderCollection_get_Keys_m2328892712, WebHeaderCollection_Get_m249241391, WebHeaderCollection_GetKey_m721597780, WebHeaderCollection_GetEnumerator_m671727323, WebHeaderCollection_IsHeaderValue_m3476411603, WebHeaderCollection_IsHeaderName_m671697555, WebProxy__ctor_m2333292256, WebProxy__ctor_m1295075053, WebProxy__ctor_m3926845473, WebProxy_System_Runtime_Serialization_ISerializable_GetObjectData_m1269108139, WebProxy_get_UseDefaultCredentials_m2666418573, WebProxy_GetProxy_m1799832125, WebProxy_IsBypassed_m2441560530, WebProxy_GetObjectData_m2646244990, WebProxy_CheckBypassList_m2380971276, WebRequest__ctor_m3908406559, WebRequest__ctor_m2268070368, WebRequest__cctor_m419422830, WebRequest_System_Runtime_Serialization_ISerializable_GetObjectData_m3499262348, WebRequest_AddDynamicPrefix_m4259958729, WebRequest_GetMustImplement_m2345556858, WebRequest_get_DefaultWebProxy_m645383963, WebRequest_GetDefaultWebProxy_m3231963326, WebRequest_GetObjectData_m3619776829, WebRequest_AddPrefix_m2923345701, AsnEncodedData__ctor_m4216053755, AsnEncodedData__ctor_m2841294762, AsnEncodedData__ctor_m299043111, AsnEncodedData_get_Oid_m2261116610, AsnEncodedData_set_Oid_m865125231, AsnEncodedData_get_RawData_m334685068, AsnEncodedData_set_RawData_m839792539, AsnEncodedData_CopyFrom_m406388795, AsnEncodedData_ToString_m2998858121, AsnEncodedData_Default_m2182260212, AsnEncodedData_BasicConstraintsExtension_m1615975146, AsnEncodedData_EnhancedKeyUsageExtension_m45972986, AsnEncodedData_KeyUsageExtension_m3060938192, AsnEncodedData_SubjectKeyIdentifierExtension_m3725367926, AsnEncodedData_SubjectAltName_m1574931557, AsnEncodedData_NetscapeCertType_m2447693060, Oid__ctor_m49113285, Oid__ctor_m2787728989, Oid__ctor_m1889247193, Oid__ctor_m4076384238, Oid_get_FriendlyName_m937320993, Oid_get_Value_m216923304, Oid_GetName_m1845636801, OidCollection__ctor_m3592497479, OidCollection_System_Collections_ICollection_CopyTo_m3200351709, OidCollection_System_Collections_IEnumerable_GetEnumerator_m494890284, OidCollection_get_Count_m924395419, OidCollection_get_IsSynchronized_m2984568922, OidCollection_get_Item_m1851824850, OidCollection_get_SyncRoot_m887599928, OidCollection_Add_m1834548415, OidEnumerator__ctor_m1686464972, OidEnumerator_System_Collections_IEnumerator_get_Current_m530360623, OidEnumerator_MoveNext_m3766070973, OidEnumerator_Reset_m2251511182, PublicKey__ctor_m1299060097, PublicKey_get_EncodedKeyValue_m334858790, PublicKey_get_EncodedParameters_m3678410494, PublicKey_get_Key_m2294273754, PublicKey_get_Oid_m100819764, PublicKey_GetUnsignedBigInteger_m2731897515, PublicKey_DecodeDSA_m2700844317, PublicKey_DecodeRSA_m3835708506, X500DistinguishedName__ctor_m1884931640, X500DistinguishedName_Decode_m1854433232, X500DistinguishedName_GetSeparator_m1820431761, X500DistinguishedName_DecodeRawData_m2106660211, X500DistinguishedName_Canonize_m3238640877, X500DistinguishedName_AreEqual_m3926647407, X509BasicConstraintsExtension__ctor_m4274454898, X509BasicConstraintsExtension__ctor_m331703276, X509BasicConstraintsExtension__ctor_m2615084218, X509BasicConstraintsExtension_get_CertificateAuthority_m2798502193, X509BasicConstraintsExtension_get_HasPathLengthConstraint_m2782347167, X509BasicConstraintsExtension_get_PathLengthConstraint_m482430355, X509BasicConstraintsExtension_CopyFrom_m2536122738, X509BasicConstraintsExtension_Decode_m587114879, X509BasicConstraintsExtension_Encode_m1897551102, X509BasicConstraintsExtension_ToString_m917821682, X509Certificate2__ctor_m2334802535, X509Certificate2__cctor_m1878821707, X509Certificate2_get_Extensions_m3845394932, X509Certificate2_get_IssuerName_m3367621449, X509Certificate2_get_NotAfter_m3441061389, X509Certificate2_get_NotBefore_m4057480336, X509Certificate2_get_PrivateKey_m2043008864, X509Certificate2_get_PublicKey_m1236823063, X509Certificate2_get_SerialNumber_m3272726955, X509Certificate2_get_SignatureAlgorithm_m3325406410, X509Certificate2_get_SubjectName_m4019514164, X509Certificate2_get_Thumbprint_m1619061413, X509Certificate2_get_Version_m3267654015, X509Certificate2_GetNameInfo_m750863125, X509Certificate2_Find_m3631738471, X509Certificate2_GetValueAsString_m4160591819, X509Certificate2_ImportPkcs12_m976921138, X509Certificate2_Import_m295659102, X509Certificate2_Reset_m1463369551, X509Certificate2_ToString_m2515669489, X509Certificate2_ToString_m1920339368, X509Certificate2_AppendBuffer_m158196497, X509Certificate2_Verify_m1278605553, X509Certificate2_get_MonoCertificate_m2548639992, X509Certificate2Collection__ctor_m769271012, X509Certificate2Collection__ctor_m576565548, X509Certificate2Collection_get_Item_m1131271090, X509Certificate2Collection_Add_m1268164793, X509Certificate2Collection_AddRange_m1617477316, X509Certificate2Collection_Contains_m1344146715, X509Certificate2Collection_Find_m162772545, X509Certificate2Collection_GetEnumerator_m4202348315, X509Certificate2Enumerator__ctor_m1258842310, X509Certificate2Enumerator_System_Collections_IEnumerator_get_Current_m523796722, X509Certificate2Enumerator_System_Collections_IEnumerator_MoveNext_m3958468195, X509Certificate2Enumerator_System_Collections_IEnumerator_Reset_m3026796220, X509Certificate2Enumerator_get_Current_m812721831, X509Certificate2Enumerator_MoveNext_m3485099904, X509Certificate2Enumerator_Reset_m3723252011, X509CertificateCollection__ctor_m784073364, X509CertificateCollection__ctor_m329398404, X509CertificateCollection_get_Item_m2960635298, X509CertificateCollection_AddRange_m1527743820, X509CertificateCollection_GetEnumerator_m1418993187, X509CertificateCollection_GetHashCode_m252984435, X509CertificateEnumerator__ctor_m2651305038, X509CertificateEnumerator_System_Collections_IEnumerator_get_Current_m573192184, X509CertificateEnumerator_System_Collections_IEnumerator_MoveNext_m3439615103, X509CertificateEnumerator_System_Collections_IEnumerator_Reset_m623123084, X509CertificateEnumerator_get_Current_m49822583, X509CertificateEnumerator_MoveNext_m1871957220, X509CertificateEnumerator_Reset_m2299637595, X509Chain__ctor_m440780008, X509Chain__ctor_m2887631967, X509Chain__cctor_m297182149, X509Chain_get_ChainPolicy_m3141824143, X509Chain_Build_m417178512, X509Chain_Reset_m2382180245, X509Chain_get_Roots_m4101675455, X509Chain_get_CertificateAuthorities_m1238271486, X509Chain_get_CertificateCollection_m1393875737, X509Chain_BuildChainFrom_m2777021523, X509Chain_SelectBestFromCollection_m3232085257, X509Chain_FindParent_m2812194464, X509Chain_IsChainComplete_m3441936754, X509Chain_IsSelfIssued_m397924845, X509Chain_ValidateChain_m976559422, X509Chain_Process_m940730694, X509Chain_PrepareForNextCertificate_m2507052121, X509Chain_WrapUp_m3398853601, X509Chain_ProcessCertificateExtensions_m1491797822, X509Chain_IsSignedWith_m1198520936, X509Chain_GetSubjectKeyIdentifier_m2141872961, X509Chain_GetAuthorityKeyIdentifier_m3460155146, X509Chain_GetAuthorityKeyIdentifier_m3802915794, X509Chain_GetAuthorityKeyIdentifier_m1262096688, X509Chain_CheckRevocationOnChain_m1059846149, X509Chain_CheckRevocation_m2952361444, X509Chain_CheckRevocation_m1219092751, X509Chain_FindCrl_m1761802781, X509Chain_ProcessCrlExtensions_m3347968374, X509Chain_ProcessCrlEntryExtensions_m4212088422, X509ChainElement__ctor_m1605854504, X509ChainElement_get_Certificate_m2984441897, X509ChainElement_get_ChainElementStatus_m1337819701, X509ChainElement_get_StatusFlags_m2269812416, X509ChainElement_set_StatusFlags_m2679455941, X509ChainElement_Count_m466237836, X509ChainElement_Set_m2091040175, X509ChainElement_UncompressFlags_m3125973708, X509ChainElementCollection__ctor_m1079210340, X509ChainElementCollection_System_Collections_ICollection_CopyTo_m3190543456, X509ChainElementCollection_System_Collections_IEnumerable_GetEnumerator_m31369455, X509ChainElementCollection_get_Count_m3531017528, X509ChainElementCollection_get_IsSynchronized_m2629487837, X509ChainElementCollection_get_Item_m553083826, X509ChainElementCollection_get_SyncRoot_m527504827, X509ChainElementCollection_GetEnumerator_m1375522587, X509ChainElementCollection_Add_m2103492457, X509ChainElementCollection_Clear_m2780310927, X509ChainElementCollection_Contains_m150098075, X509ChainElementEnumerator__ctor_m1406437381, X509ChainElementEnumerator_System_Collections_IEnumerator_get_Current_m2217542770, X509ChainElementEnumerator_get_Current_m1994757799, X509ChainElementEnumerator_MoveNext_m2707933952, X509ChainElementEnumerator_Reset_m4033191339, X509ChainPolicy__ctor_m1959063574, X509ChainPolicy_get_ExtraStore_m3623675233, X509ChainPolicy_get_RevocationFlag_m852524363, X509ChainPolicy_get_RevocationMode_m2618017401, X509ChainPolicy_get_VerificationFlags_m1052595485, X509ChainPolicy_get_VerificationTime_m2439570886, X509ChainPolicy_Reset_m3900463811, X509ChainStatus__ctor_m452901827, X509ChainStatus_get_Status_m805216413, X509ChainStatus_set_Status_m2412197578, X509ChainStatus_set_StatusInformation_m2801383985, X509ChainStatus_GetInformation_m369546830, X509EnhancedKeyUsageExtension__ctor_m1143045852, X509EnhancedKeyUsageExtension_CopyFrom_m3559074914, X509EnhancedKeyUsageExtension_Decode_m3913247855, X509EnhancedKeyUsageExtension_ToString_m554823682, X509Extension__ctor_m1164925482, X509Extension__ctor_m2269929986, X509Extension_get_Critical_m1925069548, X509Extension_set_Critical_m717701037, X509Extension_CopyFrom_m3838050346, X509Extension_FormatUnkownData_m4234400381, X509ExtensionCollection__ctor_m3888740672, X509ExtensionCollection_System_Collections_ICollection_CopyTo_m2862251608, X509ExtensionCollection_System_Collections_IEnumerable_GetEnumerator_m1951031507, X509ExtensionCollection_get_Count_m2621259424, X509ExtensionCollection_get_IsSynchronized_m3201439337, X509ExtensionCollection_get_SyncRoot_m736404969, X509ExtensionCollection_get_Item_m2341415937, X509ExtensionCollection_GetEnumerator_m4079469459, X509ExtensionEnumerator__ctor_m2165217671, X509ExtensionEnumerator_System_Collections_IEnumerator_get_Current_m936939552, X509ExtensionEnumerator_get_Current_m3895268839, X509ExtensionEnumerator_MoveNext_m1312248716, X509ExtensionEnumerator_Reset_m1710656691, X509KeyUsageExtension__ctor_m3787253324, X509KeyUsageExtension__ctor_m2410062918, X509KeyUsageExtension__ctor_m3332265501, X509KeyUsageExtension_get_KeyUsages_m3177031359, X509KeyUsageExtension_CopyFrom_m1769316556, X509KeyUsageExtension_GetValidFlags_m1081049684, X509KeyUsageExtension_Decode_m811458265, X509KeyUsageExtension_Encode_m1941209444, X509KeyUsageExtension_ToString_m1884016728, X509Store__ctor_m3799700742, X509Store_get_Certificates_m806880954, X509Store_get_Factory_m1121149181, X509Store_get_Store_m466869703, X509Store_Close_m3714886622, X509Store_Open_m4134555080, X509SubjectKeyIdentifierExtension__ctor_m3478259430, X509SubjectKeyIdentifierExtension__ctor_m804319328, X509SubjectKeyIdentifierExtension__ctor_m2338585210, X509SubjectKeyIdentifierExtension__ctor_m1613029921, X509SubjectKeyIdentifierExtension__ctor_m1879279918, X509SubjectKeyIdentifierExtension__ctor_m891295656, X509SubjectKeyIdentifierExtension_get_SubjectKeyIdentifier_m2494939520, X509SubjectKeyIdentifierExtension_CopyFrom_m3398288358, X509SubjectKeyIdentifierExtension_FromHexChar_m751746662, X509SubjectKeyIdentifierExtension_FromHexChars_m3730448342, X509SubjectKeyIdentifierExtension_FromHex_m3994967203, X509SubjectKeyIdentifierExtension_Decode_m3290786035, X509SubjectKeyIdentifierExtension_Encode_m852919050, X509SubjectKeyIdentifierExtension_ToString_m2596463486, BaseMachine__ctor_m17432691, BaseMachine_Replace_m3336556800, BaseMachine_Scan_m223381495, BaseMachine_LTRReplace_m3233399719, BaseMachine_RTLReplace_m1984309653, MatchAppendEvaluator__ctor_m44201646, MatchAppendEvaluator_Invoke_m2910809428, MatchAppendEvaluator_BeginInvoke_m1979969071, MatchAppendEvaluator_EndInvoke_m4264062910, Capture__ctor_m3100758399, Capture__ctor_m3886528031, Capture_get_Index_m2179527098, Capture_get_Length_m669809376, Capture_get_Value_m2353629574, Capture_ToString_m1009743248, Capture_get_Text_m1823829274, CaptureCollection__ctor_m3212451638, CaptureCollection_get_Count_m1248230585, CaptureCollection_get_IsSynchronized_m4208332924, CaptureCollection_SetValue_m1003011714, CaptureCollection_get_SyncRoot_m277260698, CaptureCollection_CopyTo_m3440549378, CaptureCollection_GetEnumerator_m3962561747, CategoryUtils_CategoryFromName_m242979705, CategoryUtils_IsCategory_m3802527410, CategoryUtils_IsCategory_m60190548, FactoryCache__ctor_m3600817686, FactoryCache_Add_m2875491713, FactoryCache_Cleanup_m2756098695, FactoryCache_Lookup_m418619505, Key__ctor_m422488661, Key_GetHashCode_m3621609140, Key_Equals_m3415530204, Key_ToString_m2241865016, Group__ctor_m3266526719, Group__ctor_m3054050776, Group__ctor_m1893910730, Group__cctor_m2394561571, Group_get_Captures_m3515423896, Group_get_Success_m3627958764, GroupCollection__ctor_m1062211994, GroupCollection_get_Count_m1046622944, GroupCollection_get_IsSynchronized_m3587250101, GroupCollection_get_Item_m3306908978, GroupCollection_SetValue_m3728413090, GroupCollection_get_SyncRoot_m63200083, GroupCollection_CopyTo_m3663984873, GroupCollection_GetEnumerator_m1787152634, Interpreter__ctor_m3251642755, Interpreter_ReadProgramCount_m2800798871, Interpreter_Scan_m2842958907, Interpreter_Reset_m3474962780, Interpreter_Eval_m3588984028, Interpreter_EvalChar_m2450579075, Interpreter_TryMatch_m3565421809, Interpreter_IsPosition_m3803534681, Interpreter_IsWordChar_m476497192, Interpreter_GetString_m2734447906, Interpreter_Open_m1195935623, Interpreter_Close_m2152904449, Interpreter_Balance_m3040687789, Interpreter_Checkpoint_m1072877933, Interpreter_Backtrack_m742921570, Interpreter_ResetGroups_m2372461072, Interpreter_GetLastDefined_m965034067, Interpreter_CreateMark_m1503065567, Interpreter_GetGroupInfo_m10584263, Interpreter_PopulateGroup_m2805800912, Interpreter_GenerateMatch_m2993936796, IntStack_Pop_m1434102286, IntStack_Push_m2506448672, IntStack_get_Count_m897242211, IntStack_set_Count_m518204432, RepeatContext__ctor_m788719250, RepeatContext_get_Count_m4097254526, RepeatContext_set_Count_m4149390859, RepeatContext_get_Start_m1242238737, RepeatContext_set_Start_m3788788766, RepeatContext_get_IsMinimum_m1600048397, RepeatContext_get_IsMaximum_m827569823, RepeatContext_get_IsLazy_m2915133623, RepeatContext_get_Expression_m540420139, RepeatContext_get_Previous_m4141614471, InterpreterFactory__ctor_m595479877, InterpreterFactory_NewInstance_m992471080, InterpreterFactory_get_GroupCount_m2569621216, InterpreterFactory_get_Gap_m875969832, InterpreterFactory_set_Gap_m2130661461, InterpreterFactory_get_Mapping_m4280686600, InterpreterFactory_set_Mapping_m1196240885, InterpreterFactory_get_NamesMapping_m2841689669, InterpreterFactory_set_NamesMapping_m2940156550, Interval__ctor_m4154124910, Interval_get_Empty_m2836746235, Interval_get_IsDiscontiguous_m4161255183, Interval_get_IsSingleton_m4044965956, Interval_get_IsEmpty_m2142357766, Interval_get_Size_m2053259174, Interval_IsDisjoint_m1461504100, Interval_IsAdjacent_m1171307166, Interval_Contains_m2884982059, Interval_Contains_m724747494, Interval_Intersects_m1836714230, Interval_Merge_m2623693586, Interval_CompareTo_m953943694, IntervalCollection__ctor_m1317729402, IntervalCollection_get_Item_m658194390, IntervalCollection_Add_m622937095, IntervalCollection_Normalize_m2061698533, IntervalCollection_GetMetaCollection_m1423119555, IntervalCollection_Optimize_m2537418330, IntervalCollection_get_Count_m3146453934, IntervalCollection_get_IsSynchronized_m46596635, IntervalCollection_get_SyncRoot_m165185947, IntervalCollection_CopyTo_m1005574359, IntervalCollection_GetEnumerator_m4242145148, CostDelegate__ctor_m731467895, CostDelegate_Invoke_m212988972, CostDelegate_BeginInvoke_m1041332600, CostDelegate_EndInvoke_m917297514, Enumerator__ctor_m218362154, Enumerator_get_Current_m2134947410, Enumerator_MoveNext_m480234725, Enumerator_Reset_m2448293606, LinkRef__ctor_m2896599248, LinkStack__ctor_m840569467, LinkStack_Push_m185806851, LinkStack_Pop_m192057428, Mark_get_IsDefined_m36891578, Mark_get_Index_m4214982375, Mark_get_Length_m3639380819, Match__ctor_m4051317828, Match__ctor_m798974407, Match__ctor_m4138800752, Match__cctor_m554704873, Match_get_Empty_m170222943, Match_get_Groups_m445730348, Match_NextMatch_m3913445709, Match_get_Regex_m1260760027, MatchCollection__ctor_m1982569902, MatchCollection_get_Count_m4071817434, MatchCollection_get_IsSynchronized_m1523540731, MatchCollection_get_Item_m2495033586, MatchCollection_get_SyncRoot_m2333479705, MatchCollection_CopyTo_m2665262947, MatchCollection_GetEnumerator_m3446344180, MatchCollection_TryToGet_m1603574341, MatchCollection_get_FullList_m3038253348, Enumerator__ctor_m2762289495, Enumerator_System_Collections_IEnumerator_Reset_m4262909997, Enumerator_System_Collections_IEnumerator_get_Current_m360409, Enumerator_System_Collections_IEnumerator_MoveNext_m1106607422, MatchEvaluator__ctor_m2957600143, MatchEvaluator_Invoke_m3215261838, MatchEvaluator_BeginInvoke_m3315747252, MatchEvaluator_EndInvoke_m3976645020, MRUList__ctor_m3161932411, MRUList_Use_m4144664628, MRUList_Evict_m3673261069, Node__ctor_m3506872826, PatternCompiler__ctor_m640185722, PatternCompiler_EncodeOp_m3438255148, PatternCompiler_GetMachineFactory_m1519739313, PatternCompiler_EmitFalse_m722778152, PatternCompiler_EmitTrue_m2656833483, PatternCompiler_EmitCount_m3183303781, PatternCompiler_EmitCharacter_m3311297038, PatternCompiler_EmitCategory_m2446864524, PatternCompiler_EmitNotCategory_m3974981937, PatternCompiler_EmitRange_m3212229739, PatternCompiler_EmitSet_m2895987935, PatternCompiler_EmitString_m2313515668, PatternCompiler_EmitPosition_m3189000342, PatternCompiler_EmitOpen_m1906123864, PatternCompiler_EmitClose_m2953485710, PatternCompiler_EmitBalanceStart_m153593536, PatternCompiler_EmitBalance_m1234756257, PatternCompiler_EmitReference_m2226804289, PatternCompiler_EmitIfDefined_m1998800056, PatternCompiler_EmitSub_m1250623225, PatternCompiler_EmitTest_m3519274007, PatternCompiler_EmitBranch_m2313940051, PatternCompiler_EmitJump_m4159061471, PatternCompiler_EmitRepeat_m3913724843, PatternCompiler_EmitUntil_m2917116183, PatternCompiler_EmitFastRepeat_m1340139951, PatternCompiler_EmitIn_m2264896214, PatternCompiler_EmitAnchor_m1283354284, PatternCompiler_EmitInfo_m2915026460, PatternCompiler_NewLink_m629334431, PatternCompiler_ResolveLink_m1754537234, PatternCompiler_EmitBranchEnd_m676018014, PatternCompiler_EmitAlternationEnd_m2098295803, PatternCompiler_MakeFlags_m1692978267, PatternCompiler_Emit_m992741850, PatternCompiler_Emit_m1318559571, PatternCompiler_Emit_m2066671991, PatternCompiler_get_CurrentAddress_m1919164478, PatternCompiler_BeginLink_m4071458319, PatternCompiler_EmitLink_m116538795, PatternLinkStack__ctor_m451109823, PatternLinkStack_set_BaseAddress_m1841392820, PatternLinkStack_get_OffsetAddress_m3032139717, PatternLinkStack_set_OffsetAddress_m2022131826, PatternLinkStack_GetOffset_m222181543, PatternLinkStack_GetCurrent_m3766647891, PatternLinkStack_SetCurrent_m3645587320, QuickSearch__ctor_m2383021006, QuickSearch__cctor_m3095711897, QuickSearch_get_Length_m2171114063, QuickSearch_Search_m3059452826, QuickSearch_SetupShiftTable_m73996795, QuickSearch_GetShiftDistance_m2673548988, QuickSearch_GetChar_m2212630365, Regex__ctor_m523653122, Regex__ctor_m2980635200, Regex__ctor_m2068483208, Regex__ctor_m1618790979, Regex__cctor_m2866248683, Regex_System_Runtime_Serialization_ISerializable_GetObjectData_m522480713, Regex_Replace_m2658391113, Regex_Replace_m1218008337, Regex_validate_options_m625353623, Regex_Init_m938259986, Regex_InitNewRegex_m2419508729, Regex_CreateMachineFactory_m2347116393, Regex_get_Options_m3928047814, Regex_get_RightToLeft_m3494755007, Regex_GroupNumberFromName_m2580513429, Regex_GetGroupIndex_m547759882, Regex_default_startat_m996366267, Regex_IsMatch_m2967892253, Regex_IsMatch_m3759940314, Regex_Match_m1021969427, Regex_Matches_m3092142232, Regex_Matches_m4271078207, Regex_Replace_m853874381, Regex_Replace_m1882314221, Regex_ToString_m3480281169, Regex_get_GroupCount_m2128334859, Regex_get_Gap_m2153899613, Regex_CreateMachine_m1572823491, Regex_GetGroupNamesArray_m3739926801, Regex_get_GroupNumbers_m2500558052, ReplacementEvaluator__ctor_m2774850658, ReplacementEvaluator_Evaluate_m4205324994, ReplacementEvaluator_EvaluateAppend_m4266406947, ReplacementEvaluator_get_NeedsGroupsOrCaptures_m1475641324, ReplacementEvaluator_Ensure_m619661651, ReplacementEvaluator_AddFromReplacement_m4144056411, ReplacementEvaluator_AddInt_m3650451619, ReplacementEvaluator_Compile_m763546001, ReplacementEvaluator_CompileTerm_m2939168366, Alternation__ctor_m1090419051, Alternation_get_Alternatives_m1740410205, Alternation_AddAlternative_m3695967311, Alternation_Compile_m333754556, Alternation_GetWidth_m1273465607, AnchorInfo__ctor_m774944594, AnchorInfo__ctor_m2237276956, AnchorInfo__ctor_m3146766459, AnchorInfo_get_Offset_m110301077, AnchorInfo_get_Width_m814480998, AnchorInfo_get_Length_m2802687272, AnchorInfo_get_IsUnknownWidth_m3273649934, AnchorInfo_get_IsComplete_m2840583659, AnchorInfo_get_Substring_m1320966366, AnchorInfo_get_IgnoreCase_m843009482, AnchorInfo_get_Position_m1033547864, AnchorInfo_get_IsSubstring_m506285889, AnchorInfo_get_IsPosition_m467864027, AnchorInfo_GetInterval_m1447205988, Assertion__ctor_m936536102, Assertion_get_TrueExpression_m1503749732, Assertion_set_TrueExpression_m293303211, Assertion_get_FalseExpression_m2557605343, Assertion_set_FalseExpression_m18812748, Assertion_GetWidth_m2142322818, BackslashNumber__ctor_m1444209053, BackslashNumber_ResolveReference_m705827744, BackslashNumber_Compile_m4016920510, BalancingGroup__ctor_m1391379608, BalancingGroup_set_Balance_m1819477787, BalancingGroup_Compile_m191354415, CaptureAssertion__ctor_m4132785567, CaptureAssertion_set_CapturingGroup_m1020834945, CaptureAssertion_Compile_m922447973, CaptureAssertion_IsComplex_m987845008, CaptureAssertion_get_Alternate_m4248571978, CapturingGroup__ctor_m616302850, CapturingGroup_get_Index_m1539088601, CapturingGroup_set_Index_m1904349670, CapturingGroup_get_Name_m1678290617, CapturingGroup_set_Name_m2861220216, CapturingGroup_get_IsNamed_m2190134608, CapturingGroup_Compile_m847947013, CapturingGroup_IsComplex_m923392880, CapturingGroup_CompareTo_m2476546276, CharacterClass__ctor_m318669623, CharacterClass__ctor_m3672999653, CharacterClass__cctor_m2076983614, CharacterClass_AddCategory_m385157186, CharacterClass_AddCharacter_m509912608, CharacterClass_AddRange_m4184687523, CharacterClass_Compile_m3181047384, CharacterClass_GetWidth_m2016149227, CharacterClass_IsComplex_m3242686525, CharacterClass_GetIntervalCost_m3570544782, CompositeExpression__ctor_m839662857, CompositeExpression_get_Expressions_m2158932996, CompositeExpression_GetWidth_m925194962, CompositeExpression_IsComplex_m1954466275, Expression__ctor_m89241894, Expression_GetFixedWidth_m3994281404, Expression_GetAnchorInfo_m1428771350, ExpressionAssertion__ctor_m2776942238, ExpressionAssertion_set_Reverse_m3599260152, ExpressionAssertion_set_Negate_m1902108060, ExpressionAssertion_get_TestExpression_m1374960432, ExpressionAssertion_set_TestExpression_m828897591, ExpressionAssertion_Compile_m2907610857, ExpressionAssertion_IsComplex_m4273897720, ExpressionCollection__ctor_m235484264, ExpressionCollection_Add_m3422413233, ExpressionCollection_get_Item_m3558752946, ExpressionCollection_set_Item_m3407994931, ExpressionCollection_OnValidate_m67467971, Group__ctor_m358391753, Group_AppendExpression_m2176615607, Group_Compile_m767805470, Group_GetWidth_m3807951077, Group_GetAnchorInfo_m1440957557, Literal__ctor_m1496565524, Literal_CompileLiteral_m187321040, Literal_Compile_m2265605006, Literal_GetWidth_m2047345525, Literal_GetAnchorInfo_m193937285, Literal_IsComplex_m712383539, NonBacktrackingGroup__ctor_m1908070474, NonBacktrackingGroup_Compile_m2947364541, NonBacktrackingGroup_IsComplex_m200933176, Parser__ctor_m1404972287, Parser_ParseDecimal_m3118847812, Parser_ParseOctal_m1398273866, Parser_ParseHex_m370479069, Parser_ParseNumber_m633788361, Parser_ParseName_m3152672479, Parser_ParseRegularExpression_m3601917447, Parser_GetMapping_m2242103141, Parser_ParseGroup_m2536720048, Parser_ParseGroupingConstruct_m845745261, Parser_ParseAssertionType_m3709247266, Parser_ParseOptions_m1196738735, Parser_ParseCharacterClass_m4053595992, Parser_ParseRepetitionBounds_m2180911384, Parser_ParseUnicodeCategory_m1866187541, Parser_ParseSpecial_m1376060474, Parser_ParseEscape_m675256065, Parser_ParseName_m417255288, Parser_IsNameChar_m1287282583, Parser_ParseNumber_m2475743354, Parser_ParseDigit_m3105438222, Parser_ConsumeWhitespace_m3800733805, Parser_ResolveReferences_m1842037937, Parser_HandleExplicitNumericGroups_m2933059971, Parser_IsIgnoreCase_m3077668423, Parser_IsMultiline_m1332832164, Parser_IsExplicitCapture_m2152082175, Parser_IsSingleline_m4108862573, Parser_IsIgnorePatternWhitespace_m4039716246, Parser_IsECMAScript_m432342092, Parser_NewParseException_m3475856021, PositionAssertion__ctor_m2712509165, PositionAssertion_Compile_m2491919992, PositionAssertion_GetWidth_m4112110283, PositionAssertion_IsComplex_m2141947785, PositionAssertion_GetAnchorInfo_m3911354203, Reference__ctor_m425097396, Reference_get_CapturingGroup_m2373399431, Reference_set_CapturingGroup_m716261254, Reference_get_IgnoreCase_m1035334716, Reference_Compile_m2087049322, Reference_GetWidth_m2365245465, Reference_IsComplex_m868186199, RegularExpression__ctor_m365120276, RegularExpression_set_GroupCount_m508599630, RegularExpression_Compile_m201671475, Repetition__ctor_m4270514692, Repetition_get_Expression_m2567702849, Repetition_set_Expression_m3471937174, Repetition_get_Minimum_m1360004544, Repetition_Compile_m4261647610, Repetition_GetWidth_m681452937, Repetition_GetAnchorInfo_m337026333, Uri__ctor_m1721267859, Uri__ctor_m4101815696, Uri__ctor_m1689224330, Uri__cctor_m2145170622, Uri_System_Runtime_Serialization_ISerializable_GetObjectData_m3581151196, Uri_get_AbsoluteUri_m2228269430, Uri_get_Authority_m1914393796, Uri_get_Host_m1446697833, Uri_get_IsFile_m1860057402, Uri_get_IsLoopback_m224603913, Uri_get_IsUnc_m766729742, Uri_get_Scheme_m2606456870, Uri_get_IsAbsoluteUri_m145672153, Uri_CheckHostName_m294200959, Uri_IsIPv4Address_m3490090822, Uri_IsDomainAddress_m740222981, Uri_CheckSchemeName_m3839723091, Uri_IsAlpha_m171894930, Uri_Equals_m2208061098, Uri_InternalEquals_m2509473274, Uri_GetHashCode_m629619726, Uri_GetLeftPart_m2866425188, Uri_FromHex_m2865381007, Uri_HexEscape_m2779785335, Uri_IsHexDigit_m4109487926, Uri_IsHexEncoding_m3196775920, Uri_AppendQueryAndFragment_m1562004088, Uri_ToString_m967075364, Uri_EscapeString_m2453046424, Uri_EscapeString_m1653334917, Uri_ParseUri_m3771462925, Uri_Unescape_m4097037232, Uri_Unescape_m416590285, Uri_ParseAsWindowsUNC_m3032435497, Uri_ParseAsWindowsAbsoluteFilePath_m1155471572, Uri_ParseAsUnixAbsoluteFilePath_m1730599600, Uri_Parse_m561053531, Uri_ParseNoExceptions_m2517263517, Uri_CompactEscaped_m2021013591, Uri_Reduce_m1169795993, Uri_HexUnescapeMultiByte_m3269245053, Uri_GetSchemeDelimiter_m1914409694, Uri_GetDefaultPort_m711645873, Uri_GetOpaqueWiseSchemeDelimiter_m3781205887, Uri_IsPredefinedScheme_m2987522946, Uri_get_Parser_m533607664, Uri_EnsureAbsoluteUri_m3407571844, Uri_op_Equality_m877019543, UriScheme__ctor_m535258662, UriFormatException__ctor_m2977644479, UriFormatException__ctor_m3185454499, UriFormatException__ctor_m262177920, UriFormatException_System_Runtime_Serialization_ISerializable_GetObjectData_m2011642604, UriParser__ctor_m3933763184, UriParser__cctor_m1205478205, UriParser_InitializeAndValidate_m3968058349, UriParser_OnRegister_m3986311499, UriParser_set_SchemeName_m706252033, UriParser_get_DefaultPort_m3728184791, UriParser_set_DefaultPort_m1019606244, UriParser_CreateDefaults_m2648397058, UriParser_InternalRegister_m1447570189, UriParser_GetParser_m635613298, Locale_GetText_m4086560262, BigInteger__ctor_m2610662484, BigInteger__ctor_m1318440774, BigInteger__ctor_m3547305722, BigInteger__ctor_m2747162922, BigInteger__ctor_m1050530395, BigInteger__cctor_m2261677710, BigInteger_get_Rng_m1505693788, BigInteger_GenerateRandom_m2595866790, BigInteger_GenerateRandom_m1343108780, BigInteger_BitCount_m3880753871, BigInteger_TestBit_m4085687739, BigInteger_SetBit_m3067778314, BigInteger_SetBit_m989579571, BigInteger_LowestSetBit_m644775850, BigInteger_GetBytes_m561587716, BigInteger_ToString_m3209284166, BigInteger_ToString_m2413330434, BigInteger_Normalize_m2451454954, BigInteger_Clear_m542683434, BigInteger_GetHashCode_m3211366534, BigInteger_ToString_m1505524532, BigInteger_Equals_m4043809186, BigInteger_ModInverse_m560616920, BigInteger_ModPow_m837755469, BigInteger_GeneratePseudoPrime_m323167868, BigInteger_Incr2_m1628594427, BigInteger_op_Implicit_m638921272, BigInteger_op_Implicit_m2620841043, BigInteger_op_Addition_m1737862829, BigInteger_op_Subtraction_m3436814701, BigInteger_op_Modulus_m465134612, BigInteger_op_Modulus_m2858145418, BigInteger_op_Division_m1824126044, BigInteger_op_Multiply_m2896976517, BigInteger_op_LeftShift_m2333016656, BigInteger_op_RightShift_m3774983213, BigInteger_op_Equality_m1195898850, BigInteger_op_Inequality_m4000708231, BigInteger_op_Equality_m1709618143, BigInteger_op_Inequality_m549511578, BigInteger_op_GreaterThan_m3422164694, BigInteger_op_LessThan_m1693109759, BigInteger_op_GreaterThanOrEqual_m2091126915, BigInteger_op_LessThanOrEqual_m2413275450, Kernel_AddSameSign_m3951710603, Kernel_Subtract_m593759655, Kernel_MinusEq_m2588038513, Kernel_PlusEq_m1327972151, Kernel_Compare_m3514403080, Kernel_SingleByteDivideInPlace_m746013128, Kernel_DwordMod_m419221597, Kernel_DwordDivMod_m3508261007, Kernel_multiByteDivide_m1455363991, Kernel_LeftShift_m3640718462, Kernel_RightShift_m1364066239, Kernel_Multiply_m1952926483, Kernel_MultiplyMod2p32pmod_m2080485974, Kernel_modInverse_m2584089367, Kernel_modInverse_m2477583693, ModulusRing__ctor_m2037212078, ModulusRing_BarrettReduction_m1160185617, ModulusRing_Multiply_m1902123335, ModulusRing_Difference_m2583958286, ModulusRing_Pow_m668600583, ModulusRing_Pow_m3374554770, PrimeGeneratorBase__ctor_m804747758, PrimeGeneratorBase_get_Confidence_m1495727549, PrimeGeneratorBase_get_PrimalityTest_m415255588, PrimeGeneratorBase_get_TrialDivisionBounds_m3765645491, SequentialSearchPrimeGeneratorBase__ctor_m3197013479, SequentialSearchPrimeGeneratorBase_GenerateSearchBase_m3042338792, SequentialSearchPrimeGeneratorBase_GenerateNewPrime_m2709469184, SequentialSearchPrimeGeneratorBase_GenerateNewPrime_m3023274702, SequentialSearchPrimeGeneratorBase_IsPrimeAcceptable_m3870219587, PrimalityTest__ctor_m2328223289, PrimalityTest_Invoke_m1898501111, PrimalityTest_BeginInvoke_m3294511682, PrimalityTest_EndInvoke_m1090214203, PrimalityTests_GetSPPRounds_m3682781848, PrimalityTests_RabinMillerTest_m776850607, ASN1__ctor_m3086925575, ASN1__ctor_m2727735242, ASN1__ctor_m3008094309, ASN1_get_Count_m2214472120, ASN1_get_Tag_m442995239, ASN1_get_Length_m2237640703, ASN1_get_Value_m390067040, ASN1_set_Value_m213247127, ASN1_CompareArray_m2104154182, ASN1_CompareValue_m1123010439, ASN1_Add_m1424422628, ASN1_GetBytes_m2350265955, ASN1_Decode_m2560929067, ASN1_DecodeTLV_m1331458973, ASN1_get_Item_m3727278260, ASN1_Element_m2786077841, ASN1_ToString_m2072053203, ASN1Convert_FromInt32_m570537577, ASN1Convert_FromOid_m1663059922, ASN1Convert_ToInt32_m2275332600, ASN1Convert_ToOid_m581448231, ASN1Convert_ToDateTime_m864003254, BitConverterLE_GetUIntBytes_m262034205, BitConverterLE_GetBytes_m3530550987, ARC4Managed__ctor_m340859770, ARC4Managed_Finalize_m1353226920, ARC4Managed_Dispose_m3405830766, ARC4Managed_get_Key_m2464321124, ARC4Managed_set_Key_m1483606703, ARC4Managed_get_CanReuseTransform_m1071201641, ARC4Managed_CreateEncryptor_m2178579654, ARC4Managed_CreateDecryptor_m1872851102, ARC4Managed_GenerateIV_m2349135020, ARC4Managed_GenerateKey_m4106080642, ARC4Managed_KeySetup_m705764065, ARC4Managed_CheckInput_m3884405629, ARC4Managed_TransformBlock_m961675998, ARC4Managed_InternalTransformBlock_m158418811, ARC4Managed_TransformFinalBlock_m1879343064, CryptoConvert_ToHex_m1331445157, HMAC__ctor_m3969743837, HMAC_get_Key_m2760207782, HMAC_set_Key_m1481428161, HMAC_Initialize_m1123559404, HMAC_HashFinal_m3498276984, HMAC_HashCore_m3652556320, HMAC_initializePad_m2313790985, KeyBuilder_get_Rng_m1400512726, KeyBuilder_Key_m2026570507, MD2__ctor_m1806345404, MD2_Create_m1400591135, MD2_Create_m2231408195, MD2Managed__ctor_m2257535371, MD2Managed__cctor_m782023554, MD2Managed_Padding_m3531272693, MD2Managed_Initialize_m1198478313, MD2Managed_HashCore_m848434243, MD2Managed_HashFinal_m3903508827, MD2Managed_MD2Transform_m1178472146, MD5SHA1__ctor_m2374690196, MD5SHA1_Initialize_m1333120384, MD5SHA1_HashFinal_m1928907216, MD5SHA1_HashCore_m1242406156, MD5SHA1_CreateSignature_m1164435223, MD5SHA1_VerifySignature_m3462577241, PKCS1__cctor_m2574493212, PKCS1_Compare_m2966371174, PKCS1_I2OSP_m2941319222, PKCS1_OS2IP_m3050204367, PKCS1_RSASP1_m3485035079, PKCS1_RSAVP1_m2589639562, PKCS1_Sign_v15_m456933555, PKCS1_Verify_v15_m555702422, PKCS1_Verify_v15_m4160617511, PKCS1_Encode_v15_m2783024148, EncryptedPrivateKeyInfo__ctor_m1455841035, EncryptedPrivateKeyInfo__ctor_m3104680606, EncryptedPrivateKeyInfo_get_Algorithm_m1903026028, EncryptedPrivateKeyInfo_get_EncryptedData_m1064226660, EncryptedPrivateKeyInfo_get_Salt_m4034382306, EncryptedPrivateKeyInfo_get_IterationCount_m1213644604, EncryptedPrivateKeyInfo_Decode_m236294626, PrivateKeyInfo__ctor_m362104835, PrivateKeyInfo__ctor_m3331527846, PrivateKeyInfo_get_PrivateKey_m2153221404, PrivateKeyInfo_Decode_m2973591770, PrivateKeyInfo_RemoveLeadingZero_m3776637556, PrivateKeyInfo_Normalize_m3523909062, PrivateKeyInfo_DecodeRSA_m311172684, PrivateKeyInfo_DecodeDSA_m1682427249, RC4__ctor_m3855683348, RC4__cctor_m3079970585, RC4_get_IV_m3603717424, RC4_set_IV_m2067006095, RSAManaged__ctor_m3378736176, RSAManaged__ctor_m3804256641, RSAManaged_Finalize_m3473344050, RSAManaged_GenerateKeyPair_m1998786226, RSAManaged_get_KeySize_m3861517773, RSAManaged_get_PublicOnly_m3066955040, RSAManaged_DecryptValue_m3745730427, RSAManaged_EncryptValue_m691555411, RSAManaged_ExportParameters_m447046473, RSAManaged_ImportParameters_m3911092908, RSAManaged_Dispose_m2318860068, RSAManaged_ToXmlString_m2969901557, RSAManaged_GetPaddedValue_m3945925723, KeyGeneratedEventHandler__ctor_m3739847195, KeyGeneratedEventHandler_Invoke_m1246442575, KeyGeneratedEventHandler_BeginInvoke_m452081622, KeyGeneratedEventHandler_EndInvoke_m162808235, ContentInfo__ctor_m3875806349, ContentInfo__ctor_m521342869, ContentInfo__ctor_m2758504540, ContentInfo__ctor_m3021605653, ContentInfo_get_ASN1_m2914115734, ContentInfo_get_Content_m2793987994, ContentInfo_set_Content_m2661678287, ContentInfo_get_ContentType_m3252099384, ContentInfo_set_ContentType_m1664057857, ContentInfo_GetASN1_m147164789, EncryptedData__ctor_m1149165926, EncryptedData__ctor_m794340270, EncryptedData_get_EncryptionAlgorithm_m3999045305, EncryptedData_get_EncryptedContent_m2775206546, Alert__ctor_m1050138762, Alert__ctor_m2712587944, Alert_get_Level_m1997506166, Alert_get_Description_m3120128934, Alert_get_IsWarning_m3635544347, Alert_get_IsCloseNotify_m3620572320, Alert_inferAlertLevel_m1028853718, Alert_GetAlertMessage_m2724053422, CertificateSelectionCallback__ctor_m2794002132, CertificateSelectionCallback_Invoke_m1413516687, CertificateSelectionCallback_BeginInvoke_m1304521025, CertificateSelectionCallback_EndInvoke_m3027480361, CertificateValidationCallback__ctor_m2692809593, CertificateValidationCallback_Invoke_m481730652, CertificateValidationCallback_BeginInvoke_m1580004723, CertificateValidationCallback_EndInvoke_m2267930199, CertificateValidationCallback2__ctor_m1854682743, CertificateValidationCallback2_Invoke_m4228010672, CertificateValidationCallback2_BeginInvoke_m1231864174, CertificateValidationCallback2_EndInvoke_m2684174416, CipherSuite__ctor_m658209606, CipherSuite__cctor_m2830170332, CipherSuite_get_EncryptionCipher_m3951497384, CipherSuite_get_DecryptionCipher_m1358717056, CipherSuite_get_ClientHMAC_m3918386475, CipherSuite_get_ServerHMAC_m2966460067, CipherSuite_get_CipherAlgorithmType_m4289432549, CipherSuite_get_HashAlgorithmName_m1304664079, CipherSuite_get_HashAlgorithmType_m687406047, CipherSuite_get_HashSize_m2484224531, CipherSuite_get_ExchangeAlgorithmType_m987153461, CipherSuite_get_CipherMode_m2092929468, CipherSuite_get_Code_m3312642635, CipherSuite_get_Name_m1995865258, CipherSuite_get_IsExportable_m534474210, CipherSuite_get_KeyMaterialSize_m166819169, CipherSuite_get_KeyBlockSize_m3692693747, CipherSuite_get_ExpandedKeyMaterialSize_m2373093544, CipherSuite_get_EffectiveKeyBits_m1093264636, CipherSuite_get_IvSize_m633403350, CipherSuite_get_Context_m3949655367, CipherSuite_set_Context_m2407825304, CipherSuite_Write_m920521461, CipherSuite_Write_m3763647761, CipherSuite_InitializeCipher_m1046105646, CipherSuite_EncryptRecord_m1686609905, CipherSuite_DecryptRecord_m3553271804, CipherSuite_CreatePremasterSecret_m4245710238, CipherSuite_PRF_m4080641496, CipherSuite_Expand_m4170799558, CipherSuite_createEncryptionCipher_m347042717, CipherSuite_createDecryptionCipher_m2049229685, CipherSuiteCollection__ctor_m273269703, CipherSuiteCollection_System_Collections_IList_get_Item_m3319535496, CipherSuiteCollection_System_Collections_IList_set_Item_m4255989087, CipherSuiteCollection_System_Collections_ICollection_get_IsSynchronized_m3698127433, CipherSuiteCollection_System_Collections_ICollection_get_SyncRoot_m914076225, CipherSuiteCollection_System_Collections_IEnumerable_GetEnumerator_m1907853496, CipherSuiteCollection_System_Collections_IList_Contains_m3495236659, CipherSuiteCollection_System_Collections_IList_IndexOf_m2797029265, CipherSuiteCollection_System_Collections_IList_Insert_m414962568, CipherSuiteCollection_System_Collections_IList_Remove_m46053536, CipherSuiteCollection_System_Collections_IList_RemoveAt_m3013015320, CipherSuiteCollection_System_Collections_IList_Add_m2526713273, CipherSuiteCollection_get_Item_m95097157, CipherSuiteCollection_get_Item_m3036376750, CipherSuiteCollection_set_Item_m141821933, CipherSuiteCollection_get_Item_m3036374952, CipherSuiteCollection_get_Count_m2086503695, CipherSuiteCollection_get_IsFixedSize_m2874798629, CipherSuiteCollection_get_IsReadOnly_m3871880244, CipherSuiteCollection_CopyTo_m2731497872, CipherSuiteCollection_Clear_m2278434462, CipherSuiteCollection_IndexOf_m3646145168, CipherSuiteCollection_IndexOf_m102883581, CipherSuiteCollection_Add_m667539191, CipherSuiteCollection_add_m1902600707, CipherSuiteCollection_add_m2351410469, CipherSuiteCollection_cultureAwareCompare_m850129638, CipherSuiteFactory_GetSupportedCiphers_m950549359, CipherSuiteFactory_GetTls1SupportedCiphers_m1864585473, CipherSuiteFactory_GetSsl3SupportedCiphers_m2259956690, ClientContext__ctor_m483520879, ClientContext_get_SslStream_m714880213, ClientContext_get_ClientHelloProtocol_m3083636780, ClientContext_set_ClientHelloProtocol_m31446181, ClientContext_Clear_m2709420165, ClientRecordProtocol__ctor_m3035494461, ClientRecordProtocol_GetMessage_m2518248327, ClientRecordProtocol_ProcessHandshakeMessage_m3106137596, ClientRecordProtocol_createClientHandshakeMessage_m3433791085, ClientRecordProtocol_createServerHandshakeMessage_m2388742696, ClientSessionCache__cctor_m3222200124, ClientSessionCache_Add_m1176188661, ClientSessionCache_FromHost_m3499660871, ClientSessionCache_FromContext_m1274339950, ClientSessionCache_SetContextInCache_m1823103460, ClientSessionCache_SetContextFromCache_m2249085247, ClientSessionInfo__ctor_m3986042656, ClientSessionInfo__cctor_m1522715144, ClientSessionInfo_Finalize_m2580870141, ClientSessionInfo_get_HostName_m4285397854, ClientSessionInfo_get_Id_m277031725, ClientSessionInfo_get_Valid_m3298602216, ClientSessionInfo_GetContext_m4271145743, ClientSessionInfo_SetContext_m2955880067, ClientSessionInfo_KeepAlive_m3111167147, ClientSessionInfo_Dispose_m1917892930, ClientSessionInfo_Dispose_m3809547065, ClientSessionInfo_CheckDisposed_m3528977776, Context__ctor_m2692561931, Context_get_AbbreviatedHandshake_m3621257066, Context_set_AbbreviatedHandshake_m66679943, Context_get_ProtocolNegotiated_m2137079082, Context_set_ProtocolNegotiated_m2979902407, Context_get_SecurityProtocol_m2457665585, Context_set_SecurityProtocol_m848973232, Context_get_SecurityProtocolFlags_m1914144888, Context_get_Protocol_m775713592, Context_get_SessionId_m1237865483, Context_set_SessionId_m3092121576, Context_get_CompressionMethod_m487253678, Context_set_CompressionMethod_m3462049341, Context_get_ServerSettings_m4010613088, Context_get_ClientSettings_m4242530400, Context_get_LastHandshakeMsg_m1576961185, Context_set_LastHandshakeMsg_m1436694014, Context_get_HandshakeState_m972066827, Context_set_HandshakeState_m3428098438, Context_get_ReceivedConnectionEnd_m731026834, Context_set_ReceivedConnectionEnd_m1502103331, Context_get_SentConnectionEnd_m1343643003, Context_set_SentConnectionEnd_m2988269644, Context_get_SupportedCiphers_m2251752138, Context_set_SupportedCiphers_m2658500263, Context_get_HandshakeMessages_m1457854885, Context_get_WriteSequenceNumber_m2425723185, Context_set_WriteSequenceNumber_m970670722, Context_get_ReadSequenceNumber_m1306012538, Context_set_ReadSequenceNumber_m3107900585, Context_get_ClientRandom_m1978397270, Context_set_ClientRandom_m628701865, Context_get_ServerRandom_m2005153230, Context_set_ServerRandom_m1721522737, Context_get_RandomCS_m1402706075, Context_set_RandomCS_m2386417540, Context_get_RandomSC_m1403167355, Context_set_RandomSC_m2143148452, Context_get_MasterSecret_m2040743066, Context_set_MasterSecret_m748730085, Context_get_ClientWriteKey_m2094953427, Context_set_ClientWriteKey_m409290444, Context_get_ServerWriteKey_m2037627211, Context_set_ServerWriteKey_m2638128212, Context_get_ClientWriteIV_m621691963, Context_set_ClientWriteIV_m3933057208, Context_get_ServerWriteIV_m1451126723, Context_set_ServerWriteIV_m3450765872, Context_get_RecordProtocol_m3223396139, Context_set_RecordProtocol_m1649539496, Context_GetUnixTime_m545141264, Context_GetSecureRandomBytes_m3225475755, Context_Clear_m2073665242, Context_ClearKeyInfo_m2273078613, Context_DecodeProtocolCode_m1937919790, Context_ChangeProtocol_m460386024, Context_get_Current_m2247657978, Context_get_Negotiating_m622190524, Context_get_Read_m3694946135, Context_get_Write_m3396834016, Context_StartSwitchingSecurityParameters_m271202242, Context_EndSwitchingSecurityParameters_m284941993, TlsClientCertificate__ctor_m1023162040, TlsClientCertificate_get_ClientCertificate_m681521287, TlsClientCertificate_Update_m3395913260, TlsClientCertificate_GetClientCertificate_m468855481, TlsClientCertificate_SendCertificates_m1671707015, TlsClientCertificate_ProcessAsSsl3_m2390374503, TlsClientCertificate_ProcessAsTls1_m2412745622, TlsClientCertificate_FindParentCertificate_m4055579138, TlsClientCertificateVerify__ctor_m3006072319, TlsClientCertificateVerify_Update_m1777063429, TlsClientCertificateVerify_ProcessAsSsl3_m1668289134, TlsClientCertificateVerify_ProcessAsTls1_m1690660253, TlsClientCertificateVerify_getClientCertRSA_m3586152660, TlsClientCertificateVerify_getUnsignedBigInteger_m1216540004, TlsClientFinished__ctor_m3204287283, TlsClientFinished__cctor_m3258319601, TlsClientFinished_Update_m1172310609, TlsClientFinished_ProcessAsSsl3_m2163388578, TlsClientFinished_ProcessAsTls1_m2185759697, TlsClientHello__ctor_m2164384861, TlsClientHello_Update_m22199271, TlsClientHello_ProcessAsSsl3_m4013369932, TlsClientHello_ProcessAsTls1_m4035741051, TlsClientKeyExchange__ctor_m2125938125, TlsClientKeyExchange_ProcessAsSsl3_m1953591228, TlsClientKeyExchange_ProcessAsTls1_m1975962347, TlsClientKeyExchange_ProcessCommon_m4047558437, TlsServerCertificate__ctor_m1168678195, TlsServerCertificate_Update_m193766836, TlsServerCertificate_ProcessAsSsl3_m3288731615, TlsServerCertificate_ProcessAsTls1_m3311102734, TlsServerCertificate_checkCertificateUsage_m810534703, TlsServerCertificate_validateCertificates_m3450033811, TlsServerCertificate_checkServerIdentity_m2567428742, TlsServerCertificate_checkDomainName_m205565698, TlsServerCertificate_Match_m265784176, TlsServerCertificateRequest__ctor_m2335652088, TlsServerCertificateRequest_Update_m2299446415, TlsServerCertificateRequest_ProcessAsSsl3_m2972161188, TlsServerCertificateRequest_ProcessAsTls1_m2994532307, TlsServerFinished__ctor_m3574461054, TlsServerFinished__cctor_m1271550057, TlsServerFinished_Update_m3480508361, TlsServerFinished_ProcessAsSsl3_m887802922, TlsServerFinished_ProcessAsTls1_m910174041, TlsServerHello__ctor_m567935000, TlsServerHello_Update_m621158767, TlsServerHello_ProcessAsSsl3_m3531078596, TlsServerHello_ProcessAsTls1_m3553449715, TlsServerHello_processProtocol_m3684387598, TlsServerHelloDone__ctor_m911934774, TlsServerHelloDone_ProcessAsSsl3_m3691706082, TlsServerHelloDone_ProcessAsTls1_m3714077201, TlsServerKeyExchange__ctor_m3272285064, TlsServerKeyExchange_Update_m2843595775, TlsServerKeyExchange_ProcessAsSsl3_m2851948340, TlsServerKeyExchange_ProcessAsTls1_m2874319459, TlsServerKeyExchange_verifySignature_m61991115, HandshakeMessage__ctor_m1474937626, HandshakeMessage__ctor_m3955100159, HandshakeMessage__ctor_m2754795165, HandshakeMessage_get_Context_m3519080307, HandshakeMessage_get_HandshakeType_m1324026282, HandshakeMessage_get_ContentType_m3318987123, HandshakeMessage_Process_m1242505358, HandshakeMessage_Update_m566705900, HandshakeMessage_EncodeMessage_m1406146266, HandshakeMessage_Compare_m1246403066, HttpsClientStream__ctor_m1831138033, HttpsClientStream_get_TrustFailure_m1743569637, HttpsClientStream_RaiseServerCertificateValidation_m1414843622, HttpsClientStream_U3CHttpsClientStreamU3Em__0_m3456026544, HttpsClientStream_U3CHttpsClientStreamU3Em__1_m3849503321, PrivateKeySelectionCallback__ctor_m3708014169, PrivateKeySelectionCallback_Invoke_m2835982706, PrivateKeySelectionCallback_BeginInvoke_m1098601792, PrivateKeySelectionCallback_EndInvoke_m2034230778, RecordProtocol__ctor_m680122215, RecordProtocol__cctor_m1295387214, RecordProtocol_get_Context_m1960772337, RecordProtocol_SendRecord_m2691441258, RecordProtocol_ProcessChangeCipherSpec_m1060708066, RecordProtocol_GetMessage_m2989532828, RecordProtocol_BeginReceiveRecord_m2484464879, RecordProtocol_InternalReceiveRecordCallback_m1163093802, RecordProtocol_EndReceiveRecord_m2844703599, RecordProtocol_ReceiveRecord_m1131958450, RecordProtocol_ReadRecordBuffer_m1367596554, RecordProtocol_ReadClientHelloV2_m4124663563, RecordProtocol_ReadStandardRecordBuffer_m1386517462, RecordProtocol_ProcessAlert_m4015528952, RecordProtocol_SendAlert_m2514944891, RecordProtocol_SendAlert_m1748450521, RecordProtocol_SendAlert_m1661652283, RecordProtocol_SendChangeCipherSpec_m1492403331, RecordProtocol_BeginSendRecord_m4074660131, RecordProtocol_InternalSendRecordCallback_m396863619, RecordProtocol_BeginSendRecord_m284507289, RecordProtocol_EndSendRecord_m1779126194, RecordProtocol_SendRecord_m1964683252, RecordProtocol_EncodeRecord_m3527606936, RecordProtocol_EncodeRecord_m1123568120, RecordProtocol_encryptRecordFragment_m3671059907, RecordProtocol_decryptRecordFragment_m3106472171, RecordProtocol_Compare_m2180772028, RecordProtocol_ProcessCipherSpecV2Buffer_m572218255, RecordProtocol_MapV2CipherCode_m3065399538, ReceiveRecordAsyncResult__ctor_m2998582075, ReceiveRecordAsyncResult_get_Record_m871815161, ReceiveRecordAsyncResult_get_ResultingBuffer_m3820567043, ReceiveRecordAsyncResult_get_InitialBuffer_m2778078946, ReceiveRecordAsyncResult_get_AsyncState_m3272189028, ReceiveRecordAsyncResult_get_AsyncException_m3323094132, ReceiveRecordAsyncResult_get_CompletedWithError_m3317022751, ReceiveRecordAsyncResult_get_AsyncWaitHandle_m1089809952, ReceiveRecordAsyncResult_get_IsCompleted_m736891099, ReceiveRecordAsyncResult_SetComplete_m3955953983, ReceiveRecordAsyncResult_SetComplete_m1288331580, ReceiveRecordAsyncResult_SetComplete_m652335805, SendRecordAsyncResult__ctor_m1199829305, SendRecordAsyncResult_get_Message_m2765274544, SendRecordAsyncResult_get_AsyncState_m2665400351, SendRecordAsyncResult_get_AsyncException_m776645195, SendRecordAsyncResult_get_CompletedWithError_m771666376, SendRecordAsyncResult_get_AsyncWaitHandle_m1260948317, SendRecordAsyncResult_get_IsCompleted_m775666514, SendRecordAsyncResult_SetComplete_m323449559, SendRecordAsyncResult_SetComplete_m1807552551, RSASslSignatureDeformatter__ctor_m4240353957, RSASslSignatureDeformatter_VerifySignature_m3412064374, RSASslSignatureDeformatter_SetHashAlgorithm_m1915873034, RSASslSignatureDeformatter_SetKey_m1829004304, RSASslSignatureFormatter__ctor_m1725069988, RSASslSignatureFormatter_CreateSignature_m2907529851, RSASslSignatureFormatter_SetHashAlgorithm_m415040521, RSASslSignatureFormatter_SetKey_m1164612593, SecurityParameters__ctor_m711073950, SecurityParameters_get_Cipher_m2063042602, SecurityParameters_set_Cipher_m1888356967, SecurityParameters_get_ClientWriteMAC_m509205152, SecurityParameters_set_ClientWriteMAC_m2390402827, SecurityParameters_get_ServerWriteMAC_m451878936, SecurityParameters_set_ServerWriteMAC_m324273299, SecurityParameters_Clear_m2412174537, SslCipherSuite__ctor_m1794847004, SslCipherSuite_ComputeServerRecordMAC_m3251033165, SslCipherSuite_ComputeClientRecordMAC_m3845627589, SslCipherSuite_ComputeMasterSecret_m2977908955, SslCipherSuite_ComputeKeys_m2619481712, SslCipherSuite_prf_m1493836693, SslClientStream__ctor_m99328227, SslClientStream__ctor_m3830369294, SslClientStream__ctor_m3070934736, SslClientStream__ctor_m1812308023, SslClientStream__ctor_m2883483309, SslClientStream_add_ServerCertValidation_m4096862828, SslClientStream_remove_ServerCertValidation_m2271337009, SslClientStream_add_ClientCertSelection_m3598639054, SslClientStream_remove_ClientCertSelection_m3341991123, SslClientStream_add_PrivateKeySelection_m3756271176, SslClientStream_remove_PrivateKeySelection_m7214243, SslClientStream_add_ServerCertValidation2_m2720675414, SslClientStream_remove_ServerCertValidation2_m737020123, SslClientStream_get_InputBuffer_m4205110840, SslClientStream_get_ClientCertificates_m4081278826, SslClientStream_get_SelectedClientCertificate_m4252887474, SslClientStream_get_ServerCertValidationDelegate_m459420051, SslClientStream_set_ServerCertValidationDelegate_m772375792, SslClientStream_get_ClientCertSelectionDelegate_m3262721995, SslClientStream_set_ClientCertSelectionDelegate_m1954811816, SslClientStream_get_PrivateKeyCertSelectionDelegate_m3305681381, SslClientStream_set_PrivateKeyCertSelectionDelegate_m3816935658, SslClientStream_Finalize_m1289121787, SslClientStream_Dispose_m2208138235, SslClientStream_OnBeginNegotiateHandshake_m3558591952, SslClientStream_SafeReceiveRecord_m4180109699, SslClientStream_OnNegotiateHandshakeCallback_m2911909321, SslClientStream_OnLocalCertificateSelection_m3738340919, SslClientStream_get_HaveRemoteValidation2Callback_m712645822, SslClientStream_OnRemoteCertificateValidation2_m549297777, SslClientStream_OnRemoteCertificateValidation_m2995372221, SslClientStream_RaiseServerCertificateValidation_m738622279, SslClientStream_RaiseServerCertificateValidation2_m1222389749, SslClientStream_RaiseClientCertificateSelection_m4278211596, SslClientStream_OnLocalPrivateKeySelection_m3261566884, SslClientStream_RaisePrivateKeySelection_m3264140164, SslHandshakeHash__ctor_m1720849178, SslHandshakeHash_Initialize_m3218164453, SslHandshakeHash_HashFinal_m1716921183, SslHandshakeHash_HashCore_m1118046919, SslHandshakeHash_CreateSignature_m1753519462, SslHandshakeHash_initializePad_m1112962160, SslStreamBase__ctor_m1932094885, SslStreamBase__cctor_m4024786316, SslStreamBase_AsyncHandshakeCallback_m2999600224, SslStreamBase_get_MightNeedHandshake_m3486515364, SslStreamBase_NegotiateHandshake_m4275951676, SslStreamBase_RaiseLocalCertificateSelection_m3048410672, SslStreamBase_RaiseRemoteCertificateValidation_m1070332522, SslStreamBase_RaiseRemoteCertificateValidation2_m2704286450, SslStreamBase_RaiseLocalPrivateKeySelection_m2365509687, SslStreamBase_get_CheckCertRevocationStatus_m3165157124, SslStreamBase_set_CheckCertRevocationStatus_m2461874581, SslStreamBase_get_CipherAlgorithm_m4086753563, SslStreamBase_get_CipherStrength_m2205541504, SslStreamBase_get_HashAlgorithm_m3705882325, SslStreamBase_get_HashStrength_m769179779, SslStreamBase_get_KeyExchangeStrength_m4089580817, SslStreamBase_get_KeyExchangeAlgorithm_m3009312272, SslStreamBase_get_SecurityProtocol_m2787356191, SslStreamBase_get_ServerCertificate_m2089787471, SslStreamBase_get_ServerCertificates_m925494264, SslStreamBase_BeginNegotiateHandshake_m2998761743, SslStreamBase_EndNegotiateHandshake_m2402424015, SslStreamBase_BeginRead_m1224799779, SslStreamBase_InternalBeginRead_m2665365405, SslStreamBase_InternalReadCallback_m4035244488, SslStreamBase_InternalBeginWrite_m3259256466, SslStreamBase_InternalWriteCallback_m1764266237, SslStreamBase_BeginWrite_m1786584070, SslStreamBase_EndRead_m29185563, SslStreamBase_EndWrite_m2816354780, SslStreamBase_Close_m3657358167, SslStreamBase_Flush_m2030445923, SslStreamBase_Read_m558115208, SslStreamBase_Read_m2805310696, SslStreamBase_Seek_m3066335689, SslStreamBase_SetLength_m1474200217, SslStreamBase_Write_m1278747915, SslStreamBase_Write_m139555499, SslStreamBase_get_CanRead_m780009774, SslStreamBase_get_CanSeek_m808764816, SslStreamBase_get_CanWrite_m3228120041, SslStreamBase_get_Length_m3676785979, SslStreamBase_get_Position_m3149709758, SslStreamBase_set_Position_m718728987, SslStreamBase_Finalize_m1889580673, SslStreamBase_Dispose_m927762229, SslStreamBase_resetBuffer_m54784942, SslStreamBase_checkDisposed_m2873255308, InternalAsyncResult__ctor_m358982211, InternalAsyncResult_get_ProceedAfterHandshake_m2894433668, InternalAsyncResult_get_FromWrite_m619101712, InternalAsyncResult_get_Buffer_m2758631523, InternalAsyncResult_get_Offset_m3785298228, InternalAsyncResult_get_Count_m2489795056, InternalAsyncResult_get_BytesRead_m2065687810, InternalAsyncResult_get_AsyncState_m478600163, InternalAsyncResult_get_AsyncException_m789203443, InternalAsyncResult_get_CompletedWithError_m2268946270, InternalAsyncResult_get_AsyncWaitHandle_m2858026241, InternalAsyncResult_get_IsCompleted_m517442172, InternalAsyncResult_SetComplete_m849188890, InternalAsyncResult_SetComplete_m1458533341, InternalAsyncResult_SetComplete_m2488678142, InternalAsyncResult_SetComplete_m1352916269, TlsCipherSuite__ctor_m1139271371, TlsCipherSuite_ComputeServerRecordMAC_m3713639486, TlsCipherSuite_ComputeClientRecordMAC_m13266614, TlsCipherSuite_ComputeMasterSecret_m988816908, TlsCipherSuite_ComputeKeys_m3237102751, TlsClientSettings__ctor_m929581301, TlsClientSettings_get_TargetHost_m4152838452, TlsClientSettings_set_TargetHost_m2074298781, TlsClientSettings_get_Certificates_m3576351313, TlsClientSettings_set_Certificates_m2196533972, TlsClientSettings_get_ClientCertificate_m1621563643, TlsClientSettings_set_ClientCertificate_m1801603000, TlsClientSettings_UpdateCertificateRSA_m715783041, TlsException__ctor_m1800218670, TlsException__ctor_m3172375189, TlsException__ctor_m1532839414, TlsException__ctor_m1100072882, TlsException__ctor_m314055256, TlsException__ctor_m761809044, TlsException_get_Alert_m2233021222, TlsServerSettings__ctor_m1004039293, TlsServerSettings_get_ServerKeyExchange_m635755587, TlsServerSettings_set_ServerKeyExchange_m1327105940, TlsServerSettings_get_Certificates_m2110079385, TlsServerSettings_set_Certificates_m3296554870, TlsServerSettings_get_CertificateRSA_m2184825443, TlsServerSettings_get_RsaParameters_m2649016060, TlsServerSettings_set_RsaParameters_m1298390193, TlsServerSettings_set_SignedParams_m1629591715, TlsServerSettings_get_CertificateRequest_m741313462, TlsServerSettings_set_CertificateRequest_m3309749971, TlsServerSettings_set_CertificateTypes_m2445254267, TlsServerSettings_set_DistinguisedNames_m3842714172, TlsServerSettings_UpdateCertificateRSA_m2131580665, TlsStream__ctor_m2595943107, TlsStream__ctor_m868803046, TlsStream_get_EOF_m3756372902, TlsStream_get_CanWrite_m3459717159, TlsStream_get_CanRead_m4251163952, TlsStream_get_CanSeek_m4279918994, TlsStream_get_Position_m872901500, TlsStream_set_Position_m1335791449, TlsStream_get_Length_m2901233273, TlsStream_ReadSmallValue_m1160118396, TlsStream_ReadByte_m4124498283, TlsStream_ReadInt16_m3059078429, TlsStream_ReadInt24_m64683956, TlsStream_ReadBytes_m3691381117, TlsStream_Write_m1211282283, TlsStream_Write_m3380208203, TlsStream_WriteInt24_m3944062020, TlsStream_Write_m3380210001, TlsStream_Write_m106187721, TlsStream_Reset_m242376048, TlsStream_ToArray_m613486997, TlsStream_Flush_m2679890405, TlsStream_SetLength_m702479131, TlsStream_Seek_m484817355, TlsStream_Read_m3435838442, TlsStream_Write_m2853472233, ValidationResult_get_Trusted_m3614004972, ValidationResult_get_ErrorCode_m4021319972, AuthorityKeyIdentifierExtension__ctor_m273322001, AuthorityKeyIdentifierExtension_Decode_m3261570505, AuthorityKeyIdentifierExtension_get_Identifier_m3285341703, AuthorityKeyIdentifierExtension_ToString_m196471364, BasicConstraintsExtension__ctor_m1872483704, BasicConstraintsExtension_Decode_m3853789606, BasicConstraintsExtension_Encode_m699231182, BasicConstraintsExtension_get_CertificateAuthority_m1090073055, BasicConstraintsExtension_ToString_m2175497377, ExtendedKeyUsageExtension__ctor_m2456177771, ExtendedKeyUsageExtension_Decode_m1804174611, ExtendedKeyUsageExtension_Encode_m2944583483, ExtendedKeyUsageExtension_get_KeyPurpose_m1025837013, ExtendedKeyUsageExtension_ToString_m3885476046, GeneralNames__ctor_m2995468779, GeneralNames_get_DNSNames_m2643734506, GeneralNames_get_IPAddresses_m2790419794, GeneralNames_ToString_m1119274128, KeyUsageExtension__ctor_m2614086738, KeyUsageExtension_Decode_m318383628, KeyUsageExtension_Encode_m1458792500, KeyUsageExtension_Support_m2695467029, KeyUsageExtension_ToString_m3863870599, NetscapeCertTypeExtension__ctor_m3785381751, NetscapeCertTypeExtension_Decode_m4024937351, NetscapeCertTypeExtension_Support_m1416151043, NetscapeCertTypeExtension_ToString_m3439723074, SubjectAltNameExtension__ctor_m607242584, SubjectAltNameExtension_Decode_m3473224134, SubjectAltNameExtension_get_DNSNames_m3652648031, SubjectAltNameExtension_get_IPAddresses_m3152105661, SubjectAltNameExtension_ToString_m2980757505, PKCS12__ctor_m2645615037, PKCS12__ctor_m1570997648, PKCS12__ctor_m3732648396, PKCS12__cctor_m4222558608, PKCS12_Decode_m3657725204, PKCS12_Finalize_m2970192261, PKCS12_set_Password_m255122339, PKCS12_get_IterationCount_m1936461050, PKCS12_set_IterationCount_m4214894503, PKCS12_get_Keys_m3197281000, PKCS12_get_Certificates_m425759547, PKCS12_get_RNG_m944600768, PKCS12_Compare_m1707054334, PKCS12_GetSymmetricAlgorithm_m2527458883, PKCS12_Decrypt_m2583016519, PKCS12_Decrypt_m1699029656, PKCS12_Encrypt_m3283559711, PKCS12_GetExistingParameters_m1851295361, PKCS12_AddPrivateKey_m3693882703, PKCS12_ReadSafeBag_m4010108072, PKCS12_CertificateSafeBag_m2143586463, PKCS12_MAC_m1203837730, PKCS12_GetBytes_m1971373682, PKCS12_EncryptedContentInfo_m722640604, PKCS12_AddCertificate_m3895304625, PKCS12_AddCertificate_m710679726, PKCS12_RemoveCertificate_m2867856866, PKCS12_RemoveCertificate_m2039050845, PKCS12_Clone_m668285869, PKCS12_get_MaximumPasswordLength_m1083541051, DeriveBytes__ctor_m4046501000, DeriveBytes__cctor_m405383205, DeriveBytes_set_HashName_m2086526224, DeriveBytes_set_IterationCount_m35620668, DeriveBytes_set_Password_m2839198645, DeriveBytes_set_Salt_m801246362, DeriveBytes_Adjust_m1390246396, DeriveBytes_Derive_m641766759, DeriveBytes_DeriveKey_m3484345305, DeriveBytes_DeriveIV_m1504468791, DeriveBytes_DeriveMAC_m3291939529, SafeBag__ctor_m2711801934, SafeBag_get_BagOID_m2256458192, SafeBag_get_ASN1_m3365953951, X501__cctor_m2619822114, X501_ToString_m1957208426, X501_ToString_m1526231602, X501_AppendEntry_m1741585464, X509Certificate__ctor_m1688356825, X509Certificate__cctor_m3957890465, X509Certificate_Parse_m1221896268, X509Certificate_GetUnsignedBigInteger_m3057380224, X509Certificate_get_DSA_m1952040247, X509Certificate_set_DSA_m1562150692, X509Certificate_get_Extensions_m577630462, X509Certificate_get_Hash_m2925829113, X509Certificate_get_IssuerName_m3235776392, X509Certificate_get_KeyAlgorithm_m3661706164, X509Certificate_get_KeyAlgorithmParameters_m2708577349, X509Certificate_set_KeyAlgorithmParameters_m769560986, X509Certificate_get_PublicKey_m835022733, X509Certificate_get_RSA_m842279223, X509Certificate_set_RSA_m547377152, X509Certificate_get_RawData_m2988459721, X509Certificate_get_SerialNumber_m1906128776, X509Certificate_get_Signature_m2856370319, X509Certificate_get_SignatureAlgorithm_m2628075899, X509Certificate_get_SubjectName_m4227284693, X509Certificate_get_ValidFrom_m3810659470, X509Certificate_get_ValidUntil_m2484027100, X509Certificate_get_Version_m1452122189, X509Certificate_get_IsCurrent_m3064883298, X509Certificate_WasCurrent_m3800725474, X509Certificate_VerifySignature_m120457372, X509Certificate_VerifySignature_m120874446, X509Certificate_VerifySignature_m1482842161, X509Certificate_get_IsSelfSigned_m3915010913, X509Certificate_GetIssuerName_m3574279585, X509Certificate_GetSubjectName_m1835981788, X509Certificate_GetObjectData_m2959679786, X509Certificate_PEM_m3879103085, X509CertificateCollection__ctor_m2517521230, X509CertificateCollection__ctor_m1273937252, X509CertificateCollection_System_Collections_IEnumerable_GetEnumerator_m4286050429, X509CertificateCollection_get_Item_m1107000690, X509CertificateCollection_Add_m1585739833, X509CertificateCollection_AddRange_m2353463272, X509CertificateCollection_Contains_m1747801975, X509CertificateCollection_GetEnumerator_m2226643995, X509CertificateCollection_GetHashCode_m2363682709, X509CertificateCollection_IndexOf_m2746488929, X509CertificateCollection_Remove_m2746334158, X509CertificateCollection_Compare_m1507319785, X509CertificateEnumerator__ctor_m3786714110, X509CertificateEnumerator_System_Collections_IEnumerator_get_Current_m974397704, X509CertificateEnumerator_System_Collections_IEnumerator_MoveNext_m1008796181, X509CertificateEnumerator_System_Collections_IEnumerator_Reset_m2173605650, X509CertificateEnumerator_get_Current_m1696796071, X509CertificateEnumerator_MoveNext_m4038787598, X509CertificateEnumerator_Reset_m2282105749, X509Chain__ctor_m4239706530, X509Chain__ctor_m2818311608, X509Chain_get_Status_m4000836433, X509Chain_get_TrustAnchors_m885238782, X509Chain_Build_m2539190260, X509Chain_IsValid_m122831928, X509Chain_FindCertificateParent_m3659377521, X509Chain_FindCertificateRoot_m3426389033, X509Chain_IsTrusted_m622221811, X509Chain_IsParent_m3808002146, X509Crl__ctor_m1270803331, X509Crl_Parse_m3104051218, X509Crl_get_Extensions_m2379703492, X509Crl_get_Hash_m2225876287, X509Crl_get_IssuerName_m3020541034, X509Crl_get_NextUpdate_m1145701656, X509Crl_Compare_m1588393905, X509Crl_GetCrlEntry_m698190412, X509Crl_GetCrlEntry_m1555363125, X509Crl_GetHashName_m3316681040, X509Crl_VerifySignature_m1549750422, X509Crl_VerifySignature_m1550167496, X509Crl_VerifySignature_m4119089195, X509CrlEntry__ctor_m2720899934, X509CrlEntry_get_SerialNumber_m2092313770, X509CrlEntry_get_RevocationDate_m1346115726, X509CrlEntry_get_Extensions_m3036329986, X509Extension__ctor_m2888521900, X509Extension__ctor_m3298017424, X509Extension_Decode_m4266869134, X509Extension_Encode_m1112310710, X509Extension_get_Oid_m1309247492, X509Extension_get_Critical_m3010458874, X509Extension_get_Value_m1722264871, X509Extension_Equals_m131878599, X509Extension_GetHashCode_m1621273003, X509Extension_WriteLine_m4265102453, X509Extension_ToString_m1923324847, X509ExtensionCollection__ctor_m3777468326, X509ExtensionCollection__ctor_m2115523054, X509ExtensionCollection_System_Collections_IEnumerable_GetEnumerator_m2588592549, X509ExtensionCollection_IndexOf_m1626273533, X509ExtensionCollection_get_Item_m2008681985, X509Store__ctor_m3740673213, X509Store_get_Certificates_m3817753304, X509Store_get_Crls_m2221659197, X509Store_Load_m507057712, X509Store_LoadCertificate_m2281266908, X509Store_LoadCrl_m371472464, X509Store_CheckStore_m4197144772, X509Store_BuildCertificatesCollection_m1851273927, X509Store_BuildCrlsCollection_m2551806712, X509StoreManager_get_CurrentUser_m856219042, X509StoreManager_get_LocalMachine_m3736537920, X509StoreManager_get_TrustedRootCertificates_m2593128238, X509Stores__ctor_m3067409489, X509Stores_get_TrustedRoot_m4006515680, X509Stores_Open_m3798926259, AddComponentMenu__ctor_m1521317712, AddComponentMenu__ctor_m3281913735, AnimationCurve__ctor_m2436282331, AnimationCurve__ctor_m4037844610, AnimationCurve_Cleanup_m386995588, AnimationCurve_Finalize_m2382224032, AnimationCurve_Init_m4012213483, AnimationEvent__ctor_m3893222711, AnimationEvent_get_data_m2818928483, AnimationEvent_set_data_m1709280462, AnimationEvent_get_stringParameter_m774178145, AnimationEvent_set_stringParameter_m4027163538, AnimationEvent_get_floatParameter_m585550415, AnimationEvent_set_floatParameter_m3972419412, AnimationEvent_get_intParameter_m1837369744, AnimationEvent_set_intParameter_m1983832533, AnimationEvent_get_objectReferenceParameter_m1449907980, AnimationEvent_set_objectReferenceParameter_m2952903185, AnimationEvent_get_functionName_m508701692, AnimationEvent_set_functionName_m3347976661, AnimationEvent_get_time_m4165710255, AnimationEvent_set_time_m2746909172, AnimationEvent_get_messageOptions_m501221094, AnimationEvent_set_messageOptions_m927737387, AnimationEvent_get_isFiredByLegacy_m1265747114, AnimationEvent_get_isFiredByAnimator_m877765704, AnimationEvent_get_animationState_m2712753230, AnimationEvent_get_animatorStateInfo_m194903218, AnimationEvent_get_animatorClipInfo_m493861262, AnimationEvent_GetHash_m2586883417, Animator_SetTrigger_m514363822, Animator_ResetTrigger_m4152421915, Animator_get_runtimeAnimatorController_m1822082727, Animator_StringToHash_m4020897098, Animator_SetTriggerString_m1378271133, Animator_ResetTriggerString_m1817269834, AnimatorStateInfo_IsName_m1653922768, AnimatorStateInfo_get_fullPathHash_m3257074542, AnimatorStateInfo_get_nameHash_m453823205, AnimatorStateInfo_get_shortNameHash_m994885515, AnimatorStateInfo_get_normalizedTime_m2531821060, AnimatorStateInfo_get_length_m3147284742, AnimatorStateInfo_get_speed_m247405833, AnimatorStateInfo_get_speedMultiplier_m489756842, AnimatorStateInfo_get_tagHash_m3543262078, AnimatorStateInfo_IsTag_m119936877, AnimatorStateInfo_get_loop_m1495892586, AnimatorTransitionInfo_IsName_m1283663078, AnimatorTransitionInfo_IsUserName_m2732197659, AnimatorTransitionInfo_get_fullPathHash_m3335466636, AnimatorTransitionInfo_get_nameHash_m2102867203, AnimatorTransitionInfo_get_userNameHash_m249220782, AnimatorTransitionInfo_get_normalizedTime_m3258684986, AnimatorTransitionInfo_get_anyState_m3421556405, AnimatorTransitionInfo_get_entry_m2038132324, AnimatorTransitionInfo_get_exit_m2568505102, Application_get_isPlaying_m987993960, Application_get_isEditor_m1279348309, Application_get_platform_m2918632856, Application_CallLogCallback_m419361836, LogCallback__ctor_m286543475, LogCallback_Invoke_m1886455446, LogCallback_BeginInvoke_m1640350401, LogCallback_EndInvoke_m2883514883, AssemblyIsEditorAssembly__ctor_m582741130, AssetBundle_LoadAsset_m3749681325, AssetBundle_LoadAsset_Internal_m1258146911, AssetBundle_LoadAssetWithSubAssets_Internal_m1442956208, AssetBundleCreateRequest__ctor_m109192972, AssetBundleCreateRequest_get_assetBundle_m198975995, AssetBundleCreateRequest_DisableCompatibilityChecks_m616322731, AssetBundleRequest__ctor_m1736261360, AssetBundleRequest_get_asset_m1874521436, AssetBundleRequest_get_allAssets_m2335877586, AsyncOperation__ctor_m162101250, AsyncOperation_InternalDestroy_m838183325, AsyncOperation_Finalize_m1717604640, AsyncOperation_get_isDone_m2747591837, AsyncOperation_get_progress_m2178550628, AsyncOperation_get_priority_m1711502735, AsyncOperation_set_priority_m4201963860, AsyncOperation_get_allowSceneActivation_m4131883466, AsyncOperation_set_allowSceneActivation_m2093104207, AttributeHelperEngine__cctor_m2686080064, AttributeHelperEngine_GetParentTypeDisallowingMultipleInclusion_m799857845, AttributeHelperEngine_GetRequiredComponents_m2666115467, AttributeHelperEngine_CheckIsEditorScript_m2105533310, AudioClip_InvokePCMReaderCallback_Internal_m963695910, AudioClip_InvokePCMSetPositionCallback_Internal_m194702160, PCMReaderCallback__ctor_m2350128290, PCMReaderCallback_Invoke_m2982892301, PCMReaderCallback_BeginInvoke_m3711541228, PCMReaderCallback_EndInvoke_m1134768050, PCMSetPositionCallback__ctor_m2986500852, PCMSetPositionCallback_Invoke_m1757186207, PCMSetPositionCallback_BeginInvoke_m3959339032, PCMSetPositionCallback_EndInvoke_m239431428, AudioSettings_InvokeOnAudioConfigurationChanged_m1851666322, AudioConfigurationChangeHandler__ctor_m2273531181, AudioConfigurationChangeHandler_Invoke_m3047533822, AudioConfigurationChangeHandler_BeginInvoke_m194625699, AudioConfigurationChangeHandler_EndInvoke_m218260925, Behaviour__ctor_m1624944828, Behaviour_get_enabled_m1239363704, Behaviour_set_enabled_m2046806933, Behaviour_get_isActiveAndEnabled_m210167461, BitStream__ctor_m922403980, BitStream_Serializeb_m1472011233, BitStream_Serializec_m1377214154, BitStream_Serializes_m1382809078, BitStream_Serializei_m2193239290, BitStream_Serializef_m145870244, BitStream_Serializeq_m2989370589, BitStream_INTERNAL_CALL_Serializeq_m999142740, BitStream_Serializev_m2820325190, BitStream_INTERNAL_CALL_Serializev_m2004861039, BitStream_Serializen_m3655149335, BitStream_INTERNAL_CALL_Serializen_m4031551296, BitStream_Serialize_m2001881067, BitStream_Serialize_m2728753561, BitStream_Serialize_m4204437271, BitStream_Serialize_m4204493009, BitStream_Serialize_m1473984011, BitStream_Serialize_m518836656, BitStream_Serialize_m4132505111, BitStream_Serialize_m1228905660, BitStream_Serialize_m981417501, BitStream_Serialize_m3209712194, BitStream_Serialize_m4247024188, BitStream_Serialize_m3563231771, BitStream_get_isReading_m3929869641, BitStream_get_isWriting_m3632391065, BitStream_Serialize_m2763015060, Bounds__ctor_m4160293652, Bounds_GetHashCode_m3067388679, Bounds_Equals_m2517451939, Bounds_get_center_m4084610404, Bounds_set_center_m2605643707, Bounds_get_size_m3666348432, Bounds_set_size_m4109809039, Bounds_get_extents_m2111648188, Bounds_set_extents_m2603836823, Bounds_get_min_m2329472069, Bounds_get_max_m2329243351, Bounds_SetMinMax_m2186020994, Bounds_Encapsulate_m3624685234, Bounds_ToString_m1795228795, Bounds_op_Equality_m2855966622, Bounds_op_Inequality_m4292292377, Camera_get_nearClipPlane_m4074655061, Camera_get_farClipPlane_m388706726, Camera_get_depth_m3642810036, Camera_get_cullingMask_m1045975289, Camera_get_eventMask_m3669132771, Camera_get_pixelRect_m936851539, Camera_INTERNAL_get_pixelRect_m1853722860, Camera_get_targetTexture_m1468336738, Camera_get_clearFlags_m192466552, Camera_ScreenToViewportPoint_m3727203754, Camera_INTERNAL_CALL_ScreenToViewportPoint_m3712526702, Camera_ScreenPointToRay_m1733083890, Camera_INTERNAL_CALL_ScreenPointToRay_m371614468, Camera_get_main_m671815697, Camera_get_allCamerasCount_m3993434431, Camera_GetAllCameras_m3771867787, Camera_FireOnPreCull_m4184591338, Camera_FireOnPreRender_m2754549070, Camera_FireOnPostRender_m865551979, Camera_RaycastTry_m569221064, Camera_INTERNAL_CALL_RaycastTry_m2819346616, Camera_RaycastTry2D_m3256311322, Camera_INTERNAL_CALL_RaycastTry2D_m2796313289, CameraCallback__ctor_m3976281469, CameraCallback_Invoke_m3757410555, CameraCallback_BeginInvoke_m3719545510, CameraCallback_EndInvoke_m534836749, Canvas_add_willRenderCanvases_m716439881, Canvas_remove_willRenderCanvases_m158291336, Canvas_get_renderMode_m3669121200, Canvas_get_isRootCanvas_m4030632706, Canvas_get_worldCamera_m2621449230, Canvas_get_scaleFactor_m1187077271, Canvas_set_scaleFactor_m2206436828, Canvas_get_referencePixelsPerUnit_m3759589197, Canvas_set_referencePixelsPerUnit_m1910706966, Canvas_get_pixelPerfect_m2847994693, Canvas_get_renderOrder_m2295969794, Canvas_get_overrideSorting_m3812884636, Canvas_set_overrideSorting_m1850487749, Canvas_get_sortingOrder_m1274160674, Canvas_set_sortingOrder_m1522807655, Canvas_get_sortingLayerID_m3425838272, Canvas_set_sortingLayerID_m2317502469, Canvas_GetDefaultCanvasMaterial_m1655363178, Canvas_SendWillRenderCanvases_m1768133093, Canvas_ForceUpdateCanvases_m1970133101, WillRenderCanvases__ctor_m1509285774, WillRenderCanvases_Invoke_m4113031528, WillRenderCanvases_BeginInvoke_m205611811, WillRenderCanvases_EndInvoke_m2320713886, CanvasGroup_get_alpha_m2646612977, CanvasGroup_set_alpha_m2140801370, CanvasGroup_get_interactable_m2411844645, CanvasGroup_get_blocksRaycasts_m1777916261, CanvasGroup_get_ignoreParentGroups_m1831887525, CanvasGroup_IsRaycastLocationValid_m3946913220, CanvasRenderer_SetColor_m3198078515, CanvasRenderer_INTERNAL_CALL_SetColor_m2907146764, CanvasRenderer_GetColor_m3075393702, CanvasRenderer_INTERNAL_CALL_GetColor_m3176368896, CanvasRenderer_EnableRectClipping_m896218272, CanvasRenderer_INTERNAL_CALL_EnableRectClipping_m105013257, CanvasRenderer_DisableRectClipping_m2654388030, CanvasRenderer_set_hasPopInstruction_m2112255713, CanvasRenderer_get_materialCount_m311942031, CanvasRenderer_set_materialCount_m1694897644, CanvasRenderer_SetMaterial_m355382012, CanvasRenderer_SetMaterial_m1603188579, CanvasRenderer_set_popMaterialCount_m589784503, CanvasRenderer_SetPopMaterial_m1315408685, CanvasRenderer_SetTexture_m137327939, CanvasRenderer_SetMesh_m1150548475, CanvasRenderer_Clear_m1606508093, CanvasRenderer_SplitUIVertexStreams_m4126093916, CanvasRenderer_SplitUIVertexStreamsInternal_m987675768, CanvasRenderer_SplitIndiciesStreamsInternal_m269466040, CanvasRenderer_CreateUIVertexStream_m2702356137, CanvasRenderer_CreateUIVertexStreamInternal_m997370835, CanvasRenderer_AddUIVertexStream_m1865056747, CanvasRenderer_get_cull_m3343855795, CanvasRenderer_set_cull_m3433952120, CanvasRenderer_get_absoluteDepth_m1613567475, CanvasRenderer_get_hasMoved_m1392755130, Collider_get_attachedRigidbody_m2821754842, Collider2D_get_attachedRigidbody_m2908627162, Collision__ctor_m183727591, Collision_get_relativeVelocity_m1067992885, Collision_get_rigidbody_m1973745126, Collision_get_collider_m1325344374, Collision_get_transform_m3247945030, Collision_get_gameObject_m4245316464, Collision_get_contacts_m658316947, Collision_GetEnumerator_m218695993, Collision_get_impulse_m2182857643, Collision_get_impactForceSum_m3741050290, Collision_get_frictionForceSum_m3009900454, Collision_get_other_m541712697, Collision2D__ctor_m3298468565, Collision2D_get_enabled_m3761113681, Collision2D_get_rigidbody_m4259461250, Collision2D_get_collider_m4116040666, Collision2D_get_transform_m2182628532, Collision2D_get_gameObject_m718845954, Collision2D_get_contacts_m4248754423, Collision2D_get_relativeVelocity_m2960747782, Color__ctor_m2252924356, Color__ctor_m103496991, Color_ToString_m2277845527, Color_GetHashCode_m170503301, Color_Equals_m3016668205, Color_Lerp_m3494628845, Color_get_red_m4288945411, Color_get_white_m3038282331, Color_get_black_m1687201969, Color_get_clear_m2578346879, Color_op_Multiply_m204757678, Color_op_Implicit_m2638307542, Color32__ctor_m576906339, Color32_ToString_m909782902, Color32_op_Implicit_m3684884838, Color32_op_Implicit_m358459656, Component__ctor_m4238603388, Component_get_transform_m4257140443, Component_get_gameObject_m1170635899, Component_GetComponent_m936021879, Component_GetComponentFastPath_m1455568887, Component_GetComponent_m840247168, Component_GetComponentInChildren_m680239315, Component_GetComponentInChildren_m1899663946, Component_GetComponentsInChildren_m1419556996, Component_GetComponentsInChildren_m2446525049, Component_GetComponentInParent_m1953645192, Component_GetComponentsInParent_m345477753, Component_GetComponentsInParent_m608460772, Component_GetComponents_m2975031400, Component_GetComponentsForListInternal_m814665735, Component_GetComponents_m3426812285, Component_get_tag_m217485006, Component_set_tag_m3240989163, Component_CompareTag_m305486283, Component_SendMessageUpwards_m2772130661, Component_SendMessageUpwards_m2473191947, Component_SendMessageUpwards_m767712765, Component_SendMessageUpwards_m707848499, Component_SendMessage_m1163914169, Component_SendMessage_m904598583, Component_SendMessage_m2359133481, Component_SendMessage_m1912331399, Component_BroadcastMessage_m3961995854, Component_BroadcastMessage_m3546905666, Component_BroadcastMessage_m2857110644, Component_BroadcastMessage_m1985948636, ControllerColliderHit__ctor_m3119252854, ControllerColliderHit_get_controller_m4144115758, ControllerColliderHit_get_collider_m1024441863, ControllerColliderHit_get_rigidbody_m2091369205, ControllerColliderHit_get_gameObject_m3516749633, ControllerColliderHit_get_transform_m1182304469, ControllerColliderHit_get_point_m1436351445, ControllerColliderHit_get_normal_m2642806628, ControllerColliderHit_get_moveDirection_m3645766003, ControllerColliderHit_get_moveLength_m3314200770, ControllerColliderHit_get_push_m2385571563, ControllerColliderHit_set_push_m1358618172, Coroutine__ctor_m3143611649, Coroutine_ReleaseCoroutine_m3084231540, Coroutine_Finalize_m3970219969, CullingGroup_Finalize_m1779710340, CullingGroup_Dispose_m3554617051, CullingGroup_SendEvents_m1355834984, CullingGroup_FinalizerFailure_m4240538940, StateChanged__ctor_m3267025420, StateChanged_Invoke_m3174530616, StateChanged_BeginInvoke_m163021837, StateChanged_EndInvoke_m4182061596, Debug__cctor_m37515655, Debug_get_logger_m275693158, Debug_Log_m1731103628, Debug_LogError_m4127342994, Debug_LogError_m214246398, Debug_LogException_m248970745, Debug_LogException_m2264672311, Debug_LogWarning_m3123317694, Debug_LogWarning_m4097176146, DebugLogHandler__ctor_m1521597024, DebugLogHandler_Internal_Log_m3731237167, DebugLogHandler_Internal_LogException_m1007136309, DebugLogHandler_LogFormat_m1190453926, DebugLogHandler_LogException_m3623531313, DisallowMultipleComponent__ctor_m3170514567, Display__ctor_m923501527, Display__ctor_m3179075037, Display__cctor_m2376647350, Display_RecreateDisplayList_m581883884, Display_FireDisplaysUpdated_m3581134697, DisplaysUpdatedDelegate__ctor_m3468699627, DisplaysUpdatedDelegate_Invoke_m3958989829, DisplaysUpdatedDelegate_BeginInvoke_m3264685798, DisplaysUpdatedDelegate_EndInvoke_m3466741627, DrivenRectTransformTracker_Add_m3461523141, DrivenRectTransformTracker_Clear_m309315364, Event__ctor_m1609448063, Event__ctor_m66398544, Event_Finalize_m2449826179, Event_get_mousePosition_m3610425949, Event_get_current_m238587645, Event_Internal_MakeMasterEventCurrent_m213199903, Event_get_isKey_m645126607, Event_get_isMouse_m3551276757, Event_GetHashCode_m2341647470, Event_Equals_m2374615830, Event_ToString_m3661517518, Event_Init_m3525277126, Event_Cleanup_m3160122945, Event_get_rawType_m696564524, Event_get_type_m2209939250, Event_Internal_GetMousePosition_m2054214537, Event_get_modifiers_m4020990886, Event_get_character_m3663172667, Event_get_commandName_m1197792621, Event_get_keyCode_m1820698462, Event_Internal_SetNativeEvent_m930902932, Event_set_displayIndex_m4130090435, Event_PopEvent_m2790075015, ArgumentCache__ctor_m4004594141, ArgumentCache_get_unityObjectArgument_m3221396682, ArgumentCache_get_unityObjectArgumentAssemblyTypeName_m2706134059, ArgumentCache_get_intArgument_m688472510, ArgumentCache_get_floatArgument_m457274527, ArgumentCache_get_stringArgument_m621059457, ArgumentCache_get_boolArgument_m948935837, ArgumentCache_TidyAssemblyTypeName_m705559900, ArgumentCache_OnBeforeSerialize_m2323221949, ArgumentCache_OnAfterDeserialize_m3764330697, BaseInvokableCall__ctor_m2839815662, BaseInvokableCall__ctor_m1692884045, BaseInvokableCall_AllowInvoke_m2941661095, InvokableCall__ctor_m1927467228, InvokableCall__ctor_m3567423952, InvokableCall_Invoke_m1513455731, InvokableCall_Find_m2076119333, InvokableCallList__ctor_m2413334847, InvokableCallList_AddPersistentInvokableCall_m4220625340, InvokableCallList_AddListener_m1356872764, InvokableCallList_RemoveListener_m855004700, InvokableCallList_ClearPersistent_m1690187553, InvokableCallList_Invoke_m575840373, PersistentCall__ctor_m3363339247, PersistentCall_get_target_m3400889750, PersistentCall_get_methodName_m3021973351, PersistentCall_get_mode_m1522877562, PersistentCall_get_arguments_m1871980514, PersistentCall_IsValid_m1010437221, PersistentCall_GetRuntimeCall_m3912860610, PersistentCall_GetObjectCall_m1043326447, PersistentCallGroup__ctor_m3119615256, PersistentCallGroup_Initialize_m3484159567, UnityAction__ctor_m4130179243, UnityAction_Invoke_m1979593925, UnityAction_BeginInvoke_m3541271198, UnityAction_EndInvoke_m794691643, UnityEvent__ctor_m1715209183, UnityEvent_AddListener_m4099140869, UnityEvent_FindMethod_Impl_m2897220818, UnityEvent_GetDelegate_m2043983920, UnityEvent_GetDelegate_m1012258596, UnityEvent_Invoke_m2672830205, UnityEventBase__ctor_m199506446, UnityEventBase_UnityEngine_ISerializationCallbackReceiver_OnBeforeSerialize_m1699382396, UnityEventBase_UnityEngine_ISerializationCallbackReceiver_OnAfterDeserialize_m1605173738, UnityEventBase_FindMethod_m1166071979, UnityEventBase_FindMethod_m113598831, UnityEventBase_DirtyPersistentCalls_m1636785090, UnityEventBase_RebuildPersistentCallsIfNeeded_m4147202091, UnityEventBase_AddCall_m1246572149, UnityEventBase_RemoveListener_m276725997, UnityEventBase_Invoke_m3681078084, UnityEventBase_ToString_m249191135, UnityEventBase_GetValidMethodInfo_m2325301202, ExecuteInEditMode__ctor_m1394231890, Playable__ctor_m2241556995, Playable__ctor_m3752126010, Playable_Dispose_m2747727607, Playable_GetUniqueIDInternal_m1016415712, Playable_Connect_m622693985, Playable_Connect_m1578187905, Playable_Disconnect_m3811503323, Playable_ReleaseEnginePlayable_m2094169144, Playable_InstantiateEnginePlayable_m3931021595, Playable_GenerateUniqueId_m3980506242, Playable_SetInputWeightInternal_m3751861498, Playable_GetInputWeightInternal_m2277506695, Playable_get_time_m4261299130, Playable_set_time_m4095539287, Playable_get_state_m3392280896, Playable_set_state_m2851443923, Playable_ConnectInternal_m3467855684, Playable_DisconnectInternal_m216904862, Playable_GetInput_m777009268, Playable_GetInputs_m1899129588, Playable_get_inputCount_m3038792623, Playable_get_outputCount_m2666149542, Playable_ClearInputs_m4141811767, Playable_GetOutput_m1666786747, Playable_GetOutputs_m3506315017, Playable_GetInputsInternal_m2169096151, Playable_GetOutputsInternal_m891872506, Playable_Finalize_m175426431, Playable_Dispose_m2255939968, Playable_Equals_m1149042830, Playable_GetHashCode_m3165087730, Playable_CompareIntPtr_m2113594311, Playable_IsNativePlayableAlive_m1365031800, Playable_CheckPlayableValidity_m2318405566, Playable_CheckInputBounds_m1883207375, Playable_CheckInputBounds_m3596125390, Playable_GetInputWeight_m837530218, Playable_SetInputWeight_m2698917277, Playable_GetInputs_m1527871507, Playable_GetOutputs_m3459436598, Playable_PrepareFrame_m497491591, Playable_ProcessFrame_m2039333501, Playable_OnSetTime_m3177236154, Playable_OnSetPlayState_m3539986029, Playable_op_Equality_m3091846835, Playable_op_Inequality_m3181167342, Playable_op_Implicit_m2513159357, Font_add_textureRebuilt_m3323945916, Font_remove_textureRebuilt_m2804643593, Font_get_material_m2407307367, Font_HasCharacter_m2480770466, Font_InvokeTextureRebuilt_Internal_m1357223658, Font_get_dynamic_m3880144684, Font_get_fontSize_m3025810271, FontTextureRebuildCallback__ctor_m2909762077, FontTextureRebuildCallback_Invoke_m3507488951, FontTextureRebuildCallback_BeginInvoke_m2984345076, FontTextureRebuildCallback_EndInvoke_m2078440109, GameObject__ctor_m3920833606, GameObject_GetComponent_m1004814461, GameObject_GetComponentFastPath_m2905716663, GameObject_GetComponentInChildren_m1490154500, GameObject_GetComponentInParent_m434474382, GameObject_GetComponents_m1126578334, GameObject_GetComponentsInChildren_m305836803, GameObject_GetComponentsInParent_m521317102, GameObject_GetComponentsInternal_m181453881, GameObject_get_transform_m1278640159, GameObject_get_layer_m1648550306, GameObject_set_layer_m1872241535, GameObject_SetActive_m3538205401, GameObject_get_activeSelf_m3858025161, GameObject_get_activeInHierarchy_m612450965, GameObject_get_tag_m211612200, GameObject_set_tag_m859036203, GameObject_CompareTag_m3153977471, GameObject_SendMessage_m423373689, GameObject_Internal_AddComponentWithType_m2266369934, GameObject_AddComponent_m2208780168, GameObject_Internal_CreateGameObject_m2521325981, Gradient__ctor_m3068495933, Gradient_Init_m2544372343, Gradient_Cleanup_m850820223, Gradient_Finalize_m3875885829, GUI__cctor_m1345698031, GUI_set_nextScrollStepTime_m3820512796, GUI_set_skin_m1213959601, GUI_get_skin_m4001454842, GUI_DoSetSkin_m800823745, GUI_CallWindowDelegate_m2260338804, GUI_set_changed_m727947722, ScrollViewState__ctor_m739544590, WindowFunction__ctor_m732638321, WindowFunction_Invoke_m2798584028, WindowFunction_BeginInvoke_m526788181, WindowFunction_EndInvoke_m203456257, GUIContent__ctor_m923375087, GUIContent__ctor_m174155123, GUIContent__cctor_m2372727710, GUIContent_Temp_m2857440895, GUIContent_Temp_m3826417963, GUIContent_ClearStaticCache_m2388858588, GUILayer_HitTest_m3356120918, GUILayer_INTERNAL_CALL_HitTest_m4210766818, GUILayout_Width_m2259621411, GUILayout_Height_m3774802884, GUILayoutEntry__ctor_m3586081151, GUILayoutEntry__cctor_m4107715149, GUILayoutEntry_get_style_m3507897988, GUILayoutEntry_set_style_m706118245, GUILayoutEntry_get_margin_m3705107036, GUILayoutEntry_CalcWidth_m3370167343, GUILayoutEntry_CalcHeight_m1899786880, GUILayoutEntry_SetHorizontal_m3810336940, GUILayoutEntry_SetVertical_m880890586, GUILayoutEntry_ApplyStyleSettings_m937804029, GUILayoutEntry_ApplyOptions_m2425801465, GUILayoutEntry_ToString_m4021956595, GUILayoutGroup__ctor_m3393996275, GUILayoutGroup_get_margin_m1931560361, GUILayoutGroup_ApplyOptions_m743820812, GUILayoutGroup_ApplyStyleSettings_m1024249546, GUILayoutGroup_ResetCursor_m982464342, GUILayoutGroup_CalcWidth_m1234746178, GUILayoutGroup_SetHorizontal_m985132857, GUILayoutGroup_CalcHeight_m126240205, GUILayoutGroup_SetVertical_m967336103, GUILayoutGroup_ToString_m2567598720, GUILayoutOption__ctor_m573459815, GUILayoutUtility__cctor_m1548085895, GUILayoutUtility_SelectIDList_m801008209, GUILayoutUtility_Begin_m2012081982, GUILayoutUtility_BeginWindow_m4017651538, GUILayoutUtility_Layout_m1143185416, GUILayoutUtility_LayoutFromEditorWindow_m3347777775, GUILayoutUtility_LayoutFreeGroup_m2250873692, GUILayoutUtility_LayoutSingleGroup_m1841651392, GUILayoutUtility_get_spaceStyle_m3628948340, GUILayoutUtility_Internal_GetWindowRect_m1168223211, GUILayoutUtility_INTERNAL_CALL_Internal_GetWindowRect_m1468033111, GUILayoutUtility_Internal_MoveWindow_m2191818611, GUILayoutUtility_INTERNAL_CALL_Internal_MoveWindow_m115257690, LayoutCache__ctor_m3196944573, GUIScrollGroup__ctor_m2652149846, GUIScrollGroup_CalcWidth_m2187011109, GUIScrollGroup_SetHorizontal_m3329305078, GUIScrollGroup_CalcHeight_m3876649290, GUIScrollGroup_SetVertical_m3472565924, GUISettings__ctor_m1563013787, GUISettings_get_cursorColor_m3617656164, GUISettings_get_cursorFlashSpeed_m3510903059, GUISettings_get_selectionColor_m3945610946, GUISettings_Internal_GetCursorFlashSpeed_m2094683006, GUISkin__ctor_m3819836417, GUISkin_OnEnable_m3659769829, GUISkin_get_font_m4064925714, GUISkin_set_font_m2298219977, GUISkin_get_box_m3284280323, GUISkin_set_box_m35439328, GUISkin_get_label_m3553254700, GUISkin_set_label_m4062710537, GUISkin_get_textField_m3831281733, GUISkin_set_textField_m2041526946, GUISkin_get_textArea_m4283710532, GUISkin_set_textArea_m1255688077, GUISkin_get_button_m3628017756, GUISkin_set_button_m2794546469, GUISkin_get_toggle_m3519495166, GUISkin_set_toggle_m3743241159, GUISkin_get_window_m3620644250, GUISkin_set_window_m93050723, GUISkin_get_horizontalSlider_m1556961103, GUISkin_set_horizontalSlider_m2400811288, GUISkin_get_horizontalSliderThumb_m561455017, GUISkin_set_horizontalSliderThumb_m3534756102, GUISkin_get_verticalSlider_m3077048033, GUISkin_set_verticalSlider_m2007128362, GUISkin_get_verticalSliderThumb_m4032125783, GUISkin_set_verticalSliderThumb_m1533703220, GUISkin_get_horizontalScrollbar_m4254994650, GUISkin_set_horizontalScrollbar_m2358004279, GUISkin_get_horizontalScrollbarThumb_m543401214, GUISkin_set_horizontalScrollbarThumb_m1178477383, GUISkin_get_horizontalScrollbarLeftButton_m1723095443, GUISkin_set_horizontalScrollbarLeftButton_m1050046448, GUISkin_get_horizontalScrollbarRightButton_m3218269270, GUISkin_set_horizontalScrollbarRightButton_m75365919, GUISkin_get_verticalScrollbar_m3029557256, GUISkin_set_verticalScrollbar_m3705641189, GUISkin_get_verticalScrollbarThumb_m2548474512, GUISkin_set_verticalScrollbarThumb_m1958138201, GUISkin_get_verticalScrollbarUpButton_m2399801237, GUISkin_set_verticalScrollbarUpButton_m3911333362, GUISkin_get_verticalScrollbarDownButton_m1448263900, GUISkin_set_verticalScrollbarDownButton_m138386233, GUISkin_get_scrollView_m3339613116, GUISkin_set_scrollView_m4285810053, GUISkin_get_customStyles_m816658303, GUISkin_set_customStyles_m1092778308, GUISkin_get_settings_m3861471971, GUISkin_get_error_m2137471808, GUISkin_Apply_m3870939405, GUISkin_BuildStyleCache_m504236350, GUISkin_GetStyle_m2474694726, GUISkin_FindStyle_m2067600169, GUISkin_MakeCurrent_m174297994, GUISkin_GetEnumerator_m1290986451, SkinChangedDelegate__ctor_m1472037998, SkinChangedDelegate_Invoke_m3141787208, SkinChangedDelegate_BeginInvoke_m1122457923, SkinChangedDelegate_EndInvoke_m3094371710, GUIStyle__ctor_m478034167, GUIStyle__ctor_m584655914, GUIStyle__cctor_m1452061078, GUIStyle_Finalize_m3401789451, GUIStyle_InternalOnAfterDeserialize_m1012732492, GUIStyle_get_normal_m42729964, GUIStyle_set_normal_m3590268413, GUIStyle_get_hover_m3685402873, GUIStyle_set_hover_m660294266, GUIStyle_get_active_m1150072907, GUIStyle_set_active_m79497342, GUIStyle_get_onNormal_m3672490987, GUIStyle_set_onNormal_m3860399646, GUIStyle_get_onHover_m3525397274, GUIStyle_set_onHover_m946102841, GUIStyle_get_onActive_m484866634, GUIStyle_set_onActive_m349628575, GUIStyle_get_focused_m2717215092, GUIStyle_set_focused_m1026899231, GUIStyle_get_onFocused_m3570657109, GUIStyle_set_onFocused_m811032862, GUIStyle_get_border_m1826068707, GUIStyle_set_border_m3254356648, GUIStyle_get_margin_m4279849445, GUIStyle_set_margin_m698201642, GUIStyle_get_padding_m3072941276, GUIStyle_set_padding_m458170651, GUIStyle_get_overflow_m2862114233, GUIStyle_set_overflow_m3029326398, GUIStyle_get_clipOffset_m3134687732, GUIStyle_set_clipOffset_m2780638285, GUIStyle_get_font_m1061814606, GUIStyle_set_font_m3587533075, GUIStyle_get_lineHeight_m3977255453, GUIStyle_Internal_Draw_m3671619263, GUIStyle_Draw_m2853558582, GUIStyle_Draw_m645175538, GUIStyle_Draw_m1301423966, GUIStyle_Draw_m860139579, GUIStyle_Draw_m2994577084, GUIStyle_Draw_m489809217, GUIStyle_DrawCursor_m4169664613, GUIStyle_DrawWithTextSelection_m469195656, GUIStyle_DrawWithTextSelection_m984171349, GUIStyle_get_none_m2767659632, GUIStyle_GetCursorPixelPosition_m296157110, GUIStyle_GetCursorStringIndex_m3223359742, GUIStyle_GetNumCharactersThatFitWithinWidth_m3286030319, GUIStyle_CalcSize_m2299809257, GUIStyle_CalcSizeWithConstraints_m3659418291, GUIStyle_CalcScreenSize_m1487928496, GUIStyle_CalcHeight_m3565424293, GUIStyle_get_isHeightDependantOnWidth_m1959928889, GUIStyle_CalcMinMaxWidth_m421008639, GUIStyle_ToString_m2491778876, GUIStyle_Init_m3292093053, GUIStyle_InitCopy_m3063430789, GUIStyle_Cleanup_m2498094777, GUIStyle_get_name_m4046186628, GUIStyle_set_name_m4125925261, GUIStyle_GetStyleStatePtr_m2550872619, GUIStyle_AssignStyleState_m4030196091, GUIStyle_GetRectOffsetPtr_m1931607252, GUIStyle_AssignRectOffset_m519705394, GUIStyle_get_imagePosition_m3876152522, GUIStyle_set_imagePosition_m1689669769, GUIStyle_get_alignment_m1533628953, GUIStyle_set_alignment_m4252900834, GUIStyle_get_wordWrap_m3830782768, GUIStyle_set_wordWrap_m3800572853, GUIStyle_get_clipping_m2044798529, GUIStyle_set_clipping_m771351942, GUIStyle_get_contentOffset_m2092220605, GUIStyle_set_contentOffset_m3385864054, GUIStyle_INTERNAL_get_contentOffset_m2078390432, GUIStyle_INTERNAL_set_contentOffset_m3891089324, GUIStyle_get_Internal_clipOffset_m4123163318, GUIStyle_set_Internal_clipOffset_m411599389, GUIStyle_INTERNAL_get_Internal_clipOffset_m3417369433, GUIStyle_INTERNAL_set_Internal_clipOffset_m188352869, GUIStyle_get_fixedWidth_m3249098964, GUIStyle_set_fixedWidth_m2486234607, GUIStyle_get_fixedHeight_m2441634427, GUIStyle_set_fixedHeight_m2209877368, GUIStyle_get_stretchWidth_m38609341, GUIStyle_set_stretchWidth_m829487234, GUIStyle_get_stretchHeight_m1700703922, GUIStyle_set_stretchHeight_m703419995, GUIStyle_Internal_GetLineHeight_m4224806028, GUIStyle_SetFontInternal_m2859258365, GUIStyle_GetFontInternalDuringLoadingThread_m1458608761, GUIStyle_GetFontInternal_m2928804526, GUIStyle_get_fontSize_m2938276678, GUIStyle_set_fontSize_m3621764235, GUIStyle_get_fontStyle_m3314019014, GUIStyle_set_fontStyle_m3298083597, GUIStyle_get_richText_m1558667173, GUIStyle_set_richText_m1293612906, GUIStyle_Internal_Draw_m3365779187, GUIStyle_Internal_Draw2_m2706374407, GUIStyle_INTERNAL_CALL_Internal_Draw2_m1512749466, GUIStyle_Internal_DrawPrefixLabel_m1343381847, GUIStyle_INTERNAL_CALL_Internal_DrawPrefixLabel_m3654921866, GUIStyle_Internal_GetCursorFlashOffset_m3106442082, GUIStyle_Internal_DrawCursor_m496261262, GUIStyle_INTERNAL_CALL_Internal_DrawCursor_m330118499, GUIStyle_Internal_DrawWithTextSelection_m538670273, GUIStyle_SetDefaultFont_m1041826325, GUIStyle_Internal_GetCursorPixelPosition_m336331745, GUIStyle_INTERNAL_CALL_Internal_GetCursorPixelPosition_m2602567800, GUIStyle_Internal_GetCursorStringIndex_m1275963970, GUIStyle_INTERNAL_CALL_Internal_GetCursorStringIndex_m3457179887, GUIStyle_Internal_GetNumCharactersThatFitWithinWidth_m470425907, GUIStyle_Internal_CalcSize_m1389308622, GUIStyle_Internal_CalcSizeWithConstraints_m484790978, GUIStyle_INTERNAL_CALL_Internal_CalcSizeWithConstraints_m2048982689, GUIStyle_Internal_CalcHeight_m3448302985, GUIStyle_Internal_CalcMinMaxWidth_m1670371175, GUIStyle_op_Implicit_m169215436, GUIStyleState__ctor_m2789776190, GUIStyleState__ctor_m1478971583, GUIStyleState_ProduceGUIStyleStateFromDeserialization_m243465942, GUIStyleState_GetGUIStyleState_m511242685, GUIStyleState_Finalize_m2707805284, GUIStyleState_Init_m872813398, GUIStyleState_Cleanup_m3584086848, GUIStyleState_GetBackgroundInternalFromDeserialization_m2608056493, GUIStyleState_GetBackgroundInternal_m2898492250, GUIStyleState_set_textColor_m3058467057, GUIStyleState_INTERNAL_set_textColor_m2711899875, GUITargetAttribute_GetGUITargetAttrValue_m1884776752, GUIUtility__cctor_m2712534225, GUIUtility_get_pixelsPerPoint_m2351352349, GUIUtility_get_hotControl_m4135893409, GUIUtility_GetDefaultSkin_m3151786562, GUIUtility_BeginGUI_m1799121707, GUIUtility_EndGUI_m1069008217, GUIUtility_EndGUIFromException_m1739426121, GUIUtility_CheckOnGUI_m640002012, GUIUtility_Internal_GetPixelsPerPoint_m4247925832, GUIUtility_Internal_GetHotControl_m1758149964, GUIUtility_get_keyboardControl_m1277835431, GUIUtility_get_systemCopyBuffer_m1467578008, GUIUtility_set_systemCopyBuffer_m2088074937, GUIUtility_Internal_GetDefaultSkin_m1795114979, GUIUtility_Internal_ExitGUI_m725832131, GUIUtility_Internal_GetGUIDepth_m2619692036, HostData__ctor_m2522227771, HostData_get_useNat_m4254429010, HostData_set_useNat_m2634285015, HostData_get_gameType_m875859009, HostData_set_gameType_m1771624304, HostData_get_gameName_m681830226, HostData_set_gameName_m938459135, HostData_get_connectedPlayers_m3966863803, HostData_set_connectedPlayers_m3058270080, HostData_get_playerLimit_m2278605994, HostData_set_playerLimit_m957940103, HostData_get_ip_m3205883706, HostData_set_ip_m3644075347, HostData_get_port_m3377460051, HostData_set_port_m2810254104, HostData_get_passwordProtected_m255763581, HostData_set_passwordProtected_m4099253222, HostData_get_comment_m2806883628, HostData_set_comment_m3861418087, HostData_get_guid_m4094499646, HostData_set_guid_m3576769299, HumanBone_get_boneName_m4281149553, HumanBone_set_boneName_m2758161818, HumanBone_get_humanName_m1702517944, HumanBone_set_humanName_m1186126593, IL2CPPStructAlignmentAttribute__ctor_m55581643, Input__cctor_m1327041086, Input_GetAxis_m2027668530, Input_GetAxisRaw_m1900207208, Input_GetButtonDown_m1879002085, Input_GetMouseButton_m4080958081, Input_GetMouseButtonDown_m2031691843, Input_GetMouseButtonUp_m2588144188, Input_get_mousePosition_m4020233228, Input_INTERNAL_get_mousePosition_m4008828427, Input_get_mouseScrollDelta_m3050122505, Input_INTERNAL_get_mouseScrollDelta_m2726147504, Input_get_mousePresent_m3235491246, Input_get_acceleration_m3697865796, Input_INTERNAL_get_acceleration_m3372612331, Input_GetTouch_m2282421092, Input_get_touchCount_m1430909390, Input_get_touchSupported_m634162567, Input_set_imeCompositionMode_m1719849947, Input_get_compositionString_m1541052002, Input_set_compositionCursorPos_m3225375732, Input_INTERNAL_set_compositionCursorPos_m1084763314, DefaultValueAttribute__ctor_m1665393712, DefaultValueAttribute_get_Value_m1575119971, DefaultValueAttribute_Equals_m1990537309, DefaultValueAttribute_GetHashCode_m3284653761, ExcludeFromDocsAttribute__ctor_m623077387, ADBannerView__cctor_m2737897525, ADBannerView_Native_DestroyBanner_m3588853962, ADBannerView_Finalize_m2140033770, ADBannerView_FireBannerWasClicked_m3637402988, ADBannerView_FireBannerWasLoaded_m3273736514, ADBannerView_FireBannerFailedToLoad_m1790847436, BannerFailedToLoadDelegate__ctor_m2629571602, BannerFailedToLoadDelegate_Invoke_m3262427884, BannerFailedToLoadDelegate_BeginInvoke_m1073531935, BannerFailedToLoadDelegate_EndInvoke_m3595591458, BannerWasClickedDelegate__ctor_m1483041906, BannerWasClickedDelegate_Invoke_m1164690252, BannerWasClickedDelegate_BeginInvoke_m2463719615, BannerWasClickedDelegate_EndInvoke_m2721376130, BannerWasLoadedDelegate__ctor_m74826402, BannerWasLoadedDelegate_Invoke_m3949163900, BannerWasLoadedDelegate_BeginInvoke_m2489699591, BannerWasLoadedDelegate_EndInvoke_m3402094002, ADInterstitialAd__cctor_m1224608307, ADInterstitialAd_Native_DestroyInterstitial_m1874896972, ADInterstitialAd_Finalize_m3863008616, ADInterstitialAd_FireInterstitialWasLoaded_m1452242756, ADInterstitialAd_FireInterstitialWasViewed_m802485635, InterstitialWasLoadedDelegate__ctor_m2439394720, InterstitialWasLoadedDelegate_Invoke_m2428938746, InterstitialWasLoadedDelegate_BeginInvoke_m1425628105, InterstitialWasLoadedDelegate_EndInvoke_m2339731376, InterstitialWasViewedDelegate__ctor_m2752017695, InterstitialWasViewedDelegate_Invoke_m3038628409, InterstitialWasViewedDelegate_BeginInvoke_m3141305002, InterstitialWasViewedDelegate_EndInvoke_m971591343, LocalNotification__ctor_m2361357092, LocalNotification__cctor_m4000496905, LocalNotification_GetFireDate_m3226659871, LocalNotification_SetFireDate_m1553477818, LocalNotification_get_fireDate_m2185968852, LocalNotification_set_fireDate_m3705017239, LocalNotification_get_timeZone_m2940284639, LocalNotification_set_timeZone_m2670784108, LocalNotification_get_repeatInterval_m2938542676, LocalNotification_set_repeatInterval_m2284412131, LocalNotification_get_repeatCalendar_m916891826, LocalNotification_set_repeatCalendar_m599340503, LocalNotification_get_alertBody_m3216658234, LocalNotification_set_alertBody_m3334455103, LocalNotification_get_alertAction_m4064597262, LocalNotification_set_alertAction_m860676139, LocalNotification_get_hasAction_m3802604239, LocalNotification_set_hasAction_m3331895596, LocalNotification_get_alertLaunchImage_m3685756786, LocalNotification_set_alertLaunchImage_m2289744825, LocalNotification_get_applicationIconBadgeNumber_m598051564, LocalNotification_set_applicationIconBadgeNumber_m4106546993, LocalNotification_get_soundName_m2126669654, LocalNotification_set_soundName_m870364323, LocalNotification_get_defaultSoundName_m2358493375, LocalNotification_get_userInfo_m4128471802, LocalNotification_set_userInfo_m3850714959, LocalNotification_Destroy_m3155596668, LocalNotification_Finalize_m22293182, LocalNotification_InitWrapper_m910277669, RemoteNotification__ctor_m56993883, RemoteNotification_get_alertBody_m3725360779, RemoteNotification_get_hasAction_m2262891258, RemoteNotification_get_applicationIconBadgeNumber_m1135788693, RemoteNotification_get_soundName_m2635372199, RemoteNotification_get_userInfo_m4136631987, RemoteNotification_Destroy_m570710259, RemoteNotification_Finalize_m1495193127, Keyframe__ctor_m2655645489, Keyframe__ctor_m3412708539, Keyframe_get_time_m1367974951, Keyframe_set_time_m2674731900, Keyframe_get_value_m1003136441, Keyframe_set_value_m2735107322, Keyframe_get_inTangent_m2236973672, Keyframe_set_inTangent_m1264152747, Keyframe_get_outTangent_m2520753969, Keyframe_set_outTangent_m4071134898, Keyframe_get_tangentMode_m1245220572, Keyframe_set_tangentMode_m2444824761, LayerMask_op_Implicit_m1595580047, LayerMask_op_Implicit_m2608572187, Logger__ctor_m654679389, Logger_get_logHandler_m2576399569, Logger_set_logHandler_m2661029584, Logger_get_logEnabled_m3803347955, Logger_set_logEnabled_m1919624760, Logger_get_filterLogType_m1512373196, Logger_set_filterLogType_m3244716167, Logger_IsLogTypeAllowed_m3362907658, Logger_GetString_m3033796341, Logger_Log_m3875808634, Logger_Log_m3185878806, Logger_LogFormat_m4050017187, Logger_LogException_m426775790, Material__ctor_m2546967560, Material_get_mainTexture_m1012267054, Material_GetTexture_m1284113328, Material_GetTexture_m3767468771, Material_SetFloat_m981710063, Material_SetFloat_m170145518, Material_SetInt_m2649395040, Material_HasProperty_m2077312757, Material_HasProperty_m190825214, Material_Internal_CreateWithMaterial_m2349411671, Material_EnableKeyword_m3802712984, Material_DisableKeyword_m572736419, Mathf__cctor_m1875403730, Mathf_Sin_m2014639246, Mathf_Cos_m2060147711, Mathf_Sqrt_m3592270478, Mathf_Abs_m3641135540, Mathf_Min_m2322067385, Mathf_Min_m2413438171, Mathf_Max_m3923796455, Mathf_Max_m2911193737, Mathf_Pow_m2793367923, Mathf_Log_m2062790663, Mathf_Ceil_m3793305609, Mathf_Floor_m1715447770, Mathf_Round_m2677810712, Mathf_CeilToInt_m3621832739, Mathf_FloorToInt_m268511322, Mathf_RoundToInt_m3163545820, Mathf_Sign_m4040614993, Mathf_Clamp_m3872743893, Mathf_Clamp_m510460741, Mathf_Clamp01_m2272733930, Mathf_Lerp_m3257777633, Mathf_Approximately_m1395529776, Mathf_SmoothDamp_m779170481, Mathf_Repeat_m3424250200, Mathf_InverseLerp_m152689993, Matrix4x4_get_Item_m2279862332, Matrix4x4_get_Item_m1280478331, Matrix4x4_GetHashCode_m4083477721, Matrix4x4_Equals_m3534208385, Matrix4x4_GetColumn_m786071102, Matrix4x4_MultiplyPoint3x4_m2198174902, Matrix4x4_ToString_m294134723, Mesh__ctor_m2684203808, Mesh_Internal_Create_m3749730360, Mesh_Clear_m1789068674, Mesh_Clear_m90337099, Mesh_get_vertices_m3685486174, Mesh_SetVertices_m701834806, Mesh_SetVerticesInternal_m1274639230, Mesh_get_normals_m3396909641, Mesh_SetNormals_m2039144779, Mesh_SetNormalsInternal_m1710845385, Mesh_get_tangents_m3235865682, Mesh_SetTangents_m2005345740, Mesh_SetTangentsInternal_m763303177, Mesh_get_uv_m558008935, Mesh_get_uv2_m118417421, Mesh_ExtractListData_m2453560898, Mesh_SetUVsInternal_m4014622176, Mesh_SetUVs_m116216925, Mesh_get_colors32_m192356802, Mesh_SetColors_m3313707935, Mesh_SetColors32Internal_m1830241000, Mesh_RecalculateBounds_m3754336742, Mesh_SetTriangles_m456382467, Mesh_SetTrianglesInternal_m2955775213, Mesh_GetIndices_m637494532, MonoBehaviour__ctor_m2022291967, MonoBehaviour_Internal_CancelInvokeAll_m972795186, MonoBehaviour_Internal_IsInvokingAll_m3154030143, MonoBehaviour_Invoke_m2825545578, MonoBehaviour_InvokeRepeating_m1115468640, MonoBehaviour_CancelInvoke_m3230208631, MonoBehaviour_CancelInvoke_m2461959659, MonoBehaviour_IsInvoking_m1460913732, MonoBehaviour_IsInvoking_m3881121150, MonoBehaviour_StartCoroutine_m2135303124, MonoBehaviour_StartCoroutine_Auto_m1831125106, MonoBehaviour_StartCoroutine_m2964903975, MonoBehaviour_StartCoroutine_m2272783641, MonoBehaviour_StopCoroutine_m2790918991, MonoBehaviour_StopCoroutine_m1340700766, MonoBehaviour_StopCoroutine_m1762309278, MonoBehaviour_StopCoroutineViaEnumerator_Auto_m2181342074, MonoBehaviour_StopCoroutine_Auto_m1074098068, MonoBehaviour_StopAllCoroutines_m1437893335, MonoBehaviour_print_m1497342762, MonoBehaviour_get_useGUILayout_m4058409766, MonoBehaviour_set_useGUILayout_m589898551, NetworkMessageInfo_get_timestamp_m3597535726, NetworkMessageInfo_get_sender_m2720861079, NetworkMessageInfo_get_networkView_m221874487, NetworkMessageInfo_NullNetworkView_m516412409, NetworkPlayer__ctor_m978047135, NetworkPlayer_Internal_GetIPAddress_m2705922677, NetworkPlayer_Internal_GetPort_m2646691040, NetworkPlayer_Internal_GetExternalIP_m4147820797, NetworkPlayer_Internal_GetExternalPort_m152642746, NetworkPlayer_Internal_GetLocalIP_m3142644809, NetworkPlayer_Internal_GetLocalPort_m4290647008, NetworkPlayer_Internal_GetPlayerIndex_m1155344837, NetworkPlayer_Internal_GetGUID_m82698821, NetworkPlayer_Internal_GetLocalGUID_m668021995, NetworkPlayer_GetHashCode_m2832997817, NetworkPlayer_Equals_m1380117345, NetworkPlayer_get_ipAddress_m206939407, NetworkPlayer_get_port_m4260923428, NetworkPlayer_get_guid_m1193250345, NetworkPlayer_ToString_m4115863651, NetworkPlayer_get_externalIP_m420672594, NetworkPlayer_get_externalPort_m2392166863, NetworkPlayer_get_unassigned_m865556847, NetworkPlayer_op_Equality_m1190866952, NetworkPlayer_op_Inequality_m3921017795, NetworkView_Find_m2926682619, NetworkView_INTERNAL_CALL_Find_m752431216, NetworkViewID_get_unassigned_m2302461037, NetworkViewID_INTERNAL_get_unassigned_m3953385100, NetworkViewID_Internal_IsMine_m619939661, NetworkViewID_INTERNAL_CALL_Internal_IsMine_m2052798080, NetworkViewID_Internal_GetOwner_m874421061, NetworkViewID_INTERNAL_CALL_Internal_GetOwner_m2405750590, NetworkViewID_Internal_GetString_m679444096, NetworkViewID_INTERNAL_CALL_Internal_GetString_m1523080203, NetworkViewID_Internal_Compare_m2541220858, NetworkViewID_INTERNAL_CALL_Internal_Compare_m1319175441, NetworkViewID_GetHashCode_m2420635706, NetworkViewID_Equals_m2612049122, NetworkViewID_get_isMine_m2754407673, NetworkViewID_get_owner_m576069262, NetworkViewID_ToString_m3783538050, NetworkViewID_op_Equality_m776200489, NetworkViewID_op_Inequality_m4224856356, Object__ctor_m570634126, Object_Internal_CloneSingle_m3129073756, Object_Internal_InstantiateSingle_m3047563925, Object_INTERNAL_CALL_Internal_InstantiateSingle_m1201424140, Object_Destroy_m2260435093, Object_Destroy_m176400816, Object_DestroyImmediate_m1826427014, Object_DestroyImmediate_m349958679, Object_FindObjectsOfType_m975740280, Object_get_name_m3709440845, Object_set_name_m1123518500, Object_DontDestroyOnLoad_m4064482788, Object_get_hideFlags_m1893459363, Object_set_hideFlags_m41317712, Object_DestroyObject_m3324336244, Object_DestroyObject_m3900253135, Object_FindSceneObjectsOfType_m2168852346, Object_FindObjectsOfTypeIncludingAssets_m1276784656, Object_ToString_m2155033093, Object_DoesObjectWithInstanceIDExist_m3762691104, Object_Equals_m1697651929, Object_GetHashCode_m1758859581, Object_CompareBaseObjects_m2625210252, Object_IsNativeObjectAlive_m434626365, Object_GetInstanceID_m200424466, Object_GetCachedPtr_m1583421857, Object_Instantiate_m2255090103, Object_Instantiate_m3040600263, Object_CheckNullArgument_m264735768, Object_FindObjectOfType_m3820159265, Object_op_Implicit_m2106766291, Object_op_Equality_m3964590952, Object_op_Inequality_m1296218211, Physics_Raycast_m1758069759, Physics_Raycast_m1600345803, Physics_Raycast_m165875788, Physics_RaycastAll_m1771931441, Physics_RaycastAll_m1269007794, Physics_RaycastAll_m892728677, Physics_INTERNAL_CALL_RaycastAll_m2642095530, Physics_Internal_Raycast_m3365413907, Physics_INTERNAL_CALL_Internal_Raycast_m1291554392, Physics2D__cctor_m2087591309, Physics2D_Internal_Raycast_m4294843026, Physics2D_INTERNAL_CALL_Internal_Raycast_m1210233913, Physics2D_Raycast_m1435321255, Physics2D_Raycast_m301626417, Physics2D_RaycastAll_m3437166214, Physics2D_INTERNAL_CALL_RaycastAll_m765742583, Plane__ctor_m2201046863, Plane_get_normal_m3534129213, Plane_get_distance_m2612484153, Plane_Raycast_m2829769106, PropertyAttribute__ctor_m1741701746, Quaternion__ctor_m1100844011, Quaternion_Dot_m580284, Quaternion_Inverse_m3542515566, Quaternion_INTERNAL_CALL_Inverse_m4175627710, Quaternion_ToString_m1793285860, Quaternion_Euler_m1204688217, Quaternion_Internal_FromEulerRad_m3681319598, Quaternion_INTERNAL_CALL_Internal_FromEulerRad_m1312441940, Quaternion_GetHashCode_m3823258238, Quaternion_Equals_m3843409946, Quaternion_op_Multiply_m3077481361, Quaternion_op_Multiply_m3771288979, Quaternion_op_Inequality_m4197259746, RangeAttribute__ctor_m1279576482, Ray__ctor_m2662468509, Ray_get_origin_m3064983562, Ray_get_direction_m3201866877, Ray_GetPoint_m1171104822, Ray_ToString_m1391619614, RaycastHit_get_point_m4165497838, RaycastHit_get_normal_m1346998891, RaycastHit_get_distance_m800944203, RaycastHit_get_collider_m3116882274, RaycastHit2D_get_point_m2072691227, RaycastHit2D_get_normal_m894503390, RaycastHit2D_get_fraction_m2313516650, RaycastHit2D_get_collider_m789902306, RaycastHit2D_get_rigidbody_m1059160360, RaycastHit2D_get_transform_m1318597140, Rect__ctor_m3291325233, Rect_get_x_m982385354, Rect_set_x_m577970569, Rect_get_y_m982386315, Rect_set_y_m67436392, Rect_get_position_m2933356232, Rect_get_center_m610643572, Rect_get_min_m275942709, Rect_get_max_m275713991, Rect_get_width_m2824209432, Rect_set_width_m3771513595, Rect_get_height_m2154960823, Rect_set_height_m3398820332, Rect_get_size_m136480416, Rect_get_xMin_m371109962, Rect_set_xMin_m265803321, Rect_get_yMin_m399739113, Rect_set_yMin_m3716298746, Rect_get_xMax_m370881244, Rect_set_xMax_m1513853159, Rect_get_yMax_m399510395, Rect_set_yMax_m669381288, Rect_ToString_m2093687658, Rect_Contains_m3556594010, Rect_Contains_m3556594041, Rect_OrderMinMax_m3424313368, Rect_Overlaps_m669681106, Rect_Overlaps_m2751672171, Rect_GetHashCode_m89026168, Rect_Equals_m1091722644, Rect_op_Inequality_m2236552616, Rect_op_Equality_m1552341101, RectOffset__ctor_m2395783478, RectOffset__ctor_m358348983, RectOffset_Init_m3353955934, RectOffset_Cleanup_m2914212664, RectOffset_get_left_m4104523390, RectOffset_set_left_m901965251, RectOffset_get_right_m3831383975, RectOffset_set_right_m2119805444, RectOffset_get_top_m140097312, RectOffset_set_top_m3043172093, RectOffset_get_bottom_m2106858018, RectOffset_set_bottom_m3840454247, RectOffset_get_horizontal_m1186440923, RectOffset_get_vertical_m3650431789, RectOffset_Finalize_m3416542060, RectOffset_ToString_m2231965149, RectTransform_add_reapplyDrivenProperties_m1968705467, RectTransform_remove_reapplyDrivenProperties_m2607613076, RectTransform_get_rect_m1566017036, RectTransform_INTERNAL_get_rect_m1980775561, RectTransform_get_anchorMin_m688674174, RectTransform_set_anchorMin_m989253483, RectTransform_INTERNAL_get_anchorMin_m1139643287, RectTransform_INTERNAL_set_anchorMin_m370577571, RectTransform_get_anchorMax_m688445456, RectTransform_set_anchorMax_m715345817, RectTransform_INTERNAL_get_anchorMax_m1238440233, RectTransform_INTERNAL_set_anchorMax_m469374517, RectTransform_get_anchoredPosition_m2318455998, RectTransform_set_anchoredPosition_m1498949997, RectTransform_INTERNAL_get_anchoredPosition_m840986985, RectTransform_INTERNAL_set_anchoredPosition_m2329865949, RectTransform_get_sizeDelta_m4279424984, RectTransform_set_sizeDelta_m1223846609, RectTransform_INTERNAL_get_sizeDelta_m4117062897, RectTransform_INTERNAL_set_sizeDelta_m3347997181, RectTransform_get_pivot_m3785570595, RectTransform_set_pivot_m457344806, RectTransform_INTERNAL_get_pivot_m322514492, RectTransform_INTERNAL_set_pivot_m237146440, RectTransform_SendReapplyDrivenProperties_m2261331528, RectTransform_GetLocalCorners_m1867617311, RectTransform_GetWorldCorners_m1829917190, RectTransform_set_offsetMin_m951793481, RectTransform_set_offsetMax_m677885815, RectTransform_SetInsetAndSizeFromParentEdge_m1924354604, RectTransform_SetSizeWithCurrentAnchors_m4019722691, RectTransform_GetParentSize_m3092718635, ReapplyDrivenProperties__ctor_m3710908308, ReapplyDrivenProperties_Invoke_m3880635155, ReapplyDrivenProperties_BeginInvoke_m1851329218, ReapplyDrivenProperties_EndInvoke_m3686159268, RectTransformUtility__cctor_m4293768260, RectTransformUtility_RectangleContainsScreenPoint_m1460676684, RectTransformUtility_INTERNAL_CALL_RectangleContainsScreenPoint_m1592514141, RectTransformUtility_PixelAdjustPoint_m2518308759, RectTransformUtility_PixelAdjustPoint_m1313063708, RectTransformUtility_INTERNAL_CALL_PixelAdjustPoint_m1509640863, RectTransformUtility_PixelAdjustRect_m3727716130, RectTransformUtility_INTERNAL_CALL_PixelAdjustRect_m1038323288, RectTransformUtility_ScreenPointToWorldPointInRectangle_m3856201718, RectTransformUtility_ScreenPointToLocalPointInRectangle_m666650172, RectTransformUtility_ScreenPointToRay_m1216104542, RectTransformUtility_FlipLayoutOnAxis_m3487429352, RectTransformUtility_FlipLayoutAxes_m2163490602, RectTransformUtility_GetTransposed_m2060823533, Renderer_get_sortingLayerID_m1954594923, Renderer_get_sortingOrder_m3623465101, RenderTexture_Internal_GetWidth_m1030655936, RenderTexture_Internal_GetHeight_m1940011033, RenderTexture_get_width_m1498578543, RenderTexture_get_height_m4010076224, RequireComponent__ctor_m2023271172, ResourceRequest__ctor_m2863879896, ResourceRequest_get_asset_m670320982, Resources_Load_m3601699608, Rigidbody_AddForce_m3682301239, Rigidbody_INTERNAL_CALL_AddForce_m3651654387, RPC__ctor_m281827604, Screen_get_width_m3080333084, Screen_get_height_m1504859443, Screen_get_dpi_m3780069159, ScriptableObject__ctor_m1827087273, ScriptableObject_Internal_CreateScriptableObject_m2334361070, ScriptableObject_CreateInstance_m750914562, ScriptableObject_CreateInstance_m3255479417, ScriptableObject_CreateInstanceFromType_m3795352533, RequiredByNativeCodeAttribute__ctor_m940065582, UsedByNativeCodeAttribute__ctor_m3320039756, SelectionBaseAttribute__ctor_m3830336046, SendMouseEvents__cctor_m2731695210, SendMouseEvents_SetMouseMoved_m2590456785, SendMouseEvents_DoSendMouseEvents_m4104134333, SendMouseEvents_SendEvents_m3877180750, HitInfo_SendMessage_m2569183060, HitInfo_Compare_m4083757090, HitInfo_op_Implicit_m1943931337, FormerlySerializedAsAttribute__ctor_m2703462003, FormerlySerializedAsAttribute_get_oldName_m2935479929, SerializeField__ctor_m4068807987, SerializePrivateVariables__ctor_m889466149, SetupCoroutine_InvokeMember_m3691215301, Shader_PropertyToID_m3019342011, SharedBetweenAnimatorsAttribute__ctor_m2764338918, SliderState__ctor_m3732503849, GameCenterPlatform__ctor_m573039859, GameCenterPlatform__cctor_m102270234, GameCenterPlatform_UnityEngine_SocialPlatforms_ISocialPlatform_LoadFriends_m2468032119, GameCenterPlatform_UnityEngine_SocialPlatforms_ISocialPlatform_Authenticate_m305325355, GameCenterPlatform_Internal_Authenticate_m582381960, GameCenterPlatform_Internal_Authenticated_m2780967960, GameCenterPlatform_Internal_UserName_m1252299660, GameCenterPlatform_Internal_UserID_m385481212, GameCenterPlatform_Internal_Underage_m4169738944, GameCenterPlatform_Internal_UserImage_m3175776130, GameCenterPlatform_Internal_LoadFriends_m1921936862, GameCenterPlatform_Internal_LoadAchievementDescriptions_m1394384079, GameCenterPlatform_Internal_LoadAchievements_m817891229, GameCenterPlatform_Internal_ReportProgress_m2511520970, GameCenterPlatform_Internal_ReportScore_m408601947, GameCenterPlatform_Internal_LoadScores_m523283944, GameCenterPlatform_Internal_ShowAchievementsUI_m1934331464, GameCenterPlatform_Internal_ShowLeaderboardUI_m3057704739, GameCenterPlatform_Internal_LoadUsers_m4218820079, GameCenterPlatform_Internal_ResetAllAchievements_m165059209, GameCenterPlatform_Internal_ShowDefaultAchievementBanner_m3108376897, GameCenterPlatform_ResetAllAchievements_m878609996, GameCenterPlatform_ShowDefaultAchievementCompletionBanner_m2516168699, GameCenterPlatform_ShowLeaderboardUI_m3791866548, GameCenterPlatform_Internal_ShowSpecificLeaderboardUI_m1768304742, GameCenterPlatform_ClearAchievementDescriptions_m3158758843, GameCenterPlatform_SetAchievementDescription_m3174496109, GameCenterPlatform_SetAchievementDescriptionImage_m3728674360, GameCenterPlatform_TriggerAchievementDescriptionCallback_m1497473051, GameCenterPlatform_AuthenticateCallbackWrapper_m2896042779, GameCenterPlatform_ClearFriends_m1761222218, GameCenterPlatform_SetFriends_m3378244042, GameCenterPlatform_SetFriendImage_m4228294663, GameCenterPlatform_TriggerFriendsCallbackWrapper_m3845044787, GameCenterPlatform_AchievementCallbackWrapper_m2031411110, GameCenterPlatform_ProgressCallbackWrapper_m165794409, GameCenterPlatform_ScoreCallbackWrapper_m2797312324, GameCenterPlatform_ScoreLoaderCallbackWrapper_m2588839053, GameCenterPlatform_get_localUser_m1634439374, GameCenterPlatform_PopulateLocalUser_m2583301917, GameCenterPlatform_LoadAchievementDescriptions_m232801667, GameCenterPlatform_ReportProgress_m4110499833, GameCenterPlatform_LoadAchievements_m2745782249, GameCenterPlatform_ReportScore_m1009544586, GameCenterPlatform_LoadScores_m3562614827, GameCenterPlatform_LoadScores_m2883394111, GameCenterPlatform_LeaderboardCallbackWrapper_m2165153529, GameCenterPlatform_GetLoading_m2084830155, GameCenterPlatform_VerifyAuthentication_m4096949980, GameCenterPlatform_ShowAchievementsUI_m2437339590, GameCenterPlatform_ShowLeaderboardUI_m302984165, GameCenterPlatform_ClearUsers_m4212910653, GameCenterPlatform_SetUser_m847940592, GameCenterPlatform_SetUserImage_m3066589434, GameCenterPlatform_TriggerUsersCallbackWrapper_m2446471631, GameCenterPlatform_LoadUsers_m981272890, GameCenterPlatform_SafeSetUserImage_m3650098397, GameCenterPlatform_SafeClearArray_m2546851889, GameCenterPlatform_CreateLeaderboard_m2295049883, GameCenterPlatform_CreateAchievement_m1828880347, GameCenterPlatform_TriggerResetAchievementCallback_m1285257317, GcAchievementData_ToAchievement_m3239514930, GcAchievementDescriptionData_ToAchievementDescription_m3125480712, GcLeaderboard__ctor_m4042810199, GcLeaderboard_Finalize_m4015840938, GcLeaderboard_Contains_m100384368, GcLeaderboard_SetScores_m1734279820, GcLeaderboard_SetLocalScore_m3970132532, GcLeaderboard_SetMaxRange_m3160374921, GcLeaderboard_SetTitle_m3781988000, GcLeaderboard_Internal_LoadScores_m1783152707, GcLeaderboard_Internal_LoadScoresWithUsers_m1315210452, GcLeaderboard_Loading_m294711596, GcLeaderboard_Dispose_m301614325, GcScoreData_ToScore_m2728389301, GcUserProfileData_ToUserProfile_m1509702721, GcUserProfileData_AddToArray_m3757655355, Achievement__ctor_m377036415, Achievement__ctor_m2960680429, Achievement__ctor_m3345265521, Achievement_ToString_m2974157186, Achievement_get_id_m1680539866, Achievement_set_id_m3123429815, Achievement_get_percentCompleted_m2492759109, Achievement_set_percentCompleted_m1005987436, Achievement_get_completed_m3689853355, Achievement_get_hidden_m2954555244, Achievement_get_lastReportedDate_m445111052, AchievementDescription__ctor_m3032164909, AchievementDescription_ToString_m1633092820, AchievementDescription_SetImage_m1092175896, AchievementDescription_get_id_m3162941612, AchievementDescription_set_id_m2215766207, AchievementDescription_get_title_m1294089737, AchievementDescription_get_achievedDescription_m4248956218, AchievementDescription_get_unachievedDescription_m3429874753, AchievementDescription_get_hidden_m734162136, AchievementDescription_get_points_m4158769271, Leaderboard__ctor_m596857571, Leaderboard_ToString_m114482384, Leaderboard_SetLocalUserScore_m700491556, Leaderboard_SetMaxRange_m3779908734, Leaderboard_SetScores_m1463319879, Leaderboard_SetTitle_m771163339, Leaderboard_GetUserFilter_m3119905721, Leaderboard_get_id_m2379239336, Leaderboard_set_id_m2022535593, Leaderboard_get_userScope_m3547770469, Leaderboard_set_userScope_m3914830286, Leaderboard_get_range_m234965965, Leaderboard_set_range_m2830170470, Leaderboard_get_timeScope_m2356081377, Leaderboard_set_timeScope_m3669793618, LocalUser__ctor_m1052633066, LocalUser_SetFriends_m3475409220, LocalUser_SetAuthenticated_m653377406, LocalUser_SetUnderage_m2968368872, LocalUser_get_authenticated_m3657159816, Score__ctor_m113497156, Score__ctor_m3768037481, Score_ToString_m3380639973, Score_get_leaderboardID_m1097777176, Score_set_leaderboardID_m3646875387, Score_get_value_m3381234835, Score_set_value_m2229956626, UserProfile__ctor_m1280449570, UserProfile__ctor_m2682768015, UserProfile_ToString_m2563774257, UserProfile_SetUserName_m914181770, UserProfile_SetUserID_m1515238170, UserProfile_SetImage_m1928130753, UserProfile_get_userName_m3149753764, UserProfile_get_id_m2095754825, UserProfile_get_isFriend_m1712941209, UserProfile_get_state_m1340538601, Range__ctor_m872630735, SortingLayer_GetLayerValueFromID_m2560954442, SpaceAttribute__ctor_m3636842103, SpaceAttribute__ctor_m2299833492, Sprite_get_rect_m132626493, Sprite_INTERNAL_get_rect_m853825042, Sprite_get_pixelsPerUnit_m2438708453, Sprite_get_texture_m1481489947, Sprite_get_textureRect_m3946160520, Sprite_INTERNAL_get_textureRect_m1939414807, Sprite_get_border_m1562752938, Sprite_INTERNAL_get_border_m855941073, DataUtility_GetInnerUV_m860985145, DataUtility_INTERNAL_CALL_GetInnerUV_m4066645897, DataUtility_GetOuterUV_m2974486430, DataUtility_INTERNAL_CALL_GetOuterUV_m3695722564, DataUtility_GetPadding_m3826542291, DataUtility_INTERNAL_CALL_GetPadding_m3174755375, DataUtility_GetMinSize_m1313355571, DataUtility_Internal_GetMinSize_m885438560, StackTraceUtility__cctor_m1486031939, StackTraceUtility_SetProjectFolder_m3541316899, StackTraceUtility_ExtractStackTrace_m235366505, StackTraceUtility_IsSystemStacktraceType_m295158192, StackTraceUtility_ExtractStringFromExceptionInternal_m803331050, StackTraceUtility_PostprocessStacktrace_m556856210, StackTraceUtility_ExtractFormattedStackTrace_m3996939365, StateMachineBehaviour__ctor_m3149540562, StateMachineBehaviour_OnStateEnter_m2858660338, StateMachineBehaviour_OnStateUpdate_m2829799871, StateMachineBehaviour_OnStateExit_m922939338, StateMachineBehaviour_OnStateMove_m834394999, StateMachineBehaviour_OnStateIK_m2478904358, StateMachineBehaviour_OnStateMachineEnter_m3756430466, StateMachineBehaviour_OnStateMachineExit_m4198306608, StateMachineBehaviour_OnStateEnter_m1932811376, StateMachineBehaviour_OnStateUpdate_m2812313539, StateMachineBehaviour_OnStateExit_m2956750232, StateMachineBehaviour_OnStateMove_m2938949899, StateMachineBehaviour_OnStateIK_m3126912700, StateMachineBehaviour_OnStateMachineEnter_m2392556512, StateMachineBehaviour_OnStateMachineExit_m2976228338, SystemInfo_get_deviceType_m2827604277, TextAreaAttribute__ctor_m2577573455, TextEditor__ctor_m1029296947, TextGenerationSettings_CompareColors_m2801108564, TextGenerationSettings_CompareVector2_m332687775, TextGenerationSettings_Equals_m3950599493, TextGenerator__ctor_m3994909811, TextGenerator__ctor_m1563237700, TextGenerator_System_IDisposable_Dispose_m3586435340, TextGenerator_Finalize_m3211881231, TextGenerator_ValidatedSettings_m1098807955, TextGenerator_Invalidate_m620450028, TextGenerator_GetCharacters_m2483060112, TextGenerator_GetLines_m2441503301, TextGenerator_GetVertices_m1097518625, TextGenerator_GetPreferredWidth_m1618543389, TextGenerator_GetPreferredHeight_m1770778044, TextGenerator_Populate_m953583418, TextGenerator_PopulateAlways_m4138837161, TextGenerator_get_verts_m1179011229, TextGenerator_get_characters_m3420670449, TextGenerator_get_lines_m3197542168, TextGenerator_Init_m1881520001, TextGenerator_Dispose_cpp_m959647828, TextGenerator_Populate_Internal_m1773862789, TextGenerator_Populate_Internal_cpp_m3249805403, TextGenerator_INTERNAL_CALL_Populate_Internal_cpp_m2939372809, TextGenerator_get_rectExtents_m2200526529, TextGenerator_INTERNAL_get_rectExtents_m4152002332, TextGenerator_get_vertexCount_m818659347, TextGenerator_GetVerticesInternal_m2005679319, TextGenerator_get_characterCountVisible_m2621262708, TextGenerator_GetCharactersInternal_m3189630150, TextGenerator_get_lineCount_m3121044867, TextGenerator_GetLinesInternal_m702225117, Texture__ctor_m516856734, Texture_Internal_GetWidth_m1143336192, Texture_Internal_GetHeight_m1065663213, Texture_get_width_m1557399609, Texture_get_height_m1538561974, Texture2D__ctor_m1883511258, Texture2D_Internal_Create_m457592211, Texture2D_get_whiteTexture_m1214146742, Texture2D_GetPixelBilinear_m2169326019, Texture2D_INTERNAL_CALL_GetPixelBilinear_m2056702809, Time_get_deltaTime_m2741110510, Time_get_unscaledTime_m319114521, Time_get_unscaledDeltaTime_m285638843, Time_get_realtimeSinceStartup_m2972554983, TooltipAttribute__ctor_m3341446606, Touch_get_fingerId_m1427167959, Touch_get_position_m1943849441, Touch_get_phase_m3314549414, Touch_get_type_m1428398012, TouchScreenKeyboard__ctor_m3607055310, TouchScreenKeyboard_Destroy_m3865079199, TouchScreenKeyboard_Finalize_m541415163, TouchScreenKeyboard_TouchScreenKeyboard_InternalConstructorHelper_m3839791280, TouchScreenKeyboard_get_isSupported_m2472329766, TouchScreenKeyboard_Open_m3070776627, TouchScreenKeyboard_Open_m751274250, TouchScreenKeyboard_Open_m3970504870, TouchScreenKeyboard_get_text_m2874389744, TouchScreenKeyboard_set_text_m1654889403, TouchScreenKeyboard_set_hideInput_m2518551559, TouchScreenKeyboard_get_active_m4287082086, TouchScreenKeyboard_set_active_m3667959159, TouchScreenKeyboard_get_done_m25268130, TouchScreenKeyboard_get_wasCanceled_m3910688420, TrackedReference_Equals_m732758423, TrackedReference_GetHashCode_m894516347, TrackedReference_op_Equality_m4125598506, Transform_get_position_m2211398607, Transform_set_position_m3111394108, Transform_INTERNAL_get_position_m1705230066, Transform_INTERNAL_set_position_m1126232166, Transform_get_localPosition_m668140784, Transform_set_localPosition_m3504330903, Transform_INTERNAL_get_localPosition_m2703574131, Transform_INTERNAL_set_localPosition_m221305727, Transform_get_forward_m877665793, Transform_get_rotation_m11483428, Transform_set_rotation_m1525803229, Transform_INTERNAL_get_rotation_m2389720173, Transform_INTERNAL_set_rotation_m2051942009, Transform_get_localRotation_m3343229381, Transform_set_localRotation_m3719981474, Transform_INTERNAL_get_localRotation_m1409235788, Transform_INTERNAL_set_localRotation_m2898114752, Transform_get_localScale_m3886572677, Transform_set_localScale_m310756934, Transform_INTERNAL_get_localScale_m1534477480, Transform_INTERNAL_set_localScale_m3463244060, Transform_get_parent_m2236876972, Transform_set_parent_m3231272063, Transform_get_parentInternal_m3763475785, Transform_set_parentInternal_m1254352386, Transform_SetParent_m3449663462, Transform_SetParent_m263985879, Transform_get_worldToLocalMatrix_m3792395652, Transform_INTERNAL_get_worldToLocalMatrix_m3861589095, Transform_Rotate_m637363399, Transform_Rotate_m3141515812, Transform_TransformPoint_m437395512, Transform_INTERNAL_CALL_TransformPoint_m1435510371, Transform_InverseTransformPoint_m1626812000, Transform_INTERNAL_CALL_InverseTransformPoint_m1782292189, Transform_get_childCount_m2107810675, Transform_SetAsFirstSibling_m1746075601, Transform_IsChildOf_m3321648579, Transform_GetEnumerator_m688365631, Transform_GetChild_m4040462992, Enumerator__ctor_m856668951, Enumerator_get_Current_m1838268607, Enumerator_MoveNext_m1095530856, Enumerator_Reset_m258411155, UIVertex__cctor_m2134470424, UnhandledExceptionHandler_RegisterUECatcher_m143130254, UnhandledExceptionHandler_HandleUnhandledException_m4033241923, UnhandledExceptionHandler_PrintException_m3142367935, UnhandledExceptionHandler_NativeUnhandledExceptionHandler_m1608070048, UnityException__ctor_m1176480467, UnityException__ctor_m743662351, UnityException__ctor_m2780758535, UnityException__ctor_m2001840532, UnityString_Format_m427603113, Vector2__ctor_m1517109030, Vector2_get_Item_m2185542843, Vector2_set_Item_m2767519328, Vector2_Scale_m1743563745, Vector2_ToString_m3859776067, Vector2_GetHashCode_m128434585, Vector2_Equals_m3404198849, Vector2_Dot_m2437602225, Vector2_get_sqrMagnitude_m996072851, Vector2_SqrMagnitude_m4007443280, Vector2_get_zero_m199872368, Vector2_get_one_m2767488832, Vector2_get_up_m1197831267, Vector2_get_right_m3495203638, Vector2_op_Addition_m1173049553, Vector2_op_Subtraction_m2097149401, Vector2_op_Multiply_m1738245082, Vector2_op_Division_m747627697, Vector2_op_Equality_m1927481448, Vector2_op_Inequality_m1638984867, Vector2_op_Implicit_m4083860659, Vector2_op_Implicit_m482286037, Vector3__ctor_m2926210380, Vector3__ctor_m1846874791, Vector3_Lerp_m650470329, Vector3_get_Item_m108333500, Vector3_set_Item_m1844835745, Vector3_GetHashCode_m3912867704, Vector3_Equals_m3337192096, Vector3_Normalize_m3047997355, Vector3_get_normalized_m2650940353, Vector3_ToString_m3566373060, Vector3_Dot_m2370485424, Vector3_Distance_m3366690344, Vector3_Magnitude_m995314358, Vector3_SqrMagnitude_m1662776270, Vector3_get_sqrMagnitude_m1207423764, Vector3_Min_m10392601, Vector3_Max_m545730887, Vector3_get_zero_m2017759730, Vector3_get_one_m886467710, Vector3_get_forward_m1039372701, Vector3_get_back_m1326515313, Vector3_get_up_m4046647141, Vector3_get_down_m1397301612, Vector3_get_left_m1616598929, Vector3_get_right_m4015137012, Vector3_op_Addition_m695438225, Vector3_op_Subtraction_m2842958165, Vector3_op_Multiply_m973638459, Vector3_op_Division_m4277988370, Vector3_op_Equality_m582817895, Vector3_op_Inequality_m231387234, Vector4__ctor_m2441427762, Vector4_get_Item_m2326091453, Vector4_set_Item_m922152162, Vector4_GetHashCode_m3402333527, Vector4_Equals_m3270185343, Vector4_ToString_m3272970053, Vector4_Dot_m2303368623, Vector4_get_sqrMagnitude_m1418774677, Vector4_get_zero_m3835647092, Vector4_op_Division_m3513381747, WaitForEndOfFrame__ctor_m4124201226, WaitForFixedUpdate__ctor_m2916734308, WaitForSeconds__ctor_m3184996201, WrapperlessIcall__ctor_m1888400594, WritableAttribute__ctor_m2205809533, YieldInstruction__ctor_m539393484, GenericStack__ctor_m2328546233, MathfInternal__cctor_m2600550988, NetFxCoreExtensions_CreateDelegate_m3408605866, NetFxCoreExtensions_GetMethodInfo_m1628849205, TypeInferenceRuleAttribute__ctor_m1168575159, TypeInferenceRuleAttribute__ctor_m2173394041, TypeInferenceRuleAttribute_ToString_m318752778, AbstractEventData__ctor_m3016870691, AbstractEventData_Reset_m663303632, AbstractEventData_Use_m245202952, AbstractEventData_get_used_m4054984437, AxisEventData__ctor_m3411840806, AxisEventData_get_moveVector_m2997093594, AxisEventData_set_moveVector_m286185191, AxisEventData_get_moveDir_m2739466109, AxisEventData_set_moveDir_m2213568926, BaseEventData__ctor_m3246352982, BaseEventData_get_currentInputModule_m502779959, BaseEventData_get_selectedObject_m2003968484, BaseEventData_set_selectedObject_m3912430657, BaseInputModule__ctor_m2920801056, BaseInputModule_get_eventSystem_m3949125731, BaseInputModule_OnEnable_m3913388134, BaseInputModule_OnDisable_m1496885127, BaseInputModule_FindFirstRaycast_m3775114583, BaseInputModule_DetermineMoveDirection_m1298463611, BaseInputModule_DetermineMoveDirection_m1501057824, BaseInputModule_FindCommonRoot_m1904275501, BaseInputModule_HandlePointerExitAndEnter_m779127058, BaseInputModule_GetAxisEventData_m3789039491, BaseInputModule_GetBaseEventData_m1707430642, BaseInputModule_IsPointerOverGameObject_m674758553, BaseInputModule_ShouldActivateModule_m222600132, BaseInputModule_DeactivateModule_m2572518820, BaseInputModule_ActivateModule_m1091790819, BaseInputModule_UpdateModule_m2691994233, BaseInputModule_IsModuleSupported_m4245324872, BaseRaycaster__ctor_m2197027296, BaseRaycaster_get_priority_m2850487385, BaseRaycaster_get_sortOrderPriority_m1812907489, BaseRaycaster_get_renderOrderPriority_m486229993, BaseRaycaster_ToString_m540855283, BaseRaycaster_OnEnable_m2705129894, BaseRaycaster_OnDisable_m2695585351, EventSystem__ctor_m1614698108, EventSystem__cctor_m2328904881, EventSystem_get_current_m3483537871, EventSystem_set_current_m3070848986, EventSystem_get_sendNavigationEvents_m2758658484, EventSystem_set_sendNavigationEvents_m332228817, EventSystem_get_pixelDragThreshold_m3269248010, EventSystem_set_pixelDragThreshold_m3094844391, EventSystem_get_currentInputModule_m1694913485, EventSystem_get_firstSelectedGameObject_m540473918, EventSystem_set_firstSelectedGameObject_m1040716465, EventSystem_get_currentSelectedGameObject_m4236083783, EventSystem_get_lastSelectedGameObject_m2351525314, EventSystem_UpdateModules_m2696555928, EventSystem_get_alreadySelecting_m3074958957, EventSystem_SetSelectedGameObject_m2116591616, EventSystem_get_baseEventDataCache_m1763003665, EventSystem_SetSelectedGameObject_m1869236832, EventSystem_RaycastComparer_m3178660990, EventSystem_RaycastAll_m538533603, EventSystem_IsPointerOverGameObject_m4276458404, EventSystem_IsPointerOverGameObject_m4003394293, EventSystem_OnEnable_m1909198730, EventSystem_OnDisable_m3791523043, EventSystem_TickModules_m4074329476, EventSystem_Update_m242895889, EventSystem_ChangeEventModule_m1717769816, EventSystem_ToString_m3844548247, EventTrigger__ctor_m3410186115, EventTrigger_get_triggers_m900961340, EventTrigger_set_triggers_m2956640203, EventTrigger_Execute_m1768335209, EventTrigger_OnPointerEnter_m3698974435, EventTrigger_OnPointerExit_m4069405409, EventTrigger_OnDrag_m621966250, EventTrigger_OnDrop_m1949092623, EventTrigger_OnPointerDown_m3676323037, EventTrigger_OnPointerUp_m902762948, EventTrigger_OnPointerClick_m4229222963, EventTrigger_OnSelect_m3604185014, EventTrigger_OnDeselect_m1138247351, EventTrigger_OnScroll_m2448369713, EventTrigger_OnMove_m4043957787, EventTrigger_OnUpdateSelected_m1400064574, EventTrigger_OnInitializePotentialDrag_m802339386, EventTrigger_OnBeginDrag_m356440287, EventTrigger_OnEndDrag_m168497709, EventTrigger_OnSubmit_m974012114, EventTrigger_OnCancel_m972464948, Entry__ctor_m515618144, TriggerEvent__ctor_m1729711890, ExecuteEvents__cctor_m2728541814, ExecuteEvents_Execute_m3788527851, ExecuteEvents_Execute_m2062412449, ExecuteEvents_Execute_m1462933149, ExecuteEvents_Execute_m225834756, ExecuteEvents_Execute_m153166907, ExecuteEvents_Execute_m3770536826, ExecuteEvents_Execute_m2468788383, ExecuteEvents_Execute_m1192678962, ExecuteEvents_Execute_m1674228205, ExecuteEvents_Execute_m1220342551, ExecuteEvents_Execute_m1271506489, ExecuteEvents_Execute_m3050600610, ExecuteEvents_Execute_m1947619370, ExecuteEvents_Execute_m279235849, ExecuteEvents_Execute_m1420971509, ExecuteEvents_Execute_m951556494, ExecuteEvents_Execute_m3179930348, ExecuteEvents_get_pointerEnterHandler_m2954525018, ExecuteEvents_get_pointerExitHandler_m509229616, ExecuteEvents_get_pointerDownHandler_m916646952, ExecuteEvents_get_pointerUpHandler_m1834169334, ExecuteEvents_get_pointerClickHandler_m2881872730, ExecuteEvents_get_initializePotentialDrag_m3514083626, ExecuteEvents_get_beginDragHandler_m1163039340, ExecuteEvents_get_dragHandler_m1884359226, ExecuteEvents_get_endDragHandler_m811393096, ExecuteEvents_get_dropHandler_m1933111770, ExecuteEvents_get_scrollHandler_m62853082, ExecuteEvents_get_updateSelectedHandler_m2735401530, ExecuteEvents_get_selectHandler_m1963257146, ExecuteEvents_get_deselectHandler_m2539146650, ExecuteEvents_get_moveHandler_m1400410010, ExecuteEvents_get_submitHandler_m3307200186, ExecuteEvents_get_cancelHandler_m120249338, ExecuteEvents_GetEventChain_m1321751930, ExecuteEvents_U3Cs_HandlerListPoolU3Em__0_m1727672693, Physics2DRaycaster__ctor_m3212916644, Physics2DRaycaster_Raycast_m4133606104, PhysicsRaycaster__ctor_m4288212754, PhysicsRaycaster_get_eventCamera_m810838145, PhysicsRaycaster_get_depth_m589853138, PhysicsRaycaster_get_finalEventMask_m2246936003, PhysicsRaycaster_get_eventMask_m610257178, PhysicsRaycaster_set_eventMask_m3869486707, PhysicsRaycaster_Raycast_m743134250, PhysicsRaycaster_U3CRaycastU3Em__1_m3832860601, PointerEventData__ctor_m82194942, PointerEventData_get_pointerEnter_m1754340511, PointerEventData_set_pointerEnter_m3909544698, PointerEventData_get_lastPress_m3682396203, PointerEventData_set_lastPress_m1523028000, PointerEventData_get_rawPointerPress_m4005541676, PointerEventData_set_rawPointerPress_m505214625, PointerEventData_get_pointerDrag_m2109300143, PointerEventData_set_pointerDrag_m1194168164, PointerEventData_get_pointerCurrentRaycast_m874132826, PointerEventData_set_pointerCurrentRaycast_m2884097807, PointerEventData_get_pointerPressRaycast_m990488592, PointerEventData_set_pointerPressRaycast_m126348485, PointerEventData_get_eligibleForClick_m804806107, PointerEventData_set_eligibleForClick_m4124670100, PointerEventData_get_pointerId_m315063471, PointerEventData_set_pointerId_m204336548, PointerEventData_get_position_m2263123361, PointerEventData_set_position_m1287828138, PointerEventData_get_delta_m4112242786, PointerEventData_set_delta_m3480102791, PointerEventData_get_pressPosition_m2718149942, PointerEventData_set_pressPosition_m3056630579, PointerEventData_get_worldPosition_m489722276, PointerEventData_set_worldPosition_m914315875, PointerEventData_get_worldNormal_m3470386274, PointerEventData_set_worldNormal_m2060170853, PointerEventData_get_clickTime_m2529670096, PointerEventData_set_clickTime_m3487651291, PointerEventData_get_clickCount_m341347570, PointerEventData_set_clickCount_m2279104927, PointerEventData_get_scrollDelta_m3602781717, PointerEventData_set_scrollDelta_m3507625908, PointerEventData_get_useDragThreshold_m2749684085, PointerEventData_set_useDragThreshold_m2530254510, PointerEventData_get_dragging_m3319220148, PointerEventData_set_dragging_m1730892973, PointerEventData_get_button_m796143251, PointerEventData_set_button_m2720287992, PointerEventData_IsPointerMoving_m1462208007, PointerEventData_IsScrolling_m2052637201, PointerEventData_get_enterEventCamera_m1535306943, PointerEventData_get_pressEventCamera_m2764092724, PointerEventData_get_pointerPress_m3028028234, PointerEventData_set_pointerPress_m3037509477, PointerEventData_ToString_m746384051, PointerInputModule__ctor_m2748126408, PointerInputModule_GetPointerData_m1554981113, PointerInputModule_RemovePointerData_m3101459861, PointerInputModule_GetTouchPointerEventData_m2194758459, PointerInputModule_CopyFromTo_m431867808, PointerInputModule_StateForMouseButton_m1241430345, PointerInputModule_GetMousePointerEventData_m1489718224, PointerInputModule_GetMousePointerEventData_m3291859233, PointerInputModule_GetLastPointerEventData_m238778665, PointerInputModule_ShouldStartDrag_m1910083073, PointerInputModule_ProcessMove_m2382689080, PointerInputModule_ProcessDrag_m1875452405, PointerInputModule_IsPointerOverGameObject_m1132541469, PointerInputModule_ClearSelection_m1490775995, PointerInputModule_ToString_m1837754533, PointerInputModule_DeselectIfSelectionChanged_m522880394, ButtonState__ctor_m858021496, ButtonState_get_eventData_m3874795698, ButtonState_set_eventData_m471696551, ButtonState_get_button_m3169210133, ButtonState_set_button_m2005500214, MouseButtonEventData__ctor_m4233842466, MouseButtonEventData_PressedThisFrame_m3377699805, MouseButtonEventData_ReleasedThisFrame_m949274724, MouseState__ctor_m2621211907, MouseState_AnyPressesThisFrame_m3921583709, MouseState_AnyReleasesThisFrame_m2672125158, MouseState_GetButtonState_m96912714, MouseState_SetButtonState_m3470421591, RaycasterManager__cctor_m1509381251, RaycasterManager_AddRaycaster_m4159868023, RaycasterManager_GetRaycasters_m4152256966, RaycasterManager_RemoveRaycasters_m4290330819, RaycastResult_get_gameObject_m1138099278, RaycastResult_set_gameObject_m726369707, RaycastResult_get_isValid_m3098154392, RaycastResult_Clear_m2117708874, RaycastResult_ToString_m2924263764, StandaloneInputModule__ctor_m3585261844, StandaloneInputModule_get_inputMode_m3683217473, StandaloneInputModule_get_allowActivationOnMobileDevice_m898677649, StandaloneInputModule_set_allowActivationOnMobileDevice_m2716306402, StandaloneInputModule_get_forceModuleActive_m4263603128, StandaloneInputModule_set_forceModuleActive_m2821456585, StandaloneInputModule_get_inputActionsPerSecond_m386579003, StandaloneInputModule_set_inputActionsPerSecond_m3962672568, StandaloneInputModule_get_repeatDelay_m756347909, StandaloneInputModule_set_repeatDelay_m3283777070, StandaloneInputModule_get_horizontalAxis_m4124505505, StandaloneInputModule_set_horizontalAxis_m1994117648, StandaloneInputModule_get_verticalAxis_m828001843, StandaloneInputModule_set_verticalAxis_m3009801854, StandaloneInputModule_get_submitButton_m1573295782, StandaloneInputModule_set_submitButton_m3989846251, StandaloneInputModule_get_cancelButton_m3049849608, StandaloneInputModule_set_cancelButton_m822377417, StandaloneInputModule_UpdateModule_m4260747781, StandaloneInputModule_IsModuleSupported_m1519744700, StandaloneInputModule_ShouldActivateModule_m3115394256, StandaloneInputModule_ActivateModule_m1130429551, StandaloneInputModule_DeactivateModule_m1049634608, StandaloneInputModule_Process_m3720469665, StandaloneInputModule_ProcessTouchEvents_m3567487943, StandaloneInputModule_ProcessTouchPress_m2953705401, StandaloneInputModule_SendSubmitEventToSelectedObject_m2183743635, StandaloneInputModule_GetRawMoveVector_m3480660049, StandaloneInputModule_SendMoveEventToSelectedObject_m439066490, StandaloneInputModule_ProcessMouseEvent_m2927305846, StandaloneInputModule_ProcessMouseEvent_m1104664775, StandaloneInputModule_SendUpdateEventToSelectedObject_m1730287810, StandaloneInputModule_ProcessMousePress_m794465737, TouchInputModule__ctor_m339421258, TouchInputModule_get_allowActivationOnStandalone_m2975554192, TouchInputModule_set_allowActivationOnStandalone_m2844331589, TouchInputModule_get_forceModuleActive_m3711716298, TouchInputModule_set_forceModuleActive_m3663751039, TouchInputModule_UpdateModule_m1492847119, TouchInputModule_IsModuleSupported_m3258396622, TouchInputModule_ShouldActivateModule_m1989212798, TouchInputModule_UseFakeInput_m1788394586, TouchInputModule_Process_m2613923415, TouchInputModule_FakeTouches_m1483201856, TouchInputModule_ProcessTouchEvents_m2652204291, TouchInputModule_ProcessTouchPress_m3277592771, TouchInputModule_DeactivateModule_m873087546, TouchInputModule_ToString_m2343614755, UIBehaviour__ctor_m1261553468, UIBehaviour_Awake_m1499158687, UIBehaviour_OnEnable_m4047103690, UIBehaviour_Start_m208691260, UIBehaviour_OnDisable_m1347100067, UIBehaviour_OnDestroy_m3524632117, UIBehaviour_IsActive_m3417391654, UIBehaviour_OnRectTransformDimensionsChange_m406568928, UIBehaviour_OnBeforeTransformParentChanged_m216909636, UIBehaviour_OnTransformParentChanged_m1017023781, UIBehaviour_OnDidApplyAnimationProperties_m1721800419, UIBehaviour_OnCanvasGroupChanged_m2106086004, UIBehaviour_OnCanvasHierarchyChanged_m1210291326, UIBehaviour_IsDestroyed_m3027499227, AnimationTriggers__ctor_m4034548412, AnimationTriggers_get_normalTrigger_m326085791, AnimationTriggers_set_normalTrigger_m2497706644, AnimationTriggers_get_highlightedTrigger_m1862702265, AnimationTriggers_set_highlightedTrigger_m3911773112, AnimationTriggers_get_pressedTrigger_m3081240394, AnimationTriggers_set_pressedTrigger_m763343943, AnimationTriggers_get_disabledTrigger_m2031458154, AnimationTriggers_set_disabledTrigger_m472449385, AspectRatioFitter__ctor_m832848312, AspectRatioFitter_get_aspectMode_m1442516665, AspectRatioFitter_set_aspectMode_m3373690308, AspectRatioFitter_get_aspectRatio_m1760059860, AspectRatioFitter_set_aspectRatio_m934620095, AspectRatioFitter_get_rectTransform_m3884626579, AspectRatioFitter_OnEnable_m1429572302, AspectRatioFitter_OnDisable_m1808005663, AspectRatioFitter_OnRectTransformDimensionsChange_m1500370780, AspectRatioFitter_UpdateRect_m1803770713, AspectRatioFitter_GetSizeDeltaToProduceSize_m1662613595, AspectRatioFitter_GetParentSize_m642682972, AspectRatioFitter_SetLayoutHorizontal_m4171834758, AspectRatioFitter_SetLayoutVertical_m815552664, AspectRatioFitter_SetDirty_m1662064540, BaseMeshEffect__ctor_m2332499996, BaseMeshEffect_get_graphic_m2567098443, BaseMeshEffect_OnEnable_m1303077354, BaseMeshEffect_OnDisable_m2181629571, BaseMeshEffect_OnDidApplyAnimationProperties_m4231090115, BaseMeshEffect_ModifyMesh_m4260756811, BaseVertexEffect__ctor_m1287105989, Button__ctor_m3363033049, Button_get_onClick_m1145127631, Button_set_onClick_m2495243460, Button_Press_m3889091706, Button_OnPointerClick_m2363576585, Button_OnSubmit_m3916273468, Button_OnFinishSubmit_m46760755, U3COnFinishSubmitU3Ec__Iterator1__ctor_m299272262, U3COnFinishSubmitU3Ec__Iterator1_System_Collections_Generic_IEnumeratorU3CobjectU3E_get_Current_m784619862, U3COnFinishSubmitU3Ec__Iterator1_System_Collections_IEnumerator_get_Current_m353356010, U3COnFinishSubmitU3Ec__Iterator1_MoveNext_m2222960880, U3COnFinishSubmitU3Ec__Iterator1_Dispose_m4031085315, U3COnFinishSubmitU3Ec__Iterator1_Reset_m2240672499, ButtonClickedEvent__ctor_m1416137305, CanvasScaler__ctor_m2274485483, CanvasScaler_get_uiScaleMode_m1718779723, CanvasScaler_set_uiScaleMode_m2713670988, CanvasScaler_get_referencePixelsPerUnit_m1471911967, CanvasScaler_set_referencePixelsPerUnit_m2513762540, CanvasScaler_get_scaleFactor_m2444679941, CanvasScaler_set_scaleFactor_m1527181766, CanvasScaler_get_referenceResolution_m484379826, CanvasScaler_set_referenceResolution_m4024849975, CanvasScaler_get_screenMatchMode_m2287362655, CanvasScaler_set_screenMatchMode_m1314095482, CanvasScaler_get_matchWidthOrHeight_m3211176417, CanvasScaler_set_matchWidthOrHeight_m500879978, CanvasScaler_get_physicalUnit_m3572932406, CanvasScaler_set_physicalUnit_m1052630401, CanvasScaler_get_fallbackScreenDPI_m2341917339, CanvasScaler_set_fallbackScreenDPI_m979123696, CanvasScaler_get_defaultSpriteDPI_m2728800301, CanvasScaler_set_defaultSpriteDPI_m1099048862, CanvasScaler_get_dynamicPixelsPerUnit_m3811209707, CanvasScaler_set_dynamicPixelsPerUnit_m1481681568, CanvasScaler_OnEnable_m3864540859, CanvasScaler_OnDisable_m4277586898, CanvasScaler_Update_m3516435330, CanvasScaler_Handle_m2195907873, CanvasScaler_HandleWorldCanvas_m1282362827, CanvasScaler_HandleConstantPixelSize_m22621284, CanvasScaler_HandleScaleWithScreenSize_m3412612446, CanvasScaler_HandleConstantPhysicalSize_m1320301949, CanvasScaler_SetScaleFactor_m376581883, CanvasScaler_SetReferencePixelsPerUnit_m96000151, CanvasUpdateRegistry__ctor_m4143486701, CanvasUpdateRegistry__cctor_m3411939936, CanvasUpdateRegistry_get_instance_m1077376867, CanvasUpdateRegistry_ObjectValidForUpdate_m3662506294, CanvasUpdateRegistry_CleanInvalidItems_m3668170109, CanvasUpdateRegistry_PerformUpdate_m4284602133, CanvasUpdateRegistry_ParentCount_m1557937541, CanvasUpdateRegistry_SortLayoutList_m217615053, CanvasUpdateRegistry_RegisterCanvasElementForLayoutRebuild_m1282865408, CanvasUpdateRegistry_TryRegisterCanvasElementForLayoutRebuild_m3477281917, CanvasUpdateRegistry_InternalRegisterCanvasElementForLayoutRebuild_m584808143, CanvasUpdateRegistry_RegisterCanvasElementForGraphicRebuild_m1487849090, CanvasUpdateRegistry_TryRegisterCanvasElementForGraphicRebuild_m795284133, CanvasUpdateRegistry_InternalRegisterCanvasElementForGraphicRebuild_m1322910355, CanvasUpdateRegistry_UnRegisterCanvasElementForRebuild_m2188113711, CanvasUpdateRegistry_InternalUnRegisterCanvasElementForLayoutRebuild_m1911897302, CanvasUpdateRegistry_InternalUnRegisterCanvasElementForGraphicRebuild_m3807968620, CanvasUpdateRegistry_IsRebuildingLayout_m1167551012, CanvasUpdateRegistry_IsRebuildingGraphics_m2979891973, ClipperRegistry__ctor_m3311832913, ClipperRegistry_get_instance_m1642325505, ClipperRegistry_Cull_m2386993349, ClipperRegistry_Register_m2777461237, ClipperRegistry_Unregister_m926013180, Clipping_FindCullAndClipWorldRect_m3007966961, Clipping_RectIntersect_m2589422792, ColorBlock_get_normalColor_m1021113593, ColorBlock_set_normalColor_m2914277480, ColorBlock_get_highlightedColor_m2834784533, ColorBlock_set_highlightedColor_m4179336310, ColorBlock_get_pressedColor_m2014354534, ColorBlock_set_pressedColor_m830240709, ColorBlock_get_disabledColor_m2484721348, ColorBlock_set_disabledColor_m215468861, ColorBlock_get_colorMultiplier_m2799886278, ColorBlock_set_colorMultiplier_m1029562789, ColorBlock_get_fadeDuration_m2386809488, ColorBlock_set_fadeDuration_m1171991323, ColorBlock_get_defaultColorBlock_m533915527, ContentSizeFitter__ctor_m3832398161, ContentSizeFitter_get_horizontalFit_m2851743464, ContentSizeFitter_set_horizontalFit_m798679123, ContentSizeFitter_get_verticalFit_m2576006486, ContentSizeFitter_set_verticalFit_m4130929281, ContentSizeFitter_get_rectTransform_m1096586412, ContentSizeFitter_OnEnable_m4224530581, ContentSizeFitter_OnDisable_m2552366392, ContentSizeFitter_OnRectTransformDimensionsChange_m733583797, ContentSizeFitter_HandleSelfFittingAlongAxis_m2083972471, ContentSizeFitter_SetLayoutHorizontal_m629859679, ContentSizeFitter_SetLayoutVertical_m2322479793, ContentSizeFitter_SetDirty_m162055523, ColorTween_get_startColor_m2341745789, ColorTween_set_startColor_m1548058556, ColorTween_get_targetColor_m3334930584, ColorTween_set_targetColor_m1091345019, ColorTween_get_tweenMode_m4011161954, ColorTween_set_tweenMode_m1316837809, ColorTween_get_duration_m2603018997, ColorTween_set_duration_m347866734, ColorTween_get_ignoreTimeScale_m27222826, ColorTween_set_ignoreTimeScale_m4222585787, ColorTween_TweenValue_m3209849337, ColorTween_AddOnChangedCallback_m1109647485, ColorTween_GetIgnoreTimescale_m2054009071, ColorTween_GetDuration_m1400665524, ColorTween_ValidTarget_m2504867349, ColorTweenCallback__ctor_m1815857490, FloatTween_get_startValue_m3485407671, FloatTween_set_startValue_m367615212, FloatTween_get_targetValue_m197139962, FloatTween_set_targetValue_m27109721, FloatTween_get_duration_m108772764, FloatTween_set_duration_m4177197863, FloatTween_get_ignoreTimeScale_m1786680995, FloatTween_set_ignoreTimeScale_m556709748, FloatTween_TweenValue_m1980315890, FloatTween_AddOnChangedCallback_m2815182481, FloatTween_GetIgnoreTimescale_m1972218454, FloatTween_GetDuration_m2290037293, FloatTween_ValidTarget_m3394239118, FloatTweenCallback__ctor_m2342804402, DefaultControls__cctor_m1303793449, DefaultControls_CreateUIElementRoot_m335662421, DefaultControls_CreateUIObject_m1826457530, DefaultControls_SetDefaultTextValues_m2676194036, DefaultControls_SetDefaultColorTransitionValues_m2995057500, DefaultControls_SetParentAndAlign_m867848490, DefaultControls_SetLayerRecursively_m2948337421, DefaultControls_CreatePanel_m131101809, DefaultControls_CreateButton_m2909407539, DefaultControls_CreateText_m414838766, DefaultControls_CreateImage_m3925407496, DefaultControls_CreateRawImage_m383828052, DefaultControls_CreateSlider_m3090010146, DefaultControls_CreateScrollbar_m2399849235, DefaultControls_CreateToggle_m1602114261, DefaultControls_CreateInputField_m3813899985, DefaultControls_CreateDropdown_m481152210, DefaultControls_CreateScrollView_m2763877395, Dropdown__ctor_m3574287322, Dropdown__cctor_m2946628371, Dropdown_get_template_m3674548779, Dropdown_set_template_m498709600, Dropdown_get_captionText_m1044804357, Dropdown_set_captionText_m4143100948, Dropdown_get_captionImage_m3689507433, Dropdown_set_captionImage_m3401548772, Dropdown_get_itemText_m2015261424, Dropdown_set_itemText_m3975071291, Dropdown_get_itemImage_m2263268950, Dropdown_set_itemImage_m838838347, Dropdown_get_options_m399918042, Dropdown_set_options_m4132251955, Dropdown_get_onValueChanged_m2646663760, Dropdown_set_onValueChanged_m2821991323, Dropdown_get_value_m3628689352, Dropdown_set_value_m2635023165, Dropdown_Awake_m3811892541, Dropdown_RefreshShownValue_m9458643, Dropdown_AddOptions_m1960749669, Dropdown_AddOptions_m4199474459, Dropdown_AddOptions_m1674488487, Dropdown_ClearOptions_m1343016059, Dropdown_SetupTemplate_m2277850703, Dropdown_OnPointerClick_m3417107146, Dropdown_OnSubmit_m3218526299, Dropdown_OnCancel_m3216979133, Dropdown_Show_m2564525543, Dropdown_CreateBlocker_m4177511350, Dropdown_DestroyBlocker_m442421122, Dropdown_CreateDropdownList_m1827964190, Dropdown_DestroyDropdownList_m2466702489, Dropdown_CreateItem_m3067956674, Dropdown_DestroyItem_m927755334, Dropdown_AddItem_m2798122239, Dropdown_AlphaFadeList_m2508072608, Dropdown_AlphaFadeList_m3646986629, Dropdown_SetAlpha_m3190511269, Dropdown_Hide_m2250183404, Dropdown_DelayedDestroyDropdownList_m3972931676, Dropdown_OnSelectItem_m2377815715, U3CDelayedDestroyDropdownListU3Ec__Iterator2__ctor_m1282717409, U3CDelayedDestroyDropdownListU3Ec__Iterator2_System_Collections_Generic_IEnumeratorU3CobjectU3E_get_Current_m2519696603, U3CDelayedDestroyDropdownListU3Ec__Iterator2_System_Collections_IEnumerator_get_Current_m2793709167, U3CDelayedDestroyDropdownListU3Ec__Iterator2_MoveNext_m1977022453, U3CDelayedDestroyDropdownListU3Ec__Iterator2_Dispose_m4229066462, U3CDelayedDestroyDropdownListU3Ec__Iterator2_Reset_m3224117646, U3CShowU3Ec__AnonStorey6__ctor_m2795061609, U3CShowU3Ec__AnonStorey6_U3CU3Em__2_m811212697, DropdownEvent__ctor_m3364351936, DropdownItem__ctor_m653383513, DropdownItem_get_text_m2361276100, DropdownItem_set_text_m2302793037, DropdownItem_get_image_m1361578890, DropdownItem_set_image_m97204957, DropdownItem_get_rectTransform_m1644273588, DropdownItem_set_rectTransform_m2348579039, DropdownItem_get_toggle_m2842574180, DropdownItem_set_toggle_m4246626175, DropdownItem_OnPointerEnter_m2208531769, DropdownItem_OnCancel_m3886441502, OptionData__ctor_m2550995262, OptionData__ctor_m3621517956, OptionData__ctor_m715763394, OptionData__ctor_m2001511174, OptionData_get_text_m2592726207, OptionData_set_text_m704016114, OptionData_get_image_m1245765107, OptionData_set_image_m4214652734, OptionDataList__ctor_m4183200960, OptionDataList_get_options_m397502342, OptionDataList_set_options_m2193073293, FontData__ctor_m2630121554, FontData_UnityEngine_ISerializationCallbackReceiver_OnBeforeSerialize_m3538586040, FontData_UnityEngine_ISerializationCallbackReceiver_OnAfterDeserialize_m2785911854, FontData_get_defaultFontData_m3606420120, FontData_get_font_m3285096249, FontData_set_font_m504888792, FontData_get_fontSize_m146058531, FontData_set_fontSize_m539119952, FontData_get_fontStyle_m2936188273, FontData_set_fontStyle_m3987465618, FontData_get_bestFit_m4181968066, FontData_set_bestFit_m408210551, FontData_get_minSize_m3681174594, FontData_set_minSize_m3139125175, FontData_get_maxSize_m2908696020, FontData_set_maxSize_m2259967561, FontData_get_alignment_m3864278344, FontData_set_alignment_m4148907005, FontData_get_alignByGeometry_m1074013123, FontData_set_alignByGeometry_m1124841400, FontData_get_richText_m3819861494, FontData_set_richText_m2399891183, FontData_get_horizontalOverflow_m1371187570, FontData_set_horizontalOverflow_m1187704845, FontData_get_verticalOverflow_m1971090326, FontData_set_verticalOverflow_m1743547277, FontData_get_lineSpacing_m3558513826, FontData_set_lineSpacing_m3483835721, FontUpdateTracker__cctor_m1924252658, FontUpdateTracker_TrackText_m1576315537, FontUpdateTracker_RebuildForFont_m4050910816, FontUpdateTracker_UntrackText_m1952028010, Graphic__ctor_m4066569555, Graphic__cctor_m1027508410, Graphic_get_defaultGraphicMaterial_m456140641, Graphic_get_color_m2048831972, Graphic_set_color_m1311501487, Graphic_get_raycastTarget_m3436649332, Graphic_set_raycastTarget_m639541381, Graphic_get_useLegacyMeshGeneration_m1330224975, Graphic_set_useLegacyMeshGeneration_m693817504, Graphic_SetAllDirty_m2074784484, Graphic_SetLayoutDirty_m2165278999, Graphic_SetVerticesDirty_m2313177576, Graphic_SetMaterialDirty_m282639610, Graphic_OnRectTransformDimensionsChange_m1660020535, Graphic_OnBeforeTransformParentChanged_m2612648205, Graphic_OnTransformParentChanged_m321513902, Graphic_get_depth_m1908843203, Graphic_get_rectTransform_m4017371950, Graphic_get_canvas_m4291384250, Graphic_CacheCanvas_m512847723, Graphic_get_canvasRenderer_m184553434, Graphic_get_defaultMaterial_m3094002583, Graphic_get_material_m3381093914, Graphic_set_material_m2202379063, Graphic_get_materialForRendering_m1154169789, Graphic_get_mainTexture_m2936700123, Graphic_OnEnable_m1102673235, Graphic_OnDisable_m264069178, Graphic_OnCanvasHierarchyChanged_m514781447, Graphic_Rebuild_m444579746, Graphic_LayoutComplete_m1944323924, Graphic_GraphicUpdateComplete_m4174302747, Graphic_UpdateMaterial_m1564277409, Graphic_UpdateGeometry_m2127951660, Graphic_DoMeshGeneration_m2507046369, Graphic_DoLegacyMeshGeneration_m3761597322, Graphic_get_workerMesh_m1691010424, Graphic_OnFillVBO_m316398351, Graphic_OnPopulateMesh_m192648803, Graphic_OnPopulateMesh_m3177058550, Graphic_OnDidApplyAnimationProperties_m3600197626, Graphic_SetNativeSize_m2816336555, Graphic_Raycast_m822891196, Graphic_PixelAdjustPoint_m440199187, Graphic_GetPixelAdjustedRect_m517144655, Graphic_CrossFadeColor_m3194947827, Graphic_CrossFadeColor_m1834346026, Graphic_CreateColorFromAlpha_m3334630, Graphic_CrossFadeAlpha_m157692256, Graphic_RegisterDirtyLayoutCallback_m4189019746, Graphic_UnregisterDirtyLayoutCallback_m856391721, Graphic_RegisterDirtyVerticesCallback_m1901460593, Graphic_UnregisterDirtyVerticesCallback_m3291531384, Graphic_RegisterDirtyMaterialCallback_m984855455, Graphic_UnregisterDirtyMaterialCallback_m2374926246, Graphic_UnityEngine_UI_ICanvasElement_IsDestroyed_m2164415202, Graphic_UnityEngine_UI_ICanvasElement_get_transform_m1663879910, GraphicRaycaster__ctor_m361051581, GraphicRaycaster__cctor_m2120568208, GraphicRaycaster_get_sortOrderPriority_m2826757774, GraphicRaycaster_get_renderOrderPriority_m4133744982, GraphicRaycaster_get_ignoreReversedGraphics_m4072803617, GraphicRaycaster_set_ignoreReversedGraphics_m1428686170, GraphicRaycaster_get_blockingObjects_m3655591395, GraphicRaycaster_set_blockingObjects_m421631540, GraphicRaycaster_get_canvas_m1333156416, GraphicRaycaster_Raycast_m1880111711, GraphicRaycaster_get_eventCamera_m2522555180, GraphicRaycaster_Raycast_m3191301018, GraphicRaycaster_U3CRaycastU3Em__3_m3990589484, GraphicRegistry__ctor_m3010929046, GraphicRegistry__cctor_m2662390999, GraphicRegistry_get_instance_m2305942177, GraphicRegistry_RegisterGraphicForCanvas_m977086278, GraphicRegistry_UnregisterGraphicForCanvas_m707013965, GraphicRegistry_GetGraphicsForCanvas_m2740028912, GridLayoutGroup__ctor_m1378214348, GridLayoutGroup_get_startCorner_m2778672189, GridLayoutGroup_set_startCorner_m2937777206, GridLayoutGroup_get_startAxis_m1539688149, GridLayoutGroup_set_startAxis_m628518814, GridLayoutGroup_get_cellSize_m1318291007, GridLayoutGroup_set_cellSize_m1641372194, GridLayoutGroup_get_spacing_m660869033, GridLayoutGroup_set_spacing_m2353797514, GridLayoutGroup_get_constraint_m3287218001, GridLayoutGroup_set_constraint_m1995004480, GridLayoutGroup_get_constraintCount_m2592905067, GridLayoutGroup_set_constraintCount_m2898625584, GridLayoutGroup_CalculateLayoutInputHorizontal_m3283749622, GridLayoutGroup_CalculateLayoutInputVertical_m1216862728, GridLayoutGroup_SetLayoutHorizontal_m3405189786, GridLayoutGroup_SetLayoutVertical_m501906092, GridLayoutGroup_SetCellsAlongAxis_m3322008010, HorizontalLayoutGroup__ctor_m9362858, HorizontalLayoutGroup_CalculateLayoutInputHorizontal_m1229423832, HorizontalLayoutGroup_CalculateLayoutInputVertical_m4119749738, HorizontalLayoutGroup_SetLayoutHorizontal_m819130872, HorizontalLayoutGroup_SetLayoutVertical_m3176307082, HorizontalOrVerticalLayoutGroup__ctor_m258856643, HorizontalOrVerticalLayoutGroup_get_spacing_m494525775, HorizontalOrVerticalLayoutGroup_set_spacing_m3226528036, HorizontalOrVerticalLayoutGroup_get_childForceExpandWidth_m1705552999, HorizontalOrVerticalLayoutGroup_set_childForceExpandWidth_m1348569144, HorizontalOrVerticalLayoutGroup_get_childForceExpandHeight_m1836349768, HorizontalOrVerticalLayoutGroup_set_childForceExpandHeight_m3910057317, HorizontalOrVerticalLayoutGroup_CalcAlongAxis_m423831906, HorizontalOrVerticalLayoutGroup_SetChildrenAlongAxis_m3440700494, Image__ctor_m3858093632, Image__cctor_m3154689389, Image_get_sprite_m3572636301, Image_set_sprite_m572551402, Image_get_overrideSprite_m3218085753, Image_set_overrideSprite_m129622486, Image_get_type_m1778977993, Image_set_type_m3406009990, Image_get_preserveAspect_m1146932479, Image_set_preserveAspect_m3374507356, Image_get_fillCenter_m3817752307, Image_set_fillCenter_m811493200, Image_get_fillMethod_m2526834505, Image_set_fillMethod_m505110962, Image_get_fillAmount_m3193252212, Image_set_fillAmount_m1583793743, Image_get_fillClockwise_m2414458422, Image_set_fillClockwise_m3747842887, Image_get_fillOrigin_m2333809822, Image_set_fillOrigin_m3202820731, Image_get_eventAlphaThreshold_m2236338352, Image_set_eventAlphaThreshold_m229582947, Image_get_mainTexture_m3619971528, Image_get_hasBorder_m2233588589, Image_get_pixelsPerUnit_m2679127645, Image_OnBeforeSerialize_m3089868192, Image_OnAfterDeserialize_m1760560454, Image_GetDrawingDimensions_m755640489, Image_SetNativeSize_m828608152, Image_OnPopulateMesh_m435930979, Image_GenerateSimpleSprite_m106729008, Image_GenerateSlicedSprite_m4239922765, Image_GenerateTiledSprite_m4269137945, Image_AddQuad_m3277178, Image_AddQuad_m2061170408, Image_GetAdjustedBorders_m3337288947, Image_GenerateFilledSprite_m589086176, Image_RadialCut_m2286713844, Image_RadialCut_m531564570, Image_CalculateLayoutInputHorizontal_m3229499650, Image_CalculateLayoutInputVertical_m2293900052, Image_get_minWidth_m214977549, Image_get_preferredWidth_m63596798, Image_get_flexibleWidth_m1852529796, Image_get_minHeight_m2873151074, Image_get_preferredHeight_m2475315089, Image_get_flexibleHeight_m2097663179, Image_get_layoutPriority_m1611774403, Image_IsRaycastLocationValid_m1303041002, Image_MapCoordinate_m1478133288, InputField__ctor_m2020289915, InputField__cctor_m2017349010, InputField_get_mesh_m2359671532, InputField_get_cachedInputTextGenerator_m1093502060, InputField_set_shouldHideMobileInput_m4025452486, InputField_get_shouldHideMobileInput_m3268284241, InputField_get_shouldActivateOnSelect_m3772452453, InputField_get_text_m3972300732, InputField_set_text_m203843887, InputField_get_isFocused_m1249071051, InputField_get_caretBlinkRate_m3180928607, InputField_set_caretBlinkRate_m3976284076, InputField_get_caretWidth_m168198637, InputField_set_caretWidth_m566265370, InputField_get_textComponent_m2329519363, InputField_set_textComponent_m4116377302, InputField_get_placeholder_m1494472373, InputField_set_placeholder_m1981544106, InputField_get_caretColor_m3643265483, InputField_set_caretColor_m1187620416, InputField_get_customCaretColor_m15835893, InputField_set_customCaretColor_m2443486254, InputField_get_selectionColor_m240252578, InputField_set_selectionColor_m1343496137, InputField_get_onEndEdit_m3802925699, InputField_set_onEndEdit_m2414983338, InputField_get_onValueChange_m2707279446, InputField_set_onValueChange_m1682014085, InputField_get_onValueChanged_m2321341872, InputField_set_onValueChanged_m3205399099, InputField_get_onValidateInput_m2116536287, InputField_set_onValidateInput_m1603970312, InputField_get_characterLimit_m2780159932, InputField_set_characterLimit_m1004148585, InputField_get_contentType_m1921772191, InputField_set_contentType_m831644236, InputField_get_lineType_m3024149779, InputField_set_lineType_m2862985194, InputField_get_inputType_m2348834559, InputField_set_inputType_m3518963754, InputField_get_keyboardType_m682150197, InputField_set_keyboardType_m2584868886, InputField_get_characterValidation_m4244038975, InputField_set_characterValidation_m3783277294, InputField_get_readOnly_m991875110, InputField_set_readOnly_m1486621087, InputField_get_multiLine_m2265790891, InputField_get_asteriskChar_m3297406588, InputField_set_asteriskChar_m353877103, InputField_get_wasCanceled_m3717712640, InputField_ClampPos_m1654447641, InputField_get_caretPositionInternal_m1805548065, InputField_set_caretPositionInternal_m3521473046, InputField_get_caretSelectPositionInternal_m2541357245, InputField_set_caretSelectPositionInternal_m4114170802, InputField_get_hasSelection_m69592150, InputField_get_caretPosition_m1600046468, InputField_set_caretPosition_m417406201, InputField_get_selectionAnchorPosition_m3946868514, InputField_set_selectionAnchorPosition_m4265241751, InputField_get_selectionFocusPosition_m3487835103, InputField_set_selectionFocusPosition_m3645383436, InputField_OnEnable_m3151717419, InputField_OnDisable_m3654896738, InputField_CaretBlink_m3410390944, InputField_SetCaretVisible_m1704739146, InputField_SetCaretActive_m1463120, InputField_OnFocus_m466029714, InputField_SelectAll_m4063966302, InputField_MoveTextEnd_m2126814125, InputField_MoveTextStart_m2867546804, InputField_get_clipboard_m1517672713, InputField_set_clipboard_m1137802704, InputField_InPlaceEditing_m3152517681, InputField_LateUpdate_m658657720, InputField_ScreenToLocal_m1499722466, InputField_GetUnclampedCharacterLineFromPosition_m3510038353, InputField_GetCharacterIndexFromPosition_m4275941159, InputField_MayDrag_m3557501854, InputField_OnBeginDrag_m1531063271, InputField_OnDrag_m91839394, InputField_MouseDragOutsideRect_m854880935, InputField_OnEndDrag_m4049045301, InputField_OnPointerDown_m2912611813, InputField_KeyPressed_m56514315, InputField_IsValidChar_m3270378798, InputField_ProcessEvent_m946297147, InputField_OnUpdateSelected_m636353350, InputField_GetSelectedString_m1040556478, InputField_FindtNextWordBegin_m2221118514, InputField_MoveRight_m815186690, InputField_FindtPrevWordBegin_m201815282, InputField_MoveLeft_m2120951525, InputField_DetermineCharacterLine_m3657739513, InputField_LineUpCharacterPosition_m1478103368, InputField_LineDownCharacterPosition_m263003663, InputField_MoveDown_m1297332275, InputField_MoveDown_m3574910698, InputField_MoveUp_m3783029356, InputField_MoveUp_m2694527889, InputField_Delete_m3723424084, InputField_ForwardSpace_m957387114, InputField_Backspace_m3222521688, InputField_Insert_m2452101819, InputField_SendOnValueChangedAndUpdateLabel_m3331240455, InputField_SendOnValueChanged_m2613517587, InputField_SendOnSubmit_m3215072040, InputField_Append_m2987278559, InputField_Append_m917566458, InputField_UpdateLabel_m4272237956, InputField_IsSelectionVisible_m1151128811, InputField_GetLineStartPosition_m1032176150, InputField_GetLineEndPosition_m293479951, InputField_SetDrawRangeToContainCaretPosition_m2772169252, InputField_ForceLabelUpdate_m3497155803, InputField_MarkGeometryAsDirty_m178860986, InputField_Rebuild_m4149891194, InputField_LayoutComplete_m3197989932, InputField_GraphicUpdateComplete_m2162277955, InputField_UpdateGeometry_m3381617668, InputField_AssignPositioningIfNeeded_m20735637, InputField_OnFillVBO_m2411846934, InputField_GenerateCaret_m2836783818, InputField_CreateCursorVerts_m1990252457, InputField_GenerateHightlight_m3464703695, InputField_Validate_m4235185069, InputField_ActivateInputField_m2072753740, InputField_ActivateInputFieldInternal_m2572296937, InputField_OnSelect_m1785968830, InputField_OnPointerClick_m2029011499, InputField_DeactivateInputField_m2310323789, InputField_OnDeselect_m1884183999, InputField_OnSubmit_m3450763226, InputField_EnforceContentType_m4178225210, InputField_SetToCustomIfContentTypeIsNot_m1700869631, InputField_SetToCustom_m2598912359, InputField_DoStateTransition_m1731594340, InputField_UnityEngine_UI_ICanvasElement_IsDestroyed_m2781637606, InputField_UnityEngine_UI_ICanvasElement_get_transform_m2979159434, U3CCaretBlinkU3Ec__Iterator3__ctor_m1860697329, U3CCaretBlinkU3Ec__Iterator3_System_Collections_Generic_IEnumeratorU3CobjectU3E_get_Current_m1074854283, U3CCaretBlinkU3Ec__Iterator3_System_Collections_IEnumerator_get_Current_m2948952863, U3CCaretBlinkU3Ec__Iterator3_MoveNext_m4141316197, U3CCaretBlinkU3Ec__Iterator3_Dispose_m1322021102, U3CCaretBlinkU3Ec__Iterator3_Reset_m3802097566, U3CMouseDragOutsideRectU3Ec__Iterator4__ctor_m1030435559, U3CMouseDragOutsideRectU3Ec__Iterator4_System_Collections_Generic_IEnumeratorU3CobjectU3E_get_Current_m265708309, U3CMouseDragOutsideRectU3Ec__Iterator4_System_Collections_IEnumerator_get_Current_m3574804649, U3CMouseDragOutsideRectU3Ec__Iterator4_MoveNext_m656051503, U3CMouseDragOutsideRectU3Ec__Iterator4_Dispose_m2304377188, U3CMouseDragOutsideRectU3Ec__Iterator4_Reset_m2971835796, OnChangeEvent__ctor_m1829440895, OnValidateInput__ctor_m318825293, OnValidateInput_Invoke_m1377115157, OnValidateInput_BeginInvoke_m2130883566, OnValidateInput_EndInvoke_m1254779679, SubmitEvent__ctor_m3123354920, LayoutElement__ctor_m1101568265, LayoutElement_get_ignoreLayout_m3020545774, LayoutElement_set_ignoreLayout_m31533195, LayoutElement_CalculateLayoutInputHorizontal_m3047948889, LayoutElement_CalculateLayoutInputVertical_m809913899, LayoutElement_get_minWidth_m3361650980, LayoutElement_set_minWidth_m2427874975, LayoutElement_get_minHeight_m1635779627, LayoutElement_set_minHeight_m400728776, LayoutElement_get_preferredWidth_m616720597, LayoutElement_set_preferredWidth_m1262908558, LayoutElement_get_preferredHeight_m2442283674, LayoutElement_set_preferredHeight_m2941475513, LayoutElement_get_flexibleWidth_m3810035149, LayoutElement_set_flexibleWidth_m2155570278, LayoutElement_get_flexibleHeight_m2650786978, LayoutElement_set_flexibleHeight_m549217761, LayoutElement_get_layoutPriority_m2626166170, LayoutElement_OnEnable_m1046652381, LayoutElement_OnTransformParentChanged_m4077176376, LayoutElement_OnDisable_m2822390000, LayoutElement_OnDidApplyAnimationProperties_m614601136, LayoutElement_OnBeforeTransformParentChanged_m253470231, LayoutElement_SetDirty_m1279144619, LayoutGroup__ctor_m1400544614, LayoutGroup_get_padding_m3073855587, LayoutGroup_set_padding_m1597085962, LayoutGroup_get_childAlignment_m357689196, LayoutGroup_set_childAlignment_m2559376521, LayoutGroup_get_rectTransform_m331638721, LayoutGroup_get_rectChildren_m2856991542, LayoutGroup_CalculateLayoutInputHorizontal_m89763996, LayoutGroup_get_minWidth_m1427346727, LayoutGroup_get_preferredWidth_m3558143640, LayoutGroup_get_flexibleWidth_m2519446442, LayoutGroup_get_minHeight_m1801889928, LayoutGroup_get_preferredHeight_m3432084791, LayoutGroup_get_flexibleHeight_m1297242725, LayoutGroup_get_layoutPriority_m3819074141, LayoutGroup_OnEnable_m88893536, LayoutGroup_OnDisable_m3196636877, LayoutGroup_OnDidApplyAnimationProperties_m657723149, LayoutGroup_GetTotalMinSize_m3187537614, LayoutGroup_GetTotalPreferredSize_m2664141949, LayoutGroup_GetTotalFlexibleSize_m2703956501, LayoutGroup_GetStartOffset_m3060950207, LayoutGroup_SetLayoutInputForAxis_m396008818, LayoutGroup_SetChildAlongAxis_m4214960168, LayoutGroup_get_isRootLayoutGroup_m3172189078, LayoutGroup_OnRectTransformDimensionsChange_m30528906, LayoutGroup_OnTransformChildrenChanged_m420993286, LayoutGroup_SetDirty_m321385774, LayoutRebuilder__ctor_m3516226301, LayoutRebuilder__cctor_m1146736720, LayoutRebuilder_Initialize_m1265316458, LayoutRebuilder_Clear_m922359592, LayoutRebuilder_ReapplyDrivenProperties_m965971988, LayoutRebuilder_get_transform_m3231462112, LayoutRebuilder_IsDestroyed_m4004091228, LayoutRebuilder_StripDisabledBehavioursFromList_m51650679, LayoutRebuilder_ForceRebuildLayoutImmediate_m3701079759, LayoutRebuilder_Rebuild_m407530040, LayoutRebuilder_PerformLayoutControl_m724256510, LayoutRebuilder_PerformLayoutCalculation_m941802386, LayoutRebuilder_MarkLayoutForRebuild_m901621521, LayoutRebuilder_ValidLayoutGroup_m1488924317, LayoutRebuilder_ValidController_m2724682388, LayoutRebuilder_MarkLayoutRootForRebuild_m1708966351, LayoutRebuilder_LayoutComplete_m182540522, LayoutRebuilder_GraphicUpdateComplete_m408201157, LayoutRebuilder_GetHashCode_m1333271044, LayoutRebuilder_Equals_m3575022752, LayoutRebuilder_ToString_m2403814582, LayoutRebuilder_U3Cs_RebuildersU3Em__6_m831129568, LayoutRebuilder_U3CStripDisabledBehavioursFromListU3Em__7_m1620076941, LayoutRebuilder_U3CRebuildU3Em__8_m1336267783, LayoutRebuilder_U3CRebuildU3Em__9_m1269261030, LayoutRebuilder_U3CRebuildU3Em__A_m733207006, LayoutRebuilder_U3CRebuildU3Em__B_m666200253, LayoutUtility_GetMinSize_m220738634, LayoutUtility_GetPreferredSize_m889669625, LayoutUtility_GetFlexibleSize_m3922234755, LayoutUtility_GetMinWidth_m3030453932, LayoutUtility_GetPreferredWidth_m2872373467, LayoutUtility_GetFlexibleWidth_m1272624485, LayoutUtility_GetMinHeight_m1456033095, LayoutUtility_GetPreferredHeight_m850505976, LayoutUtility_GetFlexibleHeight_m2797895086, LayoutUtility_GetLayoutProperty_m846328268, LayoutUtility_GetLayoutProperty_m3561974560, LayoutUtility_U3CGetMinWidthU3Em__C_m2477279317, LayoutUtility_U3CGetPreferredWidthU3Em__D_m626210533, LayoutUtility_U3CGetPreferredWidthU3Em__E_m2911073988, LayoutUtility_U3CGetFlexibleWidthU3Em__F_m2196499833, LayoutUtility_U3CGetMinHeightU3Em__10_m3245482414, LayoutUtility_U3CGetPreferredHeightU3Em__11_m3744212990, LayoutUtility_U3CGetPreferredHeightU3Em__12_m1734109149, LayoutUtility_U3CGetFlexibleHeightU3Em__13_m3482485010, Mask__ctor_m3917673311, Mask_get_rectTransform_m950047934, Mask_get_showMaskGraphic_m2608629537, Mask_set_showMaskGraphic_m218433430, Mask_get_graphic_m2101144526, Mask_MaskEnabled_m1398570944, Mask_OnSiblingGraphicEnabledDisabled_m1780324373, Mask_OnEnable_m2035884999, Mask_OnDisable_m3423830086, Mask_IsRaycastLocationValid_m4053137295, Mask_GetModifiedMaterial_m3826173342, MaskableGraphic__ctor_m3514233785, MaskableGraphic_get_onCullStateChanged_m2293098922, MaskableGraphic_set_onCullStateChanged_m1901835143, MaskableGraphic_get_maskable_m2226181992, MaskableGraphic_set_maskable_m3088187909, MaskableGraphic_GetModifiedMaterial_m2422156902, MaskableGraphic_Cull_m1710243867, MaskableGraphic_SetClipRect_m3970693835, MaskableGraphic_OnEnable_m487460141, MaskableGraphic_OnDisable_m2667299744, MaskableGraphic_OnTransformParentChanged_m2836893064, MaskableGraphic_ParentMaskStateChanged_m3501359204, MaskableGraphic_OnCanvasHierarchyChanged_m3030160609, MaskableGraphic_get_canvasRect_m2184399948, MaskableGraphic_UpdateClipParent_m2337272942, MaskableGraphic_RecalculateClipping_m400162188, MaskableGraphic_RecalculateMasking_m2250524558, MaskableGraphic_UnityEngine_UI_IClippable_get_rectTransform_m3856601786, CullStateChangedEvent__ctor_m2540235971, MaskUtilities__ctor_m1166009725, MaskUtilities_Notify2DMaskStateChanged_m2199550555, MaskUtilities_NotifyStencilStateChanged_m2159873435, MaskUtilities_FindRootSortOverrideCanvas_m4219954651, MaskUtilities_GetStencilDepth_m2786493988, MaskUtilities_GetRectMaskForClippable_m396614586, MaskUtilities_GetRectMasksForClip_m447525417, Misc_Destroy_m612433153, Misc_DestroyImmediate_m40421862, Navigation_get_mode_m721480509, Navigation_set_mode_m1506614802, Navigation_get_selectOnUp_m2566832818, Navigation_set_selectOnUp_m2875366329, Navigation_get_selectOnDown_m929912185, Navigation_set_selectOnDown_m2647056978, Navigation_get_selectOnLeft_m1149209502, Navigation_set_selectOnLeft_m619081677, Navigation_get_selectOnRight_m2410966663, Navigation_set_selectOnRight_m1544013280, Navigation_get_defaultNavigation_m492829917, Outline__ctor_m4004117817, Outline_ModifyMesh_m4125422123, PositionAsUV1__ctor_m3124267078, PositionAsUV1_ModifyMesh_m2424047928, RawImage__ctor_m3149617176, RawImage_get_mainTexture_m3607327198, RawImage_get_texture_m2545896727, RawImage_set_texture_m153141914, RawImage_get_uvRect_m605244702, RawImage_set_uvRect_m1381047731, RawImage_SetNativeSize_m131446896, RawImage_OnPopulateMesh_m1483685179, RectangularVertexClipper__ctor_m1771616896, RectangularVertexClipper_GetCanvasRect_m4121299266, RectMask2D__ctor_m743839689, RectMask2D_get_canvasRect_m3883544836, RectMask2D_get_rectTransform_m3879504040, RectMask2D_OnEnable_m4063473437, RectMask2D_OnDisable_m1854562224, RectMask2D_IsRaycastLocationValid_m3081840229, RectMask2D_PerformClipping_m2105337834, RectMask2D_AddClippable_m3020362282, RectMask2D_RemoveClippable_m2506427137, RectMask2D_OnTransformParentChanged_m136007544, RectMask2D_OnCanvasHierarchyChanged_m329275089, Scrollbar__ctor_m842961365, Scrollbar_get_handleRect_m2010533702, Scrollbar_set_handleRect_m2375555625, Scrollbar_get_direction_m2158550533, Scrollbar_set_direction_m1167543746, Scrollbar_get_value_m3398262479, Scrollbar_set_value_m1765490852, Scrollbar_get_size_m1139900549, Scrollbar_set_size_m298852062, Scrollbar_get_numberOfSteps_m1873821577, Scrollbar_set_numberOfSteps_m2505501262, Scrollbar_get_onValueChanged_m312588368, Scrollbar_set_onValueChanged_m2941912493, Scrollbar_get_stepSize_m1660915953, Scrollbar_Rebuild_m36029024, Scrollbar_LayoutComplete_m4096546066, Scrollbar_GraphicUpdateComplete_m3945082525, Scrollbar_OnEnable_m2059823505, Scrollbar_OnDisable_m4165923772, Scrollbar_UpdateCachedReferences_m1478280386, Scrollbar_Set_m2588040310, Scrollbar_Set_m3384196167, Scrollbar_OnRectTransformDimensionsChange_m1089670457, Scrollbar_get_axis_m3425831999, Scrollbar_get_reverseValue_m581327093, Scrollbar_UpdateVisuals_m2753592989, Scrollbar_UpdateDrag_m494154322, Scrollbar_MayDrag_m2868972512, Scrollbar_OnBeginDrag_m1703358541, Scrollbar_OnDrag_m4023431036, Scrollbar_OnPointerDown_m984641739, Scrollbar_ClickRepeat_m1553202218, Scrollbar_OnPointerUp_m2249681202, Scrollbar_OnMove_m2506066825, Scrollbar_FindSelectableOnLeft_m976215998, Scrollbar_FindSelectableOnRight_m1343135335, Scrollbar_FindSelectableOnUp_m2968886994, Scrollbar_FindSelectableOnDown_m756918681, Scrollbar_OnInitializePotentialDrag_m2407430440, Scrollbar_SetDirection_m826288644, Scrollbar_UnityEngine_UI_ICanvasElement_IsDestroyed_m3229708772, Scrollbar_UnityEngine_UI_ICanvasElement_get_transform_m1065549160, U3CClickRepeatU3Ec__Iterator5__ctor_m46482857, U3CClickRepeatU3Ec__Iterator5_System_Collections_Generic_IEnumeratorU3CobjectU3E_get_Current_m1538503635, U3CClickRepeatU3Ec__Iterator5_System_Collections_IEnumerator_get_Current_m1635106151, U3CClickRepeatU3Ec__Iterator5_MoveNext_m451466413, U3CClickRepeatU3Ec__Iterator5_Dispose_m1618635686, U3CClickRepeatU3Ec__Iterator5_Reset_m1987883094, ScrollEvent__ctor_m2724827255, ScrollRect__ctor_m3113131930, ScrollRect_get_content_m3701632330, ScrollRect_set_content_m234982541, ScrollRect_get_horizontal_m3680042345, ScrollRect_set_horizontal_m943369506, ScrollRect_get_vertical_m135712059, ScrollRect_set_vertical_m3763666420, ScrollRect_get_movementType_m4014199657, ScrollRect_set_movementType_m4233390924, ScrollRect_get_elasticity_m1540742464, ScrollRect_set_elasticity_m957382251, ScrollRect_get_inertia_m723925623, ScrollRect_set_inertia_m4277812460, ScrollRect_get_decelerationRate_m2763364646, ScrollRect_set_decelerationRate_m1911965765, ScrollRect_get_scrollSensitivity_m1352024717, ScrollRect_set_scrollSensitivity_m310245950, ScrollRect_get_viewport_m1780465687, ScrollRect_set_viewport_m1031184500, ScrollRect_get_horizontalScrollbar_m2383265157, ScrollRect_set_horizontalScrollbar_m2130920826, ScrollRect_get_verticalScrollbar_m801913715, ScrollRect_set_verticalScrollbar_m845729640, ScrollRect_get_horizontalScrollbarVisibility_m2805283129, ScrollRect_set_horizontalScrollbarVisibility_m1831067046, ScrollRect_get_verticalScrollbarVisibility_m1678458407, ScrollRect_set_verticalScrollbarVisibility_m4230518264, ScrollRect_get_horizontalScrollbarSpacing_m2867145992, ScrollRect_set_horizontalScrollbarSpacing_m1996166051, ScrollRect_get_verticalScrollbarSpacing_m1095438682, ScrollRect_set_verticalScrollbarSpacing_m4137600145, ScrollRect_get_onValueChanged_m4119396560, ScrollRect_set_onValueChanged_m499269979, ScrollRect_get_viewRect_m911909082, ScrollRect_get_velocity_m4218059637, ScrollRect_set_velocity_m4003401302, ScrollRect_get_rectTransform_m836427513, ScrollRect_Rebuild_m3329025723, ScrollRect_LayoutComplete_m1579087085, ScrollRect_GraphicUpdateComplete_m2238911074, ScrollRect_UpdateCachedData_m4281892159, ScrollRect_OnEnable_m4156082604, ScrollRect_OnDisable_m430479105, ScrollRect_IsActive_m1128064300, ScrollRect_EnsureLayoutHasRebuilt_m1972800323, ScrollRect_StopMovement_m4209251323, ScrollRect_OnScroll_m2633232840, ScrollRect_OnInitializePotentialDrag_m2313515395, ScrollRect_OnBeginDrag_m1465783272, ScrollRect_OnEndDrag_m1604287350, ScrollRect_OnDrag_m286963457, ScrollRect_SetContentAnchoredPosition_m716182300, ScrollRect_LateUpdate_m3780926201, ScrollRect_UpdatePrevData_m454081040, ScrollRect_UpdateScrollbars_m2912536474, ScrollRect_get_normalizedPosition_m1721330264, ScrollRect_set_normalizedPosition_m2973019475, ScrollRect_get_horizontalNormalizedPosition_m1672288203, ScrollRect_set_horizontalNormalizedPosition_m2007203264, ScrollRect_get_verticalNormalizedPosition_m4163579805, ScrollRect_set_verticalNormalizedPosition_m2636032814, ScrollRect_SetHorizontalNormalizedPosition_m653475821, ScrollRect_SetVerticalNormalizedPosition_m3957527707, ScrollRect_SetNormalizedPosition_m4196700166, ScrollRect_RubberDelta_m403235940, ScrollRect_OnRectTransformDimensionsChange_m2105458366, ScrollRect_get_hScrollingNeeded_m1668641607, ScrollRect_get_vScrollingNeeded_m594530553, ScrollRect_CalculateLayoutInputHorizontal_m4036022504, ScrollRect_CalculateLayoutInputVertical_m4225463418, ScrollRect_get_minWidth_m525847771, ScrollRect_get_preferredWidth_m2213910348, ScrollRect_get_flexibleWidth_m2753178742, ScrollRect_get_minHeight_m3920193364, ScrollRect_get_preferredHeight_m415558403, ScrollRect_get_flexibleHeight_m4247976729, ScrollRect_get_layoutPriority_m3681037785, ScrollRect_SetLayoutHorizontal_m1751158760, ScrollRect_SetLayoutVertical_m1385100154, ScrollRect_UpdateScrollbarVisibility_m2808994247, ScrollRect_UpdateScrollbarLayout_m2579760607, ScrollRect_UpdateBounds_m1752242888, ScrollRect_GetBounds_m1535126094, ScrollRect_CalculateOffset_m224839950, ScrollRect_SetDirty_m93607546, ScrollRect_SetDirtyCaching_m4215531847, ScrollRect_UnityEngine_UI_ICanvasElement_IsDestroyed_m1861319301, ScrollRect_UnityEngine_UI_ICanvasElement_get_transform_m3316531305, ScrollRectEvent__ctor_m985343040, Selectable__ctor_m1133588277, Selectable__cctor_m299402008, Selectable_get_allSelectables_m476416992, Selectable_get_navigation_m3138151376, Selectable_set_navigation_m3946690907, Selectable_get_transition_m4100650273, Selectable_set_transition_m1538436886, Selectable_get_colors_m2926475394, Selectable_set_colors_m2365118697, Selectable_get_spriteState_m102480676, Selectable_set_spriteState_m3715637593, Selectable_get_animationTriggers_m4030265988, Selectable_set_animationTriggers_m1859718713, Selectable_get_targetGraphic_m1206082259, Selectable_set_targetGraphic_m54088136, Selectable_get_interactable_m1204033370, Selectable_set_interactable_m2686686419, Selectable_get_isPointerInside_m3778852455, Selectable_set_isPointerInside_m1584068316, Selectable_get_isPointerDown_m451775501, Selectable_set_isPointerDown_m2193598850, Selectable_get_hasSelection_m771189340, Selectable_set_hasSelection_m138443861, Selectable_get_image_m978701700, Selectable_set_image_m4179082937, Selectable_get_animator_m1533578598, Selectable_Awake_m1371193496, Selectable_OnCanvasGroupChanged_m4067350875, Selectable_IsInteractable_m1810942779, Selectable_OnDidApplyAnimationProperties_m4092978140, Selectable_OnEnable_m1472090161, Selectable_OnSetProperty_m571656523, Selectable_OnDisable_m3126059292, Selectable_get_currentSelectionState_m730905540, Selectable_InstantClearState_m1586585368, Selectable_DoStateTransition_m1211483242, Selectable_FindSelectable_m1109039701, Selectable_GetPointOnRectEdge_m371681446, Selectable_Navigate_m2039225725, Selectable_FindSelectableOnLeft_m3101734378, Selectable_FindSelectableOnRight_m2809695675, Selectable_FindSelectableOnUp_m3489533950, Selectable_FindSelectableOnDown_m2882437061, Selectable_OnMove_m2478875177, Selectable_StartColorTween_m2559093428, Selectable_DoSpriteSwap_m1929545238, Selectable_TriggerAnimation_m2433448647, Selectable_IsHighlighted_m4047826052, Selectable_IsPressed_m3407797331, Selectable_IsPressed_m2192098489, Selectable_UpdateSelectionState_m2602683415, Selectable_EvaluateAndTransitionToSelectionState_m2419808192, Selectable_InternalEvaluateAndTransitionToSelectionState_m543442976, Selectable_OnPointerDown_m706592619, Selectable_OnPointerUp_m533192658, Selectable_OnPointerEnter_m1831644693, Selectable_OnPointerExit_m1099674991, Selectable_OnSelect_m2798350404, Selectable_OnDeselect_m4120267717, Selectable_Select_m2377336299, SetPropertyUtility_SetColor_m4210708935, Shadow__ctor_m2944649643, Shadow_get_effectColor_m2953989785, Shadow_set_effectColor_m1407835720, Shadow_get_effectDistance_m1102454733, Shadow_set_effectDistance_m192801982, Shadow_get_useGraphicAlpha_m3687634123, Shadow_set_useGraphicAlpha_m3814129472, Shadow_ApplyShadowZeroAlloc_m338158484, Shadow_ApplyShadow_m3534003541, Shadow_ModifyMesh_m111179421, Slider__ctor_m347403018, Slider_get_fillRect_m2450877128, Slider_set_fillRect_m3297119715, Slider_get_handleRect_m2151134125, Slider_set_handleRect_m3189108254, Slider_get_direction_m2329138173, Slider_set_direction_m1506600084, Slider_get_minValue_m84589142, Slider_set_minValue_m3023646485, Slider_get_maxValue_m1907557124, Slider_set_maxValue_m4261736743, Slider_get_wholeNumbers_m3990960296, Slider_set_wholeNumbers_m3974827169, Slider_get_value_m2021634844, Slider_set_value_m4201041935, Slider_get_normalizedValue_m2918004645, Slider_set_normalizedValue_m3382161958, Slider_get_onValueChanged_m3585429728, Slider_set_onValueChanged_m544103115, Slider_get_stepSize_m3189751172, Slider_Rebuild_m204900683, Slider_LayoutComplete_m3716644733, Slider_GraphicUpdateComplete_m837060050, Slider_OnEnable_m683704380, Slider_OnDisable_m160936561, Slider_OnDidApplyAnimationProperties_m317765809, Slider_UpdateCachedReferences_m3913831469, Slider_ClampValue_m4124802439, Slider_Set_m2575079457, Slider_Set_m2043565372, Slider_OnRectTransformDimensionsChange_m4044006958, Slider_get_axis_m591825817, Slider_get_reverseValue_m1915319492, Slider_UpdateVisuals_m1355864786, Slider_UpdateDrag_m913163651, Slider_MayDrag_m2965973935, Slider_OnPointerDown_m2064356406, Slider_OnDrag_m2689187441, Slider_OnMove_m3684755636, Slider_FindSelectableOnLeft_m601280629, Slider_FindSelectableOnRight_m2605040784, Slider_FindSelectableOnUp_m3326038345, Slider_FindSelectableOnDown_m381983312, Slider_OnInitializePotentialDrag_m3120616467, Slider_SetDirection_m1955116790, Slider_UnityEngine_UI_ICanvasElement_IsDestroyed_m1155329269, Slider_UnityEngine_UI_ICanvasElement_get_transform_m2086174425, SliderEvent__ctor_m1429088576, SpriteState_get_highlightedSprite_m2511270273, SpriteState_set_highlightedSprite_m2778751948, SpriteState_get_pressedSprite_m591013456, SpriteState_set_pressedSprite_m2255650395, SpriteState_get_disabledSprite_m1512804506, SpriteState_set_disabledSprite_m1447937271, StencilMaterial__cctor_m2688860949, StencilMaterial_Add_m1399519863, StencilMaterial_Add_m310944030, StencilMaterial_Add_m264449278, StencilMaterial_Remove_m1013236306, StencilMaterial_ClearAll_m3351668800, MatEntry__ctor_m3447775725, Text__ctor_m216739390, Text__cctor_m1941857583, Text_get_cachedTextGenerator_m337653083, Text_get_cachedTextGeneratorForLayout_m1260141146, Text_get_mainTexture_m718426116, Text_FontTextureChanged_m740758478, Text_get_font_m2437753165, Text_set_font_m1978976364, Text_get_text_m3833038297, Text_set_text_m302679026, Text_get_supportRichText_m226316153, Text_set_supportRichText_m1299469806, Text_get_resizeTextForBestFit_m3751631302, Text_set_resizeTextForBestFit_m241625791, Text_get_resizeTextMinSize_m557265325, Text_set_resizeTextMinSize_m3506017186, Text_get_resizeTextMaxSize_m4079754047, Text_set_resizeTextMaxSize_m2626859572, Text_get_alignment_m2624482868, Text_set_alignment_m4246723817, Text_get_alignByGeometry_m3404407727, Text_set_alignByGeometry_m812094372, Text_get_fontSize_m2862645687, Text_set_fontSize_m2013207524, Text_get_horizontalOverflow_m428751238, Text_set_horizontalOverflow_m1764021409, Text_get_verticalOverflow_m4214690218, Text_set_verticalOverflow_m1954003489, Text_get_lineSpacing_m2968404366, Text_set_lineSpacing_m3440093, Text_get_fontStyle_m1258883933, Text_set_fontStyle_m2882242342, Text_get_pixelsPerUnit_m4148756467, Text_OnEnable_m3618900104, Text_OnDisable_m957690789, Text_UpdateGeometry_m1493208737, Text_GetGenerationSettings_m554596117, Text_GetTextAnchorPivot_m7192668, Text_OnPopulateMesh_m869628001, Text_CalculateLayoutInputHorizontal_m2550743748, Text_CalculateLayoutInputVertical_m4013862230, Text_get_minWidth_m1415472311, Text_get_preferredWidth_m2672417320, Text_get_flexibleWidth_m3322158618, Text_get_minHeight_m1433783032, Text_get_preferredHeight_m1744372647, Text_get_flexibleHeight_m411516405, Text_get_layoutPriority_m4042521525, Toggle__ctor_m4173251063, Toggle_get_group_m514230010, Toggle_set_group_m4294827183, Toggle_Rebuild_m1120034174, Toggle_LayoutComplete_m3030592304, Toggle_GraphicUpdateComplete_m1104468671, Toggle_OnEnable_m975679023, Toggle_OnDisable_m622215902, Toggle_OnDidApplyAnimationProperties_m3936866462, Toggle_SetToggleGroup_m4196871663, Toggle_get_isOn_m2105608497, Toggle_set_isOn_m3467664234, Toggle_Set_m1284620590, Toggle_Set_m1795838095, Toggle_PlayEffect_m2897367561, Toggle_Start_m3120388855, Toggle_InternalToggle_m3534245278, Toggle_OnPointerClick_m3273211815, Toggle_OnSubmit_m2658606814, Toggle_UnityEngine_UI_ICanvasElement_IsDestroyed_m3606481250, Toggle_UnityEngine_UI_ICanvasElement_get_transform_m4001149958, ToggleEvent__ctor_m110328288, ToggleGroup__ctor_m1179503632, ToggleGroup_get_allowSwitchOff_m1895769533, ToggleGroup_set_allowSwitchOff_m2429094938, ToggleGroup_ValidateToggleIsInGroup_m1953593831, ToggleGroup_NotifyToggleOn_m2022309259, ToggleGroup_UnregisterToggle_m451307479, ToggleGroup_RegisterToggle_m2622505488, ToggleGroup_AnyTogglesOn_m401060308, ToggleGroup_ActiveToggles_m1762871396, ToggleGroup_SetAllTogglesOff_m4240216963, ToggleGroup_U3CAnyTogglesOnU3Em__4_m3428369122, ToggleGroup_U3CActiveTogglesU3Em__5_m3656404306, VertexHelper__ctor_m3006260889, VertexHelper__ctor_m4240166773, VertexHelper__cctor_m2517678132, VertexHelper_Clear_m412394180, VertexHelper_get_currentVertCount_m3425330353, VertexHelper_get_currentIndexCount_m3847254668, VertexHelper_PopulateUIVertex_m910319817, VertexHelper_SetUIVertex_m3429482805, VertexHelper_FillMesh_m2371101047, VertexHelper_Dispose_m2696974486, VertexHelper_AddVert_m1784639198, VertexHelper_AddVert_m1490065189, VertexHelper_AddVert_m1127238042, VertexHelper_AddTriangle_m514578993, VertexHelper_AddUIVertexQuad_m765809318, VertexHelper_AddUIVertexStream_m1704624332, VertexHelper_AddUIVertexTriangleStream_m1263262953, VertexHelper_GetUIVertexStream_m1078623420, VerticalLayoutGroup__ctor_m2648549884, VerticalLayoutGroup_CalculateLayoutInputHorizontal_m1704122566, VerticalLayoutGroup_CalculateLayoutInputVertical_m920247256, VerticalLayoutGroup_SetLayoutHorizontal_m244631242, VerticalLayoutGroup_SetLayoutVertical_m2764536540, CameraController__ctor_m1305907962, CameraController_Start_m253045754, CameraController_LateUpdate_m786793369, PlayerController__ctor_m2658519486, PlayerController_Start_m1605657278, PlayerController_FixedUpdate_m270852281, PlayerController_OnTriggerEnter_m3392021114, PlayerController_SetCountText_m1021738208, Rotator__ctor_m1971779198, Rotator_Update_m2722475087, };
[ "abenzer@gmail.com" ]
abenzer@gmail.com
7868c56edba74fad9cd2693651ceb682eed26600
27da58458e8f4a70adcb0c1d8a7ed84e8342367f
/Libs/BaseLib/SharedLib/Behavior.cpp
f99e8599e5f858a9609edc7fcfd4a36730484eb3
[]
no_license
WiZFramework/BaseCross
f5c5d41abb1bfc8c5e7e0fc397a522318c95a7d2
3166d3870e818c947c2b598ff9d629c58780168d
refs/heads/master
2020-05-22T02:44:26.650636
2019-09-17T17:46:08
2019-09-17T17:46:08
64,080,808
16
4
null
null
null
null
SHIFT_JIS
C++
false
false
6,213
cpp
/*! @file Behavior.cpp @brief 行動クラス実体 @copyright Copyright (c) 2017 WiZ Tamura Hiroki,Yamanoi Yasushi. */ #include "stdafx.h" namespace basecross { //-------------------------------------------------------------------------------------- // struct Behavior::Impl; //-------------------------------------------------------------------------------------- struct Behavior::Impl { weak_ptr<GameObject> m_GameObject; explicit Impl(const shared_ptr<GameObject>& GameObjectPtr) : m_GameObject(GameObjectPtr) {} ~Impl() {} }; //-------------------------------------------------------------------------------------- /// 行動クラスの親クラス //-------------------------------------------------------------------------------------- Behavior::Behavior(const shared_ptr<GameObject>& GameObjectPtr) : pImpl(new Impl(GameObjectPtr)) {} Behavior::~Behavior() {} shared_ptr<GameObject> Behavior::GetGameObject() const { auto shptr = pImpl->m_GameObject.lock(); if (!shptr) { throw BaseException( L"GameObjectは有効ではありません", L"if (!shptr)", L"Behavior::GetGameObject()" ); } else { return shptr; } } shared_ptr<Stage> Behavior::GetStage() const { return GetGameObject()->GetStage(); } //-------------------------------------------------------------------------------------- /// 行動ユーティリティクラス //-------------------------------------------------------------------------------------- //進行方向を向くようにする void UtilBehavior::RotToHead(float LerpFact) { if (LerpFact <= 0.0f) { //補間係数が0以下なら何もしない return; } //回転の更新 //Velocityの値で、回転を変更する //これで進行方向を向くようになる auto PtrTransform = GetGameObject()->GetComponent<Transform>(); bsm::Vec3 Velocity = PtrTransform->GetVelocity(); if (Velocity.length() > 0.0f) { bsm::Vec3 Temp = Velocity; Temp.normalize(); float ToAngle = atan2(Temp.x, Temp.z); bsm::Quat Qt; Qt.rotationRollPitchYawFromVector(bsm::Vec3(0, ToAngle, 0)); Qt.normalize(); //現在の回転を取得 bsm::Quat NowQt = PtrTransform->GetQuaternion(); //現在と目標を補間 //現在と目標を補間 if (LerpFact >= 1.0f) { NowQt = Qt; } else { NowQt = XMQuaternionSlerp(NowQt, Qt, LerpFact); } PtrTransform->SetQuaternion(NowQt); } } void UtilBehavior::RotToHead(const bsm::Vec3& Velocity, float LerpFact) { if (LerpFact <= 0.0f) { //補間係数が0以下なら何もしない return; } auto PtrTransform = GetGameObject()->GetComponent<Transform>(); //回転の更新 if (Velocity.length() > 0.0f) { bsm::Vec3 Temp = Velocity; Temp.normalize(); float ToAngle = atan2(Temp.x, Temp.z); bsm::Quat Qt; Qt.rotationRollPitchYawFromVector(bsm::Vec3(0, ToAngle, 0)); Qt.normalize(); //現在の回転を取得 bsm::Quat NowQt = PtrTransform->GetQuaternion(); //現在と目標を補間 if (LerpFact >= 1.0f) { NowQt = Qt; } else { NowQt = XMQuaternionSlerp(NowQt, Qt, LerpFact); } PtrTransform->SetQuaternion(NowQt); } } //-------------------------------------------------------------------------------------- /// 何もしない行動クラス //-------------------------------------------------------------------------------------- float WaitBehavior::Execute(const bsm::Vec3& TargetPos) { auto PtrRigid = GetGameObject()->GetComponent<Rigidbody>(); auto Velo = PtrRigid->GetVelocity(); //減速 Velo *= 0.95f; PtrRigid->SetVelocity(Velo); auto Pos = GetGameObject()->GetComponent<Transform>()->GetWorldPosition(); return bsm::length(Pos - TargetPos); } float WaitBehavior::Execute(const wstring& TargetKey) { auto TargetPtr = GetStage()->GetSharedObject(TargetKey); auto TargetPos = TargetPtr->GetComponent<Transform>()->GetWorldPosition(); return Execute(TargetPos); } //-------------------------------------------------------------------------------------- // struct GravityBehavior::Impl; //-------------------------------------------------------------------------------------- struct Gravity::Impl { //現在の重力加速度 bsm::Vec3 m_Gravity; public: Impl() : m_Gravity(0, -9.8f, 0) {} ~Impl() {} }; //-------------------------------------------------------------------------------------- /// Gravity行動クラス //-------------------------------------------------------------------------------------- Gravity::Gravity(const shared_ptr<GameObject>& GameObjectPtr) : Behavior(GameObjectPtr), pImpl(new Impl()) {} Gravity::~Gravity() {} const bsm::Vec3& Gravity::GetGravity() const { return pImpl->m_Gravity; } void Gravity::SetGravity(const bsm::Vec3& gravity) { pImpl->m_Gravity = gravity; } void Gravity::SetGravity(float x, float y, float z) { pImpl->m_Gravity = bsm::Vec3(x, y, z); } void Gravity::StartJump(const bsm::Vec3& StartVec, float EscapeSpan) { auto PtrTransform = GetGameObject()->GetComponent<Transform>(); auto PtrRigid = GetGameObject()->GetComponent<Rigidbody>(); auto Velo = PtrRigid->GetGravityVelocity(); Velo += StartVec; PtrRigid->SetGravityVelocity(Velo); bsm::Vec3 EscapeVec = StartVec; //ジャンプして親オブジェクトボリュームから脱出できないとき対応 EscapeVec *= EscapeSpan; auto Pos = PtrTransform->GetWorldPosition(); Pos += EscapeVec; PtrTransform->ResetWorldPosition(Pos); } void Gravity::StartJump(float x, float y, float z, float EscapeSpan) { StartJump(bsm::Vec3(x, y, z), EscapeSpan); } void Gravity::UpdateFromTime(float CalcTime) { auto PtrRigid = GetGameObject()->GetComponent<Rigidbody>(); auto Velo = PtrRigid->GetGravityVelocity(); Velo += pImpl->m_Gravity * CalcTime; PtrRigid->SetGravityVelocity(Velo); } void Gravity::Execute() { float ElapsedTime = App::GetApp()->GetElapsedTime(); UpdateFromTime(ElapsedTime); } } //end basecross
[ "wiz.yamanoi@wiz.ac.jp" ]
wiz.yamanoi@wiz.ac.jp
2e616f141a1d4a859cb42f601893510f84cbcd57
6e8ba0f2175d1432dde337ee0b32da191051ddf5
/src/ui/SPH3DPrintPanel.cpp
cd24d2db661b9d586d8422b4a5d5c8192f725a56
[]
no_license
alundilong/NumToolKit
456947bf0a33808304bb759c8f859d58181deb77
9882919d4bf78deb7442ed9b8e01e0d9fff66495
refs/heads/master
2021-01-12T05:31:45.940296
2017-02-20T00:25:26
2017-02-20T00:25:26
77,954,776
0
0
null
null
null
null
UTF-8
C++
false
false
10,709
cpp
/* -*- c++ -*- ---------------------------------------------------------- NumToolKit - Numerical Simulation ToolKit Yijin Mao, ymao.mu@gmail.com This file is part of NumToolKit. NumToolKit 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 of the License, or (at your option) any later version. NumToolKit 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 NumToolKit. If not, see <http://www.gnu.org/licenses/>. This software is distributed under the GNU General Public License. See the README file in the top-level NumToolKit directory. ------------------------------------------------------------------------- */ #include "SPH3DPrintPanel.h" #include "ui_sph3dprintpanel.h" #include <QFileDialog> #include <QMessageBox> #include <QDebug> #include "../fea/mesh/STLMesh.h" SPH3DPrintPanel::SPH3DPrintPanel(QWidget *parent) : QWidget(parent), ui(new Ui::SPH3DPrintPanel) { ui->setupUi(this); } SPH3DPrintPanel::SPH3DPrintPanel(MainWindow *mw, ViewerWindow *vwin, QWidget *parent) : QWidget(parent), ui(new Ui::SPH3DPrintPanel), mw_(mw), vwin_(vwin), stlmesh_(NULL) { ui->setupUi(this); connect(this, SIGNAL(stlmeshLoaded()), vwin_, SLOT(updateGL())); this->setAttribute(Qt::WA_DeleteOnClose); connect(this, SIGNAL(destroyed(QObject*)), vwin_, SLOT(close())); } SPH3DPrintPanel::~SPH3DPrintPanel() { delete ui; } void SPH3DPrintPanel::on_loadStlMeshBotton_clicked() { QString fileName = QFileDialog::getOpenFileName(this,"Open the file"); QFile file(fileName); if(!file.open(QFile::ReadOnly | QFile::Text)) { QMessageBox::warning(NULL,"..", "file not open"); return; } stlmesh_ = new STLMesh(fileName); qDebug() << "SPH 3D Printing Panel : number of faces : " << stlmesh()->nFaces(); if(stlmesh()->meshState()) { vwin_->setFormat(QString("stl")); vwin_->setSTLMeshLoadedState(true); vwin_->setSTLMesh(stlmesh_); emit stlmeshLoaded(); } } void SPH3DPrintPanel::on_dumpButton_clicked() { if(stlmesh()->meshState()) { /* ITEM: TIMESTEP 5000 ITEM: NUMBER OF ATOMS 234 ITEM: BOX BOUNDS -99.9998 99.9998 -99.9993 99.9993 -0.0103184 400.01 ITEM: ATOMS id type xs ys zs */ QString fileName = QFileDialog::getSaveFileName(this, \ tr("Save lammpstrj File"), \ "..", \ tr("Text Files (*.lammpstrj)")); if (fileName != "") { QFile file(QFileInfo(fileName).absoluteFilePath()); if (file.exists()) { QMessageBox::StandardButton chosenButton = QMessageBox::warning(this, \ tr("File exists"), \ tr("The file already exists. Do you want to overwrite it?"), QMessageBox::Ok | QMessageBox::Cancel, QMessageBox::Cancel); if (chosenButton != QMessageBox::Ok) { return; //Save was cancelled } } if (!file.open(QIODevice::WriteOnly)) { QMessageBox::critical(this, tr("Error"), tr("Failed to save file")); return; //Aborted } //All ok - save data QTextStream outstream(&file); outstream << QString("ITEM: TIMESTEP\n"); outstream << QString("0\n"); outstream << QString("ITEM: NUMBER OF ATOMS\n"); outstream << QString::number(stlmesh()->nFaces()) + "\n"; outstream << QString("ITEM: BOX BOUNDS") + "\n"; outstream << QString::number(stlmesh()->box().xlow) \ << "\t" << QString::number(stlmesh()->box().xhig) + "\n"; outstream << QString::number(stlmesh()->box().ylow) \ << "\t" << QString::number(stlmesh()->box().yhig) + "\n"; outstream << QString::number(stlmesh()->box().zlow) \ << "\t" << QString::number(stlmesh()->box().zhig) + "\n"; outstream << QString("ITEM: ATOMS id type xs ys zs") + "\n"; // { int id = 0; int type = 1; const QList<QVector3D> & points = stlmesh()->points(); const QList<QList<int> > & faceNode = stlmesh()->faceNode(); // vertex -> particle // duplicate points exisit, leave it aside now QList<QList<int> >::const_iterator it; QStringList line; for(it = faceNode.begin(); it != faceNode.end(); ++it) { const QList<int> & nodes = *it; QList<int>::const_iterator it2 = nodes.begin(); id++; QVector3D p1(points[(*it2++)]); QVector3D p2(points[(*it2++)]); QVector3D p3(points[(*it2++)]); // face center QVector3D p((p1+p2+p3)/3.0); sphParticles_.push_back(p); line = QStringList(); line << QString::number(id) \ << QString::number(type) \ << QString::number(p.x()) \ << QString::number(p.y()) \ << QString::number(p.z()) << "\n"; outstream << line.join(" "); // if (id > 5) break; // } // face center -> particle // edge center -> particle } file.close(); } } } void SPH3DPrintPanel::on_SetPathToInFile_clicked() { QString fileName = QFileDialog::getOpenFileName(this,"Open the file"); QFile file(fileName); if(!file.open(QFile::ReadOnly | QFile::Text)) { QMessageBox::warning(this,"..", "file not open"); return; } QTextStream in(&file); QString text = in.readAll(); ui->textBrowser->setText(text); file.close(); } void SPH3DPrintPanel::on_setPathToExe_clicked() { path2ExE_ = QFileDialog::getExistingDirectory\ (this,\ "Path to lmp_serial",\ "~/home",\ QFileDialog::ShowDirsOnly); } void SPH3DPrintPanel::on_printButton_clicked() { //QProcess to call lmp_serial // QString fileName = path2ExE() + "/lmp_serial"; // // check if lmp_serial exist // QFile file(QFileInfo(fileName).absoluteFilePath()); // if(file.exists()) { // } QString fileName = QFileDialog::getSaveFileName(this, \ tr("Save printing data File"), \ "..", \ tr("Text Files (*.data)")); if (fileName != "") { QFile file(QFileInfo(fileName).absoluteFilePath()); if (file.exists()) { QMessageBox::StandardButton chosenButton = QMessageBox::warning(this, \ tr("File exists"), \ tr("The file already exists. Do you want to overwrite it?"), QMessageBox::Ok | QMessageBox::Cancel, QMessageBox::Cancel); if (chosenButton != QMessageBox::Ok) { return; //Save was cancelled } } if (!file.open(QIODevice::WriteOnly)) { QMessageBox::critical(this, tr("Error"), tr("Failed to save file")); return; //Aborted } // Slicing the sphParticles to a number of boxes int nx = ui->nxSpinBox->value(); int ny = ui->nySpinBox->value(); int nz = ui->nzSpinBox->value(); int ntotal = nx*ny*nz; int type = ui->typeSpinBox->value(); double xlow = stlmesh()->box().xlow; double xhig = stlmesh()->box().xhig; double ylow = stlmesh()->box().ylow; double yhig = stlmesh()->box().yhig; double zlow = stlmesh()->box().zlow; double zhig = stlmesh()->box().zhig; double dx = (xhig-xlow)/nx; double dy = (yhig-ylow)/ny; double dz = (zhig-zlow)/nz; QList<QList<QVector3D> > sphElements; // create cell to face, using owner and neighbour sphElements.reserve(ntotal); for(int i = 0; i < ntotal; i++) { QList<QVector3D> qv; sphElements.append(qv); } QList<QVector3D>::const_iterator it; for(it = sphParticles().begin(); it != sphParticles().end(); ++it) { QVector3D p = *it; int id = 0 ; int iz = floor((p.z()-zlow)/dz); int iy = floor((p.y()-ylow)/dy); int ix = floor((p.x()-xlow)/dx); id = iz*(nx*ny) + iy*nx + ix; // qDebug() << QString("%1 %2 %3 %4\n").arg(ix).arg(iy).arg(iz).arg(id); sphElements[id].push_back(p); } //All ok - save data QTextStream outstream(&file); QList<QList<QVector3D> >::const_iterator itt; for(itt = sphElements.begin(); itt != sphElements.end(); ++itt) { QList<QVector3D>::const_iterator itt2; QStringList header; if((*itt).size() < 1) continue; header << "sphElement"; header << QString::number((*itt).size()); header << "\n"; outstream << header.join(" "); for(itt2 = (*itt).begin(); itt2 != (*itt).end(); ++itt2) { QStringList data; data << QString::number(type); data << QString::number((*itt2).x()); data << QString::number((*itt2).y()); data << QString::number((*itt2).z()); data << "\n"; outstream << data.join(" "); } } file.close(); } }
[ "ymao.mu@gmail.com" ]
ymao.mu@gmail.com
25b63a5bde5e431c546cd2afa032eb2d54a22253
a25f3306f77188b05ee0574c694454decf292190
/rosplan_knowledge_base/src/VALfiles/ValidatorAPI.cpp
963ee9b80c8a33ba4f8ff02f7b2e977e509adb62
[ "BSD-2-Clause", "GPL-2.0-only", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
fmrico/ROSPlan
96165c3d3cadc28ad283abf40e18c0d5b5c22b38
6d8c9ec5b38cf6d641eb5f94965407dd259fdabc
refs/heads/master
2020-04-02T22:03:06.879998
2018-10-26T11:01:27
2018-10-26T11:01:27
154,820,150
3
2
BSD-2-Clause
2018-10-26T12:34:55
2018-10-26T10:51:12
C++
UTF-8
C++
false
false
9,040
cpp
#include <iostream> #include <string> #include "State.h" #include "Plan.h" #include "Validator.h" #include "typecheck.h" #include "RobustAnalyse.h" #include <cstdio> #include <iostream> #include <fstream> #include "ptree.h" #include "FlexLexer.h" #include "Utils.h" #include "Validator.h" #include "LaTeXSupport.h" extern int yyparse(); extern int yydebug; namespace VAL { extern parse_category* top_thing; analysis an_analysis; extern analysis* current_analysis; extern yyFlexLexer* yfl; bool Silent; int errorCount; extern bool Verbose; bool ContinueAnyway; bool ErrorReport; bool InvariantWarnings; bool LaTeX; //ostream * report = &cout; extern ostream * report; bool makespanDefault; typedef map<double, vector<string> > Ranking; plan * getPlan (std::stringstream& plan_to_validate, TypeChecker & tc, vector<string> & failed, string & name) { plan * the_plan; /* std::ifstream planFile (argv[argcount++]); if (!planFile) { failed.push_back (name); *report << "Bad plan file!\n"; the_plan = 0; return the_plan; }; yfl = new yyFlexLexer (&planFile, &cout); */ yfl = new yyFlexLexer (&plan_to_validate, &cout); yyparse(); delete yfl; the_plan = dynamic_cast<plan*> (top_thing); if (!the_plan || !tc.typecheckPlan (the_plan)) { failed.push_back (name); *report << "Bad plan description!\n"; delete the_plan; the_plan = 0; return the_plan; }; if (the_plan->getTime() >= 0) { name += " - Planner run time: "; name += toString (the_plan->getTime()); }; return the_plan; }; vector<plan_step *> getTimedInitialLiteralActions() { vector<plan_step *> timedIntitialLiteralActions; if (an_analysis.the_problem->initial_state->timed_effects.size() != 0) { int count = 1; for (pc_list<timed_effect*>::const_iterator e = an_analysis.the_problem->initial_state->timed_effects.begin(); e != an_analysis.the_problem->initial_state->timed_effects.end(); ++e) { operator_symbol * timed_initial_lit = an_analysis.op_tab.symbol_put ("Timed Initial Literal Action " + toString (count++)); action * timed_initial_lit_action = new action (timed_initial_lit, new var_symbol_list(), new conj_goal (new goal_list()), (*e)->effs, new var_symbol_table()); plan_step * a_plan_step = new plan_step (timed_initial_lit, new const_symbol_list()); a_plan_step->start_time_given = true; a_plan_step->start_time = dynamic_cast<const timed_initial_literal *> (*e)->time_stamp; a_plan_step->duration_given = false; timedIntitialLiteralActions.push_back (a_plan_step); an_analysis.the_domain->ops->push_back (timed_initial_lit_action); }; }; return timedIntitialLiteralActions; }; void deleteTimedIntitialLiteralActions (vector<plan_step *> tila) { for (vector<plan_step *>::iterator i = tila.begin(); i != tila.end(); ++i) { delete *i; }; }; void executePlan (std::stringstream& plan_to_validate, TypeChecker & tc, const DerivationRules * derivRules, double tolerance, bool lengthDefault, bool giveAdvice) { Ranking rnk; Ranking rnkInv; vector<string> failed; vector<string> queries; std::string name = "The master plan"; plan * the_plan = getPlan (plan_to_validate, tc, failed, name); if (the_plan == 0) return; plan * copythe_plan = new plan (*the_plan); plan * planNoTimedLits = new plan(); vector<plan_step *> timedInitialLiteralActions = getTimedInitialLiteralActions(); double deadLine = 101; //add timed initial literals to the plan from the problem spec for (vector<plan_step *>::iterator ps = timedInitialLiteralActions.begin(); ps != timedInitialLiteralActions.end(); ++ps) { the_plan->push_back (*ps); }; //add actions that are not to be moved to the timed intitial literals otherwise to the plan to be repaired //i.e. pretend these actions are timed initial literals for (pc_list<plan_step*>::const_iterator i = copythe_plan->begin(); i != copythe_plan->end(); ++i) { planNoTimedLits->push_back (*i); }; copythe_plan->clear(); delete copythe_plan; PlanRepair pr (timedInitialLiteralActions, deadLine, derivRules, tolerance, tc, an_analysis.the_domain->ops, an_analysis.the_problem->initial_state, the_plan, planNoTimedLits, an_analysis.the_problem->metric, lengthDefault, an_analysis.the_domain->isDurative(), an_analysis.the_problem->the_goal, current_analysis); if (Verbose) pr.getValidator().displayPlan(); try { if (pr.getValidator().execute()) { if (!Silent) cout << "Plan executed successfully - checking goal\n"; if (pr.getValidator().checkGoal (an_analysis.the_problem->the_goal)) { if (! (pr.getValidator().hasInvariantWarnings())) { rnk[pr.getValidator().finalValue() ].push_back (name); if (!Silent) *report << "Plan valid\n"; if (!Silent) *report << "Final value: " << pr.getValidator().finalValue() << "\n"; } else { rnkInv[pr.getValidator().finalValue() ].push_back (name); if (!Silent) *report << "Plan valid (subject to further invariant checks)\n"; if (!Silent) *report << "Final value: " << pr.getValidator().finalValue(); }; if (Verbose) { pr.getValidator().reportViolations(); }; } else { failed.push_back (name); *report << "Goal not satisfied\n"; *report << "Plan invalid\n"; ++errorCount; }; } else { failed.push_back (name); ++errorCount; if (ContinueAnyway) { cout << "\nPlan failed to execute - checking goal\n"; if (!pr.getValidator().checkGoal (an_analysis.the_problem->the_goal)) *report << "\nGoal not satisfied\n"; } else *report << "\nPlan failed to execute\n"; }; if (pr.getValidator().hasInvariantWarnings()) { cout << "\n\n"; *report << "This plan has the following further condition(s) to check:"; cout << "\n\n"; pr.getValidator().displayInvariantWarnings(); }; } catch (exception & e) { cout << "Error occurred in validation attempt:\n " << e.what() << "\n"; queries.push_back (name); }; //display error report and plan repair advice if (giveAdvice && (Verbose || ErrorReport)) { pr.firstPlanAdvice(); }; planNoTimedLits->clear(); delete planNoTimedLits; delete the_plan; if (!rnk.empty()) { if (!Silent) cout << "\nSuccessful plans:"; if (an_analysis.the_problem->metric && an_analysis.the_problem->metric->opt == E_MINIMIZE) { if (!Silent) for_each (rnk.begin(), rnk.end(), showList()); } else { if (!Silent) for_each (rnk.rbegin(), rnk.rend(), showList()); }; *report << "\n"; }; if (!rnkInv.empty()) { if (!Silent) cout << "\nSuccessful Plans Subject To Further Invariant Checks:"; if (an_analysis.the_problem->metric && an_analysis.the_problem->metric->opt == E_MINIMIZE) { for_each (rnkInv.begin(), rnkInv.end(), showList()); } else { for_each (rnkInv.rbegin(), rnkInv.rend(), showList()); }; *report << "\n"; }; if (!failed.empty()) { cout << "\n\nFailed plans:\n "; copy (failed.begin(), failed.end(), ostream_iterator<string> (cout, " ")); *report << "\n"; }; if (!queries.empty()) { cout << "\n\nQueries (validator failed):\n "; copy (queries.begin(), queries.end(), ostream_iterator<string> (cout, " ")); *report << "\n"; }; }; bool checkPlan (const std::string& domain_file, const std::string& problem_file, std::stringstream& plan) { try { current_analysis = &an_analysis; //an_analysis.const_tab.symbol_put(""); //for events - undefined symbol Silent = false; errorCount = 0; Verbose = false; ContinueAnyway = false; ErrorReport = false; InvariantWarnings = false; makespanDefault = false; bool CheckDPs = true; bool giveAdvice = true; double tolerance = 0.01; bool lengthDefault = true; string s; std::ifstream domainFile (domain_file.c_str()); if (!domainFile) { std::cerr << "Bad domain file!\n"; exit (1); }; yfl = new yyFlexLexer (&domainFile, &cout); yydebug = 0; yyparse(); delete yfl; if (!an_analysis.the_domain) { std::cerr << "Problem in domain definition!\n"; exit (1); }; TypeChecker tc (current_analysis); bool typesOK = tc.typecheckDomain(); if (!typesOK) { std::cerr << "Type problem in domain description!\n"; exit (1); }; std::ifstream problemFile (problem_file.c_str()); if (!problemFile) { std::cerr << "Bad problem file!\n"; exit (1); }; yfl = new yyFlexLexer (&problemFile, &cout); yyparse(); delete yfl; if (!tc.typecheckProblem()) { std::cerr << "Type problem in problem specification!\n"; exit (1); }; const DerivationRules * derivRules = new DerivationRules (an_analysis.the_domain->drvs, an_analysis.the_domain->ops); if (CheckDPs && !derivRules->checkDerivedPredicates()) { exit (1); }; executePlan (plan, tc, derivRules, tolerance, lengthDefault, giveAdvice); delete derivRules; } catch (exception & e) { std::cerr << "Error: " << e.what() << "\n"; an_analysis.error_list.report(); return 2; }; return errorCount == 0; }; };
[ "michael.cashmore@kcl.ac.uk" ]
michael.cashmore@kcl.ac.uk
bda3de061c51156859ad0a672d8da1e2d783a740
08b17eb651963352921ccb596b7c61be4a40cdb2
/Video-Tools/AVIMux_GUI/VideoSource_Matroska.h
3e5ab97a9b3489979dfccca77a1a0d4371b40018
[]
no_license
BrunoReX/avimuxgui
c798baf50d0bcb4572a97267eb8b5a58c9705ab5
bfe14ecd7bf6fc34c5cab4c241ed788dd6b04b38
refs/heads/master
2021-01-19T15:01:28.551533
2014-03-17T21:27:03
2014-03-17T21:27:03
17,843,935
2
1
null
null
null
null
UTF-8
C++
false
false
1,767
h
#ifndef I_VIDEOSOOURCE_MATROSKA #define I_VIDEOSOOURCE_MATROSKA #include "..\matroska.h" #include "videosource_generic.h" typedef struct { MATROSKA* m; int iStream; __int64 size; } VIDEOSOURCEFROMMATROSKA_DATA; class VIDEOSOURCEFROMMATROSKA: public VIDEOSOURCE { private: VIDEOSOURCEFROMMATROSKA_DATA info; AVIStreamHeader avistreamheader; READ_INFO curr_lace; bool bDelace; int iPos; int iBytePosInLace; __int64 iNextTimecode; protected: __int64 virtual GetUnstretchedDuration(); __int64 virtual GetExactSize(); MATROSKA* GetSource(); int GetSourceStream(); public: VIDEOSOURCEFROMMATROSKA(); VIDEOSOURCEFROMMATROSKA(MATROSKA* matroska, int iStream = -1); void virtual *GetFormat(void); AVIStreamHeader virtual *GetAVIStreamHeader(void); int virtual GetFrame(void* lpDest,DWORD* lpdwSize,__int64* lpiTimecode = NULL, ADVANCEDREAD_INFO* lpAARI = NULL); __int64 virtual GetNanoSecPerFrame(void); int virtual GetNbrOfFrames(DWORD dwKind=FT_ALL); int virtual GetResolution(int* lpdwWidth,int* lpdwHeight); void virtual GetOutputResolution(RESOLUTION* r); int virtual Enable(int bEnabled); bool virtual IsKeyFrame(DWORD dwNbr = CN_CURRENT_CHUNK); bool virtual IsEndOfStream(); char virtual* GetCodecID(); bool virtual IsOpen(); int virtual Open(MATROSKA* matroska, int iStream = -1); void virtual ReInit(); int virtual Seek(__int64 iTime); int virtual GetFormatSize(void); void virtual GetCropping(RECT* r); DWORD virtual GetFourCC(); virtual ~VIDEOSOURCEFROMMATROSKA(); int virtual GetStrippableHeaderBytes(void* pBuffer, int max); int virtual GetName(char* lpDest); int virtual GetLanguageCode(std::string& result); }; #endif
[ "brunorex@gmail.com" ]
brunorex@gmail.com
3b30f5a75200b00ecc799c9832eec6aad51635cc
693b19cd36f52a503b8ac1c9b54b9be6aeea9e76
/componentes/TMS Component Pack/AdvObj.hpp
a04d892e196a2d9cc28aaa919a039cd67d22a31c
[]
no_license
chinnyannieb/Meus-Projetos
728e603b451ea4262f9e6f4bf7e3dd05f0d1e79e
6e08497c8fc45c142d7be1c4408f02fa524cd71f
refs/heads/master
2020-12-25T23:58:02.724867
2015-07-05T11:45:08
2015-07-05T11:45:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
46,821
hpp
// CodeGear C++Builder // Copyright (c) 1995, 2009 by Embarcadero Technologies, Inc. // All rights reserved // (DO NOT EDIT: machine generated header) 'Advobj.pas' rev: 21.00 #ifndef AdvobjHPP #define AdvobjHPP #pragma delphiheader begin #pragma option push #pragma option -w- // All warnings off #pragma option -Vx // Zero-length empty class member functions #pragma pack(push,8) #include <System.hpp> // Pascal unit #include <Sysinit.hpp> // Pascal unit #include <Windows.hpp> // Pascal unit #include <Controls.hpp> // Pascal unit #include <Graphics.hpp> // Pascal unit #include <Extctrls.hpp> // Pascal unit #include <Dialogs.hpp> // Pascal unit #include <Classes.hpp> // Pascal unit #include <Messages.hpp> // Pascal unit #include <Sysutils.hpp> // Pascal unit #include <Buttons.hpp> // Pascal unit #include <Menus.hpp> // Pascal unit #include <Imglist.hpp> // Pascal unit #include <Stdctrls.hpp> // Pascal unit #include <Grids.hpp> // Pascal unit #include <Advhintinfo.hpp> // Pascal unit #include <Advxpvs.hpp> // Pascal unit #include <Actnlist.hpp> // Pascal unit #include <Types.hpp> // Pascal unit //-- user supplied ----------------------------------------------------------- namespace Advobj { //-- type declarations ------------------------------------------------------- class DELPHICLASS TObjStringGrid; class PASCALIMPLEMENTATION TObjStringGrid : public Grids::TStringGrid { typedef Grids::TStringGrid inherited; public: /* TStringGrid.Create */ inline __fastcall virtual TObjStringGrid(Classes::TComponent* AOwner) : Grids::TStringGrid(AOwner) { } /* TStringGrid.Destroy */ inline __fastcall virtual ~TObjStringGrid(void) { } public: /* TWinControl.CreateParented */ inline __fastcall TObjStringGrid(HWND ParentWindow) : Grids::TStringGrid(ParentWindow) { } }; #pragma option push -b- enum TEditorType { edNormal, edSpinEdit, edComboEdit, edComboList, edEditBtn, edCheckBox, edDateEdit, edDateEditUpDown, edTimeEdit, edButton, edDataCheckBox, edNumeric, edPositiveNumeric, edFloat, edCapital, edMixedCase, edPassword, edUnitEditBtn, edLowerCase, edUpperCase, edFloatSpinEdit, edTimeSpinEdit, edDateSpinEdit, edNumericEditBtn, edFloatEditBtn, edCustom, edRichEdit, edNone, edDateTimeEdit, edValidChars, edTrackbarDropDown, edMemoDropDown, edCalculatorDropDown, edTimePickerDropDown, edDetailDropDown, edGridDropDown, edColorPickerDropDown, edImagePickerDropDown, edAdvGridDropDown }; #pragma option pop #pragma option push -b- enum TCellBorder { cbTop, cbLeft, cbRight, cbBottom }; #pragma option pop typedef Set<TCellBorder, cbTop, cbBottom> TCellBorders; #pragma option push -b- enum TCellGradientDirection { GradientVertical, GradientHorizontal }; #pragma option pop typedef void __fastcall (__closure *TGetDisplTextEvent)(System::TObject* Sender, int ACol, int ARow, System::UnicodeString &Value); typedef void __fastcall (__closure *TFloatFormatEvent)(System::TObject* Sender, int ACol, int ARow, bool &IsFloat, System::UnicodeString &FloatFormat); typedef void __fastcall (__closure *TOnResizeEvent)(System::TObject* Sender); typedef void __fastcall (__closure *TColumnSizeEvent)(System::TObject* Sender, int ACol, bool &Allow); typedef void __fastcall (__closure *TColumnSizingEvent)(System::TObject* Sender, int ACol, int ColumnSize); typedef void __fastcall (__closure *TRowSizingEvent)(System::TObject* Sender, int ARow, int RowSize); typedef void __fastcall (__closure *TRowSizeEvent)(System::TObject* Sender, int ARow, bool &Allow); typedef void __fastcall (__closure *TEndColumnSizeEvent)(System::TObject* Sender, int ACol); typedef void __fastcall (__closure *TUpdateColumnSizeEvent)(System::TObject* Sender, int ACol, int &AWidth); typedef void __fastcall (__closure *TEndRowSizeEvent)(System::TObject* Sender, int ARow); typedef void __fastcall (__closure *TClickCellEvent)(System::TObject* Sender, int ARow, int ACol); typedef void __fastcall (__closure *TDblClickCellEvent)(System::TObject* Sender, int ARow, int ACol); typedef void __fastcall (__closure *TCanEditCellEvent)(System::TObject* Sender, int ARow, int ACol, bool &CanEdit); typedef void __fastcall (__closure *TScrollHintEvent)(System::TObject* Sender, int ARow, System::UnicodeString &hintstr); typedef void __fastcall (__closure *TButtonClickEvent)(System::TObject* Sender, int ACol, int ARow); typedef void __fastcall (__closure *TCheckBoxClickEvent)(System::TObject* Sender, int ACol, int ARow, bool State); typedef void __fastcall (__closure *TGetEditorTypeEvent)(System::TObject* Sender, int ACol, int ARow, TEditorType &AEditor); #pragma option push -b- enum TSortStyle { ssAutomatic, ssAlphabetic, ssNumeric, ssDate, ssAlphaNoCase, ssAlphaCase, ssShortDateEU, ssShortDateUS, ssCustom, ssFinancial, ssAnsiAlphaCase, ssAnsiAlphaNoCase, ssRaw, ssHTML, ssImages, ssCheckBox, ssDateTime, ssTime, ssAlphaNumeric, ssAlphaNumericNoCase }; #pragma option pop #pragma option push -b- enum TVAlignment { vtaTop, vtaCenter, vtaBottom }; #pragma option pop typedef void __fastcall (__closure *TCustomCellDrawEvent)(System::TObject* Sender, Graphics::TCanvas* Canvas, int ACol, int ARow, Grids::TGridDrawState AState, const Types::TRect &ARect, bool Printing); typedef TVAlignment TAsgVAlignment; typedef void __fastcall (__closure *TAnchorClickEvent)(System::TObject* Sender, int ARow, int ACol, System::UnicodeString Anchor, bool &AutoHandle); typedef void __fastcall (__closure *TAnchorHintEvent)(System::TObject* Sender, int ARow, int ACol, System::UnicodeString &Anchor); typedef void __fastcall (__closure *TAnchorEvent)(System::TObject* Sender, int ARow, int ACol, System::UnicodeString Anchor); typedef void __fastcall (__closure *TClickSortEvent)(System::TObject* Sender, int ACol); typedef void __fastcall (__closure *TCanSortEvent)(System::TObject* Sender, int ACol, bool &DoSort); typedef void __fastcall (__closure *TCustomCompareEvent)(System::TObject* Sender, System::UnicodeString str1, System::UnicodeString str2, int &Res); typedef void __fastcall (__closure *TRawCompareEvent)(System::TObject* Sender, int ACol, int Row1, int Row2, int &Res); typedef void __fastcall (__closure *TGridFormatEvent)(System::TObject* Sender, int ACol, TSortStyle &AStyle, System::UnicodeString &aPrefix, System::UnicodeString &aSuffix); typedef void __fastcall (__closure *TGridColorEvent)(System::TObject* Sender, int ARow, int ACol, Grids::TGridDrawState AState, Graphics::TBrush* ABrush, Graphics::TFont* AFont); typedef void __fastcall (__closure *TGridGradientEvent)(System::TObject* Sender, int ARow, int ACol, Graphics::TColor &Color, Graphics::TColor &ColorTo, Graphics::TColor &ColorMirror, Graphics::TColor &ColorMirrorTo, TCellGradientDirection &GD); typedef void __fastcall (__closure *TGridBorderEvent)(System::TObject* Sender, int ARow, int ACol, Graphics::TPen* APen, TCellBorders &Borders); typedef void __fastcall (__closure *TGridBorderPropEvent)(System::TObject* Sender, int ARow, int ACol, Graphics::TPen* LeftPen, Graphics::TPen* TopPen, Graphics::TPen* RightPen, Graphics::TPen* BottomPen); typedef void __fastcall (__closure *TGridAlignEvent)(System::TObject* Sender, int ARow, int ACol, Classes::TAlignment &HAlign, TVAlignment &VAlign); typedef void __fastcall (__closure *TGridHintEvent)(System::TObject* Sender, int ARow, int ACol, System::UnicodeString &hintstr); typedef void __fastcall (__closure *TEllipsClickEvent)(System::TObject* Sender, int ACol, int ARow, System::UnicodeString &S); typedef void __fastcall (__closure *TGridBalloonEvent)(System::TObject* Sender, int ACol, int ARow, System::UnicodeString &ATitle, System::UnicodeString &AText, int &AIcon); typedef void __fastcall (__closure *TCanInsertRowEvent)(System::TObject* Sender, int ARow, bool &CanInsert); typedef void __fastcall (__closure *TAutoInsertRowEvent)(System::TObject* Sender, int ARow); typedef void __fastcall (__closure *TCanAddRowEvent)(System::TObject* Sender, bool &CanAdd); typedef void __fastcall (__closure *TAutoAddRowEvent)(System::TObject* Sender, int ARow); typedef void __fastcall (__closure *TCanDeleteRowEvent)(System::TObject* Sender, int ARow, bool &CanDelete); typedef void __fastcall (__closure *TAutoDeleteRowEvent)(System::TObject* Sender, int ARow); typedef void __fastcall (__closure *TAutoInsertColEvent)(System::TObject* Sender, int ACol); typedef void __fastcall (__closure *TSearchEditChangeEvent)(System::TObject* Sender, System::UnicodeString Value, bool &DefaultSearch); typedef void __fastcall (__closure *TSpinClickEvent)(System::TObject* Sender, int ACol, int ARow, int AValue, bool UpDown); typedef void __fastcall (__closure *TOfficeHintEvent)(System::TObject* Sender, int ACol, int ARow, Advhintinfo::TAdvHintInfo* OfficeHint); #pragma option push -b- enum TArrowDirection { arrUp, arrDown, arrLeft, arrRight }; #pragma option pop #pragma option push -b- enum TAdvGridButtonStyle { tasButton, tasCheck }; #pragma option pop typedef void __fastcall (__closure *TImageChangeEvent)(System::TObject* Sender, int Acol, int Arow); class DELPHICLASS TArrowWindow; class PASCALIMPLEMENTATION TArrowWindow : public Extctrls::TPanel { typedef Extctrls::TPanel inherited; private: TArrowDirection Dir; StaticArray<Types::TPoint, 9> Arrow; public: __fastcall TArrowWindow(Classes::TComponent* AOwner, TArrowDirection direction); virtual void __fastcall Loaded(void); protected: virtual void __fastcall CreateWnd(void); virtual void __fastcall Paint(void); virtual void __fastcall CreateParams(Controls::TCreateParams &Params); public: /* TCustomPanel.Create */ inline __fastcall virtual TArrowWindow(Classes::TComponent* AOwner) : Extctrls::TPanel(AOwner) { } public: /* TCustomControl.Destroy */ inline __fastcall virtual ~TArrowWindow(void) { } public: /* TWinControl.CreateParented */ inline __fastcall TArrowWindow(HWND ParentWindow) : Extctrls::TPanel(ParentWindow) { } }; class DELPHICLASS TPopupButton; class PASCALIMPLEMENTATION TPopupButton : public Controls::TCustomControl { typedef Controls::TCustomControl inherited; private: System::UnicodeString FCaption; Imglist::TCustomImageList* FImages; bool FFlat; Graphics::TColor FGradTo; Graphics::TColor FGradFrom; Graphics::TColor FGradMirrorTo; Graphics::TColor FGradMirrorFrom; protected: virtual void __fastcall CreateParams(Controls::TCreateParams &Params); public: __fastcall virtual TPopupButton(Classes::TComponent* AOwner); virtual void __fastcall Paint(void); virtual void __fastcall CreateWnd(void); __property Imglist::TCustomImageList* Images = {read=FImages, write=FImages}; __published: __property System::UnicodeString Caption = {read=FCaption, write=FCaption}; __property bool Flat = {read=FFlat, write=FFlat, nodefault}; __property Graphics::TColor GradFrom = {read=FGradFrom, write=FGradFrom, nodefault}; __property Graphics::TColor GradTo = {read=FGradTo, write=FGradTo, nodefault}; __property Graphics::TColor GradMirrorFrom = {read=FGradMirrorFrom, write=FGradMirrorFrom, nodefault}; __property Graphics::TColor GradMirrorTo = {read=FGradMirrorTo, write=FGradMirrorTo, nodefault}; public: /* TCustomControl.Destroy */ inline __fastcall virtual ~TPopupButton(void) { } public: /* TWinControl.CreateParented */ inline __fastcall TPopupButton(HWND ParentWindow) : Controls::TCustomControl(ParentWindow) { } }; class DELPHICLASS TIntList; class PASCALIMPLEMENTATION TIntList : public Classes::TList { typedef Classes::TList inherited; public: int operator[](int index) { return Items[index]; } private: TImageChangeEvent FOnChange; int FCol; int FRow; void __fastcall SetInteger(int Index, int Value); int __fastcall GetInteger(int Index); System::UnicodeString __fastcall GetStrValue(void); void __fastcall SetStrValue(const System::UnicodeString Value); public: __fastcall TIntList(int Col, int Row); void __fastcall DeleteValue(int Value); bool __fastcall HasValue(int Value); __property int Items[int index] = {read=GetInteger, write=SetInteger/*, default*/}; HIDESBASE void __fastcall Add(int Value); HIDESBASE void __fastcall Insert(int Index, int Value); HIDESBASE void __fastcall Delete(int Index); __property System::UnicodeString StrValue = {read=GetStrValue, write=SetStrValue}; __property TImageChangeEvent OnChange = {read=FOnChange, write=FOnChange}; public: /* TList.Destroy */ inline __fastcall virtual ~TIntList(void) { } }; class DELPHICLASS TSortIndexList; class PASCALIMPLEMENTATION TSortIndexList : public TIntList { typedef TIntList inherited; private: int __fastcall GetSortColumns(int i); bool __fastcall GetSortDirections(int i); void __fastcall SetSortColumns(int i, const int Value); void __fastcall SetSortDirections(int i, const bool Value); public: System::UnicodeString __fastcall SaveToString(void); void __fastcall LoadFromString(System::UnicodeString s); void __fastcall AddIndex(int ColumnIndex, bool Ascending); int __fastcall FindIndex(int ColumnIndex); void __fastcall ToggleIndex(int ColumnIndex); __property int SortColumns[int i] = {read=GetSortColumns, write=SetSortColumns}; __property bool SortDirections[int i] = {read=GetSortDirections, write=SetSortDirections}; public: /* TIntList.Create */ inline __fastcall TSortIndexList(int Col, int Row) : TIntList(Col, Row) { } public: /* TList.Destroy */ inline __fastcall virtual ~TSortIndexList(void) { } }; class DELPHICLASS TControlItem; class PASCALIMPLEMENTATION TControlItem : public System::TObject { typedef System::TObject inherited; private: int FX; int FY; Controls::TControl* FObject; public: __fastcall TControlItem(int AX, int AY, Controls::TControl* AObject); __property int X = {read=FX, write=FX, nodefault}; __property int Y = {read=FY, write=FY, nodefault}; __property Controls::TControl* Control = {read=FObject, write=FObject}; public: /* TObject.Destroy */ inline __fastcall virtual ~TControlItem(void) { } }; class DELPHICLASS TControlList; class PASCALIMPLEMENTATION TControlList : public Classes::TList { typedef Classes::TList inherited; private: TControlItem* __fastcall GetControl(int i); public: void __fastcall AddControl(int X, int Y, Controls::TControl* AObject); void __fastcall RemoveControl(int i); int __fastcall ControlIndex(int X, int Y); __property TControlItem* Control[int i] = {read=GetControl}; __fastcall virtual ~TControlList(void); bool __fastcall HasHandle(unsigned Handle); public: /* TObject.Create */ inline __fastcall TControlList(void) : Classes::TList() { } }; class DELPHICLASS TFilePicture; class PASCALIMPLEMENTATION TFilePicture : public Classes::TPersistent { typedef Classes::TPersistent inherited; private: System::UnicodeString FFilename; int FWidth; int FHeight; Graphics::TPicture* FPicture; void __fastcall SetFileName(const System::UnicodeString Value); public: void __fastcall DrawPicture(Graphics::TCanvas* Canvas, const Types::TRect &r); virtual void __fastcall Assign(Classes::TPersistent* Source); __published: __property System::UnicodeString Filename = {read=FFilename, write=SetFileName}; __property int Width = {read=FWidth, nodefault}; __property int Height = {read=FHeight, nodefault}; public: /* TPersistent.Destroy */ inline __fastcall virtual ~TFilePicture(void) { } public: /* TObject.Create */ inline __fastcall TFilePicture(void) : Classes::TPersistent() { } }; class DELPHICLASS TAdvGridButtonActionLink; class DELPHICLASS TAdvGridButton; class PASCALIMPLEMENTATION TAdvGridButtonActionLink : public Controls::TControlActionLink { typedef Controls::TControlActionLink inherited; protected: TAdvGridButton* FClient; virtual void __fastcall AssignClient(System::TObject* AClient); virtual bool __fastcall IsCaptionLinked(void); virtual bool __fastcall IsCheckedLinked(void); virtual bool __fastcall IsGroupIndexLinked(void); virtual void __fastcall SetGroupIndex(int Value); virtual void __fastcall SetChecked(bool Value); virtual void __fastcall SetCaption(const System::UnicodeString Value); public: /* TBasicActionLink.Create */ inline __fastcall virtual TAdvGridButtonActionLink(System::TObject* AClient) : Controls::TControlActionLink(AClient) { } /* TBasicActionLink.Destroy */ inline __fastcall virtual ~TAdvGridButtonActionLink(void) { } }; class PASCALIMPLEMENTATION TAdvGridButton : public Controls::TGraphicControl { typedef Controls::TGraphicControl inherited; private: bool FIsComCtl6; int FGroupIndex; Graphics::TBitmap* FGlyph; bool FDown; bool FDragging; bool FAllowAllUp; Buttons::TButtonLayout FLayout; int FSpacing; bool FTransparent; int FMargin; bool FFlat; bool FMouseInControl; Graphics::TColor FColorTo; Graphics::TColor FColorHot; Graphics::TColor FColorHotTo; Graphics::TColor FColorDown; Graphics::TColor FColorDownTo; Graphics::TColor FBorderColor; Graphics::TColor FBorderDownColor; Graphics::TColor FBorderHotColor; Graphics::TBitmap* FGlyphDisabled; Graphics::TBitmap* FGlyphHot; Graphics::TBitmap* FGlyphDown; Graphics::TBitmap* FGlyphShade; bool FShaded; Classes::TNotifyEvent FOnMouseLeave; Classes::TNotifyEvent FOnMouseEnter; Graphics::TColor FColorChecked; Graphics::TColor FColorCheckedTo; TAdvGridButtonStyle FStyle; int FLook; bool FRounded; bool FDropDownButton; bool FAutoThemeAdapt; bool FAutoXPStyle; Classes::TNotifyEvent FOnDropDown; Menus::TPopupMenu* FDropDownMenu; bool FShowCaption; void __fastcall GlyphChanged(System::TObject* Sender); void __fastcall UpdateExclusive(void); void __fastcall SetGlyph(Graphics::TBitmap* Value); void __fastcall SetDown(bool Value); void __fastcall SetFlat(bool Value); void __fastcall SetAllowAllUp(bool Value); void __fastcall SetGroupIndex(int Value); void __fastcall SetLayout(Buttons::TButtonLayout Value); void __fastcall SetSpacing(int Value); void __fastcall SetMargin(int Value); void __fastcall UpdateTracking(void); HIDESBASE MESSAGE void __fastcall WMLButtonDblClk(Messages::TWMMouse &Message); HIDESBASE MESSAGE void __fastcall CMEnabledChanged(Messages::TMessage &Message); MESSAGE void __fastcall CMButtonPressed(Messages::TMessage &Message); MESSAGE void __fastcall CMDialogChar(Messages::TWMKey &Message); HIDESBASE MESSAGE void __fastcall CMFontChanged(Messages::TMessage &Message); MESSAGE void __fastcall CMTextChanged(Messages::TMessage &Message); MESSAGE void __fastcall CMSysColorChange(Messages::TMessage &Message); HIDESBASE MESSAGE void __fastcall CMMouseEnter(Messages::TMessage &Message); HIDESBASE MESSAGE void __fastcall CMMouseLeave(Messages::TMessage &Message); void __fastcall SetGlyphDisabled(const Graphics::TBitmap* Value); void __fastcall SetGlyphDown(const Graphics::TBitmap* Value); void __fastcall SetGlyphHot(const Graphics::TBitmap* Value); void __fastcall GenerateShade(void); void __fastcall SetShaded(const bool Value); void __fastcall SetColorTo(const Graphics::TColor Value); void __fastcall SetColorChecked(const Graphics::TColor Value); void __fastcall SetColorCheckedTo(const Graphics::TColor Value); void __fastcall SetStyle(const TAdvGridButtonStyle Value); void __fastcall SetRounded(const bool Value); void __fastcall SetDropDownButton(const bool Value); void __fastcall SetShowCaption(const bool Value); void __fastcall SetBorderColor(const Graphics::TColor Value); void __fastcall SetLook(const int Value); Graphics::TColor __fastcall GetColor(void); HIDESBASE void __fastcall SetColor(const Graphics::TColor Value); protected: Buttons::TButtonState FState; DYNAMIC Controls::TControlActionLinkClass __fastcall GetActionLinkClass(void); virtual void __fastcall Loaded(void); DYNAMIC void __fastcall MouseDown(Controls::TMouseButton Button, Classes::TShiftState Shift, int X, int Y); DYNAMIC void __fastcall MouseMove(Classes::TShiftState Shift, int X, int Y); DYNAMIC void __fastcall MouseUp(Controls::TMouseButton Button, Classes::TShiftState Shift, int X, int Y); void __fastcall DrawButtonGlyph(Graphics::TCanvas* Canvas, const Types::TPoint &GlyphPos, Buttons::TButtonState State, bool Transparent); void __fastcall DrawButtonText(Graphics::TCanvas* Canvas, const System::UnicodeString Caption, const Types::TRect &TextBounds, Buttons::TButtonState State, int BiDiFlags); Types::TRect __fastcall DrawButton(Graphics::TCanvas* Canvas, const Types::TRect &Client, const Types::TPoint &Offset, const System::UnicodeString Caption, Buttons::TButtonLayout Layout, int Margin, int Spacing, Buttons::TButtonState State, bool Transparent, int BiDiFlags); void __fastcall CalcButtonLayout(Graphics::TCanvas* Canvas, const Types::TRect &Client, const Types::TPoint &Offset, const System::UnicodeString Caption, Buttons::TButtonLayout Layout, int Margin, int Spacing, Types::TPoint &GlyphPos, Types::TRect &TextBounds, int BiDiFlags); virtual void __fastcall Paint(void); __property bool MouseInControl = {read=FMouseInControl, nodefault}; virtual void __fastcall WndProc(Messages::TMessage &Message); virtual void __fastcall Notification(Classes::TComponent* AComponent, Classes::TOperation AOperation); void __fastcall ThemeAdapt(void); void __fastcall SetAutoThemeAdapt(const bool Value); public: __fastcall virtual TAdvGridButton(Classes::TComponent* AOwner); __fastcall virtual ~TAdvGridButton(void); DYNAMIC void __fastcall Click(void); __property int Look = {read=FLook, write=SetLook, nodefault}; __published: __property Action; __property bool AllowAllUp = {read=FAllowAllUp, write=SetAllowAllUp, default=0}; __property Anchors = {default=3}; __property bool AutoThemeAdapt = {read=FAutoThemeAdapt, write=SetAutoThemeAdapt, nodefault}; __property bool AutoXPStyle = {read=FAutoXPStyle, write=FAutoXPStyle, nodefault}; __property BiDiMode; __property Graphics::TColor BorderColor = {read=FBorderColor, write=SetBorderColor, default=536870911}; __property Graphics::TColor BorderDownColor = {read=FBorderDownColor, write=FBorderDownColor, default=536870911}; __property Graphics::TColor BorderHotColor = {read=FBorderHotColor, write=FBorderHotColor, default=536870911}; __property Graphics::TColor Color = {read=GetColor, write=SetColor, default=-16777201}; __property Graphics::TColor ColorTo = {read=FColorTo, write=SetColorTo, default=536870911}; __property Graphics::TColor ColorDown = {read=FColorDown, write=FColorDown, nodefault}; __property Graphics::TColor ColorDownTo = {read=FColorDownTo, write=FColorDownTo, default=536870911}; __property Graphics::TColor ColorHot = {read=FColorHot, write=FColorHot, nodefault}; __property Graphics::TColor ColorHotTo = {read=FColorHotTo, write=FColorHotTo, default=536870911}; __property Graphics::TColor ColorChecked = {read=FColorChecked, write=SetColorChecked, default=8421504}; __property Graphics::TColor ColorCheckedTo = {read=FColorCheckedTo, write=SetColorCheckedTo, default=536870911}; __property Constraints; __property int GroupIndex = {read=FGroupIndex, write=SetGroupIndex, default=0}; __property bool Down = {read=FDown, write=SetDown, default=0}; __property bool DropDownButton = {read=FDropDownButton, write=SetDropDownButton, default=0}; __property Menus::TPopupMenu* DropDownMenu = {read=FDropDownMenu, write=FDropDownMenu}; __property Caption; __property Enabled = {default=1}; __property bool Flat = {read=FFlat, write=SetFlat, default=1}; __property Font; __property Graphics::TBitmap* Glyph = {read=FGlyph, write=SetGlyph}; __property Graphics::TBitmap* GlyphHot = {read=FGlyphHot, write=SetGlyphHot}; __property Graphics::TBitmap* GlyphDown = {read=FGlyphDown, write=SetGlyphDown}; __property Graphics::TBitmap* GlyphDisabled = {read=FGlyphDisabled, write=SetGlyphDisabled}; __property Buttons::TButtonLayout Layout = {read=FLayout, write=SetLayout, default=0}; __property int Margin = {read=FMargin, write=SetMargin, default=-1}; __property ParentFont = {default=1}; __property ParentShowHint = {default=1}; __property ParentBiDiMode = {default=1}; __property PopupMenu; __property bool Rounded = {read=FRounded, write=SetRounded, default=0}; __property bool Shaded = {read=FShaded, write=SetShaded, default=1}; __property bool ShowCaption = {read=FShowCaption, write=SetShowCaption, default=1}; __property ShowHint; __property int Spacing = {read=FSpacing, write=SetSpacing, default=4}; __property TAdvGridButtonStyle Style = {read=FStyle, write=SetStyle, default=0}; __property Visible = {default=1}; __property OnClick; __property OnDblClick; __property OnMouseDown; __property OnMouseMove; __property OnMouseUp; __property Classes::TNotifyEvent OnMouseEnter = {read=FOnMouseEnter, write=FOnMouseEnter}; __property Classes::TNotifyEvent OnMouseLeave = {read=FOnMouseLeave, write=FOnMouseLeave}; __property Classes::TNotifyEvent OnDropDown = {read=FOnDropDown, write=FOnDropDown}; }; class DELPHICLASS TFileStringList; class PASCALIMPLEMENTATION TFileStringList : public Classes::TStringList { typedef Classes::TStringList inherited; private: int fp; System::UnicodeString cache; bool __fastcall GetEOF(void); public: void __fastcall Reset(void); void __fastcall ReadLn(System::UnicodeString &s); void __fastcall Write(System::UnicodeString s); void __fastcall WriteLn(System::UnicodeString s); __property bool Eof = {read=GetEOF, nodefault}; public: /* TStringList.Create */ inline __fastcall TFileStringList(void)/* overload */ : Classes::TStringList() { } /* TStringList.Destroy */ inline __fastcall virtual ~TFileStringList(void) { } }; class DELPHICLASS TAdvCheckBox; class PASCALIMPLEMENTATION TAdvCheckBox : public Controls::TCustomControl { typedef Controls::TCustomControl inherited; private: bool FDown; Stdctrls::TCheckBoxState FState; bool FFocused; bool FReturnIsTab; Stdctrls::TTextLayout FBtnVAlign; Classes::TAlignment FAlignment; bool FEllipsis; System::UnicodeString FCaption; bool FIsWinXP; bool FHot; bool FClicksDisabled; bool FReadOnly; bool FMouseDown; Graphics::TBitmap* FBkgBmp; bool FBkgCache; bool FTransparentCaching; bool FTransparent; HIDESBASE MESSAGE void __fastcall WMEraseBkGnd(Messages::TMessage &Message); HIDESBASE MESSAGE void __fastcall CMEnabledChanged(Messages::TMessage &Message); HIDESBASE MESSAGE void __fastcall CMDialogChar(Messages::TWMKey &Message); HIDESBASE MESSAGE void __fastcall CMMouseLeave(Messages::TMessage &Message); HIDESBASE MESSAGE void __fastcall CMMouseEnter(Messages::TMessage &Message); void __fastcall SetState(Stdctrls::TCheckBoxState Value); void __fastcall SetChecked(bool Value); bool __fastcall GetChecked(void); void __fastcall SetCaption(System::UnicodeString Value); void __fastcall SetButtonVertAlign(const Stdctrls::TTextLayout Value); void __fastcall SetAlignment(const Classes::TLeftRight Value); void __fastcall SetEllipsis(const bool Value); void __fastcall DrawParentImage(Controls::TControl* Control, Graphics::TCanvas* Dest); void __fastcall SetTransparent(bool value); protected: virtual void __fastcall Paint(void); DYNAMIC void __fastcall MouseDown(Controls::TMouseButton Button, Classes::TShiftState Shift, int X, int Y); DYNAMIC void __fastcall MouseUp(Controls::TMouseButton Button, Classes::TShiftState Shift, int X, int Y); DYNAMIC void __fastcall MouseMove(Classes::TShiftState Shift, int X, int Y); DYNAMIC void __fastcall KeyDown(System::Word &Key, Classes::TShiftState Shift); DYNAMIC void __fastcall KeyUp(System::Word &Key, Classes::TShiftState Shift); void __fastcall SetDown(bool Value); DYNAMIC void __fastcall DoEnter(void); DYNAMIC void __fastcall DoExit(void); __property bool ClicksDisabled = {read=FClicksDisabled, write=FClicksDisabled, nodefault}; public: __fastcall virtual TAdvCheckBox(Classes::TComponent* AOwner); __fastcall virtual ~TAdvCheckBox(void); virtual void __fastcall Toggle(void); virtual void __fastcall SetBounds(int ALeft, int ATop, int AWidth, int AHeight); __property bool TransparentChaching = {read=FTransparentCaching, write=FTransparentCaching, nodefault}; __property bool Down = {read=FDown, write=SetDown, default=0}; __published: __property Action; __property Anchors = {default=3}; __property Constraints; __property Color = {default=-16777211}; __property Classes::TLeftRight Alignment = {read=FAlignment, write=SetAlignment, nodefault}; __property Stdctrls::TTextLayout ButtonVertAlign = {read=FBtnVAlign, write=SetButtonVertAlign, default=0}; __property System::UnicodeString Caption = {read=FCaption, write=SetCaption}; __property bool Checked = {read=GetChecked, write=SetChecked, default=0}; __property DragCursor = {default=-12}; __property DragKind = {default=0}; __property DragMode = {default=0}; __property bool Ellipsis = {read=FEllipsis, write=SetEllipsis, default=0}; __property Enabled = {default=1}; __property Font; __property ParentFont = {default=1}; __property ParentColor = {default=1}; __property PopupMenu; __property bool ReadOnly = {read=FReadOnly, write=FReadOnly, default=0}; __property bool ReturnIsTab = {read=FReturnIsTab, write=FReturnIsTab, nodefault}; __property ShowHint; __property Stdctrls::TCheckBoxState State = {read=FState, write=SetState, default=0}; __property TabOrder = {default=-1}; __property TabStop = {default=0}; __property bool Transparent = {read=FTransparent, write=SetTransparent, default=0}; __property Visible = {default=1}; __property OnClick; __property OnDragDrop; __property OnDragOver; __property OnEndDrag; __property OnKeyDown; __property OnKeyPress; __property OnKeyUp; __property OnMouseDown; __property OnMouseMove; __property OnMouseUp; public: /* TWinControl.CreateParented */ inline __fastcall TAdvCheckBox(HWND ParentWindow) : Controls::TCustomControl(ParentWindow) { } }; #pragma option push -b- enum TSearchDirection { sdTopBottom, sdLeftRight }; #pragma option pop class DELPHICLASS TSearchFooter; class PASCALIMPLEMENTATION TSearchFooter : public Classes::TPersistent { typedef Classes::TPersistent inherited; private: bool FShowFindPrev; bool FShowFindNext; System::UnicodeString FFindNextCaption; System::UnicodeString FFindPrevCaption; Graphics::TColor FColorTo; Graphics::TColor FColor; Classes::TNotifyEvent FOnChange; bool FVisible; bool FAutoThemeAdapt; bool FShowClose; bool FShowHighLight; bool FShowMatchCase; System::UnicodeString FMatchCaseCaption; System::UnicodeString FHintClose; System::UnicodeString FHintFindPrev; System::UnicodeString FHintHighLight; System::UnicodeString FHintFindNext; bool FAutoSearch; System::UnicodeString FLastSearch; int FSearchColumn; bool FSearchActiveColumnOnly; bool FSearchMatchStart; bool FSearchFixedCells; bool FSearchHiddenRows; System::UnicodeString FHighLightCaption; bool FAlwaysHighLight; TSearchDirection FSearchDirection; Graphics::TFont* FFont; void __fastcall SetColor(const Graphics::TColor Value); void __fastcall SetColorTo(const Graphics::TColor Value); void __fastcall SetFindNextCaption(const System::UnicodeString Value); void __fastcall SetFindPrevCaption(const System::UnicodeString Value); void __fastcall SetShowFindNext(const bool Value); void __fastcall SetShowFindPrev(const bool Value); void __fastcall SetVisible(const bool Value); void __fastcall SetAutoThemeAdapt(const bool Value); void __fastcall SetShowClose(const bool Value); void __fastcall SetShowHighLight(const bool Value); void __fastcall SetShowMatchCase(const bool Value); void __fastcall SetMatchCaseCaption(const System::UnicodeString Value); void __fastcall SetHintClose(const System::UnicodeString Value); void __fastcall SetHintFindNext(const System::UnicodeString Value); void __fastcall SetHintFindPrev(const System::UnicodeString Value); void __fastcall SetHintHighlight(const System::UnicodeString Value); void __fastcall SetHighLightCaption(const System::UnicodeString Value); void __fastcall SetFont(const Graphics::TFont* Value); protected: void __fastcall Changed(void); public: __fastcall TSearchFooter(Classes::TComponent* AOwner); __fastcall virtual ~TSearchFooter(void); virtual void __fastcall Assign(Classes::TPersistent* Source); __property bool AutoThemeAdapt = {read=FAutoThemeAdapt, write=SetAutoThemeAdapt, nodefault}; __property System::UnicodeString LastSearch = {read=FLastSearch, write=FLastSearch}; __published: __property bool AlwaysHighLight = {read=FAlwaysHighLight, write=FAlwaysHighLight, default=0}; __property bool AutoSearch = {read=FAutoSearch, write=FAutoSearch, default=1}; __property Graphics::TColor Color = {read=FColor, write=SetColor, default=16777215}; __property Graphics::TColor ColorTo = {read=FColorTo, write=SetColorTo, default=-16777201}; __property System::UnicodeString FindNextCaption = {read=FFindNextCaption, write=SetFindNextCaption}; __property System::UnicodeString FindPrevCaption = {read=FFindPrevCaption, write=SetFindPrevCaption}; __property Graphics::TFont* Font = {read=FFont, write=SetFont}; __property System::UnicodeString HighLightCaption = {read=FHighLightCaption, write=SetHighLightCaption}; __property System::UnicodeString HintClose = {read=FHintClose, write=SetHintClose}; __property System::UnicodeString HintFindNext = {read=FHintFindNext, write=SetHintFindNext}; __property System::UnicodeString HintFindPrev = {read=FHintFindPrev, write=SetHintFindPrev}; __property System::UnicodeString HintHighlight = {read=FHintHighLight, write=SetHintHighlight}; __property System::UnicodeString MatchCaseCaption = {read=FMatchCaseCaption, write=SetMatchCaseCaption}; __property bool SearchActiveColumnOnly = {read=FSearchActiveColumnOnly, write=FSearchActiveColumnOnly, default=0}; __property int SearchColumn = {read=FSearchColumn, write=FSearchColumn, default=-1}; __property bool SearchMatchStart = {read=FSearchMatchStart, write=FSearchMatchStart, default=0}; __property bool SearchFixedCells = {read=FSearchFixedCells, write=FSearchFixedCells, default=0}; __property bool SearchHiddenRows = {read=FSearchHiddenRows, write=FSearchHiddenRows, default=0}; __property TSearchDirection SearchDirection = {read=FSearchDirection, write=FSearchDirection, default=0}; __property bool ShowClose = {read=FShowClose, write=SetShowClose, default=1}; __property bool ShowFindNext = {read=FShowFindNext, write=SetShowFindNext, default=1}; __property bool ShowFindPrev = {read=FShowFindPrev, write=SetShowFindPrev, default=1}; __property bool ShowHighLight = {read=FShowHighLight, write=SetShowHighLight, default=1}; __property bool ShowMatchCase = {read=FShowMatchCase, write=SetShowMatchCase, default=1}; __property bool Visible = {read=FVisible, write=SetVisible, default=0}; __property Classes::TNotifyEvent OnChange = {read=FOnChange, write=FOnChange}; }; #pragma option push -b- enum THomeEndAction { heFirstLastColumn, heFirstLastRow }; #pragma option pop #pragma option push -b- enum TClipboardPasteAction { paReplace, paInsert }; #pragma option pop #pragma option push -b- enum TAdvanceDirection { adLeftRight, adTopBottom }; #pragma option pop #pragma option push -b- enum TInsertPosition { pInsertBefore, pInsertAfter }; #pragma option pop class DELPHICLASS TNavigation; class PASCALIMPLEMENTATION TNavigation : public Classes::TPersistent { typedef Classes::TPersistent inherited; private: bool FAllowInsertRow; bool FAllowDeleteRow; bool FAdvanceOnEnter; bool FAdvanceInsert; bool FAutoGotoWhenSorted; bool FAutoGotoIncremental; bool FAutoComboDropSize; bool FAllowClipboardShortcuts; bool FAllowRTFClipboard; bool FAllowSmartClipboard; bool FAllowClipboardAlways; bool FAllowClipboardColGrow; bool FAllowClipboardRowGrow; TClipboardPasteAction FClipboardPasteAction; bool FCopyHTMLTagsToClipboard; TAdvanceDirection FAdvanceDirection; bool FAdvanceAuto; bool FAdvanceAutoEdit; bool FCursorWalkEditor; bool FCursorWalkAlwaysEdit; bool FMoveRowOnSort; bool FKeepScrollOnSort; bool FImproveMaskSel; bool FAlwaysEdit; TInsertPosition FInsertPosition; bool FLineFeedOnEnter; THomeEndAction FHomeEndKey; bool FKeepHorizScroll; bool FAllowFMTClipboard; bool FTabToNextAtEnd; bool FEditSelectAll; TAdvanceDirection FTabAdvanceDirection; bool FSkipFixedCells; bool FSkipDisabledRows; bool FAllowCtrlEnter; bool FAppendOnArrowDown; bool FLeftRightRowSelect; bool FMoveScrollOnly; bool FComboGetUpdown; Classes::TNotifyEvent FOnChange; void __fastcall SetAutoGoto(bool aValue); void __fastcall SetAdvanceDirection(const TAdvanceDirection Value); void __fastcall SetAdvanceInsert(const bool Value); protected: void __fastcall Changed(void); public: __fastcall TNavigation(void); __fastcall virtual ~TNavigation(void); virtual void __fastcall Assign(Classes::TPersistent* Source); __property Classes::TNotifyEvent OnChange = {read=FOnChange, write=FOnChange}; __published: __property bool AllowInsertRow = {read=FAllowInsertRow, write=FAllowInsertRow, default=0}; __property bool AllowDeleteRow = {read=FAllowDeleteRow, write=FAllowDeleteRow, default=0}; __property bool AlwaysEdit = {read=FAlwaysEdit, write=FAlwaysEdit, default=0}; __property bool AdvanceOnEnter = {read=FAdvanceOnEnter, write=FAdvanceOnEnter, default=0}; __property bool AdvanceInsert = {read=FAdvanceInsert, write=SetAdvanceInsert, default=0}; __property bool AdvanceAutoEdit = {read=FAdvanceAutoEdit, write=FAdvanceAutoEdit, default=1}; __property bool AutoGotoWhenSorted = {read=FAutoGotoWhenSorted, write=SetAutoGoto, default=0}; __property bool AutoGotoIncremental = {read=FAutoGotoIncremental, write=FAutoGotoIncremental, default=0}; __property bool AutoComboDropSize = {read=FAutoComboDropSize, write=FAutoComboDropSize, default=0}; __property TAdvanceDirection AdvanceDirection = {read=FAdvanceDirection, write=SetAdvanceDirection, default=0}; __property bool AllowClipboardShortCuts = {read=FAllowClipboardShortcuts, write=FAllowClipboardShortcuts, default=0}; __property bool AllowCtrlEnter = {read=FAllowCtrlEnter, write=FAllowCtrlEnter, default=1}; __property bool AllowSmartClipboard = {read=FAllowSmartClipboard, write=FAllowSmartClipboard, default=0}; __property bool AllowRTFClipboard = {read=FAllowRTFClipboard, write=FAllowRTFClipboard, default=0}; __property bool AllowFmtClipboard = {read=FAllowFMTClipboard, write=FAllowFMTClipboard, default=0}; __property bool AllowClipboardAlways = {read=FAllowClipboardAlways, write=FAllowClipboardAlways, default=0}; __property bool AllowClipboardRowGrow = {read=FAllowClipboardRowGrow, write=FAllowClipboardRowGrow, default=1}; __property bool AllowClipboardColGrow = {read=FAllowClipboardColGrow, write=FAllowClipboardColGrow, default=1}; __property bool AdvanceAuto = {read=FAdvanceAuto, write=FAdvanceAuto, default=0}; __property bool AppendOnArrowDown = {read=FAppendOnArrowDown, write=FAppendOnArrowDown, default=0}; __property bool EditSelectAll = {read=FEditSelectAll, write=FEditSelectAll, default=1}; __property TInsertPosition InsertPosition = {read=FInsertPosition, write=FInsertPosition, default=0}; __property TClipboardPasteAction ClipboardPasteAction = {read=FClipboardPasteAction, write=FClipboardPasteAction, default=0}; __property bool ComboGetUpDown = {read=FComboGetUpdown, write=FComboGetUpdown, default=1}; __property bool CursorWalkEditor = {read=FCursorWalkEditor, write=FCursorWalkEditor, default=0}; __property bool CursorWalkAlwaysEdit = {read=FCursorWalkAlwaysEdit, write=FCursorWalkAlwaysEdit, default=1}; __property bool MoveRowOnSort = {read=FMoveRowOnSort, write=FMoveRowOnSort, default=0}; __property bool KeepScrollOnSort = {read=FKeepScrollOnSort, write=FKeepScrollOnSort, default=0}; __property bool MoveScrollOnly = {read=FMoveScrollOnly, write=FMoveScrollOnly, default=0}; __property bool ImproveMaskSel = {read=FImproveMaskSel, write=FImproveMaskSel, default=0}; __property bool LeftRightRowSelect = {read=FLeftRightRowSelect, write=FLeftRightRowSelect, default=1}; __property bool CopyHTMLTagsToClipboard = {read=FCopyHTMLTagsToClipboard, write=FCopyHTMLTagsToClipboard, default=1}; __property bool KeepHorizScroll = {read=FKeepHorizScroll, write=FKeepHorizScroll, default=0}; __property bool LineFeedOnEnter = {read=FLineFeedOnEnter, write=FLineFeedOnEnter, default=0}; __property THomeEndAction HomeEndKey = {read=FHomeEndKey, write=FHomeEndKey, default=0}; __property bool SkipFixedCells = {read=FSkipFixedCells, write=FSkipFixedCells, default=1}; __property bool SkipDisabledRows = {read=FSkipDisabledRows, write=FSkipDisabledRows, default=1}; __property bool TabToNextAtEnd = {read=FTabToNextAtEnd, write=FTabToNextAtEnd, default=0}; __property TAdvanceDirection TabAdvanceDirection = {read=FTabAdvanceDirection, write=FTabAdvanceDirection, default=0}; }; #pragma option push -b- enum TGridFixedCellEdit { fceNone, fceDblClick, fceLeftClick, fceRightClick }; #pragma option pop #pragma option push -b- enum TWheelAction { waMoveSelection, waScroll }; #pragma option pop typedef void __fastcall (__closure *TIsDesigningEvent)(System::TObject* Sender, bool &IsDesigning); class DELPHICLASS TMouseActions; class PASCALIMPLEMENTATION TMouseActions : public Classes::TPersistent { typedef Classes::TPersistent inherited; private: bool FColSelect; bool FRowSelect; bool FAllSelect; bool FDirectEdit; bool FDirectComboDrop; bool FDirectComboClose; bool FDirectDateClose; bool FDirectDateDrop; bool FDisjunctRowSelect; bool FDisjunctColSelect; bool FAllColumnSize; bool FAllRowSize; bool FCaretPositioning; bool FSizeFixedCol; bool FSizeFixedRow; bool FDisjunctCellSelect; TGridFixedCellEdit FFixedRowsEdit; TGridFixedCellEdit FFixedColsEdit; bool FHotmailRowSelect; bool FRangeSelectAndEdit; bool FNoAutoRangeScroll; bool FPreciseCheckBoxCheck; bool FPreciseNodeClick; bool FCheckAllCheck; bool FNodeAllExpandContract; bool FMoveRowOnNodeClick; bool FRowSelectPersistent; bool FSelectOnRightClick; bool FNoScrollOnPartialRow; int FWheelIncrement; TWheelAction FWheelAction; bool FAutoSizeColOnDblClick; bool FEditOnDblClickOnly; bool FDisjunctRowSelectNoCtrl; Classes::TNotifyEvent FOnChange; Classes::TNotifyEvent FOnInvalidate; TIsDesigningEvent FOnIsDesigning; Classes::TNotifyEvent FOnDisableEdit; void __fastcall SetDisjunctColSelect(const bool AValue); void __fastcall SetDisjunctRowSelect(const bool AValue); void __fastcall SetDisjunctCellSelect(const bool AValue); void __fastcall SetHotmailRowSelect(const bool AValue); void __fastcall SetEditOnDblClickOnly(const bool AValue); void __fastcall SetWheelAction(const TWheelAction Value); protected: void __fastcall Changed(void); bool __fastcall IsDesigning(void); public: __fastcall TMouseActions(Classes::TComponent* AOwner); __fastcall virtual ~TMouseActions(void); virtual void __fastcall Assign(Classes::TPersistent* Source); __property bool DisjunctRowSelectDirect = {read=FDisjunctRowSelect, write=FDisjunctRowSelect, nodefault}; __property Classes::TNotifyEvent OnChange = {read=FOnChange, write=FOnChange}; __property TIsDesigningEvent OnIsDesigning = {read=FOnIsDesigning, write=FOnIsDesigning}; __property Classes::TNotifyEvent OnInvalidate = {read=FOnInvalidate, write=FOnInvalidate}; __property Classes::TNotifyEvent OnDisableEdit = {read=FOnDisableEdit, write=FOnDisableEdit}; __published: __property bool AllColumnSize = {read=FAllColumnSize, write=FAllColumnSize, default=0}; __property bool AllRowSize = {read=FAllRowSize, write=FAllRowSize, default=0}; __property bool AllSelect = {read=FAllSelect, write=FAllSelect, default=0}; __property bool AutoSizeColOnDblClick = {read=FAutoSizeColOnDblClick, write=FAutoSizeColOnDblClick, default=1}; __property bool CaretPositioning = {read=FCaretPositioning, write=FCaretPositioning, default=0}; __property bool CheckAllCheck = {read=FCheckAllCheck, write=FCheckAllCheck, default=0}; __property bool ColSelect = {read=FColSelect, write=FColSelect, default=0}; __property bool DirectComboClose = {read=FDirectComboClose, write=FDirectComboClose, default=0}; __property bool DirectComboDrop = {read=FDirectComboDrop, write=FDirectComboDrop, default=0}; __property bool DirectDateClose = {read=FDirectDateClose, write=FDirectDateClose, default=0}; __property bool DirectDateDrop = {read=FDirectDateDrop, write=FDirectDateDrop, default=0}; __property bool DirectEdit = {read=FDirectEdit, write=FDirectEdit, default=0}; __property bool DisjunctRowSelect = {read=FDisjunctRowSelect, write=SetDisjunctRowSelect, default=0}; __property bool DisjunctRowSelectNoCtrl = {read=FDisjunctRowSelectNoCtrl, write=FDisjunctRowSelectNoCtrl, default=0}; __property bool DisjunctColSelect = {read=FDisjunctColSelect, write=SetDisjunctColSelect, default=0}; __property bool DisjunctCellSelect = {read=FDisjunctCellSelect, write=SetDisjunctCellSelect, default=0}; __property bool EditOnDblClickOnly = {read=FEditOnDblClickOnly, write=SetEditOnDblClickOnly, default=0}; __property TGridFixedCellEdit FixedRowsEdit = {read=FFixedRowsEdit, write=FFixedRowsEdit, default=0}; __property TGridFixedCellEdit FixedColsEdit = {read=FFixedColsEdit, write=FFixedColsEdit, default=0}; __property bool HotmailRowSelect = {read=FHotmailRowSelect, write=SetHotmailRowSelect, default=0}; __property bool MoveRowOnNodeClick = {read=FMoveRowOnNodeClick, write=FMoveRowOnNodeClick, default=0}; __property bool NoAutoRangeScroll = {read=FNoAutoRangeScroll, write=FNoAutoRangeScroll, default=0}; __property bool NodeAllExpandContract = {read=FNodeAllExpandContract, write=FNodeAllExpandContract, default=0}; __property bool NoScrollOnPartialRow = {read=FNoScrollOnPartialRow, write=FNoScrollOnPartialRow, default=0}; __property bool PreciseCheckBoxCheck = {read=FPreciseCheckBoxCheck, write=FPreciseCheckBoxCheck, default=0}; __property bool PreciseNodeClick = {read=FPreciseNodeClick, write=FPreciseNodeClick, default=1}; __property bool RangeSelectAndEdit = {read=FRangeSelectAndEdit, write=FRangeSelectAndEdit, default=0}; __property bool RowSelect = {read=FRowSelect, write=FRowSelect, default=0}; __property bool RowSelectPersistent = {read=FRowSelectPersistent, write=FRowSelectPersistent, default=0}; __property bool SelectOnRightClick = {read=FSelectOnRightClick, write=FSelectOnRightClick, default=0}; __property bool SizeFixedCol = {read=FSizeFixedCol, write=FSizeFixedCol, default=0}; __property bool SizeFixedRow = {read=FSizeFixedRow, write=FSizeFixedRow, default=0}; __property int WheelIncrement = {read=FWheelIncrement, write=FWheelIncrement, default=0}; __property TWheelAction WheelAction = {read=FWheelAction, write=SetWheelAction, default=0}; }; //-- var, const, procedure --------------------------------------------------- } /* namespace Advobj */ using namespace Advobj; #pragma pack(pop) #pragma option pop #pragma delphiheader end. //-- end unit ---------------------------------------------------------------- #endif // AdvobjHPP
[ "raphael66x@gmail.com" ]
raphael66x@gmail.com
afb1b195818de7d07ecf892aa43d5a3c18947fcd
1c5267a078acc756b0f39e6326ba7f51ac1c6d13
/BOI (Baltic)/2005 Bus Trip.cpp
052c5499aa55c8712853d30320ddf4bab10d19f8
[]
no_license
updown2/OI-Practice
eaab5e0243410b07c7adf81aaa039049f6023438
0af35e40458560c1c55ccea175d47c457ad36c6f
refs/heads/master
2021-06-26T06:20:24.304937
2020-09-25T18:09:13
2020-09-25T18:09:13
134,600,273
1
0
null
null
null
null
UTF-8
C++
false
false
2,140
cpp
/* sort edges by ending time dp[edge] = min wasted time if we take this edge (up to d[edge]) dp[x] = min(dp[y] + a[x]-d[y] for all y where there is an edge from y -- x and d[y] <= a[x]) = min(dp[y]-d[y] + a[x]) so we can store dp[y]-d[y] for all edges add dp values to the node that the edge ends on (also store d[edge]) dp values form a monotomic queue (don't store all the values) can binary search on a node to get the minimum value */ #include <bits/stdc++.h> using namespace std; typedef long long ll; #define For(i, a, b) for(int i=a; i<b; i++) #define ffi For(i, 0, N) #define ffj For(j, 0, M) #define ffa ffi ffj #define s <<" "<< //#define c <<" : "<< #define w cout #define e endl//"\n" #define pb push_back #define mp make_pair #define a first #define b second //#define int ll const int MAXN=100000, INF=1000000000; ///500,000,000 struct Edge { int a, b, c, d, loc1, loc2; /// loc1 --> loc2 } vals[MAXN]; bool comp(Edge a, Edge b) { return a.d < b.d; } int N, M, reach, T, out; vector<pair<int, int> > nod[MAXN]; /// (dp[x] - d[x], d[x]) main() { //ifstream cin("test.in"); ios_base::sync_with_stdio(0); cin.tie(0); cin >> N >> M >> reach >> T; reach--; For (i, 0, M) { cin >> vals[i].loc1 >> vals[i].loc2 >> vals[i].a >> vals[i].b >> vals[i].c >> vals[i].d; vals[i].loc1--; vals[i].loc2--; } sort(vals, vals+M, comp); nod[0].pb(mp(0, 0)); ffj { int x = vals[j].loc1, y = vals[j].loc2; if (vals[j].d > T) continue; if (nod[x].size() == 0) continue; if (nod[x][0].b > vals[j].a) continue; //w<< "looking at" s j+1<<e; int a = 0, b = nod[x].size()-1; while (a != b) { int mid = (a+b+1)/2; if (nod[x][mid].b > vals[j].a) b = mid-1; else a = mid; } int dp = nod[x][a].a + vals[j].b - vals[j].c; if (nod[y].size() == 0 || nod[y][nod[y].size()-1].a > dp) { nod[y].emplace_back(dp, vals[j].d); //w<< "dp =" s dp+vals[j].d s dp s "d =" s vals[j].d<<e; } } if (nod[reach].size() == 0) w<< -1<<e; else w<< T + nod[reach][nod[reach].size()-1].a <<e; }
[ "riya.aro@gmail.com" ]
riya.aro@gmail.com
9c67ffe5216dbe3ff087b9ecdb6f49dab74eaee1
c4c0734c2ea10585e5862de8d8448df3425e8c89
/leetcode/old_version_leetcode/152.cpp
57bf5bf2addd7f740179c488a5f070827d5d07d3
[]
no_license
dalalsunil1986/online-judge-boosting
19123449ed7b78d40335b3fe9fc13626a5b79b9a
036bd382e9ace22066f7cad05fe9e7370d0fcf1b
refs/heads/master
2022-04-15T16:32:58.189990
2020-04-15T17:16:57
2020-04-15T17:16:57
null
0
0
null
null
null
null
UTF-8
C++
false
false
892
cpp
// class Solution{ // public: // int maxProduct(vector<int>& nums){ // if(nums.size()==0) return 0; // int res=nums[0],n=nums.size(); // vector<int> maxDp(n,0),minDp(n,0); // maxDp[0]=res;minDp[0]=res; // for(int i=1;i<n;++i){ // maxDp[i] = max(nums[i],max(minDp[i-1]*nums[i],maxDp[i-1]*nums[i])); // minDp[i] = min(nums[i],min(maxDp[i-1]*nums[i],minDp[i-1]*nums[i])); // res = max(res,max(maxDp[i],minDp[i])); // } // return res; // } // }; class Solution{ public: int maxProduct(vector<int>& nums){ if(nums.size()==0) return 0; int res = nums[0],n=nums.size(); int maxMulti=res,minMulti=res,maxTmp,minTmp; for(int i=1;i<n;++i){ maxTmp = max(nums[i],max(nums[i]*maxMulti,nums[i]*minMulti)); minTmp = min(nums[i],min(nums[i]*minMulti,nums[i]*maxMulti)); maxMulti = maxTmp; minMulti = minTmp; res = max(res,maxMulti); } return res; } };
[ "pkusp@outlook.com" ]
pkusp@outlook.com
4477176d835221c16628641f3c25fed1b3226a23
30492e22d09ed0dc071370481145015832ecc312
/izg_lab_03/src/student.cpp
4dfc733b4731a39c02cf240ee4fc8136c084d348
[]
no_license
xmihol00/IZG
1ecd7c4b002610b44c3dbad563a543dc4fcc94b3
79e7a943173327d274542b3bfd2bc1e45e87ff12
refs/heads/master
2023-06-29T16:55:47.426575
2021-07-31T08:04:55
2021-07-31T08:04:55
391,292,125
0
0
null
null
null
null
UTF-8
C++
false
false
12,614
cpp
/** * @file student.cpp * @author Ladislav Mosner, VUT FIT Brno, imosner@fit.vutbr.cz * @author Petr Kleparnik, VUT FIT Brno, ikleparnik@fit.vutbr.cz * @author Kamil Behun, VUT FIT Brno, ibehun@fit.vutbr.cz * @date 11.03.2018 * * @brief Deklarace funkci studentu. DOPLNUJI STUDENTI * */ // student: xmihol00, David Mihola #include "base.h" #include "student.h" #include "globals.h" #include <math.h> #include <vector> #include <tuple> #include <algorithm> #include <iostream> /** * @brief Vraci barvu pixelu z pozice [x, y] * @param[in] x X souradnice pixelu * @param[in] y Y souradnice pixelu * @return Barva pixelu na pozici [x, y] ve formatu RGBA */ RGBA getPixel(int x, int y) { if (x >= width || y >= height || x < 0 || y < 0) { IZG_ERROR("Pristup do framebufferu mimo hranice okna\n"); } return framebuffer[y * width + x]; } /** * @brief Nastavi barvu pixelu na pozici [x, y] * @param[in] x X souradnice pixelu * @param[in] y Y souradnice pixelu * @param[in] color Barva pixelu ve formatu RGBA */ void putPixel(int x, int y, RGBA color) { if (x >= width || y >= height || x < 0 || y < 0) { IZG_ERROR("Pristup do framebufferu mimo hranice okna\n"); } framebuffer[y * width + x] = color; } /** * @brief Vykresli usecku se souradnicemi [x1, y1] a [x2, y2] * @param[in] x1 X souradnice 1. bodu usecky * @param[in] y1 Y souradnice 1. bodu usecky * @param[in] x2 X souradnice 2. bodu usecky * @param[in] y2 Y souradnice 2. bodu usecky * @param[in] color Barva pixelu usecky ve formatu RGBA * @param[in] arrow Priznak pro vykresleni sipky (orientace hrany) */ void drawLine(int x1, int y1, int x2, int y2, RGBA color, bool arrow = false) { if (arrow) { // Sipka na konci hrany double vx1 = x2 - x1; double vy1 = y2 - y1; double length = sqrt(vx1 * vx1 + vy1 * vy1); double vx1N = vx1 / length; double vy1N = vy1 / length; double vx1NN = -vy1N; double vy1NN = vx1N; int w = 3; int h = 10; int xT = (int) (x2 + w * vx1NN - h * vx1N); int yT = (int) (y2 + w * vy1NN - h * vy1N); int xB = (int) (x2 - w * vx1NN - h * vx1N); int yB = (int) (y2 - w * vy1NN - h * vy1N); pinedaTriangle(Point(x2, y2), Point(xT, yT), Point(xB, yB), color, color, false); } bool steep = abs(y2 - y1) > abs(x2 - x1); if (steep) { SWAP(x1, y1); SWAP(x2, y2); } if (x1 > x2) { SWAP(x1, x2); SWAP(y1, y2); } const int dx = x2 - x1, dy = abs(y2 - y1); const int P1 = 2 * dy, P2 = P1 - 2 * dx; int P = 2 * dy - dx; int y = y1; int ystep = 1; if (y1 > y2) ystep = -1; for (int x = x1; x <= x2; x++) { if (steep) { if (y >= 0 && y < width && x >= 0 && x < height) { putPixel(y, x, color); } } else { if (x >= 0 && x < width && y >= 0 && y < height) { putPixel(x, y, color); } } if (P >= 0) { P += P2; y += ystep; } else { P += P1; } } } static std::pair<int, int> extreme(std::vector<Point> points, bool(*comparer)(int, int)) { if (points.size() == 0) { return {0, 0}; //std::cerr << "Cannot find minimum\n"; //throw "Cannot find minimum."; } int x_min = points[0].x; int y_min = points[0].y; for (size_t i = 1; i < points.size(); i++) { if (comparer(points[i].x, x_min)) { x_min = points[i].x; } if (comparer(points[i].y, y_min)) { y_min = points[i].y; } } return {x_min, y_min}; } /** * @brief Vyplni a vykresli trojuhelnik * @param[in] v1 Prvni bod trojuhelniku * @param[in] v2 Druhy bod trojuhelniku * @param[in] v3 Treti bod trojuhelniku * @param[in] color1 Barva vyplne trojuhelniku * @param[in] color2 Barva hranice trojuhelniku * @param[in] arrow Priznak pro vykresleni sipky (orientace hrany) * * SPOLECNY UKOL. Doplnuji studenti se cvicicim. */ void pinedaTriangle(const Point &v1, const Point &v2, const Point &v3, const RGBA &color1, const RGBA &color2, bool arrow) { // Nalezeni obalky (minX, maxX), (minY, maxY) trojuhleniku. auto points = std::vector<Point>{v1, v2, v3}; int x_min, y_min, x_max, y_max; std::tie(x_min, y_min) = extreme(points, [](int a, int b){return a < b;}); std::tie(x_max, y_max) = extreme(points, [](int a, int b){return a > b;}); // Oriznuti obalky (minX, maxX, minY, maxY) trojuhleniku podle rozmeru okna. x_min = MAX(x_min, 0); y_min = MAX(y_min, 0); x_max = MIN(x_max, width - 1); y_max = MIN(y_max, height - 1); // Spocitani parametru hranove funkce (deltaX, deltaY) pro kazdou hranu. // Hodnoty deltaX, deltaY jsou souradnicemi vektoru, ktery ma pocatek // v prvnim vrcholu hrany, konec v druhem vrcholu. // Vypocet prvnotni hodnoty hranove funkce. // edge = A*x + B*y + C // smerovy vektor (x2 - x1, y2 - y1) --> normalovy (-(y2 - y1), x2 - x1) --> (y1 - y2, x2 - x1) // A = y1 - y2, B = x2 - x1, C = x1 * y2 - x2 * y1 int A1, A2, A3; int B1, B2, B3; int a_edge{(A1 = (v1.y - v2.y)) * x_min + (B1 = (v2.x - v1.x)) * y_min + v1.x * v2.y - v2.x * v1.y}; int b_edge{(A2 = (v2.y - v3.y)) * x_min + (B2 = (v3.x - v2.x)) * y_min + v2.x * v3.y - v3.x * v2.y}; int c_edge{(A3 = (v3.y - v1.y)) * x_min + (B3 = (v1.x - v3.x)) * y_min + v3.x * v1.y - v1.x * v3.y}; // Vyplnovani: Cyklus pres vsechny body (x, y) v obdelniku (minX, minY), (maxX, maxY). // Pro aktualizaci hodnot hranove funkce v bode P (x +/- 1, y) nebo P (x, y +/- 1) // vyuzijte hodnoty hranove funkce E (x, y) z bodu P (x, y). // vzdy skoci na zacatek noveho radku /*for (int y = y_min; y < y_max; y++) { int edge1{a_edge}; int edge2{b_edge}; int edge3{c_edge}; for (int x = x_min; x < x_max; x++) { if (edge1 > 0 && edge2 > 0 && edge3 > 0) { putPixel(x, y, color1); } edge1 += A1; edge2 += A2; edge3 += A3; } a_edge += B1; b_edge += B2; c_edge += B3; }*/ // zig zag prochazeni prostoru int iter{1}; for (int y = y_min; y <= y_max; y++) { for (int x = x_min; x != x_max; x += iter) { if (a_edge >= 0 && b_edge >= 0 && c_edge >= 0) { putPixel(x, y, color1); } a_edge += A1; b_edge += A2; c_edge += A3; } SWAP(x_min, x_max); iter = -iter; A1 = -A1; A2 = -A2; A3 = -A3; a_edge += B1; b_edge += B2; c_edge += B3; } // Prekresleni hranic trojuhelniku barvou color2. drawLine(v1.x, v1.y, v2.x, v2.y, color2, arrow); drawLine(v2.x, v2.y, v3.x, v3.y, color2, arrow); drawLine(v3.x, v3.y, v1.x, v1.y, color2, arrow); } /** * @brief Vyplni a vykresli polygon * @param[in] points Pole bodu polygonu * @param[in] size Pocet bodu polygonu (velikost pole "points") * @param[in] color1 Barva vyplne polygonu * @param[in] color2 Barva hranice polygonu * * SAMOSTATNY BODOVANY UKOL. Doplnuji pouze studenti. */ void pinedaPolygon(const Point *points, const int size, const RGBA &color1, const RGBA &color2) { // Pri praci muzete vyuzit pro vas predpripravene datove typy z base.h., napriklad: // // Pro ukladani parametru hranovych funkci muzete vyuzit prichystany vektor parametru hranovych funkci "EdgeParams": // // EdgeParams edgeParams(size) // Vytvorite vektor (pole) "edgeParams" parametru hranovych funkci o velikosti "size". // edgeParams[i].deltaX, edgeParams[i].deltaY // Pristup k parametrum (deltaX, deltaY) hranove funkce v poli "edgeParams" na indexu "i". // // Pro ukladani hodnot hranovych funkci muzete vyuzit prichystany vektor hodnot hranovych funkci "EdgeFncValues": // // EdgeFncValues edgeFncValues(size) // Vytvorite vektor (pole) "edgeFncValues" hodnot hranovych funkci o velikosti "size". // edgeFncValues[i] // Pristup k hodnote hranove funkce v poli "edgeFncValues" na indexu "i". // // Nalezeni obalky (minX, maxX), (minY, maxY) polygonu. int x_min, y_min, x_max, y_max; std::tie(x_min, y_min) = extreme(std::vector<Point>{points, points + size}, [](int a, int b){return a < b;}); std::tie(x_max, y_max) = extreme(std::vector<Point>{points, points + size}, [](int a, int b){return a > b;}); // Oriznuti obalky (minX, maxX), (minY, maxY) polygonu podle rozmeru okna x_min = MAX(x_min, 0); y_min = MAX(y_min, 0); x_max = MIN(x_max, width - 1); y_max = MIN(y_max, height - 1); // Spocitani parametru (deltaX, deltaY) hranove funkce pro kazdou hranu. // Hodnoty deltaX, deltaY jsou souradnicemi vektoru, ktery ma pocatek // v prvnim vrcholu hrany, konec v druhem vrcholu. // Vypocet prvnotnich hodnot hranovych funkci pro jednotlive hrany. EdgeParams edge_prms(size); EdgeFncValues edge_fnc_vals(size); for (int i = 0; i < size; i++) { edge_prms[i].deltaX = points[i].y - points[(i + 1) % size].y; edge_prms[i].deltaY = points[(i + 1) % size].x - points[i].x; edge_fnc_vals[i] = edge_prms[i].deltaX * x_min + edge_prms[i].deltaY * y_min - edge_prms[i].deltaX * points[i].x - edge_prms[i].deltaY * points[i].y; } // Test konvexnosti polygonu /*if (size > 3) { bool sign{false}; int cross_product; for (int i = 0; i < size; i++) { cross_product = (points[(i + 2) % size].x - points[(i + 1) % size].x) * (points[i].y - points[(i + 1) % size].y) - (points[i].x - points[(i + 1) % size].x) * (points[(i + 2) % size].y - points[(i + 1) % size].y); if (i == 0) { sign = cross_product > 0; } else if (sign != (cross_product > 0)) { return; } } }*/ // Vyplnovani: Cyklus pres vsechny body (x, y) v obdelniku (minX, minY), (maxX, maxY). // Pro aktualizaci hodnot hranove funkce v bode P (x +/- 1, y) nebo P (x, y +/- 1) // vyuzijte hodnoty hranove funkce E (x, y) z bodu P (x, y) */ // vzdy skoci na zacatek noveho radku radek /*for (int y = y_min; y < y_max; y++) { EdgeFncValues line_efv = edge_fnc_vals; for (int x = x_min; x < x_max; x++) { if (std::all_of(line_efv.begin(), line_efv.end(), [](int x){return x > 0; })) { putPixel(x, y, color1); } for (int i = 0; i < size; i++) { line_efv[i] += edge_prms[i].deltaX; } } for (int i = 0; i < size; i++) { edge_fnc_vals[i] += edge_prms[i].deltaY; } }*/ // zig zag prochazeni oblasti int iter{1}; for (int y = y_min; y <= y_max; y++) { for (int x = x_min; x != x_max; x += iter) { if (std::all_of(edge_fnc_vals.begin(), edge_fnc_vals.end(), [](int x){return x >= 0; })) { putPixel(x, y, color1); } for (int i = 0; i < size ; i++) { edge_fnc_vals[i] += edge_prms[i].deltaX; } } SWAP(x_max, x_min); iter = -iter; for (int i = 0; i < size; i++) { edge_prms[i].deltaX = -edge_prms[i].deltaX; edge_fnc_vals[i] += edge_prms[i].deltaY; } } // Prekresleni hranic polygonu barvou color2. for (int i = 0; i < size; i++) { drawLine(points[i].x, points[i].y, points[(i + 1) % size].x, points[(i + 1) % size].y, color2/*, true*/); } }
[ "mihola.dejv@gmail.com" ]
mihola.dejv@gmail.com
bf35bdd2ca97e7fefae35194381e783f35bea55c
f47639fead3e7d32c453a0c55f656dbd8e241456
/src/common/getStatus.cpp
cadec2917b3118b9786ae4c51ff8ff6f43df4d36
[ "Apache-2.0" ]
permissive
ErikZhou/Subprocess
fd99e25096027d779de60c105bb96a13def1ab5c
b45320878ca43ae0058676c93222be4a46ac8cd1
refs/heads/master
2022-01-19T06:47:28.638756
2019-03-31T20:20:22
2019-03-31T20:20:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
120
cpp
#include "Process.hpp" namespace lp { int Process::getStatus() const noexcept { return _status; } } // namespace lp
[ "leandre.blanchard@epitech.eu" ]
leandre.blanchard@epitech.eu
bd5ea2114803a27d6a3a11edd93f14c77eab2457
3b15b2d3dfaa1113eec2a8cd52d523e0666a1de3
/src/Engine/Timer.h
19eaf085ffc72e34a8d9b6691545da6a0564b62c
[]
no_license
CryptoLover705/2d_game_engine____OLD
764a789f297e6fd976e71c3ba4f03b1af244301c
ea369b4a0a60c5125c6e4d6547234806c5102740
refs/heads/master
2022-11-05T05:20:56.268580
2020-06-17T14:17:08
2020-06-17T14:17:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
343
h
#pragma once #include "SDL2/SDL.h" class Timer { public: Timer(); // Actions virtual void Start(); virtual void Stop(); virtual void Pause(); virtual void Resume(); virtual void Reset(); Uint32 GetTicks(); bool IsStarted(); bool IsActive(); bool IsPaused(); private: Uint32 StartTicks, PausedTicks; bool bPaused, bStarted; };
[ "50221455+CryptoLover705@users.noreply.github.com" ]
50221455+CryptoLover705@users.noreply.github.com
d8679e88bbbe4fbb00ea39a4a414f185069c49c0
a9b03f4730534da6e25e8a52ea0cd870db7c28b4
/modules/monitor/common/recurrent_runner.h
8edc3c637453ce301f68ee93e846a933442ae23f
[ "Apache-2.0" ]
permissive
zhuangli1987/apollo
6bcf2ddebb23377e701ec9bf2b56c1ea4632bab9
2210bef1ef5aadfeccb48949c07b31de4e581b25
refs/heads/master
2020-03-28T00:31:50.529228
2018-09-25T01:29:51
2018-09-25T01:31:39
147,425,981
0
0
null
2018-09-04T22:11:18
2018-09-04T22:11:18
null
UTF-8
C++
false
false
1,635
h
/****************************************************************************** * Copyright 2017 The Apollo 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. *****************************************************************************/ #ifndef MODULES_MONITOR_COMMON_RECURRENT_RUNNER_H_ #define MODULES_MONITOR_COMMON_RECURRENT_RUNNER_H_ #include <memory> #include <mutex> #include <string> #include <thread> #include <vector> /** * @namespace apollo::monitor * @brief apollo::monitor */ namespace apollo { namespace monitor { class RecurrentRunner { public: RecurrentRunner(const std::string &name, const double interval); virtual ~RecurrentRunner() = default; // Tick once, which may or may not execute the RunOnce() function, based on // the interval setting. void Tick(const double current_time); // Do the actual work. virtual void RunOnce(const double current_time) = 0; protected: std::string name_; private: double interval_; double next_round_ = 0; }; } // namespace monitor } // namespace apollo #endif // MODULES_MONITOR_COMMON_RECURRENT_RUNNER_H_
[ "ycool@users.noreply.github.com" ]
ycool@users.noreply.github.com
58182c79bdbbdaabd87e0ad0109a0387f72f8b07
e833512c775ee03178b236098922f323e803a64c
/dualJets3Mesh_kappaEpsilonTurbulenceOff_v2_fvSolution_changed_relaxationfactors/30/U
1e88dc4a2c6262491bc97f136accb228e4fa7e1c
[]
no_license
bshambaugh/TrySolversAndModelsOpenFoamCFD
19a8820d30dc6c8c41bd5b05065ded6e18ccffdc
c914b049aa65f47d1475cf28b58154c334e084ad
refs/heads/master
2020-04-24T04:19:55.332736
2019-02-20T17:40:56
2019-02-20T17:40:56
171,698,766
0
0
null
null
null
null
UTF-8
C++
false
false
43,934
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 4.1 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volVectorField; location "30"; object U; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 1 -1 0 0 0 0]; internalField nonuniform List<vector> 1280 ( (-8.94569e-15 1.31486 -8.01888) (-1.25694e-14 4.61093 -10.7371) (-8.35226e-15 4.45238 -7.28053) (-7.01919e-15 5.52649 -6.52579) (-1.03342e-14 8.97438 -9.70866) (-7.44829e-15 7.98944 -7.49887) (-7.10689e-15 9.98398 -7.97961) (-7.27958e-15 10.2473 -7.61567) (-8.34843e-15 14.6061 -12.4445) (-4.88706e-15 14.1624 -9.48003) (-2.38637e-15 15.7251 -8.46168) (-1.28309e-14 21.1089 -15.9123) (-1.18024e-14 20.5492 -13.0134) (-1.18046e-14 22.8458 -12.0704) (-2.336e-14 30.1987 -22.4957) (-1.79042e-14 28.2387 -18.3548) (-1.53897e-14 33.3387 -17.4422) (-1.7368e-14 32.9474 -30.5398) (-1.21153e-14 43.9766 -23.4456) (-1.07442e-14 33.39 -37.5375) (-9.07798e-15 43.4609 43.557) (-1.05654e-14 43.4397 67.4911) (-7.55675e-15 45.5047 80.8621) (-7.35555e-15 47.4612 89.7427) (-8.20322e-15 48.0497 96.1871) (-8.30198e-15 50.6263 101.229) (-8.39675e-15 51.2125 72.0006) (-7.8097e-15 84.5187 121.149) (-3.89946e-15 85.2689 121.49) (1.32544e-16 84.9231 119.182) (4.31837e-15 84.3343 115.608) (8.2234e-15 83.4767 112.048) (1.17458e-14 82.5406 109.302) (1.15031e-14 81.5154 107.412) (5.52251e-15 80.7833 106.596) (-3.64368e-15 80.0203 107.129) (-1.28302e-14 80.5459 109.087) (-1.92635e-14 80.0499 111.481) (-2.53939e-14 83.0125 112.649) (-3.30664e-14 81.928 101.657) (-3.98122e-14 113.149 102.468) (-3.16724e-14 71.0175 71.6832) (-3.22282e-14 64.5372 73.005) (-2.85641e-14 54.3493 72.993) (-1.33506e-14 47.6677 82.8294) (-6.51715e-16 30.3128 51.6115) (2.15903e-15 25.9845 47.0242) (4.94069e-15 19.9761 39.0486) (2.83254e-14 15.4339 29.914) (2.58512e-14 7.86965 10.8978) (2.87332e-14 7.04272 6.65003) (3.02063e-14 3.22209 7.45818) (1.16383e-14 -1.41301 16.8917) (6.79017e-15 -3.00143 27.1271) (4.99013e-15 -7.67168 37.3264) (1.23251e-14 -18.7826 75.9092) (1.94301e-14 -30.4715 85.3722) (2.50284e-14 -41.7102 88.9049) (3.30001e-14 -50.195 87.6385) (5.72604e-14 -91.0366 121.241) (4.8424e-14 -75.7628 108.097) (4.06553e-14 -77.4668 112.513) (3.65759e-14 -77.0457 108.946) (3.19616e-14 -78.2658 106.805) (2.84912e-14 -79.2023 105.33) (2.5828e-14 -80.2992 105.483) (2.36006e-14 -81.1471 106.651) (2.12635e-14 -81.7748 108.417) (1.92256e-14 -82.0814 110.218) (1.80601e-14 -82.0956 111.669) (1.76017e-14 -81.8059 112.66) (1.74411e-14 -80.9369 113.608) (1.79261e-14 -80.0626 114.414) (3.23759e-14 -41.6783 61.6577) (2.08097e-14 -46.2595 93.312) (2.05229e-14 -42.3952 89.3599) (1.86135e-14 -41.0053 85.3551) (1.59675e-14 -38.1078 78.1197) (1.41986e-14 -35.6137 65.2978) (1.34074e-14 -34.8662 44.0644) (1.29117e-14 -23.9899 -31.7458) (1.4366e-14 -36.0901 -24.5907) (2.26617e-14 -20.4886 -32.1845) (1.98545e-14 -23.4096 -17.1467) (2.19318e-14 -18.0035 -19.7376) (2.9544e-14 -17.3477 -25.1545) (2.49803e-14 -12.3811 -14.9035) (2.52472e-14 -9.45912 -16.8064) (3.43333e-14 -6.84732 -21.9097) (2.84878e-14 -3.71162 -13.0647) (2.96986e-14 -1.21012 -14.1542) (5.02766e-14 1.7135 -19.5141) (4.78893e-14 3.90552 -14.1389) (4.88674e-14 6.42861 -13.8317) (4.54703e-14 7.78751 -12.4793) (3.74753e-14 12.5138 -18.5002) (1.86112e-14 12.9256 -13.9579) (1.47357e-14 16.2383 -12.8549) (1.46739e-14 16.6728 -18.5793) (1.43455e-14 22.5426 -19.2837) (4.64473e-15 -21.2693 12.076) (3.53418e-15 -35.8988 12.6896) (2.44312e-15 -36.0892 12.1746) (1.78842e-15 -38.5766 10.7297) (1.38242e-15 -34.4793 9.95368) (1.61708e-15 -28.581 9.07427) (2.68121e-15 0.908901 6.00947) (4.48457e-15 30.7722 1.75061) (6.0879e-15 38.3056 8.76887) (1.05497e-14 42.536 19.1309) (1.82415e-14 47.4814 25.0498) (2.46142e-14 32.0882 24.5502) (2.62977e-14 -12.8911 4.40862) (2.32538e-14 -36.2402 -9.76332) (1.51807e-14 -42.6521 -19.5206) (9.77532e-15 -38.6503 -24.3965) (8.9279e-15 -27.3355 -25.7104) (1.09681e-14 -15.1865 -24.8182) (1.21831e-14 1.45074 -26.063) (4.58046e-15 -21.7708 12.0601) (3.458e-15 -35.8864 13.0279) (2.39122e-15 -35.5677 12.4705) (1.75526e-15 -37.842 11.2316) (1.37697e-15 -33.8078 10.6944) (1.65922e-15 -26.9309 10.2267) (3.0127e-15 7.69569 5.29575) (5.21673e-15 28.942 5.87274) (7.94576e-15 32.2464 17.7147) (1.42674e-14 36.9081 31.1019) (2.17963e-14 45.5395 41.1452) (2.54717e-14 37.8632 43.4417) (2.49547e-14 -4.58954 16.1593) (2.37011e-14 -30.2763 -8.4526) (1.59051e-14 -38.5893 -17.2497) (1.0133e-14 -36.8294 -22.9455) (8.80106e-15 -27.0773 -25.1101) (1.05322e-14 -15.314 -25.1892) (8.08243e-15 -0.955406 -22.9065) (4.50085e-15 -21.9768 12.2207) (3.36106e-15 -35.9314 13.4227) (2.32596e-15 -35.2743 12.8631) (1.71374e-15 -37.6184 11.8831) (1.3715e-15 -33.8653 11.7294) (1.72548e-15 -26.5821 11.8946) (3.57746e-15 5.90428 8.17067) (6.4558e-15 25.5761 11.4703) (9.91456e-15 27.6608 24.1865) (1.56104e-14 32.5132 39.1246) (2.09865e-14 42.5725 52.7626) (2.27934e-14 41.5165 58.4017) (2.19491e-14 9.95328 34.8646) (2.34966e-14 -21.7639 -5.31536) (1.66688e-14 -35.5297 -12.7999) (1.07631e-14 -35.0935 -19.744) (8.8083e-15 -26.191 -23.3424) (1.05027e-14 -15.524 -24.8843) (2.86649e-15 -1.38783 -22.1337) (4.39228e-15 -22.3323 12.4076) (3.26071e-15 -36.0291 13.7397) (2.25622e-15 -35.0431 13.3293) (1.66994e-15 -37.488 12.5886) (1.366e-15 -34.0089 12.9916) (1.81965e-15 -26.1662 13.7056) (4.46828e-15 5.60614 11.9322) (8.49369e-15 22.1147 17.1865) (1.22107e-14 21.4879 32.2615) (1.63204e-14 26.148 49.3467) (1.91806e-14 38.673 65.3954) (1.94979e-14 44.4763 74.9405) (1.81698e-14 23.8631 56.0445) (2.07084e-14 -12.9011 7.31629) (1.76499e-14 -32.6727 -6.89096) (1.1958e-14 -32.8855 -13.9128) (9.22565e-15 -25.1964 -19.4805) (1.06547e-14 -16.3485 -23.1967) (3.24524e-15 -4.40893 -23.3761) (4.28455e-15 -22.7216 12.1669) (3.17434e-15 -36.194 13.9554) (2.18041e-15 -34.8728 13.8821) (1.62561e-15 -37.4752 13.3142) (1.35884e-15 -34.3429 14.4021) (1.95613e-15 -26.0524 15.618) (5.80705e-15 4.55837 16.1375) (1.11751e-14 17.3255 24.4276) (1.43914e-14 14.2629 42.6128) (1.61843e-14 18.5517 60.3735) (1.62656e-14 31.9572 74.9054) (1.48636e-14 45.4448 89.2276) (1.37807e-14 36.1096 78.0342) (1.67027e-14 2.54108 37.8485) (1.80875e-14 -26.5608 1.78688) (1.32902e-14 -29.9599 -4.63975) (1.00692e-14 -21.541 -13.9292) (1.1168e-14 -13.1432 -20.7071) (3.88514e-15 -0.830019 -25.3074) (4.37311e-15 -23.2454 11.4675) (3.07342e-15 -36.6012 14.2469) (2.10311e-15 -34.8214 14.4759) (1.58e-15 -37.6633 14.0211) (1.34692e-15 -34.9961 15.8779) (2.13491e-15 -26.6317 17.6696) (7.28833e-15 1.56113 21.0593) (1.38435e-14 11.5263 34.2911) (1.5748e-14 7.33717 54.585) (1.53965e-14 14.3495 72.581) (1.33447e-14 26.6939 82.162) (8.74251e-15 42.4193 99.3554) (8.71487e-15 44.2989 93.5659) (1.25863e-14 18.5509 67.0302) (1.62078e-14 -16.4899 23.3465) (1.42124e-14 -26.5792 7.55306) (1.07226e-14 -20.0694 -6.35485) (1.16544e-14 -14.9472 -14.2993) (9.8357e-15 -4.69813 -37.7355) (4.30351e-15 -24.0205 11.5613) (2.95344e-15 -37.2823 14.5493) (2.034e-15 -34.8236 15.1809) (1.53099e-15 -38.0234 14.6323) (1.34003e-15 -35.9285 17.2845) (2.39399e-15 -27.7752 19.6855) (8.52125e-15 -2.62336 27.5394) (1.51181e-14 4.45595 49.7354) (1.45658e-14 -1.04654 69.087) (1.12221e-14 6.85832 86.8532) (7.03515e-15 22.1668 94.4784) (7.08357e-16 41.2145 104.374) (2.91955e-15 49.2251 100.298) (8.35376e-15 30.6897 87.7382) (1.36085e-14 -3.06447 53.5105) (1.44394e-14 -17.3498 25.3213) (1.23305e-14 -7.64844 5.72615) (9.7543e-15 5.71311 -17.381) (2.46766e-14 13.3906 -22.9043) (3.1596e-15 -24.6587 13.1109) (2.94224e-15 -37.938 13.9447) (1.96892e-15 -34.8907 16.15) (1.49449e-15 -38.4886 15.036) (1.3332e-15 -37.1905 18.4723) (2.54665e-15 -30.5332 21.8716) (8.59901e-15 -11.3619 37.7438) (1.25929e-14 -5.34689 72.0507) (7.05031e-15 -8.03517 93.2457) (-1.23957e-15 3.28329 103.318) (-5.52717e-15 20.3928 99.0274) (-5.77607e-15 40.9917 93.4034) (-2.96506e-15 50.7014 96.313) (3.84129e-15 37.2232 97.4647) (1.17046e-14 8.21654 81.787) (1.80222e-14 -8.77236 63.217) (2.93194e-14 -8.53754 70.5793) (4.6988e-14 -14.2892 99.4188) (5.87521e-14 -42.2899 117.432) (1.16147e-15 -24.5684 14.6015) (3.10939e-15 -38.4006 11.567) (1.88379e-15 -35.2835 17.3008) (1.4426e-15 -38.9259 15.2275) (1.38318e-15 -38.7714 19.1625) (3.44024e-15 -34.8208 22.9949) (9.92307e-15 -22.3654 39.5855) (1.05576e-14 -16.1718 71.7127) (2.66862e-15 -13.1535 91.3105) (-6.87883e-15 5.4868 90.2127) (-9.04067e-15 24.9682 79.7432) (-8.53469e-15 41.4843 74.288) (-6.36566e-15 47.6639 81.2025) (-7.88992e-16 36.3096 96.8919) (7.86673e-15 9.90926 100.318) (1.63399e-14 -11.253 96.3065) (2.21926e-14 -16.8058 105.847) (2.67189e-14 -11.4532 118.855) (2.38293e-14 -7.19804 105.066) (-1.87973e-16 -23.6254 14.5739) (3.29587e-15 -38.9229 8.3907) (1.78056e-15 -36.3775 18.1859) (1.47088e-15 -39.2359 15.4953) (1.53135e-15 -40.3982 19.4211) (1.41977e-15 -38.6899 23.0263) (4.63754e-16 -31.5073 36.6418) (1.05204e-14 -25.4273 62.8591) (1.49337e-15 -16.716 80.5098) (-8.14882e-15 7.69376 74.9414) (-9.19397e-15 27.3038 63.5253) (-7.99151e-15 40.8191 56.8572) (-5.68712e-15 41.7463 62.827) (-3.63859e-15 29.8395 86.8993) (-1.55363e-15 7.83577 102.257) (1.08515e-14 -11.9882 101.51) (1.04863e-14 -18.4519 101.019) (1.15151e-14 -12.0475 92.3315) (1.65175e-14 -1.893 56.0259) (8.67354e-17 -22.2966 14.0065) (3.29941e-15 -39.724 7.22121) (1.67481e-15 -38.1342 18.3083) (1.44486e-15 -39.4376 16.142) (1.41332e-15 -41.8282 19.4344) (1.34766e-15 -41.6827 22.4635) (5.25621e-15 -38.532 32.3957) (9.63807e-15 -33.0657 52.3126) (3.56975e-16 -18.9411 69.1203) (-9.79385e-15 12.2029 64.1217) (-8.36577e-15 31.6653 53.0021) (-5.80785e-15 41.7021 45.0264) (-4.2842e-15 35.6519 47.8455) (1.87784e-16 20.731 72.2716) (3.60516e-15 4.56246 96.1711) (3.30374e-15 -10.0324 98.6258) (1.07472e-15 -12.9609 97.5728) (-1.29121e-15 0.800926 92.777) (3.4395e-15 19.0086 68.8661) (1.50816e-15 -21.2743 16.0049) (3.12315e-15 -40.4927 10.053) (1.57739e-15 -39.9525 17.7013) (1.33925e-15 -39.7223 17.0981) (1.37748e-15 -42.9328 19.4001) (2.06971e-15 -43.8513 21.7184) (7.28854e-15 -43.6039 28.4483) (8.49634e-15 -39.375 42.4904) (4.1404e-16 -21.9829 58.4424) (-7.42212e-15 14.6996 54.7594) (-5.29783e-15 35.2092 42.9818) (-4.01435e-15 42.9606 34.9758) (-4.70686e-15 30.9299 38.1435) (-3.7051e-15 10.3696 55.4021) (-2.64608e-15 -3.28749 85.3459) (-6.2794e-15 -13.1694 100.759) (-1.44801e-14 -15.5731 111.379) (-2.52163e-14 0.231816 118.819) (-2.69858e-14 28.3489 101.161) (3.15927e-15 -20.3772 22.0814) (3.10456e-15 -40.1892 16.0212) (1.55457e-15 -40.9345 17.314) (1.22064e-15 -40.1481 18.1171) (1.49562e-15 -43.661 19.5202) (2.78293e-15 -45.3145 21.1121) (6.94021e-15 -47.0299 25.3755) (7.36762e-15 -44.3832 34.3916) (5.87522e-16 -24.7277 48.4734) (-6.00719e-15 18.2608 44.8217) (-4.06162e-15 39.4524 32.2447) (-3.00241e-15 43.6892 26.1144) (-4.05243e-15 27.5915 32.0584) (-5.01726e-15 2.2839 38.3941) (-6.96262e-15 -13.1802 58.0729) (-1.65244e-14 -19.8417 77.7114) (-3.2177e-14 -18.1467 81.1457) (-4.15933e-14 3.17788 60.1338) (-3.93253e-14 46.1656 52.1486) (4.85663e-15 -19.4061 30.4859) (3.77705e-15 -38.4569 22.9828) (1.82909e-15 -40.8111 18.4096) (1.20392e-15 -40.6696 19.1822) (1.64086e-15 -44.1178 19.8671) (3.24429e-15 -46.1946 20.8001) (6.29368e-15 -49.0516 23.2852) (6.31786e-15 -47.8774 28.4164) (5.34742e-16 -26.84 39.5438) (-4.89792e-15 21.3073 35.1063) (-3.0784e-15 42.8134 22.8274) (-2.4024e-15 43.1019 21.3499) (-3.75097e-15 26.0007 27.7441) (-5.58624e-15 0.111619 24.9958) (-7.82486e-15 -18.5222 28.1963) (-1.59542e-14 -21.8448 37.0144) (-2.48769e-14 -9.97352 26.9229) (-1.33768e-14 9.01156 -2.83431) (-7.48994e-15 2.99258 -26.5984) (6.37589e-15 -17.6865 38.816) (5.2488e-15 -35.181 29.6875) (2.67961e-15 -39.325 21.3813) (1.49986e-15 -40.7523 20.5581) (1.80631e-15 -44.2715 20.4265) (3.4388e-15 -46.6949 20.9136) (5.75065e-15 -50.2793 22.3321) (5.42049e-15 -50.3274 24.7905) (2.86501e-16 -28.1044 32.1706) (-3.97771e-15 24.6433 26.5355) (-2.23665e-15 45.1292 15.1835) (-2.09536e-15 41.6676 20.5922) (-3.58293e-15 25.9683 22.8947) (-5.52524e-15 2.57471 15.7166) (-7.43524e-15 -18.1818 5.95804) (-1.12757e-14 -19.8512 2.11366) (-1.45633e-14 -2.81244 -11.4547) (-1.14752e-14 18.6125 -17.2741) (-1.01222e-14 14.4161 -28.7152) (6.74207e-15 -16.2203 47.3806) (6.58344e-15 -31.5488 36.3219) (3.97573e-15 -37.198 25.5701) (2.34722e-15 -40.4053 22.2757) (2.27789e-15 -44.2541 20.8204) (3.67992e-15 -46.9165 20.9482) (5.43559e-15 -50.6445 21.9358) (4.74858e-15 -51.1283 23.0242) (4.30363e-18 -27.7167 26.796) (-3.28719e-15 27.7103 19.8012) (-1.69952e-15 45.6569 10.9096) (-2.02666e-15 40.0209 20.4424) (-3.35924e-15 27.5539 16.4206) (-5.09085e-15 7.03174 9.24442) (-7.00824e-15 -13.1771 -4.40623) (-8.8032e-15 -14.917 -14.9035) (-1.04806e-14 -1.50884 -25.8407) (-1.03728e-14 16.8913 -24.9034) (-1.02192e-14 13.1582 -23.2044) (5.47159e-15 -13.1767 56.1167) (6.55185e-15 -26.1629 45.1808) (4.97324e-15 -33.4507 32.3827) (3.62258e-15 -38.8038 25.9989) (3.31659e-15 -43.6743 22.0471) (4.28217e-15 -47.1886 21.1481) (5.3919e-15 -51.4491 21.8276) (4.19608e-15 -52.2936 22.6776) (-2.93027e-16 -27.1648 23.6248) (-2.76469e-15 30.21 14.218) (-1.51878e-15 45.4092 11.0291) (-2.05383e-15 39.2801 17.0678) (-3.1176e-15 30.3052 11.1433) (-4.61167e-15 11.6083 4.33654) (-6.56766e-15 -8.58449 -8.95633) (-8.05213e-15 -10.7312 -19.0245) (-9.12973e-15 0.363931 -29.6124) (-9.87428e-15 15.9965 -26.5171) (-1.13853e-14 13.9291 -19.0295) (3.30754e-15 -12.4671 64.9901) (5.04236e-15 -22.5124 57.5952) (4.84942e-15 -29.7514 44.173) (4.44541e-15 -36.4967 34.704) (4.33949e-15 -42.3421 26.9887) (4.8171e-15 -46.6635 23.4454) (5.05302e-15 -50.8697 23.7504) (3.17252e-15 -50.9649 26.6094) (-8.81582e-16 -23.5498 25.1926) (-2.29879e-15 31.8708 9.52655) (-1.53453e-15 44.9584 12.7889) (-1.998e-15 39.7284 12.7178) (-3.00081e-15 32.4328 8.2954) (-4.39785e-15 16.2653 1.93769) (-6.02321e-15 -4.43061 -11.585) (-7.58498e-15 -6.88569 -19.7073) (-8.33404e-15 1.98242 -28.3165) (-9.94281e-15 12.4379 -22.7262) (-1.15278e-14 10.6663 -14.1492) (1.71888e-15 -9.73209 71.0435) (3.57744e-15 -16.98 72.9909) (3.98171e-15 -23.7453 62.4755) (4.17125e-15 -31.65 52.2166) (4.26858e-15 -39.0061 42.2338) (4.18185e-15 -46.0551 36.9634) (3.42421e-15 -53.6245 37.689) (1.16066e-15 -54.5258 39.667) (-1.77918e-15 -21.6106 28.0016) (-2.01182e-15 34.7705 8.33931) (-1.58967e-15 44.5306 12.5813) (-1.9411e-15 40.7782 9.97854) (-2.93596e-15 34.0107 6.26531) (-4.36795e-15 19.6578 1.18479) (-5.96258e-15 -1.34342 -10.0576) (-7.30574e-15 -4.00944 -17.9987) (-8.55111e-15 1.53713 -22.3133) (-1.0582e-14 9.60461 -15.8684) (-1.124e-14 9.79769 -10.7809) (-7.81151e-16 -14.3765 63.9023) (1.09482e-15 -20.4017 77.0889) (2.2764e-15 -22.2391 77.5979) (2.66897e-15 -28.8633 75.4521) (2.67896e-15 -36.3504 71.4921) (2.04417e-15 -44.4772 68.5437) (6.96975e-16 -50.5614 65.6705) (-1.123e-15 -44.2437 55.7825) (-2.40312e-15 -6.67269 28.4048) (-1.99361e-15 38.2398 11.7314) (-1.59945e-15 45.2197 10.943) (-1.91057e-15 42.504 8.71559) (-2.89501e-15 36.6026 4.99757) (-4.36109e-15 23.7124 1.36879) (-6.38433e-15 4.01231 -4.61341) (-7.92077e-15 -1.65082 -10.8203) (-9.78871e-15 1.83189 -12.8116) (-1.1158e-14 8.10327 -11.3547) (-1.1158e-14 9.04116 -10.483) (-7.52192e-15 117.777 203.619) (-5.73114e-14 148.266 252.413) (-4.30307e-14 147.123 245.754) (-3.99984e-14 139.347 229.352) (-4.3496e-14 130.523 210.975) (-3.9089e-14 120.544 192.987) (-2.49158e-14 109.493 173.025) (-1.75143e-14 98.672 156.4) (-2.83393e-15 86.4265 136.259) (1.15784e-14 72.5869 114.55) (2.75374e-14 58.7634 92.5758) (4.5571e-14 46.5405 73.3553) (6.19898e-14 37.8294 60.4156) (6.20304e-14 34.4815 57.1496) (3.38682e-14 39.0072 67.2628) (-2.42987e-15 51.9587 91.4844) (-2.71709e-14 71.1219 123.812) (-2.9971e-14 87.4138 154.809) (-3.44094e-14 96.8926 163.918) (-4.5484e-14 71.5484 130.949) (-7.91833e-15 98.8242 169.419) (-5.75408e-14 124.899 223.07) (-4.08122e-14 126.281 221.254) (-4.37334e-14 116.891 207.765) (-5.18612e-14 106.879 188.134) (-6.19806e-14 95.5114 169.651) (-4.55897e-14 86.1447 152.775) (-4.25013e-14 76.9929 136.811) (-3.67639e-14 68.873 121.708) (-3.63105e-14 61.5898 106.961) (-3.35343e-14 55.5415 92.9479) (-3.0179e-14 50.7153 80.0874) (-3.57968e-14 47.7233 70.0044) (-4.24778e-14 48.648 67.2065) (-5.9655e-14 55.5348 75.5167) (-7.47717e-14 67.3948 95.6809) (-7.79099e-14 82.4042 122.093) (-6.0703e-14 92.8948 147.079) (-5.03909e-14 95.488 154.157) (-6.75606e-14 72.3313 126.216) (-2.01638e-16 96.3912 164.33) (-1.68556e-14 136.019 238.304) (-1.09232e-14 141.967 240.708) (-1.09401e-14 134.022 227.26) (-1.37106e-14 125.144 207.62) (-4.27665e-14 114.773 188.045) (-3.17509e-14 106.463 170.87) (-2.8375e-14 99.8147 157.021) (-3.39142e-14 94.5912 145.112) (-4.00692e-14 90.0108 134.02) (-3.9238e-14 85.691 122.877) (-3.92247e-14 81.3436 111.339) (-4.28129e-14 77.0623 99.5873) (-4.76649e-14 73.205 89.0894) (-5.41894e-14 70.993 82.6676) (-5.99538e-14 71.128 83.4644) (-5.74087e-14 73.615 91.5956) (-4.75622e-14 75.547 102.861) (-3.87724e-14 71.4187 106.19) (-5.87402e-14 50.246 80.1641) (5.0257e-16 97.3961 163.799) (5.32707e-15 144.12 248.506) (4.02647e-15 148.91 250.033) (3.83938e-15 139.597 233.878) (5.99973e-15 129.308 213.602) (-1.96278e-14 118.85 194.153) (-2.05927e-14 110.2 177.295) (-1.94865e-14 103.112 163.098) (-2.25151e-14 97.0675 150.837) (-2.60203e-14 91.5969 139.684) (-2.63616e-14 86.3557 129.126) (-2.88402e-14 81.2049 118.8) (-3.4905e-14 75.9901 108.401) (-3.51539e-14 70.6945 97.7401) (-3.82926e-14 65.277 87.2351) (-4.37753e-14 60.357 78.0732) (-4.38821e-14 55.6186 71.892) (-4.23441e-14 51.3653 67.5347) (-4.47078e-14 41.7993 60.4276) (-7.44917e-14 21.3388 27.1999) (-1.4797e-16 104.748 175.719) (-1.0884e-15 155.708 264.888) (-8.89077e-16 156.496 261.227) (-8.17294e-16 145.406 241.384) (-1.39567e-15 134.215 220.478) (4.85988e-15 124.271 201.578) (5.6924e-15 116.107 185.698) (5.42048e-15 109.286 171.726) (5.9407e-15 102.924 158.798) (6.7969e-15 96.6502 146.239) (6.61066e-15 90.2278 133.935) (6.59777e-15 83.7076 121.948) (6.86821e-15 77.0827 110.426) (6.69908e-15 70.4804 99.2683) (6.59891e-15 63.5459 88.2873) (6.70917e-15 56.4441 76.855) (6.55682e-15 47.9585 64.9723) (6.89876e-15 39.0675 51.1828) (8.83999e-15 23.4784 32.7567) (1.46247e-14 5.46156 -1.72582) (2.33474e-17 119.19 199.374) (1.5639e-16 168.537 281.806) (1.32655e-16 162.792 269.951) (1.15327e-16 151.277 247.623) (2.10932e-16 140.452 227.941) (-7.61041e-16 132.349 210.617) (-9.85186e-16 125.361 196.007) (-9.53387e-16 119.323 181.992) (-9.47263e-16 112.875 167.942) (-9.87896e-16 105.888 153.253) (-9.09072e-16 98.1642 138.116) (-7.92318e-16 89.8881 122.754) (-6.88113e-16 81.1038 107.512) (-5.23482e-16 72.0182 92.5124) (-2.77021e-16 62.34 77.8811) (5.46057e-17 52.363 63.0394) (4.21184e-16 40.6039 47.616) (6.12146e-16 28.2042 28.861) (1.55676e-16 6.21421 3.19405) (7.09006e-15 -8.8004 -34.0209) (-2.20456e-18 141.483 241.238) (-1.53348e-17 179.163 297.274) (-1.2041e-17 165.279 277.757) (-9.20806e-18 155.89 256.742) (-1.96151e-17 146.296 240.903) (9.37972e-17 141.04 226.94) (1.26033e-16 135.416 214.839) (1.1771e-16 130.121 200.858) (1.01248e-16 122.751 185.029) (8.70555e-17 114.203 167.174) (6.25763e-17 104.369 148.423) (3.25296e-17 93.8685 129.164) (1.09003e-19 82.5976 109.762) (-5.06934e-17 70.6711 90.1458) (-1.40994e-16 57.6262 70.4452) (-2.89428e-16 43.8027 50.1465) (-5.12852e-16 27.8374 29.7085) (-7.53893e-16 12.3778 6.62604) (-8.44535e-16 -12.9708 -20.4733) (7.74163e-16 -22.64 -59.8748) (2.12817e-20 156.894 275.852) (5.35315e-19 174.177 293.843) (-6.60556e-20 156.786 275.742) (-3.62556e-19 150.308 259.799) (4.88522e-19 140.569 248.494) (-1.29213e-17 136.497 238.363) (-1.55936e-17 129.65 228.795) (-1.30464e-17 122.081 213.722) (-8.68344e-18 110.078 194.561) (-4.26459e-18 96.9881 172.208) (9.07375e-19 82.5656 149.394) (5.13649e-18 68.0359 125.899) (1.05682e-17 52.4856 101.536) (3.16079e-17 36.1153 75.6903) (9.35728e-17 18.735 48.4812) (1.74565e-16 0.429773 19.7369) (2.53352e-17 -16.0457 -6.5935) (-5.38261e-16 -26.4803 -26.9389) (-1.007e-15 -44.3825 -51.5051) (-8.9241e-16 -32.4167 -59.7043) (7.35797e-20 151.481 272.117) (2.74882e-19 156.709 271.808) (3.65491e-19 142.229 259.464) (3.94865e-19 134.708 245.194) (4.87444e-19 124.01 235.463) (1.37988e-18 118.02 226.572) (9.34232e-19 108.217 216.522) (-1.53413e-19 96.3948 199.455) (-1.6816e-18 80.2537 177.703) (-3.57223e-18 63.7343 153.69) (-5.78789e-18 46.7638 130.135) (-7.2847e-18 30.0348 106.334) (-3.86392e-18 12.7838 82.0016) (1.32981e-17 -4.10365 57.4524) (4.53898e-17 -19.3056 34.344) (4.91774e-17 -30.7175 14.4193) (-5.80841e-17 -35.2468 0.925778) (-2.75044e-16 -27.1952 1.17571) (-4.28724e-16 -5.16261 20.224) (-2.70328e-16 13.451 38.8342) (-3.1312e-20 134.992 242.268) (-9.78251e-20 146.329 255.207) (-1.05513e-19 129.896 237.004) (-9.58603e-20 120.119 218.197) (-3.82758e-20 108.28 207.866) (7.65345e-20 100.923 196.645) (3.66121e-19 89.2549 185.588) (7.67093e-19 77.0029 168.756) (8.6909e-19 61.2818 148.419) (-4.75317e-19 45.7691 125.574) (-3.31011e-18 30.1167 102.752) (-2.15589e-18 15.5838 80.2727) (1.26468e-17 2.80475 59.9163) (3.95339e-17 -5.63011 44.947) (5.49851e-17 -6.10334 41.085) (3.62822e-17 5.27714 54.3865) (-3.56549e-18 28.6982 85.2191) (-2.23069e-17 57.4785 122.265) (1.98212e-18 78.7635 142.806) (2.87228e-17 59.745 113.744) (7.88425e-21 128.535 228.564) (2.09065e-20 150.112 253.935) (2.04895e-20 130.592 230.744) (1.25416e-20 122.727 205.859) (-2.04423e-20 109.904 193.81) (-7.60191e-20 104.497 177.315) (-1.27141e-19 93.5053 165.029) (-1.12456e-19 86.2023 149.809) (3.41902e-20 76.209 135.289) (6.54323e-20 68.015 119.011) (-6.01436e-19 59.8295 103.517) (-1.65257e-18 54.025 89.6028) (-1.11706e-18 50.5975 79.3706) (2.81264e-18 50.5371 74.2754) (8.83095e-18 54.6019 76.0909) (1.24325e-17 62.1134 85.5878) (1.11363e-17 71.8356 100.12) (7.3795e-18 77.5588 114.725) (4.21949e-18 76.1335 116.678) (-4.59904e-20 53.725 92.1329) (-1.4453e-21 129.91 231.888) (-3.47352e-21 158.908 264.299) (-2.84729e-21 135.525 238.672) (-9.8126e-23 130.09 213.294) (9.29602e-21 117.445 201.65) (2.31919e-20 113.796 185.291) (3.03209e-20 104.528 173.144) (2.00463e-20 99.3409 159.206) (-2.44071e-20 92.7377 147.535) (-6.71138e-20 87.8869 136.055) (2.57858e-20 83.1503 125.32) (3.08489e-19 78.9574 114.702) (4.78615e-19 74.8964 104.108) (1.74664e-20 70.8243 93.7926) (-1.39167e-18 66.9034 84.6672) (-3.73901e-18 63.454 78.2817) (-6.66235e-18 60.3997 75.4341) (-9.07677e-18 56.8641 74.3093) (-9.0224e-18 48.1965 68.7424) (-4.76239e-18 28.1375 40.6543) (1.91893e-22 134.868 241.494) (3.53619e-22 164.635 270.053) (5.01043e-23 137.508 243.78) (-6.5336e-22 134.973 219.279) (-2.58167e-21 121.469 208.567) (-4.8942e-21 118.718 192.255) (-4.68372e-21 109.43 180.581) (-5.30377e-22 104.316 166.632) (9.49324e-21 97.3115 154.402) (2.00475e-20 91.48 141.992) (1.17984e-20 85.487 130.361) (-2.87694e-20 79.8353 119.174) (-6.71391e-20 74.2662 108.477) (-2.0691e-20 68.8173 98.0664) (1.78781e-19 63.0661 87.7886) (5.67099e-19 57.0287 77.1421) (1.21363e-18 49.377 66.0008) (2.23569e-18 40.8116 53.0146) (3.42481e-18 26.0336 35.9229) (4.60371e-18 7.2057 1.49921) (-9.05509e-24 142.388 258.418) (4.63966e-23 168.236 271.657) (1.6437e-22 138.6 249.518) (3.24803e-22 140.562 226.118) (6.00172e-22 124.922 216.611) (7.11832e-22 123.772 199.429) (1.06482e-22 113.421 188.226) (-1.31478e-21 109.115 174.024) (-3.47994e-21 101.92 162.12) (-5.14172e-21 96.4728 149.47) (-3.9462e-21 90.4305 137.361) (5.38075e-22 84.5893 124.966) (3.31011e-21 78.2866 112.359) (-4.28244e-21 71.4984 99.1751) (-2.68071e-20 63.4957 85.343) (-6.43621e-20 54.376 70.1043) (-1.29852e-19 42.5903 53.3003) (-2.51878e-19 29.9001 33.183) (-6.30153e-19 8.39147 7.52394) (1.1733e-18 -7.0918 -29.1991) (-5.71134e-24 149.17 276.75) (-4.46685e-23 169.565 270.457) (-8.56633e-23 139.507 256.283) (-1.28423e-22 145.679 233.944) (-1.55144e-22 127.809 225.819) (-6.1845e-23 128.631 208.512) (2.57117e-22 117.409 198.385) (7.9551e-22 114.442 184.619) (1.43585e-21 107.427 173.764) (1.80888e-21 103.108 161.934) (1.55767e-21 97.7646 150.638) (8.96794e-22 92.5092 138.19) (6.02164e-22 85.7897 124.041) (1.08838e-21 77.0461 106.872) (1.3002e-21 65.0446 86.5663) (-5.10987e-22 50.8383 63.5512) (-4.86051e-21 33.6642 39.6882) (-4.34435e-21 17.399 13.92) (-1.22934e-19 -9.72743 -16.1246) (-5.17091e-20 -20.5226 -53.8793) (3.45946e-24 150.464 286.204) (2.03196e-23 166.381 264.916) (3.17571e-23 137.248 258.65) (3.08161e-23 144.932 237.136) (5.19599e-24 125.487 230.229) (-4.32714e-23 126.795 213.738) (-6.24288e-23 114.71 205) (-4.34391e-24 112.135 192.492) (9.18239e-23 104.66 183.317) (8.51898e-23 100.589 172.934) (-2.8715e-22 94.6537 162.767) (-1.25806e-21 88.2095 149.83) (-2.80637e-21 78.1725 132.07) (-5.29591e-21 63.2653 106.489) (-1.02981e-20 43.316 74.519) (-1.88587e-20 23.0926 42.1705) (-2.39753e-20 2.22194 11.9652) (2.91582e-20 -8.48547 -14.5635) (-3.81102e-20 -32.4139 -38.8168) (-2.2945e-19 -31.4985 -68.7985) (-1.26213e-24 143.678 279.148) (-6.63989e-24 160.321 255.443) (-1.23634e-23 130.41 251.041) (-2.49826e-23 136.886 230.374) (-3.2019e-23 118.426 223.194) (1.10786e-23 117.128 208.291) (1.46733e-22 106.162 199.253) (3.61243e-22 101.526 188.033) (5.18947e-22 94.0862 179.062) (3.77808e-22 88.4993 169.425) (-2.19289e-22 81.3695 159.099) (-1.06774e-21 72.5974 144.89) (-2.0525e-21 59.2887 123.37) (-5.37644e-21 40.8347 92.4418) (-1.64584e-20 21.2206 58.8567) (-4.10338e-20 6.81875 33.3036) (-8.31448e-20 -5.89962 9.25387) (-1.25672e-19 -22.3856 -21.1495) (-1.44591e-19 -31.9013 -37.3219) (-1.39514e-19 -19.2446 -24.2223) (6.95493e-25 131.622 269.022) (2.98786e-24 155.044 243.621) (2.39048e-24 119.386 241.465) (-6.19184e-24 126.271 221.481) (-2.0666e-23 107.979 214.182) (-1.23974e-23 104.85 200.466) (6.29839e-23 94.6146 191.009) (2.07631e-22 88.7495 180.248) (3.3449e-22 81.4777 170.889) (2.90731e-22 75.2863 161.248) (-2.77831e-24 68.4168 151.036) (-3.80049e-22 60.645 138.39) (-7.71644e-22 51.0354 121.663) (-2.78716e-21 40.1549 100.566) (-1.16256e-20 29.988 77.7171) (-3.48682e-20 21.9677 56.5353) (-7.69973e-20 14.9502 36.8721) (-1.33742e-19 7.5374 14.8936) (-2.04087e-19 -2.82502 -11.2332) (-2.14827e-19 6.68562 16.8935) (-1.59375e-25 107.884 253.183) (-9.03997e-25 147.775 223.6) (-2.03248e-24 107.138 226.521) (-5.11822e-24 113.357 211.058) (-8.25879e-24 97.2209 205.217) (-2.90445e-25 92.4404 195.39) (3.9197e-23 83.4081 187.729) (1.25207e-22 77.0834 179.479) (2.49962e-22 70.3739 171.827) (3.76575e-22 64.5643 164.21) (4.27349e-22 59.0389 156.743) (2.85427e-22 54.0696 149.211) (-8.30344e-23 49.6319 141.422) (-4.14801e-22 45.7334 132.781) (-3.32567e-22 42.0864 122.348) (-3.78356e-22 38.0635 109.045) (-3.33641e-21 32.2592 91.369) (-1.41736e-20 23.3852 65.8384) (-3.4845e-20 10.8319 28.1816) (-4.67631e-20 -3.21355 -12.7551) (1.39579e-25 35.8224 158.08) (3.25346e-25 78.5388 130.532) (1.40133e-25 52.841 138.578) (-9.12881e-25 52.8467 134.392) (-3.27365e-24 44.4768 134.275) (-5.40577e-24 40.2443 132.519) (-1.38708e-24 35.3914 131.133) (1.82376e-23 31.6677 129.417) (5.99891e-23 28.4029 127.653) (1.20582e-22 25.8476 125.798) (1.91581e-22 23.8942 123.879) (2.76577e-22 22.5334 121.808) (3.97958e-22 21.6873 119.464) (5.7685e-22 21.3379 116.763) (8.2169e-22 21.685 113.65) (1.16564e-21 22.8117 110.229) (1.67429e-21 24.4014 106.671) (2.25497e-21 28.527 100.629) (2.32165e-21 31.5101 88.4294) (1.05583e-21 6.99352 65.0766) (-5.12485e-26 -35.8458 158.125) (1.12691e-25 -78.5458 130.588) (2.84146e-25 -52.8488 138.636) (-2.1023e-26 -52.8463 134.456) (-1.48232e-24 -44.4739 134.344) (-3.49259e-24 -40.2386 132.592) (-2.34479e-24 -35.3861 131.213) (9.04692e-24 -31.6647 129.504) (4.02525e-23 -28.4037 127.748) (1.02905e-22 -25.8499 125.892) (2.08293e-22 -23.8902 123.957) (3.56321e-22 -22.5112 121.848) (5.18096e-22 -21.6381 119.453) (6.32429e-22 -21.2643 116.711) (6.41396e-22 -21.6004 113.585) (5.69526e-22 -22.7316 110.189) (5.83577e-22 -24.3369 106.688) (8.56997e-22 -28.471 100.712) (1.14277e-21 -31.4175 88.545) (6.61264e-22 -6.97717 65.0307) (3.27156e-25 -107.896 253.268) (2.27665e-25 -147.869 223.647) (-2.94879e-25 -107.194 226.56) (-3.00078e-24 -113.468 211.058) (-7.88005e-24 -97.3354 205.194) (-7.32329e-24 -92.5914 195.332) (1.56087e-23 -83.5854 187.641) (7.70592e-23 -77.2975 179.356) (1.73444e-22 -70.6267 171.669) (2.6965e-22 -64.866 164.021) (3.1436e-22 -59.411 156.55) (2.79655e-22 -54.5448 149.061) (1.78086e-22 -50.229 141.349) (6.05413e-23 -46.4256 132.786) (6.88078e-23 -42.8061 122.431) (2.5532e-22 -38.733 109.216) (-5.56542e-22 -32.7802 91.6007) (-6.11643e-21 -23.6216 66.0179) (-1.95586e-20 -10.7061 27.8147) (-3.14076e-20 3.81035 -14.6884) (-1.32588e-24 -131.499 268.819) (8.21915e-26 -154.999 243.288) (3.66958e-25 -119.258 241.139) (-3.50983e-24 -126.229 221.048) (-8.58733e-24 -107.885 213.717) (2.52986e-24 -104.791 199.919) (5.75484e-23 -94.5337 190.409) (1.67075e-22 -88.6753 179.576) (2.91232e-22 -81.3839 170.146) (3.15758e-22 -75.1743 160.415) (5.25269e-24 -68.2766 150.107) (-1.0292e-21 -60.522 137.408) (-3.05535e-21 -51.1064 120.869) (-5.67383e-21 -40.761 100.465) (-8.52218e-21 -31.3789 78.8198) (-1.41703e-20 -24.0982 58.9445) (-2.82748e-20 -17.7092 40.3292) (-4.61487e-20 -10.5834 19.0505) (-1.85991e-20 0.902987 -9.37817) (-5.58358e-20 -7.99493 16.9188) (6.05379e-24 -143.398 278.552) (1.86344e-24 -159.945 254.966) (-5.00245e-24 -130.063 250.474) (-1.68699e-23 -136.425 229.842) (-3.20029e-23 -117.981 222.639) (-2.9676e-23 -116.569 207.762) (2.55338e-23 -105.588 198.71) (1.4431e-22 -100.836 187.519) (2.65913e-22 -93.3304 178.539) (2.42291e-22 -87.5885 168.883) (-2.36053e-22 -80.264 158.423) (-1.878e-21 -71.1385 143.858) (-5.77321e-21 -57.397 121.762) (-1.18143e-20 -38.9036 90.7901) (-1.86608e-20 -20.1716 58.5391) (-3.4308e-20 -6.49707 33.8739) (-6.60137e-20 6.42657 8.9595) (-5.17319e-20 21.6968 -20.3011) (1.13455e-19 28.6755 -32.8247) (3.64391e-19 15.5368 -16.6974) (-2.5343e-23 -150.516 286.482) (-6.19533e-24 -166.139 264.774) (1.80896e-23 -137.245 258.758) (3.78577e-23 -144.734 237.292) (5.72425e-23 -125.333 230.393) (9.73994e-23 -126.547 213.995) (1.9586e-22 -114.432 205.346) (3.82713e-22 -111.867 192.941) (6.22014e-22 -104.317 183.933) (7.29513e-22 -100.265 173.646) (3.42402e-22 -94.1767 163.478) (-1.05239e-21 -87.4542 150.206) (-4.10356e-21 -76.769 131.582) (-9.02267e-21 -60.9405 104.626) (-1.42413e-20 -40.3462 71.562) (-1.91382e-20 -20.4108 39.3284) (-3.84351e-20 -1.11478 10.0878) (-1.3287e-19 9.05391 -13.7325) (-4.63791e-20 33.4011 -40.3365) (9.0171e-19 31.3219 -66.2907) (1.05795e-22 -149.664 277.432) (2.39536e-23 -169.38 270.219) (-8.75875e-23 -139.416 256.339) (-2.09892e-22 -145.797 234.407) (-3.57288e-22 -127.935 226.364) (-5.42293e-22 -128.878 209.138) (-7.45069e-22 -117.617 199.146) (-9.66992e-22 -114.808 185.488) (-1.24806e-21 -107.8 174.784) (-1.5136e-21 -103.591 163.036) (-1.37843e-21 -98.2709 151.832) (-6.28763e-22 -93.0108 139.346) (-6.33005e-23 -86.0948 124.93) (-1.82488e-21 -76.9002 107.164) (-8.38553e-21 -64.2356 86.0476) (-2.16366e-20 -49.4163 62.3382) (-4.645e-20 -31.784 37.9324) (-8.11812e-20 -15.3395 11.5455) (-2.51236e-20 11.8844 -19.1365) (8.70958e-19 21.5782 -56.2592) (-4.40861e-22 -141.686 258.173) (-5.14742e-23 -170.302 273.997) (4.33824e-22 -140.182 250.99) (1.00094e-21 -141.991 226.651) (1.68228e-21 -126.461 217.21) (2.5752e-21 -125.501 200.21) (3.70384e-21 -115.344 189.043) (5.22025e-21 -110.982 174.853) (7.2969e-21 -103.799 162.955) (9.21528e-21 -98.2784 150.39) (8.13033e-21 -92.1335 138.24) (1.76067e-21 -86.1162 125.771) (-6.5019e-21 -79.6256 113.054) (-4.82419e-21 -72.5978 99.657) (2.17944e-20 -64.2428 85.437) (8.79682e-20 -54.6254 69.609) (2.10481e-19 -42.3095 52.1543) (4.16617e-19 -29.1414 31.4129) (9.00462e-19 -7.54529 5.65753) (2.52161e-19 7.67508 -30.0467) (1.76684e-21 -138.528 243.293) (1.95482e-23 -154.412 257.766) (-2.14723e-21 -140.731 238.895) (-4.87838e-21 -133.992 219.427) (-8.30922e-21 -124.342 206.037) (-1.27283e-20 -118.823 191.779) (-1.81979e-20 -111.467 180.211) (-2.51646e-20 -106.196 167.979) (-3.41823e-20 -99.794 156.411) (-4.16669e-20 -94.0386 144.36) (-3.37716e-20 -88.1621 133.266) (2.97382e-21 -82.3794 122.243) (5.02388e-20 -76.2155 111.097) (4.52312e-20 -70.1135 100.153) (-7.91712e-20 -63.7177 89.3641) (-3.63101e-19 -56.9998 78.1322) (-8.15531e-19 -48.6403 66.1613) (-1.3904e-18 -39.3737 52.0644) (-1.69402e-18 -24.2547 33.7307) (-1.98251e-18 -6.72525 1.5463) (-8.26208e-21 -135.746 234.517) (-3.11117e-21 -140.064 239.414) (6.48724e-21 -134.479 228.55) (1.9981e-20 -127.358 216.174) (3.77105e-20 -119.279 203.604) (6.00223e-20 -110.895 190.058) (8.70985e-20 -102.166 176.218) (1.19395e-19 -94.1999 162.273) (1.55921e-19 -87.5984 149.642) (1.85273e-19 -83.3529 138.573) (1.31315e-19 -80.5413 129.184) (-1.04048e-19 -77.6333 119.832) (-3.69512e-19 -74.0014 109.708) (-3.9593e-19 -69.8871 99.4059) (-5.65447e-21 -65.4034 89.8827) (7.45124e-19 -61.0203 81.984) (1.42608e-18 -56.3416 76.0341) (1.18785e-18 -51.0573 70.3607) (-7.59578e-19 -41.129 60.6217) (-3.30747e-18 -22.4572 32.4149) (3.23547e-20 -134.4 232.07) (3.39138e-20 -135.895 236.407) (8.30669e-21 -133.337 233.048) (-3.77187e-20 -127.572 226.179) (-1.02324e-19 -119.667 215.729) (-1.82482e-19 -109.497 201.96) (-2.74979e-19 -97.2577 184.48) (-3.98736e-19 -82.4178 161.985) (-6.15584e-19 -65.5467 133.876) (-7.94135e-19 -52.3308 107.921) (-3.61394e-19 -47.1846 93.3191) (7.35427e-19 -45.6536 84.8864) (1.67171e-18 -46.645 80.0535) (2.2031e-18 -49.7205 78.8374) (2.98444e-18 -53.7054 80.0705) (5.09846e-18 -58.7909 85.0194) (9.22037e-18 -63.8769 92.2488) (1.31752e-17 -65.2682 97.8963) (1.28192e-17 -60.0568 93.6866) (6.64701e-18 -40.2974 67.7925) (-7.8781e-20 -138.879 241.927) (-1.55114e-19 -141.369 249.202) (-1.49207e-19 -139.577 249.093) (-7.22859e-20 -135.037 244.301) (6.30575e-20 -128.354 235.798) (2.36626e-19 -119.468 224.007) (4.23901e-19 -107.55 207.671) (6.0994e-19 -89.9502 182.333) (9.08806e-19 -63.2844 142.285) (2.15183e-18 -36.2489 101.039) (4.74067e-18 -22.8377 81.0396) (5.13837e-18 -13.8519 67.2921) (-3.74381e-18 -5.42331 53.5517) (-2.55514e-17 -0.522741 44.1802) (-5.09197e-17 -2.93727 45.0354) (-6.08309e-17 -15.298 60.2004) (-4.53082e-17 -35.1657 85.7198) (-1.80683e-17 -54.897 109.906) (-8.50961e-18 -65.7103 117.494) (-1.97404e-17 -46.9312 87.636) (5.08406e-20 -148.028 258.654) (3.26792e-19 -150.946 263.031) (5.36378e-19 -147.888 259.667) (5.83516e-19 -144.229 252.788) (4.65014e-19 -139.926 244.827) (2.42702e-19 -135.245 236.179) (3.83977e-20 -129.303 226.071) (-2.25443e-19 -119.349 210.299) (-5.16578e-19 -101.71 183.354) (-3.0292e-19 -75.5411 145.448) (-8.37952e-19 -50.7224 112.622) (-3.74444e-18 -35.6811 94.3548) (-3.78689e-18 -20.6519 76.7065) (1.79082e-18 -5.40208 57.5507) (-1.55057e-17 9.66217 37.048) (-1.00424e-16 21.9791 17.7125) (-1.9433e-16 25.509 7.63457) (-1.29361e-16 15.2993 13.6977) (1.04372e-16 -2.98895 28.1195) (1.9707e-16 -12.5816 33.1971) (3.90305e-19 -147.049 253.785) (2.37186e-19 -155.459 263.664) (-3.08323e-19 -149.431 251.631) (-6.18377e-19 -145.194 239.95) (-4.37643e-19 -142.037 230.209) (5.76492e-20 -139.924 222.023) (-1.82104e-19 -137.76 214.061) (-1.13758e-18 -133.914 203.379) (-2.02013e-18 -129.027 192.313) (-2.57805e-18 -121.681 179.861) (-5.02639e-19 -107.382 159.899) (6.23939e-18 -92.872 140.554) (1.24665e-17 -77.805 121.011) (6.67558e-18 -61.5084 99.5121) (-3.30196e-17 -42.7757 74.4847) (-1.61374e-16 -21.2588 44.4938) (-3.74987e-16 1.13565 10.6465) (-7.4218e-17 23.9235 -26.8953) (8.13888e-16 37.658 -45.7932) (9.56652e-16 24.4465 -48.6586) (-2.09397e-18 -133.502 226.613) (-4.26317e-18 -147.114 245.791) (-5.47074e-18 -140.707 230.111) (-7.87521e-18 -135.618 216.484) (-1.38785e-17 -132.241 206.007) (-2.43151e-17 -130.087 197.719) (-2.44212e-17 -128.486 190.568) (-1.46498e-17 -126.193 182.293) (3.34016e-18 -123.666 173.95) (1.71833e-17 -122.077 167.683) (1.26791e-17 -118.881 159.776) (-7.32688e-18 -113.076 149.161) (-1.70118e-17 -104.879 135.836) (2.25956e-17 -94.6839 120.079) (1.40027e-16 -82.3827 102.401) (3.28414e-16 -68.3363 82.592) (5.39267e-16 -51.1894 60.8768) (7.6318e-16 -33.3753 36.5402) (9.06422e-16 -6.48194 8.60375) (1.06912e-15 12.6816 -39.6922) (3.44331e-18 -117.092 197.128) (5.99555e-18 -132.595 222.42) (2.4052e-17 -128.296 209.586) (4.90005e-17 -123.538 198.265) (1.09395e-16 -120.185 189.436) (2.94997e-16 -117.47 182.251) (3.24073e-16 -115.006 175.638) (2.80311e-16 -111.836 167.922) (2.31448e-16 -108.2 159.529) (1.70196e-16 -105.734 153.041) (1.56014e-16 -104.209 148.118) (1.84951e-16 -101.85 142.416) (1.92759e-16 -97.6254 134.505) (7.62628e-17 -91.4706 124.147) (-1.9978e-16 -83.2966 111.801) (-5.5248e-16 -73.6926 97.4524) (-7.59393e-16 -61.4838 81.2481) (-5.3409e-16 -48.0694 61.5703) (1.34572e-16 -26.2577 35.3531) (4.00948e-16 -3.32349 -11.8979) (5.14451e-17 -106.18 179.612) (2.68727e-16 -120.751 204.578) (1.22262e-16 -118.582 195.811) (1.63517e-17 -115.132 188.129) (-3.7686e-16 -112.787 181.836) (-3.38594e-15 -110.596 176.185) (-3.60689e-15 -108.278 170.176) (-3.43791e-15 -105.034 162.624) (-3.53881e-15 -101.165 154.033) (-3.21186e-15 -98.0698 146.722) (-3.36195e-15 -96.4199 141.77) (-3.43982e-15 -95.3914 137.9) (-3.59089e-15 -93.7759 133.364) (-3.3288e-15 -90.92 127.184) (-2.89807e-15 -86.4043 119.361) (-2.37459e-15 -80.4827 110.179) (-1.94999e-15 -72.3667 99.9431) (-2.03982e-15 -62.3877 87.0623) (-2.71993e-15 -45.8359 67.6589) (-5.96375e-15 -21.2149 28.5878) (-6.28829e-16 -98.2501 166.123) (-4.14869e-15 -108.464 187.201) (-2.80369e-15 -107.984 182.988) (-2.5773e-15 -104.352 178.028) (-9.90703e-16 -101.228 171.122) (3.68371e-14 -98.1214 164.135) (3.24893e-14 -95.7767 157.52) (3.31569e-14 -92.9549 150.013) (3.93891e-14 -90.0238 141.724) (3.36983e-14 -88.0378 134.537) (3.69383e-14 -87.5603 129.198) (3.61758e-14 -88.1166 124.995) (3.70775e-14 -89.0318 121.219) (3.48326e-14 -89.8357 118.303) (3.27423e-14 -90.4838 117.229) (3.02217e-14 -90.5246 118.581) (2.64857e-14 -89.0053 120.593) (2.39221e-14 -83.6707 119.135) (3.15444e-14 -70.3712 106.037) (5.10226e-14 -43.3495 69.2594) (3.35976e-15 -98.7831 171.89) (3.25271e-14 -108.215 194.193) (2.21434e-14 -107.225 195.329) (2.26776e-14 -98.6795 186.242) (2.92517e-14 -88.833 171.275) (3.0273e-14 -80.9603 159.345) (1.70135e-14 -74.8928 149.726) (1.59257e-14 -67.8738 138.319) (1.61013e-14 -60.3928 125.115) (1.63278e-14 -53.5987 112.069) (2.02685e-14 -48.6442 100.764) (2.45702e-14 -46.8956 93.4695) (3.23288e-14 -50.1375 93.3113) (4.0225e-14 -59.7041 102.788) (4.48142e-14 -73.8462 119.743) (4.24241e-14 -88.2501 139.4) (3.33097e-14 -100.83 156.95) (2.20874e-14 -104.787 167.38) (1.71851e-14 -99.4579 158.264) (2.89496e-14 -70.3898 125.063) (4.96877e-15 -114.293 200.456) (4.5873e-14 -121.396 217.977) (2.85774e-14 -117.404 221.63) (2.85617e-14 -104.743 207.18) (2.6958e-14 -88.0862 186.453) (1.62698e-14 -76.2523 172.41) (7.71068e-15 -67.2913 162.52) (-3.02962e-16 -56.8404 149.222) (-8.12461e-15 -44.5405 132.471) (-1.41619e-14 -31.7341 114.177) (-1.92676e-14 -19.1299 95.5378) (-2.09343e-14 -7.48227 77.3766) (-2.52628e-14 2.21045 60.8196) (-3.2102e-14 7.45755 49.1551) (-3.38143e-14 3.48976 49.6725) (-2.56406e-14 -14.0221 69.8116) (-1.13838e-14 -42.6893 106.917) (3.5737e-15 -70.9874 144.19) (1.65958e-14 -86.8222 157.572) (2.9223e-14 -63.4645 121.435) (1.03077e-15 -129.738 226.158) (1.23985e-14 -163.128 274.472) (3.2675e-15 -162.824 275.869) (1.82015e-15 -156.678 261.241) (2.6736e-16 -142.937 238.294) (-4.55392e-15 -130.862 216.64) (-9.01917e-15 -119.74 198.138) (-1.58362e-14 -109.509 182.689) (-2.34685e-14 -98.4979 164.733) (-3.01647e-14 -85.9861 145.686) (-3.655e-14 -72.5886 125.758) (-4.07614e-14 -58.5247 105.422) (-4.53399e-14 -44.4237 85.368) (-5.29572e-14 -31.0928 66.6589) (-5.89032e-14 -20.1393 51.7755) (-5.6773e-14 -14.9705 45.1364) (-4.43595e-14 -19.3445 52.1655) (-2.49477e-14 -33.4695 71.5459) (-3.49835e-15 -47.1367 85.8703) (1.27756e-14 -35.2007 69.3283) ) ; boundaryField { outletWall { type zeroGradient; } fineWalls { type noSlip; } fineFrontAndBack { type zeroGradient; } fineplugLeft { type cyclicAMI; value nonuniform List<vector> 20 ( (-4.30005e-14 73.6243 125.091) (-3.26063e-14 94.1166 153.664) (-2.78295e-14 85.941 146.144) (-2.43028e-14 73.0067 120.867) (-2.67263e-15 57.571 94.6133) (2.8199e-14 47.3624 75.1294) (5.1925e-14 43.8883 67.2022) (5.1941e-14 46.7716 70.1929) (3.81015e-14 53.9278 81.0938) (2.28936e-14 63.8776 97.1822) (9.28921e-15 75.0542 115.477) (-3.04704e-15 86.195 133.306) (-1.55734e-14 95.8413 149.35) (-2.30374e-14 102.866 161.538) (-3.29316e-14 106.56 174.635) (-3.64375e-14 114.028 188.018) (-3.34698e-14 120.97 201.43) (-3.59359e-14 126.799 212.776) (-4.79622e-14 127.301 215.429) (-7.83313e-15 102.914 171.607) ) ; } fineplugRight { type cyclicAMI; value nonuniform List<vector> 20 ( (1.99053e-14 -43.3131 77.0821) (5.33238e-15 -53.2027 91.1989) (-1.2643e-14 -42.1847 79.026) (-2.90953e-14 -31.1288 63.0934) (-3.97202e-14 -27.8169 57.1751) (-4.1957e-14 -32.1713 62.517) (-3.76456e-14 -41.1036 74.6574) (-3.20192e-14 -51.8939 89.9777) (-2.8764e-14 -63.236 106.381) (-2.5628e-14 -74.49 122.94) (-2.06114e-14 -85.1501 139.081) (-1.52866e-14 -94.9857 154.508) (-9.08374e-15 -103.62 169.034) (-4.31223e-15 -110.863 182.62) (5.18802e-16 -113.941 191.975) (4.31848e-15 -122.829 208.507) (5.17882e-15 -133.544 226.064) (5.8075e-15 -137.881 236.319) (1.27585e-14 -137.625 232.637) (3.5061e-15 -110.763 189.739) ) ; } inletOutletLeft { type cyclicAMI; value nonuniform List<vector> 20 ( (-4.30005e-14 73.6243 125.091) (-3.26063e-14 94.1166 153.664) (-2.78295e-14 85.941 146.144) (-2.43028e-14 73.0067 120.867) (-2.67263e-15 57.571 94.6133) (2.8199e-14 47.3624 75.1294) (5.1925e-14 43.8883 67.2022) (5.1941e-14 46.7716 70.1929) (3.81015e-14 53.9278 81.0938) (2.28936e-14 63.8776 97.1822) (9.28921e-15 75.0542 115.477) (-3.04704e-15 86.195 133.306) (-1.55734e-14 95.8413 149.35) (-2.30374e-14 102.866 161.538) (-3.29316e-14 106.56 174.635) (-3.64375e-14 114.028 188.018) (-3.34698e-14 120.97 201.43) (-3.59359e-14 126.799 212.776) (-4.79622e-14 127.301 215.429) (-7.83313e-15 102.914 171.607) ) ; } inletLeft { type fixedValue; value uniform (0 -60 140); } inletWallsLeft { type noSlip; } inletFacesLeft { type zeroGradient; } inletOutletRight { type cyclicAMI; value nonuniform List<vector> 20 ( (1.99053e-14 -43.3131 77.0821) (5.33238e-15 -53.2027 91.1989) (-1.2643e-14 -42.1847 79.026) (-2.90953e-14 -31.1288 63.0934) (-3.97202e-14 -27.8169 57.1751) (-4.1957e-14 -32.1713 62.517) (-3.76456e-14 -41.1036 74.6574) (-3.20192e-14 -51.8939 89.9777) (-2.8764e-14 -63.236 106.381) (-2.5628e-14 -74.49 122.94) (-2.06114e-14 -85.1501 139.081) (-1.52866e-14 -94.9857 154.508) (-9.08374e-15 -103.62 169.034) (-4.31223e-15 -110.863 182.62) (5.18802e-16 -113.941 191.975) (4.31848e-15 -122.829 208.507) (5.17882e-15 -133.544 226.064) (5.8075e-15 -137.881 236.319) (1.27585e-14 -137.625 232.637) (3.5061e-15 -110.763 189.739) ) ; } inletRight { type fixedValue; value uniform (0 60 140); } inletWallsRight { type noSlip; } inletFacesRight { type zeroGradient; } } // ************************************************************************* //
[ "brent.shambaugh@gmail.com" ]
brent.shambaugh@gmail.com
c9b7a106aae0181438214ec98d999b1be1f78fe1
e4d3d56265ed372e08976670143ee88e54b84b2e
/src/features/classes.h
9d52756e7313a204036d8e594ba72d4fba476f8c
[ "MIT" ]
permissive
tigerwood/spec-cpp
e681d2a9de1e8469054ecf9a4b1aa109909a5774
1d7e33e93b9dfcecf8c79a94ee572965f6360247
refs/heads/master
2020-04-29T02:13:38.606000
2018-08-14T16:15:43
2018-08-14T16:15:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
101
h
#pragma once namespace features { namespace classes { void run_tests(); } // classes } // features
[ "tatum.creative@gmail.com" ]
tatum.creative@gmail.com
181ce530b270ff6805a7c09436563cda3e0696fb
9d0d9492c12b3e88303c87134d6c0536e727b34f
/t39_decorator_pattern.cpp
b9b0525fbf35c3b1d7c7b46985686e2ce2c3b024
[]
no_license
s-kramer/cpp_tests
361929b81b99fcb17da13014e78748f7578becc1
2d6d3404bc5d6405e0cba8159e1cce0248efc194
refs/heads/master
2021-01-10T03:54:39.174981
2017-08-07T08:16:14
2017-08-07T08:16:14
53,738,390
0
0
null
null
null
null
UTF-8
C++
false
false
1,873
cpp
#include <iostream> #include <memory> class SingleCharPrinter { public: explicit SingleCharPrinter (void) = default; virtual void draw(void) = 0; }; class ACharPrinter : public SingleCharPrinter { public: explicit ACharPrinter (void) = default; virtual void draw(void) override { std::cout << "A"; } }; class CharPrinterDecorator : public SingleCharPrinter { public: explicit CharPrinterDecorator (SingleCharPrinter *toBeDecorated) : toBeDecorated_(toBeDecorated) {}; virtual void draw(void) override { toBeDecorated_->draw(); } private: std::unique_ptr<SingleCharPrinter> toBeDecorated_; }; class BCharPrinter : public CharPrinterDecorator { public: explicit BCharPrinter (SingleCharPrinter *toBeDecorated) : CharPrinterDecorator(toBeDecorated) {}; virtual void draw(void) override { CharPrinterDecorator::draw(); std::cout << "B"; } }; class CCharPrinter : public CharPrinterDecorator { public: explicit CCharPrinter (SingleCharPrinter *toBeDecorated) : CharPrinterDecorator(toBeDecorated) {}; virtual void draw(void) override { CharPrinterDecorator::draw(); std::cout << "C"; } }; class DCharPrinter : public CharPrinterDecorator { public: explicit DCharPrinter (SingleCharPrinter *toBeDecorated) : CharPrinterDecorator(toBeDecorated) {}; virtual void draw(void) override { CharPrinterDecorator::draw(); std::cout << "D"; } }; int main() { typedef std::unique_ptr<SingleCharPrinter> charptr; charptr A(new ACharPrinter); charptr AB(new BCharPrinter(new ACharPrinter)); charptr ABCD(new DCharPrinter(new CCharPrinter(new BCharPrinter(new ACharPrinter)))); A->draw(); std::cout << '\n'; AB->draw(); std::cout << '\n'; ABCD->draw(); std::cout << '\n'; return 0; }
[ "sebastian.kramer@wp.pl" ]
sebastian.kramer@wp.pl
cb992508ae4727f56b47e9e66215149bca5c53a5
4d6f9eaeb9738c9e2cfa1502d1136ebe4bffb2c1
/src/TimePanel.cpp
ca64a84e7c032f73e6e6da3333cb8cfad994e806
[]
no_license
serjikz/Tir
fabbcffbfd0f9eefc5a46baa62aaba0ccfa13457
3ff07017faa84b79810018ba0137718d8f430dfe
refs/heads/master
2023-05-05T04:50:05.612266
2020-09-20T19:16:08
2020-09-20T19:16:08
280,805,912
0
0
null
null
null
null
UTF-8
C++
false
false
1,711
cpp
#include "stdafx.h" #include "TimePanel.h" TimePanel::TimePanel(rapidxml::xml_node<>* settings) :Panel(settings), _text(""), _timeAvailable(0.f), _t0(0) { rapidxml::xml_node<>* timeText = settings->first_node("text"); _textX = Xml::GetIntAttributeOrDef(timeText, "x", 0); _textY = Xml::GetIntAttributeOrDef(timeText, "y", 0); std::string params; std::ifstream in("input.txt"); std::string paramToFound = "Time="; if (in.is_open()) { while (getline(in, params)) { if (params.substr(0, std::string(paramToFound).length()) == paramToFound) { _timeAvailable = stoi(params.substr(paramToFound.length(), params.length() - 1)); } } } in.close(); } void TimePanel::draw() { if (_state != State::HIDEN) { Render::device.PushMatrix(); Render::device.MatrixTranslate(_x, _splineVal, 0); _tex->Draw(); Render::BindFont("FloralessTime"); Render::PrintString(_textX, _textY, _text, 1.f, LeftAlign, CenterAlign); Render::device.PopMatrix(); } } void TimePanel::update(float dt) { Panel::update(dt); if (_state != State::HIDEN) { int t = _timeAvailable - (clock() - _t0) / 1000; if (t <= 0) { Message msg = Message(Message("Interface", "TimeIsOver")); Core::guiManager.getLayer("TestLayer")->getWidget("GameFieldWidget")->AcceptMessage(msg); return; } int min = t / 60; int sec = t % 60; std::string m = std::to_string(min); std::string s = std::to_string(sec); if (min < 10) { m = "0" + m; } if (sec < 10) { s = "0" + s; } _text = m + ":" + s; } } void TimePanel::setState(Panel::State newState) { Panel::setState(newState); if (newState == State::APEARENCE) { _t0 = clock(); } } int TimePanel::getTime() { return _timeAvailable; }
[ "zalukaev-sergey@yandex.ru" ]
zalukaev-sergey@yandex.ru
03ed5bd900bf6d0f69b064c57de4c4f5907ffb3e
cd790fb7e8ef78b1989531f5864f67649dcb1557
/uva11340(Newspaper).cpp
f9b729876f051895d28701b919b7791917accdbc
[]
no_license
FatimaTasnim/uva-solution
59387c26816c271b17e9604255934b7c8c7faf11
c7d75f0a5384229b243504dfbef4686052b9dea8
refs/heads/master
2020-03-27T22:23:18.611201
2018-10-23T05:53:46
2018-10-23T05:53:46
147,226,519
0
0
null
null
null
null
UTF-8
C++
false
false
764
cpp
#include<bits/stdc++.h> using namespace std; int main() { int c,n,m,rt; double sum=0.0; char ch; char line[10001]; scanf("%d",&c); while(c--) { int amount[1500]={0}; sum=0.0; scanf("%d",&n); getchar(); for(int i=0;i<n;i++) { scanf("%c%d",&ch,&rt); getchar(); //cout<<"ch"<< ch<< " rt"<<rt<<endl; amount [ch]=rt; } scanf("%d\n",&m); getchar(); for(int j=1;j<=m;j++) { gets(line); int len=strlen(line); for(int d=0;d<len;d++) { sum+=amount[line[d]]; } } printf("%.2lf$\n",sum/100.0); } } // bug :/
[ "tasnim.roujat@gmail.com" ]
tasnim.roujat@gmail.com
10f41b833df6cbd5b6f0e2ee6d856677fd916baf
1636e263470286f72a659bc25f39027c6923b8b1
/tags/1.21/boost/libs/regex/test/regress/test_sets.cpp
bc394909a79ffdefea7bc8fd385000712029acbd
[ "BSL-1.0" ]
permissive
BackupTheBerlios/rsxplusplus-svn
62e87121306dbbf055248ac7b97995d83cca09f9
d50d613b085bd2ab958b0cdc884bcb6a8aacbf39
refs/heads/master
2020-04-20T18:05:23.244919
2012-02-08T23:13:04
2012-02-08T23:13:04
40,820,934
0
0
null
null
null
null
UTF-8
C++
false
false
30,203
cpp
/* * * Copyright (c) 2004 * John Maddock * * Use, modification and distribution are 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) * */ #include "test.hpp" #ifdef BOOST_MSVC #pragma warning(disable:4127) #endif void test_sets() { using namespace boost::regex_constants; // now test the set operator [] TEST_REGEX_SEARCH("[abc]", boost::regex::extended, "a", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[abc]", boost::regex::extended, "b", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[abc]", boost::regex::extended, "c", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[abc]", boost::regex::extended, "d", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("[^bcd]", boost::regex::extended, "a", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[^bcd]", boost::regex::extended, "b", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("[^bcd]", boost::regex::extended, "d", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("[^bcd]", boost::regex::extended, "e", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("a[b]c", boost::regex::extended, "abc", match_default, make_array(0, 3, -2, -2)); TEST_REGEX_SEARCH("a[ab]c", boost::regex::extended, "abc", match_default, make_array(0, 3, -2, -2)); TEST_REGEX_SEARCH("a[a^b]*c", boost::regex::extended, "aba^c", match_default, make_array(0, 5, -2, -2)); TEST_REGEX_SEARCH("a[^ab]c", boost::regex::extended, "adc", match_default, make_array(0, 3, -2, -2)); TEST_REGEX_SEARCH("a[]b]c", boost::regex::extended, "a]c", match_default, make_array(0, 3, -2, -2)); TEST_REGEX_SEARCH("a[[b]c", boost::regex::extended, "a[c", match_default, make_array(0, 3, -2, -2)); TEST_REGEX_SEARCH("a[-b]c", boost::regex::extended, "a-c", match_default, make_array(0, 3, -2, -2)); TEST_REGEX_SEARCH("a[^]b]c", boost::regex::extended, "adc", match_default, make_array(0, 3, -2, -2)); TEST_REGEX_SEARCH("a[^-b]c", boost::regex::extended, "adc", match_default, make_array(0, 3, -2, -2)); TEST_REGEX_SEARCH("a[b-]c", boost::regex::extended, "a-c", match_default, make_array(0, 3, -2, -2)); TEST_REGEX_SEARCH("a[a-z-]c", boost::regex::extended, "a-c", match_default, make_array(0, 3, -2, -2)); TEST_REGEX_SEARCH("a[a-z-]+c", boost::regex::extended, "aaz-c", match_default, make_array(0, 5, -2, -2)); TEST_INVALID_REGEX("a[b", boost::regex::extended); TEST_INVALID_REGEX("a[", boost::regex::extended); TEST_INVALID_REGEX("a[]", boost::regex::extended); // now some ranges: TEST_REGEX_SEARCH("[b-e]", boost::regex::extended, "a", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("[b-e]", boost::regex::extended, "b", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[b-e]", boost::regex::extended, "e", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[b-e]", boost::regex::extended, "f", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("[^b-e]", boost::regex::extended, "a", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[^b-e]", boost::regex::extended, "b", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("[^b-e]", boost::regex::extended, "e", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("[^b-e]", boost::regex::extended, "f", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("a[1-3]c", boost::regex::extended, "a2c", match_default, make_array(0, 3, -2, -2)); TEST_REGEX_SEARCH("a[-3]c", boost::regex::extended, "a-c", match_default, make_array(0, 3, -2, -2)); TEST_REGEX_SEARCH("a[-3]c", boost::regex::extended, "a3c", match_default, make_array(0, 3, -2, -2)); TEST_REGEX_SEARCH("a[^-3]c", boost::regex::extended, "a-c", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("a[^-3]c", boost::regex::extended, "a3c", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("a[^-3]c", boost::regex::extended, "axc", match_default, make_array(0, 3, -2, -2)); TEST_INVALID_REGEX("a[3-1]c", boost::regex::extended & ~::boost::regex_constants::collate); TEST_INVALID_REGEX("a[1-3-5]c", boost::regex::extended); TEST_INVALID_REGEX("a[1-", boost::regex::extended); TEST_INVALID_REGEX("a[\\9]", perl); // and some classes TEST_REGEX_SEARCH("a[[:alpha:]]c", boost::regex::extended, "abc", match_default, make_array(0, 3, -2, -2)); TEST_INVALID_REGEX("a[[:unknown:]]c", boost::regex::extended); TEST_INVALID_REGEX("a[[", boost::regex::extended); TEST_INVALID_REGEX("a[[:", boost::regex::extended); TEST_INVALID_REGEX("a[[:a", boost::regex::extended); TEST_INVALID_REGEX("a[[:alpha", boost::regex::extended); TEST_INVALID_REGEX("a[[:alpha:", boost::regex::extended); TEST_INVALID_REGEX("a[[:alpha:]", boost::regex::extended); TEST_INVALID_REGEX("a[[:alpha:!", boost::regex::extended); TEST_INVALID_REGEX("a[[:alpha,:]", boost::regex::extended); TEST_INVALID_REGEX("a[[:]:]]b", boost::regex::extended); TEST_INVALID_REGEX("a[[:-:]]b", boost::regex::extended); TEST_INVALID_REGEX("a[[:alph:]]", boost::regex::extended); TEST_INVALID_REGEX("a[[:alphabet:]]", boost::regex::extended); TEST_REGEX_SEARCH("[[:alnum:]]+", boost::regex::extended, "-%@a0X_-", match_default, make_array(3, 6, -2, -2)); TEST_REGEX_SEARCH("[[:alpha:]]+", boost::regex::extended, " -%@aX_0-", match_default, make_array(4, 6, -2, -2)); TEST_REGEX_SEARCH("[[:blank:]]+", boost::regex::extended, "a \tb", match_default, make_array(1, 4, -2, -2)); TEST_REGEX_SEARCH("[[:cntrl:]]+", boost::regex::extended, " a\n\tb", match_default, make_array(2, 4, -2, -2)); TEST_REGEX_SEARCH("[[:digit:]]+", boost::regex::extended, "a019b", match_default, make_array(1, 4, -2, -2)); TEST_REGEX_SEARCH("[[:graph:]]+", boost::regex::extended, " a%b ", match_default, make_array(1, 4, -2, -2)); TEST_REGEX_SEARCH("[[:lower:]]+", boost::regex::extended, "AabC", match_default, make_array(1, 3, -2, -2)); TEST_REGEX_SEARCH("[[:print:]]+", boost::regex::extended, "AabC", match_default, make_array(0, 4, -2, -2)); TEST_REGEX_SEARCH("[[:punct:]]+", boost::regex::extended, " %-&\t", match_default, make_array(1, 4, -2, -2)); TEST_REGEX_SEARCH("[[:space:]]+", boost::regex::extended, "a \n\t\rb", match_default, make_array(1, 5, -2, -2)); TEST_REGEX_SEARCH("[[:upper:]]+", boost::regex::extended, "aBCd", match_default, make_array(1, 3, -2, -2)); TEST_REGEX_SEARCH("[[:xdigit:]]+", boost::regex::extended, "p0f3Cx", match_default, make_array(1, 5, -2, -2)); TEST_REGEX_SEARCH("[\\d]+", perl, "a019b", match_default, make_array(1, 4, -2, -2)); // // escapes are supported in character classes if we have either // perl or awk regular expressions: // TEST_REGEX_SEARCH("[\\n]", perl, "\n", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[\\b]", perl, "\b", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[\\n]", basic, "\n", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("[\\n]", basic, "\\", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[:class:]", basic|no_char_classes, ":", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[:class:]", basic|no_char_classes, "[", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[:class:]", basic|no_char_classes, "c", match_default, make_array(0, 1, -2, -2)); // // test single character escapes: // TEST_REGEX_SEARCH("\\w", perl, "A", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\w", perl, "Z", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\w", perl, "a", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\w", perl, "z", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\w", perl, "_", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\w", perl, "}", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("\\w", perl, "`", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("\\w", perl, "[", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("\\w", perl, "@", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("\\W", perl, "a", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("\\W", perl, "z", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("\\W", perl, "A", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("\\W", perl, "Z", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("\\W", perl, "_", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("\\W", perl, "}", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\W", perl, "`", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\W", perl, "[", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\W", perl, "@", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[:lower:]]", perl|icase, "A", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[:upper:]]", perl|icase, "A", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[:alpha:]]", perl|icase, "A", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[:alnum:]]", perl|icase, "A", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[:lower:]]", perl|icase, "a", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[:upper:]]", perl|icase, "a", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[:alpha:]]", perl|icase, "a", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[:alnum:]]", perl|icase, "a", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[:lower:][:upper:]]", perl, "A", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[:lower:][:upper:]]", perl, "a", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[:lower:][:alpha:]]", perl, "A", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[:lower:][:alpha:]]", perl, "a", match_default, make_array(0, 1, -2, -2)); } void test_sets2b(); void test_sets2c(); void test_sets2() { using namespace boost::regex_constants; // collating elements TEST_REGEX_SEARCH("[[.zero.]]", perl, "0", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[.one.]]", perl, "1", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[.two.]]", perl, "2", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[.three.]]", perl, "3", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[.a.]]", perl, "bac", match_default, make_array(1, 2, -2, -2)); TEST_REGEX_SEARCH("[[.\xf0.]]", perl, "b\xf0x", match_default, make_array(1, 2, -2, -2)); TEST_REGEX_SEARCH("[[.right-curly-bracket.]]", perl, "}", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[.NUL.]]", perl, "\0", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[.NUL.][.ae.]]", perl, "\0", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[.NUL.]-a]", boost::regex::extended, "\0", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[.NUL.]-a]", perl, "\0", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[.NUL.]-a]", boost::regex::extended, "a", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[.NUL.]-a]", perl, "a", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[.NUL.]-[.NUL.]a]", boost::regex::extended, "a", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[.NUL.]-[.NUL.]a]", perl, "a", match_default, make_array(0, 1, -2, -2)); TEST_INVALID_REGEX("[[..]]", perl); TEST_INVALID_REGEX("[[.not-a-collating-element.]]", perl); TEST_INVALID_REGEX("[[.", perl); TEST_INVALID_REGEX("[[.N", perl); TEST_INVALID_REGEX("[[.NUL", perl); TEST_INVALID_REGEX("[[.NUL.", perl); TEST_INVALID_REGEX("[[.NUL.]", perl); TEST_INVALID_REGEX("[[:<:]z]", perl); TEST_INVALID_REGEX("[a[:>:]]", perl); TEST_REGEX_SEARCH("[[.A.]]", boost::regex::extended|icase, "A", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[.A.]]", boost::regex::extended|icase, "a", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[.A.]-b]+", boost::regex::extended|icase, "AaBb", match_default, make_array(0, 4, -2, -2)); TEST_REGEX_SEARCH("[A-[.b.]]+", boost::regex::extended|icase, "AaBb", match_default, make_array(0, 4, -2, -2)); TEST_REGEX_SEARCH("[[.a.]-B]+", boost::regex::extended|icase, "AaBb", match_default, make_array(0, 4, -2, -2)); TEST_REGEX_SEARCH("[a-[.B.]]+", boost::regex::extended|icase, "AaBb", match_default, make_array(0, 4, -2, -2)); TEST_REGEX_SEARCH("[\x61]", boost::regex::extended, "a", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[\x61-c]+", boost::regex::extended, "abcd", match_default, make_array(0, 3, -2, -2)); TEST_REGEX_SEARCH("[a-\x63]+", boost::regex::extended, "abcd", match_default, make_array(0, 3, -2, -2)); TEST_REGEX_SEARCH("[[.a.]-c]+", boost::regex::extended, "abcd", match_default, make_array(0, 3, -2, -2)); TEST_REGEX_SEARCH("[a-[.c.]]+", boost::regex::extended, "abcd", match_default, make_array(0, 3, -2, -2)); TEST_INVALID_REGEX("[[:alpha:]-a]", boost::regex::extended); TEST_INVALID_REGEX("[a-[:alpha:]]", boost::regex::extended); TEST_REGEX_SEARCH("[[.ae.]]", basic, "ae", match_default, make_array(0, 2, -2, -2)); TEST_REGEX_SEARCH("[[.ae.]]", basic, "aE", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("[[.AE.]]", basic, "AE", match_default, make_array(0, 2, -2, -2)); TEST_REGEX_SEARCH("[[.Ae.]]", basic, "Ae", match_default, make_array(0, 2, -2, -2)); TEST_REGEX_SEARCH("[[.ae.]-b]", basic, "a", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("[[.ae.]-b]", basic, "b", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[.ae.]-b]", basic, "ae", match_default, make_array(0, 2, -2, -2)); TEST_REGEX_SEARCH("[a-[.ae.]]", basic, "a", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[a-[.ae.]]", basic, "b", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("[a-[.ae.]]", basic, "ae", match_default, make_array(0, 2, -2, -2)); TEST_REGEX_SEARCH("[[.ae.]]", basic|icase, "AE", match_default, make_array(0, 2, -2, -2)); TEST_REGEX_SEARCH("[[.ae.]]", basic|icase, "Ae", match_default, make_array(0, 2, -2, -2)); TEST_REGEX_SEARCH("[[.AE.]]", basic|icase, "Ae", match_default, make_array(0, 2, -2, -2)); TEST_REGEX_SEARCH("[[.Ae.]]", basic|icase, "aE", match_default, make_array(0, 2, -2, -2)); TEST_REGEX_SEARCH("[[.AE.]-B]", basic|icase, "a", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("[[.Ae.]-b]", basic|icase, "b", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[.Ae.]-b]", basic|icase, "B", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[.ae.]-b]", basic|icase, "AE", match_default, make_array(0, 2, -2, -2)); TEST_REGEX_SEARCH("[[.ae.]]", perl, "ae", match_default, make_array(0, 2, -2, -2)); TEST_REGEX_SEARCH("[[.ae.]]", perl, "aE", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("[[.AE.]]", perl, "AE", match_default, make_array(0, 2, -2, -2)); TEST_REGEX_SEARCH("[[.Ae.]]", perl, "Ae", match_default, make_array(0, 2, -2, -2)); TEST_REGEX_SEARCH("[[.ae.]-b]", perl, "a", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("[[.ae.]-b]", perl, "b", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[.ae.]-b]", perl, "ae", match_default, make_array(0, 2, -2, -2)); TEST_REGEX_SEARCH("[a-[.ae.]]", perl, "a", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[a-[.ae.]]", perl, "b", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("[a-[.ae.]]", perl, "ae", match_default, make_array(0, 2, -2, -2)); TEST_REGEX_SEARCH("[[.ae.]]", perl|icase, "AE", match_default, make_array(0, 2, -2, -2)); TEST_REGEX_SEARCH("[[.ae.]]", perl|icase, "Ae", match_default, make_array(0, 2, -2, -2)); TEST_REGEX_SEARCH("[[.AE.]]", perl|icase, "Ae", match_default, make_array(0, 2, -2, -2)); TEST_REGEX_SEARCH("[[.Ae.]]", perl|icase, "aE", match_default, make_array(0, 2, -2, -2)); TEST_REGEX_SEARCH("[[.AE.]-B]", perl|icase, "a", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("[[.Ae.]-b]", perl|icase, "b", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[.Ae.]-b]", perl|icase, "B", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[.ae.]-b]", perl|icase, "AE", match_default, make_array(0, 2, -2, -2)); TEST_REGEX_SEARCH("[[.ae.][:lower:]]", perl|icase, "AE", match_default, make_array(0, 2, -2, -2)); TEST_REGEX_SEARCH("[[.ae.][:lower:]]", perl|icase, "A", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[.ae.][=a=]]+", perl, "zzaA", match_default, make_array(2, 4, -2, -2)); TEST_INVALID_REGEX("[d-[.ae.]]", perl); // // try some equivalence classes: // TEST_REGEX_SEARCH("[[=a=]]", basic, "a", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[=a=]]", basic, "A", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[=ae=]]", basic, "ae", match_default, make_array(0, 2, -2, -2)); TEST_REGEX_SEARCH("[[=right-curly-bracket=]]", basic, "}", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[=NUL=]]", basic, "\x0", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[[=NUL=]]", perl, "\x0", match_default, make_array(0, 1, -2, -2)); TEST_INVALID_REGEX("[[=", perl); TEST_INVALID_REGEX("[[=a", perl); TEST_INVALID_REGEX("[[=ae", perl); TEST_INVALID_REGEX("[[=ae=", perl); TEST_INVALID_REGEX("[[=ae=]", perl); // // now some perl style single character classes: // TEST_REGEX_SEARCH("\\l+", perl, "ABabcAB", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("[\\l]+", perl, "ABabcAB", match_default, make_array(2, 5, -2, -2)); TEST_INVALID_REGEX("[\\l-a]", perl); TEST_REGEX_SEARCH("[\\L]+", perl, "abABCab", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("[[:^lower:]]+", perl, "abABCab", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("\\L+", perl, "abABCab", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("\\u+", perl, "abABCab", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("[\\u]+", perl, "abABCab", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("[\\U]+", perl, "ABabcAB", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("[[:^upper:]]+", perl, "ABabcAB", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("\\U+", perl, "ABabcAB", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("\\d+", perl, "AB012AB", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("[\\d]+", perl, "AB012AB", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("[\\D]+", perl, "01abc01", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("[[:^digit:]]+", perl, "01abc01", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("\\D+", perl, "01abc01", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("\\s+", perl, "AB AB", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("[\\s]+", perl, "AB AB", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("[\\S]+", perl, " abc ", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("[[:^space:]]+", perl, " abc ", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("\\S+", perl, " abc ", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("\\s+", perl, "AB AB", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("[\\w]+", perl, "AB_ AB", match_default, make_array(0, 3, -2, 6, 8, -2, -2)); TEST_REGEX_SEARCH("[\\W]+", perl, "AB_ AB", match_default, make_array(3, 6, -2, -2)); TEST_REGEX_SEARCH("[[:^word:]]+", perl, "AB_ AB", match_default, make_array(3, 6, -2, -2)); TEST_REGEX_SEARCH("\\W+", perl, "AB_ AB", match_default, make_array(3, 6, -2, -2)); test_sets2c(); } void test_sets2c() { using namespace boost::regex_constants; // and some Perl style properties: TEST_REGEX_SEARCH("\\pl+", perl, "ABabcAB", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("\\Pl+", perl, "abABCab", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("\\pu+", perl, "abABCab", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("\\Pu+", perl, "ABabcAB", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("\\pd+", perl, "AB012AB", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("\\PD+", perl, "01abc01", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("\\ps+", perl, "AB AB", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("\\PS+", perl, " abc ", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("\\p{alnum}+", perl, "-%@a0X_-", match_default, make_array(3, 6, -2, -2)); TEST_REGEX_SEARCH("\\p{alpha}+", perl, " -%@aX_0-", match_default, make_array(4, 6, -2, -2)); TEST_REGEX_SEARCH("\\p{blank}+", perl, "a \tb", match_default, make_array(1, 4, -2, -2)); TEST_REGEX_SEARCH("\\p{cntrl}+", perl, " a\n\tb", match_default, make_array(2, 4, -2, -2)); TEST_REGEX_SEARCH("\\p{digit}+", perl, "a019b", match_default, make_array(1, 4, -2, -2)); TEST_REGEX_SEARCH("\\p{graph}+", perl, " a%b ", match_default, make_array(1, 4, -2, -2)); TEST_REGEX_SEARCH("\\p{lower}+", perl, "AabC", match_default, make_array(1, 3, -2, -2)); TEST_REGEX_SEARCH("\\p{print}+", perl, "AabC", match_default, make_array(0, 4, -2, -2)); TEST_REGEX_SEARCH("\\p{punct}+", perl, " %-&\t", match_default, make_array(1, 4, -2, -2)); TEST_REGEX_SEARCH("\\p{space}+", perl, "a \n\t\rb", match_default, make_array(1, 5, -2, -2)); TEST_REGEX_SEARCH("\\p{upper}+", perl, "aBCd", match_default, make_array(1, 3, -2, -2)); TEST_REGEX_SEARCH("\\p{xdigit}+", perl, "p0f3Cx", match_default, make_array(1, 5, -2, -2)); TEST_REGEX_SEARCH("\\P{alnum}+", perl, "-%@a", match_default, make_array(0, 3, -2, -2)); TEST_REGEX_SEARCH("\\P{alpha}+", perl, " -%@a", match_default, make_array(0, 4, -2, -2)); TEST_REGEX_SEARCH("\\P{blank}+", perl, "a ", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\P{cntrl}+", perl, " a\n", match_default, make_array(0, 2, -2, -2)); TEST_REGEX_SEARCH("\\P{digit}+", perl, "a0", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\P{graph}+", perl, " a", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\P{lower}+", perl, "Aa", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\P{print}+", perl, "Absc", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("\\P{punct}+", perl, " %", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\P{space}+", perl, "a ", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\P{upper}+", perl, "aB", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\P{xdigit}+", perl, "pf", match_default, make_array(0, 1, -2, -2)); TEST_INVALID_REGEX("\\p{invalid class}", perl); TEST_INVALID_REGEX("\\p{upper", perl); TEST_INVALID_REGEX("\\p{", perl); TEST_INVALID_REGEX("\\p", perl); TEST_INVALID_REGEX("\\P{invalid class}", perl); TEST_INVALID_REGEX("\\P{upper", perl); TEST_INVALID_REGEX("\\P{", perl); TEST_INVALID_REGEX("\\P", perl); // try named characters: TEST_REGEX_SEARCH("\\N{zero}", perl, "0", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\N{one}", perl, "1", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\N{two}", perl, "2", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\N{three}", perl, "3", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\N{a}", perl, "bac", match_default, make_array(1, 2, -2, -2)); TEST_REGEX_SEARCH("\\N{\xf0}", perl, "b\xf0x", match_default, make_array(1, 2, -2, -2)); TEST_REGEX_SEARCH("\\N{right-curly-bracket}", perl, "}", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\N{NUL}", perl, "\0", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("[\\N{zero}-\\N{nine}]+", perl, " 0123456789 ", match_default, make_array(1, 11, -2, -2)); TEST_INVALID_REGEX("\\N", perl); TEST_INVALID_REGEX("\\N{", perl); TEST_INVALID_REGEX("\\N{}", perl); TEST_INVALID_REGEX("\\N{invalid-name}", perl); TEST_INVALID_REGEX("\\N{zero", perl); test_sets2b(); } void test_sets2b() { using namespace boost::regex_constants; // and repeat with POSIX-boost::regex::extended syntax: TEST_REGEX_SEARCH("\\pl+", boost::regex::extended, "ABabcAB", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("\\Pl+", boost::regex::extended, "abABCab", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("\\pu+", boost::regex::extended, "abABCab", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("\\Pu+", boost::regex::extended, "ABabcAB", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("\\pd+", boost::regex::extended, "AB012AB", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("\\PD+", boost::regex::extended, "01abc01", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("\\ps+", boost::regex::extended, "AB AB", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("\\PS+", boost::regex::extended, " abc ", match_default, make_array(2, 5, -2, -2)); TEST_REGEX_SEARCH("\\p{alnum}+", boost::regex::extended, "-%@a0X_-", match_default, make_array(3, 6, -2, -2)); TEST_REGEX_SEARCH("\\p{alpha}+", boost::regex::extended, " -%@aX_0-", match_default, make_array(4, 6, -2, -2)); TEST_REGEX_SEARCH("\\p{blank}+", boost::regex::extended, "a \tb", match_default, make_array(1, 4, -2, -2)); TEST_REGEX_SEARCH("\\p{cntrl}+", boost::regex::extended, " a\n\tb", match_default, make_array(2, 4, -2, -2)); TEST_REGEX_SEARCH("\\p{digit}+", boost::regex::extended, "a019b", match_default, make_array(1, 4, -2, -2)); TEST_REGEX_SEARCH("\\p{graph}+", boost::regex::extended, " a%b ", match_default, make_array(1, 4, -2, -2)); TEST_REGEX_SEARCH("\\p{lower}+", boost::regex::extended, "AabC", match_default, make_array(1, 3, -2, -2)); TEST_REGEX_SEARCH("\\p{print}+", boost::regex::extended, "AabC", match_default, make_array(0, 4, -2, -2)); TEST_REGEX_SEARCH("\\p{punct}+", boost::regex::extended, " %-&\t", match_default, make_array(1, 4, -2, -2)); TEST_REGEX_SEARCH("\\p{space}+", boost::regex::extended, "a \n\t\rb", match_default, make_array(1, 5, -2, -2)); TEST_REGEX_SEARCH("\\p{upper}+", boost::regex::extended, "aBCd", match_default, make_array(1, 3, -2, -2)); TEST_REGEX_SEARCH("\\p{xdigit}+", boost::regex::extended, "p0f3Cx", match_default, make_array(1, 5, -2, -2)); TEST_REGEX_SEARCH("\\P{alnum}+", boost::regex::extended, "-%@a", match_default, make_array(0, 3, -2, -2)); TEST_REGEX_SEARCH("\\P{alpha}+", boost::regex::extended, " -%@a", match_default, make_array(0, 4, -2, -2)); TEST_REGEX_SEARCH("\\P{blank}+", boost::regex::extended, "a ", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\P{cntrl}+", boost::regex::extended, " a\n", match_default, make_array(0, 2, -2, -2)); TEST_REGEX_SEARCH("\\P{digit}+", boost::regex::extended, "a0", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\P{graph}+", boost::regex::extended, " a", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\P{lower}+", boost::regex::extended, "Aa", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\P{print}+", boost::regex::extended, "Absc", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("\\P{punct}+", boost::regex::extended, " %", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\P{space}+", boost::regex::extended, "a ", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\P{upper}+", boost::regex::extended, "aB", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\P{xdigit}+", boost::regex::extended, "pf", match_default, make_array(0, 1, -2, -2)); TEST_INVALID_REGEX("\\p{invalid class}", boost::regex::extended); TEST_INVALID_REGEX("\\p{upper", boost::regex::extended); TEST_INVALID_REGEX("\\p{", boost::regex::extended); TEST_INVALID_REGEX("\\p", boost::regex::extended); TEST_INVALID_REGEX("\\P{invalid class}", boost::regex::extended); TEST_INVALID_REGEX("\\P{upper", boost::regex::extended); TEST_INVALID_REGEX("\\P{", boost::regex::extended); TEST_INVALID_REGEX("\\P", boost::regex::extended); // try named characters: TEST_REGEX_SEARCH("\\N{zero}", boost::regex::extended, "0", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\N{one}", boost::regex::extended, "1", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\N{two}", boost::regex::extended, "2", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\N{three}", boost::regex::extended, "3", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\N{a}", boost::regex::extended, "bac", match_default, make_array(1, 2, -2, -2)); TEST_REGEX_SEARCH("\\N{\xf0}", boost::regex::extended, "b\xf0x", match_default, make_array(1, 2, -2, -2)); TEST_REGEX_SEARCH("\\N{right-curly-bracket}", boost::regex::extended, "}", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("\\N{NUL}", boost::regex::extended, "\0", match_default, make_array(0, 1, -2, -2)); TEST_INVALID_REGEX("\\N", boost::regex::extended); TEST_INVALID_REGEX("\\N{", boost::regex::extended); TEST_INVALID_REGEX("\\N{}", boost::regex::extended); TEST_INVALID_REGEX("\\N{invalid-name}", boost::regex::extended); TEST_INVALID_REGEX("\\N{zero", boost::regex::extended); }
[ "adrian_007@d6b4a1ff-313e-0410-9c6d-9e6e276248f2" ]
adrian_007@d6b4a1ff-313e-0410-9c6d-9e6e276248f2
99567ef26ac8736092dd9cecf4115f5c59ce9390
eac71e4c7f960160887ab5ce675f8b2903ed51bb
/Punteros 2/X66203_ca/program.hh
1edcdddf5513cf8ad23ce3c3bba2e17ba1087d3a
[ "Apache-2.0" ]
permissive
go3212/FIB-PRO2
14947931a37e9f52b154904b2d229785d3a76fbb
383cc7568583e164d740b87b9e7ad4eb06fee5d9
refs/heads/main
2023-06-02T02:34:23.503813
2021-06-14T10:20:48
2021-06-14T10:20:48
341,898,013
0
0
null
null
null
null
UTF-8
C++
false
false
502
hh
void node_search_max (const node_arbreNari* node, T& maxVal) const { if (node == NULL) return void(); if (node->info > maxVal) maxVal = node->info; int size = node->seg.size(); for (int i = 0; i < size; ++i) { node_search_max (node->seg[i], maxVal); } } /* Pre: el p.i. no és buit */ /* Post: el resultat indica el valor més gran que conté el p.i. */ T maxim() const { T maxVal = primer_node->info; node_search_max (primer_node, maxVal); return maxVal; }
[ "go3212@hotmail.com" ]
go3212@hotmail.com
95a2b958ba47d25b8a59cdc61a907f88d1d1b0c3
2a7a95716ab7ee907cad2a0ccf1b64f7464c8d35
/Win32Project1/Win32Project1.cpp
4b5f3d99690f7a299a8619c8556ed1b5be1a7b27
[]
no_license
sotigr/GLEngine
b77e0ecc3d2492e59ab57da7f5938332c2fa1886
1ab0c044707e3d07a19315030091badded33cf0f
refs/heads/master
2021-04-28T21:22:27.125216
2017-01-01T09:07:11
2017-01-01T09:07:11
77,772,515
0
0
null
null
null
null
UTF-8
C++
false
false
725
cpp
// // FUNCTION: WndProc(HWND, UINT, WPARAM, LPARAM) // // PURPOSE: Processes messages for the main window. // // WM_COMMAND - process the application menu // WM_PAINT - Paint the main window // WM_DESTROY - post a quit message and return // // #include <windows.h>; #include <stdlib.h>; #include <stdio.h>; #include <gl\GL.h>; #include <gl\GLU.h>; #include "MainWindow.h"; int APIENTRY wWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance, _In_ LPWSTR lpCmdLine, _In_ int nCmdShow) { AllocConsole(); freopen("CONOUT$", "w", stdout); MainWindow* win1 = new MainWindow(); win1->SetWidth(1024); win1->SetHeight(768); win1->SetTitle("hello win"); win1->ShowDialog(); return 0; }
[ "sotiris.papaioannou@hotmail.com" ]
sotiris.papaioannou@hotmail.com
fc3c0a1d330d1788f146a891b538c0c53ac7f621
cb32fa11a240707ef689e90fdf749337db4c9b4c
/esp8266-christmastree.ino
590d36089e9d949bb091244a96cdde73d4821312
[]
no_license
mverboom/esp8266christmastree
1f7ab4598bb03524815cbe4de13843f14b7d76b1
aec5eb92cc7f29e0a4a028ffd32c7080bee9542d
refs/heads/master
2021-01-12T05:35:33.006122
2016-12-22T19:36:28
2016-12-22T19:36:28
77,136,112
0
0
null
null
null
null
UTF-8
C++
false
false
15,263
ino
#include <Adafruit_NeoPixel.h> #include <ESP8266WiFi.h> #include <DNSServer.h> #include <ESP8266WebServer.h> #include <ESP8266mDNS.h> #include <WiFiManager.h> #include <WebSocketsServer.h> #define PIN D1 #define NUM_PIXELS 10 #define COLOR_RANDOM -2 #define COLOR_GET -1 #define COLOR_STATE -3 #define UPDATE_GET -1 #define UPDATE_RANDOM -2 #define UPDATE_STATIC -3 #define UPDATE_STATE -4 #define UPDATE_LEN -5 #define EFFECT_STATE -1 #define LED_SET 1 #define LED_UPDATE 2 #define LED_OVERWRITE 4 #define LED_FADEIN 8 #define LED_FADEOUT 16 const int effects = 5; const char * const effectlist[] = { "Off", "Loop", "Fill", "Double loop", "Stars"}; // LED layout // 9 // 6 7 8 // 5 4 3 // 0 1 2 Adafruit_NeoPixel strip = Adafruit_NeoPixel(NUM_PIXELS, PIN, NEO_RGB + NEO_KHZ400); ESP8266WebServer server(80); WebSocketsServer webSocket = WebSocketsServer(81); static const char PROGMEM INDEX_HTML[] = R"rawliteral( <!DOCTYPE html> <html> <head> <meta name = "viewport" content = "width = device-width, initial-scale = 1.0, maximum-scale = 1.0, user-scalable=0"> <title>Christmas Tree</title> <style> div.circle { width: 50px; height: 50px; background: black; -moz-border-radius: 50px; -webkit-border-radius: 50px; border-radius: 50px; } body { background-color: #808080; font-family: Arial, Helvetica, Sans-Serif; Color: #000000; } </style> <script> var websock; function start() { ws = new WebSocket('ws://' + window.location.hostname + ':81/'); ws.onopen = function(event) { console.log('websocket opened'); }; ws.onclose = function(event) { console.log('websocket closed'); }; ws.onerror = function(event) { console.log(event); }; ws.onmessage = function(event) { var i, color, col, x; switch (event.data.substr(0,1)) { case 'e': console.log(event.data); var x = document.getElementById("effect"); var option = document.createElement("option"); option.text = event.data.substr(1); x.add(option); break; case 'd': document.getElementById("effect").selectedIndex = event.data.substr(1); break; case 'l': for (i = 0; i*7 < (event.data.length - 1); i++) { color = event.data.substr(1+i*7,7); x = document.getElementById(i); x.style.backgroundColor = color; } break; case 'c': document.getElementById("color").value = event.data.substr(1,7); document.getElementById("colorrandom").checked = false; document.getElementById("colorcheck").checked = true; break; case 'r': document.getElementById("colorrandom").checked = true; document.getElementById("colorcheck").checked = false; break; case 'u': console.log(event.data); document.getElementById("intstatic").checked = true; document.getElementById("intrandom").checked = false; document.getElementById("intstatval").value = event.data.substr(1); break; case 'v': console.log(event.data); document.getElementById("intstatic").checked = false; document.getElementById("intrandom").checked = true; document.getElementById("intrandval").value = event.data.substr(1); break; } }; } function setcolor(event) { console.log(event); var msg="s" + document.getElementById("color").value; ws.send(msg); } function setcolorrandom(event) { if (document.getElementById("colorrandom").checked == true) ws.send("r"); else { var msg="s" + document.getElementById("color").value; ws.send(msg); } } function setintstatic(event) { var msg="u" + document.getElementById("intstatval").value; ws.send(msg); } function setintrandom(event) { var msg="v" + document.getElementById("intrandval").value; ws.send(msg); } function seteffect(event) { var msg="d" + document.getElementById("effect").selectedIndex; ws.send(msg); } window.onload = start; </script> </head> <body> <h1>Christmas Tree</h1> <div style="position: relative; width:500px; height:370px;"> <div style="position: absolute; top: 10px; left: 200px;" class=circle id=9></div> <div style="position: absolute; top: 100px; left: 135px;" class=circle id=6></div> <div style="position: absolute; top: 165px; left: 200px;" class=circle id=7></div> <div style="position: absolute; top: 90px; left: 255px;" class=circle id=8></div> <div style="position: absolute; top: 200px; left: 95px;" class=circle id=5></div> <div style="position: absolute; top: 250px; left: 200px;" class=circle id=4></div> <div style="position: absolute; top: 200px; left: 300px;" class=circle id=3></div> <div style="position: absolute; top: 290px; left: 50px;" class=circle id=0></div> <div style="position: absolute; top: 330px; left: 200px;" class=circle id=1></div> <div style="position: absolute; top: 295px; left: 340px;" class=circle id=2></div> </div> <b>Effect</b><br> <select id="effect" onChange=seteffect(event);> </select><br> <b>Color</b><br> <input type="checkbox" id=colorcheck onClick=setcolor(event);><input type="color" id="color" value="#ff0000" onChange=setcolor(event);><br> <input type="checkbox" id=colorrandom onClick=setcolorrandom(event);> Random<br> <b>Interval</b><br> <input type="checkbox" id=intstatic onClick=setintstatic(event);>Static <input type="number" id="intstatval" min=1 max=9999 value=1000 onChange=setintstatic(event);>ms<br> <input type="checkbox" id=intrandom onClick=setintrandom(event);>Random, max <input type="number" id="intrandval" min=1 max=9999 value=1000 onChange=setintrandom(event);>ms<br> </td></tr></table> </body> </html> )rawliteral"; void webSocketEvent(uint8_t num, WStype_t type, uint8_t * payload, size_t length) { long int curcolor; int interval; char msg[10]; int count; int state; Serial.printf("webSocketEvent(%d, %d, ...)\r\n", num, type); switch(type) { case WStype_DISCONNECTED: Serial.printf("[%u] Disconnected!\r\n", num); break; case WStype_CONNECTED: { IPAddress ip = webSocket.remoteIP(num); Serial.printf("[%u] Connected from %d.%d.%d.%d url: %s\r\n", num, ip[0], ip[1], ip[2], ip[3], payload); for (count = 0; count < effects; count++) { sprintf(msg, "e%s", effectlist[count]); webSocket.sendTXT(num, msg); } state = effect(EFFECT_STATE); sprintf(msg, "d%d", state); webSocket.sendTXT(num,msg); curcolor = color(COLOR_STATE); switch (curcolor) { case COLOR_RANDOM: webSocket.sendTXT(num, "r"); break; default: sprintf(msg, "c#%02x%02x%02x", (uint8_t) ((curcolor >> 16) & 0xff), (uint8_t) ((curcolor >> 8) & 0xff), (uint8_t) ((curcolor) & 0xff)); webSocket.sendTXT(num, msg); break; } interval = update(UPDATE_STATE,0); switch (interval) { case UPDATE_RANDOM: sprintf(msg, "v%d", update(UPDATE_LEN,0)); webSocket.sendTXT(num, msg); break; default: sprintf(msg, "u%d", update(UPDATE_LEN,0)); webSocket.sendTXT(num, msg); break; } } break; case WStype_TEXT: Serial.printf("[%u] get Text: %s\r\n", num, payload); switch (payload[0]) { case 'd': effect(strtol((char *) &payload[1], NULL, 10)); setstrip(0); webSocket.broadcastTXT(payload); break; case 's': color(strtol((char *) &payload[2], NULL, 16)); payload[0] = 'c'; webSocket.broadcastTXT(payload, 8); break; case 'r': color(COLOR_RANDOM); webSocket.broadcastTXT(payload, length); break; case 'u': update(UPDATE_STATIC, strtol((char *) &payload[1], NULL, 10)); webSocket.broadcastTXT(payload); break; case 'v': update(UPDATE_RANDOM, strtol((char *) &payload[1], NULL, 10)); webSocket.broadcastTXT(payload); break; } break; case WStype_BIN: Serial.printf("[%u] get binary length: %u\r\n", num, length); hexdump(payload, length); break; default: Serial.printf("Invalid WStype [%d]\r\n", type); break; } } void web_root() { server.send(200, "text/html", INDEX_HTML); } void web_notfound() { server.send(404, "text/plain", "Not found"); } void setup() { int i; Serial.begin(115200); Serial.println("Starting christmastree"); strip.begin(); setstrip(0); strip.setPixelColor(9,255,0,0); strip.show(); WiFiManager wifiManager; wifiManager.autoConnect("ChristmasTree"); Serial.println("Wifi setup done."); strip.setPixelColor(9,0,255,0); strip.show(); if ( MDNS.begin ( "tree" ) ) { Serial.println ( "MDNS responder started" ); MDNS.addService("http", "tcp", 80); } else Serial.println("MDNS responder failed"); server.on("/", web_root); server.onNotFound(web_notfound); server.begin(); Serial.println("HTTP server started"); webSocket.begin(); webSocket.onEvent(webSocketEvent); Serial.println("Websocket server started"); setstrip(0); } void setstrip(long int color) { int i; for (i=0; i<NUM_PIXELS; i++) strip.setPixelColor(i, color); stripshow(); } int update(int updatetype, int setlength) { static int update = UPDATE_STATIC; static int length = 500; int temp; switch (updatetype) { case UPDATE_STATE: return(update); break; case UPDATE_LEN: return(length); break; case UPDATE_GET: if (update == UPDATE_RANDOM) { return(random(length)); } else return(length); break; case UPDATE_RANDOM: update = UPDATE_RANDOM; length = setlength; return(random(length)); break; case UPDATE_STATIC: update = UPDATE_STATIC; length = setlength; return(length); break; } } long int color(long int setcolor) { static long int color = 0xff0000; long int temp; switch (setcolor) { case COLOR_STATE: return(color); break; case COLOR_GET: if (color == COLOR_RANDOM) { temp = random(0xffffff); return(temp); } else { return(color); } break; case COLOR_RANDOM: color = COLOR_RANDOM; return(random(0xffffff)); break; default: color = setcolor; return(color); } } int effect(int seteffect) { static int effect = 4; switch (seteffect) { case EFFECT_STATE: return(effect); break; default: effect = seteffect; return(effect); } } void stripshow() { uint8_t status[NUM_PIXELS * 3]; char colorstring[NUM_PIXELS * 10]; int i; long color; strip.show(); sprintf(colorstring, "l\0"); for (i = 0; i < NUM_PIXELS; i++) { color = strip.getPixelColor(i); sprintf(colorstring, "%s#%02x%02x%02x", colorstring, (uint8_t) ((color >> 16) & 0xff), (uint8_t) ((color >> 8) & 0xff), (uint8_t) ((color) & 0xff)); } webSocket.broadcastTXT(colorstring, strlen(colorstring)); } long int rgb(long int color, int perc) { unsigned int r; unsigned int g; unsigned int b; unsigned long int col; r = ((color >> 16) & 0xff) * perc / 100; g = ((color >> 8) & 0xff) * perc / 100; b = ((color ) &0xff) * perc /100; col = ((long int) r) << 16 | ((long int) g) << 8 | ((long int) b); return(col); } int led_fade(int flags, int led, int step) { static int led_fade[NUM_PIXELS]; static int led_steps[NUM_PIXELS]; static int led_step[NUM_PIXELS]; static int led_flags[NUM_PIXELS]; static long int led_color[NUM_PIXELS]; static unsigned long last_time[NUM_PIXELS]; unsigned long time = millis(); static int interval[NUM_PIXELS]; int curled; int active = 0; int updated = 0; if (flags & LED_SET) { if (led_fade[led] == 0 || (led_fade[led] != 0 && (flags & LED_OVERWRITE))) { led_steps[led] = step; led_step[led] = 0; led_color[led] = color(COLOR_GET); led_fade[led] = LED_FADEIN; led_flags[led] = 0; interval[led] = update(UPDATE_GET,0) / step; last_time[led] = 0; //Serial.printf("Added led %d, steps %d\n", led, step); } } if (flags & LED_UPDATE) { for (curled = 0; curled < NUM_PIXELS; curled++) { if (led_fade[curled] != 0) { active++; if (time > last_time[curled] + interval[curled]) { updated=1; //Serial.printf("Updated led %d\n", curled); if (led_fade[curled] == LED_FADEIN) { led_step[curled]++; if (led_step[curled] == led_steps[curled]) led_fade[curled] = LED_FADEOUT; } else { led_step[curled]--; if (led_step[curled] == 0) { led_step[curled] = 0; led_fade[curled] = 0; } } strip.setPixelColor(curled, rgb(led_color[curled], (led_step[curled] *100)/ led_steps[curled])); last_time[curled] = time; interval[curled] = update(UPDATE_GET,0) / led_steps[curled]; } } } if (updated > 0) { stripshow(); //Serial.printf("update, active: %d\n", active); return(active); } if (active == 0) return(0); else return(-1); } return(0); } void led_loop(int pat, const int leds[]) { static unsigned long last_time; static int pos = 0; unsigned long time = millis(); static int interval = update(UPDATE_GET,0); if (time > last_time + interval) { //strip.setPixelColor(leds[pos], 0, 0, 0); pos++; if (pos >= pat) pos = 0; //strip.setPixelColor(leds[pos], color(COLOR_GET)); led_fade(LED_SET, leds[pos],5); //stripshow(); last_time = time; interval = update(UPDATE_GET,0); } led_fade(LED_UPDATE,0,0); } void led_star(void) { int ret; ret = led_fade(LED_UPDATE, 0,0); if (ret != -1 && ret < 6 && random(10) == 5) led_fade(LED_SET, random(NUM_PIXELS),random(8,15)); } const int pat_fill[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; const int pat_loop[] = {9, 8, 3, 2, 1, 0, 5, 6}; const int pat_dblloop[] = {1, 4, 7, 9, 6, 5, 0, 1, 4, 7, 9, 8, 3, 2}; void loop() { int ret; while (1) { yield(); server.handleClient(); webSocket.loop(); switch (effect(EFFECT_STATE)) { case 0: delay(500); break; case 1: led_loop(8, pat_loop); break; case 2: led_loop(10, pat_fill); break; case 3: led_loop(14, pat_dblloop); break; case 4: led_star(); break; } } }
[ "mark@verboom.net" ]
mark@verboom.net
5c886edca70ad724982338724c3796f2dacc1430
d97f3028824433efd31c390bb3a78d08cae82fe6
/jshEngine/src/ImGui/imgui_demo.cpp
f20828bf38d9c4216a5f9c2dfe20559da6c2166b
[ "Apache-2.0" ]
permissive
JoseLRM/jshEngine
db434bdafb19f4e56717116b2df42d992b9b0f82
589851ca3e845e407d81dc555dc76dc70c010f25
refs/heads/master
2022-07-16T15:26:31.238268
2020-05-22T06:04:35
2020-05-22T06:04:35
247,751,536
1
0
null
null
null
null
UTF-8
C++
false
false
256,036
cpp
#include "common.h" // dear imgui, v1.76 WIP // (demo code) // Help: // - Read FAQ at http://dearimgui.org/faq // - Newcomers, read 'Programmer guide' in imgui.cpp for notes on how to setup Dear ImGui in your codebase. // - Call and read ImGui::ShowDemoWindow() in imgui_demo.cpp for demo code. All applications in examples/ are doing that. // Read imgui.cpp for more details, documentation and comments. // Get latest version at https://github.com/ocornut/imgui // Message to the person tempted to delete this file when integrating Dear ImGui into their code base: // Do NOT remove this file from your project! Think again! It is the most useful reference code that you and other coders // will want to refer to and call. Have the ImGui::ShowDemoWindow() function wired in an always-available debug menu of // your game/app! Removing this file from your project is hindering access to documentation for everyone in your team, // likely leading you to poorer usage of the library. // Everything in this file will be stripped out by the linker if you don't call ImGui::ShowDemoWindow(). // If you want to link core Dear ImGui in your shipped builds but want a thorough guarantee that the demo will not be linked, // you can setup your imconfig.h with #define IMGUI_DISABLE_DEMO_WINDOWS and those functions will be empty. // In other situation, whenever you have Dear ImGui available you probably want this to be available for reference. // Thank you, // -Your beloved friend, imgui_demo.cpp (which you won't delete) // Message to beginner C/C++ programmers about the meaning of the 'static' keyword: // In this demo code, we frequently we use 'static' variables inside functions. A static variable persist across calls, so it is // essentially like a global variable but declared inside the scope of the function. We do this as a way to gather code and data // in the same place, to make the demo source code faster to read, faster to write, and smaller in size. // It also happens to be a convenient way of storing simple UI related information as long as your function doesn't need to be // reentrant or used in multiple threads. This might be a pattern you will want to use in your code, but most of the real data // you would be editing is likely going to be stored outside your functions. // The Demo code in this file is designed to be easy to copy-and-paste in into your application! // Because of this: // - We never omit the ImGui:: namespace when calling functions, even though most of our code is already in the same namespace. // - We try to declare static variables in the local scope, as close as possible to the code using them. // - We never use any of the helpers/facilities used internally by Dear ImGui, unless it has been exposed in the public API (imgui.h). // - We never use maths operators on ImVec2/ImVec4. For other of our sources files, they are provided by imgui_internal.h w/ IMGUI_DEFINE_MATH_OPERATORS. // For your own sources file they are optional and require you either enable those, either provide your own via IM_VEC2_CLASS_EXTRA in imconfig.h. // Because we don't want to assume anything about your support of maths operators, we don't use them in imgui_demo.cpp. /* Index of this file: // [SECTION] Forward Declarations, Helpers // [SECTION] Demo Window / ShowDemoWindow() // [SECTION] About Window / ShowAboutWindow() // [SECTION] Style Editor / ShowStyleEditor() // [SECTION] Example App: Main Menu Bar / ShowExampleAppMainMenuBar() // [SECTION] Example App: Debug Console / ShowExampleAppConsole() // [SECTION] Example App: Debug Log / ShowExampleAppLog() // [SECTION] Example App: Simple Layout / ShowExampleAppLayout() // [SECTION] Example App: Property Editor / ShowExampleAppPropertyEditor() // [SECTION] Example App: Long Text / ShowExampleAppLongText() // [SECTION] Example App: Auto Resize / ShowExampleAppAutoResize() // [SECTION] Example App: Constrained Resize / ShowExampleAppConstrainedResize() // [SECTION] Example App: Simple Overlay / ShowExampleAppSimpleOverlay() // [SECTION] Example App: Manipulating Window Titles / ShowExampleAppWindowTitles() // [SECTION] Example App: Custom Rendering using ImDrawList API / ShowExampleAppCustomRendering() // [SECTION] Example App: Documents Handling / ShowExampleAppDocuments() */ #if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS) #define _CRT_SECURE_NO_WARNINGS #endif #include "imgui.h" #ifndef IMGUI_DISABLE #include <ctype.h> // toupper #include <limits.h> // INT_MIN, INT_MAX #include <math.h> // sqrtf, powf, cosf, sinf, floorf, ceilf #include <stdio.h> // vsnprintf, sscanf, printf #include <stdlib.h> // NULL, malloc, free, atoi #if defined(_MSC_VER) && _MSC_VER <= 1500 // MSVC 2008 or earlier #include <stddef.h> // intptr_t #else #include <stdint.h> // intptr_t #endif #ifdef _MSC_VER #pragma warning (disable: 4996) // 'This function or variable may be unsafe': strcpy, strdup, sprintf, vsnprintf, sscanf, fopen #endif #if defined(__clang__) #pragma clang diagnostic ignored "-Wold-style-cast" // warning : use of old-style cast // yes, they are more terse. #pragma clang diagnostic ignored "-Wdeprecated-declarations" // warning : 'xx' is deprecated: The POSIX name for this item.. // for strdup used in demo code (so user can copy & paste the code) #pragma clang diagnostic ignored "-Wint-to-void-pointer-cast" // warning : cast to 'void *' from smaller integer type 'int' #pragma clang diagnostic ignored "-Wformat-security" // warning : warning: format string is not a string literal #pragma clang diagnostic ignored "-Wexit-time-destructors" // warning : declaration requires an exit-time destructor // exit-time destruction order is undefined. if MemFree() leads to users code that has been disabled before exit it might cause problems. ImGui coding style welcomes static/globals. #pragma clang diagnostic ignored "-Wunused-macros" // warning : warning: macro is not used // we define snprintf/vsnprintf on Windows so they are available, but not always used. #if __has_warning("-Wzero-as-null-pointer-constant") #pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant" // warning : zero as null pointer constant // some standard header variations use #define NULL 0 #endif #if __has_warning("-Wdouble-promotion") #pragma clang diagnostic ignored "-Wdouble-promotion" // warning: implicit conversion from 'float' to 'double' when passing argument to function // using printf() is a misery with this as C++ va_arg ellipsis changes float to double. #endif #if __has_warning("-Wreserved-id-macro") #pragma clang diagnostic ignored "-Wreserved-id-macro" // warning : macro name is a reserved identifier // #endif #elif defined(__GNUC__) #pragma GCC diagnostic ignored "-Wpragmas" // warning: unknown option after '#pragma GCC diagnostic' kind #pragma GCC diagnostic ignored "-Wint-to-pointer-cast" // warning: cast to pointer from integer of different size #pragma GCC diagnostic ignored "-Wformat-security" // warning : format string is not a string literal (potentially insecure) #pragma GCC diagnostic ignored "-Wdouble-promotion" // warning: implicit conversion from 'float' to 'double' when passing argument to function #pragma GCC diagnostic ignored "-Wconversion" // warning: conversion to 'xxxx' from 'xxxx' may alter its value #pragma GCC diagnostic ignored "-Wmisleading-indentation" // [__GNUC__ >= 6] warning: this 'if' clause does not guard this statement // GCC 6.0+ only. See #883 on GitHub. #endif // Play it nice with Windows users (Update: since 2018-05, Notepad finally appears to support Unix-style carriage returns!) #ifdef _WIN32 #define IM_NEWLINE "\r\n" #else #define IM_NEWLINE "\n" #endif #if defined(_MSC_VER) && !defined(snprintf) #define snprintf _snprintf #endif #if defined(_MSC_VER) && !defined(vsnprintf) #define vsnprintf _vsnprintf #endif //----------------------------------------------------------------------------- // [SECTION] Forward Declarations, Helpers //----------------------------------------------------------------------------- #if !defined(IMGUI_DISABLE_DEMO_WINDOWS) // Forward Declarations static void ShowExampleAppDocuments(bool* p_open); static void ShowExampleAppMainMenuBar(); static void ShowExampleAppConsole(bool* p_open); static void ShowExampleAppLog(bool* p_open); static void ShowExampleAppLayout(bool* p_open); static void ShowExampleAppPropertyEditor(bool* p_open); static void ShowExampleAppLongText(bool* p_open); static void ShowExampleAppAutoResize(bool* p_open); static void ShowExampleAppConstrainedResize(bool* p_open); static void ShowExampleAppSimpleOverlay(bool* p_open); static void ShowExampleAppWindowTitles(bool* p_open); static void ShowExampleAppCustomRendering(bool* p_open); static void ShowExampleMenuFile(); // Helper to display a little (?) mark which shows a tooltip when hovered. // In your own code you may want to display an actual icon if you are using a merged icon fonts (see docs/FONTS.txt) static void HelpMarker(const char* desc) { ImGui::TextDisabled("(?)"); if (ImGui::IsItemHovered()) { ImGui::BeginTooltip(); ImGui::PushTextWrapPos(ImGui::GetFontSize() * 35.0f); ImGui::TextUnformatted(desc); ImGui::PopTextWrapPos(); ImGui::EndTooltip(); } } // Helper to display basic user controls. void ImGui::ShowUserGuide() { ImGuiIO& io = ImGui::GetIO(); ImGui::BulletText("Double-click on title bar to collapse window."); ImGui::BulletText("Click and drag on lower corner to resize window\n(double-click to auto fit window to its contents)."); ImGui::BulletText("CTRL+Click on a slider or drag box to input value as text."); ImGui::BulletText("TAB/SHIFT+TAB to cycle through keyboard editable fields."); if (io.FontAllowUserScaling) ImGui::BulletText("CTRL+Mouse Wheel to zoom window contents."); ImGui::BulletText("While inputing text:\n"); ImGui::Indent(); ImGui::BulletText("CTRL+Left/Right to word jump."); ImGui::BulletText("CTRL+A or double-click to select all."); ImGui::BulletText("CTRL+X/C/V to use clipboard cut/copy/paste."); ImGui::BulletText("CTRL+Z,CTRL+Y to undo/redo."); ImGui::BulletText("ESCAPE to revert."); ImGui::BulletText("You can apply arithmetic operators +,*,/ on numerical values.\nUse +- to subtract."); ImGui::Unindent(); ImGui::BulletText("With keyboard navigation enabled:"); ImGui::Indent(); ImGui::BulletText("Arrow keys to navigate."); ImGui::BulletText("Space to activate a widget."); ImGui::BulletText("Return to input text into a widget."); ImGui::BulletText("Escape to deactivate a widget, close popup, exit child window."); ImGui::BulletText("Alt to jump to the menu layer of a window."); ImGui::BulletText("CTRL+Tab to select a window."); ImGui::Unindent(); } //----------------------------------------------------------------------------- // [SECTION] Demo Window / ShowDemoWindow() //----------------------------------------------------------------------------- // - ShowDemoWindowWidgets() // - ShowDemoWindowLayout() // - ShowDemoWindowPopups() // - ShowDemoWindowColumns() // - ShowDemoWindowMisc() //----------------------------------------------------------------------------- // We split the contents of the big ShowDemoWindow() function into smaller functions (because the link time of very large functions grow non-linearly) static void ShowDemoWindowWidgets(); static void ShowDemoWindowLayout(); static void ShowDemoWindowPopups(); static void ShowDemoWindowColumns(); static void ShowDemoWindowMisc(); // Demonstrate most Dear ImGui features (this is big function!) // You may execute this function to experiment with the UI and understand what it does. You may then search for keywords in the code when you are interested by a specific feature. void ImGui::ShowDemoWindow(bool* p_open) { IM_ASSERT(ImGui::GetCurrentContext() != NULL && "Missing dear imgui context. Refer to examples app!"); // Exceptionally add an extra assert here for people confused with initial dear imgui setup // Examples Apps (accessible from the "Examples" menu) static bool show_app_documents = false; static bool show_app_main_menu_bar = false; static bool show_app_console = false; static bool show_app_log = false; static bool show_app_layout = false; static bool show_app_property_editor = false; static bool show_app_long_text = false; static bool show_app_auto_resize = false; static bool show_app_constrained_resize = false; static bool show_app_simple_overlay = false; static bool show_app_window_titles = false; static bool show_app_custom_rendering = false; if (show_app_documents) ShowExampleAppDocuments(&show_app_documents); if (show_app_main_menu_bar) ShowExampleAppMainMenuBar(); if (show_app_console) ShowExampleAppConsole(&show_app_console); if (show_app_log) ShowExampleAppLog(&show_app_log); if (show_app_layout) ShowExampleAppLayout(&show_app_layout); if (show_app_property_editor) ShowExampleAppPropertyEditor(&show_app_property_editor); if (show_app_long_text) ShowExampleAppLongText(&show_app_long_text); if (show_app_auto_resize) ShowExampleAppAutoResize(&show_app_auto_resize); if (show_app_constrained_resize) ShowExampleAppConstrainedResize(&show_app_constrained_resize); if (show_app_simple_overlay) ShowExampleAppSimpleOverlay(&show_app_simple_overlay); if (show_app_window_titles) ShowExampleAppWindowTitles(&show_app_window_titles); if (show_app_custom_rendering) ShowExampleAppCustomRendering(&show_app_custom_rendering); // Dear ImGui Apps (accessible from the "Tools" menu) static bool show_app_metrics = false; static bool show_app_style_editor = false; static bool show_app_about = false; if (show_app_metrics) { ImGui::ShowMetricsWindow(&show_app_metrics); } if (show_app_style_editor) { ImGui::Begin("Style Editor", &show_app_style_editor); ImGui::ShowStyleEditor(); ImGui::End(); } if (show_app_about) { ImGui::ShowAboutWindow(&show_app_about); } // Demonstrate the various window flags. Typically you would just use the default! static bool no_titlebar = false; static bool no_scrollbar = false; static bool no_menu = false; static bool no_move = false; static bool no_resize = false; static bool no_collapse = false; static bool no_close = false; static bool no_nav = false; static bool no_background = false; static bool no_bring_to_front = false; ImGuiWindowFlags window_flags = 0; if (no_titlebar) window_flags |= ImGuiWindowFlags_NoTitleBar; if (no_scrollbar) window_flags |= ImGuiWindowFlags_NoScrollbar; if (!no_menu) window_flags |= ImGuiWindowFlags_MenuBar; if (no_move) window_flags |= ImGuiWindowFlags_NoMove; if (no_resize) window_flags |= ImGuiWindowFlags_NoResize; if (no_collapse) window_flags |= ImGuiWindowFlags_NoCollapse; if (no_nav) window_flags |= ImGuiWindowFlags_NoNav; if (no_background) window_flags |= ImGuiWindowFlags_NoBackground; if (no_bring_to_front) window_flags |= ImGuiWindowFlags_NoBringToFrontOnFocus; if (no_close) p_open = NULL; // Don't pass our bool* to Begin // We specify a default position/size in case there's no data in the .ini file. Typically this isn't required! We only do it to make the Demo applications a little more welcoming. ImGui::SetNextWindowPos(ImVec2(650, 20), ImGuiCond_FirstUseEver); ImGui::SetNextWindowSize(ImVec2(550, 680), ImGuiCond_FirstUseEver); // Main body of the Demo window starts here. if (!ImGui::Begin("Dear ImGui Demo", p_open, window_flags)) { // Early out if the window is collapsed, as an optimization. ImGui::End(); return; } // Most "big" widgets share a common width settings by default. //ImGui::PushItemWidth(ImGui::GetWindowWidth() * 0.65f); // Use 2/3 of the space for widgets and 1/3 for labels (default) ImGui::PushItemWidth(ImGui::GetFontSize() * -12); // Use fixed width for labels (by passing a negative value), the rest goes to widgets. We choose a width proportional to our font size. // Menu Bar if (ImGui::BeginMenuBar()) { if (ImGui::BeginMenu("Menu")) { ShowExampleMenuFile(); ImGui::EndMenu(); } if (ImGui::BeginMenu("Examples")) { ImGui::MenuItem("Main menu bar", NULL, &show_app_main_menu_bar); ImGui::MenuItem("Console", NULL, &show_app_console); ImGui::MenuItem("Log", NULL, &show_app_log); ImGui::MenuItem("Simple layout", NULL, &show_app_layout); ImGui::MenuItem("Property editor", NULL, &show_app_property_editor); ImGui::MenuItem("Long text display", NULL, &show_app_long_text); ImGui::MenuItem("Auto-resizing window", NULL, &show_app_auto_resize); ImGui::MenuItem("Constrained-resizing window", NULL, &show_app_constrained_resize); ImGui::MenuItem("Simple overlay", NULL, &show_app_simple_overlay); ImGui::MenuItem("Manipulating window titles", NULL, &show_app_window_titles); ImGui::MenuItem("Custom rendering", NULL, &show_app_custom_rendering); ImGui::MenuItem("Documents", NULL, &show_app_documents); ImGui::EndMenu(); } if (ImGui::BeginMenu("Tools")) { ImGui::MenuItem("Metrics", NULL, &show_app_metrics); ImGui::MenuItem("Style Editor", NULL, &show_app_style_editor); ImGui::MenuItem("About Dear ImGui", NULL, &show_app_about); ImGui::EndMenu(); } ImGui::EndMenuBar(); } ImGui::Text("dear imgui says hello. (%s)", IMGUI_VERSION); ImGui::Spacing(); if (ImGui::CollapsingHeader("Help")) { ImGui::Text("ABOUT THIS DEMO:"); ImGui::BulletText("Sections below are demonstrating many aspects of the library."); ImGui::BulletText("The \"Examples\" menu above leads to more demo contents."); ImGui::BulletText("The \"Tools\" menu above gives access to: About Box, Style Editor,\n" "and Metrics (general purpose Dear ImGui debugging tool)."); ImGui::Separator(); ImGui::Text("PROGRAMMER GUIDE:"); ImGui::BulletText("See the ShowDemoWindow() code in imgui_demo.cpp. <- you are here!"); ImGui::BulletText("See comments in imgui.cpp."); ImGui::BulletText("See example applications in the examples/ folder."); ImGui::BulletText("Read the FAQ at http://www.dearimgui.org/faq/"); ImGui::BulletText("Set 'io.ConfigFlags |= NavEnableKeyboard' for keyboard controls."); ImGui::BulletText("Set 'io.ConfigFlags |= NavEnableGamepad' for gamepad controls."); ImGui::Separator(); ImGui::Text("USER GUIDE:"); ImGui::ShowUserGuide(); } if (ImGui::CollapsingHeader("Configuration")) { ImGuiIO& io = ImGui::GetIO(); if (ImGui::TreeNode("Configuration##2")) { ImGui::CheckboxFlags("io.ConfigFlags: NavEnableKeyboard", (unsigned int *)&io.ConfigFlags, ImGuiConfigFlags_NavEnableKeyboard); ImGui::CheckboxFlags("io.ConfigFlags: NavEnableGamepad", (unsigned int *)&io.ConfigFlags, ImGuiConfigFlags_NavEnableGamepad); ImGui::SameLine(); HelpMarker("Required back-end to feed in gamepad inputs in io.NavInputs[] and set io.BackendFlags |= ImGuiBackendFlags_HasGamepad.\n\nRead instructions in imgui.cpp for details."); ImGui::CheckboxFlags("io.ConfigFlags: NavEnableSetMousePos", (unsigned int *)&io.ConfigFlags, ImGuiConfigFlags_NavEnableSetMousePos); ImGui::SameLine(); HelpMarker("Instruct navigation to move the mouse cursor. See comment for ImGuiConfigFlags_NavEnableSetMousePos."); ImGui::CheckboxFlags("io.ConfigFlags: NoMouse", (unsigned int *)&io.ConfigFlags, ImGuiConfigFlags_NoMouse); if (io.ConfigFlags & ImGuiConfigFlags_NoMouse) // Create a way to restore this flag otherwise we could be stuck completely! { if (fmodf((float)ImGui::GetTime(), 0.40f) < 0.20f) { ImGui::SameLine(); ImGui::Text("<<PRESS SPACE TO DISABLE>>"); } if (ImGui::IsKeyPressed(ImGui::GetKeyIndex(ImGuiKey_Space))) io.ConfigFlags &= ~ImGuiConfigFlags_NoMouse; } ImGui::CheckboxFlags("io.ConfigFlags: NoMouseCursorChange", (unsigned int *)&io.ConfigFlags, ImGuiConfigFlags_NoMouseCursorChange); ImGui::SameLine(); HelpMarker("Instruct back-end to not alter mouse cursor shape and visibility."); ImGui::Checkbox("io.ConfigInputTextCursorBlink", &io.ConfigInputTextCursorBlink); ImGui::SameLine(); HelpMarker("Set to false to disable blinking cursor, for users who consider it distracting"); ImGui::Checkbox("io.ConfigWindowsResizeFromEdges", &io.ConfigWindowsResizeFromEdges); ImGui::SameLine(); HelpMarker("Enable resizing of windows from their edges and from the lower-left corner.\nThis requires (io.BackendFlags & ImGuiBackendFlags_HasMouseCursors) because it needs mouse cursor feedback."); ImGui::Checkbox("io.ConfigWindowsMoveFromTitleBarOnly", &io.ConfigWindowsMoveFromTitleBarOnly); ImGui::Checkbox("io.MouseDrawCursor", &io.MouseDrawCursor); ImGui::SameLine(); HelpMarker("Instruct Dear ImGui to render a mouse cursor for you. Note that a mouse cursor rendered via your application GPU rendering path will feel more laggy than hardware cursor, but will be more in sync with your other visuals.\n\nSome desktop applications may use both kinds of cursors (e.g. enable software cursor only when resizing/dragging something)."); ImGui::TreePop(); ImGui::Separator(); } if (ImGui::TreeNode("Backend Flags")) { HelpMarker("Those flags are set by the back-ends (imgui_impl_xxx files) to specify their capabilities.\nHere we expose then as read-only fields to avoid breaking interactions with your back-end."); ImGuiBackendFlags backend_flags = io.BackendFlags; // Make a local copy to avoid modifying actual back-end flags. ImGui::CheckboxFlags("io.BackendFlags: HasGamepad", (unsigned int *)&backend_flags, ImGuiBackendFlags_HasGamepad); ImGui::CheckboxFlags("io.BackendFlags: HasMouseCursors", (unsigned int *)&backend_flags, ImGuiBackendFlags_HasMouseCursors); ImGui::CheckboxFlags("io.BackendFlags: HasSetMousePos", (unsigned int *)&backend_flags, ImGuiBackendFlags_HasSetMousePos); ImGui::CheckboxFlags("io.BackendFlags: RendererHasVtxOffset", (unsigned int *)&backend_flags, ImGuiBackendFlags_RendererHasVtxOffset); ImGui::TreePop(); ImGui::Separator(); } if (ImGui::TreeNode("Style")) { HelpMarker("The same contents can be accessed in 'Tools->Style Editor' or by calling the ShowStyleEditor() function."); ImGui::ShowStyleEditor(); ImGui::TreePop(); ImGui::Separator(); } if (ImGui::TreeNode("Capture/Logging")) { ImGui::TextWrapped("The logging API redirects all text output so you can easily capture the content of a window or a block. Tree nodes can be automatically expanded."); HelpMarker("Try opening any of the contents below in this window and then click one of the \"Log To\" button."); ImGui::LogButtons(); ImGui::TextWrapped("You can also call ImGui::LogText() to output directly to the log without a visual output."); if (ImGui::Button("Copy \"Hello, world!\" to clipboard")) { ImGui::LogToClipboard(); ImGui::LogText("Hello, world!"); ImGui::LogFinish(); } ImGui::TreePop(); } } if (ImGui::CollapsingHeader("Window options")) { ImGui::Checkbox("No titlebar", &no_titlebar); ImGui::SameLine(150); ImGui::Checkbox("No scrollbar", &no_scrollbar); ImGui::SameLine(300); ImGui::Checkbox("No menu", &no_menu); ImGui::Checkbox("No move", &no_move); ImGui::SameLine(150); ImGui::Checkbox("No resize", &no_resize); ImGui::SameLine(300); ImGui::Checkbox("No collapse", &no_collapse); ImGui::Checkbox("No close", &no_close); ImGui::SameLine(150); ImGui::Checkbox("No nav", &no_nav); ImGui::SameLine(300); ImGui::Checkbox("No background", &no_background); ImGui::Checkbox("No bring to front", &no_bring_to_front); } // All demo contents ShowDemoWindowWidgets(); ShowDemoWindowLayout(); ShowDemoWindowPopups(); ShowDemoWindowColumns(); ShowDemoWindowMisc(); // End of ShowDemoWindow() ImGui::End(); } static void ShowDemoWindowWidgets() { if (!ImGui::CollapsingHeader("Widgets")) return; if (ImGui::TreeNode("Basic")) { static int clicked = 0; if (ImGui::Button("Button")) clicked++; if (clicked & 1) { ImGui::SameLine(); ImGui::Text("Thanks for clicking me!"); } static bool check = true; ImGui::Checkbox("checkbox", &check); static int e = 0; ImGui::RadioButton("radio a", &e, 0); ImGui::SameLine(); ImGui::RadioButton("radio b", &e, 1); ImGui::SameLine(); ImGui::RadioButton("radio c", &e, 2); // Color buttons, demonstrate using PushID() to add unique identifier in the ID stack, and changing style. for (int i = 0; i < 7; i++) { if (i > 0) ImGui::SameLine(); ImGui::PushID(i); ImGui::PushStyleColor(ImGuiCol_Button, (ImVec4)ImColor::HSV(i/7.0f, 0.6f, 0.6f)); ImGui::PushStyleColor(ImGuiCol_ButtonHovered, (ImVec4)ImColor::HSV(i/7.0f, 0.7f, 0.7f)); ImGui::PushStyleColor(ImGuiCol_ButtonActive, (ImVec4)ImColor::HSV(i/7.0f, 0.8f, 0.8f)); ImGui::Button("Click"); ImGui::PopStyleColor(3); ImGui::PopID(); } // Use AlignTextToFramePadding() to align text baseline to the baseline of framed elements (otherwise a Text+SameLine+Button sequence will have the text a little too high by default) ImGui::AlignTextToFramePadding(); ImGui::Text("Hold to repeat:"); ImGui::SameLine(); // Arrow buttons with Repeater static int counter = 0; float spacing = ImGui::GetStyle().ItemInnerSpacing.x; ImGui::PushButtonRepeat(true); if (ImGui::ArrowButton("##left", ImGuiDir_Left)) { counter--; } ImGui::SameLine(0.0f, spacing); if (ImGui::ArrowButton("##right", ImGuiDir_Right)) { counter++; } ImGui::PopButtonRepeat(); ImGui::SameLine(); ImGui::Text("%d", counter); ImGui::Text("Hover over me"); if (ImGui::IsItemHovered()) ImGui::SetTooltip("I am a tooltip"); ImGui::SameLine(); ImGui::Text("- or me"); if (ImGui::IsItemHovered()) { ImGui::BeginTooltip(); ImGui::Text("I am a fancy tooltip"); static float arr[] = { 0.6f, 0.1f, 1.0f, 0.5f, 0.92f, 0.1f, 0.2f }; ImGui::PlotLines("Curve", arr, IM_ARRAYSIZE(arr)); ImGui::EndTooltip(); } ImGui::Separator(); ImGui::LabelText("label", "Value"); { // Using the _simplified_ one-liner Combo() api here // See "Combo" section for examples of how to use the more complete BeginCombo()/EndCombo() api. const char* items[] = { "AAAA", "BBBB", "CCCC", "DDDD", "EEEE", "FFFF", "GGGG", "HHHH", "IIII", "JJJJ", "KKKK", "LLLLLLL", "MMMM", "OOOOOOO" }; static int item_current = 0; ImGui::Combo("combo", &item_current, items, IM_ARRAYSIZE(items)); ImGui::SameLine(); HelpMarker("Refer to the \"Combo\" section below for an explanation of the full BeginCombo/EndCombo API, and demonstration of various flags.\n"); } { // To wire InputText() with std::string or any other custom string type, // see the "Text Input > Resize Callback" section of this demo, and the misc/cpp/imgui_stdlib.h file. static char str0[128] = "Hello, world!"; ImGui::InputText("input text", str0, IM_ARRAYSIZE(str0)); ImGui::SameLine(); HelpMarker("USER:\nHold SHIFT or use mouse to select text.\n" "CTRL+Left/Right to word jump.\n" "CTRL+A or double-click to select all.\n" "CTRL+X,CTRL+C,CTRL+V clipboard.\n" "CTRL+Z,CTRL+Y undo/redo.\n" "ESCAPE to revert.\n\nPROGRAMMER:\nYou can use the ImGuiInputTextFlags_CallbackResize facility if you need to wire InputText() to a dynamic string type. See misc/cpp/imgui_stdlib.h for an example (this is not demonstrated in imgui_demo.cpp)."); static char str1[128] = ""; ImGui::InputTextWithHint("input text (w/ hint)", "enter text here", str1, IM_ARRAYSIZE(str1)); static int i0 = 123; ImGui::InputInt("input int", &i0); ImGui::SameLine(); HelpMarker("You can apply arithmetic operators +,*,/ on numerical values.\n e.g. [ 100 ], input \'*2\', result becomes [ 200 ]\nUse +- to subtract.\n"); static float f0 = 0.001f; ImGui::InputFloat("input float", &f0, 0.01f, 1.0f, "%.3f"); static double d0 = 999999.00000001; ImGui::InputDouble("input double", &d0, 0.01f, 1.0f, "%.8f"); static float f1 = 1.e10f; ImGui::InputFloat("input scientific", &f1, 0.0f, 0.0f, "%e"); ImGui::SameLine(); HelpMarker("You can input value using the scientific notation,\n e.g. \"1e+8\" becomes \"100000000\".\n"); static float vec4a[4] = { 0.10f, 0.20f, 0.30f, 0.44f }; ImGui::InputFloat3("input float3", vec4a); } { static int i1 = 50, i2 = 42; ImGui::DragInt("drag int", &i1, 1); ImGui::SameLine(); HelpMarker("Click and drag to edit value.\nHold SHIFT/ALT for faster/slower edit.\nDouble-click or CTRL+click to input value."); ImGui::DragInt("drag int 0..100", &i2, 1, 0, 100, "%d%%"); static float f1=1.00f, f2=0.0067f; ImGui::DragFloat("drag float", &f1, 0.005f); ImGui::DragFloat("drag small float", &f2, 0.0001f, 0.0f, 0.0f, "%.06f ns"); } { static int i1=0; ImGui::SliderInt("slider int", &i1, -1, 3); ImGui::SameLine(); HelpMarker("CTRL+click to input value."); static float f1=0.123f, f2=0.0f; ImGui::SliderFloat("slider float", &f1, 0.0f, 1.0f, "ratio = %.3f"); ImGui::SliderFloat("slider float (curve)", &f2, -10.0f, 10.0f, "%.4f", 2.0f); static float angle = 0.0f; ImGui::SliderAngle("slider angle", &angle); // Using the format string to display a name instead of an integer. // Here we completely omit '%d' from the format string, so it'll only display a name. // This technique can also be used with DragInt(). enum Element { Element_Fire, Element_Earth, Element_Air, Element_Water, Element_COUNT }; const char* element_names[Element_COUNT] = { "Fire", "Earth", "Air", "Water" }; static int current_element = Element_Fire; const char* current_element_name = (current_element >= 0 && current_element < Element_COUNT) ? element_names[current_element] : "Unknown"; ImGui::SliderInt("slider enum", &current_element, 0, Element_COUNT - 1, current_element_name); ImGui::SameLine(); HelpMarker("Using the format string parameter to display a name instead of the underlying integer."); } { static float col1[3] = { 1.0f,0.0f,0.2f }; static float col2[4] = { 0.4f,0.7f,0.0f,0.5f }; ImGui::ColorEdit3("color 1", col1); ImGui::SameLine(); HelpMarker("Click on the colored square to open a color picker.\nClick and hold to use drag and drop.\nRight-click on the colored square to show options.\nCTRL+click on individual component to input value.\n"); ImGui::ColorEdit4("color 2", col2); } { // List box const char* listbox_items[] = { "Apple", "Banana", "Cherry", "Kiwi", "Mango", "Orange", "Pineapple", "Strawberry", "Watermelon" }; static int listbox_item_current = 1; ImGui::ListBox("listbox\n(single select)", &listbox_item_current, listbox_items, IM_ARRAYSIZE(listbox_items), 4); //static int listbox_item_current2 = 2; //ImGui::SetNextItemWidth(-1); //ImGui::ListBox("##listbox2", &listbox_item_current2, listbox_items, IM_ARRAYSIZE(listbox_items), 4); } ImGui::TreePop(); } // Testing ImGuiOnceUponAFrame helper. //static ImGuiOnceUponAFrame once; //for (int i = 0; i < 5; i++) // if (once) // ImGui::Text("This will be displayed only once."); if (ImGui::TreeNode("Trees")) { if (ImGui::TreeNode("Basic trees")) { for (int i = 0; i < 5; i++) { // Use SetNextItemOpen() so set the default state of a node to be open. // We could also use TreeNodeEx() with the ImGuiTreeNodeFlags_DefaultOpen flag to achieve the same thing! if (i == 0) ImGui::SetNextItemOpen(true, ImGuiCond_Once); if (ImGui::TreeNode((void*)(intptr_t)i, "Child %d", i)) { ImGui::Text("blah blah"); ImGui::SameLine(); if (ImGui::SmallButton("button")) {} ImGui::TreePop(); } } ImGui::TreePop(); } if (ImGui::TreeNode("Advanced, with Selectable nodes")) { HelpMarker("This is a more typical looking tree with selectable nodes.\nClick to select, CTRL+Click to toggle, click on arrows or double-click to open."); static ImGuiTreeNodeFlags base_flags = ImGuiTreeNodeFlags_OpenOnArrow | ImGuiTreeNodeFlags_OpenOnDoubleClick | ImGuiTreeNodeFlags_SpanAvailWidth; static bool align_label_with_current_x_position = false; ImGui::CheckboxFlags("ImGuiTreeNodeFlags_OpenOnArrow", (unsigned int*)&base_flags, ImGuiTreeNodeFlags_OpenOnArrow); ImGui::CheckboxFlags("ImGuiTreeNodeFlags_OpenOnDoubleClick", (unsigned int*)&base_flags, ImGuiTreeNodeFlags_OpenOnDoubleClick); ImGui::CheckboxFlags("ImGuiTreeNodeFlags_SpanAvailWidth", (unsigned int*)&base_flags, ImGuiTreeNodeFlags_SpanAvailWidth); ImGui::CheckboxFlags("ImGuiTreeNodeFlags_SpanFullWidth", (unsigned int*)&base_flags, ImGuiTreeNodeFlags_SpanFullWidth); ImGui::Checkbox("Align label with current X position)", &align_label_with_current_x_position); ImGui::Text("Hello!"); if (align_label_with_current_x_position) ImGui::Unindent(ImGui::GetTreeNodeToLabelSpacing()); static int selection_mask = (1 << 2); // Dumb representation of what may be user-side selection state. You may carry selection state inside or outside your objects in whatever format you see fit. int node_clicked = -1; // Temporary storage of what node we have clicked to process selection at the end of the loop. May be a pointer to your own node type, etc. for (int i = 0; i < 6; i++) { // Disable the default open on single-click behavior and pass in Selected flag according to our selection state. ImGuiTreeNodeFlags node_flags = base_flags; const bool is_selected = (selection_mask & (1 << i)) != 0; if (is_selected) node_flags |= ImGuiTreeNodeFlags_Selected; if (i < 3) { // Items 0..2 are Tree Node bool node_open = ImGui::TreeNodeEx((void*)(intptr_t)i, node_flags, "Selectable Node %d", i); if (ImGui::IsItemClicked()) node_clicked = i; if (node_open) { ImGui::BulletText("Blah blah\nBlah Blah"); ImGui::TreePop(); } } else { // Items 3..5 are Tree Leaves // The only reason we use TreeNode at all is to allow selection of the leaf. // Otherwise we can use BulletText() or advance the cursor by GetTreeNodeToLabelSpacing() and call Text(). node_flags |= ImGuiTreeNodeFlags_Leaf | ImGuiTreeNodeFlags_NoTreePushOnOpen; // ImGuiTreeNodeFlags_Bullet ImGui::TreeNodeEx((void*)(intptr_t)i, node_flags, "Selectable Leaf %d", i); if (ImGui::IsItemClicked()) node_clicked = i; } } if (node_clicked != -1) { // Update selection state. Process outside of tree loop to avoid visual inconsistencies during the clicking-frame. if (ImGui::GetIO().KeyCtrl) selection_mask ^= (1 << node_clicked); // CTRL+click to toggle else //if (!(selection_mask & (1 << node_clicked))) // Depending on selection behavior you want, this commented bit preserve selection when clicking on item that is part of the selection selection_mask = (1 << node_clicked); // Click to single-select } if (align_label_with_current_x_position) ImGui::Indent(ImGui::GetTreeNodeToLabelSpacing()); ImGui::TreePop(); } ImGui::TreePop(); } if (ImGui::TreeNode("Collapsing Headers")) { static bool closable_group = true; ImGui::Checkbox("Show 2nd header", &closable_group); if (ImGui::CollapsingHeader("Header", ImGuiTreeNodeFlags_None)) { ImGui::Text("IsItemHovered: %d", ImGui::IsItemHovered()); for (int i = 0; i < 5; i++) ImGui::Text("Some content %d", i); } if (ImGui::CollapsingHeader("Header with a close button", &closable_group)) { ImGui::Text("IsItemHovered: %d", ImGui::IsItemHovered()); for (int i = 0; i < 5; i++) ImGui::Text("More content %d", i); } /* if (ImGui::CollapsingHeader("Header with a bullet", ImGuiTreeNodeFlags_Bullet)) ImGui::Text("IsItemHovered: %d", ImGui::IsItemHovered()); */ ImGui::TreePop(); } if (ImGui::TreeNode("Bullets")) { ImGui::BulletText("Bullet point 1"); ImGui::BulletText("Bullet point 2\nOn multiple lines"); if (ImGui::TreeNode("Tree node")) { ImGui::BulletText("Another bullet point"); ImGui::TreePop(); } ImGui::Bullet(); ImGui::Text("Bullet point 3 (two calls)"); ImGui::Bullet(); ImGui::SmallButton("Button"); ImGui::TreePop(); } if (ImGui::TreeNode("Text")) { if (ImGui::TreeNode("Colored Text")) { // Using shortcut. You can use PushStyleColor()/PopStyleColor() for more flexibility. ImGui::TextColored(ImVec4(1.0f,0.0f,1.0f,1.0f), "Pink"); ImGui::TextColored(ImVec4(1.0f,1.0f,0.0f,1.0f), "Yellow"); ImGui::TextDisabled("Disabled"); ImGui::SameLine(); HelpMarker("The TextDisabled color is stored in ImGuiStyle."); ImGui::TreePop(); } if (ImGui::TreeNode("Word Wrapping")) { // Using shortcut. You can use PushTextWrapPos()/PopTextWrapPos() for more flexibility. ImGui::TextWrapped("This text should automatically wrap on the edge of the window. The current implementation for text wrapping follows simple rules suitable for English and possibly other languages."); ImGui::Spacing(); static float wrap_width = 200.0f; ImGui::SliderFloat("Wrap width", &wrap_width, -20, 600, "%.0f"); ImGui::Text("Test paragraph 1:"); ImVec2 pos = ImGui::GetCursorScreenPos(); ImGui::GetWindowDrawList()->AddRectFilled(ImVec2(pos.x + wrap_width, pos.y), ImVec2(pos.x + wrap_width + 10, pos.y + ImGui::GetTextLineHeight()), IM_COL32(255,0,255,255)); ImGui::PushTextWrapPos(ImGui::GetCursorPos().x + wrap_width); ImGui::Text("The lazy dog is a good dog. This paragraph is made to fit within %.0f pixels. Testing a 1 character word. The quick brown fox jumps over the lazy dog.", wrap_width); ImGui::GetWindowDrawList()->AddRect(ImGui::GetItemRectMin(), ImGui::GetItemRectMax(), IM_COL32(255,255,0,255)); ImGui::PopTextWrapPos(); ImGui::Text("Test paragraph 2:"); pos = ImGui::GetCursorScreenPos(); ImGui::GetWindowDrawList()->AddRectFilled(ImVec2(pos.x + wrap_width, pos.y), ImVec2(pos.x + wrap_width + 10, pos.y + ImGui::GetTextLineHeight()), IM_COL32(255,0,255,255)); ImGui::PushTextWrapPos(ImGui::GetCursorPos().x + wrap_width); ImGui::Text("aaaaaaaa bbbbbbbb, c cccccccc,dddddddd. d eeeeeeee ffffffff. gggggggg!hhhhhhhh"); ImGui::GetWindowDrawList()->AddRect(ImGui::GetItemRectMin(), ImGui::GetItemRectMax(), IM_COL32(255,255,0,255)); ImGui::PopTextWrapPos(); ImGui::TreePop(); } if (ImGui::TreeNode("UTF-8 Text")) { // UTF-8 test with Japanese characters // (Needs a suitable font, try Noto, or Arial Unicode, or M+ fonts. Read docs/FONTS.txt for details.) // - From C++11 you can use the u8"my text" syntax to encode literal strings as UTF-8 // - For earlier compiler, you may be able to encode your sources as UTF-8 (e.g. Visual Studio save your file as 'UTF-8 without signature') // - FOR THIS DEMO FILE ONLY, BECAUSE WE WANT TO SUPPORT OLD COMPILERS, WE ARE *NOT* INCLUDING RAW UTF-8 CHARACTERS IN THIS SOURCE FILE. // Instead we are encoding a few strings with hexadecimal constants. Don't do this in your application! // Please use u8"text in any language" in your application! // Note that characters values are preserved even by InputText() if the font cannot be displayed, so you can safely copy & paste garbled characters into another application. ImGui::TextWrapped("CJK text will only appears if the font was loaded with the appropriate CJK character ranges. Call io.Font->AddFontFromFileTTF() manually to load extra character ranges. Read docs/FONTS.txt for details."); ImGui::Text("Hiragana: \xe3\x81\x8b\xe3\x81\x8d\xe3\x81\x8f\xe3\x81\x91\xe3\x81\x93 (kakikukeko)"); // Normally we would use u8"blah blah" with the proper characters directly in the string. ImGui::Text("Kanjis: \xe6\x97\xa5\xe6\x9c\xac\xe8\xaa\x9e (nihongo)"); static char buf[32] = "\xe6\x97\xa5\xe6\x9c\xac\xe8\xaa\x9e"; //static char buf[32] = u8"NIHONGO"; // <- this is how you would write it with C++11, using real kanjis ImGui::InputText("UTF-8 input", buf, IM_ARRAYSIZE(buf)); ImGui::TreePop(); } ImGui::TreePop(); } if (ImGui::TreeNode("Images")) { ImGuiIO& io = ImGui::GetIO(); ImGui::TextWrapped("Below we are displaying the font texture (which is the only texture we have access to in this demo). Use the 'ImTextureID' type as storage to pass pointers or identifier to your own texture data. Hover the texture for a zoomed view!"); // Here we are grabbing the font texture because that's the only one we have access to inside the demo code. // Remember that ImTextureID is just storage for whatever you want it to be, it is essentially a value that will be passed to the render function inside the ImDrawCmd structure. // If you use one of the default imgui_impl_XXXX.cpp renderer, they all have comments at the top of their file to specify what they expect to be stored in ImTextureID. // (for example, the imgui_impl_dx11.cpp renderer expect a 'ID3D11ShaderResourceView*' pointer. The imgui_impl_opengl3.cpp renderer expect a GLuint OpenGL texture identifier etc.) // If you decided that ImTextureID = MyEngineTexture*, then you can pass your MyEngineTexture* pointers to ImGui::Image(), and gather width/height through your own functions, etc. // Using ShowMetricsWindow() as a "debugger" to inspect the draw data that are being passed to your render will help you debug issues if you are confused about this. // Consider using the lower-level ImDrawList::AddImage() API, via ImGui::GetWindowDrawList()->AddImage(). ImTextureID my_tex_id = io.Fonts->TexID; float my_tex_w = (float)io.Fonts->TexWidth; float my_tex_h = (float)io.Fonts->TexHeight; ImGui::Text("%.0fx%.0f", my_tex_w, my_tex_h); ImVec2 pos = ImGui::GetCursorScreenPos(); ImGui::Image(my_tex_id, ImVec2(my_tex_w, my_tex_h), ImVec2(0,0), ImVec2(1,1), ImVec4(1.0f,1.0f,1.0f,1.0f), ImVec4(1.0f,1.0f,1.0f,0.5f)); if (ImGui::IsItemHovered()) { ImGui::BeginTooltip(); float region_sz = 32.0f; float region_x = io.MousePos.x - pos.x - region_sz * 0.5f; if (region_x < 0.0f) region_x = 0.0f; else if (region_x > my_tex_w - region_sz) region_x = my_tex_w - region_sz; float region_y = io.MousePos.y - pos.y - region_sz * 0.5f; if (region_y < 0.0f) region_y = 0.0f; else if (region_y > my_tex_h - region_sz) region_y = my_tex_h - region_sz; float zoom = 4.0f; ImGui::Text("Min: (%.2f, %.2f)", region_x, region_y); ImGui::Text("Max: (%.2f, %.2f)", region_x + region_sz, region_y + region_sz); ImVec2 uv0 = ImVec2((region_x) / my_tex_w, (region_y) / my_tex_h); ImVec2 uv1 = ImVec2((region_x + region_sz) / my_tex_w, (region_y + region_sz) / my_tex_h); ImGui::Image(my_tex_id, ImVec2(region_sz * zoom, region_sz * zoom), uv0, uv1, ImVec4(1.0f, 1.0f, 1.0f, 1.0f), ImVec4(1.0f, 1.0f, 1.0f, 0.5f)); ImGui::EndTooltip(); } ImGui::TextWrapped("And now some textured buttons.."); static int pressed_count = 0; for (int i = 0; i < 8; i++) { ImGui::PushID(i); int frame_padding = -1 + i; // -1 = uses default padding if (ImGui::ImageButton(my_tex_id, ImVec2(32,32), ImVec2(0,0), ImVec2(32.0f/my_tex_w,32/my_tex_h), frame_padding, ImVec4(0.0f,0.0f,0.0f,1.0f))) pressed_count += 1; ImGui::PopID(); ImGui::SameLine(); } ImGui::NewLine(); ImGui::Text("Pressed %d times.", pressed_count); ImGui::TreePop(); } if (ImGui::TreeNode("Combo")) { // Expose flags as checkbox for the demo static ImGuiComboFlags flags = 0; ImGui::CheckboxFlags("ImGuiComboFlags_PopupAlignLeft", (unsigned int*)&flags, ImGuiComboFlags_PopupAlignLeft); ImGui::SameLine(); HelpMarker("Only makes a difference if the popup is larger than the combo"); if (ImGui::CheckboxFlags("ImGuiComboFlags_NoArrowButton", (unsigned int*)&flags, ImGuiComboFlags_NoArrowButton)) flags &= ~ImGuiComboFlags_NoPreview; // Clear the other flag, as we cannot combine both if (ImGui::CheckboxFlags("ImGuiComboFlags_NoPreview", (unsigned int*)&flags, ImGuiComboFlags_NoPreview)) flags &= ~ImGuiComboFlags_NoArrowButton; // Clear the other flag, as we cannot combine both // General BeginCombo() API, you have full control over your selection data and display type. // (your selection data could be an index, a pointer to the object, an id for the object, a flag stored in the object itself, etc.) const char* items[] = { "AAAA", "BBBB", "CCCC", "DDDD", "EEEE", "FFFF", "GGGG", "HHHH", "IIII", "JJJJ", "KKKK", "LLLLLLL", "MMMM", "OOOOOOO" }; static const char* item_current = items[0]; // Here our selection is a single pointer stored outside the object. if (ImGui::BeginCombo("combo 1", item_current, flags)) // The second parameter is the label previewed before opening the combo. { for (int n = 0; n < IM_ARRAYSIZE(items); n++) { bool is_selected = (item_current == items[n]); if (ImGui::Selectable(items[n], is_selected)) item_current = items[n]; if (is_selected) ImGui::SetItemDefaultFocus(); // Set the initial focus when opening the combo (scrolling + for keyboard navigation support in the upcoming navigation branch) } ImGui::EndCombo(); } // Simplified one-liner Combo() API, using values packed in a single constant string static int item_current_2 = 0; ImGui::Combo("combo 2 (one-liner)", &item_current_2, "aaaa\0bbbb\0cccc\0dddd\0eeee\0\0"); // Simplified one-liner Combo() using an array of const char* static int item_current_3 = -1; // If the selection isn't within 0..count, Combo won't display a preview ImGui::Combo("combo 3 (array)", &item_current_3, items, IM_ARRAYSIZE(items)); // Simplified one-liner Combo() using an accessor function struct FuncHolder { static bool ItemGetter(void* data, int idx, const char** out_str) { *out_str = ((const char**)data)[idx]; return true; } }; static int item_current_4 = 0; ImGui::Combo("combo 4 (function)", &item_current_4, &FuncHolder::ItemGetter, items, IM_ARRAYSIZE(items)); ImGui::TreePop(); } if (ImGui::TreeNode("Selectables")) { // Selectable() has 2 overloads: // - The one taking "bool selected" as a read-only selection information. When Selectable() has been clicked is returns true and you can alter selection state accordingly. // - The one taking "bool* p_selected" as a read-write selection information (convenient in some cases) // The earlier is more flexible, as in real application your selection may be stored in a different manner (in flags within objects, as an external list, etc). if (ImGui::TreeNode("Basic")) { static bool selection[5] = { false, true, false, false, false }; ImGui::Selectable("1. I am selectable", &selection[0]); ImGui::Selectable("2. I am selectable", &selection[1]); ImGui::Text("3. I am not selectable"); ImGui::Selectable("4. I am selectable", &selection[3]); if (ImGui::Selectable("5. I am double clickable", selection[4], ImGuiSelectableFlags_AllowDoubleClick)) if (ImGui::IsMouseDoubleClicked(0)) selection[4] = !selection[4]; ImGui::TreePop(); } if (ImGui::TreeNode("Selection State: Single Selection")) { static int selected = -1; for (int n = 0; n < 5; n++) { char buf[32]; sprintf(buf, "Object %d", n); if (ImGui::Selectable(buf, selected == n)) selected = n; } ImGui::TreePop(); } if (ImGui::TreeNode("Selection State: Multiple Selection")) { HelpMarker("Hold CTRL and click to select multiple items."); static bool selection[5] = { false, false, false, false, false }; for (int n = 0; n < 5; n++) { char buf[32]; sprintf(buf, "Object %d", n); if (ImGui::Selectable(buf, selection[n])) { if (!ImGui::GetIO().KeyCtrl) // Clear selection when CTRL is not held memset(selection, 0, sizeof(selection)); selection[n] ^= 1; } } ImGui::TreePop(); } if (ImGui::TreeNode("Rendering more text into the same line")) { // Using the Selectable() override that takes "bool* p_selected" parameter and toggle your booleans automatically. static bool selected[3] = { false, false, false }; ImGui::Selectable("main.c", &selected[0]); ImGui::SameLine(300); ImGui::Text(" 2,345 bytes"); ImGui::Selectable("Hello.cpp", &selected[1]); ImGui::SameLine(300); ImGui::Text("12,345 bytes"); ImGui::Selectable("Hello.h", &selected[2]); ImGui::SameLine(300); ImGui::Text(" 2,345 bytes"); ImGui::TreePop(); } if (ImGui::TreeNode("In columns")) { ImGui::Columns(3, NULL, false); static bool selected[16] = {}; for (int i = 0; i < 16; i++) { char label[32]; sprintf(label, "Item %d", i); if (ImGui::Selectable(label, &selected[i])) {} ImGui::NextColumn(); } ImGui::Columns(1); ImGui::TreePop(); } if (ImGui::TreeNode("Grid")) { static bool selected[4*4] = { true, false, false, false, false, true, false, false, false, false, true, false, false, false, false, true }; for (int i = 0; i < 4*4; i++) { ImGui::PushID(i); if (ImGui::Selectable("Sailor", &selected[i], 0, ImVec2(50,50))) { // Note: We _unnecessarily_ test for both x/y and i here only to silence some static analyzer. The second part of each test is unnecessary. int x = i % 4; int y = i / 4; if (x > 0) { selected[i - 1] ^= 1; } if (x < 3 && i < 15) { selected[i + 1] ^= 1; } if (y > 0 && i > 3) { selected[i - 4] ^= 1; } if (y < 3 && i < 12) { selected[i + 4] ^= 1; } } if ((i % 4) < 3) ImGui::SameLine(); ImGui::PopID(); } ImGui::TreePop(); } if (ImGui::TreeNode("Alignment")) { HelpMarker("Alignment applies when a selectable is larger than its text content.\nBy default, Selectables uses style.SelectableTextAlign but it can be overriden on a per-item basis using PushStyleVar()."); static bool selected[3*3] = { true, false, true, false, true, false, true, false, true }; for (int y = 0; y < 3; y++) { for (int x = 0; x < 3; x++) { ImVec2 alignment = ImVec2((float)x / 2.0f, (float)y / 2.0f); char name[32]; sprintf(name, "(%.1f,%.1f)", alignment.x, alignment.y); if (x > 0) ImGui::SameLine(); ImGui::PushStyleVar(ImGuiStyleVar_SelectableTextAlign, alignment); ImGui::Selectable(name, &selected[3*y+x], ImGuiSelectableFlags_None, ImVec2(80,80)); ImGui::PopStyleVar(); } } ImGui::TreePop(); } ImGui::TreePop(); } // To wire InputText() with std::string or any other custom string type, // see the "Text Input > Resize Callback" section of this demo, and the misc/cpp/imgui_stdlib.h file. if (ImGui::TreeNode("Text Input")) { if (ImGui::TreeNode("Multi-line Text Input")) { // Note: we are using a fixed-sized buffer for simplicity here. See ImGuiInputTextFlags_CallbackResize // and the code in misc/cpp/imgui_stdlib.h for how to setup InputText() for dynamically resizing strings. static char text[1024 * 16] = "/*\n" " The Pentium F00F bug, shorthand for F0 0F C7 C8,\n" " the hexadecimal encoding of one offending instruction,\n" " more formally, the invalid operand with locked CMPXCHG8B\n" " instruction bug, is a design flaw in the majority of\n" " Intel Pentium, Pentium MMX, and Pentium OverDrive\n" " processors (all in the P5 microarchitecture).\n" "*/\n\n" "label:\n" "\tlock cmpxchg8b eax\n"; static ImGuiInputTextFlags flags = ImGuiInputTextFlags_AllowTabInput; HelpMarker("You can use the ImGuiInputTextFlags_CallbackResize facility if you need to wire InputTextMultiline() to a dynamic string type. See misc/cpp/imgui_stdlib.h for an example. (This is not demonstrated in imgui_demo.cpp because we don't want to include <string> in here)"); ImGui::CheckboxFlags("ImGuiInputTextFlags_ReadOnly", (unsigned int*)&flags, ImGuiInputTextFlags_ReadOnly); ImGui::CheckboxFlags("ImGuiInputTextFlags_AllowTabInput", (unsigned int*)&flags, ImGuiInputTextFlags_AllowTabInput); ImGui::CheckboxFlags("ImGuiInputTextFlags_CtrlEnterForNewLine", (unsigned int*)&flags, ImGuiInputTextFlags_CtrlEnterForNewLine); ImGui::InputTextMultiline("##source", text, IM_ARRAYSIZE(text), ImVec2(-FLT_MIN, ImGui::GetTextLineHeight() * 16), flags); ImGui::TreePop(); } if (ImGui::TreeNode("Filtered Text Input")) { static char buf1[64] = ""; ImGui::InputText("default", buf1, 64); static char buf2[64] = ""; ImGui::InputText("decimal", buf2, 64, ImGuiInputTextFlags_CharsDecimal); static char buf3[64] = ""; ImGui::InputText("hexadecimal", buf3, 64, ImGuiInputTextFlags_CharsHexadecimal | ImGuiInputTextFlags_CharsUppercase); static char buf4[64] = ""; ImGui::InputText("uppercase", buf4, 64, ImGuiInputTextFlags_CharsUppercase); static char buf5[64] = ""; ImGui::InputText("no blank", buf5, 64, ImGuiInputTextFlags_CharsNoBlank); struct TextFilters { static int FilterImGuiLetters(ImGuiInputTextCallbackData* data) { if (data->EventChar < 256 && strchr("imgui", (char)data->EventChar)) return 0; return 1; } }; static char buf6[64] = ""; ImGui::InputText("\"imgui\" letters", buf6, 64, ImGuiInputTextFlags_CallbackCharFilter, TextFilters::FilterImGuiLetters); ImGui::Text("Password input"); static char password[64] = "password123"; ImGui::InputText("password", password, IM_ARRAYSIZE(password), ImGuiInputTextFlags_Password); ImGui::SameLine(); HelpMarker("Display all characters as '*'.\nDisable clipboard cut and copy.\nDisable logging.\n"); ImGui::InputTextWithHint("password (w/ hint)", "<password>", password, IM_ARRAYSIZE(password), ImGuiInputTextFlags_Password); ImGui::InputText("password (clear)", password, IM_ARRAYSIZE(password)); ImGui::TreePop(); } if (ImGui::TreeNode("Resize Callback")) { // To wire InputText() with std::string or any other custom string type, // you can use the ImGuiInputTextFlags_CallbackResize flag + create a custom ImGui::InputText() wrapper using your prefered type. // See misc/cpp/imgui_stdlib.h for an implementation of this using std::string. HelpMarker("Demonstrate using ImGuiInputTextFlags_CallbackResize to wire your resizable string type to InputText().\n\nSee misc/cpp/imgui_stdlib.h for an implementation of this for std::string."); struct Funcs { static int MyResizeCallback(ImGuiInputTextCallbackData* data) { if (data->EventFlag == ImGuiInputTextFlags_CallbackResize) { ImVector<char>* my_str = (ImVector<char>*)data->UserData; IM_ASSERT(my_str->begin() == data->Buf); my_str->resize(data->BufSize); // NB: On resizing calls, generally data->BufSize == data->BufTextLen + 1 data->Buf = my_str->begin(); } return 0; } // Tip: Because ImGui:: is a namespace you would typicall add your own function into the namespace in your own source files. // For example, you may add a function called ImGui::InputText(const char* label, MyString* my_str). static bool MyInputTextMultiline(const char* label, ImVector<char>* my_str, const ImVec2& size = ImVec2(0, 0), ImGuiInputTextFlags flags = 0) { IM_ASSERT((flags & ImGuiInputTextFlags_CallbackResize) == 0); return ImGui::InputTextMultiline(label, my_str->begin(), (size_t)my_str->size(), size, flags | ImGuiInputTextFlags_CallbackResize, Funcs::MyResizeCallback, (void*)my_str); } }; // For this demo we are using ImVector as a string container. // Note that because we need to store a terminating zero character, our size/capacity are 1 more than usually reported by a typical string class. static ImVector<char> my_str; if (my_str.empty()) my_str.push_back(0); Funcs::MyInputTextMultiline("##MyStr", &my_str, ImVec2(-FLT_MIN, ImGui::GetTextLineHeight() * 16)); ImGui::Text("Data: %p\nSize: %d\nCapacity: %d", (void*)my_str.begin(), my_str.size(), my_str.capacity()); ImGui::TreePop(); } ImGui::TreePop(); } // Plot/Graph widgets are currently fairly limited. // Consider writing your own plotting widget, or using a third-party one (see "Wiki->Useful Widgets", or github.com/ocornut/imgui/issues/2747) if (ImGui::TreeNode("Plots Widgets")) { static bool animate = true; ImGui::Checkbox("Animate", &animate); static float arr[] = { 0.6f, 0.1f, 1.0f, 0.5f, 0.92f, 0.1f, 0.2f }; ImGui::PlotLines("Frame Times", arr, IM_ARRAYSIZE(arr)); // Create a dummy array of contiguous float values to plot // Tip: If your float aren't contiguous but part of a structure, you can pass a pointer to your first float and the sizeof() of your structure in the Stride parameter. static float values[90] = {}; static int values_offset = 0; static double refresh_time = 0.0; if (!animate || refresh_time == 0.0) refresh_time = ImGui::GetTime(); while (refresh_time < ImGui::GetTime()) // Create dummy data at fixed 60 hz rate for the demo { static float phase = 0.0f; values[values_offset] = cosf(phase); values_offset = (values_offset+1) % IM_ARRAYSIZE(values); phase += 0.10f*values_offset; refresh_time += 1.0f/60.0f; } // Plots can display overlay texts // (in this example, we will display an average value) { float average = 0.0f; for (int n = 0; n < IM_ARRAYSIZE(values); n++) average += values[n]; average /= (float)IM_ARRAYSIZE(values); char overlay[32]; sprintf(overlay, "avg %f", average); ImGui::PlotLines("Lines", values, IM_ARRAYSIZE(values), values_offset, overlay, -1.0f, 1.0f, ImVec2(0,80)); } ImGui::PlotHistogram("Histogram", arr, IM_ARRAYSIZE(arr), 0, NULL, 0.0f, 1.0f, ImVec2(0,80)); // Use functions to generate output // FIXME: This is rather awkward because current plot API only pass in indices. We probably want an API passing floats and user provide sample rate/count. struct Funcs { static float Sin(void*, int i) { return sinf(i * 0.1f); } static float Saw(void*, int i) { return (i & 1) ? 1.0f : -1.0f; } }; static int func_type = 0, display_count = 70; ImGui::Separator(); ImGui::SetNextItemWidth(100); ImGui::Combo("func", &func_type, "Sin\0Saw\0"); ImGui::SameLine(); ImGui::SliderInt("Sample count", &display_count, 1, 400); float (*func)(void*, int) = (func_type == 0) ? Funcs::Sin : Funcs::Saw; ImGui::PlotLines("Lines", func, NULL, display_count, 0, NULL, -1.0f, 1.0f, ImVec2(0,80)); ImGui::PlotHistogram("Histogram", func, NULL, display_count, 0, NULL, -1.0f, 1.0f, ImVec2(0,80)); ImGui::Separator(); // Animate a simple progress bar static float progress = 0.0f, progress_dir = 1.0f; if (animate) { progress += progress_dir * 0.4f * ImGui::GetIO().DeltaTime; if (progress >= +1.1f) { progress = +1.1f; progress_dir *= -1.0f; } if (progress <= -0.1f) { progress = -0.1f; progress_dir *= -1.0f; } } // Typically we would use ImVec2(-1.0f,0.0f) or ImVec2(-FLT_MIN,0.0f) to use all available width, // or ImVec2(width,0.0f) for a specified width. ImVec2(0.0f,0.0f) uses ItemWidth. ImGui::ProgressBar(progress, ImVec2(0.0f,0.0f)); ImGui::SameLine(0.0f, ImGui::GetStyle().ItemInnerSpacing.x); ImGui::Text("Progress Bar"); float progress_saturated = (progress < 0.0f) ? 0.0f : (progress > 1.0f) ? 1.0f : progress; char buf[32]; sprintf(buf, "%d/%d", (int)(progress_saturated*1753), 1753); ImGui::ProgressBar(progress, ImVec2(0.f,0.f), buf); ImGui::TreePop(); } if (ImGui::TreeNode("Color/Picker Widgets")) { static ImVec4 color = ImVec4(114.0f/255.0f, 144.0f/255.0f, 154.0f/255.0f, 200.0f/255.0f); static bool alpha_preview = true; static bool alpha_half_preview = false; static bool drag_and_drop = true; static bool options_menu = true; static bool hdr = false; ImGui::Checkbox("With Alpha Preview", &alpha_preview); ImGui::Checkbox("With Half Alpha Preview", &alpha_half_preview); ImGui::Checkbox("With Drag and Drop", &drag_and_drop); ImGui::Checkbox("With Options Menu", &options_menu); ImGui::SameLine(); HelpMarker("Right-click on the individual color widget to show options."); ImGui::Checkbox("With HDR", &hdr); ImGui::SameLine(); HelpMarker("Currently all this does is to lift the 0..1 limits on dragging widgets."); ImGuiColorEditFlags misc_flags = (hdr ? ImGuiColorEditFlags_HDR : 0) | (drag_and_drop ? 0 : ImGuiColorEditFlags_NoDragDrop) | (alpha_half_preview ? ImGuiColorEditFlags_AlphaPreviewHalf : (alpha_preview ? ImGuiColorEditFlags_AlphaPreview : 0)) | (options_menu ? 0 : ImGuiColorEditFlags_NoOptions); ImGui::Text("Color widget:"); ImGui::SameLine(); HelpMarker("Click on the colored square to open a color picker.\nCTRL+click on individual component to input value.\n"); ImGui::ColorEdit3("MyColor##1", (float*)&color, misc_flags); ImGui::Text("Color widget HSV with Alpha:"); ImGui::ColorEdit4("MyColor##2", (float*)&color, ImGuiColorEditFlags_DisplayHSV | misc_flags); ImGui::Text("Color widget with Float Display:"); ImGui::ColorEdit4("MyColor##2f", (float*)&color, ImGuiColorEditFlags_Float | misc_flags); ImGui::Text("Color button with Picker:"); ImGui::SameLine(); HelpMarker("With the ImGuiColorEditFlags_NoInputs flag you can hide all the slider/text inputs.\nWith the ImGuiColorEditFlags_NoLabel flag you can pass a non-empty label which will only be used for the tooltip and picker popup."); ImGui::ColorEdit4("MyColor##3", (float*)&color, ImGuiColorEditFlags_NoInputs | ImGuiColorEditFlags_NoLabel | misc_flags); ImGui::Text("Color button with Custom Picker Popup:"); // Generate a dummy default palette. The palette will persist and can be edited. static bool saved_palette_init = true; static ImVec4 saved_palette[32] = {}; if (saved_palette_init) { for (int n = 0; n < IM_ARRAYSIZE(saved_palette); n++) { ImGui::ColorConvertHSVtoRGB(n / 31.0f, 0.8f, 0.8f, saved_palette[n].x, saved_palette[n].y, saved_palette[n].z); saved_palette[n].w = 1.0f; // Alpha } saved_palette_init = false; } static ImVec4 backup_color; bool open_popup = ImGui::ColorButton("MyColor##3b", color, misc_flags); ImGui::SameLine(0, ImGui::GetStyle().ItemInnerSpacing.x); open_popup |= ImGui::Button("Palette"); if (open_popup) { ImGui::OpenPopup("mypicker"); backup_color = color; } if (ImGui::BeginPopup("mypicker")) { ImGui::Text("MY CUSTOM COLOR PICKER WITH AN AMAZING PALETTE!"); ImGui::Separator(); ImGui::ColorPicker4("##picker", (float*)&color, misc_flags | ImGuiColorEditFlags_NoSidePreview | ImGuiColorEditFlags_NoSmallPreview); ImGui::SameLine(); ImGui::BeginGroup(); // Lock X position ImGui::Text("Current"); ImGui::ColorButton("##current", color, ImGuiColorEditFlags_NoPicker | ImGuiColorEditFlags_AlphaPreviewHalf, ImVec2(60,40)); ImGui::Text("Previous"); if (ImGui::ColorButton("##previous", backup_color, ImGuiColorEditFlags_NoPicker | ImGuiColorEditFlags_AlphaPreviewHalf, ImVec2(60,40))) color = backup_color; ImGui::Separator(); ImGui::Text("Palette"); for (int n = 0; n < IM_ARRAYSIZE(saved_palette); n++) { ImGui::PushID(n); if ((n % 8) != 0) ImGui::SameLine(0.0f, ImGui::GetStyle().ItemSpacing.y); if (ImGui::ColorButton("##palette", saved_palette[n], ImGuiColorEditFlags_NoAlpha | ImGuiColorEditFlags_NoPicker | ImGuiColorEditFlags_NoTooltip, ImVec2(20,20))) color = ImVec4(saved_palette[n].x, saved_palette[n].y, saved_palette[n].z, color.w); // Preserve alpha! // Allow user to drop colors into each palette entry // (Note that ColorButton is already a drag source by default, unless using ImGuiColorEditFlags_NoDragDrop) if (ImGui::BeginDragDropTarget()) { if (const ImGuiPayload* payload = ImGui::AcceptDragDropPayload(IMGUI_PAYLOAD_TYPE_COLOR_3F)) memcpy((float*)&saved_palette[n], payload->Data, sizeof(float) * 3); if (const ImGuiPayload* payload = ImGui::AcceptDragDropPayload(IMGUI_PAYLOAD_TYPE_COLOR_4F)) memcpy((float*)&saved_palette[n], payload->Data, sizeof(float) * 4); ImGui::EndDragDropTarget(); } ImGui::PopID(); } ImGui::EndGroup(); ImGui::EndPopup(); } ImGui::Text("Color button only:"); static bool no_border = false; ImGui::Checkbox("ImGuiColorEditFlags_NoBorder", &no_border); ImGui::ColorButton("MyColor##3c", *(ImVec4*)&color, misc_flags | (no_border ? ImGuiColorEditFlags_NoBorder : 0), ImVec2(80,80)); ImGui::Text("Color picker:"); static bool alpha = true; static bool alpha_bar = true; static bool side_preview = true; static bool ref_color = false; static ImVec4 ref_color_v(1.0f,0.0f,1.0f,0.5f); static int display_mode = 0; static int picker_mode = 0; ImGui::Checkbox("With Alpha", &alpha); ImGui::Checkbox("With Alpha Bar", &alpha_bar); ImGui::Checkbox("With Side Preview", &side_preview); if (side_preview) { ImGui::SameLine(); ImGui::Checkbox("With Ref Color", &ref_color); if (ref_color) { ImGui::SameLine(); ImGui::ColorEdit4("##RefColor", &ref_color_v.x, ImGuiColorEditFlags_NoInputs | misc_flags); } } ImGui::Combo("Display Mode", &display_mode, "Auto/Current\0None\0RGB Only\0HSV Only\0Hex Only\0"); ImGui::SameLine(); HelpMarker("ColorEdit defaults to displaying RGB inputs if you don't specify a display mode, but the user can change it with a right-click.\n\nColorPicker defaults to displaying RGB+HSV+Hex if you don't specify a display mode.\n\nYou can change the defaults using SetColorEditOptions()."); ImGui::Combo("Picker Mode", &picker_mode, "Auto/Current\0Hue bar + SV rect\0Hue wheel + SV triangle\0"); ImGui::SameLine(); HelpMarker("User can right-click the picker to change mode."); ImGuiColorEditFlags flags = misc_flags; if (!alpha) flags |= ImGuiColorEditFlags_NoAlpha; // This is by default if you call ColorPicker3() instead of ColorPicker4() if (alpha_bar) flags |= ImGuiColorEditFlags_AlphaBar; if (!side_preview) flags |= ImGuiColorEditFlags_NoSidePreview; if (picker_mode == 1) flags |= ImGuiColorEditFlags_PickerHueBar; if (picker_mode == 2) flags |= ImGuiColorEditFlags_PickerHueWheel; if (display_mode == 1) flags |= ImGuiColorEditFlags_NoInputs; // Disable all RGB/HSV/Hex displays if (display_mode == 2) flags |= ImGuiColorEditFlags_DisplayRGB; // Override display mode if (display_mode == 3) flags |= ImGuiColorEditFlags_DisplayHSV; if (display_mode == 4) flags |= ImGuiColorEditFlags_DisplayHex; ImGui::ColorPicker4("MyColor##4", (float*)&color, flags, ref_color ? &ref_color_v.x : NULL); ImGui::Text("Programmatically set defaults:"); ImGui::SameLine(); HelpMarker("SetColorEditOptions() is designed to allow you to set boot-time default.\nWe don't have Push/Pop functions because you can force options on a per-widget basis if needed, and the user can change non-forced ones with the options menu.\nWe don't have a getter to avoid encouraging you to persistently save values that aren't forward-compatible."); if (ImGui::Button("Default: Uint8 + HSV + Hue Bar")) ImGui::SetColorEditOptions(ImGuiColorEditFlags_Uint8 | ImGuiColorEditFlags_DisplayHSV | ImGuiColorEditFlags_PickerHueBar); if (ImGui::Button("Default: Float + HDR + Hue Wheel")) ImGui::SetColorEditOptions(ImGuiColorEditFlags_Float | ImGuiColorEditFlags_HDR | ImGuiColorEditFlags_PickerHueWheel); // HSV encoded support (to avoid RGB<>HSV round trips and singularities when S==0 or V==0) static ImVec4 color_stored_as_hsv(0.23f, 1.0f, 1.0f, 1.0f); ImGui::Spacing(); ImGui::Text("HSV encoded colors"); ImGui::SameLine(); HelpMarker("By default, colors are given to ColorEdit and ColorPicker in RGB, but ImGuiColorEditFlags_InputHSV allows you to store colors as HSV and pass them to ColorEdit and ColorPicker as HSV. This comes with the added benefit that you can manipulate hue values with the picker even when saturation or value are zero."); ImGui::Text("Color widget with InputHSV:"); ImGui::ColorEdit4("HSV shown as RGB##1", (float*)&color_stored_as_hsv, ImGuiColorEditFlags_DisplayRGB | ImGuiColorEditFlags_InputHSV | ImGuiColorEditFlags_Float); ImGui::ColorEdit4("HSV shown as HSV##1", (float*)&color_stored_as_hsv, ImGuiColorEditFlags_DisplayHSV | ImGuiColorEditFlags_InputHSV | ImGuiColorEditFlags_Float); ImGui::DragFloat4("Raw HSV values", (float*)&color_stored_as_hsv, 0.01f, 0.0f, 1.0f); ImGui::TreePop(); } if (ImGui::TreeNode("Range Widgets")) { static float begin = 10, end = 90; static int begin_i = 100, end_i = 1000; ImGui::DragFloatRange2("range", &begin, &end, 0.25f, 0.0f, 100.0f, "Min: %.1f %%", "Max: %.1f %%"); ImGui::DragIntRange2("range int (no bounds)", &begin_i, &end_i, 5, 0, 0, "Min: %d units", "Max: %d units"); ImGui::TreePop(); } if (ImGui::TreeNode("Data Types")) { // The DragScalar/InputScalar/SliderScalar functions allow various data types: signed/unsigned int/long long and float/double // To avoid polluting the public API with all possible combinations, we use the ImGuiDataType enum to pass the type, // and passing all arguments by address. // This is the reason the test code below creates local variables to hold "zero" "one" etc. for each types. // In practice, if you frequently use a given type that is not covered by the normal API entry points, you can wrap it // yourself inside a 1 line function which can take typed argument as value instead of void*, and then pass their address // to the generic function. For example: // bool MySliderU64(const char *label, u64* value, u64 min = 0, u64 max = 0, const char* format = "%lld") // { // return SliderScalar(label, ImGuiDataType_U64, value, &min, &max, format); // } // Limits (as helper variables that we can take the address of) // Note that the SliderScalar function has a maximum usable range of half the natural type maximum, hence the /2 below. #ifndef LLONG_MIN ImS64 LLONG_MIN = -9223372036854775807LL - 1; ImS64 LLONG_MAX = 9223372036854775807LL; ImU64 ULLONG_MAX = (2ULL * 9223372036854775807LL + 1); #endif const char s8_zero = 0, s8_one = 1, s8_fifty = 50, s8_min = -128, s8_max = 127; const ImU8 u8_zero = 0, u8_one = 1, u8_fifty = 50, u8_min = 0, u8_max = 255; const short s16_zero = 0, s16_one = 1, s16_fifty = 50, s16_min = -32768, s16_max = 32767; const ImU16 u16_zero = 0, u16_one = 1, u16_fifty = 50, u16_min = 0, u16_max = 65535; const ImS32 s32_zero = 0, s32_one = 1, s32_fifty = 50, s32_min = INT_MIN/2, s32_max = INT_MAX/2, s32_hi_a = INT_MAX/2 - 100, s32_hi_b = INT_MAX/2; const ImU32 u32_zero = 0, u32_one = 1, u32_fifty = 50, u32_min = 0, u32_max = UINT_MAX/2, u32_hi_a = UINT_MAX/2 - 100, u32_hi_b = UINT_MAX/2; const ImS64 s64_zero = 0, s64_one = 1, s64_fifty = 50, s64_min = LLONG_MIN/2, s64_max = LLONG_MAX/2, s64_hi_a = LLONG_MAX/2 - 100, s64_hi_b = LLONG_MAX/2; const ImU64 u64_zero = 0, u64_one = 1, u64_fifty = 50, u64_min = 0, u64_max = ULLONG_MAX/2, u64_hi_a = ULLONG_MAX/2 - 100, u64_hi_b = ULLONG_MAX/2; const float f32_zero = 0.f, f32_one = 1.f, f32_lo_a = -10000000000.0f, f32_hi_a = +10000000000.0f; const double f64_zero = 0., f64_one = 1., f64_lo_a = -1000000000000000.0, f64_hi_a = +1000000000000000.0; // State static char s8_v = 127; static ImU8 u8_v = 255; static short s16_v = 32767; static ImU16 u16_v = 65535; static ImS32 s32_v = -1; static ImU32 u32_v = (ImU32)-1; static ImS64 s64_v = -1; static ImU64 u64_v = (ImU64)-1; static float f32_v = 0.123f; static double f64_v = 90000.01234567890123456789; const float drag_speed = 0.2f; static bool drag_clamp = false; ImGui::Text("Drags:"); ImGui::Checkbox("Clamp integers to 0..50", &drag_clamp); ImGui::SameLine(); HelpMarker("As with every widgets in dear imgui, we never modify values unless there is a user interaction.\nYou can override the clamping limits by using CTRL+Click to input a value."); ImGui::DragScalar("drag s8", ImGuiDataType_S8, &s8_v, drag_speed, drag_clamp ? &s8_zero : NULL, drag_clamp ? &s8_fifty : NULL); ImGui::DragScalar("drag u8", ImGuiDataType_U8, &u8_v, drag_speed, drag_clamp ? &u8_zero : NULL, drag_clamp ? &u8_fifty : NULL, "%u ms"); ImGui::DragScalar("drag s16", ImGuiDataType_S16, &s16_v, drag_speed, drag_clamp ? &s16_zero : NULL, drag_clamp ? &s16_fifty : NULL); ImGui::DragScalar("drag u16", ImGuiDataType_U16, &u16_v, drag_speed, drag_clamp ? &u16_zero : NULL, drag_clamp ? &u16_fifty : NULL, "%u ms"); ImGui::DragScalar("drag s32", ImGuiDataType_S32, &s32_v, drag_speed, drag_clamp ? &s32_zero : NULL, drag_clamp ? &s32_fifty : NULL); ImGui::DragScalar("drag u32", ImGuiDataType_U32, &u32_v, drag_speed, drag_clamp ? &u32_zero : NULL, drag_clamp ? &u32_fifty : NULL, "%u ms"); ImGui::DragScalar("drag s64", ImGuiDataType_S64, &s64_v, drag_speed, drag_clamp ? &s64_zero : NULL, drag_clamp ? &s64_fifty : NULL); ImGui::DragScalar("drag u64", ImGuiDataType_U64, &u64_v, drag_speed, drag_clamp ? &u64_zero : NULL, drag_clamp ? &u64_fifty : NULL); ImGui::DragScalar("drag float", ImGuiDataType_Float, &f32_v, 0.005f, &f32_zero, &f32_one, "%f", 1.0f); ImGui::DragScalar("drag float ^2", ImGuiDataType_Float, &f32_v, 0.005f, &f32_zero, &f32_one, "%f", 2.0f); ImGui::SameLine(); HelpMarker("You can use the 'power' parameter to increase tweaking precision on one side of the range."); ImGui::DragScalar("drag double", ImGuiDataType_Double, &f64_v, 0.0005f, &f64_zero, NULL, "%.10f grams", 1.0f); ImGui::DragScalar("drag double ^2", ImGuiDataType_Double, &f64_v, 0.0005f, &f64_zero, &f64_one, "0 < %.10f < 1", 2.0f); ImGui::Text("Sliders"); ImGui::SliderScalar("slider s8 full", ImGuiDataType_S8, &s8_v, &s8_min, &s8_max, "%d"); ImGui::SliderScalar("slider u8 full", ImGuiDataType_U8, &u8_v, &u8_min, &u8_max, "%u"); ImGui::SliderScalar("slider s16 full", ImGuiDataType_S16, &s16_v, &s16_min, &s16_max, "%d"); ImGui::SliderScalar("slider u16 full", ImGuiDataType_U16, &u16_v, &u16_min, &u16_max, "%u"); ImGui::SliderScalar("slider s32 low", ImGuiDataType_S32, &s32_v, &s32_zero, &s32_fifty,"%d"); ImGui::SliderScalar("slider s32 high", ImGuiDataType_S32, &s32_v, &s32_hi_a, &s32_hi_b, "%d"); ImGui::SliderScalar("slider s32 full", ImGuiDataType_S32, &s32_v, &s32_min, &s32_max, "%d"); ImGui::SliderScalar("slider u32 low", ImGuiDataType_U32, &u32_v, &u32_zero, &u32_fifty,"%u"); ImGui::SliderScalar("slider u32 high", ImGuiDataType_U32, &u32_v, &u32_hi_a, &u32_hi_b, "%u"); ImGui::SliderScalar("slider u32 full", ImGuiDataType_U32, &u32_v, &u32_min, &u32_max, "%u"); ImGui::SliderScalar("slider s64 low", ImGuiDataType_S64, &s64_v, &s64_zero, &s64_fifty,"%I64d"); ImGui::SliderScalar("slider s64 high", ImGuiDataType_S64, &s64_v, &s64_hi_a, &s64_hi_b, "%I64d"); ImGui::SliderScalar("slider s64 full", ImGuiDataType_S64, &s64_v, &s64_min, &s64_max, "%I64d"); ImGui::SliderScalar("slider u64 low", ImGuiDataType_U64, &u64_v, &u64_zero, &u64_fifty,"%I64u ms"); ImGui::SliderScalar("slider u64 high", ImGuiDataType_U64, &u64_v, &u64_hi_a, &u64_hi_b, "%I64u ms"); ImGui::SliderScalar("slider u64 full", ImGuiDataType_U64, &u64_v, &u64_min, &u64_max, "%I64u ms"); ImGui::SliderScalar("slider float low", ImGuiDataType_Float, &f32_v, &f32_zero, &f32_one); ImGui::SliderScalar("slider float low^2", ImGuiDataType_Float, &f32_v, &f32_zero, &f32_one, "%.10f", 2.0f); ImGui::SliderScalar("slider float high", ImGuiDataType_Float, &f32_v, &f32_lo_a, &f32_hi_a, "%e"); ImGui::SliderScalar("slider double low", ImGuiDataType_Double, &f64_v, &f64_zero, &f64_one, "%.10f grams", 1.0f); ImGui::SliderScalar("slider double low^2",ImGuiDataType_Double, &f64_v, &f64_zero, &f64_one, "%.10f", 2.0f); ImGui::SliderScalar("slider double high", ImGuiDataType_Double, &f64_v, &f64_lo_a, &f64_hi_a, "%e grams", 1.0f); static bool inputs_step = true; ImGui::Text("Inputs"); ImGui::Checkbox("Show step buttons", &inputs_step); ImGui::InputScalar("input s8", ImGuiDataType_S8, &s8_v, inputs_step ? &s8_one : NULL, NULL, "%d"); ImGui::InputScalar("input u8", ImGuiDataType_U8, &u8_v, inputs_step ? &u8_one : NULL, NULL, "%u"); ImGui::InputScalar("input s16", ImGuiDataType_S16, &s16_v, inputs_step ? &s16_one : NULL, NULL, "%d"); ImGui::InputScalar("input u16", ImGuiDataType_U16, &u16_v, inputs_step ? &u16_one : NULL, NULL, "%u"); ImGui::InputScalar("input s32", ImGuiDataType_S32, &s32_v, inputs_step ? &s32_one : NULL, NULL, "%d"); ImGui::InputScalar("input s32 hex", ImGuiDataType_S32, &s32_v, inputs_step ? &s32_one : NULL, NULL, "%08X", ImGuiInputTextFlags_CharsHexadecimal); ImGui::InputScalar("input u32", ImGuiDataType_U32, &u32_v, inputs_step ? &u32_one : NULL, NULL, "%u"); ImGui::InputScalar("input u32 hex", ImGuiDataType_U32, &u32_v, inputs_step ? &u32_one : NULL, NULL, "%08X", ImGuiInputTextFlags_CharsHexadecimal); ImGui::InputScalar("input s64", ImGuiDataType_S64, &s64_v, inputs_step ? &s64_one : NULL); ImGui::InputScalar("input u64", ImGuiDataType_U64, &u64_v, inputs_step ? &u64_one : NULL); ImGui::InputScalar("input float", ImGuiDataType_Float, &f32_v, inputs_step ? &f32_one : NULL); ImGui::InputScalar("input double", ImGuiDataType_Double, &f64_v, inputs_step ? &f64_one : NULL); ImGui::TreePop(); } if (ImGui::TreeNode("Multi-component Widgets")) { static float vec4f[4] = { 0.10f, 0.20f, 0.30f, 0.44f }; static int vec4i[4] = { 1, 5, 100, 255 }; ImGui::InputFloat2("input float2", vec4f); ImGui::DragFloat2("drag float2", vec4f, 0.01f, 0.0f, 1.0f); ImGui::SliderFloat2("slider float2", vec4f, 0.0f, 1.0f); ImGui::InputInt2("input int2", vec4i); ImGui::DragInt2("drag int2", vec4i, 1, 0, 255); ImGui::SliderInt2("slider int2", vec4i, 0, 255); ImGui::Spacing(); ImGui::InputFloat3("input float3", vec4f); ImGui::DragFloat3("drag float3", vec4f, 0.01f, 0.0f, 1.0f); ImGui::SliderFloat3("slider float3", vec4f, 0.0f, 1.0f); ImGui::InputInt3("input int3", vec4i); ImGui::DragInt3("drag int3", vec4i, 1, 0, 255); ImGui::SliderInt3("slider int3", vec4i, 0, 255); ImGui::Spacing(); ImGui::InputFloat4("input float4", vec4f); ImGui::DragFloat4("drag float4", vec4f, 0.01f, 0.0f, 1.0f); ImGui::SliderFloat4("slider float4", vec4f, 0.0f, 1.0f); ImGui::InputInt4("input int4", vec4i); ImGui::DragInt4("drag int4", vec4i, 1, 0, 255); ImGui::SliderInt4("slider int4", vec4i, 0, 255); ImGui::TreePop(); } if (ImGui::TreeNode("Vertical Sliders")) { const float spacing = 4; ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(spacing, spacing)); static int int_value = 0; ImGui::VSliderInt("##int", ImVec2(18,160), &int_value, 0, 5); ImGui::SameLine(); static float values[7] = { 0.0f, 0.60f, 0.35f, 0.9f, 0.70f, 0.20f, 0.0f }; ImGui::PushID("set1"); for (int i = 0; i < 7; i++) { if (i > 0) ImGui::SameLine(); ImGui::PushID(i); ImGui::PushStyleColor(ImGuiCol_FrameBg, (ImVec4)ImColor::HSV(i/7.0f, 0.5f, 0.5f)); ImGui::PushStyleColor(ImGuiCol_FrameBgHovered, (ImVec4)ImColor::HSV(i/7.0f, 0.6f, 0.5f)); ImGui::PushStyleColor(ImGuiCol_FrameBgActive, (ImVec4)ImColor::HSV(i/7.0f, 0.7f, 0.5f)); ImGui::PushStyleColor(ImGuiCol_SliderGrab, (ImVec4)ImColor::HSV(i/7.0f, 0.9f, 0.9f)); ImGui::VSliderFloat("##v", ImVec2(18,160), &values[i], 0.0f, 1.0f, ""); if (ImGui::IsItemActive() || ImGui::IsItemHovered()) ImGui::SetTooltip("%.3f", values[i]); ImGui::PopStyleColor(4); ImGui::PopID(); } ImGui::PopID(); ImGui::SameLine(); ImGui::PushID("set2"); static float values2[4] = { 0.20f, 0.80f, 0.40f, 0.25f }; const int rows = 3; const ImVec2 small_slider_size(18, (float)(int)((160.0f - (rows - 1) * spacing) / rows)); for (int nx = 0; nx < 4; nx++) { if (nx > 0) ImGui::SameLine(); ImGui::BeginGroup(); for (int ny = 0; ny < rows; ny++) { ImGui::PushID(nx*rows+ny); ImGui::VSliderFloat("##v", small_slider_size, &values2[nx], 0.0f, 1.0f, ""); if (ImGui::IsItemActive() || ImGui::IsItemHovered()) ImGui::SetTooltip("%.3f", values2[nx]); ImGui::PopID(); } ImGui::EndGroup(); } ImGui::PopID(); ImGui::SameLine(); ImGui::PushID("set3"); for (int i = 0; i < 4; i++) { if (i > 0) ImGui::SameLine(); ImGui::PushID(i); ImGui::PushStyleVar(ImGuiStyleVar_GrabMinSize, 40); ImGui::VSliderFloat("##v", ImVec2(40,160), &values[i], 0.0f, 1.0f, "%.2f\nsec"); ImGui::PopStyleVar(); ImGui::PopID(); } ImGui::PopID(); ImGui::PopStyleVar(); ImGui::TreePop(); } if (ImGui::TreeNode("Drag and Drop")) { if (ImGui::TreeNode("Drag and drop in standard widgets")) { // ColorEdit widgets automatically act as drag source and drag target. // They are using standardized payload strings IMGUI_PAYLOAD_TYPE_COLOR_3F and IMGUI_PAYLOAD_TYPE_COLOR_4F to allow your own widgets // to use colors in their drag and drop interaction. Also see the demo in Color Picker -> Palette demo. HelpMarker("You can drag from the colored squares."); static float col1[3] = { 1.0f, 0.0f, 0.2f }; static float col2[4] = { 0.4f, 0.7f, 0.0f, 0.5f }; ImGui::ColorEdit3("color 1", col1); ImGui::ColorEdit4("color 2", col2); ImGui::TreePop(); } if (ImGui::TreeNode("Drag and drop to copy/swap items")) { enum Mode { Mode_Copy, Mode_Move, Mode_Swap }; static int mode = 0; if (ImGui::RadioButton("Copy", mode == Mode_Copy)) { mode = Mode_Copy; } ImGui::SameLine(); if (ImGui::RadioButton("Move", mode == Mode_Move)) { mode = Mode_Move; } ImGui::SameLine(); if (ImGui::RadioButton("Swap", mode == Mode_Swap)) { mode = Mode_Swap; } static const char* names[9] = { "Bobby", "Beatrice", "Betty", "Brianna", "Barry", "Bernard", "Bibi", "Blaine", "Bryn" }; for (int n = 0; n < IM_ARRAYSIZE(names); n++) { ImGui::PushID(n); if ((n % 3) != 0) ImGui::SameLine(); ImGui::Button(names[n], ImVec2(60,60)); // Our buttons are both drag sources and drag targets here! if (ImGui::BeginDragDropSource(ImGuiDragDropFlags_None)) { ImGui::SetDragDropPayload("DND_DEMO_CELL", &n, sizeof(int)); // Set payload to carry the index of our item (could be anything) if (mode == Mode_Copy) { ImGui::Text("Copy %s", names[n]); } // Display preview (could be anything, e.g. when dragging an image we could decide to display the filename and a small preview of the image, etc.) if (mode == Mode_Move) { ImGui::Text("Move %s", names[n]); } if (mode == Mode_Swap) { ImGui::Text("Swap %s", names[n]); } ImGui::EndDragDropSource(); } if (ImGui::BeginDragDropTarget()) { if (const ImGuiPayload* payload = ImGui::AcceptDragDropPayload("DND_DEMO_CELL")) { IM_ASSERT(payload->DataSize == sizeof(int)); int payload_n = *(const int*)payload->Data; if (mode == Mode_Copy) { names[n] = names[payload_n]; } if (mode == Mode_Move) { names[n] = names[payload_n]; names[payload_n] = ""; } if (mode == Mode_Swap) { const char* tmp = names[n]; names[n] = names[payload_n]; names[payload_n] = tmp; } } ImGui::EndDragDropTarget(); } ImGui::PopID(); } ImGui::TreePop(); } if (ImGui::TreeNode("Drag to reorder items (simple)")) { // Simple reordering HelpMarker("We don't use the drag and drop api at all here! Instead we query when the item is held but not hovered, and order items accordingly."); static const char* item_names[] = { "Item One", "Item Two", "Item Three", "Item Four", "Item Five" }; for (int n = 0; n < IM_ARRAYSIZE(item_names); n++) { const char* item = item_names[n]; ImGui::Selectable(item); if (ImGui::IsItemActive() && !ImGui::IsItemHovered()) { int n_next = n + (ImGui::GetMouseDragDelta(0).y < 0.f ? -1 : 1); if (n_next >= 0 && n_next < IM_ARRAYSIZE(item_names)) { item_names[n] = item_names[n_next]; item_names[n_next] = item; ImGui::ResetMouseDragDelta(); } } } ImGui::TreePop(); } ImGui::TreePop(); } if (ImGui::TreeNode("Querying Status (Active/Focused/Hovered etc.)")) { // Submit an item (various types available) so we can query their status in the following block. static int item_type = 1; ImGui::Combo("Item Type", &item_type, "Text\0Button\0Button (w/ repeat)\0Checkbox\0SliderFloat\0InputText\0InputFloat\0InputFloat3\0ColorEdit4\0MenuItem\0TreeNode\0TreeNode (w/ double-click)\0ListBox\0", 20); ImGui::SameLine(); HelpMarker("Testing how various types of items are interacting with the IsItemXXX functions."); bool ret = false; static bool b = false; static float col4f[4] = { 1.0f, 0.5, 0.0f, 1.0f }; static char str[16] = {}; if (item_type == 0) { ImGui::Text("ITEM: Text"); } // Testing text items with no identifier/interaction if (item_type == 1) { ret = ImGui::Button("ITEM: Button"); } // Testing button if (item_type == 2) { ImGui::PushButtonRepeat(true); ret = ImGui::Button("ITEM: Button"); ImGui::PopButtonRepeat(); } // Testing button (with repeater) if (item_type == 3) { ret = ImGui::Checkbox("ITEM: Checkbox", &b); } // Testing checkbox if (item_type == 4) { ret = ImGui::SliderFloat("ITEM: SliderFloat", &col4f[0], 0.0f, 1.0f); } // Testing basic item if (item_type == 5) { ret = ImGui::InputText("ITEM: InputText", &str[0], IM_ARRAYSIZE(str)); } // Testing input text (which handles tabbing) if (item_type == 6) { ret = ImGui::InputFloat("ITEM: InputFloat", col4f, 1.0f); } // Testing +/- buttons on scalar input if (item_type == 7) { ret = ImGui::InputFloat3("ITEM: InputFloat3", col4f); } // Testing multi-component items (IsItemXXX flags are reported merged) if (item_type == 8) { ret = ImGui::ColorEdit4("ITEM: ColorEdit4", col4f); } // Testing multi-component items (IsItemXXX flags are reported merged) if (item_type == 9) { ret = ImGui::MenuItem("ITEM: MenuItem"); } // Testing menu item (they use ImGuiButtonFlags_PressedOnRelease button policy) if (item_type == 10){ ret = ImGui::TreeNode("ITEM: TreeNode"); if (ret) ImGui::TreePop(); } // Testing tree node if (item_type == 11){ ret = ImGui::TreeNodeEx("ITEM: TreeNode w/ ImGuiTreeNodeFlags_OpenOnDoubleClick", ImGuiTreeNodeFlags_OpenOnDoubleClick | ImGuiTreeNodeFlags_NoTreePushOnOpen); } // Testing tree node with ImGuiButtonFlags_PressedOnDoubleClick button policy. if (item_type == 12){ const char* items[] = { "Apple", "Banana", "Cherry", "Kiwi" }; static int current = 1; ret = ImGui::ListBox("ITEM: ListBox", &current, items, IM_ARRAYSIZE(items), IM_ARRAYSIZE(items)); } // Display the value of IsItemHovered() and other common item state functions. // Note that the ImGuiHoveredFlags_XXX flags can be combined. // Because BulletText is an item itself and that would affect the output of IsItemXXX functions, // we query every state in a single call to avoid storing them and to simplify the code ImGui::BulletText( "Return value = %d\n" "IsItemFocused() = %d\n" "IsItemHovered() = %d\n" "IsItemHovered(_AllowWhenBlockedByPopup) = %d\n" "IsItemHovered(_AllowWhenBlockedByActiveItem) = %d\n" "IsItemHovered(_AllowWhenOverlapped) = %d\n" "IsItemHovered(_RectOnly) = %d\n" "IsItemActive() = %d\n" "IsItemEdited() = %d\n" "IsItemActivated() = %d\n" "IsItemDeactivated() = %d\n" "IsItemDeactivatedAfterEdit() = %d\n" "IsItemVisible() = %d\n" "IsItemClicked() = %d\n" "IsItemToggledOpen() = %d\n" "GetItemRectMin() = (%.1f, %.1f)\n" "GetItemRectMax() = (%.1f, %.1f)\n" "GetItemRectSize() = (%.1f, %.1f)", ret, ImGui::IsItemFocused(), ImGui::IsItemHovered(), ImGui::IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup), ImGui::IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByActiveItem), ImGui::IsItemHovered(ImGuiHoveredFlags_AllowWhenOverlapped), ImGui::IsItemHovered(ImGuiHoveredFlags_RectOnly), ImGui::IsItemActive(), ImGui::IsItemEdited(), ImGui::IsItemActivated(), ImGui::IsItemDeactivated(), ImGui::IsItemDeactivatedAfterEdit(), ImGui::IsItemVisible(), ImGui::IsItemClicked(), ImGui::IsItemToggledOpen(), ImGui::GetItemRectMin().x, ImGui::GetItemRectMin().y, ImGui::GetItemRectMax().x, ImGui::GetItemRectMax().y, ImGui::GetItemRectSize().x, ImGui::GetItemRectSize().y ); static bool embed_all_inside_a_child_window = false; ImGui::Checkbox("Embed everything inside a child window (for additional testing)", &embed_all_inside_a_child_window); if (embed_all_inside_a_child_window) ImGui::BeginChild("outer_child", ImVec2(0, ImGui::GetFontSize() * 20), true); // Testing IsWindowFocused() function with its various flags. // Note that the ImGuiFocusedFlags_XXX flags can be combined. ImGui::BulletText( "IsWindowFocused() = %d\n" "IsWindowFocused(_ChildWindows) = %d\n" "IsWindowFocused(_ChildWindows|_RootWindow) = %d\n" "IsWindowFocused(_RootWindow) = %d\n" "IsWindowFocused(_AnyWindow) = %d\n", ImGui::IsWindowFocused(), ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows), ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows | ImGuiFocusedFlags_RootWindow), ImGui::IsWindowFocused(ImGuiFocusedFlags_RootWindow), ImGui::IsWindowFocused(ImGuiFocusedFlags_AnyWindow)); // Testing IsWindowHovered() function with its various flags. // Note that the ImGuiHoveredFlags_XXX flags can be combined. ImGui::BulletText( "IsWindowHovered() = %d\n" "IsWindowHovered(_AllowWhenBlockedByPopup) = %d\n" "IsWindowHovered(_AllowWhenBlockedByActiveItem) = %d\n" "IsWindowHovered(_ChildWindows) = %d\n" "IsWindowHovered(_ChildWindows|_RootWindow) = %d\n" "IsWindowHovered(_ChildWindows|_AllowWhenBlockedByPopup) = %d\n" "IsWindowHovered(_RootWindow) = %d\n" "IsWindowHovered(_AnyWindow) = %d\n", ImGui::IsWindowHovered(), ImGui::IsWindowHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup), ImGui::IsWindowHovered(ImGuiHoveredFlags_AllowWhenBlockedByActiveItem), ImGui::IsWindowHovered(ImGuiHoveredFlags_ChildWindows), ImGui::IsWindowHovered(ImGuiHoveredFlags_ChildWindows | ImGuiHoveredFlags_RootWindow), ImGui::IsWindowHovered(ImGuiHoveredFlags_ChildWindows | ImGuiHoveredFlags_AllowWhenBlockedByPopup), ImGui::IsWindowHovered(ImGuiHoveredFlags_RootWindow), ImGui::IsWindowHovered(ImGuiHoveredFlags_AnyWindow)); ImGui::BeginChild("child", ImVec2(0, 50), true); ImGui::Text("This is another child window for testing the _ChildWindows flag."); ImGui::EndChild(); if (embed_all_inside_a_child_window) ImGui::EndChild(); static char dummy_str[] = "This is a dummy field to be able to tab-out of the widgets above."; ImGui::InputText("dummy", dummy_str, IM_ARRAYSIZE(dummy_str), ImGuiInputTextFlags_ReadOnly); // Calling IsItemHovered() after begin returns the hovered status of the title bar. // This is useful in particular if you want to create a context menu (with BeginPopupContextItem) associated to the title bar of a window. static bool test_window = false; ImGui::Checkbox("Hovered/Active tests after Begin() for title bar testing", &test_window); if (test_window) { ImGui::Begin("Title bar Hovered/Active tests", &test_window); if (ImGui::BeginPopupContextItem()) // <-- This is using IsItemHovered() { if (ImGui::MenuItem("Close")) { test_window = false; } ImGui::EndPopup(); } ImGui::Text( "IsItemHovered() after begin = %d (== is title bar hovered)\n" "IsItemActive() after begin = %d (== is window being clicked/moved)\n", ImGui::IsItemHovered(), ImGui::IsItemActive()); ImGui::End(); } ImGui::TreePop(); } } static void ShowDemoWindowLayout() { if (!ImGui::CollapsingHeader("Layout")) return; if (ImGui::TreeNode("Child windows")) { HelpMarker("Use child windows to begin into a self-contained independent scrolling/clipping regions within a host window."); static bool disable_mouse_wheel = false; static bool disable_menu = false; ImGui::Checkbox("Disable Mouse Wheel", &disable_mouse_wheel); ImGui::Checkbox("Disable Menu", &disable_menu); static int line = 50; bool goto_line = ImGui::Button("Goto"); ImGui::SameLine(); ImGui::SetNextItemWidth(100); goto_line |= ImGui::InputInt("##Line", &line, 0, 0, ImGuiInputTextFlags_EnterReturnsTrue); // Child 1: no border, enable horizontal scrollbar { ImGuiWindowFlags window_flags = ImGuiWindowFlags_HorizontalScrollbar | (disable_mouse_wheel ? ImGuiWindowFlags_NoScrollWithMouse : 0); ImGui::BeginChild("ChildL", ImVec2(ImGui::GetWindowContentRegionWidth() * 0.5f, 260), false, window_flags); for (int i = 0; i < 100; i++) { ImGui::Text("%04d: scrollable region", i); if (goto_line && line == i) ImGui::SetScrollHereY(); } if (goto_line && line >= 100) ImGui::SetScrollHereY(); ImGui::EndChild(); } ImGui::SameLine(); // Child 2: rounded border { ImGuiWindowFlags window_flags = (disable_mouse_wheel ? ImGuiWindowFlags_NoScrollWithMouse : 0) | (disable_menu ? 0 : ImGuiWindowFlags_MenuBar); ImGui::PushStyleVar(ImGuiStyleVar_ChildRounding, 5.0f); ImGui::BeginChild("ChildR", ImVec2(0, 260), true, window_flags); if (!disable_menu && ImGui::BeginMenuBar()) { if (ImGui::BeginMenu("Menu")) { ShowExampleMenuFile(); ImGui::EndMenu(); } ImGui::EndMenuBar(); } ImGui::Columns(2); for (int i = 0; i < 100; i++) { char buf[32]; sprintf(buf, "%03d", i); ImGui::Button(buf, ImVec2(-FLT_MIN, 0.0f)); ImGui::NextColumn(); } ImGui::EndChild(); ImGui::PopStyleVar(); } ImGui::Separator(); // Demonstrate a few extra things // - Changing ImGuiCol_ChildBg (which is transparent black in default styles) // - Using SetCursorPos() to position the child window (because the child window is an item from the POV of the parent window) // You can also call SetNextWindowPos() to position the child window. The parent window will effectively layout from this position. // - Using ImGui::GetItemRectMin/Max() to query the "item" state (because the child window is an item from the POV of the parent window) // See "Widgets" -> "Querying Status (Active/Focused/Hovered etc.)" section for more details about this. { ImGui::SetCursorPosX(ImGui::GetCursorPosX() + 10); ImGui::PushStyleColor(ImGuiCol_ChildBg, IM_COL32(255, 0, 0, 100)); ImGui::BeginChild("Red", ImVec2(200, 100), true, ImGuiWindowFlags_None); for (int n = 0; n < 50; n++) ImGui::Text("Some test %d", n); ImGui::EndChild(); ImVec2 child_rect_min = ImGui::GetItemRectMin(); ImVec2 child_rect_max = ImGui::GetItemRectMax(); ImGui::PopStyleColor(); ImGui::Text("Rect of child window is: (%.0f,%.0f) (%.0f,%.0f)", child_rect_min.x, child_rect_min.y, child_rect_max.x, child_rect_max.y); } ImGui::TreePop(); } if (ImGui::TreeNode("Widgets Width")) { // Use SetNextItemWidth() to set the width of a single upcoming item. // Use PushItemWidth()/PopItemWidth() to set the width of a group of items. static float f = 0.0f; ImGui::Text("SetNextItemWidth/PushItemWidth(100)"); ImGui::SameLine(); HelpMarker("Fixed width."); ImGui::SetNextItemWidth(100); ImGui::DragFloat("float##1", &f); ImGui::Text("SetNextItemWidth/PushItemWidth(GetWindowWidth() * 0.5f)"); ImGui::SameLine(); HelpMarker("Half of window width."); ImGui::SetNextItemWidth(ImGui::GetWindowWidth() * 0.5f); ImGui::DragFloat("float##2", &f); ImGui::Text("SetNextItemWidth/PushItemWidth(GetContentRegionAvail().x * 0.5f)"); ImGui::SameLine(); HelpMarker("Half of available width.\n(~ right-cursor_pos)\n(works within a column set)"); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x * 0.5f); ImGui::DragFloat("float##3", &f); ImGui::Text("SetNextItemWidth/PushItemWidth(-100)"); ImGui::SameLine(); HelpMarker("Align to right edge minus 100"); ImGui::SetNextItemWidth(-100); ImGui::DragFloat("float##4", &f); // Demonstrate using PushItemWidth to surround three items. Calling SetNextItemWidth() before each of them would have the same effect. ImGui::Text("SetNextItemWidth/PushItemWidth(-1)"); ImGui::SameLine(); HelpMarker("Align to right edge"); ImGui::PushItemWidth(-1); ImGui::DragFloat("##float5a", &f); ImGui::DragFloat("##float5b", &f); ImGui::DragFloat("##float5c", &f); ImGui::PopItemWidth(); ImGui::TreePop(); } if (ImGui::TreeNode("Basic Horizontal Layout")) { ImGui::TextWrapped("(Use ImGui::SameLine() to keep adding items to the right of the preceding item)"); // Text ImGui::Text("Two items: Hello"); ImGui::SameLine(); ImGui::TextColored(ImVec4(1,1,0,1), "Sailor"); // Adjust spacing ImGui::Text("More spacing: Hello"); ImGui::SameLine(0, 20); ImGui::TextColored(ImVec4(1,1,0,1), "Sailor"); // Button ImGui::AlignTextToFramePadding(); ImGui::Text("Normal buttons"); ImGui::SameLine(); ImGui::Button("Banana"); ImGui::SameLine(); ImGui::Button("Apple"); ImGui::SameLine(); ImGui::Button("Corniflower"); // Button ImGui::Text("Small buttons"); ImGui::SameLine(); ImGui::SmallButton("Like this one"); ImGui::SameLine(); ImGui::Text("can fit within a text block."); // Aligned to arbitrary position. Easy/cheap column. ImGui::Text("Aligned"); ImGui::SameLine(150); ImGui::Text("x=150"); ImGui::SameLine(300); ImGui::Text("x=300"); ImGui::Text("Aligned"); ImGui::SameLine(150); ImGui::SmallButton("x=150"); ImGui::SameLine(300); ImGui::SmallButton("x=300"); // Checkbox static bool c1 = false, c2 = false, c3 = false, c4 = false; ImGui::Checkbox("My", &c1); ImGui::SameLine(); ImGui::Checkbox("Tailor", &c2); ImGui::SameLine(); ImGui::Checkbox("Is", &c3); ImGui::SameLine(); ImGui::Checkbox("Rich", &c4); // Various static float f0 = 1.0f, f1 = 2.0f, f2 = 3.0f; ImGui::PushItemWidth(80); const char* items[] = { "AAAA", "BBBB", "CCCC", "DDDD" }; static int item = -1; ImGui::Combo("Combo", &item, items, IM_ARRAYSIZE(items)); ImGui::SameLine(); ImGui::SliderFloat("X", &f0, 0.0f, 5.0f); ImGui::SameLine(); ImGui::SliderFloat("Y", &f1, 0.0f, 5.0f); ImGui::SameLine(); ImGui::SliderFloat("Z", &f2, 0.0f, 5.0f); ImGui::PopItemWidth(); ImGui::PushItemWidth(80); ImGui::Text("Lists:"); static int selection[4] = { 0, 1, 2, 3 }; for (int i = 0; i < 4; i++) { if (i > 0) ImGui::SameLine(); ImGui::PushID(i); ImGui::ListBox("", &selection[i], items, IM_ARRAYSIZE(items)); ImGui::PopID(); //if (ImGui::IsItemHovered()) ImGui::SetTooltip("ListBox %d hovered", i); } ImGui::PopItemWidth(); // Dummy ImVec2 button_sz(40, 40); ImGui::Button("A", button_sz); ImGui::SameLine(); ImGui::Dummy(button_sz); ImGui::SameLine(); ImGui::Button("B", button_sz); // Manually wrapping (we should eventually provide this as an automatic layout feature, but for now you can do it manually) ImGui::Text("Manually wrapping:"); ImGuiStyle& style = ImGui::GetStyle(); int buttons_count = 20; float window_visible_x2 = ImGui::GetWindowPos().x + ImGui::GetWindowContentRegionMax().x; for (int n = 0; n < buttons_count; n++) { ImGui::PushID(n); ImGui::Button("Box", button_sz); float last_button_x2 = ImGui::GetItemRectMax().x; float next_button_x2 = last_button_x2 + style.ItemSpacing.x + button_sz.x; // Expected position if next button was on same line if (n + 1 < buttons_count && next_button_x2 < window_visible_x2) ImGui::SameLine(); ImGui::PopID(); } ImGui::TreePop(); } if (ImGui::TreeNode("Tabs")) { if (ImGui::TreeNode("Basic")) { ImGuiTabBarFlags tab_bar_flags = ImGuiTabBarFlags_None; if (ImGui::BeginTabBar("MyTabBar", tab_bar_flags)) { if (ImGui::BeginTabItem("Avocado")) { ImGui::Text("This is the Avocado tab!\nblah blah blah blah blah"); ImGui::EndTabItem(); } if (ImGui::BeginTabItem("Broccoli")) { ImGui::Text("This is the Broccoli tab!\nblah blah blah blah blah"); ImGui::EndTabItem(); } if (ImGui::BeginTabItem("Cucumber")) { ImGui::Text("This is the Cucumber tab!\nblah blah blah blah blah"); ImGui::EndTabItem(); } ImGui::EndTabBar(); } ImGui::Separator(); ImGui::TreePop(); } if (ImGui::TreeNode("Advanced & Close Button")) { // Expose a couple of the available flags. In most cases you may just call BeginTabBar() with no flags (0). static ImGuiTabBarFlags tab_bar_flags = ImGuiTabBarFlags_Reorderable; ImGui::CheckboxFlags("ImGuiTabBarFlags_Reorderable", (unsigned int*)&tab_bar_flags, ImGuiTabBarFlags_Reorderable); ImGui::CheckboxFlags("ImGuiTabBarFlags_AutoSelectNewTabs", (unsigned int*)&tab_bar_flags, ImGuiTabBarFlags_AutoSelectNewTabs); ImGui::CheckboxFlags("ImGuiTabBarFlags_TabListPopupButton", (unsigned int*)&tab_bar_flags, ImGuiTabBarFlags_TabListPopupButton); ImGui::CheckboxFlags("ImGuiTabBarFlags_NoCloseWithMiddleMouseButton", (unsigned int*)&tab_bar_flags, ImGuiTabBarFlags_NoCloseWithMiddleMouseButton); if ((tab_bar_flags & ImGuiTabBarFlags_FittingPolicyMask_) == 0) tab_bar_flags |= ImGuiTabBarFlags_FittingPolicyDefault_; if (ImGui::CheckboxFlags("ImGuiTabBarFlags_FittingPolicyResizeDown", (unsigned int*)&tab_bar_flags, ImGuiTabBarFlags_FittingPolicyResizeDown)) tab_bar_flags &= ~(ImGuiTabBarFlags_FittingPolicyMask_ ^ ImGuiTabBarFlags_FittingPolicyResizeDown); if (ImGui::CheckboxFlags("ImGuiTabBarFlags_FittingPolicyScroll", (unsigned int*)&tab_bar_flags, ImGuiTabBarFlags_FittingPolicyScroll)) tab_bar_flags &= ~(ImGuiTabBarFlags_FittingPolicyMask_ ^ ImGuiTabBarFlags_FittingPolicyScroll); // Tab Bar const char* names[4] = { "Artichoke", "Beetroot", "Celery", "Daikon" }; static bool opened[4] = { true, true, true, true }; // Persistent user state for (int n = 0; n < IM_ARRAYSIZE(opened); n++) { if (n > 0) { ImGui::SameLine(); } ImGui::Checkbox(names[n], &opened[n]); } // Passing a bool* to BeginTabItem() is similar to passing one to Begin(): the underlying bool will be set to false when the tab is closed. if (ImGui::BeginTabBar("MyTabBar", tab_bar_flags)) { for (int n = 0; n < IM_ARRAYSIZE(opened); n++) if (opened[n] && ImGui::BeginTabItem(names[n], &opened[n], ImGuiTabItemFlags_None)) { ImGui::Text("This is the %s tab!", names[n]); if (n & 1) ImGui::Text("I am an odd tab."); ImGui::EndTabItem(); } ImGui::EndTabBar(); } ImGui::Separator(); ImGui::TreePop(); } ImGui::TreePop(); } if (ImGui::TreeNode("Groups")) { HelpMarker("BeginGroup() basically locks the horizontal position for new line. EndGroup() bundles the whole group so that you can use \"item\" functions such as IsItemHovered()/IsItemActive() or SameLine() etc. on the whole group."); ImGui::BeginGroup(); { ImGui::BeginGroup(); ImGui::Button("AAA"); ImGui::SameLine(); ImGui::Button("BBB"); ImGui::SameLine(); ImGui::BeginGroup(); ImGui::Button("CCC"); ImGui::Button("DDD"); ImGui::EndGroup(); ImGui::SameLine(); ImGui::Button("EEE"); ImGui::EndGroup(); if (ImGui::IsItemHovered()) ImGui::SetTooltip("First group hovered"); } // Capture the group size and create widgets using the same size ImVec2 size = ImGui::GetItemRectSize(); const float values[5] = { 0.5f, 0.20f, 0.80f, 0.60f, 0.25f }; ImGui::PlotHistogram("##values", values, IM_ARRAYSIZE(values), 0, NULL, 0.0f, 1.0f, size); ImGui::Button("ACTION", ImVec2((size.x - ImGui::GetStyle().ItemSpacing.x)*0.5f, size.y)); ImGui::SameLine(); ImGui::Button("REACTION", ImVec2((size.x - ImGui::GetStyle().ItemSpacing.x)*0.5f, size.y)); ImGui::EndGroup(); ImGui::SameLine(); ImGui::Button("LEVERAGE\nBUZZWORD", size); ImGui::SameLine(); if (ImGui::ListBoxHeader("List", size)) { ImGui::Selectable("Selected", true); ImGui::Selectable("Not Selected", false); ImGui::ListBoxFooter(); } ImGui::TreePop(); } if (ImGui::TreeNode("Text Baseline Alignment")) { { ImGui::BulletText("Text baseline:"); ImGui::SameLine(); HelpMarker("This is testing the vertical alignment that gets applied on text to keep it aligned with widgets. Lines only composed of text or \"small\" widgets fit in less vertical spaces than lines with normal widgets."); ImGui::Indent(); ImGui::Text("KO Blahblah"); ImGui::SameLine(); ImGui::Button("Some framed item"); ImGui::SameLine(); HelpMarker("Baseline of button will look misaligned with text.."); // If your line starts with text, call AlignTextToFramePadding() to align text to upcoming widgets. // Because we don't know what's coming after the Text() statement, we need to move the text baseline down by FramePadding.y ImGui::AlignTextToFramePadding(); ImGui::Text("OK Blahblah"); ImGui::SameLine(); ImGui::Button("Some framed item"); ImGui::SameLine(); HelpMarker("We call AlignTextToFramePadding() to vertically align the text baseline by +FramePadding.y"); // SmallButton() uses the same vertical padding as Text ImGui::Button("TEST##1"); ImGui::SameLine(); ImGui::Text("TEST"); ImGui::SameLine(); ImGui::SmallButton("TEST##2"); // If your line starts with text, call AlignTextToFramePadding() to align text to upcoming widgets. ImGui::AlignTextToFramePadding(); ImGui::Text("Text aligned to framed item"); ImGui::SameLine(); ImGui::Button("Item##1"); ImGui::SameLine(); ImGui::Text("Item"); ImGui::SameLine(); ImGui::SmallButton("Item##2"); ImGui::SameLine(); ImGui::Button("Item##3"); ImGui::Unindent(); } ImGui::Spacing(); { ImGui::BulletText("Multi-line text:"); ImGui::Indent(); ImGui::Text("One\nTwo\nThree"); ImGui::SameLine(); ImGui::Text("Hello\nWorld"); ImGui::SameLine(); ImGui::Text("Banana"); ImGui::Text("Banana"); ImGui::SameLine(); ImGui::Text("Hello\nWorld"); ImGui::SameLine(); ImGui::Text("One\nTwo\nThree"); ImGui::Button("HOP##1"); ImGui::SameLine(); ImGui::Text("Banana"); ImGui::SameLine(); ImGui::Text("Hello\nWorld"); ImGui::SameLine(); ImGui::Text("Banana"); ImGui::Button("HOP##2"); ImGui::SameLine(); ImGui::Text("Hello\nWorld"); ImGui::SameLine(); ImGui::Text("Banana"); ImGui::Unindent(); } ImGui::Spacing(); { ImGui::BulletText("Misc items:"); ImGui::Indent(); // SmallButton() sets FramePadding to zero. Text baseline is aligned to match baseline of previous Button ImGui::Button("80x80", ImVec2(80, 80)); ImGui::SameLine(); ImGui::Button("50x50", ImVec2(50, 50)); ImGui::SameLine(); ImGui::Button("Button()"); ImGui::SameLine(); ImGui::SmallButton("SmallButton()"); // Tree const float spacing = ImGui::GetStyle().ItemInnerSpacing.x; ImGui::Button("Button##1"); ImGui::SameLine(0.0f, spacing); if (ImGui::TreeNode("Node##1")) { for (int i = 0; i < 6; i++) ImGui::BulletText("Item %d..", i); ImGui::TreePop(); } // Dummy tree data ImGui::AlignTextToFramePadding(); // Vertically align text node a bit lower so it'll be vertically centered with upcoming widget. Otherwise you can use SmallButton (smaller fit). bool node_open = ImGui::TreeNode("Node##2");// Common mistake to avoid: if we want to SameLine after TreeNode we need to do it before we add child content. ImGui::SameLine(0.0f, spacing); ImGui::Button("Button##2"); if (node_open) { for (int i = 0; i < 6; i++) ImGui::BulletText("Item %d..", i); ImGui::TreePop(); } // Dummy tree data // Bullet ImGui::Button("Button##3"); ImGui::SameLine(0.0f, spacing); ImGui::BulletText("Bullet text"); ImGui::AlignTextToFramePadding(); ImGui::BulletText("Node"); ImGui::SameLine(0.0f, spacing); ImGui::Button("Button##4"); ImGui::Unindent(); } ImGui::TreePop(); } if (ImGui::TreeNode("Scrolling")) { // Vertical scroll functions HelpMarker("Use SetScrollHereY() or SetScrollFromPosY() to scroll to a given vertical position."); static int track_item = 50; static bool enable_track = true; static bool enable_extra_decorations = false; static float scroll_to_off_px = 0.0f; static float scroll_to_pos_px = 200.0f; ImGui::Checkbox("Decoration", &enable_extra_decorations); ImGui::SameLine(); HelpMarker("We expose this for testing because scrolling sometimes had issues with window decoration such as menu-bars."); ImGui::Checkbox("Track", &enable_track); ImGui::PushItemWidth(100); ImGui::SameLine(140); enable_track |= ImGui::DragInt("##item", &track_item, 0.25f, 0, 99, "Item = %d"); bool scroll_to_off = ImGui::Button("Scroll Offset"); ImGui::SameLine(140); scroll_to_off |= ImGui::DragFloat("##off", &scroll_to_off_px, 1.00f, 0, FLT_MAX, "+%.0f px"); bool scroll_to_pos = ImGui::Button("Scroll To Pos"); ImGui::SameLine(140); scroll_to_pos |= ImGui::DragFloat("##pos", &scroll_to_pos_px, 1.00f, -10, FLT_MAX, "X/Y = %.0f px"); ImGui::PopItemWidth(); if (scroll_to_off || scroll_to_pos) enable_track = false; ImGuiStyle& style = ImGui::GetStyle(); float child_w = (ImGui::GetContentRegionAvail().x - 4 * style.ItemSpacing.x) / 5; if (child_w < 1.0f) child_w = 1.0f; ImGui::PushID("##VerticalScrolling"); for (int i = 0; i < 5; i++) { if (i > 0) ImGui::SameLine(); ImGui::BeginGroup(); const char* names[] = { "Top", "25%", "Center", "75%", "Bottom" }; ImGui::TextUnformatted(names[i]); ImGuiWindowFlags child_flags = enable_extra_decorations ? ImGuiWindowFlags_MenuBar : 0; bool window_visible = ImGui::BeginChild(ImGui::GetID((void*)(intptr_t)i), ImVec2(child_w, 200.0f), true, child_flags); if (ImGui::BeginMenuBar()) { ImGui::TextUnformatted("abc"); ImGui::EndMenuBar(); } if (scroll_to_off) ImGui::SetScrollY(scroll_to_off_px); if (scroll_to_pos) ImGui::SetScrollFromPosY(ImGui::GetCursorStartPos().y + scroll_to_pos_px, i * 0.25f); if (window_visible) // Avoid calling SetScrollHereY when running with culled items { for (int item = 0; item < 100; item++) { if (enable_track && item == track_item) { ImGui::TextColored(ImVec4(1, 1, 0, 1), "Item %d", item); ImGui::SetScrollHereY(i * 0.25f); // 0.0f:top, 0.5f:center, 1.0f:bottom } else { ImGui::Text("Item %d", item); } } } float scroll_y = ImGui::GetScrollY(); float scroll_max_y = ImGui::GetScrollMaxY(); ImGui::EndChild(); ImGui::Text("%.0f/%.0f", scroll_y, scroll_max_y); ImGui::EndGroup(); } ImGui::PopID(); // Horizontal scroll functions ImGui::Spacing(); HelpMarker("Use SetScrollHereX() or SetScrollFromPosX() to scroll to a given horizontal position.\n\nUsing the \"Scroll To Pos\" button above will make the discontinuity at edges visible: scrolling to the top/bottom/left/right-most item will add an additional WindowPadding to reflect on reaching the edge of the list.\n\nBecause the clipping rectangle of most window hides half worth of WindowPadding on the left/right, using SetScrollFromPosX(+1) will usually result in clipped text whereas the equivalent SetScrollFromPosY(+1) wouldn't."); ImGui::PushID("##HorizontalScrolling"); for (int i = 0; i < 5; i++) { float child_height = ImGui::GetTextLineHeight() + style.ScrollbarSize + style.WindowPadding.y * 2.0f; ImGuiWindowFlags child_flags = ImGuiWindowFlags_HorizontalScrollbar | (enable_extra_decorations ? ImGuiWindowFlags_AlwaysVerticalScrollbar : 0); bool window_visible = ImGui::BeginChild(ImGui::GetID((void*)(intptr_t)i), ImVec2(-100, child_height), true, child_flags); if (scroll_to_off) ImGui::SetScrollX(scroll_to_off_px); if (scroll_to_pos) ImGui::SetScrollFromPosX(ImGui::GetCursorStartPos().x + scroll_to_pos_px, i * 0.25f); if (window_visible) // Avoid calling SetScrollHereY when running with culled items { for (int item = 0; item < 100; item++) { if (enable_track && item == track_item) { ImGui::TextColored(ImVec4(1, 1, 0, 1), "Item %d", item); ImGui::SetScrollHereX(i * 0.25f); // 0.0f:left, 0.5f:center, 1.0f:right } else { ImGui::Text("Item %d", item); } ImGui::SameLine(); } } float scroll_x = ImGui::GetScrollX(); float scroll_max_x = ImGui::GetScrollMaxX(); ImGui::EndChild(); ImGui::SameLine(); const char* names[] = { "Left", "25%", "Center", "75%", "Right" }; ImGui::Text("%s\n%.0f/%.0f", names[i], scroll_x, scroll_max_x); ImGui::Spacing(); } ImGui::PopID(); // Miscellaneous Horizontal Scrolling Demo HelpMarker("Horizontal scrolling for a window has to be enabled explicitly via the ImGuiWindowFlags_HorizontalScrollbar flag.\n\nYou may want to explicitly specify content width by calling SetNextWindowContentWidth() before Begin()."); static int lines = 7; ImGui::SliderInt("Lines", &lines, 1, 15); ImGui::PushStyleVar(ImGuiStyleVar_FrameRounding, 3.0f); ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, ImVec2(2.0f, 1.0f)); ImGui::BeginChild("scrolling", ImVec2(0, ImGui::GetFrameHeightWithSpacing() * 7 + 30), true, ImGuiWindowFlags_HorizontalScrollbar); for (int line = 0; line < lines; line++) { // Display random stuff (for the sake of this trivial demo we are using basic Button+SameLine. If you want to create your own time line for a real application you may be better off // manipulating the cursor position yourself, aka using SetCursorPos/SetCursorScreenPos to position the widgets yourself. You may also want to use the lower-level ImDrawList API) int num_buttons = 10 + ((line & 1) ? line * 9 : line * 3); for (int n = 0; n < num_buttons; n++) { if (n > 0) ImGui::SameLine(); ImGui::PushID(n + line * 1000); char num_buf[16]; sprintf(num_buf, "%d", n); const char* label = (!(n%15)) ? "FizzBuzz" : (!(n%3)) ? "Fizz" : (!(n%5)) ? "Buzz" : num_buf; float hue = n*0.05f; ImGui::PushStyleColor(ImGuiCol_Button, (ImVec4)ImColor::HSV(hue, 0.6f, 0.6f)); ImGui::PushStyleColor(ImGuiCol_ButtonHovered, (ImVec4)ImColor::HSV(hue, 0.7f, 0.7f)); ImGui::PushStyleColor(ImGuiCol_ButtonActive, (ImVec4)ImColor::HSV(hue, 0.8f, 0.8f)); ImGui::Button(label, ImVec2(40.0f + sinf((float)(line + n)) * 20.0f, 0.0f)); ImGui::PopStyleColor(3); ImGui::PopID(); } } float scroll_x = ImGui::GetScrollX(); float scroll_max_x = ImGui::GetScrollMaxX(); ImGui::EndChild(); ImGui::PopStyleVar(2); float scroll_x_delta = 0.0f; ImGui::SmallButton("<<"); if (ImGui::IsItemActive()) { scroll_x_delta = -ImGui::GetIO().DeltaTime * 1000.0f; } ImGui::SameLine(); ImGui::Text("Scroll from code"); ImGui::SameLine(); ImGui::SmallButton(">>"); if (ImGui::IsItemActive()) { scroll_x_delta = +ImGui::GetIO().DeltaTime * 1000.0f; } ImGui::SameLine(); ImGui::Text("%.0f/%.0f", scroll_x, scroll_max_x); if (scroll_x_delta != 0.0f) { ImGui::BeginChild("scrolling"); // Demonstrate a trick: you can use Begin to set yourself in the context of another window (here we are already out of your child window) ImGui::SetScrollX(ImGui::GetScrollX() + scroll_x_delta); ImGui::EndChild(); } ImGui::Spacing(); static bool show_horizontal_contents_size_demo_window = false; ImGui::Checkbox("Show Horizontal contents size demo window", &show_horizontal_contents_size_demo_window); if (show_horizontal_contents_size_demo_window) { static bool show_h_scrollbar = true; static bool show_button = true; static bool show_tree_nodes = true; static bool show_text_wrapped = false; static bool show_columns = true; static bool show_tab_bar = true; static bool show_child = false; static bool explicit_content_size = false; static float contents_size_x = 300.0f; if (explicit_content_size) ImGui::SetNextWindowContentSize(ImVec2(contents_size_x, 0.0f)); ImGui::Begin("Horizontal contents size demo window", &show_horizontal_contents_size_demo_window, show_h_scrollbar ? ImGuiWindowFlags_HorizontalScrollbar : 0); ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(2, 0)); ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, ImVec2(2, 0)); HelpMarker("Test of different widgets react and impact the work rectangle growing when horizontal scrolling is enabled.\n\nUse 'Metrics->Tools->Show windows rectangles' to visualize rectangles."); ImGui::Checkbox("H-scrollbar", &show_h_scrollbar); ImGui::Checkbox("Button", &show_button); // Will grow contents size (unless explicitly overwritten) ImGui::Checkbox("Tree nodes", &show_tree_nodes); // Will grow contents size and display highlight over full width ImGui::Checkbox("Text wrapped", &show_text_wrapped);// Will grow and use contents size ImGui::Checkbox("Columns", &show_columns); // Will use contents size ImGui::Checkbox("Tab bar", &show_tab_bar); // Will use contents size ImGui::Checkbox("Child", &show_child); // Will grow and use contents size ImGui::Checkbox("Explicit content size", &explicit_content_size); ImGui::Text("Scroll %.1f/%.1f %.1f/%.1f", ImGui::GetScrollX(), ImGui::GetScrollMaxX(), ImGui::GetScrollY(), ImGui::GetScrollMaxY()); if (explicit_content_size) { ImGui::SameLine(); ImGui::SetNextItemWidth(100); ImGui::DragFloat("##csx", &contents_size_x); ImVec2 p = ImGui::GetCursorScreenPos(); ImGui::GetWindowDrawList()->AddRectFilled(p, ImVec2(p.x + 10, p.y + 10), IM_COL32_WHITE); ImGui::GetWindowDrawList()->AddRectFilled(ImVec2(p.x + contents_size_x - 10, p.y), ImVec2(p.x + contents_size_x, p.y + 10), IM_COL32_WHITE); ImGui::Dummy(ImVec2(0, 10)); } ImGui::PopStyleVar(2); ImGui::Separator(); if (show_button) { ImGui::Button("this is a 300-wide button", ImVec2(300, 0)); } if (show_tree_nodes) { bool open = true; if (ImGui::TreeNode("this is a tree node")) { if (ImGui::TreeNode("another one of those tree node...")) { ImGui::Text("Some tree contents"); ImGui::TreePop(); } ImGui::TreePop(); } ImGui::CollapsingHeader("CollapsingHeader", &open); } if (show_text_wrapped) { ImGui::TextWrapped("This text should automatically wrap on the edge of the work rectangle."); } if (show_columns) { ImGui::Columns(4); for (int n = 0; n < 4; n++) { ImGui::Text("Width %.2f", ImGui::GetColumnWidth()); ImGui::NextColumn(); } ImGui::Columns(1); } if (show_tab_bar && ImGui::BeginTabBar("Hello")) { if (ImGui::BeginTabItem("OneOneOne")) { ImGui::EndTabItem(); } if (ImGui::BeginTabItem("TwoTwoTwo")) { ImGui::EndTabItem(); } if (ImGui::BeginTabItem("ThreeThreeThree")) { ImGui::EndTabItem(); } if (ImGui::BeginTabItem("FourFourFour")) { ImGui::EndTabItem(); } ImGui::EndTabBar(); } if (show_child) { ImGui::BeginChild("child", ImVec2(0,0), true); ImGui::EndChild(); } ImGui::End(); } ImGui::TreePop(); } if (ImGui::TreeNode("Clipping")) { static ImVec2 size(100, 100), offset(50, 20); ImGui::TextWrapped("On a per-widget basis we are occasionally clipping text CPU-side if it won't fit in its frame. Otherwise we are doing coarser clipping + passing a scissor rectangle to the renderer. The system is designed to try minimizing both execution and CPU/GPU rendering cost."); ImGui::DragFloat2("size", (float*)&size, 0.5f, 1.0f, 200.0f, "%.0f"); ImGui::TextWrapped("(Click and drag)"); ImVec2 pos = ImGui::GetCursorScreenPos(); ImVec4 clip_rect(pos.x, pos.y, pos.x + size.x, pos.y + size.y); ImGui::InvisibleButton("##dummy", size); if (ImGui::IsItemActive() && ImGui::IsMouseDragging(0)) { offset.x += ImGui::GetIO().MouseDelta.x; offset.y += ImGui::GetIO().MouseDelta.y; } ImGui::GetWindowDrawList()->AddRectFilled(pos, ImVec2(pos.x + size.x, pos.y + size.y), IM_COL32(90, 90, 120, 255)); ImGui::GetWindowDrawList()->AddText(ImGui::GetFont(), ImGui::GetFontSize()*2.0f, ImVec2(pos.x + offset.x, pos.y + offset.y), IM_COL32(255, 255, 255, 255), "Line 1 hello\nLine 2 clip me!", NULL, 0.0f, &clip_rect); ImGui::TreePop(); } } static void ShowDemoWindowPopups() { if (!ImGui::CollapsingHeader("Popups & Modal windows")) return; // The properties of popups windows are: // - They block normal mouse hovering detection outside them. (*) // - Unless modal, they can be closed by clicking anywhere outside them, or by pressing ESCAPE. // - Their visibility state (~bool) is held internally by Dear ImGui instead of being held by the programmer as we are used to with regular Begin() calls. // User can manipulate the visibility state by calling OpenPopup(). // (*) One can use IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup) to bypass it and detect hovering even when normally blocked by a popup. // Those three properties are connected. The library needs to hold their visibility state because it can close popups at any time. // Typical use for regular windows: // bool my_tool_is_active = false; if (ImGui::Button("Open")) my_tool_is_active = true; [...] if (my_tool_is_active) Begin("My Tool", &my_tool_is_active) { [...] } End(); // Typical use for popups: // if (ImGui::Button("Open")) ImGui::OpenPopup("MyPopup"); if (ImGui::BeginPopup("MyPopup") { [...] EndPopup(); } // With popups we have to go through a library call (here OpenPopup) to manipulate the visibility state. // This may be a bit confusing at first but it should quickly make sense. Follow on the examples below. if (ImGui::TreeNode("Popups")) { ImGui::TextWrapped("When a popup is active, it inhibits interacting with windows that are behind the popup. Clicking outside the popup closes it."); static int selected_fish = -1; const char* names[] = { "Bream", "Haddock", "Mackerel", "Pollock", "Tilefish" }; static bool toggles[] = { true, false, false, false, false }; // Simple selection popup // (If you want to show the current selection inside the Button itself, you may want to build a string using the "###" operator to preserve a constant ID with a variable label) if (ImGui::Button("Select..")) ImGui::OpenPopup("my_select_popup"); ImGui::SameLine(); ImGui::TextUnformatted(selected_fish == -1 ? "<None>" : names[selected_fish]); if (ImGui::BeginPopup("my_select_popup")) { ImGui::Text("Aquarium"); ImGui::Separator(); for (int i = 0; i < IM_ARRAYSIZE(names); i++) if (ImGui::Selectable(names[i])) selected_fish = i; ImGui::EndPopup(); } // Showing a menu with toggles if (ImGui::Button("Toggle..")) ImGui::OpenPopup("my_toggle_popup"); if (ImGui::BeginPopup("my_toggle_popup")) { for (int i = 0; i < IM_ARRAYSIZE(names); i++) ImGui::MenuItem(names[i], "", &toggles[i]); if (ImGui::BeginMenu("Sub-menu")) { ImGui::MenuItem("Click me"); ImGui::EndMenu(); } ImGui::Separator(); ImGui::Text("Tooltip here"); if (ImGui::IsItemHovered()) ImGui::SetTooltip("I am a tooltip over a popup"); if (ImGui::Button("Stacked Popup")) ImGui::OpenPopup("another popup"); if (ImGui::BeginPopup("another popup")) { for (int i = 0; i < IM_ARRAYSIZE(names); i++) ImGui::MenuItem(names[i], "", &toggles[i]); if (ImGui::BeginMenu("Sub-menu")) { ImGui::MenuItem("Click me"); if (ImGui::Button("Stacked Popup")) ImGui::OpenPopup("another popup"); if (ImGui::BeginPopup("another popup")) { ImGui::Text("I am the last one here."); ImGui::EndPopup(); } ImGui::EndMenu(); } ImGui::EndPopup(); } ImGui::EndPopup(); } // Call the more complete ShowExampleMenuFile which we use in various places of this demo if (ImGui::Button("File Menu..")) ImGui::OpenPopup("my_file_popup"); if (ImGui::BeginPopup("my_file_popup")) { ShowExampleMenuFile(); ImGui::EndPopup(); } ImGui::TreePop(); } if (ImGui::TreeNode("Context menus")) { // BeginPopupContextItem() is a helper to provide common/simple popup behavior of essentially doing: // if (IsItemHovered() && IsMouseReleased(0)) // OpenPopup(id); // return BeginPopup(id); // For more advanced uses you may want to replicate and cuztomize this code. This the comments inside BeginPopupContextItem() implementation. static float value = 0.5f; ImGui::Text("Value = %.3f (<-- right-click here)", value); if (ImGui::BeginPopupContextItem("item context menu")) { if (ImGui::Selectable("Set to zero")) value = 0.0f; if (ImGui::Selectable("Set to PI")) value = 3.1415f; ImGui::SetNextItemWidth(-1); ImGui::DragFloat("##Value", &value, 0.1f, 0.0f, 0.0f); ImGui::EndPopup(); } // We can also use OpenPopupOnItemClick() which is the same as BeginPopupContextItem() but without the Begin call. // So here we will make it that clicking on the text field with the right mouse button (1) will toggle the visibility of the popup above. ImGui::Text("(You can also right-click me to open the same popup as above.)"); ImGui::OpenPopupOnItemClick("item context menu", 1); // When used after an item that has an ID (here the Button), we can skip providing an ID to BeginPopupContextItem(). // BeginPopupContextItem() will use the last item ID as the popup ID. // In addition here, we want to include your editable label inside the button label. We use the ### operator to override the ID (read FAQ about ID for details) static char name[32] = "Label1"; char buf[64]; sprintf(buf, "Button: %s###Button", name); // ### operator override ID ignoring the preceding label ImGui::Button(buf); if (ImGui::BeginPopupContextItem()) { ImGui::Text("Edit name:"); ImGui::InputText("##edit", name, IM_ARRAYSIZE(name)); if (ImGui::Button("Close")) ImGui::CloseCurrentPopup(); ImGui::EndPopup(); } ImGui::SameLine(); ImGui::Text("(<-- right-click here)"); ImGui::TreePop(); } if (ImGui::TreeNode("Modals")) { ImGui::TextWrapped("Modal windows are like popups but the user cannot close them by clicking outside the window."); if (ImGui::Button("Delete..")) ImGui::OpenPopup("Delete?"); if (ImGui::BeginPopupModal("Delete?", NULL, ImGuiWindowFlags_AlwaysAutoResize)) { ImGui::Text("All those beautiful files will be deleted.\nThis operation cannot be undone!\n\n"); ImGui::Separator(); //static int dummy_i = 0; //ImGui::Combo("Combo", &dummy_i, "Delete\0Delete harder\0"); static bool dont_ask_me_next_time = false; ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, ImVec2(0, 0)); ImGui::Checkbox("Don't ask me next time", &dont_ask_me_next_time); ImGui::PopStyleVar(); if (ImGui::Button("OK", ImVec2(120, 0))) { ImGui::CloseCurrentPopup(); } ImGui::SetItemDefaultFocus(); ImGui::SameLine(); if (ImGui::Button("Cancel", ImVec2(120, 0))) { ImGui::CloseCurrentPopup(); } ImGui::EndPopup(); } if (ImGui::Button("Stacked modals..")) ImGui::OpenPopup("Stacked 1"); if (ImGui::BeginPopupModal("Stacked 1", NULL, ImGuiWindowFlags_MenuBar)) { if (ImGui::BeginMenuBar()) { if (ImGui::BeginMenu("File")) { if (ImGui::MenuItem("Dummy menu item")) {} ImGui::EndMenu(); } ImGui::EndMenuBar(); } ImGui::Text("Hello from Stacked The First\nUsing style.Colors[ImGuiCol_ModalWindowDimBg] behind it."); // Testing behavior of widgets stacking their own regular popups over the modal. static int item = 1; static float color[4] = { 0.4f,0.7f,0.0f,0.5f }; ImGui::Combo("Combo", &item, "aaaa\0bbbb\0cccc\0dddd\0eeee\0\0"); ImGui::ColorEdit4("color", color); if (ImGui::Button("Add another modal..")) ImGui::OpenPopup("Stacked 2"); // Also demonstrate passing a bool* to BeginPopupModal(), this will create a regular close button which will close the popup. // Note that the visibility state of popups is owned by imgui, so the input value of the bool actually doesn't matter here. bool dummy_open = true; if (ImGui::BeginPopupModal("Stacked 2", &dummy_open)) { ImGui::Text("Hello from Stacked The Second!"); if (ImGui::Button("Close")) ImGui::CloseCurrentPopup(); ImGui::EndPopup(); } if (ImGui::Button("Close")) ImGui::CloseCurrentPopup(); ImGui::EndPopup(); } ImGui::TreePop(); } if (ImGui::TreeNode("Menus inside a regular window")) { ImGui::TextWrapped("Below we are testing adding menu items to a regular window. It's rather unusual but should work!"); ImGui::Separator(); // NB: As a quirk in this very specific example, we want to differentiate the parent of this menu from the parent of the various popup menus above. // To do so we are encloding the items in a PushID()/PopID() block to make them two different menusets. If we don't, opening any popup above and hovering our menu here // would open it. This is because once a menu is active, we allow to switch to a sibling menu by just hovering on it, which is the desired behavior for regular menus. ImGui::PushID("foo"); ImGui::MenuItem("Menu item", "CTRL+M"); if (ImGui::BeginMenu("Menu inside a regular window")) { ShowExampleMenuFile(); ImGui::EndMenu(); } ImGui::PopID(); ImGui::Separator(); ImGui::TreePop(); } } static void ShowDemoWindowColumns() { if (!ImGui::CollapsingHeader("Columns")) return; ImGui::PushID("Columns"); static bool disable_indent = false; ImGui::Checkbox("Disable tree indentation", &disable_indent); ImGui::SameLine(); HelpMarker("Disable the indenting of tree nodes so demo columns can use the full window width."); if (disable_indent) ImGui::PushStyleVar(ImGuiStyleVar_IndentSpacing, 0.0f); // Basic columns if (ImGui::TreeNode("Basic")) { ImGui::Text("Without border:"); ImGui::Columns(3, "mycolumns3", false); // 3-ways, no border ImGui::Separator(); for (int n = 0; n < 14; n++) { char label[32]; sprintf(label, "Item %d", n); if (ImGui::Selectable(label)) {} //if (ImGui::Button(label, ImVec2(-FLT_MIN,0.0f))) {} ImGui::NextColumn(); } ImGui::Columns(1); ImGui::Separator(); ImGui::Text("With border:"); ImGui::Columns(4, "mycolumns"); // 4-ways, with border ImGui::Separator(); ImGui::Text("ID"); ImGui::NextColumn(); ImGui::Text("Name"); ImGui::NextColumn(); ImGui::Text("Path"); ImGui::NextColumn(); ImGui::Text("Hovered"); ImGui::NextColumn(); ImGui::Separator(); const char* names[3] = { "One", "Two", "Three" }; const char* paths[3] = { "/path/one", "/path/two", "/path/three" }; static int selected = -1; for (int i = 0; i < 3; i++) { char label[32]; sprintf(label, "%04d", i); if (ImGui::Selectable(label, selected == i, ImGuiSelectableFlags_SpanAllColumns)) selected = i; bool hovered = ImGui::IsItemHovered(); ImGui::NextColumn(); ImGui::Text(names[i]); ImGui::NextColumn(); ImGui::Text(paths[i]); ImGui::NextColumn(); ImGui::Text("%d", hovered); ImGui::NextColumn(); } ImGui::Columns(1); ImGui::Separator(); ImGui::TreePop(); } if (ImGui::TreeNode("Borders")) { // NB: Future columns API should allow automatic horizontal borders. static bool h_borders = true; static bool v_borders = true; static int columns_count = 4; const int lines_count = 3; ImGui::SetNextItemWidth(ImGui::GetFontSize() * 8); ImGui::DragInt("##columns_count", &columns_count, 0.1f, 2, 10, "%d columns"); if (columns_count < 2) columns_count = 2; ImGui::SameLine(); ImGui::Checkbox("horizontal", &h_borders); ImGui::SameLine(); ImGui::Checkbox("vertical", &v_borders); ImGui::Columns(columns_count, NULL, v_borders); for (int i = 0; i < columns_count * lines_count; i++) { if (h_borders && ImGui::GetColumnIndex() == 0) ImGui::Separator(); ImGui::Text("%c%c%c", 'a' + i, 'a' + i, 'a' + i); ImGui::Text("Width %.2f", ImGui::GetColumnWidth()); ImGui::Text("Avail %.2f", ImGui::GetContentRegionAvail().x); ImGui::Text("Offset %.2f", ImGui::GetColumnOffset()); ImGui::Text("Long text that is likely to clip"); ImGui::Button("Button", ImVec2(-FLT_MIN, 0.0f)); ImGui::NextColumn(); } ImGui::Columns(1); if (h_borders) ImGui::Separator(); ImGui::TreePop(); } // Create multiple items in a same cell before switching to next column if (ImGui::TreeNode("Mixed items")) { ImGui::Columns(3, "mixed"); ImGui::Separator(); ImGui::Text("Hello"); ImGui::Button("Banana"); ImGui::NextColumn(); ImGui::Text("ImGui"); ImGui::Button("Apple"); static float foo = 1.0f; ImGui::InputFloat("red", &foo, 0.05f, 0, "%.3f"); ImGui::Text("An extra line here."); ImGui::NextColumn(); ImGui::Text("Sailor"); ImGui::Button("Corniflower"); static float bar = 1.0f; ImGui::InputFloat("blue", &bar, 0.05f, 0, "%.3f"); ImGui::NextColumn(); if (ImGui::CollapsingHeader("Category A")) { ImGui::Text("Blah blah blah"); } ImGui::NextColumn(); if (ImGui::CollapsingHeader("Category B")) { ImGui::Text("Blah blah blah"); } ImGui::NextColumn(); if (ImGui::CollapsingHeader("Category C")) { ImGui::Text("Blah blah blah"); } ImGui::NextColumn(); ImGui::Columns(1); ImGui::Separator(); ImGui::TreePop(); } // Word wrapping if (ImGui::TreeNode("Word-wrapping")) { ImGui::Columns(2, "word-wrapping"); ImGui::Separator(); ImGui::TextWrapped("The quick brown fox jumps over the lazy dog."); ImGui::TextWrapped("Hello Left"); ImGui::NextColumn(); ImGui::TextWrapped("The quick brown fox jumps over the lazy dog."); ImGui::TextWrapped("Hello Right"); ImGui::Columns(1); ImGui::Separator(); ImGui::TreePop(); } // Scrolling columns /* if (ImGui::TreeNode("Vertical Scrolling")) { ImGui::BeginChild("##header", ImVec2(0, ImGui::GetTextLineHeightWithSpacing()+ImGui::GetStyle().ItemSpacing.y)); ImGui::Columns(3); ImGui::Text("ID"); ImGui::NextColumn(); ImGui::Text("Name"); ImGui::NextColumn(); ImGui::Text("Path"); ImGui::NextColumn(); ImGui::Columns(1); ImGui::Separator(); ImGui::EndChild(); ImGui::BeginChild("##scrollingregion", ImVec2(0, 60)); ImGui::Columns(3); for (int i = 0; i < 10; i++) { ImGui::Text("%04d", i); ImGui::NextColumn(); ImGui::Text("Foobar"); ImGui::NextColumn(); ImGui::Text("/path/foobar/%04d/", i); ImGui::NextColumn(); } ImGui::Columns(1); ImGui::EndChild(); ImGui::TreePop(); } */ if (ImGui::TreeNode("Horizontal Scrolling")) { ImGui::SetNextWindowContentSize(ImVec2(1500.0f, 0.0f)); ImGui::BeginChild("##ScrollingRegion", ImVec2(0, ImGui::GetFontSize() * 20), false, ImGuiWindowFlags_HorizontalScrollbar); ImGui::Columns(10); int ITEMS_COUNT = 2000; ImGuiListClipper clipper(ITEMS_COUNT); // Also demonstrate using the clipper for large list while (clipper.Step()) { for (int i = clipper.DisplayStart; i < clipper.DisplayEnd; i++) for (int j = 0; j < 10; j++) { ImGui::Text("Line %d Column %d...", i, j); ImGui::NextColumn(); } } ImGui::Columns(1); ImGui::EndChild(); ImGui::TreePop(); } if (ImGui::TreeNode("Tree")) { ImGui::Columns(2, "tree", true); for (int x = 0; x < 3; x++) { bool open1 = ImGui::TreeNode((void*)(intptr_t)x, "Node%d", x); ImGui::NextColumn(); ImGui::Text("Node contents"); ImGui::NextColumn(); if (open1) { for (int y = 0; y < 3; y++) { bool open2 = ImGui::TreeNode((void*)(intptr_t)y, "Node%d.%d", x, y); ImGui::NextColumn(); ImGui::Text("Node contents"); if (open2) { ImGui::Text("Even more contents"); if (ImGui::TreeNode("Tree in column")) { ImGui::Text("The quick brown fox jumps over the lazy dog"); ImGui::TreePop(); } } ImGui::NextColumn(); if (open2) ImGui::TreePop(); } ImGui::TreePop(); } } ImGui::Columns(1); ImGui::TreePop(); } if (disable_indent) ImGui::PopStyleVar(); ImGui::PopID(); } static void ShowDemoWindowMisc() { if (ImGui::CollapsingHeader("Filtering")) { // Helper class to easy setup a text filter. // You may want to implement a more feature-full filtering scheme in your own application. static ImGuiTextFilter filter; ImGui::Text("Filter usage:\n" " \"\" display all lines\n" " \"xxx\" display lines containing \"xxx\"\n" " \"xxx,yyy\" display lines containing \"xxx\" or \"yyy\"\n" " \"-xxx\" hide lines containing \"xxx\""); filter.Draw(); const char* lines[] = { "aaa1.c", "bbb1.c", "ccc1.c", "aaa2.cpp", "bbb2.cpp", "ccc2.cpp", "abc.h", "hello, world" }; for (int i = 0; i < IM_ARRAYSIZE(lines); i++) if (filter.PassFilter(lines[i])) ImGui::BulletText("%s", lines[i]); } if (ImGui::CollapsingHeader("Inputs, Navigation & Focus")) { ImGuiIO& io = ImGui::GetIO(); // Display ImGuiIO output flags ImGui::Text("WantCaptureMouse: %d", io.WantCaptureMouse); ImGui::Text("WantCaptureKeyboard: %d", io.WantCaptureKeyboard); ImGui::Text("WantTextInput: %d", io.WantTextInput); ImGui::Text("WantSetMousePos: %d", io.WantSetMousePos); ImGui::Text("NavActive: %d, NavVisible: %d", io.NavActive, io.NavVisible); // Display Keyboard/Mouse state if (ImGui::TreeNode("Keyboard, Mouse & Navigation State")) { if (ImGui::IsMousePosValid()) ImGui::Text("Mouse pos: (%g, %g)", io.MousePos.x, io.MousePos.y); else ImGui::Text("Mouse pos: <INVALID>"); ImGui::Text("Mouse delta: (%g, %g)", io.MouseDelta.x, io.MouseDelta.y); ImGui::Text("Mouse down:"); for (int i = 0; i < IM_ARRAYSIZE(io.MouseDown); i++) if (io.MouseDownDuration[i] >= 0.0f) { ImGui::SameLine(); ImGui::Text("b%d (%.02f secs)", i, io.MouseDownDuration[i]); } ImGui::Text("Mouse clicked:"); for (int i = 0; i < IM_ARRAYSIZE(io.MouseDown); i++) if (ImGui::IsMouseClicked(i)) { ImGui::SameLine(); ImGui::Text("b%d", i); } ImGui::Text("Mouse dbl-clicked:"); for (int i = 0; i < IM_ARRAYSIZE(io.MouseDown); i++) if (ImGui::IsMouseDoubleClicked(i)) { ImGui::SameLine(); ImGui::Text("b%d", i); } ImGui::Text("Mouse released:"); for (int i = 0; i < IM_ARRAYSIZE(io.MouseDown); i++) if (ImGui::IsMouseReleased(i)) { ImGui::SameLine(); ImGui::Text("b%d", i); } ImGui::Text("Mouse wheel: %.1f", io.MouseWheel); ImGui::Text("Keys down:"); for (int i = 0; i < IM_ARRAYSIZE(io.KeysDown); i++) if (io.KeysDownDuration[i] >= 0.0f) { ImGui::SameLine(); ImGui::Text("%d (0x%X) (%.02f secs)", i, i, io.KeysDownDuration[i]); } ImGui::Text("Keys pressed:"); for (int i = 0; i < IM_ARRAYSIZE(io.KeysDown); i++) if (ImGui::IsKeyPressed(i)) { ImGui::SameLine(); ImGui::Text("%d (0x%X)", i, i); } ImGui::Text("Keys release:"); for (int i = 0; i < IM_ARRAYSIZE(io.KeysDown); i++) if (ImGui::IsKeyReleased(i)) { ImGui::SameLine(); ImGui::Text("%d (0x%X)", i, i); } ImGui::Text("Keys mods: %s%s%s%s", io.KeyCtrl ? "CTRL " : "", io.KeyShift ? "SHIFT " : "", io.KeyAlt ? "ALT " : "", io.KeySuper ? "SUPER " : ""); ImGui::Text("Chars queue:"); for (int i = 0; i < io.InputQueueCharacters.Size; i++) { ImWchar c = io.InputQueueCharacters[i]; ImGui::SameLine(); ImGui::Text("\'%c\' (0x%04X)", (c > ' ' && c <= 255) ? (char)c : '?', c); } // FIXME: We should convert 'c' to UTF-8 here but the functions are not public. ImGui::Text("NavInputs down:"); for (int i = 0; i < IM_ARRAYSIZE(io.NavInputs); i++) if (io.NavInputs[i] > 0.0f) { ImGui::SameLine(); ImGui::Text("[%d] %.2f", i, io.NavInputs[i]); } ImGui::Text("NavInputs pressed:"); for (int i = 0; i < IM_ARRAYSIZE(io.NavInputs); i++) if (io.NavInputsDownDuration[i] == 0.0f) { ImGui::SameLine(); ImGui::Text("[%d]", i); } ImGui::Text("NavInputs duration:"); for (int i = 0; i < IM_ARRAYSIZE(io.NavInputs); i++) if (io.NavInputsDownDuration[i] >= 0.0f) { ImGui::SameLine(); ImGui::Text("[%d] %.2f", i, io.NavInputsDownDuration[i]); } ImGui::Button("Hovering me sets the\nkeyboard capture flag"); if (ImGui::IsItemHovered()) ImGui::CaptureKeyboardFromApp(true); ImGui::SameLine(); ImGui::Button("Holding me clears the\nthe keyboard capture flag"); if (ImGui::IsItemActive()) ImGui::CaptureKeyboardFromApp(false); ImGui::TreePop(); } if (ImGui::TreeNode("Tabbing")) { ImGui::Text("Use TAB/SHIFT+TAB to cycle through keyboard editable fields."); static char buf[32] = "dummy"; ImGui::InputText("1", buf, IM_ARRAYSIZE(buf)); ImGui::InputText("2", buf, IM_ARRAYSIZE(buf)); ImGui::InputText("3", buf, IM_ARRAYSIZE(buf)); ImGui::PushAllowKeyboardFocus(false); ImGui::InputText("4 (tab skip)", buf, IM_ARRAYSIZE(buf)); //ImGui::SameLine(); HelpMarker("Use ImGui::PushAllowKeyboardFocus(bool)\nto disable tabbing through certain widgets."); ImGui::PopAllowKeyboardFocus(); ImGui::InputText("5", buf, IM_ARRAYSIZE(buf)); ImGui::TreePop(); } if (ImGui::TreeNode("Focus from code")) { bool focus_1 = ImGui::Button("Focus on 1"); ImGui::SameLine(); bool focus_2 = ImGui::Button("Focus on 2"); ImGui::SameLine(); bool focus_3 = ImGui::Button("Focus on 3"); int has_focus = 0; static char buf[128] = "click on a button to set focus"; if (focus_1) ImGui::SetKeyboardFocusHere(); ImGui::InputText("1", buf, IM_ARRAYSIZE(buf)); if (ImGui::IsItemActive()) has_focus = 1; if (focus_2) ImGui::SetKeyboardFocusHere(); ImGui::InputText("2", buf, IM_ARRAYSIZE(buf)); if (ImGui::IsItemActive()) has_focus = 2; ImGui::PushAllowKeyboardFocus(false); if (focus_3) ImGui::SetKeyboardFocusHere(); ImGui::InputText("3 (tab skip)", buf, IM_ARRAYSIZE(buf)); if (ImGui::IsItemActive()) has_focus = 3; ImGui::PopAllowKeyboardFocus(); if (has_focus) ImGui::Text("Item with focus: %d", has_focus); else ImGui::Text("Item with focus: <none>"); // Use >= 0 parameter to SetKeyboardFocusHere() to focus an upcoming item static float f3[3] = { 0.0f, 0.0f, 0.0f }; int focus_ahead = -1; if (ImGui::Button("Focus on X")) { focus_ahead = 0; } ImGui::SameLine(); if (ImGui::Button("Focus on Y")) { focus_ahead = 1; } ImGui::SameLine(); if (ImGui::Button("Focus on Z")) { focus_ahead = 2; } if (focus_ahead != -1) ImGui::SetKeyboardFocusHere(focus_ahead); ImGui::SliderFloat3("Float3", &f3[0], 0.0f, 1.0f); ImGui::TextWrapped("NB: Cursor & selection are preserved when refocusing last used item in code."); ImGui::TreePop(); } if (ImGui::TreeNode("Dragging")) { ImGui::TextWrapped("You can use ImGui::GetMouseDragDelta(0) to query for the dragged amount on any widget."); for (int button = 0; button < 3; button++) ImGui::Text("IsMouseDragging(%d):\n w/ default threshold: %d,\n w/ zero threshold: %d\n w/ large threshold: %d", button, ImGui::IsMouseDragging(button), ImGui::IsMouseDragging(button, 0.0f), ImGui::IsMouseDragging(button, 20.0f)); ImGui::Button("Drag Me"); if (ImGui::IsItemActive()) ImGui::GetForegroundDrawList()->AddLine(io.MouseClickedPos[0], io.MousePos, ImGui::GetColorU32(ImGuiCol_Button), 4.0f); // Draw a line between the button and the mouse cursor // Drag operations gets "unlocked" when the mouse has moved past a certain threshold (the default threshold is stored in io.MouseDragThreshold) // You can request a lower or higher threshold using the second parameter of IsMouseDragging() and GetMouseDragDelta() ImVec2 value_raw = ImGui::GetMouseDragDelta(0, 0.0f); ImVec2 value_with_lock_threshold = ImGui::GetMouseDragDelta(0); ImVec2 mouse_delta = io.MouseDelta; ImGui::Text("GetMouseDragDelta(0):\n w/ default threshold: (%.1f, %.1f),\n w/ zero threshold: (%.1f, %.1f)\nMouseDelta: (%.1f, %.1f)", value_with_lock_threshold.x, value_with_lock_threshold.y, value_raw.x, value_raw.y, mouse_delta.x, mouse_delta.y); ImGui::TreePop(); } if (ImGui::TreeNode("Mouse cursors")) { const char* mouse_cursors_names[] = { "Arrow", "TextInput", "ResizeAll", "ResizeNS", "ResizeEW", "ResizeNESW", "ResizeNWSE", "Hand", "NotAllowed" }; IM_ASSERT(IM_ARRAYSIZE(mouse_cursors_names) == ImGuiMouseCursor_COUNT); ImGui::Text("Current mouse cursor = %d: %s", ImGui::GetMouseCursor(), mouse_cursors_names[ImGui::GetMouseCursor()]); ImGui::Text("Hover to see mouse cursors:"); ImGui::SameLine(); HelpMarker("Your application can render a different mouse cursor based on what ImGui::GetMouseCursor() returns. If software cursor rendering (io.MouseDrawCursor) is set ImGui will draw the right cursor for you, otherwise your backend needs to handle it."); for (int i = 0; i < ImGuiMouseCursor_COUNT; i++) { char label[32]; sprintf(label, "Mouse cursor %d: %s", i, mouse_cursors_names[i]); ImGui::Bullet(); ImGui::Selectable(label, false); if (ImGui::IsItemHovered() || ImGui::IsItemFocused()) ImGui::SetMouseCursor(i); } ImGui::TreePop(); } } } //----------------------------------------------------------------------------- // [SECTION] About Window / ShowAboutWindow() // Access from Dear ImGui Demo -> Tools -> About //----------------------------------------------------------------------------- void ImGui::ShowAboutWindow(bool* p_open) { if (!ImGui::Begin("About Dear ImGui", p_open, ImGuiWindowFlags_AlwaysAutoResize)) { ImGui::End(); return; } ImGui::Text("Dear ImGui %s", ImGui::GetVersion()); ImGui::Separator(); ImGui::Text("By Omar Cornut and all Dear ImGui contributors."); ImGui::Text("Dear ImGui is licensed under the MIT License, see LICENSE for more information."); static bool show_config_info = false; ImGui::Checkbox("Config/Build Information", &show_config_info); if (show_config_info) { ImGuiIO& io = ImGui::GetIO(); ImGuiStyle& style = ImGui::GetStyle(); bool copy_to_clipboard = ImGui::Button("Copy to clipboard"); ImGui::BeginChildFrame(ImGui::GetID("cfginfos"), ImVec2(0, ImGui::GetTextLineHeightWithSpacing() * 18), ImGuiWindowFlags_NoMove); if (copy_to_clipboard) { ImGui::LogToClipboard(); ImGui::LogText("```\n"); // Back quotes will make the text appears without formatting when pasting to GitHub } ImGui::Text("Dear ImGui %s (%d)", IMGUI_VERSION, IMGUI_VERSION_NUM); ImGui::Separator(); ImGui::Text("sizeof(size_t): %d, sizeof(ImDrawIdx): %d, sizeof(ImDrawVert): %d", (int)sizeof(size_t), (int)sizeof(ImDrawIdx), (int)sizeof(ImDrawVert)); ImGui::Text("define: __cplusplus=%d", (int)__cplusplus); #ifdef IMGUI_DISABLE_OBSOLETE_FUNCTIONS ImGui::Text("define: IMGUI_DISABLE_OBSOLETE_FUNCTIONS"); #endif #ifdef IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCTIONS ImGui::Text("define: IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCTIONS"); #endif #ifdef IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS ImGui::Text("define: IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS"); #endif #ifdef IMGUI_DISABLE_WIN32_FUNCTIONS ImGui::Text("define: IMGUI_DISABLE_WIN32_FUNCTIONS"); #endif #ifdef IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS ImGui::Text("define: IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS"); #endif #ifdef IMGUI_DISABLE_DEFAULT_MATH_FUNCTIONS ImGui::Text("define: IMGUI_DISABLE_DEFAULT_MATH_FUNCTIONS"); #endif #ifdef IMGUI_DISABLE_DEFAULT_FILE_FUNCTIONS ImGui::Text("define: IMGUI_DISABLE_DEFAULT_FILE_FUNCTIONS"); #endif #ifdef IMGUI_DISABLE_FILE_FUNCTIONS ImGui::Text("define: IMGUI_DISABLE_FILE_FUNCTIONS"); #endif #ifdef IMGUI_DISABLE_DEFAULT_ALLOCATORS ImGui::Text("define: IMGUI_DISABLE_DEFAULT_ALLOCATORS"); #endif #ifdef IMGUI_USE_BGRA_PACKED_COLOR ImGui::Text("define: IMGUI_USE_BGRA_PACKED_COLOR"); #endif #ifdef _WIN32 ImGui::Text("define: _WIN32"); #endif #ifdef _WIN64 ImGui::Text("define: _WIN64"); #endif #ifdef __linux__ ImGui::Text("define: __linux__"); #endif #ifdef __APPLE__ ImGui::Text("define: __APPLE__"); #endif #ifdef _MSC_VER ImGui::Text("define: _MSC_VER=%d", _MSC_VER); #endif #ifdef __MINGW32__ ImGui::Text("define: __MINGW32__"); #endif #ifdef __MINGW64__ ImGui::Text("define: __MINGW64__"); #endif #ifdef __GNUC__ ImGui::Text("define: __GNUC__=%d", (int)__GNUC__); #endif #ifdef __clang_version__ ImGui::Text("define: __clang_version__=%s", __clang_version__); #endif ImGui::Separator(); ImGui::Text("io.BackendPlatformName: %s", io.BackendPlatformName ? io.BackendPlatformName : "NULL"); ImGui::Text("io.BackendRendererName: %s", io.BackendRendererName ? io.BackendRendererName : "NULL"); ImGui::Text("io.ConfigFlags: 0x%08X", io.ConfigFlags); if (io.ConfigFlags & ImGuiConfigFlags_NavEnableKeyboard) ImGui::Text(" NavEnableKeyboard"); if (io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) ImGui::Text(" NavEnableGamepad"); if (io.ConfigFlags & ImGuiConfigFlags_NavEnableSetMousePos) ImGui::Text(" NavEnableSetMousePos"); if (io.ConfigFlags & ImGuiConfigFlags_NavNoCaptureKeyboard) ImGui::Text(" NavNoCaptureKeyboard"); if (io.ConfigFlags & ImGuiConfigFlags_NoMouse) ImGui::Text(" NoMouse"); if (io.ConfigFlags & ImGuiConfigFlags_NoMouseCursorChange) ImGui::Text(" NoMouseCursorChange"); if (io.MouseDrawCursor) ImGui::Text("io.MouseDrawCursor"); if (io.ConfigMacOSXBehaviors) ImGui::Text("io.ConfigMacOSXBehaviors"); if (io.ConfigInputTextCursorBlink) ImGui::Text("io.ConfigInputTextCursorBlink"); if (io.ConfigWindowsResizeFromEdges) ImGui::Text("io.ConfigWindowsResizeFromEdges"); if (io.ConfigWindowsMoveFromTitleBarOnly) ImGui::Text("io.ConfigWindowsMoveFromTitleBarOnly"); if (io.ConfigWindowsMemoryCompactTimer >= 0.0f) ImGui::Text("io.ConfigWindowsMemoryCompactTimer = %.1ff", io.ConfigWindowsMemoryCompactTimer); ImGui::Text("io.BackendFlags: 0x%08X", io.BackendFlags); if (io.BackendFlags & ImGuiBackendFlags_HasGamepad) ImGui::Text(" HasGamepad"); if (io.BackendFlags & ImGuiBackendFlags_HasMouseCursors) ImGui::Text(" HasMouseCursors"); if (io.BackendFlags & ImGuiBackendFlags_HasSetMousePos) ImGui::Text(" HasSetMousePos"); if (io.BackendFlags & ImGuiBackendFlags_RendererHasVtxOffset) ImGui::Text(" RendererHasVtxOffset"); ImGui::Separator(); ImGui::Text("io.Fonts: %d fonts, Flags: 0x%08X, TexSize: %d,%d", io.Fonts->Fonts.Size, io.Fonts->Flags, io.Fonts->TexWidth, io.Fonts->TexHeight); ImGui::Text("io.DisplaySize: %.2f,%.2f", io.DisplaySize.x, io.DisplaySize.y); ImGui::Text("io.DisplayFramebufferScale: %.2f,%.2f", io.DisplayFramebufferScale.x, io.DisplayFramebufferScale.y); ImGui::Separator(); ImGui::Text("style.WindowPadding: %.2f,%.2f", style.WindowPadding.x, style.WindowPadding.y); ImGui::Text("style.WindowBorderSize: %.2f", style.WindowBorderSize); ImGui::Text("style.FramePadding: %.2f,%.2f", style.FramePadding.x, style.FramePadding.y); ImGui::Text("style.FrameRounding: %.2f", style.FrameRounding); ImGui::Text("style.FrameBorderSize: %.2f", style.FrameBorderSize); ImGui::Text("style.ItemSpacing: %.2f,%.2f", style.ItemSpacing.x, style.ItemSpacing.y); ImGui::Text("style.ItemInnerSpacing: %.2f,%.2f", style.ItemInnerSpacing.x, style.ItemInnerSpacing.y); if (copy_to_clipboard) { ImGui::LogText("\n```\n"); ImGui::LogFinish(); } ImGui::EndChildFrame(); } ImGui::End(); } //----------------------------------------------------------------------------- // [SECTION] Style Editor / ShowStyleEditor() //----------------------------------------------------------------------------- // - ShowStyleSelector() // - ShowFontSelector() // - ShowStyleEditor() //----------------------------------------------------------------------------- // Demo helper function to select among default colors. See ShowStyleEditor() for more advanced options. // Here we use the simplified Combo() api that packs items into a single literal string. Useful for quick combo boxes where the choices are known locally. bool ImGui::ShowStyleSelector(const char* label) { static int style_idx = -1; if (ImGui::Combo(label, &style_idx, "Classic\0Dark\0Light\0")) { switch (style_idx) { case 0: ImGui::StyleColorsClassic(); break; case 1: ImGui::StyleColorsDark(); break; case 2: ImGui::StyleColorsLight(); break; } return true; } return false; } // Demo helper function to select among loaded fonts. // Here we use the regular BeginCombo()/EndCombo() api which is more the more flexible one. void ImGui::ShowFontSelector(const char* label) { ImGuiIO& io = ImGui::GetIO(); ImFont* font_current = ImGui::GetFont(); if (ImGui::BeginCombo(label, font_current->GetDebugName())) { for (int n = 0; n < io.Fonts->Fonts.Size; n++) { ImFont* font = io.Fonts->Fonts[n]; ImGui::PushID((void*)font); if (ImGui::Selectable(font->GetDebugName(), font == font_current)) io.FontDefault = font; ImGui::PopID(); } ImGui::EndCombo(); } ImGui::SameLine(); HelpMarker( "- Load additional fonts with io.Fonts->AddFontFromFileTTF().\n" "- The font atlas is built when calling io.Fonts->GetTexDataAsXXXX() or io.Fonts->Build().\n" "- Read FAQ and docs/FONTS.txt for more details.\n" "- If you need to add/remove fonts at runtime (e.g. for DPI change), do it before calling NewFrame()."); } void ImGui::ShowStyleEditor(ImGuiStyle* ref) { // You can pass in a reference ImGuiStyle structure to compare to, revert to and save to (else it compares to an internally stored reference) ImGuiStyle& style = ImGui::GetStyle(); static ImGuiStyle ref_saved_style; // Default to using internal storage as reference static bool init = true; if (init && ref == NULL) ref_saved_style = style; init = false; if (ref == NULL) ref = &ref_saved_style; ImGui::PushItemWidth(ImGui::GetWindowWidth() * 0.50f); if (ImGui::ShowStyleSelector("Colors##Selector")) ref_saved_style = style; ImGui::ShowFontSelector("Fonts##Selector"); // Simplified Settings if (ImGui::SliderFloat("FrameRounding", &style.FrameRounding, 0.0f, 12.0f, "%.0f")) style.GrabRounding = style.FrameRounding; // Make GrabRounding always the same value as FrameRounding { bool window_border = (style.WindowBorderSize > 0.0f); if (ImGui::Checkbox("WindowBorder", &window_border)) style.WindowBorderSize = window_border ? 1.0f : 0.0f; } ImGui::SameLine(); { bool frame_border = (style.FrameBorderSize > 0.0f); if (ImGui::Checkbox("FrameBorder", &frame_border)) style.FrameBorderSize = frame_border ? 1.0f : 0.0f; } ImGui::SameLine(); { bool popup_border = (style.PopupBorderSize > 0.0f); if (ImGui::Checkbox("PopupBorder", &popup_border)) style.PopupBorderSize = popup_border ? 1.0f : 0.0f; } // Save/Revert button if (ImGui::Button("Save Ref")) *ref = ref_saved_style = style; ImGui::SameLine(); if (ImGui::Button("Revert Ref")) style = *ref; ImGui::SameLine(); HelpMarker("Save/Revert in local non-persistent storage. Default Colors definition are not affected. Use \"Export\" below to save them somewhere."); ImGui::Separator(); if (ImGui::BeginTabBar("##tabs", ImGuiTabBarFlags_None)) { if (ImGui::BeginTabItem("Sizes")) { ImGui::Text("Main"); ImGui::SliderFloat2("WindowPadding", (float*)&style.WindowPadding, 0.0f, 20.0f, "%.0f"); ImGui::SliderFloat2("FramePadding", (float*)&style.FramePadding, 0.0f, 20.0f, "%.0f"); ImGui::SliderFloat2("ItemSpacing", (float*)&style.ItemSpacing, 0.0f, 20.0f, "%.0f"); ImGui::SliderFloat2("ItemInnerSpacing", (float*)&style.ItemInnerSpacing, 0.0f, 20.0f, "%.0f"); ImGui::SliderFloat2("TouchExtraPadding", (float*)&style.TouchExtraPadding, 0.0f, 10.0f, "%.0f"); ImGui::SliderFloat("IndentSpacing", &style.IndentSpacing, 0.0f, 30.0f, "%.0f"); ImGui::SliderFloat("ScrollbarSize", &style.ScrollbarSize, 1.0f, 20.0f, "%.0f"); ImGui::SliderFloat("GrabMinSize", &style.GrabMinSize, 1.0f, 20.0f, "%.0f"); ImGui::Text("Borders"); ImGui::SliderFloat("WindowBorderSize", &style.WindowBorderSize, 0.0f, 1.0f, "%.0f"); ImGui::SliderFloat("ChildBorderSize", &style.ChildBorderSize, 0.0f, 1.0f, "%.0f"); ImGui::SliderFloat("PopupBorderSize", &style.PopupBorderSize, 0.0f, 1.0f, "%.0f"); ImGui::SliderFloat("FrameBorderSize", &style.FrameBorderSize, 0.0f, 1.0f, "%.0f"); ImGui::SliderFloat("TabBorderSize", &style.TabBorderSize, 0.0f, 1.0f, "%.0f"); ImGui::Text("Rounding"); ImGui::SliderFloat("WindowRounding", &style.WindowRounding, 0.0f, 12.0f, "%.0f"); ImGui::SliderFloat("ChildRounding", &style.ChildRounding, 0.0f, 12.0f, "%.0f"); ImGui::SliderFloat("FrameRounding", &style.FrameRounding, 0.0f, 12.0f, "%.0f"); ImGui::SliderFloat("PopupRounding", &style.PopupRounding, 0.0f, 12.0f, "%.0f"); ImGui::SliderFloat("ScrollbarRounding", &style.ScrollbarRounding, 0.0f, 12.0f, "%.0f"); ImGui::SliderFloat("GrabRounding", &style.GrabRounding, 0.0f, 12.0f, "%.0f"); ImGui::SliderFloat("TabRounding", &style.TabRounding, 0.0f, 12.0f, "%.0f"); ImGui::Text("Alignment"); ImGui::SliderFloat2("WindowTitleAlign", (float*)&style.WindowTitleAlign, 0.0f, 1.0f, "%.2f"); int window_menu_button_position = style.WindowMenuButtonPosition + 1; if (ImGui::Combo("WindowMenuButtonPosition", (int*)&window_menu_button_position, "None\0Left\0Right\0")) style.WindowMenuButtonPosition = window_menu_button_position - 1; ImGui::Combo("ColorButtonPosition", (int*)&style.ColorButtonPosition, "Left\0Right\0"); ImGui::SliderFloat2("ButtonTextAlign", (float*)&style.ButtonTextAlign, 0.0f, 1.0f, "%.2f"); ImGui::SameLine(); HelpMarker("Alignment applies when a button is larger than its text content."); ImGui::SliderFloat2("SelectableTextAlign", (float*)&style.SelectableTextAlign, 0.0f, 1.0f, "%.2f"); ImGui::SameLine(); HelpMarker("Alignment applies when a selectable is larger than its text content."); ImGui::Text("Safe Area Padding"); ImGui::SameLine(); HelpMarker("Adjust if you cannot see the edges of your screen (e.g. on a TV where scaling has not been configured)."); ImGui::SliderFloat2("DisplaySafeAreaPadding", (float*)&style.DisplaySafeAreaPadding, 0.0f, 30.0f, "%.0f"); ImGui::EndTabItem(); } if (ImGui::BeginTabItem("Colors")) { static int output_dest = 0; static bool output_only_modified = true; if (ImGui::Button("Export")) { if (output_dest == 0) ImGui::LogToClipboard(); else ImGui::LogToTTY(); ImGui::LogText("ImVec4* colors = ImGui::GetStyle().Colors;" IM_NEWLINE); for (int i = 0; i < ImGuiCol_COUNT; i++) { const ImVec4& col = style.Colors[i]; const char* name = ImGui::GetStyleColorName(i); if (!output_only_modified || memcmp(&col, &ref->Colors[i], sizeof(ImVec4)) != 0) ImGui::LogText("colors[ImGuiCol_%s]%*s= ImVec4(%.2ff, %.2ff, %.2ff, %.2ff);" IM_NEWLINE, name, 23 - (int)strlen(name), "", col.x, col.y, col.z, col.w); } ImGui::LogFinish(); } ImGui::SameLine(); ImGui::SetNextItemWidth(120); ImGui::Combo("##output_type", &output_dest, "To Clipboard\0To TTY\0"); ImGui::SameLine(); ImGui::Checkbox("Only Modified Colors", &output_only_modified); static ImGuiTextFilter filter; filter.Draw("Filter colors", ImGui::GetFontSize() * 16); static ImGuiColorEditFlags alpha_flags = 0; if (ImGui::RadioButton("Opaque", alpha_flags == 0)) { alpha_flags = 0; } ImGui::SameLine(); if (ImGui::RadioButton("Alpha", alpha_flags == ImGuiColorEditFlags_AlphaPreview)) { alpha_flags = ImGuiColorEditFlags_AlphaPreview; } ImGui::SameLine(); if (ImGui::RadioButton("Both", alpha_flags == ImGuiColorEditFlags_AlphaPreviewHalf)) { alpha_flags = ImGuiColorEditFlags_AlphaPreviewHalf; } ImGui::SameLine(); HelpMarker("In the color list:\nLeft-click on colored square to open color picker,\nRight-click to open edit options menu."); ImGui::BeginChild("##colors", ImVec2(0, 0), true, ImGuiWindowFlags_AlwaysVerticalScrollbar | ImGuiWindowFlags_AlwaysHorizontalScrollbar | ImGuiWindowFlags_NavFlattened); ImGui::PushItemWidth(-160); for (int i = 0; i < ImGuiCol_COUNT; i++) { const char* name = ImGui::GetStyleColorName(i); if (!filter.PassFilter(name)) continue; ImGui::PushID(i); ImGui::ColorEdit4("##color", (float*)&style.Colors[i], ImGuiColorEditFlags_AlphaBar | alpha_flags); if (memcmp(&style.Colors[i], &ref->Colors[i], sizeof(ImVec4)) != 0) { // Tips: in a real user application, you may want to merge and use an icon font into the main font, so instead of "Save"/"Revert" you'd use icons. // Read the FAQ and docs/FONTS.txt about using icon fonts. It's really easy and super convenient! ImGui::SameLine(0.0f, style.ItemInnerSpacing.x); if (ImGui::Button("Save")) ref->Colors[i] = style.Colors[i]; ImGui::SameLine(0.0f, style.ItemInnerSpacing.x); if (ImGui::Button("Revert")) style.Colors[i] = ref->Colors[i]; } ImGui::SameLine(0.0f, style.ItemInnerSpacing.x); ImGui::TextUnformatted(name); ImGui::PopID(); } ImGui::PopItemWidth(); ImGui::EndChild(); ImGui::EndTabItem(); } if (ImGui::BeginTabItem("Fonts")) { ImGuiIO& io = ImGui::GetIO(); ImFontAtlas* atlas = io.Fonts; HelpMarker("Read FAQ and docs/FONTS.txt for details on font loading."); ImGui::PushItemWidth(120); for (int i = 0; i < atlas->Fonts.Size; i++) { ImFont* font = atlas->Fonts[i]; ImGui::PushID(font); bool font_details_opened = ImGui::TreeNode(font, "Font %d: \"%s\"\n%.2f px, %d glyphs, %d file(s)", i, font->ConfigData ? font->ConfigData[0].Name : "", font->FontSize, font->Glyphs.Size, font->ConfigDataCount); ImGui::SameLine(); if (ImGui::SmallButton("Set as default")) { io.FontDefault = font; } if (font_details_opened) { ImGui::PushFont(font); ImGui::Text("The quick brown fox jumps over the lazy dog"); ImGui::PopFont(); ImGui::DragFloat("Font scale", &font->Scale, 0.005f, 0.3f, 2.0f, "%.1f"); // Scale only this font ImGui::SameLine(); HelpMarker("Note than the default embedded font is NOT meant to be scaled.\n\nFont are currently rendered into bitmaps at a given size at the time of building the atlas. You may oversample them to get some flexibility with scaling. You can also render at multiple sizes and select which one to use at runtime.\n\n(Glimmer of hope: the atlas system should hopefully be rewritten in the future to make scaling more natural and automatic.)"); ImGui::InputFloat("Font offset", &font->DisplayOffset.y, 1, 1, "%.0f"); ImGui::Text("Ascent: %f, Descent: %f, Height: %f", font->Ascent, font->Descent, font->Ascent - font->Descent); ImGui::Text("Fallback character: '%c' (U+%04X)", font->FallbackChar, font->FallbackChar); ImGui::Text("Ellipsis character: '%c' (U+%04X)", font->EllipsisChar, font->EllipsisChar); const float surface_sqrt = sqrtf((float)font->MetricsTotalSurface); ImGui::Text("Texture Area: about %d px ~%dx%d px", font->MetricsTotalSurface, (int)surface_sqrt, (int)surface_sqrt); for (int config_i = 0; config_i < font->ConfigDataCount; config_i++) if (font->ConfigData) if (const ImFontConfig* cfg = &font->ConfigData[config_i]) ImGui::BulletText("Input %d: \'%s\', Oversample: (%d,%d), PixelSnapH: %d", config_i, cfg->Name, cfg->OversampleH, cfg->OversampleV, cfg->PixelSnapH); if (ImGui::TreeNode("Glyphs", "Glyphs (%d)", font->Glyphs.Size)) { // Display all glyphs of the fonts in separate pages of 256 characters for (unsigned int base = 0; base <= IM_UNICODE_CODEPOINT_MAX; base += 256) { // Skip ahead if a large bunch of glyphs are not present in the font (test in chunks of 4k) // This is only a small optimization to reduce the number of iterations when IM_UNICODE_MAX_CODEPOINT is large. // (if ImWchar==ImWchar32 we will do at least about 272 queries here) if (!(base & 4095)) { base += 4096 - 256; continue; } int count = 0; for (unsigned int n = 0; n < 256; n++) count += font->FindGlyphNoFallback((ImWchar)(base + n)) ? 1 : 0; if (count > 0 && ImGui::TreeNode((void*)(intptr_t)base, "U+%04X..U+%04X (%d %s)", base, base + 255, count, count > 1 ? "glyphs" : "glyph")) { float cell_size = font->FontSize * 1; float cell_spacing = style.ItemSpacing.y; ImVec2 base_pos = ImGui::GetCursorScreenPos(); ImDrawList* draw_list = ImGui::GetWindowDrawList(); for (unsigned int n = 0; n < 256; n++) { ImVec2 cell_p1(base_pos.x + (n % 16) * (cell_size + cell_spacing), base_pos.y + (n / 16) * (cell_size + cell_spacing)); ImVec2 cell_p2(cell_p1.x + cell_size, cell_p1.y + cell_size); const ImFontGlyph* glyph = font->FindGlyphNoFallback((ImWchar)(base + n)); draw_list->AddRect(cell_p1, cell_p2, glyph ? IM_COL32(255, 255, 255, 100) : IM_COL32(255, 255, 255, 50)); if (glyph) font->RenderChar(draw_list, cell_size, cell_p1, ImGui::GetColorU32(ImGuiCol_Text), (ImWchar)(base + n)); // We use ImFont::RenderChar as a shortcut because we don't have UTF-8 conversion functions available to generate a string. if (glyph && ImGui::IsMouseHoveringRect(cell_p1, cell_p2)) { ImGui::BeginTooltip(); ImGui::Text("Codepoint: U+%04X", base + n); ImGui::Separator(); ImGui::Text("Visible: %d", glyph->Visible); ImGui::Text("AdvanceX: %.1f", glyph->AdvanceX); ImGui::Text("Pos: (%.2f,%.2f)->(%.2f,%.2f)", glyph->X0, glyph->Y0, glyph->X1, glyph->Y1); ImGui::Text("UV: (%.3f,%.3f)->(%.3f,%.3f)", glyph->U0, glyph->V0, glyph->U1, glyph->V1); ImGui::EndTooltip(); } } ImGui::Dummy(ImVec2((cell_size + cell_spacing) * 16, (cell_size + cell_spacing) * 16)); ImGui::TreePop(); } } ImGui::TreePop(); } ImGui::TreePop(); } ImGui::PopID(); } if (ImGui::TreeNode("Atlas texture", "Atlas texture (%dx%d pixels)", atlas->TexWidth, atlas->TexHeight)) { ImVec4 tint_col = ImVec4(1.0f, 1.0f, 1.0f, 1.0f); ImVec4 border_col = ImVec4(1.0f, 1.0f, 1.0f, 0.5f); ImGui::Image(atlas->TexID, ImVec2((float)atlas->TexWidth, (float)atlas->TexHeight), ImVec2(0, 0), ImVec2(1, 1), tint_col, border_col); ImGui::TreePop(); } HelpMarker("Those are old settings provided for convenience.\nHowever, the _correct_ way of scaling your UI is currently to reload your font at the designed size, rebuild the font atlas, and call style.ScaleAllSizes() on a reference ImGuiStyle structure."); static float window_scale = 1.0f; if (ImGui::DragFloat("window scale", &window_scale, 0.005f, 0.3f, 2.0f, "%.2f")) // scale only this window ImGui::SetWindowFontScale(window_scale); ImGui::DragFloat("global scale", &io.FontGlobalScale, 0.005f, 0.3f, 2.0f, "%.2f"); // scale everything ImGui::PopItemWidth(); ImGui::EndTabItem(); } if (ImGui::BeginTabItem("Rendering")) { ImGui::Checkbox("Anti-aliased lines", &style.AntiAliasedLines); ImGui::SameLine(); HelpMarker("When disabling anti-aliasing lines, you'll probably want to disable borders in your style as well."); ImGui::Checkbox("Anti-aliased fill", &style.AntiAliasedFill); ImGui::PushItemWidth(100); ImGui::DragFloat("Curve Tessellation Tolerance", &style.CurveTessellationTol, 0.02f, 0.10f, 10.0f, "%.2f"); if (style.CurveTessellationTol < 0.10f) style.CurveTessellationTol = 0.10f; ImGui::DragFloat("Circle segment Max Error", &style.CircleSegmentMaxError, 0.01f, 0.10f, 10.0f, "%.2f"); ImGui::DragFloat("Global Alpha", &style.Alpha, 0.005f, 0.20f, 1.0f, "%.2f"); // Not exposing zero here so user doesn't "lose" the UI (zero alpha clips all widgets). But application code could have a toggle to switch between zero and non-zero. ImGui::PopItemWidth(); ImGui::EndTabItem(); } ImGui::EndTabBar(); } ImGui::PopItemWidth(); } //----------------------------------------------------------------------------- // [SECTION] Example App: Main Menu Bar / ShowExampleAppMainMenuBar() //----------------------------------------------------------------------------- // - ShowExampleAppMainMenuBar() // - ShowExampleMenuFile() //----------------------------------------------------------------------------- // Demonstrate creating a "main" fullscreen menu bar and populating it. // Note the difference between BeginMainMenuBar() and BeginMenuBar(): // - BeginMenuBar() = menu-bar inside current window we Begin()-ed into (the window needs the ImGuiWindowFlags_MenuBar flag) // - BeginMainMenuBar() = helper to create menu-bar-sized window at the top of the main viewport + call BeginMenuBar() into it. static void ShowExampleAppMainMenuBar() { if (ImGui::BeginMainMenuBar()) { if (ImGui::BeginMenu("File")) { ShowExampleMenuFile(); ImGui::EndMenu(); } if (ImGui::BeginMenu("Edit")) { if (ImGui::MenuItem("Undo", "CTRL+Z")) {} if (ImGui::MenuItem("Redo", "CTRL+Y", false, false)) {} // Disabled item ImGui::Separator(); if (ImGui::MenuItem("Cut", "CTRL+X")) {} if (ImGui::MenuItem("Copy", "CTRL+C")) {} if (ImGui::MenuItem("Paste", "CTRL+V")) {} ImGui::EndMenu(); } ImGui::EndMainMenuBar(); } } // Note that shortcuts are currently provided for display only (future version will add flags to BeginMenu to process shortcuts) static void ShowExampleMenuFile() { ImGui::MenuItem("(dummy menu)", NULL, false, false); if (ImGui::MenuItem("New")) {} if (ImGui::MenuItem("Open", "Ctrl+O")) {} if (ImGui::BeginMenu("Open Recent")) { ImGui::MenuItem("fish_hat.c"); ImGui::MenuItem("fish_hat.inl"); ImGui::MenuItem("fish_hat.h"); if (ImGui::BeginMenu("More..")) { ImGui::MenuItem("Hello"); ImGui::MenuItem("Sailor"); if (ImGui::BeginMenu("Recurse..")) { ShowExampleMenuFile(); ImGui::EndMenu(); } ImGui::EndMenu(); } ImGui::EndMenu(); } if (ImGui::MenuItem("Save", "Ctrl+S")) {} if (ImGui::MenuItem("Save As..")) {} ImGui::Separator(); if (ImGui::BeginMenu("Options")) { static bool enabled = true; ImGui::MenuItem("Enabled", "", &enabled); ImGui::BeginChild("child", ImVec2(0, 60), true); for (int i = 0; i < 10; i++) ImGui::Text("Scrolling Text %d", i); ImGui::EndChild(); static float f = 0.5f; static int n = 0; ImGui::SliderFloat("Value", &f, 0.0f, 1.0f); ImGui::InputFloat("Input", &f, 0.1f); ImGui::Combo("Combo", &n, "Yes\0No\0Maybe\0\0"); ImGui::EndMenu(); } if (ImGui::BeginMenu("Colors")) { float sz = ImGui::GetTextLineHeight(); for (int i = 0; i < ImGuiCol_COUNT; i++) { const char* name = ImGui::GetStyleColorName((ImGuiCol)i); ImVec2 p = ImGui::GetCursorScreenPos(); ImGui::GetWindowDrawList()->AddRectFilled(p, ImVec2(p.x+sz, p.y+sz), ImGui::GetColorU32((ImGuiCol)i)); ImGui::Dummy(ImVec2(sz, sz)); ImGui::SameLine(); ImGui::MenuItem(name); } ImGui::EndMenu(); } // Here we demonstrate appending again to the "Options" menu (which we already created above) // Of course in this demo it is a little bit silly that this function calls BeginMenu("Options") twice. // In a real code-base using it would make senses to use this feature from very different code locations. if (ImGui::BeginMenu("Options")) // <-- Append! { static bool b = true; ImGui::Checkbox("SomeOption", &b); ImGui::EndMenu(); } if (ImGui::BeginMenu("Disabled", false)) // Disabled { IM_ASSERT(0); } if (ImGui::MenuItem("Checked", NULL, true)) {} if (ImGui::MenuItem("Quit", "Alt+F4")) {} } //----------------------------------------------------------------------------- // [SECTION] Example App: Debug Console / ShowExampleAppConsole() //----------------------------------------------------------------------------- // Demonstrate creating a simple console window, with scrolling, filtering, completion and history. // For the console example, here we are using a more C++ like approach of declaring a class to hold the data and the functions. struct ExampleAppConsole { char InputBuf[256]; ImVector<char*> Items; ImVector<const char*> Commands; ImVector<char*> History; int HistoryPos; // -1: new line, 0..History.Size-1 browsing history. ImGuiTextFilter Filter; bool AutoScroll; bool ScrollToBottom; ExampleAppConsole() { ClearLog(); memset(InputBuf, 0, sizeof(InputBuf)); HistoryPos = -1; Commands.push_back("HELP"); Commands.push_back("HISTORY"); Commands.push_back("CLEAR"); Commands.push_back("CLASSIFY"); // "classify" is only here to provide an example of "C"+[tab] completing to "CL" and displaying matches. AutoScroll = true; ScrollToBottom = false; AddLog("Welcome to Dear ImGui!"); } ~ExampleAppConsole() { ClearLog(); for (int i = 0; i < History.Size; i++) free(History[i]); } // Portable helpers static int Stricmp(const char* str1, const char* str2) { int d; while ((d = toupper(*str2) - toupper(*str1)) == 0 && *str1) { str1++; str2++; } return d; } static int Strnicmp(const char* str1, const char* str2, int n) { int d = 0; while (n > 0 && (d = toupper(*str2) - toupper(*str1)) == 0 && *str1) { str1++; str2++; n--; } return d; } static char* Strdup(const char *str) { size_t len = strlen(str) + 1; void* buf = malloc(len); IM_ASSERT(buf); return (char*)memcpy(buf, (const void*)str, len); } static void Strtrim(char* str) { char* str_end = str + strlen(str); while (str_end > str && str_end[-1] == ' ') str_end--; *str_end = 0; } void ClearLog() { for (int i = 0; i < Items.Size; i++) free(Items[i]); Items.clear(); } void AddLog(const char* fmt, ...) IM_FMTARGS(2) { // FIXME-OPT char buf[1024]; va_list args; va_start(args, fmt); vsnprintf(buf, IM_ARRAYSIZE(buf), fmt, args); buf[IM_ARRAYSIZE(buf)-1] = 0; va_end(args); Items.push_back(Strdup(buf)); } void Draw(const char* title, bool* p_open) { ImGui::SetNextWindowSize(ImVec2(520,600), ImGuiCond_FirstUseEver); if (!ImGui::Begin(title, p_open)) { ImGui::End(); return; } // As a specific feature guaranteed by the library, after calling Begin() the last Item represent the title bar. So e.g. IsItemHovered() will return true when hovering the title bar. // Here we create a context menu only available from the title bar. if (ImGui::BeginPopupContextItem()) { if (ImGui::MenuItem("Close Console")) *p_open = false; ImGui::EndPopup(); } ImGui::TextWrapped("This example implements a console with basic coloring, completion and history. A more elaborate implementation may want to store entries along with extra data such as timestamp, emitter, etc."); ImGui::TextWrapped("Enter 'HELP' for help, press TAB to use text completion."); // TODO: display items starting from the bottom if (ImGui::SmallButton("Add Dummy Text")) { AddLog("%d some text", Items.Size); AddLog("some more text"); AddLog("display very important message here!"); } ImGui::SameLine(); if (ImGui::SmallButton("Add Dummy Error")) { AddLog("[error] something went wrong"); } ImGui::SameLine(); if (ImGui::SmallButton("Clear")) { ClearLog(); } ImGui::SameLine(); bool copy_to_clipboard = ImGui::SmallButton("Copy"); //static float t = 0.0f; if (ImGui::GetTime() - t > 0.02f) { t = ImGui::GetTime(); AddLog("Spam %f", t); } ImGui::Separator(); // Options menu if (ImGui::BeginPopup("Options")) { ImGui::Checkbox("Auto-scroll", &AutoScroll); ImGui::EndPopup(); } // Options, Filter if (ImGui::Button("Options")) ImGui::OpenPopup("Options"); ImGui::SameLine(); Filter.Draw("Filter (\"incl,-excl\") (\"error\")", 180); ImGui::Separator(); const float footer_height_to_reserve = ImGui::GetStyle().ItemSpacing.y + ImGui::GetFrameHeightWithSpacing(); // 1 separator, 1 input text ImGui::BeginChild("ScrollingRegion", ImVec2(0, -footer_height_to_reserve), false, ImGuiWindowFlags_HorizontalScrollbar); // Leave room for 1 separator + 1 InputText if (ImGui::BeginPopupContextWindow()) { if (ImGui::Selectable("Clear")) ClearLog(); ImGui::EndPopup(); } // Display every line as a separate entry so we can change their color or add custom widgets. If you only want raw text you can use ImGui::TextUnformatted(log.begin(), log.end()); // NB- if you have thousands of entries this approach may be too inefficient and may require user-side clipping to only process visible items. // You can seek and display only the lines that are visible using the ImGuiListClipper helper, if your elements are evenly spaced and you have cheap random access to the elements. // To use the clipper we could replace the 'for (int i = 0; i < Items.Size; i++)' loop with: // ImGuiListClipper clipper(Items.Size); // while (clipper.Step()) // for (int i = clipper.DisplayStart; i < clipper.DisplayEnd; i++) // However, note that you can not use this code as is if a filter is active because it breaks the 'cheap random-access' property. We would need random-access on the post-filtered list. // A typical application wanting coarse clipping and filtering may want to pre-compute an array of indices that passed the filtering test, recomputing this array when user changes the filter, // and appending newly elements as they are inserted. This is left as a task to the user until we can manage to improve this example code! // If your items are of variable size you may want to implement code similar to what ImGuiListClipper does. Or split your data into fixed height items to allow random-seeking into your list. ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(4,1)); // Tighten spacing if (copy_to_clipboard) ImGui::LogToClipboard(); for (int i = 0; i < Items.Size; i++) { const char* item = Items[i]; if (!Filter.PassFilter(item)) continue; // Normally you would store more information in your item (e.g. make Items[] an array of structure, store color/type etc.) bool pop_color = false; if (strstr(item, "[error]")) { ImGui::PushStyleColor(ImGuiCol_Text, ImVec4(1.0f, 0.4f, 0.4f, 1.0f)); pop_color = true; } else if (strncmp(item, "# ", 2) == 0) { ImGui::PushStyleColor(ImGuiCol_Text, ImVec4(1.0f, 0.8f, 0.6f, 1.0f)); pop_color = true; } ImGui::TextUnformatted(item); if (pop_color) ImGui::PopStyleColor(); } if (copy_to_clipboard) ImGui::LogFinish(); if (ScrollToBottom || (AutoScroll && ImGui::GetScrollY() >= ImGui::GetScrollMaxY())) ImGui::SetScrollHereY(1.0f); ScrollToBottom = false; ImGui::PopStyleVar(); ImGui::EndChild(); ImGui::Separator(); // Command-line bool reclaim_focus = false; if (ImGui::InputText("Input", InputBuf, IM_ARRAYSIZE(InputBuf), ImGuiInputTextFlags_EnterReturnsTrue|ImGuiInputTextFlags_CallbackCompletion|ImGuiInputTextFlags_CallbackHistory, &TextEditCallbackStub, (void*)this)) { char* s = InputBuf; Strtrim(s); if (s[0]) ExecCommand(s); strcpy(s, ""); reclaim_focus = true; } // Auto-focus on window apparition ImGui::SetItemDefaultFocus(); if (reclaim_focus) ImGui::SetKeyboardFocusHere(-1); // Auto focus previous widget ImGui::End(); } void ExecCommand(const char* command_line) { AddLog("# %s\n", command_line); // Insert into history. First find match and delete it so it can be pushed to the back. This isn't trying to be smart or optimal. HistoryPos = -1; for (int i = History.Size-1; i >= 0; i--) if (Stricmp(History[i], command_line) == 0) { free(History[i]); History.erase(History.begin() + i); break; } History.push_back(Strdup(command_line)); // Process command if (Stricmp(command_line, "CLEAR") == 0) { ClearLog(); } else if (Stricmp(command_line, "HELP") == 0) { AddLog("Commands:"); for (int i = 0; i < Commands.Size; i++) AddLog("- %s", Commands[i]); } else if (Stricmp(command_line, "HISTORY") == 0) { int first = History.Size - 10; for (int i = first > 0 ? first : 0; i < History.Size; i++) AddLog("%3d: %s\n", i, History[i]); } else { AddLog("Unknown command: '%s'\n", command_line); } // On commad input, we scroll to bottom even if AutoScroll==false ScrollToBottom = true; } static int TextEditCallbackStub(ImGuiInputTextCallbackData* data) // In C++11 you are better off using lambdas for this sort of forwarding callbacks { ExampleAppConsole* console = (ExampleAppConsole*)data->UserData; return console->TextEditCallback(data); } int TextEditCallback(ImGuiInputTextCallbackData* data) { //AddLog("cursor: %d, selection: %d-%d", data->CursorPos, data->SelectionStart, data->SelectionEnd); switch (data->EventFlag) { case ImGuiInputTextFlags_CallbackCompletion: { // Example of TEXT COMPLETION // Locate beginning of current word const char* word_end = data->Buf + data->CursorPos; const char* word_start = word_end; while (word_start > data->Buf) { const char c = word_start[-1]; if (c == ' ' || c == '\t' || c == ',' || c == ';') break; word_start--; } // Build a list of candidates ImVector<const char*> candidates; for (int i = 0; i < Commands.Size; i++) if (Strnicmp(Commands[i], word_start, (int)(word_end-word_start)) == 0) candidates.push_back(Commands[i]); if (candidates.Size == 0) { // No match AddLog("No match for \"%.*s\"!\n", (int)(word_end-word_start), word_start); } else if (candidates.Size == 1) { // Single match. Delete the beginning of the word and replace it entirely so we've got nice casing data->DeleteChars((int)(word_start-data->Buf), (int)(word_end-word_start)); data->InsertChars(data->CursorPos, candidates[0]); data->InsertChars(data->CursorPos, " "); } else { // Multiple matches. Complete as much as we can, so inputing "C" will complete to "CL" and display "CLEAR" and "CLASSIFY" int match_len = (int)(word_end - word_start); for (;;) { int c = 0; bool all_candidates_matches = true; for (int i = 0; i < candidates.Size && all_candidates_matches; i++) if (i == 0) c = toupper(candidates[i][match_len]); else if (c == 0 || c != toupper(candidates[i][match_len])) all_candidates_matches = false; if (!all_candidates_matches) break; match_len++; } if (match_len > 0) { data->DeleteChars((int)(word_start - data->Buf), (int)(word_end-word_start)); data->InsertChars(data->CursorPos, candidates[0], candidates[0] + match_len); } // List matches AddLog("Possible matches:\n"); for (int i = 0; i < candidates.Size; i++) AddLog("- %s\n", candidates[i]); } break; } case ImGuiInputTextFlags_CallbackHistory: { // Example of HISTORY const int prev_history_pos = HistoryPos; if (data->EventKey == ImGuiKey_UpArrow) { if (HistoryPos == -1) HistoryPos = History.Size - 1; else if (HistoryPos > 0) HistoryPos--; } else if (data->EventKey == ImGuiKey_DownArrow) { if (HistoryPos != -1) if (++HistoryPos >= History.Size) HistoryPos = -1; } // A better implementation would preserve the data on the current input line along with cursor position. if (prev_history_pos != HistoryPos) { const char* history_str = (HistoryPos >= 0) ? History[HistoryPos] : ""; data->DeleteChars(0, data->BufTextLen); data->InsertChars(0, history_str); } } } return 0; } }; static void ShowExampleAppConsole(bool* p_open) { static ExampleAppConsole console; console.Draw("Example: Console", p_open); } //----------------------------------------------------------------------------- // [SECTION] Example App: Debug Log / ShowExampleAppLog() //----------------------------------------------------------------------------- // Usage: // static ExampleAppLog my_log; // my_log.AddLog("Hello %d world\n", 123); // my_log.Draw("title"); struct ExampleAppLog { ImGuiTextBuffer Buf; ImGuiTextFilter Filter; ImVector<int> LineOffsets; // Index to lines offset. We maintain this with AddLog() calls, allowing us to have a random access on lines bool AutoScroll; // Keep scrolling if already at the bottom ExampleAppLog() { AutoScroll = true; Clear(); } void Clear() { Buf.clear(); LineOffsets.clear(); LineOffsets.push_back(0); } void AddLog(const char* fmt, ...) IM_FMTARGS(2) { int old_size = Buf.size(); va_list args; va_start(args, fmt); Buf.appendfv(fmt, args); va_end(args); for (int new_size = Buf.size(); old_size < new_size; old_size++) if (Buf[old_size] == '\n') LineOffsets.push_back(old_size + 1); } void Draw(const char* title, bool* p_open = NULL) { if (!ImGui::Begin(title, p_open)) { ImGui::End(); return; } // Options menu if (ImGui::BeginPopup("Options")) { ImGui::Checkbox("Auto-scroll", &AutoScroll); ImGui::EndPopup(); } // Main window if (ImGui::Button("Options")) ImGui::OpenPopup("Options"); ImGui::SameLine(); bool clear = ImGui::Button("Clear"); ImGui::SameLine(); bool copy = ImGui::Button("Copy"); ImGui::SameLine(); Filter.Draw("Filter", -100.0f); ImGui::Separator(); ImGui::BeginChild("scrolling", ImVec2(0,0), false, ImGuiWindowFlags_HorizontalScrollbar); if (clear) Clear(); if (copy) ImGui::LogToClipboard(); ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(0, 0)); const char* buf = Buf.begin(); const char* buf_end = Buf.end(); if (Filter.IsActive()) { // In this example we don't use the clipper when Filter is enabled. // This is because we don't have a random access on the result on our filter. // A real application processing logs with ten of thousands of entries may want to store the result of search/filter. // especially if the filtering function is not trivial (e.g. reg-exp). for (int line_no = 0; line_no < LineOffsets.Size; line_no++) { const char* line_start = buf + LineOffsets[line_no]; const char* line_end = (line_no + 1 < LineOffsets.Size) ? (buf + LineOffsets[line_no + 1] - 1) : buf_end; if (Filter.PassFilter(line_start, line_end)) ImGui::TextUnformatted(line_start, line_end); } } else { // The simplest and easy way to display the entire buffer: // ImGui::TextUnformatted(buf_begin, buf_end); // And it'll just work. TextUnformatted() has specialization for large blob of text and will fast-forward to skip non-visible lines. // Here we instead demonstrate using the clipper to only process lines that are within the visible area. // If you have tens of thousands of items and their processing cost is non-negligible, coarse clipping them on your side is recommended. // Using ImGuiListClipper requires A) random access into your data, and B) items all being the same height, // both of which we can handle since we an array pointing to the beginning of each line of text. // When using the filter (in the block of code above) we don't have random access into the data to display anymore, which is why we don't use the clipper. // Storing or skimming through the search result would make it possible (and would be recommended if you want to search through tens of thousands of entries) ImGuiListClipper clipper; clipper.Begin(LineOffsets.Size); while (clipper.Step()) { for (int line_no = clipper.DisplayStart; line_no < clipper.DisplayEnd; line_no++) { const char* line_start = buf + LineOffsets[line_no]; const char* line_end = (line_no + 1 < LineOffsets.Size) ? (buf + LineOffsets[line_no + 1] - 1) : buf_end; ImGui::TextUnformatted(line_start, line_end); } } clipper.End(); } ImGui::PopStyleVar(); if (AutoScroll && ImGui::GetScrollY() >= ImGui::GetScrollMaxY()) ImGui::SetScrollHereY(1.0f); ImGui::EndChild(); ImGui::End(); } }; // Demonstrate creating a simple log window with basic filtering. static void ShowExampleAppLog(bool* p_open) { static ExampleAppLog log; // For the demo: add a debug button _BEFORE_ the normal log window contents // We take advantage of a rarely used feature: multiple calls to Begin()/End() are appending to the _same_ window. // Most of the contents of the window will be added by the log.Draw() call. ImGui::SetNextWindowSize(ImVec2(500, 400), ImGuiCond_FirstUseEver); ImGui::Begin("Example: Log", p_open); if (ImGui::SmallButton("[Debug] Add 5 entries")) { static int counter = 0; for (int n = 0; n < 5; n++) { const char* categories[3] = { "info", "warn", "error" }; const char* words[] = { "Bumfuzzled", "Cattywampus", "Snickersnee", "Abibliophobia", "Absquatulate", "Nincompoop", "Pauciloquent" }; log.AddLog("[%05d] [%s] Hello, current time is %.1f, here's a word: '%s'\n", ImGui::GetFrameCount(), categories[counter % IM_ARRAYSIZE(categories)], ImGui::GetTime(), words[counter % IM_ARRAYSIZE(words)]); counter++; } } ImGui::End(); // Actually call in the regular Log helper (which will Begin() into the same window as we just did) log.Draw("Example: Log", p_open); } //----------------------------------------------------------------------------- // [SECTION] Example App: Simple Layout / ShowExampleAppLayout() //----------------------------------------------------------------------------- // Demonstrate create a window with multiple child windows. static void ShowExampleAppLayout(bool* p_open) { ImGui::SetNextWindowSize(ImVec2(500, 440), ImGuiCond_FirstUseEver); if (ImGui::Begin("Example: Simple layout", p_open, ImGuiWindowFlags_MenuBar)) { if (ImGui::BeginMenuBar()) { if (ImGui::BeginMenu("File")) { if (ImGui::MenuItem("Close")) *p_open = false; ImGui::EndMenu(); } ImGui::EndMenuBar(); } // left static int selected = 0; ImGui::BeginChild("left pane", ImVec2(150, 0), true); for (int i = 0; i < 100; i++) { char label[128]; sprintf(label, "MyObject %d", i); if (ImGui::Selectable(label, selected == i)) selected = i; } ImGui::EndChild(); ImGui::SameLine(); // right ImGui::BeginGroup(); ImGui::BeginChild("item view", ImVec2(0, -ImGui::GetFrameHeightWithSpacing())); // Leave room for 1 line below us ImGui::Text("MyObject: %d", selected); ImGui::Separator(); if (ImGui::BeginTabBar("##Tabs", ImGuiTabBarFlags_None)) { if (ImGui::BeginTabItem("Description")) { ImGui::TextWrapped("Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. "); ImGui::EndTabItem(); } if (ImGui::BeginTabItem("Details")) { ImGui::Text("ID: 0123456789"); ImGui::EndTabItem(); } ImGui::EndTabBar(); } ImGui::EndChild(); if (ImGui::Button("Revert")) {} ImGui::SameLine(); if (ImGui::Button("Save")) {} ImGui::EndGroup(); } ImGui::End(); } //----------------------------------------------------------------------------- // [SECTION] Example App: Property Editor / ShowExampleAppPropertyEditor() //----------------------------------------------------------------------------- // Demonstrate create a simple property editor. static void ShowExampleAppPropertyEditor(bool* p_open) { ImGui::SetNextWindowSize(ImVec2(430,450), ImGuiCond_FirstUseEver); if (!ImGui::Begin("Example: Property editor", p_open)) { ImGui::End(); return; } HelpMarker("This example shows how you may implement a property editor using two columns.\nAll objects/fields data are dummies here.\nRemember that in many simple cases, you can use ImGui::SameLine(xxx) to position\nyour cursor horizontally instead of using the Columns() API."); ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, ImVec2(2,2)); ImGui::Columns(2); ImGui::Separator(); struct funcs { static void ShowDummyObject(const char* prefix, int uid) { ImGui::PushID(uid); // Use object uid as identifier. Most commonly you could also use the object pointer as a base ID. ImGui::AlignTextToFramePadding(); // Text and Tree nodes are less high than regular widgets, here we add vertical spacing to make the tree lines equal high. bool node_open = ImGui::TreeNode("Object", "%s_%u", prefix, uid); ImGui::NextColumn(); ImGui::AlignTextToFramePadding(); ImGui::Text("my sailor is rich"); ImGui::NextColumn(); if (node_open) { static float dummy_members[8] = { 0.0f,0.0f,1.0f,3.1416f,100.0f,999.0f }; for (int i = 0; i < 8; i++) { ImGui::PushID(i); // Use field index as identifier. if (i < 2) { ShowDummyObject("Child", 424242); } else { // Here we use a TreeNode to highlight on hover (we could use e.g. Selectable as well) ImGui::AlignTextToFramePadding(); ImGui::TreeNodeEx("Field", ImGuiTreeNodeFlags_Leaf | ImGuiTreeNodeFlags_NoTreePushOnOpen | ImGuiTreeNodeFlags_Bullet, "Field_%d", i); ImGui::NextColumn(); ImGui::SetNextItemWidth(-1); if (i >= 5) ImGui::InputFloat("##value", &dummy_members[i], 1.0f); else ImGui::DragFloat("##value", &dummy_members[i], 0.01f); ImGui::NextColumn(); } ImGui::PopID(); } ImGui::TreePop(); } ImGui::PopID(); } }; // Iterate dummy objects with dummy members (all the same data) for (int obj_i = 0; obj_i < 3; obj_i++) funcs::ShowDummyObject("Object", obj_i); ImGui::Columns(1); ImGui::Separator(); ImGui::PopStyleVar(); ImGui::End(); } //----------------------------------------------------------------------------- // [SECTION] Example App: Long Text / ShowExampleAppLongText() //----------------------------------------------------------------------------- // Demonstrate/test rendering huge amount of text, and the incidence of clipping. static void ShowExampleAppLongText(bool* p_open) { ImGui::SetNextWindowSize(ImVec2(520,600), ImGuiCond_FirstUseEver); if (!ImGui::Begin("Example: Long text display", p_open)) { ImGui::End(); return; } static int test_type = 0; static ImGuiTextBuffer log; static int lines = 0; ImGui::Text("Printing unusually long amount of text."); ImGui::Combo("Test type", &test_type, "Single call to TextUnformatted()\0Multiple calls to Text(), clipped\0Multiple calls to Text(), not clipped (slow)\0"); ImGui::Text("Buffer contents: %d lines, %d bytes", lines, log.size()); if (ImGui::Button("Clear")) { log.clear(); lines = 0; } ImGui::SameLine(); if (ImGui::Button("Add 1000 lines")) { for (int i = 0; i < 1000; i++) log.appendf("%i The quick brown fox jumps over the lazy dog\n", lines+i); lines += 1000; } ImGui::BeginChild("Log"); switch (test_type) { case 0: // Single call to TextUnformatted() with a big buffer ImGui::TextUnformatted(log.begin(), log.end()); break; case 1: { // Multiple calls to Text(), manually coarsely clipped - demonstrate how to use the ImGuiListClipper helper. ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(0,0)); ImGuiListClipper clipper(lines); while (clipper.Step()) for (int i = clipper.DisplayStart; i < clipper.DisplayEnd; i++) ImGui::Text("%i The quick brown fox jumps over the lazy dog", i); ImGui::PopStyleVar(); break; } case 2: // Multiple calls to Text(), not clipped (slow) ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(0,0)); for (int i = 0; i < lines; i++) ImGui::Text("%i The quick brown fox jumps over the lazy dog", i); ImGui::PopStyleVar(); break; } ImGui::EndChild(); ImGui::End(); } //----------------------------------------------------------------------------- // [SECTION] Example App: Auto Resize / ShowExampleAppAutoResize() //----------------------------------------------------------------------------- // Demonstrate creating a window which gets auto-resized according to its content. static void ShowExampleAppAutoResize(bool* p_open) { if (!ImGui::Begin("Example: Auto-resizing window", p_open, ImGuiWindowFlags_AlwaysAutoResize)) { ImGui::End(); return; } static int lines = 10; ImGui::Text("Window will resize every-frame to the size of its content.\nNote that you probably don't want to query the window size to\noutput your content because that would create a feedback loop."); ImGui::SliderInt("Number of lines", &lines, 1, 20); for (int i = 0; i < lines; i++) ImGui::Text("%*sThis is line %d", i * 4, "", i); // Pad with space to extend size horizontally ImGui::End(); } //----------------------------------------------------------------------------- // [SECTION] Example App: Constrained Resize / ShowExampleAppConstrainedResize() //----------------------------------------------------------------------------- // Demonstrate creating a window with custom resize constraints. static void ShowExampleAppConstrainedResize(bool* p_open) { struct CustomConstraints // Helper functions to demonstrate programmatic constraints { static void Square(ImGuiSizeCallbackData* data) { data->DesiredSize.x = data->DesiredSize.y = (data->DesiredSize.x > data->DesiredSize.y ? data->DesiredSize.x : data->DesiredSize.y); } static void Step(ImGuiSizeCallbackData* data) { float step = (float)(int)(intptr_t)data->UserData; data->DesiredSize = ImVec2((int)(data->DesiredSize.x / step + 0.5f) * step, (int)(data->DesiredSize.y / step + 0.5f) * step); } }; static bool auto_resize = false; static int type = 0; static int display_lines = 10; if (type == 0) ImGui::SetNextWindowSizeConstraints(ImVec2(-1, 0), ImVec2(-1, FLT_MAX)); // Vertical only if (type == 1) ImGui::SetNextWindowSizeConstraints(ImVec2(0, -1), ImVec2(FLT_MAX, -1)); // Horizontal only if (type == 2) ImGui::SetNextWindowSizeConstraints(ImVec2(100, 100), ImVec2(FLT_MAX, FLT_MAX)); // Width > 100, Height > 100 if (type == 3) ImGui::SetNextWindowSizeConstraints(ImVec2(400, -1), ImVec2(500, -1)); // Width 400-500 if (type == 4) ImGui::SetNextWindowSizeConstraints(ImVec2(-1, 400), ImVec2(-1, 500)); // Height 400-500 if (type == 5) ImGui::SetNextWindowSizeConstraints(ImVec2(0, 0), ImVec2(FLT_MAX, FLT_MAX), CustomConstraints::Square); // Always Square if (type == 6) ImGui::SetNextWindowSizeConstraints(ImVec2(0, 0), ImVec2(FLT_MAX, FLT_MAX), CustomConstraints::Step, (void*)(intptr_t)100); // Fixed Step ImGuiWindowFlags flags = auto_resize ? ImGuiWindowFlags_AlwaysAutoResize : 0; if (ImGui::Begin("Example: Constrained Resize", p_open, flags)) { const char* desc[] = { "Resize vertical only", "Resize horizontal only", "Width > 100, Height > 100", "Width 400-500", "Height 400-500", "Custom: Always Square", "Custom: Fixed Steps (100)", }; if (ImGui::Button("200x200")) { ImGui::SetWindowSize(ImVec2(200, 200)); } ImGui::SameLine(); if (ImGui::Button("500x500")) { ImGui::SetWindowSize(ImVec2(500, 500)); } ImGui::SameLine(); if (ImGui::Button("800x200")) { ImGui::SetWindowSize(ImVec2(800, 200)); } ImGui::SetNextItemWidth(200); ImGui::Combo("Constraint", &type, desc, IM_ARRAYSIZE(desc)); ImGui::SetNextItemWidth(200); ImGui::DragInt("Lines", &display_lines, 0.2f, 1, 100); ImGui::Checkbox("Auto-resize", &auto_resize); for (int i = 0; i < display_lines; i++) ImGui::Text("%*sHello, sailor! Making this line long enough for the example.", i * 4, ""); } ImGui::End(); } //----------------------------------------------------------------------------- // [SECTION] Example App: Simple Overlay / ShowExampleAppSimpleOverlay() //----------------------------------------------------------------------------- // Demonstrate creating a simple static window with no decoration + a context-menu to choose which corner of the screen to use. static void ShowExampleAppSimpleOverlay(bool* p_open) { const float DISTANCE = 10.0f; static int corner = 0; ImGuiIO& io = ImGui::GetIO(); if (corner != -1) { ImVec2 window_pos = ImVec2((corner & 1) ? io.DisplaySize.x - DISTANCE : DISTANCE, (corner & 2) ? io.DisplaySize.y - DISTANCE : DISTANCE); ImVec2 window_pos_pivot = ImVec2((corner & 1) ? 1.0f : 0.0f, (corner & 2) ? 1.0f : 0.0f); ImGui::SetNextWindowPos(window_pos, ImGuiCond_Always, window_pos_pivot); } ImGui::SetNextWindowBgAlpha(0.35f); // Transparent background if (ImGui::Begin("Example: Simple overlay", p_open, (corner != -1 ? ImGuiWindowFlags_NoMove : 0) | ImGuiWindowFlags_NoDecoration | ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoSavedSettings | ImGuiWindowFlags_NoFocusOnAppearing | ImGuiWindowFlags_NoNav)) { ImGui::Text("Simple overlay\n" "in the corner of the screen.\n" "(right-click to change position)"); ImGui::Separator(); if (ImGui::IsMousePosValid()) ImGui::Text("Mouse Position: (%.1f,%.1f)", io.MousePos.x, io.MousePos.y); else ImGui::Text("Mouse Position: <invalid>"); if (ImGui::BeginPopupContextWindow()) { if (ImGui::MenuItem("Custom", NULL, corner == -1)) corner = -1; if (ImGui::MenuItem("Top-left", NULL, corner == 0)) corner = 0; if (ImGui::MenuItem("Top-right", NULL, corner == 1)) corner = 1; if (ImGui::MenuItem("Bottom-left", NULL, corner == 2)) corner = 2; if (ImGui::MenuItem("Bottom-right", NULL, corner == 3)) corner = 3; if (p_open && ImGui::MenuItem("Close")) *p_open = false; ImGui::EndPopup(); } } ImGui::End(); } //----------------------------------------------------------------------------- // [SECTION] Example App: Manipulating Window Titles / ShowExampleAppWindowTitles() //----------------------------------------------------------------------------- // Demonstrate using "##" and "###" in identifiers to manipulate ID generation. // This apply to all regular items as well. Read FAQ section "How can I have multiple widgets with the same label? Can I have widget without a label? (Yes). A primer on the purpose of labels/IDs." for details. static void ShowExampleAppWindowTitles(bool*) { // By default, Windows are uniquely identified by their title. // You can use the "##" and "###" markers to manipulate the display/ID. // Using "##" to display same title but have unique identifier. ImGui::SetNextWindowPos(ImVec2(100, 100), ImGuiCond_FirstUseEver); ImGui::Begin("Same title as another window##1"); ImGui::Text("This is window 1.\nMy title is the same as window 2, but my identifier is unique."); ImGui::End(); ImGui::SetNextWindowPos(ImVec2(100, 200), ImGuiCond_FirstUseEver); ImGui::Begin("Same title as another window##2"); ImGui::Text("This is window 2.\nMy title is the same as window 1, but my identifier is unique."); ImGui::End(); // Using "###" to display a changing title but keep a static identifier "AnimatedTitle" char buf[128]; sprintf(buf, "Animated title %c %d###AnimatedTitle", "|/-\\"[(int)(ImGui::GetTime() / 0.25f) & 3], ImGui::GetFrameCount()); ImGui::SetNextWindowPos(ImVec2(100, 300), ImGuiCond_FirstUseEver); ImGui::Begin(buf); ImGui::Text("This window has a changing title."); ImGui::End(); } //----------------------------------------------------------------------------- // [SECTION] Example App: Custom Rendering using ImDrawList API / ShowExampleAppCustomRendering() //----------------------------------------------------------------------------- // Demonstrate using the low-level ImDrawList to draw custom shapes. static void ShowExampleAppCustomRendering(bool* p_open) { if (!ImGui::Begin("Example: Custom rendering", p_open)) { ImGui::End(); return; } // Tip: If you do a lot of custom rendering, you probably want to use your own geometrical types and benefit of overloaded operators, etc. // Define IM_VEC2_CLASS_EXTRA in imconfig.h to create implicit conversions between your types and ImVec2/ImVec4. // ImGui defines overloaded operators but they are internal to imgui.cpp and not exposed outside (to avoid messing with your types) // In this example we are not using the maths operators! ImDrawList* draw_list = ImGui::GetWindowDrawList(); if (ImGui::BeginTabBar("##TabBar")) { if (ImGui::BeginTabItem("Primitives")) { ImGui::PushItemWidth(-ImGui::GetFontSize() * 10); // Draw gradients // (note that those are currently exacerbating our sRGB/Linear issues) ImGui::Text("Gradients"); ImVec2 gradient_size = ImVec2(ImGui::CalcItemWidth(), ImGui::GetFrameHeight()); { ImVec2 p = ImGui::GetCursorScreenPos(); ImU32 col_a = ImGui::GetColorU32(ImVec4(0.0f, 0.0f, 0.0f, 1.0f)); ImU32 col_b = ImGui::GetColorU32(ImVec4(1.0f, 1.0f, 1.0f, 1.0f)); draw_list->AddRectFilledMultiColor(p, ImVec2(p.x + gradient_size.x, p.y + gradient_size.y), col_a, col_b, col_b, col_a); ImGui::InvisibleButton("##gradient1", gradient_size); } { ImVec2 p = ImGui::GetCursorScreenPos(); ImU32 col_a = ImGui::GetColorU32(ImVec4(0.0f, 1.0f, 0.0f, 1.0f)); ImU32 col_b = ImGui::GetColorU32(ImVec4(1.0f, 0.0f, 0.0f, 1.0f)); draw_list->AddRectFilledMultiColor(p, ImVec2(p.x + gradient_size.x, p.y + gradient_size.y), col_a, col_b, col_b, col_a); ImGui::InvisibleButton("##gradient2", gradient_size); } // Draw a bunch of primitives ImGui::Text("All primitives"); static float sz = 36.0f; static float thickness = 3.0f; static int ngon_sides = 6; static bool circle_segments_override = false; static int circle_segments_override_v = 12; static ImVec4 colf = ImVec4(1.0f, 1.0f, 0.4f, 1.0f); ImGui::DragFloat("Size", &sz, 0.2f, 2.0f, 72.0f, "%.0f"); ImGui::DragFloat("Thickness", &thickness, 0.05f, 1.0f, 8.0f, "%.02f"); ImGui::SliderInt("N-gon sides", &ngon_sides, 3, 12); ImGui::Checkbox("##circlesegmentoverride", &circle_segments_override); ImGui::SameLine(0.0f, ImGui::GetStyle().ItemInnerSpacing.x); if (ImGui::SliderInt("Circle segments", &circle_segments_override_v, 3, 40)) circle_segments_override = true; ImGui::ColorEdit4("Color", &colf.x); const ImVec2 p = ImGui::GetCursorScreenPos(); const ImU32 col = ImColor(colf); const float spacing = 10.0f; const ImDrawCornerFlags corners_none = 0; const ImDrawCornerFlags corners_all = ImDrawCornerFlags_All; const ImDrawCornerFlags corners_tl_br = ImDrawCornerFlags_TopLeft | ImDrawCornerFlags_BotRight; const int circle_segments = circle_segments_override ? circle_segments_override_v : 0; float x = p.x + 4.0f, y = p.y + 4.0f; for (int n = 0; n < 2; n++) { // First line uses a thickness of 1.0f, second line uses the configurable thickness float th = (n == 0) ? 1.0f : thickness; draw_list->AddNgon(ImVec2(x + sz*0.5f, y + sz*0.5f), sz*0.5f, col, ngon_sides, th); x += sz + spacing; // N-gon draw_list->AddCircle(ImVec2(x + sz*0.5f, y + sz*0.5f), sz*0.5f, col, circle_segments, th); x += sz + spacing; // Circle draw_list->AddRect(ImVec2(x, y), ImVec2(x + sz, y + sz), col, 0.0f, corners_none, th); x += sz + spacing; // Square draw_list->AddRect(ImVec2(x, y), ImVec2(x + sz, y + sz), col, 10.0f, corners_all, th); x += sz + spacing; // Square with all rounded corners draw_list->AddRect(ImVec2(x, y), ImVec2(x + sz, y + sz), col, 10.0f, corners_tl_br, th); x += sz + spacing; // Square with two rounded corners draw_list->AddTriangle(ImVec2(x+sz*0.5f,y), ImVec2(x+sz, y+sz-0.5f), ImVec2(x, y+sz-0.5f), col, th); x += sz + spacing; // Triangle draw_list->AddTriangle(ImVec2(x+sz*0.2f,y), ImVec2(x, y+sz-0.5f), ImVec2(x+sz*0.4f, y+sz-0.5f), col, th); x += sz*0.4f + spacing; // Thin triangle draw_list->AddLine(ImVec2(x, y), ImVec2(x + sz, y), col, th); x += sz + spacing; // Horizontal line (note: drawing a filled rectangle will be faster!) draw_list->AddLine(ImVec2(x, y), ImVec2(x, y + sz), col, th); x += spacing; // Vertical line (note: drawing a filled rectangle will be faster!) draw_list->AddLine(ImVec2(x, y), ImVec2(x + sz, y + sz), col, th); x += sz + spacing; // Diagonal line draw_list->AddBezierCurve(ImVec2(x, y), ImVec2(x + sz*1.3f, y + sz*0.3f), ImVec2(x + sz - sz*1.3f, y + sz - sz*0.3f), ImVec2(x + sz, y + sz), col, th); x = p.x + 4; y += sz + spacing; } draw_list->AddNgonFilled(ImVec2(x + sz * 0.5f, y + sz * 0.5f), sz*0.5f, col, ngon_sides); x += sz + spacing; // N-gon draw_list->AddCircleFilled(ImVec2(x + sz*0.5f, y + sz*0.5f), sz*0.5f, col, circle_segments);x += sz + spacing; // Circle draw_list->AddRectFilled(ImVec2(x, y), ImVec2(x + sz, y + sz), col); x += sz + spacing; // Square draw_list->AddRectFilled(ImVec2(x, y), ImVec2(x + sz, y + sz), col, 10.0f); x += sz + spacing; // Square with all rounded corners draw_list->AddRectFilled(ImVec2(x, y), ImVec2(x + sz, y + sz), col, 10.0f, corners_tl_br); x += sz + spacing; // Square with two rounded corners draw_list->AddTriangleFilled(ImVec2(x+sz*0.5f,y), ImVec2(x+sz, y+sz-0.5f), ImVec2(x, y+sz-0.5f), col); x += sz + spacing; // Triangle draw_list->AddTriangleFilled(ImVec2(x+sz*0.2f,y), ImVec2(x, y+sz-0.5f), ImVec2(x+sz*0.4f, y+sz-0.5f), col); x += sz*0.4f + spacing; // Thin triangle draw_list->AddRectFilled(ImVec2(x, y), ImVec2(x + sz, y + thickness), col); x += sz + spacing; // Horizontal line (faster than AddLine, but only handle integer thickness) draw_list->AddRectFilled(ImVec2(x, y), ImVec2(x + thickness, y + sz), col); x += spacing*2.0f; // Vertical line (faster than AddLine, but only handle integer thickness) draw_list->AddRectFilled(ImVec2(x, y), ImVec2(x + 1, y + 1), col); x += sz; // Pixel (faster than AddLine) draw_list->AddRectFilledMultiColor(ImVec2(x, y), ImVec2(x + sz, y + sz), IM_COL32(0, 0, 0, 255), IM_COL32(255, 0, 0, 255), IM_COL32(255, 255, 0, 255), IM_COL32(0, 255, 0, 255)); ImGui::Dummy(ImVec2((sz + spacing) * 9.8f, (sz + spacing) * 3)); ImGui::PopItemWidth(); ImGui::EndTabItem(); } if (ImGui::BeginTabItem("Canvas")) { static ImVector<ImVec2> points; static bool adding_line = false; if (ImGui::Button("Clear")) points.clear(); if (points.Size >= 2) { ImGui::SameLine(); if (ImGui::Button("Undo")) { points.pop_back(); points.pop_back(); } } ImGui::Text("Left-click and drag to add lines,\nRight-click to undo"); // Here we are using InvisibleButton() as a convenience to 1) advance the cursor and 2) allows us to use IsItemHovered() // But you can also draw directly and poll mouse/keyboard by yourself. You can manipulate the cursor using GetCursorPos() and SetCursorPos(). // If you only use the ImDrawList API, you can notify the owner window of its extends by using SetCursorPos(max). ImVec2 canvas_pos = ImGui::GetCursorScreenPos(); // ImDrawList API uses screen coordinates! ImVec2 canvas_size = ImGui::GetContentRegionAvail(); // Resize canvas to what's available if (canvas_size.x < 50.0f) canvas_size.x = 50.0f; if (canvas_size.y < 50.0f) canvas_size.y = 50.0f; draw_list->AddRectFilledMultiColor(canvas_pos, ImVec2(canvas_pos.x + canvas_size.x, canvas_pos.y + canvas_size.y), IM_COL32(50, 50, 50, 255), IM_COL32(50, 50, 60, 255), IM_COL32(60, 60, 70, 255), IM_COL32(50, 50, 60, 255)); draw_list->AddRect(canvas_pos, ImVec2(canvas_pos.x + canvas_size.x, canvas_pos.y + canvas_size.y), IM_COL32(255, 255, 255, 255)); bool adding_preview = false; ImGui::InvisibleButton("canvas", canvas_size); ImVec2 mouse_pos_in_canvas = ImVec2(ImGui::GetIO().MousePos.x - canvas_pos.x, ImGui::GetIO().MousePos.y - canvas_pos.y); if (adding_line) { adding_preview = true; points.push_back(mouse_pos_in_canvas); if (!ImGui::IsMouseDown(0)) adding_line = adding_preview = false; } if (ImGui::IsItemHovered()) { if (!adding_line && ImGui::IsMouseClicked(0)) { points.push_back(mouse_pos_in_canvas); adding_line = true; } if (ImGui::IsMouseClicked(1) && !points.empty()) { adding_line = adding_preview = false; points.pop_back(); points.pop_back(); } } draw_list->PushClipRect(canvas_pos, ImVec2(canvas_pos.x + canvas_size.x, canvas_pos.y + canvas_size.y), true); // clip lines within the canvas (if we resize it, etc.) for (int i = 0; i < points.Size - 1; i += 2) draw_list->AddLine(ImVec2(canvas_pos.x + points[i].x, canvas_pos.y + points[i].y), ImVec2(canvas_pos.x + points[i + 1].x, canvas_pos.y + points[i + 1].y), IM_COL32(255, 255, 0, 255), 2.0f); draw_list->PopClipRect(); if (adding_preview) points.pop_back(); ImGui::EndTabItem(); } if (ImGui::BeginTabItem("BG/FG draw lists")) { static bool draw_bg = true; static bool draw_fg = true; ImGui::Checkbox("Draw in Background draw list", &draw_bg); ImGui::SameLine(); HelpMarker("The Background draw list will be rendered below every Dear ImGui windows."); ImGui::Checkbox("Draw in Foreground draw list", &draw_fg); ImGui::SameLine(); HelpMarker("The Foreground draw list will be rendered over every Dear ImGui windows."); ImVec2 window_pos = ImGui::GetWindowPos(); ImVec2 window_size = ImGui::GetWindowSize(); ImVec2 window_center = ImVec2(window_pos.x + window_size.x * 0.5f, window_pos.y + window_size.y * 0.5f); if (draw_bg) ImGui::GetBackgroundDrawList()->AddCircle(window_center, window_size.x * 0.6f, IM_COL32(255, 0, 0, 200), 0, 10+4); if (draw_fg) ImGui::GetForegroundDrawList()->AddCircle(window_center, window_size.y * 0.6f, IM_COL32(0, 255, 0, 200), 0, 10); ImGui::EndTabItem(); } ImGui::EndTabBar(); } ImGui::End(); } //----------------------------------------------------------------------------- // [SECTION] Example App: Documents Handling / ShowExampleAppDocuments() //----------------------------------------------------------------------------- // Simplified structure to mimic a Document model struct MyDocument { const char* Name; // Document title bool Open; // Set when the document is open (in this demo, we keep an array of all available documents to simplify the demo) bool OpenPrev; // Copy of Open from last update. bool Dirty; // Set when the document has been modified bool WantClose; // Set when the document ImVec4 Color; // An arbitrary variable associated to the document MyDocument(const char* name, bool open = true, const ImVec4& color = ImVec4(1.0f,1.0f,1.0f,1.0f)) { Name = name; Open = OpenPrev = open; Dirty = false; WantClose = false; Color = color; } void DoOpen() { Open = true; } void DoQueueClose() { WantClose = true; } void DoForceClose() { Open = false; Dirty = false; } void DoSave() { Dirty = false; } // Display dummy contents for the Document static void DisplayContents(MyDocument* doc) { ImGui::PushID(doc); ImGui::Text("Document \"%s\"", doc->Name); ImGui::PushStyleColor(ImGuiCol_Text, doc->Color); ImGui::TextWrapped("Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."); ImGui::PopStyleColor(); if (ImGui::Button("Modify", ImVec2(100, 0))) doc->Dirty = true; ImGui::SameLine(); if (ImGui::Button("Save", ImVec2(100, 0))) doc->DoSave(); ImGui::ColorEdit3("color", &doc->Color.x); // Useful to test drag and drop and hold-dragged-to-open-tab behavior. ImGui::PopID(); } // Display context menu for the Document static void DisplayContextMenu(MyDocument* doc) { if (!ImGui::BeginPopupContextItem()) return; char buf[256]; sprintf(buf, "Save %s", doc->Name); if (ImGui::MenuItem(buf, "CTRL+S", false, doc->Open)) doc->DoSave(); if (ImGui::MenuItem("Close", "CTRL+W", false, doc->Open)) doc->DoQueueClose(); ImGui::EndPopup(); } }; struct ExampleAppDocuments { ImVector<MyDocument> Documents; ExampleAppDocuments() { Documents.push_back(MyDocument("Lettuce", true, ImVec4(0.4f, 0.8f, 0.4f, 1.0f))); Documents.push_back(MyDocument("Eggplant", true, ImVec4(0.8f, 0.5f, 1.0f, 1.0f))); Documents.push_back(MyDocument("Carrot", true, ImVec4(1.0f, 0.8f, 0.5f, 1.0f))); Documents.push_back(MyDocument("Tomato", false, ImVec4(1.0f, 0.3f, 0.4f, 1.0f))); Documents.push_back(MyDocument("A Rather Long Title", false)); Documents.push_back(MyDocument("Some Document", false)); } }; // [Optional] Notify the system of Tabs/Windows closure that happened outside the regular tab interface. // If a tab has been closed programmatically (aka closed from another source such as the Checkbox() in the demo, as opposed // to clicking on the regular tab closing button) and stops being submitted, it will take a frame for the tab bar to notice its absence. // During this frame there will be a gap in the tab bar, and if the tab that has disappeared was the selected one, the tab bar // will report no selected tab during the frame. This will effectively give the impression of a flicker for one frame. // We call SetTabItemClosed() to manually notify the Tab Bar or Docking system of removed tabs to avoid this glitch. // Note that this completely optional, and only affect tab bars with the ImGuiTabBarFlags_Reorderable flag. static void NotifyOfDocumentsClosedElsewhere(ExampleAppDocuments& app) { for (int doc_n = 0; doc_n < app.Documents.Size; doc_n++) { MyDocument* doc = &app.Documents[doc_n]; if (!doc->Open && doc->OpenPrev) ImGui::SetTabItemClosed(doc->Name); doc->OpenPrev = doc->Open; } } void ShowExampleAppDocuments(bool* p_open) { static ExampleAppDocuments app; // Options static bool opt_reorderable = true; static ImGuiTabBarFlags opt_fitting_flags = ImGuiTabBarFlags_FittingPolicyDefault_; bool window_contents_visible = ImGui::Begin("Example: Documents", p_open, ImGuiWindowFlags_MenuBar); if (!window_contents_visible) { ImGui::End(); return; } // Menu if (ImGui::BeginMenuBar()) { if (ImGui::BeginMenu("File")) { int open_count = 0; for (int doc_n = 0; doc_n < app.Documents.Size; doc_n++) open_count += app.Documents[doc_n].Open ? 1 : 0; if (ImGui::BeginMenu("Open", open_count < app.Documents.Size)) { for (int doc_n = 0; doc_n < app.Documents.Size; doc_n++) { MyDocument* doc = &app.Documents[doc_n]; if (!doc->Open) if (ImGui::MenuItem(doc->Name)) doc->DoOpen(); } ImGui::EndMenu(); } if (ImGui::MenuItem("Close All Documents", NULL, false, open_count > 0)) for (int doc_n = 0; doc_n < app.Documents.Size; doc_n++) app.Documents[doc_n].DoQueueClose(); if (ImGui::MenuItem("Exit", "Alt+F4")) {} ImGui::EndMenu(); } ImGui::EndMenuBar(); } // [Debug] List documents with one checkbox for each for (int doc_n = 0; doc_n < app.Documents.Size; doc_n++) { MyDocument* doc = &app.Documents[doc_n]; if (doc_n > 0) ImGui::SameLine(); ImGui::PushID(doc); if (ImGui::Checkbox(doc->Name, &doc->Open)) if (!doc->Open) doc->DoForceClose(); ImGui::PopID(); } ImGui::Separator(); // Submit Tab Bar and Tabs { ImGuiTabBarFlags tab_bar_flags = (opt_fitting_flags) | (opt_reorderable ? ImGuiTabBarFlags_Reorderable : 0); if (ImGui::BeginTabBar("##tabs", tab_bar_flags)) { if (opt_reorderable) NotifyOfDocumentsClosedElsewhere(app); // [DEBUG] Stress tests //if ((ImGui::GetFrameCount() % 30) == 0) docs[1].Open ^= 1; // [DEBUG] Automatically show/hide a tab. Test various interactions e.g. dragging with this on. //if (ImGui::GetIO().KeyCtrl) ImGui::SetTabItemSelected(docs[1].Name); // [DEBUG] Test SetTabItemSelected(), probably not very useful as-is anyway.. // Submit Tabs for (int doc_n = 0; doc_n < app.Documents.Size; doc_n++) { MyDocument* doc = &app.Documents[doc_n]; if (!doc->Open) continue; ImGuiTabItemFlags tab_flags = (doc->Dirty ? ImGuiTabItemFlags_UnsavedDocument : 0); bool visible = ImGui::BeginTabItem(doc->Name, &doc->Open, tab_flags); // Cancel attempt to close when unsaved add to save queue so we can display a popup. if (!doc->Open && doc->Dirty) { doc->Open = true; doc->DoQueueClose(); } MyDocument::DisplayContextMenu(doc); if (visible) { MyDocument::DisplayContents(doc); ImGui::EndTabItem(); } } ImGui::EndTabBar(); } } // Update closing queue static ImVector<MyDocument*> close_queue; if (close_queue.empty()) { // Close queue is locked once we started a popup for (int doc_n = 0; doc_n < app.Documents.Size; doc_n++) { MyDocument* doc = &app.Documents[doc_n]; if (doc->WantClose) { doc->WantClose = false; close_queue.push_back(doc); } } } // Display closing confirmation UI if (!close_queue.empty()) { int close_queue_unsaved_documents = 0; for (int n = 0; n < close_queue.Size; n++) if (close_queue[n]->Dirty) close_queue_unsaved_documents++; if (close_queue_unsaved_documents == 0) { // Close documents when all are unsaved for (int n = 0; n < close_queue.Size; n++) close_queue[n]->DoForceClose(); close_queue.clear(); } else { if (!ImGui::IsPopupOpen("Save?")) ImGui::OpenPopup("Save?"); if (ImGui::BeginPopupModal("Save?")) { ImGui::Text("Save change to the following items?"); ImGui::SetNextItemWidth(-1.0f); if (ImGui::ListBoxHeader("##", close_queue_unsaved_documents, 6)) { for (int n = 0; n < close_queue.Size; n++) if (close_queue[n]->Dirty) ImGui::Text("%s", close_queue[n]->Name); ImGui::ListBoxFooter(); } if (ImGui::Button("Yes", ImVec2(80, 0))) { for (int n = 0; n < close_queue.Size; n++) { if (close_queue[n]->Dirty) close_queue[n]->DoSave(); close_queue[n]->DoForceClose(); } close_queue.clear(); ImGui::CloseCurrentPopup(); } ImGui::SameLine(); if (ImGui::Button("No", ImVec2(80, 0))) { for (int n = 0; n < close_queue.Size; n++) close_queue[n]->DoForceClose(); close_queue.clear(); ImGui::CloseCurrentPopup(); } ImGui::SameLine(); if (ImGui::Button("Cancel", ImVec2(80, 0))) { close_queue.clear(); ImGui::CloseCurrentPopup(); } ImGui::EndPopup(); } } } ImGui::End(); } // End of Demo code #else void ImGui::ShowAboutWindow(bool*) {} void ImGui::ShowDemoWindow(bool*) {} void ImGui::ShowUserGuide() {} void ImGui::ShowStyleEditor(ImGuiStyle*) {} #endif #endif // #ifndef IMGUI_DISABLE
[ "joselrm890@gmail.com" ]
joselrm890@gmail.com
633328f09d5cc7dea0ef92530b95ba0f2f25efa2
325a5127e8871e36d36ce3cc61f4e936843836b2
/Random_Terrain_Generator/Utility.h
2e85f0e1fdee553c0bb305dc2b9c8c81508ea982
[ "MIT" ]
permissive
GoddessOfProphercy/Random-Terrain-Generator
f142514b7a2e2cc71ed519be39929b7ead1390a9
c329396321555a5ca5021b9b7117fc0f81d629b6
refs/heads/main
2023-09-04T01:52:58.337857
2021-11-03T09:14:16
2021-11-03T09:14:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,217
h
#ifndef _UTILITY_H_ #define _UTILITY_H_ #include <gl\glew.h> #include <glm\glm.hpp> #include <glm\gtc\type_ptr.hpp> #include <glm\gtc\matrix_transform.hpp> #include <fstream> #include <iostream> #include <string> #include <SOIL2\SOIL2.h> using namespace std; using namespace glm; struct Utility { string Read_Shader_Source(const string& filename) { ifstream file(filename, ios::in); string line = ""; string result = ""; while (!file.eof()) { getline(file, line); result += line + "\n"; } //cout << result; return result; } GLuint LoadTexture(const string& filepath) { GLuint texture_index = SOIL_load_OGL_texture(filepath.c_str(), SOIL_LOAD_AUTO, SOIL_CREATE_NEW_ID, SOIL_FLAG_INVERT_Y); if (texture_index == 0) cout << "Load Texture " << filepath << " Fail\n"; glBindTexture(GL_TEXTURE_2D, texture_index); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR); glGenerateMipmap(GL_TEXTURE_2D); if (glewIsSupported("GL_EXT_texture_filter_anisotropic")) { GLfloat anisoset = 0.0f; glGetFloatv(GL_MAX_TEXTURE_MAX_ANISOTROPY, &anisoset); glTexParameterf(GL_TEXTURE_2D, GL_MAX_TEXTURE_MAX_ANISOTROPY, anisoset); } return texture_index; } /* GLuint CreateShader(const string& vs_name, const string& fs_name) { GLint ShaderCompile; GLuint vs = glCreateShader(GL_VERTEX_SHADER); const char* vs_source = Read_Shader_Source(vs_name).c_str(); glShaderSource(vs, 1, &vs_source, NULL); glCompileShader(vs); glGetShaderiv(vs, GL_COMPILE_STATUS, &ShaderCompile); if (!ShaderCompile) { cout << "Vertex Shader Compilation Failed\n"; PrintShaderLog(vs); } GLuint fs = glCreateShader(GL_FRAGMENT_SHADER); const char* fs_source = Read_Shader_Source(fs_name).c_str(); glShaderSource(fs, 1, &fs_source, NULL); glCompileShader(fs); glGetShaderiv(fs, GL_COMPILE_STATUS, &ShaderCompile); if (!ShaderCompile) { cout << "Fragment Shader Compilation Failed\n"; PrintShaderLog(fs); } } */ GLuint CreateShader(int shaderType, const string& ShaderPath) { GLint ShaderCompiled; string ShaderSource = Read_Shader_Source(ShaderPath); const char* source = ShaderSource.c_str(); GLuint ShaderReference = glCreateShader(shaderType); glShaderSource(ShaderReference, 1, &source, NULL); glCompileShader(ShaderReference); CheckOpenGLError(); glGetShaderiv(ShaderReference, GL_COMPILE_STATUS, &ShaderCompiled); if (ShaderCompiled != 1) { if (shaderType == 35633) cout << "Vertex "; if (shaderType == 36488) cout << "Tess Control "; if (shaderType == 36487) cout << "Tess Eval "; if (shaderType == 36313) cout << "Geometry "; if (shaderType == 35632) cout << "Fragment "; cout << "shader compilation error." << endl; PrintShaderLog(ShaderReference); } return ShaderReference; } GLuint CreateProgram(const string& vs_name, const string& fs_name) { //phan nay chuyen len CreateShader /* GLuint vs = glCreateShader(GL_VERTEX_SHADER); const char* vs_source = Read_Shader_Source(vs_name).c_str(); glShaderSource(vs, 1, &vs_source, NULL); glCompileShader(vs); GLuint fs = glCreateShader(GL_FRAGMENT_SHADER); const char* fs_source = Read_Shader_Source(fs_name).c_str(); glShaderSource(fs, 1, &fs_source, NULL); glCompileShader(fs); */ GLuint vs = CreateShader(GL_VERTEX_SHADER, vs_name); GLuint fs = CreateShader(GL_FRAGMENT_SHADER, fs_name); GLuint program = glCreateProgram(); glAttachShader(program, vs); glAttachShader(program, fs); //glLinkProgram(program); program = LinkingProgram(program); return program; } //Check Errors bool CheckOpenGLError() { /* bool foundError = false; int glErr = glGetError(); widthhile (glErr != GL_NO_ERROR) { cout << "glErr: " << glErr << "\n"; foundError = true; glErr = glGetError(); } return foundError; */ bool foundError = false; int glErr = glGetError(); if (glErr != GL_NO_ERROR) { //cout << "glErr: " << glErr << "\n"; foundError = true; glErr = glGetError(); } return foundError; } void PrintShaderLog(GLuint shader) { int len = 0; int char_widthritten = 0; char* log; glGetShaderiv(shader, GL_INFO_LOG_LENGTH, &len); if (len > 0) { log = (char*)malloc(len); glGetShaderInfoLog(shader, len, &char_widthritten, log); cout << "Shader Info Log " << log << "\n"; free(log); } } void PrintProgramLog(GLuint program) { int len = 0; int char_widthritten = 0; char* log; glGetProgramiv(program, GL_INFO_LOG_LENGTH, &len); if (len > 0) { log = (char*)malloc(len); glGetProgramInfoLog(program, len, &char_widthritten, log); cout << "Program Info Log " << log << "\n"; free(log); } } GLuint LinkingProgram(GLuint program) { GLint linked; glLinkProgram(program); CheckOpenGLError(); glGetProgramiv(program, GL_LINK_STATUS, &linked); if (!linked) { cout << "linking failed!" << "\n"; PrintProgramLog(program); } return program; } }; #endif // !_UTILITY_H_
[ "noreply@github.com" ]
noreply@github.com
47d39b98a38c0985c84dc1ccd54a2bdfc94bdbf7
21c3db737a0c69f8e9d649ecf0c1aee256f143d8
/main.cpp
9e28b2a85d5074544a3e6a41a9127ab1e6dd6db0
[]
no_license
Fidelgonzales10/Unit-2-assignment
716e6ca04c11ed8b2b219dde636bb3d2994dcca6
5781c00b4d8d12a2673bcbd7d75fe1d03aaa3b5b
refs/heads/main
2023-08-27T06:47:04.889333
2021-11-05T23:18:44
2021-11-05T23:18:44
425,108,648
0
0
null
null
null
null
UTF-8
C++
false
false
3,284
cpp
//Dr_T Unit 2 COSC-1437 Starter /* Task - Top level solution folder: C_STL_Library_YourLastName create a single main.cpp that contains code samples and implementations of each of the following topics */ #include <iostream> #include <vector> #include <algorithm> #include <string> using namespace std; //Credit https://www.geeksforgeeks.org/passing-vector-constructor-c/ clarifications added class MyClassVector1 { private: vector<int> vec; public: MyClassVector1 (vector<int> v) //parameterized constructor { vec = v; } void print() { /// print the value of vector for (int i = 0; i < vec.size(); i++) { cout << vec[i] << " "; } } }; int main() { /****Section_Name***Vectors*/ //Write the base code for: 5. std::vector example vector<double> vd; //vd elments are floating point numbers vector<int> vi; //vi elements are integer numbers vector<string> vs; //vs elements are string objects //Expand this code to: //add 3 elements to the vd vector vd.push_back(1); vd.push_back(2); vd.push_back(3); vd.push_back(55.4); //add 3 elements to the vi vector // add 3 elements to the vs vector // display the 3 elements in the vd vector cout << "\nValues in vd: \n"; for(double vals : vd) { cout << vals << endl; } cout << "\nAnother way to print vector: " << endl; for(int i = 0; i < vd.size(); i++) { cout << vd[i] << endl; } //display the 3 elements in the vi vector // display the 3 elements in the vs vector /****Section_Name***Vector_as_Class_Member*/ //Credit https://www.geeksforgeeks.org/passing-vector-constructor-c/ cout << "\nVector_as_Class_Member" << endl; vector<int> vec; for (int i = 1; i <= 5; i++) vec.push_back(i); MyClassVector1 obj(vec); obj.print(); //Continue with MyClassVector2 and MyClassVector3 /****Section_Name***STL_Iterators*/ /****Section_Name*** Stack*/ //Write comments that help one better understand what the code is doing. /****Section_Name**** Set*/ //Write the code as presented in: 3. std::set //Write comments that help one better understand what the code is doing. /****Section_Name****Pair_Structure*/ //Write the code as presented in: 4. std::pair structure //Write comments that help one better understand what the code is doing. /****Section_Name**** Map_Insert*/ //Write the code as presented in: 14. std::map::insert //Write comments that help one better understand what the code is doing. /****Section_Name****Map_Summary*/ //Write the code as presented in: 16. Map summary //Write comments that help one better understand what the code is doing. /****Section_Name**** Sort_Algorithm*/ //Write the code as presented in: 23. sort example //Write comments that help one better understand what the code is doing. /****Section_Name****Predicate_Algorithm*/ //Write the code as presented in: 25. count_if and predicate function //Write comments that help one better understand what the code is doing. return 0; }
[ "92833979+Fidelgonzales10@users.noreply.github.com" ]
92833979+Fidelgonzales10@users.noreply.github.com
8f4f874e4fb050170cc5db56c44a406e11f6aea4
c9cf0586ace11aa32fa67606d237a130a06364ee
/circular-cylinder-3-40/20.75/U
c0074a8da32d7bcddde919978b6bacb92b1cf97c
[]
no_license
jezvonek/CFD-Final-Project
c74cfa21f22545c27d97d85cf30eb6dc8c824dc1
7c9a7fb032d74f20888effa0a0b75b212bf899f4
refs/heads/master
2022-07-05T14:43:52.967657
2020-05-14T03:40:56
2020-05-14T03:40:56
262,370,756
1
1
null
null
null
null
UTF-8
C++
false
false
544,280
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v1912 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volVectorField; location "20.75"; object U; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 1 -1 0 0 0 0]; internalField nonuniform List<vector> 19200 ( (0.63615 -19.3856 -7.87796e-20) (0.140046 -18.595 0) (0.331664 -17.9776 0) (0.326312 -17.4894 0) (0.362904 -17.063 0) (0.404805 -16.6657 0) (0.442323 -16.2802 -1.53992e-20) (0.476709 -15.8982 1.51023e-20) (0.507936 -15.5171 0) (0.535784 -15.1373 0) (0.560408 -14.7606 -2.20627e-20) (0.582133 -14.3892 1.3039e-21) (0.601324 -14.0252 1.99778e-20) (0.618348 -13.6706 0) (0.633542 -13.3265 1.60777e-20) (0.647208 -12.9939 -8.97595e-22) (0.6596 -12.6732 -1.46363e-20) (0.670929 -12.3645 0) (0.681365 -12.0678 0) (0.691047 -11.7829 0) (0.700084 -11.5092 0) (0.70857 -11.2465 0) (0.716584 -10.9941 8.98043e-21) (0.724201 -10.7516 -8.83703e-21) (0.731495 -10.5181 0) (0.738527 -10.293 0) (0.745333 -10.0751 -1.37095e-20) (0.752051 -9.86335 1.35014e-20) (0.759017 -9.65611 0) (0.765256 -9.45167 0) (1.14286 -19.3692 -1.0312e-19) (0.628824 -18.6076 5.19977e-20) (0.804485 -17.9961 0) (0.786445 -17.5146 0) (0.811752 -17.0911 0) (0.842955 -16.6943 0) (0.869947 -16.308 -1.26153e-19) (0.893829 -15.9244 6.07752e-20) (0.914541 -15.5412 -1.83483e-21) (0.931896 -15.1591 -3.17168e-21) (0.946121 -14.7801 -9.16999e-20) (0.957611 -14.4067 8.45542e-20) (0.966799 -14.041 -4.02175e-20) (0.974099 -13.6847 0) (0.979887 -13.3393 0) (0.984484 -13.0056 0) (0.988153 -12.6839 0) (0.991106 -12.3745 0) (0.993505 -12.0772 0) (0.995478 -11.7917 0) (0.997121 -11.5176 -2.14723e-20) (0.998512 -11.2545 0) (0.999712 -11.0018 -3.62335e-20) (1.00078 -10.759 3.5655e-20) (1.00177 -10.5255 -3.16235e-20) (1.00273 -10.3003 3.11312e-20) (1.00365 -10.0825 0) (1.00467 -9.87076 2.59323e-20) (1.00622 -9.66363 -2.55437e-20) (1.00699 -9.45928 2.39745e-20) (1.65035 -19.3406 -2.12517e-19) (1.11806 -18.6075 -9.61121e-20) (1.27828 -18.002 5.92161e-21) (1.24789 -17.5276 8.65289e-20) (1.26207 -17.1071 0) (1.28263 -16.7111 -1.35812e-19) (1.29907 -16.3242 7.26765e-20) (1.31237 -15.9391 1.22273e-19) (1.32246 -15.554 -5.48408e-20) (1.3292 -15.1699 -9.69836e-20) (1.33291 -14.789 9.51683e-20) (1.33406 -14.4138 0) (1.33315 -14.0466 -7.61676e-20) (1.33064 -13.689 7.47895e-20) (1.32696 -13.3426 -6.73341e-20) (1.32242 -13.008 0) (1.31732 -12.6857 0) (1.31186 -12.3757 0) (1.30618 -12.078 0) (1.30042 -11.7921 9.01456e-20) (1.29464 -11.5178 -6.71778e-20) (1.28891 -11.2545 7.83081e-20) (1.28328 -11.0018 -7.70416e-20) (1.27778 -10.7589 -6.82647e-20) (1.27246 -10.5254 1.31004e-19) (1.26732 -10.3003 -1.22525e-19) (1.26234 -10.0827 5.87852e-20) (1.25767 -9.87126 0) (1.25379 -9.6644 2.52723e-20) (1.24903 -9.46032 0) (2.15632 -19.2992 -4.1605e-19) (1.60693 -18.5947 2.10095e-19) (1.75247 -17.9953 -1.77529e-19) (1.71025 -17.5282 1.15541e-20) (1.71349 -17.111 1.59252e-19) (1.72346 -16.7159 0) (1.72934 -16.3286 0) (1.73198 -15.9423 0) (1.73134 -15.5556 3.24683e-19) (1.72737 -15.1698 -6.40189e-21) (1.72046 -14.7873 -9.57474e-20) (1.71117 -14.4106 -1.65965e-19) (1.70008 -14.0421 1.62927e-19) (1.68769 -13.6835 1.41798e-19) (1.67447 -13.3363 -7.19291e-20) (1.66076 -13.0011 0) (1.64685 -12.6784 0) (1.63293 -12.3681 0) (1.61916 -12.0702 0) (1.60564 -11.7843 0) (1.59242 -11.51 8.46422e-20) (1.57956 -11.2467 -8.32557e-20) (1.56708 -10.994 0) (1.55501 -10.7513 -6.88485e-20) (1.54336 -10.5179 1.32139e-19) (1.53212 -10.2931 -1.23616e-19) (1.52125 -10.0758 5.9316e-20) (1.51089 -9.86484 5.28686e-20) (1.50158 -9.6584 -1.26938e-19) (1.49125 -9.45477 -4.65612e-20) (2.66137 -19.2451 2.13284e-19) (2.09577 -18.5694 4.01211e-19) (2.22698 -17.9762 3.70276e-19) (2.17326 -17.5166 1.63354e-19) (2.16573 -17.1027 2.9982e-19) (2.16515 -16.7087 3.90572e-22) (2.16043 -16.3212 2.69763e-19) (2.15234 -15.9339 3.63624e-19) (2.14088 -15.5459 1.1094e-19) (2.12609 -15.1586 2.03055e-19) (2.10846 -14.7747 6.14129e-21) (2.08865 -14.3969 1.77606e-19) (2.0673 -14.0274 5.10847e-21) (2.04497 -13.6682 4.41593e-19) (2.02216 -13.3204 -4.08764e-19) (1.99924 -12.9849 2.56279e-19) (1.97648 -12.6621 0) (1.9541 -12.3518 0) (1.93221 -12.0539 1.01337e-19) (1.91091 -11.7681 0) (1.89024 -11.4939 8.78882e-20) (1.87024 -11.2309 7.95681e-20) (1.85091 -10.9784 -7.82812e-20) (1.83225 -10.736 7.14873e-20) (1.81428 -10.503 0) (1.79695 -10.2786 0) (1.78019 -10.0619 5.85884e-20) (1.76415 -9.85146 5.49106e-20) (1.74944 -9.64561 4.8626e-20) (1.73352 -9.44261 -1.03673e-19) (3.16498 -19.178 -2.14812e-19) (2.5842 -18.5314 -4.0121e-19) (2.70146 -17.9447 -5.49716e-19) (2.63658 -17.4927 -1.52597e-19) (2.61845 -17.0822 -2.89323e-19) (2.60735 -16.6895 1.065e-20) (2.592 -16.3019 -2.61187e-19) (2.57311 -15.9139 -2.39932e-19) (2.55074 -15.5248 -2.20612e-19) (2.52504 -15.1364 -4.00515e-19) (2.4966 -14.7514 1.28236e-20) (2.46619 -14.3727 3.5228e-19) (2.43451 -14.0026 -1.54276e-19) (2.4022 -13.6429 1.53348e-19) (2.36976 -13.295 4.06759e-19) (2.33759 -12.9594 -1.29851e-19) (2.30597 -12.6367 0) (2.27509 -12.3266 1.09724e-19) (2.24508 -12.029 1.98708e-19) (2.216 -11.7436 -2.84054e-19) (2.18788 -11.4698 9.344e-20) (2.16073 -11.2071 2.42957e-19) (2.13455 -10.9551 6.9098e-20) (2.10932 -10.7132 -2.86786e-19) (2.08503 -10.4807 2.05168e-19) (2.06162 -10.2569 0) (2.03899 -10.0408 5.04323e-22) (2.01731 -9.83111 1.08165e-19) (1.99721 -9.62601 -2.6079e-21) (1.97571 -9.42384 9.9844e-20) (3.66692 -19.0979 4.10538e-19) (3.07202 -18.4808 -4.2645e-19) (3.17568 -17.9007 0) (3.09994 -17.4563 -3.42214e-19) (3.07133 -17.0495 -3.02729e-19) (3.04974 -16.6581 -2.68626e-19) (3.02372 -16.2708 2.72372e-19) (2.99396 -15.8823 0) (2.9606 -15.4923 -2.23092e-19) (2.9239 -15.103 0) (2.88458 -14.7173 -3.77454e-19) (2.84349 -14.338 -3.48244e-19) (2.80143 -13.9676 -1.60362e-19) (2.75908 -13.6078 -1.48296e-19) (2.71699 -13.2599 1.30431e-19) (2.67555 -12.9246 -3.90273e-19) (2.63505 -12.6022 0) (2.59568 -12.2926 -1.09724e-19) (2.55754 -11.9956 6.98631e-22) (2.52068 -11.7107 -9.5004e-20) (2.48511 -11.4374 0) (2.45083 -11.1754 7.89972e-20) (2.4178 -10.924 -2.3608e-19) (2.38601 -10.6827 5.60806e-22) (2.35542 -10.4509 6.4625e-20) (2.32595 -10.2278 -6.3425e-21) (2.29747 -10.0126 -6.49697e-20) (2.27018 -9.8038 -2.78108e-19) (2.24475 -9.59961 5.50385e-20) (2.21768 -9.39846 0) (4.16685 -19.0049 -9.90735e-22) (3.55889 -18.4174 0) (3.6493 -17.8441 -3.62624e-19) (3.563 -17.4075 1.04163e-18) (3.52406 -17.0045 -1.08702e-20) (3.492 -16.6147 2.78448e-19) (3.45527 -16.2278 5.21897e-19) (3.41457 -15.839 -1.58041e-20) (3.37013 -15.4484 -8.09469e-21) (3.32234 -15.0586 1.99705e-19) (3.27206 -14.6724 -3.74978e-19) (3.22024 -14.2928 5.36085e-19) (3.16776 -13.9223 -3.14222e-19) (3.11535 -13.5627 3.08537e-19) (3.06357 -13.2152 -2.69394e-19) (3.01285 -12.8804 1.47564e-20) (2.96347 -12.5586 2.4552e-19) (2.91561 -12.2498 0) (2.86934 -11.9535 9.80078e-20) (2.82471 -11.6694 -1.9738e-19) (2.78171 -11.397 1.74396e-19) (2.7403 -11.1357 -8.75984e-21) (2.70045 -10.8851 -1.60147e-19) (2.6621 -10.6446 -7.26177e-20) (2.62523 -10.4137 0) (2.58973 -10.1915 6.41062e-20) (2.55544 -9.97726 0) (2.52259 -9.76953 0) (2.49187 -9.56642 0) (2.45926 -9.36651 0) (4.66443 -18.8989 -8.74208e-19) (4.04451 -18.3412 8.18601e-19) (4.12203 -17.775 -7.55779e-19) (4.02545 -17.3463 -3.43979e-19) (3.97629 -16.9471 9.29091e-21) (3.93378 -16.5591 1.07518e-20) (3.88631 -16.1727 -2.6546e-19) (3.83459 -15.7839 0) (3.779 -15.3931 0) (3.72006 -15.003 -1.3619e-20) (3.65875 -14.6166 -3.94081e-19) (3.59615 -14.2371 6.95099e-19) (3.5332 -13.8669 -1.96008e-20) (3.4707 -13.5078 -3.10326e-19) (3.40923 -13.1609 2.7963e-19) (3.34923 -12.8269 -2.51432e-19) (3.29097 -12.506 4.80565e-19) (3.23462 -12.1981 -2.29496e-19) (3.18025 -11.9028 0) (3.12787 -11.6198 5.64305e-21) (3.07744 -11.3483 9.55431e-21) (3.02893 -11.0881 3.96987e-21) (2.98227 -10.8385 0) (2.9374 -10.599 0) (2.89427 -10.369 0) (2.85277 -10.1479 -6.41062e-20) (2.81271 -9.93482 0) (2.77434 -9.72832 2.2095e-19) (2.7384 -9.52646 -1.01496e-20) (2.70029 -9.32801 -4.20192e-19) (5.15932 -18.7799 1.31081e-18) (4.52855 -18.2523 -4.20142e-19) (4.59351 -17.6932 -3.94218e-19) (4.48695 -17.2726 0) (4.42769 -16.8774 0) (4.37474 -16.4913 0) (4.31648 -16.1058 0) (4.2537 -15.7172 -9.6923e-19) (4.18688 -15.3264 4.67262e-19) (4.11672 -14.9362 4.15218e-19) (4.04433 -14.5501 0) (3.9709 -14.1709 -3.53195e-19) (3.89747 -13.8013 -3.17834e-19) (3.82485 -13.4429 1.78942e-20) (3.75369 -13.097 9.29986e-21) (3.68441 -12.7641 -2.52957e-19) (3.61729 -12.4444 2.48544e-19) (3.55247 -12.1377 -2.18508e-19) (3.49001 -11.8436 2.1479e-19) (3.4299 -11.5618 -1.93946e-19) (3.37208 -11.2916 -1.82049e-19) (3.31649 -11.0325 4.98999e-19) (3.26305 -10.7841 -4.83662e-19) (3.21169 -10.5458 2.88679e-19) (3.16234 -10.317 -2.84127e-19) (3.11486 -10.0971 0) (3.06908 -9.88531 0) (3.02525 -9.68019 -1.14502e-19) (2.98415 -9.47975 0) (2.94059 -9.28298 -3.1334e-19) (5.6512 -18.6481 -4.6264e-19) (5.01066 -18.1507 -3.41484e-20) (5.06343 -17.5989 3.67062e-19) (4.94715 -17.1863 -3.37002e-19) (4.87792 -16.7953 -3.09567e-19) (4.81454 -16.4113 5.87128e-19) (4.74547 -16.0268 -1.81966e-20) (4.67155 -15.6387 -4.96736e-19) (4.59344 -15.2482 4.69642e-19) (4.51199 -14.8584 4.05859e-19) (4.42848 -14.4727 -7.85029e-19) (4.3442 -14.0942 3.56992e-19) (4.26025 -13.7255 -3.2992e-19) (4.17752 -13.3682 0) (4.09667 -13.0235 0) (4.01812 -12.692 -5.16806e-19) (3.94216 -12.3737 2.57261e-19) (3.8689 -12.0684 -2.14069e-19) (3.79838 -11.7759 1.14115e-20) (3.73057 -11.4955 4.81619e-21) (3.66539 -11.2268 3.65287e-19) (3.60276 -10.9691 1.61415e-19) (3.54257 -10.722 -1.68333e-19) (3.48475 -10.485 0) (3.42921 -10.2576 2.72258e-19) (3.37581 -10.0391 -1.36861e-19) (3.32435 -9.82875 0) (3.27512 -9.62518 1.14502e-19) (3.22893 -9.42634 3.19266e-19) (3.18 -9.23145 -1.12253e-19) (6.13971 -18.5034 4.16401e-19) (5.49051 -18.0362 -3.42185e-20) (5.53144 -17.4919 -2.44406e-20) (5.40573 -17.0876 -3.62474e-19) (5.32662 -16.7008 6.39924e-19) (5.25284 -16.319 -1.15704e-18) (5.17291 -15.9358 1.09788e-18) (5.0878 -15.5485 4.81167e-19) (4.99834 -15.1586 -2.91902e-20) (4.90557 -14.7694 -2.64833e-20) (4.81089 -14.3845 -1.35244e-20) (4.71572 -14.0071 -9.5071e-21) (4.62126 -13.6395 -3.32515e-19) (4.52842 -13.2836 1.80189e-20) (4.43789 -12.9405 1.64075e-20) (4.3501 -12.6106 5.33235e-19) (4.26532 -12.294 -2.43643e-19) (4.18365 -11.9905 2.26526e-19) (4.10511 -11.6996 4.11967e-19) (4.02964 -11.4209 -2.08588e-19) (3.95714 -11.1538 -1.83239e-19) (3.88749 -10.8978 1.71077e-19) (3.8206 -10.6523 0) (3.75636 -10.4168 -2.92814e-19) (3.69467 -10.1908 1.39728e-20) (3.63539 -9.9739 1.38798e-19) (3.57831 -9.76518 2.41075e-19) (3.52375 -9.56332 -2.37416e-19) (3.47255 -9.36624 1.04275e-19) (3.41832 -9.17347 -9.69401e-21) (6.62452 -18.346 2.21646e-18) (5.96775 -17.9091 4.29857e-19) (5.99719 -17.3723 -3.47e-19) (5.86232 -16.9763 7.28328e-19) (5.77346 -16.5939 1.26993e-18) (5.68928 -16.2146 -1.8986e-20) (5.59846 -15.8329 0) (5.50212 -15.4466 0) (5.40126 -15.0576 0) (5.29711 -14.6693 4.23679e-19) (5.19124 -14.2856 0) (5.08518 -13.9095 0) (4.98019 -13.5434 3.33351e-19) (4.87726 -13.1893 -2.99072e-19) (4.77707 -12.8479 5.70989e-19) (4.68007 -12.5199 -5.37636e-19) (4.58651 -12.2053 7.24736e-19) (4.49647 -11.9038 -2.40905e-19) (4.40995 -11.6149 2.13369e-19) (4.32686 -11.3381 -3.86416e-19) (4.24708 -11.0729 9.26189e-19) (4.17047 -10.8187 -3.54729e-19) (4.09691 -10.5749 4.77017e-19) (4.02629 -10.3411 -1.66739e-19) (3.95851 -10.1168 -1.48234e-19) (3.8934 -9.90159 1.33037e-19) (3.83076 -9.69464 3.67647e-19) (3.77094 -9.49466 -2.39173e-19) (3.71481 -9.2995 1.09999e-19) (3.65539 -9.10906 -1.03452e-19) (7.10529 -18.1758 3.65452e-21) (6.44203 -17.7692 3.68101e-21) (6.46034 -17.2402 7.73625e-19) (6.31658 -16.8525 -6.83579e-19) (6.21807 -16.4746 2.41024e-20) (6.12351 -16.098 -5.9273e-19) (6.02178 -15.718 -5.28397e-19) (5.91416 -15.333 1.02064e-18) (5.80186 -14.9452 0) (5.6863 -14.5582 -4.2368e-19) (5.56921 -14.1759 -3.80015e-19) (5.45225 -13.8014 3.7298e-19) (5.33675 -13.4373 -3.33352e-19) (5.22374 -13.0851 0) (5.11393 -12.7459 -2.70092e-19) (5.00776 -12.4201 8.12905e-19) (4.90546 -12.1077 -2.46419e-19) (4.8071 -11.8084 4.48829e-19) (4.71264 -11.5217 -1.0702e-18) (4.62198 -11.2471 7.98635e-19) (4.53497 -10.984 -9.30713e-19) (4.45145 -10.7318 3.56924e-19) (4.37128 -10.4899 -1.61994e-19) (4.29433 -10.258 -1.45226e-19) (4.2205 -10.0356 1.50149e-20) (4.14962 -9.82221 4.01392e-19) (4.08147 -9.6172 -5.0043e-19) (4.01647 -9.41924 2.409e-19) (3.95551 -9.22618 -1.09999e-19) (3.89102 -9.03828 1.05142e-19) (7.58169 -17.9931 -4.08443e-20) (6.91302 -17.6167 -1.72189e-18) (6.92054 -17.0955 -1.52339e-18) (6.76816 -16.7162 2.37701e-20) (6.6601 -16.343 -6.29657e-19) (6.55518 -15.9692 6.1732e-19) (6.44252 -15.5912 0) (6.32359 -15.2078 -5.02437e-19) (6.1998 -14.8214 0) (6.07281 -14.4361 0) (5.9445 -14.0555 -3.81826e-19) (5.81664 -13.6831 7.27475e-19) (5.69065 -13.3211 -3.46261e-19) (5.56759 -12.9712 6.04297e-19) (5.44819 -12.6344 -1.44125e-18) (5.33289 -12.3111 5.50466e-19) (5.2219 -12.0012 0) (5.11527 -11.7044 -6.80491e-19) (5.01294 -11.4202 4.42383e-19) (4.91476 -11.148 0) (4.82058 -10.8872 -1.87756e-19) (4.7302 -10.6372 0) (4.64346 -10.3975 1.55061e-19) (4.56024 -10.1676 -6.12725e-19) (4.48041 -9.94721 7.30404e-21) (4.40382 -9.73584 -2.62496e-19) (4.33024 -9.53292 -2.40075e-19) (4.26013 -9.33714 2.42597e-19) (4.19445 -9.14634 -2.17494e-19) (4.12502 -8.96121 2.25427e-19) (8.05337 -17.7979 0) (7.38037 -17.4516 0) (7.37746 -16.9383 7.53021e-19) (7.21672 -16.5675 -2.69589e-20) (7.09921 -16.199 -6.32424e-19) (6.98395 -15.8282 6.20033e-19) (6.86034 -15.4525 -5.33151e-19) (6.73005 -15.0709 1.02977e-18) (6.59476 -14.6864 -4.66349e-19) (6.45631 -14.303 -4.15747e-19) (6.31678 -13.9245 2.43751e-20) (6.17803 -13.5544 7.30865e-19) (6.04158 -13.1949 3.07734e-19) (5.90852 -12.8476 -3.30659e-19) (5.77958 -12.5136 -5.63171e-19) (5.6552 -12.193 5.53224e-19) (5.53558 -11.8859 2.50339e-19) (5.42073 -11.5919 0) (5.31058 -11.3104 0) (5.20495 -11.0408 2.02286e-19) (5.10364 -10.7825 5.54938e-19) (5.00646 -10.5349 -7.04349e-19) (4.91322 -10.2975 1.80605e-19) (4.82378 -10.0699 7.71026e-19) (4.73802 -9.85172 -1.5206e-19) (4.65577 -9.64254 0) (4.57682 -9.44187 2.53913e-19) (4.5017 -9.24843 0) (4.4314 -9.06007 2.19075e-19) (4.35719 -8.87792 -3.38467e-19) (8.52 -17.5903 -8.56487e-19) (7.84374 -17.2741 1.73974e-18) (7.83074 -16.7687 7.83572e-19) (7.66189 -16.4064 0) (7.53504 -16.0428 -6.57408e-19) (7.40945 -15.6752 0) (7.27487 -15.3019 -5.53894e-19) (7.13322 -14.9225 -1.46091e-20) (6.9864 -14.5401 -1.65405e-20) (6.83649 -14.1589 -4.3139e-19) (6.68574 -13.783 -3.97853e-19) (6.53614 -13.4155 -3.674e-19) (6.38925 -13.0588 0) (6.24623 -12.7145 2.97031e-19) (6.1078 -12.3834 -3.33262e-20) (5.9744 -12.0659 -5.55905e-19) (5.84621 -11.7619 -7.38956e-19) (5.72321 -11.4708 2.46109e-19) (5.6053 -11.1922 4.23851e-19) (5.49227 -10.9255 -1.01442e-18) (5.38391 -10.67 1.98993e-19) (5.27999 -10.4251 0) (5.1803 -10.1902 0) (5.0847 -9.96506 1.48002e-19) (4.99306 -9.74923 -4.43333e-19) (4.90522 -9.5424 0) (4.82099 -9.34413 -1.27381e-19) (4.74094 -9.15321 0) (4.66613 -8.96745 0) (4.58732 -8.78851 4.37233e-19) (8.98124 -17.3704 -1.80874e-18) (8.30279 -17.0841 -8.48283e-19) (8.28006 -16.5867 -7.83576e-19) (8.10334 -16.233 0) (7.96724 -15.8743 1.31751e-18) (7.83135 -15.5102 -5.85354e-19) (7.68579 -15.1396 5.90197e-19) (7.53275 -14.7626 5.27305e-19) (7.37439 -14.3827 4.70273e-19) (7.21303 -14.0041 8.50754e-19) (7.05107 -13.6309 -1.36572e-20) (6.89064 -13.2664 2.12645e-20) (6.73337 -12.9128 7.0202e-19) (6.58044 -12.5718 -6.12926e-19) (6.43259 -12.244 6.01968e-19) (6.29024 -11.9299 5.28041e-19) (6.15353 -11.6291 -1.00984e-18) (6.02245 -11.3413 9.51873e-19) (5.89685 -11.0659 -4.26041e-19) (5.77649 -10.8023 4.18883e-19) (5.66113 -10.5497 9.44151e-21) (5.55053 -10.3077 7.12309e-19) (5.44446 -10.0756 -3.41504e-19) (5.34276 -9.85308 4.60574e-19) (5.2453 -9.6398 -1.53856e-19) (5.15193 -9.4355 0) (5.06248 -9.2398 0) (4.97759 -9.05155 -3.51048e-19) (4.89838 -8.86858 4.65186e-19) (4.81514 -8.69308 1.12203e-19) (9.43679 -17.1384 1.81381e-18) (8.75719 -16.8818 0) (8.72507 -16.3924 7.62377e-19) (8.54073 -16.0473 -7.47266e-19) (8.39546 -15.6937 2.61911e-21) (8.24929 -15.3331 5.87713e-19) (8.09275 -14.9656 -5.76285e-19) (7.92831 -14.5913 0) (7.75841 -14.2141 -4.70276e-19) (7.5856 -13.8385 8.42178e-19) (7.41247 -13.4684 -8.26415e-19) (7.24126 -13.1072 3.49168e-19) (7.07366 -12.7571 -1.36947e-18) (6.91087 -12.4196 3.68252e-20) (6.75366 -12.0955 1.17573e-18) (6.60242 -11.7849 -5.61021e-19) (6.45729 -11.4877 4.93333e-19) (6.31819 -11.2034 -7.20063e-19) (6.18496 -10.9315 -4.2816e-19) (6.05733 -10.6711 4.20966e-19) (5.93505 -10.4218 -5.64087e-19) (5.81782 -10.1828 3.67113e-19) (5.70543 -9.95373 0) (5.59769 -9.73406 -1.56294e-19) (5.49447 -9.52352 0) (5.39564 -9.32193 0) (5.30104 -9.12897 -5.05866e-19) (5.21138 -8.94356 3.76971e-19) (5.12789 -8.76355 4.47389e-19) (5.04043 -8.59171 -9.08464e-19) (9.8863 -16.8943 -8.68102e-19) (9.20662 -16.6673 9.01753e-19) (9.16545 -16.1859 7.65354e-19) (8.9737 -15.8494 -7.50184e-19) (8.81936 -15.501 -6.62726e-19) (8.66293 -15.1443 -5.90006e-19) (8.49541 -14.7799 3.65871e-20) (8.31956 -14.4087 1.0298e-18) (8.13813 -14.0346 -4.8878e-19) (7.9539 -13.6622 0) (7.76963 -13.2956 0) (7.58768 -12.938 7.21074e-19) (7.40981 -12.5916 -7.07875e-19) (7.23725 -12.258 0) (7.07075 -11.9378 0) (6.9107 -11.6311 0) (6.7572 -11.3377 0) (6.61016 -11.0572 0) (6.46937 -10.7889 -4.30202e-19) (6.33455 -10.5322 4.22974e-19) (6.20539 -10.2863 3.75111e-19) (6.08161 -10.0506 -3.68967e-19) (5.96295 -9.82468 0) (5.84922 -9.60806 0) (5.7403 -9.40048 0) (5.63605 -9.20177 0) (5.53636 -9.01173 0) (5.44202 -8.82933 0) (5.35435 -8.65247 0) (5.26289 -8.48452 0) (10.3295 -16.6384 0) (9.65076 -16.4408 0) (9.60088 -15.9674 0) (9.40194 -15.6394 0) (9.23859 -15.2963 1.33552e-18) (9.07194 -14.9436 1.2254e-18) (8.89344 -14.5827 5.81172e-19) (8.70619 -14.2149 1.56758e-18) (8.51324 -13.8442 0) (8.31761 -13.4753 0) (8.12226 -13.1125 1.5918e-18) (7.92963 -12.7589 -1.49271e-18) (7.74156 -12.4166 2.07123e-18) (7.5593 -12.0871 -1.80751e-20) (7.38359 -11.7711 5.93252e-19) (7.21481 -11.4685 1.58194e-20) (7.05302 -11.1792 1.03794e-18) (6.89811 -10.9027 4.63512e-19) (6.74983 -10.6383 -1.124e-20) (6.60787 -10.3854 4.03378e-19) (6.47191 -10.1431 -3.96686e-19) (6.34162 -9.91104 0) (6.21674 -9.68851 3.38993e-19) (6.09707 -9.47517 3.17622e-19) (5.98249 -9.27074 2.97881e-19) (5.87289 -9.07512 2.79622e-19) (5.76816 -8.88818 5.12047e-19) (5.6692 -8.70897 -2.2871e-20) (5.57747 -8.53545 -9.27504e-19) (5.48225 -8.37161 1.9325e-20) (10.766 -16.3709 2.71229e-18) (10.0893 -16.2023 -9.08261e-19) (10.0311 -15.7368 8.26413e-19) (9.8251 -15.4174 -7.06462e-19) (9.65283 -15.0798 -3.32351e-18) (9.47597 -14.7312 6.39336e-19) (9.2865 -14.3741 -1.67113e-18) (9.08786 -14.0099 5.39106e-19) (8.88341 -13.6429 -3.06133e-20) (8.67643 -13.278 -9.06736e-19) (8.47004 -12.9193 -7.8331e-19) (8.26681 -12.5699 7.71662e-19) (8.06862 -12.2321 -6.90699e-19) (7.87674 -11.907 6.25538e-19) (7.69192 -11.5954 -1.20526e-18) (7.51449 -11.2973 2.13523e-21) (7.34449 -11.0123 -1.01197e-18) (7.18178 -10.7401 4.77873e-19) (7.02608 -10.4798 -2.16789e-20) (6.87705 -10.2309 -2.15655e-20) (6.73432 -9.99252 -1.16608e-18) (6.59758 -9.76417 3.72439e-19) (6.46653 -9.54528 -6.79566e-19) (6.34096 -9.33543 1.53013e-21) (6.22076 -9.13438 -8.81385e-19) (6.10583 -8.94206 2.94793e-19) (5.99611 -8.75842 -5.15e-19) (5.89258 -8.5826 5.07184e-19) (5.79689 -8.41262 2.33725e-19) (5.69816 -8.25313 0) (11.1957 -16.0918 6.13018e-21) (10.522 -15.952 1.73529e-18) (10.4557 -15.4944 -1.59752e-18) (10.2429 -15.1835 -5.13268e-21) (10.0617 -14.8514 2.68538e-18) (9.87469 -14.5072 4.24509e-21) (9.67426 -14.1541 -1.13305e-18) (9.46425 -13.7938 -1.03777e-18) (9.24834 -13.4309 9.54838e-19) (9.03006 -13.0703 -8.82631e-19) (8.81271 -12.716 -8.11405e-19) (8.59895 -12.3713 0) (8.39073 -12.0381 6.74884e-19) (8.18933 -11.7178 -1.94916e-18) (7.99548 -11.4109 0) (7.80949 -11.1174 -5.53037e-19) (7.63137 -10.8371 0) (7.46093 -10.5693 -1.82275e-21) (7.29787 -10.3133 -1.04355e-20) (7.14182 -10.0686 -4.28472e-19) (6.99238 -9.83441 8.73134e-21) (6.84922 -9.61004 7.29834e-19) (6.71202 -9.395 -9.4665e-21) (6.58057 -9.18888 3.05703e-19) (6.45477 -8.99145 -9.15793e-19) (6.33453 -8.80266 0) (6.21984 -8.62255 0) (6.11177 -8.45033 -2.49762e-19) (6.01218 -8.28411 -2.33727e-19) (5.91019 -8.12926 -4.57134e-19) (11.6182 -15.8013 -1.84408e-18) (10.9486 -15.6902 -2.57965e-18) (10.8744 -15.2403 -7.81101e-19) (10.6549 -14.9378 1.46743e-18) (10.465 -14.6114 -1.34503e-18) (10.2678 -14.2718 -1.23406e-18) (10.0564 -13.9229 1.13306e-18) (9.83505 -13.5669 1.04472e-18) (9.60771 -13.2084 0) (9.3782 -12.8524 8.82639e-19) (9.14996 -12.5029 0) (8.92578 -12.163 0) (8.70763 -11.8349 0) (8.49681 -11.5196 6.44389e-19) (8.29403 -11.2176 0) (8.09957 -10.929 0) (7.91342 -10.6535 5.03544e-19) (7.73534 -10.3904 4.67987e-19) (7.56498 -10.139 0) (7.40195 -9.89874 0) (7.24584 -9.66883 3.92065e-19) (7.09627 -9.44865 -3.66737e-19) (6.95292 -9.23768 3.43417e-19) (6.81559 -9.03552 0) (6.68416 -8.84193 3.00786e-19) (6.55858 -8.65692 0) (6.43889 -8.48059 0) (6.32627 -8.31221 5.00796e-19) (6.22278 -8.15001 0) (6.11768 -8.0001 0) (12.0334 -15.4997 0) (11.3687 -15.4168 0) (11.287 -14.9744 1.60866e-18) (11.0609 -14.6805 0) (10.8622 -14.3598 -6.54295e-19) (10.6549 -14.025 6.41476e-19) (10.4326 -13.6807 -1.10296e-18) (10.1999 -13.3293 2.09907e-18) (9.96123 -12.9755 -3.04994e-20) (9.72055 -12.6243 -8.88287e-19) (9.48153 -12.28 1.61365e-18) (9.24702 -11.9453 -2.25591e-20) (9.01906 -11.6224 7.0022e-19) (8.79894 -11.3124 0) (8.58734 -11.0157 1.18605e-18) (8.38453 -10.7322 -1.11713e-18) (8.19043 -10.4617 1.05326e-18) (8.00477 -10.2035 -9.52979e-19) (7.82718 -9.95687 9.13786e-19) (7.65723 -9.7212 4.21036e-19) (7.49446 -9.49578 1.35251e-21) (7.33849 -9.27998 3.66741e-19) (7.18899 -9.07327 -3.4342e-19) (7.04572 -8.87527 3.23116e-19) (6.9086 -8.68576 3.03244e-19) (6.77759 -8.50476 0) (6.65279 -8.33244 -2.55019e-19) (6.5355 -8.16813 2.39047e-20) (6.42797 -8.01022 1.18663e-18) (6.31983 -7.8656 -2.45413e-19) (12.4411 -15.187 9.75771e-19) (11.7822 -15.1321 -1.68222e-18) (11.6931 -14.6971 5.13781e-20) (11.4606 -14.4115 1.53229e-18) (11.2531 -14.0967 1.35813e-18) (11.0357 -13.767 6.02438e-19) (10.8025 -13.4275 1.14384e-18) (10.5586 -13.081 1.02033e-18) (10.3086 -12.7322 -2.89839e-18) (10.0568 -12.3864 1.80696e-18) (9.80714 -12.0474 -1.64131e-18) (9.56243 -11.7183 2.25005e-21) (9.32479 -11.401 -7.00227e-19) (9.09548 -11.0965 -6.50582e-19) (8.8752 -10.8052 -6.01655e-19) (8.66413 -10.5271 1.10528e-18) (8.46219 -10.2618 -1.57621e-18) (8.26905 -10.0086 0) (8.0843 -9.76691 -4.5111e-19) (7.90746 -9.53603 -4.21041e-19) (7.73807 -9.31526 -7.77885e-19) (7.57569 -9.10399 3.78161e-19) (7.42 -8.90173 6.74229e-19) (7.27074 -8.70808 -9.86582e-19) (7.12783 -8.52285 -3.03248e-19) (6.99125 -8.34609 -5.58137e-19) (6.86117 -8.17801 2.81622e-19) (6.73897 -8.01804 -7.46643e-19) (6.62709 -7.86471 2.49518e-19) (6.51563 -7.72564 -2.36515e-19) (12.8415 -14.8635 -3.75143e-20) (12.1888 -14.8362 8.29326e-19) (12.0925 -14.4083 1.62427e-18) (11.8536 -14.1311 -7.63887e-19) (11.6374 -13.8223 -1.36229e-18) (11.4098 -13.4978 -1.20461e-18) (11.1658 -13.1635 -5.5149e-19) (10.9107 -12.8222 -1.05115e-18) (10.6495 -12.4788 9.69835e-19) (10.3868 -12.1386 0) (10.1265 -11.8053 8.21875e-19) (9.87174 -11.4821 -7.59223e-19) (9.62456 -11.1706 -7.04302e-19) (9.38622 -10.8719 6.50589e-19) (9.15738 -10.5863 -6.05181e-19) (8.9382 -10.3137 -5.60513e-19) (8.72853 -10.0538 5.06903e-19) (8.528 -9.80581 -4.99612e-19) (8.33615 -9.56919 0) (8.15248 -9.34321 0) (7.97646 -9.12722 0) (7.80767 -8.92062 7.21738e-19) (7.64573 -8.72294 -7.10066e-19) (7.4904 -8.53382 0) (7.34161 -8.3531 0) (7.19936 -8.18087 0) (7.06389 -8.01743 0) (6.93666 -7.86224 -2.54077e-19) (6.82022 -7.71391 -4.68578e-19) (6.70542 -7.58042 2.47765e-19) (13.2354 -14.5302 8.97995e-19) (12.5886 -14.5292 -9.2638e-19) (12.4847 -14.1082 -2.41083e-18) (12.2397 -13.8392 2.26182e-18) (12.0146 -13.5366 -6.60259e-19) (11.7769 -13.2177 6.47323e-19) (11.5221 -12.8888 3.75657e-20) (11.2559 -12.553 3.17124e-18) (10.9836 -12.2155 -1.97329e-18) (10.71 -11.8811 8.95824e-19) (10.4394 -11.554 8.26378e-19) (10.1747 -11.2368 7.40497e-19) (9.91813 -10.9314 6.83546e-19) (9.67093 -10.6387 -6.3525e-19) (9.4337 -10.359 1.24631e-18) (9.20656 -10.0922 5.79147e-19) (8.98929 -9.8378 5.22746e-19) (8.78148 -9.59519 -4.74856e-19) (8.58263 -9.36373 9.0965e-19) (8.39215 -9.14273 -4.35433e-19) (8.20952 -8.93157 0) (8.03423 -8.72968 0) (7.8659 -8.53664 0) (7.70429 -8.35215 6.35801e-19) (7.54932 -8.17611 -6.25778e-19) (7.40108 -8.00878 0) (7.25997 -7.85055 0) (7.12762 -7.7009 2.5408e-19) (7.00682 -7.55839 -4.70559e-19) (6.88961 -7.43178 7.27752e-19) (13.6241 -14.1873 -4.07792e-20) (12.982 -14.2106 -9.29387e-19) (12.8695 -13.7964 -1.63369e-18) (12.6184 -13.536 -7.68621e-19) (12.3846 -13.2398 6.61854e-19) (12.1367 -12.9268 -1.25644e-18) (11.8712 -12.6037 -1.1503e-18) (11.5939 -12.2739 -1.05701e-18) (11.3106 -11.9424 0) (11.0264 -11.6143 -1.76606e-18) (10.7455 -11.2935 8.56038e-19) (10.4711 -10.9827 -7.42416e-19) (10.2053 -10.6837 7.30609e-19) (9.94945 -10.3973 0) (9.70401 -10.1237 -6.06794e-19) (9.46907 -9.86277 5.64976e-19) (9.24437 -9.61402 5.25385e-19) (9.02943 -9.37686 0) (8.82369 -9.15062 0) (8.62651 -8.93461 0) (8.43728 -8.72823 3.97469e-19) (8.25544 -8.53096 -3.5319e-19) (8.08052 -8.3424 7.13165e-19) (7.91219 -8.16232 3.26076e-19) (7.7503 -7.99078 0) (7.59492 -7.82824 0) (7.4467 -7.67526 -2.58861e-19) (7.30764 -7.53135 7.75169e-19) (7.18052 -7.39611 0) (7.05943 -7.28136 0) (14.0071 -13.8325 -1.83885e-18) (13.3687 -13.8788 9.32153e-19) (13.246 -13.4726 8.42758e-19) (12.9891 -13.2217 5.10574e-20) (12.7469 -12.9323 -6.59957e-19) (12.4891 -12.6255 1.25645e-18) (12.2128 -12.3086 0) (11.9246 -11.985 0) (11.6305 -11.6599 0) (11.3357 -11.3384 -8.7241e-19) (11.0448 -11.0243 2.75868e-20) (10.7608 -10.7202 0) (10.4861 -10.4278 -7.07977e-19) (10.2217 -10.1478 0) (9.96823 -9.88053 0) (9.72569 -9.62564 -1.11554e-18) (9.49375 -9.3827 1.55626e-20) (9.27188 -9.15106 0) (9.05943 -8.93007 0) (8.85573 -8.71903 4.15277e-19) (8.66008 -8.51734 -8.05861e-19) (8.47183 -8.32446 -1.0977e-18) (8.29037 -8.14 7.14252e-19) (8.11518 -7.96373 -3.2608e-19) (7.94581 -7.79578 0) (7.78197 -7.63668 0) (7.62405 -7.48694 -2.70108e-19) (7.47357 -7.34657 -2.54235e-19) (7.33103 -7.21908 4.69498e-19) (7.19293 -7.12081 -4.88126e-19) (19.9175 0.122374 9.13406e-20) (19.9025 -0.402438 1.18941e-19) (19.8744 -0.924485 3.59546e-19) (19.8345 -1.44433 4.75532e-19) (19.782 -1.96225 -2.43361e-19) (19.7164 -2.47812 2.43236e-19) (19.6374 -2.99169 2.21567e-20) (19.545 -3.50269 -4.86278e-19) (19.4394 -4.01083 9.70953e-19) (19.3206 -4.5158 -1.45648e-18) (19.1887 -5.01728 9.6962e-19) (19.0437 -5.51492 -1.43206e-18) (18.8858 -6.0084 -1.45198e-18) (18.715 -6.49739 1.01585e-21) (18.5316 -6.98155 4.47328e-20) (18.3357 -7.46057 0) (18.1274 -7.93411 9.20478e-19) (17.9068 -8.40186 1.92533e-18) (17.6742 -8.86351 -1.92335e-18) (17.4297 -9.31876 9.15938e-19) (17.1735 -9.76729 0) (16.9058 -10.2088 -2.82518e-18) (16.6268 -10.6431 3.28655e-21) (16.3367 -11.0697 1.90893e-18) (16.0357 -11.4886 0) (15.7241 -11.8994 -9.92095e-19) (15.402 -12.3021 4.73114e-20) (15.0702 -12.6965 -8.99308e-19) (14.7275 -13.0831 9.46583e-19) (14.3777 -13.4606 1.84245e-18) (19.7613 -0.370178 0) (19.731 -0.889297 -6.0325e-20) (19.6863 -1.40536 -9.24964e-21) (19.628 -1.91873 -2.4121e-19) (19.5563 -2.42967 -4.58787e-19) (19.4712 -2.93802 4.58786e-19) (19.3728 -3.44346 4.8196e-19) (19.2611 -3.94565 0) (19.1363 -4.44428 -9.15905e-19) (18.9984 -4.93902 4.71353e-19) (18.8476 -5.42955 -4.4424e-19) (18.684 -5.91552 9.50228e-19) (18.5077 -6.3966 -4.70261e-19) (18.3189 -6.87247 -9.11907e-19) (18.1177 -7.34278 1.86973e-18) (17.9043 -7.80723 0) (17.6788 -8.26549 -1.86405e-18) (17.4416 -8.71726 9.08556e-19) (17.1927 -9.16224 0) (16.9323 -9.60012 -9.51444e-19) (16.6608 -10.0306 -1.8061e-18) (16.3782 -10.4535 2.75451e-18) (16.0848 -10.8684 -1.79978e-18) (15.7809 -11.2751 1.7998e-18) (15.4666 -11.6734 0) (15.1423 -12.0632 1.71787e-18) (14.808 -12.4441 -8.49721e-19) (14.4641 -12.8162 9.3786e-19) (14.1097 -13.1795 0) (13.746 -13.5334 -9.34135e-19) (19.4932 -0.187305 0) (19.4686 -0.69692 0) (19.4297 -1.20503 -6.91329e-21) (19.3766 -1.71118 2.0453e-19) (19.3097 -2.21514 -4.23326e-19) (19.2291 -2.71658 6.27835e-19) (19.1351 -3.21516 0) (19.0277 -3.71052 4.08807e-19) (18.9071 -4.20232 8.45411e-19) (18.7734 -4.69022 4.3519e-19) (18.6267 -5.17389 -4.09487e-19) (18.4672 -5.65298 2.71799e-20) (18.295 -6.12716 3.80421e-19) (18.1103 -6.5961 -1.65636e-18) (17.9132 -7.05946 1.65555e-18) (17.704 -7.51692 -8.12646e-19) (17.4828 -7.96817 -8.39055e-19) (17.2499 -8.41289 8.39059e-19) (17.0054 -8.85077 -8.09547e-19) (16.7495 -9.28151 -8.08375e-19) (16.4825 -9.70483 0) (16.2046 -10.1205 -8.59606e-19) (15.9161 -10.5281 1.66545e-18) (15.617 -10.9275 1.65945e-18) (15.3078 -11.3185 -1.65947e-18) (14.9885 -11.7007 -5.27288e-20) (14.6594 -12.074 -1.64953e-18) (14.3206 -12.4382 2.44618e-18) (13.9721 -12.793 1.64213e-18) (13.614 -13.1378 -8.49172e-19) (19.139 -0.211143 0) (19.1161 -0.710071 0) (19.0793 -1.20799 -1.00225e-19) (19.0286 -1.70429 -2.00476e-19) (18.9642 -2.19855 -1.86998e-19) (18.8862 -2.69042 1.73541e-19) (18.7948 -3.17956 3.86679e-19) (18.69 -3.66559 -1.17394e-18) (18.572 -4.14817 3.86558e-19) (18.4409 -4.62694 0) (18.2969 -5.10155 3.73392e-19) (18.1401 -5.57165 3.99794e-19) (17.9707 -6.03689 -7.98938e-19) (17.7888 -6.49694 1.54335e-18) (17.5946 -6.95145 -2.81724e-20) (17.3884 -7.4001 2.72973e-20) (17.1702 -7.84256 -7.67473e-19) (16.9404 -8.27852 7.67477e-19) (16.6991 -8.70765 7.93502e-19) (16.4465 -9.12966 7.92353e-19) (16.1829 -9.54425 -1.52626e-18) (15.9085 -9.95114 2.26017e-18) (15.6235 -10.35 -2.63526e-21) (15.3281 -10.7407 -1.52115e-18) (15.0227 -11.1228 0) (14.7073 -11.4962 -1.5642e-18) (14.3823 -11.8606 1.51251e-18) (14.0477 -12.2157 -2.2869e-18) (13.7039 -12.5612 2.23383e-18) (13.3511 -12.8968 -5.12142e-20) (18.7097 -0.195673 0) (18.6911 -0.682794 0) (18.6588 -1.16893 0) (18.613 -1.65366 0) (18.5536 -2.13661 -3.41839e-19) (18.4807 -2.61743 3.29748e-19) (18.3945 -3.09575 3.42406e-19) (18.2951 -3.5712 1.14739e-20) (18.1826 -4.04342 -1.15612e-20) (18.0571 -4.51205 0) (17.9188 -4.97672 3.40685e-19) (17.7678 -5.43709 -1.39029e-18) (17.6044 -5.89279 -1.38883e-18) (17.4285 -6.34349 -2.4718e-20) (17.2405 -6.78884 6.81982e-19) (17.0406 -7.22851 0) (16.8288 -7.66216 7.02916e-19) (16.6054 -8.08948 -1.40497e-18) (16.3706 -8.51014 9.30948e-22) (16.1247 -8.92384 7.01128e-19) (15.8678 -9.33027 0) (15.6003 -9.72914 2.07198e-18) (15.3222 -10.1202 -2.78956e-18) (15.0338 -10.503 1.39361e-18) (14.7355 -10.8775 6.72583e-19) (14.4273 -11.2433 -1.38928e-18) (14.1096 -11.6002 0) (13.7825 -11.9479 0) (13.4463 -12.286 -7.13407e-19) (13.1011 -12.6143 -7.11726e-19) (18.2327 -0.184479 0) (18.2182 -0.657908 0) (18.1904 -1.13066 1.56789e-19) (18.1494 -1.60233 0) (18.0951 -2.07254 4.781e-22) (18.0275 -2.54089 -1.14517e-20) (17.947 -3.00702 3.0241e-19) (17.8534 -3.47055 -3.12818e-19) (17.747 -3.93111 3.02398e-19) (17.6279 -4.38833 0) (17.4962 -4.84186 -6.47663e-19) (17.352 -5.29134 1.94456e-18) (17.1954 -5.73642 2.29049e-20) (17.0268 -6.17675 6.46824e-19) (16.8461 -6.61199 -6.68621e-19) (16.6536 -7.04181 0) (16.4495 -7.46586 0) (16.2339 -7.88383 6.2342e-19) (16.0071 -8.2954 -6.22664e-19) (15.7693 -8.70024 6.21852e-19) (15.5207 -9.09807 -1.28198e-18) (15.2614 -9.48856 -6.60799e-19) (14.9918 -9.87144 2.1071e-21) (14.7121 -10.2464 6.59858e-19) (14.4224 -10.6132 -6.59406e-19) (14.1231 -10.9715 -6.12743e-19) (13.8143 -11.321 1.88551e-18) (13.4963 -11.6615 0) (13.1693 -11.9927 1.26273e-18) (12.8335 -12.3141 -1.26275e-18) (17.7316 -0.178674 1.79607e-20) (17.7205 -0.637959 1.46155e-19) (17.6966 -1.09682 -8.41376e-20) (17.6598 -1.55485 0) (17.61 -2.01165 -3.07252e-19) (17.5474 -2.46685 2.9738e-19) (17.472 -2.92006 -3.07745e-19) (17.3841 -3.37091 -5.85377e-19) (17.2835 -3.81905 -1.02816e-20) (17.1706 -4.26411 0) (17.0453 -4.70574 1.86097e-20) (16.9079 -5.14358 -1.20866e-18) (16.7584 -5.57729 0) (16.5969 -6.00652 5.74472e-19) (16.4238 -6.43094 5.74009e-19) (16.239 -6.8502 5.73489e-19) (16.0428 -7.26399 5.91237e-19) (15.8354 -7.67198 -6.30252e-19) (15.617 -8.07384 6.10557e-19) (15.3877 -8.46927 -3.8886e-20) (15.1478 -8.85795 -6.06305e-19) (14.8975 -9.23959 1.74567e-18) (14.6369 -9.61388 0) (14.3664 -9.98053 6.06033e-19) (14.0862 -10.3393 -3.57197e-20) (13.7964 -10.6898 2.23015e-21) (13.4973 -11.0318 5.63765e-19) (13.1892 -11.3649 -3.5286e-20) (12.8723 -11.6891 1.16161e-18) (12.5467 -12.0037 0) (17.225 -0.175198 -1.76145e-20) (17.2166 -0.620344 -7.05058e-20) (17.1957 -1.06523 -1.41093e-19) (17.1623 -1.50947 0) (17.1164 -1.95267 -4.14319e-19) (17.0581 -2.39446 2.73119e-19) (16.9874 -2.83447 0) (16.9044 -3.27235 1.77588e-20) (16.8092 -3.70773 0) (16.7019 -4.14027 1.07511e-18) (16.5827 -4.56961 5.47411e-19) (16.4515 -4.99542 -5.28689e-19) (16.3087 -5.41735 0) (16.1542 -5.83507 -5.63397e-19) (15.9882 -6.24824 -5.62942e-19) (15.8109 -6.65653 -1.10611e-18) (15.6225 -7.05963 1.71034e-20) (15.4231 -7.4572 -5.61254e-19) (15.213 -7.84894 0) (14.9922 -8.23454 -1.08459e-18) (14.761 -8.61368 -1.63982e-18) (14.5196 -8.98607 -5.56657e-19) (14.2683 -9.3514 1.0791e-18) (14.0071 -9.70939 -1.07557e-18) (13.7364 -10.0597 -1.07685e-18) (13.4564 -10.4022 -2.1111e-18) (13.1673 -10.7364 1.07164e-18) (12.8693 -11.062 -3.20722e-18) (12.5628 -11.3789 1.06728e-18) (12.2478 -11.6867 0) (16.7263 -0.17334 0) (16.7197 -0.604624 1.91895e-21) (16.7012 -1.03576 -6.27331e-20) (16.6705 -1.46639 -1.25583e-19) (16.6277 -1.89612 -1.2565e-19) (16.5729 -2.3246 2.51232e-19) (16.5061 -2.75148 2.51271e-19) (16.4274 -3.17641 8.36604e-21) (16.3369 -3.59903 0) (16.2346 -4.01901 -5.19047e-19) (16.1207 -4.43601 -5.18847e-19) (15.9953 -4.84969 3.19514e-20) (15.8585 -5.25972 0) (15.7103 -5.66578 0) (15.5511 -6.06754 0) (15.3808 -6.46468 5.00115e-19) (15.1997 -6.85688 1.64058e-20) (15.0079 -7.24383 -4.99026e-19) (14.8055 -7.62522 4.99028e-19) (14.5929 -8.00075 5.14695e-19) (14.3701 -8.37011 0) (14.1373 -8.733 2.9447e-20) (13.8949 -9.08913 -3.09401e-20) (13.6428 -9.43821 0) (13.3815 -9.77995 3.38304e-20) (13.1111 -10.1141 2.96399e-18) (12.8318 -10.4402 -9.83854e-19) (12.5438 -10.7582 1.99944e-18) (12.2475 -11.0677 0) (11.9429 -11.3683 0) (16.2441 -0.172589 0) (16.2387 -0.590511 3.59211e-21) (16.2217 -1.00836 1.12209e-19) (16.1931 -1.4258 -1.1226e-19) (16.1527 -1.84245 -2.31474e-19) (16.1007 -2.25798 4.56104e-19) (16.0372 -2.67203 0) (15.962 -3.08428 -2.24628e-19) (15.8755 -3.49438 1.36768e-20) (15.7776 -3.90202 -4.62851e-19) (15.6684 -4.30684 0) (15.548 -4.70855 2.88148e-20) (15.4165 -5.1068 -4.61913e-19) (15.2741 -5.50129 4.61914e-19) (15.1209 -5.8917 0) (14.957 -6.27771 4.47222e-19) (14.7826 -6.65903 4.60225e-19) (14.5977 -7.03534 -9.06491e-19) (14.4027 -7.40635 -8.9145e-19) (14.1976 -7.77176 0) (13.9827 -8.13127 0) (13.758 -8.48459 5.72064e-20) (13.524 -8.83143 -9.16985e-19) (13.2806 -9.1715 -9.12909e-19) (13.0282 -9.50451 9.09757e-19) (12.7669 -9.83018 -1.8484e-18) (12.497 -10.1482 0) (12.2187 -10.4583 -9.04399e-19) (11.9323 -10.7603 9.04409e-19) (11.6378 -11.0537 8.74505e-19) (15.7831 -0.172435 2.58745e-20) (15.7783 -0.577619 1.06807e-19) (15.7625 -0.982779 -3.36686e-21) (15.7353 -1.38758 3.41674e-21) (15.6968 -1.79169 -6.21489e-21) (15.647 -2.19476 -1.30173e-20) (15.586 -2.59646 4.27272e-19) (15.5139 -2.99647 4.21632e-19) (15.4307 -3.39446 4.40768e-19) (15.3365 -3.79012 0) (15.2314 -4.18312 4.2674e-19) (15.1154 -4.57316 1.34845e-20) (14.9887 -4.95992 -4.13934e-19) (14.8514 -5.3431 4.13618e-19) (14.7036 -5.72239 4.1326e-19) (14.5454 -6.09749 -2.59896e-20) (14.377 -6.4681 4.24588e-19) (14.1985 -6.83394 1.33223e-20) (14.0102 -7.1947 8.74766e-19) (13.812 -7.55009 0) (13.6043 -7.89984 -1.66538e-18) (13.3873 -8.24365 1.69185e-18) (13.161 -8.58125 1.71326e-18) (12.9257 -8.91234 0) (12.6817 -9.23665 -1.65454e-18) (12.429 -9.55389 1.67682e-18) (12.168 -9.86379 -8.37633e-19) (11.8989 -10.166 -8.34254e-19) (11.6218 -10.4604 8.34263e-19) (11.337 -10.7466 -8.58137e-19) (15.3453 -0.172513 -2.53956e-20) (15.3409 -0.565627 -9.87233e-20) (15.3256 -0.958742 0) (15.2995 -1.35154 1.91772e-19) (15.2624 -1.7437 -2.0356e-19) (15.2144 -2.13488 -4.01053e-19) (15.1556 -2.52478 2.03063e-19) (15.0859 -2.91307 -6.04613e-19) (15.0056 -3.29945 -7.78279e-19) (14.9145 -3.68361 3.94724e-19) (14.8129 -4.06524 -3.94363e-19) (14.7008 -4.44404 1.13561e-20) (14.5783 -4.81971 4.06271e-19) (14.4455 -5.19195 -4.05961e-19) (14.3025 -5.56047 -7.87695e-19) (14.1495 -5.92498 -7.86922e-19) (13.9865 -6.28519 3.92288e-19) (13.8138 -6.64082 -2.24406e-20) (13.6315 -6.99158 -3.68876e-19) (13.4398 -7.33719 -7.59656e-19) (13.2387 -7.67739 1.56401e-18) (13.0286 -8.01188 -8.04245e-19) (12.8095 -8.3404 0) (12.5818 -8.66267 0) (12.3455 -8.9784 2.50617e-20) (12.1009 -9.28733 1.45874e-21) (11.8482 -9.58918 7.73752e-19) (11.5877 -9.88367 -7.49274e-19) (11.3195 -10.1705 7.47692e-19) (11.0437 -10.4495 0) (14.9309 -0.172563 0) (14.9266 -0.554281 4.70215e-20) (14.9117 -0.936005 8.87857e-20) (14.8863 -1.31744 -1.88262e-19) (14.8503 -1.69826 -5.09557e-21) (14.8037 -2.07816 1.77686e-19) (14.7466 -2.45683 3.71119e-19) (14.6791 -2.83398 3.55323e-19) (14.6011 -3.20929 2.13117e-20) (14.5129 -3.58247 3.5508e-19) (14.4143 -3.95323 3.64982e-19) (14.3056 -4.32127 1.1014e-20) (14.1868 -4.6863 -3.64457e-19) (14.058 -5.04805 3.64458e-19) (13.9194 -5.40622 3.75092e-19) (13.771 -5.76053 -3.3208e-19) (13.613 -6.11071 0) (13.4455 -6.45649 -7.4772e-19) (13.2687 -6.79758 7.46767e-19) (13.0828 -7.13374 7.45751e-19) (12.8879 -7.46467 -2.16878e-18) (12.6841 -7.79012 7.21948e-19) (12.4717 -8.10982 -6.99925e-19) (12.2509 -8.4235 0) (12.0218 -8.73088 -7.17082e-19) (11.7847 -9.0317 7.17088e-19) (11.5398 -9.3257 7.14327e-19) (11.2873 -9.61257 1.84522e-21) (11.0274 -9.89208 -7.32458e-19) (10.7602 -10.1639 7.11324e-19) (14.5391 -0.172445 0) (14.5346 -0.543404 0) (14.52 -0.914366 -1.6954e-19) (14.4951 -1.28504 0) (14.4599 -1.65514 -5.08714e-19) (14.4145 -2.02435 -1.74484e-19) (14.3589 -2.39238 4.99059e-19) (14.2931 -2.75893 -3.48895e-19) (14.2173 -3.12373 3.48796e-19) (14.1314 -3.48647 -1.93581e-20) (14.0356 -3.84687 0) (13.9299 -4.20465 0) (13.8145 -4.55954 3.28627e-19) (13.6893 -4.91125 0) (13.5546 -5.25952 -6.56005e-19) (13.4104 -5.60407 3.57293e-19) (13.2569 -5.94464 -3.17782e-19) (13.0942 -6.28096 6.53658e-19) (12.9225 -6.61278 0) (12.7419 -6.93982 0) (12.5526 -7.26185 2.06594e-20) (12.3547 -7.57858 -6.48703e-19) (12.1484 -7.88977 2.02158e-18) (11.934 -8.19516 -6.66602e-19) (11.7117 -8.49448 0) (11.4815 -8.78747 6.6297e-19) (11.2439 -9.07385 -1.89937e-20) (10.9988 -9.35335 -3.8237e-20) (10.7467 -9.62572 0) (10.4875 -9.89061 0) (14.1683 -0.172087 -1.91064e-20) (14.1636 -0.532871 0) (14.1491 -0.893655 8.08885e-20) (14.1245 -1.25416 0) (14.0901 -1.6141 3.14944e-19) (14.0456 -1.97318 -1.5729e-19) (13.9913 -2.33112 -4.72568e-19) (13.9272 -2.68763 3.06059e-19) (13.8532 -3.04244 -3.14312e-19) (13.7695 -3.39525 -9.09837e-21) (13.6762 -3.74581 0) (13.5732 -4.09384 3.05384e-19) (13.4608 -4.43906 -6.27878e-19) (13.3389 -4.78121 6.0967e-19) (13.2078 -5.12004 1.2533e-18) (13.0675 -5.45527 6.0832e-19) (12.9181 -5.78665 3.52393e-20) (12.7598 -6.11394 -6.41972e-19) (12.5927 -6.43687 -6.0588e-19) (12.417 -6.7552 0) (12.2329 -7.06868 -6.20374e-19) (12.0404 -7.37706 1.25855e-18) (11.8399 -7.6801 0) (11.6314 -7.97753 0) (11.4153 -8.26911 -1.21592e-18) (11.1916 -8.55457 6.1607e-19) (10.9607 -8.83364 -1.87773e-20) (10.7227 -9.10604 -1.26095e-18) (10.4779 -9.37153 6.12447e-19) (10.2263 -9.62976 0) (13.8167 -0.171476 9.97447e-22) (13.8118 -0.52261 0) (13.7973 -0.873746 0) (13.7731 -1.22461 0) (13.7392 -1.57492 -2.96586e-19) (13.6956 -1.9244 8.96631e-24) (13.6425 -2.27276 4.46926e-19) (13.5798 -2.61974 -1.60502e-20) (13.5075 -2.96506 2.84485e-19) (13.4258 -3.30846 2.8433e-19) (13.3347 -3.64966 5.75882e-19) (13.2343 -3.9884 -3.07812e-19) (13.1246 -4.32443 5.90969e-19) (13.0058 -4.65748 -8.90134e-19) (12.878 -4.9873 -5.98268e-19) (12.7413 -5.31365 -5.97576e-19) (12.5957 -5.63627 5.96828e-19) (12.4415 -5.95493 -5.63898e-19) (12.2787 -6.26938 5.95179e-19) (12.1076 -6.57938 0) (11.9282 -6.8847 -1.49139e-20) (11.7408 -7.1851 9.79086e-22) (11.5456 -7.48034 5.75211e-19) (11.3427 -7.77017 0) (11.1324 -8.05435 1.14658e-18) (10.9148 -8.33261 -1.1273e-18) (10.6902 -8.6047 5.7103e-19) (10.4588 -8.87033 -5.85861e-19) (10.2208 -9.12924 -5.67563e-19) (9.97636 -9.38108 1.11938e-18) (13.4827 -0.170599 1.74615e-20) (13.4775 -0.512564 0) (13.463 -0.854538 0) (13.4391 -1.19625 0) (13.4057 -1.53741 0) (13.363 -1.87777 0) (13.3109 -2.21703 0) (13.2495 -2.55495 -1.46648e-20) (13.1788 -2.89126 -5.44372e-19) (13.099 -3.22569 -2.7937e-19) (13.01 -3.55799 -5.50628e-19) (12.9119 -3.8879 -7.52141e-21) (12.8048 -4.21517 -2.7094e-19) (12.6889 -4.53955 7.98431e-19) (12.5641 -4.8608 0) (12.4307 -5.17868 -2.69968e-19) (12.2887 -5.49295 7.95439e-19) (12.1383 -5.80338 1.07876e-18) (11.9796 -6.10974 -5.23886e-19) (11.8127 -6.41179 0) (11.6378 -6.70932 -1.08725e-18) (11.4552 -7.0021 1.05703e-18) (11.2649 -7.28989 0) (11.0672 -7.57247 -5.19362e-19) (10.8623 -7.8496 -1.07952e-18) (10.6504 -8.12101 1.60941e-18) (10.4318 -8.38646 -5.17466e-19) (10.2066 -8.64564 -5.29887e-19) (9.9751 -8.89829 -5.27739e-19) (9.7374 -9.14406 -1.44357e-20) (13.1644 -0.169439 0) (13.159 -0.502695 0) (13.1445 -0.835955 -6.17743e-20) (13.1209 -1.16895 -1.23573e-19) (13.088 -1.50142 -1.26795e-19) (13.046 -1.83308 1.82342e-23) (12.995 -2.16369 1.26777e-19) (12.9348 -2.49298 -2.60407e-19) (12.8657 -2.8207 2.60287e-19) (12.7875 -3.14659 2.46698e-19) (12.7005 -3.47041 4.99364e-19) (12.6047 -3.7919 -2.52857e-19) (12.5001 -4.11083 -2.52358e-19) (12.3868 -4.42694 -7.57555e-19) (12.265 -4.74002 4.90901e-19) (12.1347 -5.04982 0) (11.996 -5.35612 -2.65377e-19) (11.8492 -5.6587 -1.01735e-18) (11.6943 -5.95733 7.65511e-19) (11.5314 -6.2518 -4.87162e-19) (11.3608 -6.54189 0) (11.1826 -6.8274 -4.99816e-19) (10.9969 -7.1081 -9.14991e-22) (10.8041 -7.38377 1.34416e-20) (10.6043 -7.65418 4.82722e-19) (10.3978 -7.91909 0) (10.1847 -8.17823 5.07533e-19) (9.96543 -8.43131 4.79978e-19) (9.74008 -8.67804 0) (9.50882 -8.91805 0) (12.8605 -0.168034 0) (12.8549 -0.492989 0) (12.8405 -0.817942 6.07232e-20) (12.8171 -1.14263 2.36803e-19) (12.7847 -1.46679 0) (12.7435 -1.79017 -1.1826e-19) (12.6934 -2.11252 3.88675e-23) (12.6344 -2.43358 -1.12251e-19) (12.5667 -2.7531 0) (12.4902 -3.07085 -2.425e-19) (12.4051 -3.38657 -1.23225e-20) (12.3113 -3.70002 -4.59539e-19) (12.2091 -4.01098 -2.35314e-19) (12.0984 -4.31921 1.17696e-18) (11.9793 -4.62447 -4.82548e-19) (11.852 -4.92656 0) (11.7165 -5.22524 -4.56546e-19) (11.5731 -5.52032 4.5581e-19) (11.4217 -5.81156 4.55038e-19) (11.2626 -6.09879 9.33108e-19) (11.096 -6.38178 -4.64828e-19) (10.922 -6.66034 2.54783e-20) (10.7407 -6.93427 4.6397e-19) (10.5525 -7.20335 0) (10.3575 -7.46738 -4.85879e-19) (10.156 -7.72612 4.61344e-19) (9.94827 -7.9793 0) (9.73452 -8.22662 -9.19246e-19) (9.51502 -8.46778 0) (9.28993 -8.70236 0) (12.5697 -0.166406 0) (12.5639 -0.483437 0) (12.5495 -0.800455 -1.07742e-19) (12.5263 -1.1172 -1.13394e-19) (12.4945 -1.43342 -2.18213e-19) (12.4539 -1.74888 2.54064e-23) (12.4048 -2.06333 1.10435e-19) (12.347 -2.37652 2.26599e-19) (12.2806 -2.68821 -5.36545e-21) (12.2058 -2.99816 2.20527e-19) (12.1224 -3.30614 -5.97746e-21) (12.0307 -3.61191 2.3167e-19) (11.9307 -3.91524 4.28687e-19) (11.8224 -4.21592 -8.78932e-19) (11.706 -4.51372 0) (11.5815 -4.80842 -2.18737e-19) (11.4491 -5.09981 1.09384e-18) (11.3088 -5.3877 -4.48152e-19) (11.1609 -5.67189 -4.47393e-19) (11.0054 -5.95217 -4.46603e-19) (10.8426 -6.22836 0) (10.6725 -6.50028 2.2618e-20) (10.4954 -6.76774 0) (10.3115 -7.03055 0) (10.121 -7.28851 -1.29256e-18) (9.92429 -7.54139 4.30309e-19) (9.72154 -7.78894 0) (9.51307 -8.03086 4.39917e-19) (9.29916 -8.2668 0) (9.07998 -8.49631 -4.16045e-19) (12.2907 -0.164661 0) (12.2847 -0.474073 2.58139e-20) (12.2704 -0.783469 8.01406e-20) (12.2475 -1.0926 -1.00781e-19) (12.2162 -1.40121 1.05965e-19) (12.1763 -1.70908 0) (12.1281 -2.01596 0) (12.0714 -2.3216 -2.01323e-19) (12.0064 -2.62579 -2.11592e-19) (11.9331 -2.92827 4.91946e-21) (11.8515 -3.22883 -4.11687e-19) (11.7617 -3.52724 2.05742e-19) (11.6638 -3.82327 -1.02758e-18) (11.5579 -4.11671 1.02651e-18) (11.444 -4.40735 3.99626e-19) (11.3222 -4.69497 -3.98997e-19) (11.1927 -4.97938 -2.15154e-19) (11.0555 -5.26038 -1.00285e-20) (10.9109 -5.53778 6.0052e-19) (10.7588 -5.81141 -3.96108e-19) (10.5995 -6.08109 0) (10.4332 -6.34665 1.21398e-18) (10.26 -6.60791 -1.04375e-20) (10.0802 -6.86473 -9.62453e-21) (9.89404 -7.1169 4.13673e-19) (9.70177 -7.36424 7.93095e-19) (9.50375 -7.60648 0) (9.30027 -7.84334 0) (9.09171 -8.07443 -3.98883e-19) (8.87824 -8.29925 8.0803e-19) (12.0227 -0.162802 0) (12.0166 -0.464885 0) (12.0023 -0.766951 -9.43477e-20) (11.9797 -1.06876 9.91304e-20) (11.9488 -1.37008 -1.90978e-19) (11.9097 -1.67065 3.09266e-23) (11.8623 -1.97026 -9.19501e-20) (11.8068 -2.26867 9.57879e-21) (11.743 -2.56565 1.92849e-19) (11.6712 -2.86097 -3.7141e-19) (11.5913 -3.15441 -1.83441e-19) (11.5034 -3.44574 -1.92472e-19) (11.4076 -3.73476 3.94183e-19) (11.3039 -4.02125 -3.93655e-19) (11.1924 -4.30501 -2.01664e-19) (11.0732 -4.58583 5.74317e-19) (10.9465 -4.86353 0) (10.8123 -5.13791 -7.63022e-19) (10.6707 -5.4088 -3.90376e-19) (10.522 -5.67604 3.8962e-19) (10.3661 -5.93945 0) (10.2033 -6.19889 -3.88051e-19) (10.0339 -6.45421 -7.55325e-19) (9.85794 -6.70529 -1.03091e-20) (9.67579 -6.95193 -3.76157e-19) (9.48773 -7.19402 -3.84942e-19) (9.29416 -7.43127 -7.3027e-19) (9.09539 -7.66344 0) (8.89194 -7.89006 3.55123e-19) (8.68399 -8.11061 1.09984e-18) (11.7647 -0.160777 -1.10467e-20) (11.7585 -0.455828 4.42015e-20) (11.7443 -0.750858 9.28218e-20) (11.722 -1.04564 -8.842e-20) (11.6916 -1.33993 9.28166e-20) (11.6531 -1.6335 -2.67245e-19) (11.6066 -1.92612 2.75992e-19) (11.5521 -2.21757 1.85399e-19) (11.4896 -2.50761 0) (11.4192 -2.79604 5.50641e-19) (11.3409 -3.08263 1.894e-19) (11.2549 -3.36716 0) (11.161 -3.64944 -5.30998e-19) (11.0595 -3.92924 1.79757e-19) (10.9504 -4.20638 -3.50148e-19) (10.8338 -4.48066 -1.76982e-20) (10.7097 -4.7519 0) (10.5783 -5.01991 3.65901e-19) (10.4398 -5.28453 0) (10.2941 -5.54561 0) (10.1415 -5.80299 -3.54123e-19) (9.9822 -6.05655 3.6228e-19) (9.81626 -6.30615 8.77121e-21) (9.64397 -6.55172 -3.51814e-19) (9.46562 -6.79307 3.51817e-19) (9.28149 -7.03018 -6.84399e-19) (9.09209 -7.26272 7.1846e-19) (8.89774 -7.49059 0) (8.69917 -7.71316 -7.16202e-19) (8.49655 -7.92991 -7.15225e-19) (11.516 -0.15863 1.08703e-20) (11.5097 -0.446911 -4.34957e-20) (11.4956 -0.735167 1.25392e-19) (11.4735 -1.02317 1.27495e-19) (11.4436 -1.3107 -8.48739e-20) (11.4058 -1.59752 3.39755e-19) (11.3601 -1.88341 4.85745e-23) (11.3067 -2.16815 -8.07963e-20) (11.2454 -2.45153 0) (11.1764 -2.73331 -3.30568e-19) (11.0997 -3.0133 0) (11.0154 -3.29129 3.29766e-19) (10.9235 -3.56707 1.84799e-19) (10.8241 -3.84043 1.60316e-19) (10.7172 -4.1112 8.40674e-19) (10.603 -4.37918 -1.00706e-18) (10.4816 -4.64419 -1.59381e-19) (10.353 -4.90606 -4.93208e-19) (10.2173 -5.16464 1.66915e-19) (10.0747 -5.41978 0) (9.92524 -5.67134 -3.31598e-19) (9.76915 -5.91923 3.40449e-19) (9.60658 -6.16331 -3.14245e-19) (9.43775 -6.40358 0) (9.26296 -6.63985 -3.28614e-19) (9.08249 -6.87223 1.00209e-18) (8.89697 -7.10034 0) (8.70669 -7.32432 -6.38548e-19) (8.51278 -7.54328 -3.26622e-19) (8.31525 -7.75684 3.26626e-19) (11.2759 -0.156373 0) (11.2696 -0.438124 3.89325e-20) (11.2555 -0.719848 -1.59506e-19) (11.2337 -1.00132 -1.59499e-19) (11.2042 -1.28233 0) (11.1671 -1.56264 -2.42787e-19) (11.1222 -1.84204 -7.59309e-20) (11.0697 -2.12031 1.62975e-19) (11.0097 -2.39725 0) (10.942 -2.67264 3.25356e-19) (10.8669 -2.94627 -3.09886e-19) (10.7843 -3.21794 -1.51021e-20) (10.6943 -3.48746 1.66084e-19) (10.5969 -3.75462 -1.48401e-20) (10.4923 -4.01924 -1.65288e-19) (10.3805 -4.28115 3.22448e-19) (10.2616 -4.54016 4.78651e-19) (10.1356 -4.79612 1.64314e-19) (10.0027 -5.04887 0) (9.86306 -5.29828 0) (9.71667 -5.54423 -3.10772e-19) (9.56372 -5.78664 9.16924e-19) (9.40438 -6.0254 9.44148e-19) (9.23882 -6.26055 -3.09245e-19) (9.06739 -6.49192 -3.07802e-19) (8.89031 -6.71982 3.07805e-19) (8.70836 -6.94373 0) (8.52172 -7.16431 6.28481e-19) (8.33223 -7.3801 0) (8.13942 -7.59133 0) (11.0438 -0.154011 0) (11.0373 -0.429454 -3.83264e-20) (11.0233 -0.704869 1.49842e-19) (11.0018 -0.980035 1.49829e-19) (10.9728 -1.25474 0) (10.9363 -1.52876 0) (10.8922 -1.80189 6.97851e-21) (10.8407 -2.07392 -7.46679e-20) (10.7818 -2.34465 7.46678e-20) (10.7155 -2.61386 0) (10.6419 -2.88135 1.56246e-19) (10.561 -3.14694 -1.55832e-19) (10.4728 -3.41041 -1.48355e-19) (10.3775 -3.67159 -4.45031e-19) (10.2751 -3.9303 4.36964e-19) (10.1656 -4.18635 -4.36377e-19) (10.0491 -4.43959 0) (9.92583 -4.68985 2.87276e-19) (9.79571 -4.93699 0) (9.6589 -5.18089 0) (9.51549 -5.42143 -2.91493e-19) (9.3656 -5.65856 -3.0522e-19) (9.20938 -5.89217 5.67093e-19) (9.04697 -6.12239 0) (8.8787 -6.34903 0) (8.70473 -6.57267 5.62649e-19) (8.52603 -6.79256 0) (8.34251 -7.01028 0) (8.15717 -7.2233 0) (7.96838 -7.43355 0) (10.819 -0.151582 1.72042e-20) (10.8125 -0.420909 0) (10.7986 -0.690209 -7.2056e-20) (10.7773 -0.95926 -7.20482e-20) (10.7487 -1.22785 -7.03429e-20) (10.7128 -1.49578 3.96388e-23) (10.6696 -1.76285 2.14203e-19) (10.6191 -2.02884 0) (10.5614 -2.29355 0) (10.4964 -2.55678 0) (10.4243 -2.81834 0) (10.3451 -3.07804 -2.73255e-19) (10.2588 -3.33568 -4.122e-19) (10.1655 -3.59109 5.57807e-19) (10.0652 -3.84408 -1.45567e-19) (9.9581 -4.0945 1.45568e-19) (9.84415 -4.34217 4.09119e-19) (9.72346 -4.58694 2.56936e-19) (9.59611 -4.82868 0) (9.46217 -5.06727 0) (9.32173 -5.3026 0) (9.17489 -5.53463 2.72846e-19) (9.02175 -5.76328 -8.31224e-19) (8.86242 -5.98871 0) (8.69721 -6.21076 2.58604e-19) (8.52613 -6.4303 -2.83425e-19) (8.35037 -6.6463 0) (8.16932 -6.86176 0) (7.98785 -7.07219 2.56248e-19) (7.80185 -7.28351 2.69145e-19) (10.6011 -0.149063 -1.69431e-20) (10.5944 -0.412498 -3.2399e-20) (10.5806 -0.675896 0) (10.5597 -0.939043 -6.47871e-20) (10.5316 -1.20174 -6.61923e-20) (10.4963 -1.4638 -1.29418e-19) (10.4539 -1.725 6.61515e-20) (10.4044 -1.98516 0) (10.3479 -2.24407 -2.58227e-19) (10.2843 -2.50154 1.31751e-19) (10.2138 -2.75738 -1.31751e-19) (10.1363 -3.0114 2.69108e-19) (10.0519 -3.26343 2.68658e-19) (9.96063 -3.51328 -2.68166e-19) (9.86261 -3.76078 1.30574e-19) (9.75786 -4.00578 -3.85677e-19) (9.64646 -4.2481 -2.6645e-19) (9.52845 -4.48761 -1.5354e-19) (9.40392 -4.72417 1.29628e-19) (9.27292 -4.95766 0) (9.13552 -5.18799 -7.60448e-19) (8.99178 -5.41512 5.13336e-19) (8.8418 -5.63898 -7.97532e-22) (8.68558 -5.85977 -5.10169e-19) (8.52342 -6.07733 -2.338e-20) (8.35509 -6.29283 7.4936e-19) (8.18206 -6.50498 2.52673e-19) (8.00267 -6.71876 -2.52675e-19) (7.82471 -6.9267 -7.69898e-19) (7.63918 -7.14198 7.46006e-19) (10.3893 -0.146214 0) (10.3826 -0.404165 3.19134e-20) (10.369 -0.662051 -3.11948e-20) (10.3484 -0.919683 1.56048e-19) (10.3208 -1.17688 -5.96822e-20) (10.2862 -1.43346 2.87011e-21) (10.2447 -1.68922 6.23039e-20) (10.1962 -1.94395 0) (10.1409 -2.19748 2.54357e-19) (10.0787 -2.4496 0) (10.0097 -2.70015 -3.66448e-19) (9.93389 -2.94894 -1.18287e-19) (9.85137 -3.19579 -1.23446e-19) (9.76217 -3.44053 1.23446e-19) (9.66634 -3.683 2.40746e-19) (9.56394 -3.92303 1.10867e-20) (9.45502 -4.16047 0) (9.33963 -4.39519 -5.00082e-19) (9.21785 -4.62704 -4.76613e-19) (9.0897 -4.85592 0) (8.95525 -5.08173 9.69586e-19) (8.8145 -5.30443 0) (8.66756 -5.52396 0) (8.51429 -5.74051 0) (8.35503 -5.95396 -1.19551e-18) (8.18903 -6.1656 -2.4938e-19) (8.01829 -6.3741 4.64142e-19) (7.83903 -6.58656 4.62874e-19) (7.66372 -6.79275 0) (7.47297 -7.01805 -9.49872e-19) (10.1833 -0.143408 0) (10.1766 -0.396029 -2.94907e-20) (10.1633 -0.648589 0) (10.1431 -0.900931 5.62644e-20) (10.1161 -1.1529 1.23159e-19) (10.0822 -1.40432 -1.1769e-19) (10.0416 -1.65499 0) (9.9943 -1.90472 0) (9.94023 -2.15333 2.34525e-19) (9.87945 -2.40065 -1.14428e-19) (9.81201 -2.64648 1.25029e-19) (9.73792 -2.89066 1.10484e-20) (9.65725 -3.13303 1.13716e-19) (9.57002 -3.3734 -1.1319e-19) (9.47628 -3.61164 -2.42895e-19) (9.37607 -3.84757 3.60621e-19) (9.26944 -4.08104 -3.0535e-22) (9.15643 -4.31193 -1.17981e-19) (9.03707 -4.5401 9.38946e-19) (8.9114 -4.76544 0) (8.77945 -4.98784 -4.77957e-19) (8.64118 -5.20726 0) (8.49668 -5.42365 4.51535e-19) (8.34564 -5.63714 -4.49709e-19) (8.18851 -5.84768 2.41639e-19) (8.02376 -6.0564 2.29902e-19) (7.85431 -6.26212 -2.40071e-19) (7.67228 -6.47313 -6.95438e-19) (7.49846 -6.67755 0) (7.29 -6.92674 4.68166e-19) (14.0752 14.2493 -1.78945e-18) (14.4433 13.8665 3.63971e-18) (14.7994 13.477 8.8344e-19) (15.146 13.0818 -3.95787e-20) (15.4827 12.6795 -2.73909e-18) (15.8087 12.2693 0) (16.1234 11.8509 1.87242e-18) (16.4268 11.4246 5.45373e-21) (16.7186 10.9905 -9.82775e-19) (16.9988 10.5489 0) (17.267 10.1 -9.00192e-19) (17.5231 9.64427 -1.15912e-21) (17.7669 9.18189 1.90015e-18) (17.9983 8.71322 -2.81066e-18) (18.217 8.23862 0) (18.423 7.75842 1.86864e-18) (18.616 7.27298 1.8378e-21) (18.796 6.78264 -4.79154e-19) (18.9629 6.28777 -5.04214e-19) (19.1165 5.78875 1.42164e-18) (19.2568 5.28595 -4.83051e-19) (19.3838 4.77973 -9.79861e-22) (19.4972 4.27046 4.83076e-19) (19.5972 3.75849 9.45689e-19) (19.6836 3.24418 -2.42377e-19) (19.7565 2.72789 -2.42721e-19) (19.8158 2.20987 -4.7463e-19) (19.8619 1.69068 -1.47426e-22) (19.8944 1.16971 2.73925e-21) (19.9144 0.649353 3.04027e-20) (14.3189 13.7669 9.05645e-19) (14.6804 13.3879 -9.08936e-19) (15.0292 13.0001 -9.11953e-19) (15.3667 12.6044 -2.653e-18) (15.6934 12.2003 1.81244e-18) (16.0089 11.7878 0) (16.3131 11.3669 9.06471e-19) (16.6058 10.9381 -1.75613e-18) (16.8868 10.5015 8.37584e-19) (17.1558 10.0574 -1.76734e-18) (17.4126 9.60622 9.3509e-19) (17.6571 9.1482 0) (17.8889 8.68369 8.93735e-19) (18.1079 8.21304 4.8581e-20) (18.314 7.73663 0) (18.507 7.25483 -4.64129e-20) (18.6866 6.768 -9.00177e-19) (18.8529 6.27647 -1.34196e-18) (19.0056 5.78056 8.66748e-19) (19.1448 5.28068 -3.71711e-20) (19.2703 4.77727 1.34923e-18) (19.382 4.27076 -9.0873e-19) (19.4799 3.76153 0) (19.5639 3.24999 -4.79633e-19) (19.6341 2.73648 4.56827e-19) (19.6903 2.22142 -4.56828e-19) (19.7326 1.70503 2.40571e-19) (19.7612 1.18779 -1.11118e-19) (19.7755 0.669373 6.02425e-20) (19.7761 0.150687 0) (13.9397 13.6054 -2.33638e-18) (14.3021 13.2438 1.5779e-18) (14.6532 12.8725 8.25891e-19) (14.9934 12.492 -1.59097e-18) (15.323 12.1024 5.55505e-20) (15.6415 11.7038 -1.60928e-18) (15.9487 11.2965 2.44205e-18) (16.2445 10.8809 1.62056e-18) (16.5286 10.4573 -2.4032e-18) (16.8009 10.026 0) (17.0612 9.5872 7.87796e-19) (17.3092 9.14131 7.90225e-19) (17.5448 8.68863 8.22788e-19) (17.7678 8.22949 -8.22784e-19) (17.978 7.76428 7.96935e-19) (18.1751 7.29345 3.01423e-20) (18.3589 6.81743 -8.29134e-19) (18.5292 6.33656 -3.7349e-19) (18.686 5.85121 -2.79055e-20) (18.8292 5.36179 -1.26698e-18) (18.959 4.86863 -4.33198e-19) (19.0751 4.3721 8.37448e-19) (19.1774 3.87254 -4.0524e-19) (19.2659 3.37037 0) (19.3405 2.86594 2.17935e-19) (19.4013 2.35967 -4.21147e-19) (19.448 1.85186 -2.03703e-19) (19.4807 1.34295 6.95218e-21) (19.4993 0.833108 0) (19.5035 0.322996 0) (13.6214 13.2069 5.34596e-20) (13.9784 12.8607 2.13283e-18) (14.325 12.5046 -6.89677e-19) (14.6608 12.1386 2.15129e-18) (14.986 11.7631 -1.39819e-18) (15.3006 11.3785 0) (15.6043 10.9852 -1.46892e-18) (15.8968 10.5834 -5.36361e-21) (16.178 10.1734 3.72085e-18) (16.4475 9.75553 -1.47943e-18) (16.7052 9.33007 -7.72185e-19) (16.951 8.89736 -7.74565e-19) (17.1845 8.45776 7.49123e-19) (17.4057 8.01163 -7.49119e-19) (17.6144 7.55937 -1.53442e-18) (17.8107 7.10127 1.53644e-18) (17.9942 6.63758 -7.30773e-19) (18.1645 6.16868 7.86906e-19) (18.3215 5.69514 -3.94306e-19) (18.465 5.21737 -3.67932e-19) (18.5949 4.73571 0) (18.7113 4.25054 3.8253e-19) (18.8141 3.76221 -3.68489e-19) (18.9032 3.27112 3.83168e-19) (18.9785 2.77765 -1.72017e-19) (19.0401 2.2822 1.85855e-19) (19.0878 1.78511 1.35791e-20) (19.1216 1.28682 9.99348e-20) (19.1415 0.787676 0) (19.1475 0.288186 0) (13.2313 12.7951 6.76377e-19) (13.5792 12.4649 -6.79533e-19) (13.9181 12.1245 -6.3546e-19) (14.2472 11.7741 -1.32394e-18) (14.5662 11.4143 1.32959e-18) (14.8751 11.0453 -6.43834e-19) (15.1737 10.6675 1.34067e-18) (15.4617 10.2811 -2.68644e-18) (15.7388 9.88648 6.94294e-19) (16.0048 9.48387 0) (16.2594 9.07366 6.80063e-19) (16.5026 8.65617 2.22897e-21) (16.734 8.23176 -1.36671e-18) (16.9534 7.80073 6.84425e-19) (17.1606 7.36336 -6.6454e-19) (17.3553 6.9198 -6.66398e-19) (17.5377 6.4704 1.40839e-18) (17.7075 6.01566 -2.21812e-20) (17.8647 5.55603 -6.95267e-19) (18.0089 5.09193 1.05594e-18) (18.14 4.62377 0) (18.2579 4.15195 -6.87592e-19) (18.3623 3.67686 6.88215e-19) (18.4534 3.19889 -3.39062e-19) (18.531 2.71842 3.75706e-19) (18.595 2.23583 -3.63569e-19) (18.6455 1.7515 1.82418e-19) (18.6822 1.26581 0) (18.7053 0.779133 0) (18.7145 0.291887 0) (12.829 12.3643 -1.19318e-18) (13.1675 12.0478 1.19316e-18) (13.4976 11.7215 6.23013e-19) (13.8186 11.3855 1.25219e-18) (14.1301 11.0402 -1.83855e-18) (14.4319 10.6858 6.31223e-19) (14.7238 10.3227 1.22538e-18) (15.0056 9.95111 4.83058e-21) (15.277 9.57134 6.43391e-19) (15.5378 9.18369 -1.23485e-18) (15.7877 8.78845 -6.00407e-19) (16.0266 8.38593 6.02492e-19) (16.2542 7.97643 -6.04498e-19) (16.4702 7.56024 0) (16.6745 7.13766 6.51523e-19) (16.8669 6.70912 6.53345e-19) (17.0471 6.27507 6.3311e-19) (17.2152 5.83587 -1.28983e-18) (17.371 5.3918 2.14178e-20) (17.5143 4.94316 -6.362e-19) (17.6449 4.49031 0) (17.7627 4.03362 6.51346e-19) (17.8677 3.57351 -9.72645e-19) (17.9596 3.11038 3.42551e-19) (18.0385 2.6446 6.54668e-19) (18.1041 2.17656 -6.44202e-19) (18.1566 1.70661 0) (18.1958 1.23514 -1.56168e-19) (18.2216 0.762521 0) (18.2339 0.289177 0) (12.434 11.9353 0) (12.7624 11.6315 1.09712e-18) (13.0827 11.3182 -2.16133e-18) (13.3944 10.9956 1.67979e-18) (13.6972 10.6638 4.97228e-21) (13.9907 10.3231 -2.19145e-18) (14.2748 9.97392 0) (14.5492 9.61644 0) (14.8136 9.25094 5.846e-19) (15.0679 8.8777 -1.67916e-18) (15.3118 8.497 3.83718e-20) (15.5451 8.10914 -5.9078e-19) (15.7675 7.7144 -5.3485e-19) (15.9789 7.3131 5.73403e-19) (16.179 6.90556 -5.57709e-19) (16.3677 6.49218 0) (16.5448 6.0733 -5.60922e-19) (16.7101 5.64923 0) (16.8635 5.22026 1.97844e-20) (17.0048 4.78673 1.14822e-18) (17.134 4.34898 0) (17.2508 3.90738 2.93401e-19) (17.3552 3.46229 -9.04077e-21) (17.4471 3.01404 3.04519e-19) (17.5263 2.56309 2.9493e-19) (17.5928 2.1098 -2.85088e-19) (17.6465 1.65454 0) (17.6872 1.19767 -6.41638e-20) (17.7151 0.739575 2.30665e-21) (17.7299 0.280647 -1.79463e-20) (12.0554 11.5231 0) (12.3733 11.2308 1.00604e-18) (12.6836 10.9293 1.01446e-18) (12.9856 10.6187 1.01574e-18) (13.2791 10.2993 -2.96047e-20) (13.5638 9.97131 3.0737e-18) (13.8394 9.63498 -1.02489e-18) (14.1058 9.29058 1.0335e-18) (14.3627 8.93837 5.39808e-19) (14.6098 8.57861 -4.99819e-19) (14.8469 8.21157 1.04521e-18) (15.0738 7.83755 0) (15.2904 7.45681 5.43507e-19) (15.4963 7.06968 1.03866e-18) (15.6914 6.67645 1.9011e-20) (15.8755 6.27745 0) (16.0485 5.87299 5.50109e-19) (16.2102 5.46338 0) (16.3604 5.04894 5.18029e-19) (16.499 4.63 -1.61007e-18) (16.6259 4.20691 1.60651e-20) (16.7408 3.78004 0) (16.8437 3.34966 -1.75901e-20) (16.9346 2.91619 0) (17.0134 2.47987 2.70806e-19) (17.0799 2.04113 -1.30665e-19) (17.1339 1.60039 0) (17.1755 1.15803 1.40511e-19) (17.2046 0.714392 7.03336e-20) (17.2211 0.269844 1.76003e-20) (11.6986 11.134 0) (12.0062 10.8519 0) (12.3064 10.5611 -2.91377e-20) (12.5988 10.2614 -9.28969e-19) (12.883 9.95319 -9.36512e-19) (13.1587 9.63665 -1.90948e-18) (13.4257 9.31204 0) (13.6838 8.97961 -9.50069e-19) (13.9328 8.6396 1.87306e-18) (14.1724 8.29226 0) (14.4024 7.93786 -4.95806e-19) (14.6227 7.57666 4.82278e-19) (14.8329 7.20894 -4.82275e-19) (15.0329 6.83499 -9.86447e-19) (15.2225 6.45509 4.85486e-19) (15.4016 6.06954 0) (15.5699 5.67865 0) (15.7273 5.28273 0) (15.8737 4.88209 -3.13322e-20) (16.0089 4.47704 5.09358e-19) (16.1328 4.06791 5.1051e-19) (16.2453 3.65503 0) (16.3462 3.23876 -5.04549e-19) (16.4353 2.81946 2.48251e-19) (16.5127 2.39733 2.49086e-19) (16.5784 1.97277 -1.24359e-19) (16.6321 1.54613 -3.69288e-21) (16.6739 1.11785 -6.2523e-20) (16.7035 0.688274 1.23186e-19) (16.721 0.257749 0) (11.3655 10.7701 -8.19005e-19) (11.6631 10.4972 2.76353e-20) (11.9535 10.2159 -8.50963e-19) (12.2364 9.92606 0) (12.5114 9.62798 2.63289e-20) (12.7783 9.32185 8.63533e-19) (13.0368 9.00792 -8.71313e-19) (13.2868 8.68642 8.71305e-19) (13.5279 8.35758 -9.0554e-19) (13.76 8.02164 0) (13.9828 7.67886 0) (14.1962 7.32949 8.60652e-19) (14.3999 6.97379 -1.39487e-20) (14.5938 6.61203 4.45795e-19) (14.7777 6.24451 -4.34701e-19) (14.9514 5.87149 0) (15.1147 5.49328 4.51255e-19) (15.2676 5.11017 -4.51254e-19) (15.4098 4.72247 -2.81538e-20) (15.5412 4.33047 4.40705e-19) (15.6617 3.93449 -4.55666e-19) (15.7712 3.53484 8.98322e-19) (15.8695 3.13185 2.21768e-19) (15.9566 2.72583 0) (16.0322 2.31719 6.96131e-21) (16.0964 1.90619 -2.29512e-19) (16.1492 1.49311 -7.14441e-21) (16.1905 1.07829 -1.11742e-19) (16.2201 0.662162 -3.58195e-21) (16.238 0.245081 0) (11.0553 10.431 8.03679e-19) (11.3434 10.1665 1.59272e-18) (11.6245 9.89377 -7.84786e-19) (11.8983 9.61291 -7.92763e-19) (12.1645 9.32405 1.58933e-18) (12.4229 9.02743 -2.13951e-20) (12.6731 8.72326 0) (12.9151 8.41177 8.07323e-19) (13.1485 8.09318 -7.8216e-19) (13.3732 7.76772 -2.19426e-20) (13.5889 7.43563 0) (13.7955 7.09715 -8.44546e-19) (13.9928 6.75255 -8.35172e-19) (14.1806 6.40209 4.11402e-19) (14.3587 6.04603 2.51033e-20) (14.527 5.68464 -4.027e-19) (14.6853 5.31822 -4.03876e-19) (14.8334 4.94705 0) (14.9713 4.57141 -8.50055e-19) (15.0987 4.1916 -1.38081e-20) (15.2156 3.80792 0) (15.3219 3.42068 -4.34373e-19) (15.4173 3.03019 -8.38397e-19) (15.5019 2.63675 4.22615e-19) (15.5755 2.24071 1.31768e-20) (15.6381 1.8424 -4.17701e-19) (15.6895 1.44213 -2.15725e-19) (15.7297 1.04015 2.15863e-19) (15.7589 0.636788 -1.06545e-19) (15.7766 0.232471 -2.58539e-20) (10.7663 10.1151 0) (11.0453 9.85825 -7.0229e-19) (11.3176 9.59344 7.06055e-19) (11.5829 9.32077 7.32449e-19) (11.8407 9.04038 3.5911e-21) (12.0909 8.75249 -1.49685e-18) (12.3332 8.4573 0) (12.5675 8.15503 0) (12.7936 7.84589 7.70969e-19) (13.0111 7.53009 -1.50357e-18) (13.22 7.20788 7.32339e-19) (13.4201 6.87949 1.11408e-18) (13.6111 6.54517 -1.49703e-18) (13.7929 6.20517 3.80295e-19) (13.9654 5.85974 7.65395e-19) (14.1283 5.50917 7.67762e-19) (14.2816 5.15371 3.964e-19) (14.425 4.79364 0) (14.5585 4.42925 7.62664e-19) (14.6819 4.06082 -3.87037e-19) (14.7951 3.68864 3.88815e-19) (14.898 3.31301 -1.05953e-20) (14.9905 2.93422 2.06894e-19) (15.0724 2.55258 3.90703e-19) (15.1437 2.16841 6.22184e-21) (15.2044 1.782 2.02055e-19) (15.2543 1.39369 -1.90701e-19) (15.2933 1.0038 0) (15.3215 0.612554 9.84866e-20) (15.3389 0.220317 1.46047e-21) (10.4962 9.82018 6.67068e-19) (10.7667 9.57035 6.93096e-19) (11.0307 9.31286 -2.03814e-18) (11.2878 9.04777 6.74286e-19) (11.5377 8.77523 6.81143e-19) (11.7802 8.49542 -6.81136e-19) (12.015 8.20857 0) (12.2421 7.91485 6.69905e-19) (12.461 7.61447 6.93557e-19) (12.6718 7.30766 6.98205e-19) (12.8742 6.99463 -7.18935e-19) (13.0679 6.67562 -1.40262e-18) (13.2529 6.35085 7.24263e-19) (13.429 6.02059 0) (13.596 5.68507 3.23516e-19) (13.7537 5.34457 -3.65698e-19) (13.9021 4.99933 3.565e-19) (14.0409 4.64964 -3.56499e-19) (14.1701 4.29575 -1.07513e-18) (14.2896 3.93796 3.58369e-19) (14.3991 3.57654 -3.4967e-19) (14.4987 3.21178 -2.08799e-20) (14.5881 2.84396 -3.51111e-19) (14.6674 2.47338 1.81039e-19) (14.7364 2.10035 -1.7588e-19) (14.795 1.72515 -3.57762e-19) (14.8432 1.3481 1.87211e-19) (14.8809 0.969511 -8.8444e-20) (14.9081 0.589713 -4.69101e-20) (14.9248 0.208875 2.34772e-20) (10.2426 9.54372 0) (10.5052 9.30047 0) (10.7614 9.04982 -6.05957e-19) (11.0108 8.79182 -6.28078e-19) (11.2532 8.52661 6.28072e-19) (11.4884 8.25438 0) (11.7162 7.9753 -6.37315e-19) (11.9363 7.68958 6.19707e-19) (12.1486 7.39741 6.26834e-19) (12.3529 7.099 -1.30637e-18) (12.549 6.79456 0) (12.7368 6.48431 3.6944e-20) (12.916 6.16849 -6.34028e-19) (13.0866 5.84734 9.63814e-19) (13.2484 5.5211 -1.0032e-18) (13.4012 5.19003 6.40375e-19) (13.5448 4.85437 0) (13.6793 4.51439 -3.2204e-19) (13.8044 4.17036 1.88286e-20) (13.9199 3.82255 0) (14.0259 3.47122 1.89154e-20) (14.1222 3.11666 -3.44078e-19) (14.2087 2.75915 3.44759e-19) (14.2853 2.39897 1.67873e-19) (14.352 2.03641 1.73247e-19) (14.4086 1.67176 1.68797e-19) (14.4551 1.30532 1.63913e-19) (14.4914 0.937379 8.6844e-20) (14.5175 0.568284 0) (14.5334 0.198228 0) (10.0035 9.28343 0) (10.2586 9.0464 5.76516e-19) (10.5074 8.8022 -1.12358e-18) (10.7496 8.55088 5.79704e-19) (10.985 8.29259 5.85824e-19) (11.2133 8.02749 -1.43261e-20) (11.4343 7.75575 0) (11.6479 7.47757 0) (11.8539 7.19313 -1.60635e-20) (12.0521 6.90262 -5.96842e-19) (12.2423 6.60626 0) (12.4244 6.30427 1.20719e-18) (12.5982 5.99687 6.22693e-19) (12.7636 5.6843 -3.38211e-20) (12.9203 5.36679 -5.93036e-19) (13.0684 5.04459 -1.22384e-18) (13.2076 4.71794 -5.96698e-19) (13.3378 4.38712 6.15472e-19) (13.4589 4.05236 1.71351e-20) (13.5709 3.71394 0) (13.6734 3.37212 6.28626e-19) (13.7666 3.02718 -3.09997e-19) (13.8502 2.67937 -3.02655e-19) (13.9243 2.32899 4.59083e-19) (13.9887 1.97631 -4.02969e-21) (14.0433 1.62161 -3.12844e-19) (14.0881 1.26518 -1.60983e-19) (14.123 0.907306 0) (14.1481 0.548263 0) (14.1631 0.188408 1.90931e-20) (9.77687 9.03725 1.57673e-20) (10.0249 8.80613 -5.32416e-19) (10.2668 8.56806 5.52547e-19) (10.5022 8.32311 5.41503e-19) (10.7309 8.07138 -1.29346e-20) (10.9527 7.81306 -1.09272e-18) (11.1674 7.54829 0) (11.3748 7.27725 5.52318e-19) (11.5748 7.00013 2.45796e-21) (11.7672 6.71712 -1.09611e-18) (11.9518 6.42842 0) (12.1285 6.13424 -5.76421e-19) (12.2972 5.83481 5.47811e-19) (12.4576 5.53035 -5.80615e-19) (12.6096 5.2211 5.82562e-19) (12.7532 4.90729 5.8441e-19) (12.8882 4.58918 3.00765e-19) (13.0144 4.267 -8.51209e-21) (13.1318 3.94102 7.77364e-21) (13.2402 3.61149 7.16199e-21) (13.3395 3.27866 -2.80391e-19) (13.4297 2.94281 -2.80991e-19) (13.5106 2.60419 1.57647e-20) (13.5822 2.26308 -1.52912e-19) (13.6444 1.91974 -1.48943e-19) (13.6971 1.57445 4.22964e-21) (13.7403 1.22749 0) (13.7739 0.879139 0) (13.7979 0.529663 0) (13.8121 0.179383 -9.96228e-22) (9.56116 8.80341 1.00273e-18) (9.80251 8.57795 -4.95081e-19) (10.0378 8.34575 -5.00928e-19) (10.2668 8.10687 4.86423e-19) (10.4892 7.86144 4.90817e-19) (10.7048 7.60959 1.56188e-20) (10.9135 7.35147 4.97081e-19) (11.1151 7.08725 0) (11.3094 6.81711 1.44698e-20) (11.4963 6.54124 1.56093e-20) (11.6756 6.25982 0) (11.8472 5.97308 5.08209e-19) (12.0109 5.68122 -1.0484e-18) (12.1667 5.38448 -2.48773e-19) (12.3143 5.08308 -2.63208e-19) (12.4536 4.77725 0) (12.5846 4.46724 2.65678e-19) (12.707 4.15329 2.52743e-19) (12.8208 3.83564 2.67094e-19) (12.9259 3.51455 -2.52777e-19) (13.0222 3.19026 2.755e-19) (13.1096 2.86304 5.37799e-19) (13.1879 2.53314 2.76633e-19) (13.2572 2.20082 0) (13.3173 1.86636 0) (13.3682 1.53 0) (13.4098 1.19203 0) (13.4421 0.852717 0) (13.4651 0.512322 0) (13.4786 0.171112 -1.74498e-20) (9.35501 8.58042 0) (9.59004 8.36039 0) (9.81915 8.13383 -4.53117e-19) (10.042 7.90082 -4.808e-19) (10.2584 7.66143 0) (10.4682 7.4158 -4.60873e-19) (10.6712 7.16407 -9.65093e-19) (10.8672 6.90639 -2.29344e-21) (11.0561 6.64294 1.43981e-18) (11.2378 6.37389 4.6987e-19) (11.4121 6.09944 0) (11.5788 5.8198 -2.55922e-19) (11.7379 5.53519 1.33872e-20) (11.8892 5.24581 7.47597e-19) (12.0326 4.9519 0) (12.1679 4.65369 -4.80545e-19) (12.295 4.3514 7.2963e-19) (12.4139 4.04529 -7.57103e-19) (12.5244 3.73558 -2.48943e-19) (12.6263 3.42253 2.62051e-19) (12.7197 3.10638 -2.43515e-19) (12.8044 2.78738 -2.57201e-19) (12.8803 2.46579 0) (12.9474 2.14186 1.25757e-19) (13.0056 1.81584 1.94042e-22) (13.0548 1.48799 -1.25951e-19) (13.095 1.15858 0) (13.126 0.827871 0) (13.148 0.49612 0) (13.1608 0.163583 0) (9.15734 8.36704 0) (9.38638 8.15225 0) (9.6096 7.93116 8.67954e-19) (9.82669 7.70381 0) (10.0374 7.47027 4.39854e-19) (10.2416 7.23065 1.31821e-20) (10.4392 6.98507 0) (10.6299 6.73368 8.81073e-19) (10.8137 6.47665 -2.1224e-20) (10.9903 6.21416 -9.10602e-19) (11.1598 5.9464 -4.40393e-19) (11.322 5.67358 -4.422e-19) (11.4767 5.3959 -4.43919e-19) (11.6237 5.11358 4.45551e-19) (11.7631 4.82684 0) (11.8946 4.53591 4.72369e-19) (12.0181 4.24103 -6.92706e-19) (12.1336 3.94241 -2.31044e-19) (12.2409 3.6403 4.52453e-19) (12.3399 3.33494 1.20227e-20) (12.4306 3.02657 2.39371e-19) (12.5128 2.71543 0) (12.5864 2.40177 3.45403e-19) (12.6515 2.08584 1.99948e-22) (12.7078 1.76789 1.11693e-19) (12.7554 1.44817 0) (12.7942 1.12694 0) (12.8241 0.804443 0) (12.8452 0.480944 0) (12.8573 0.15669 0) (8.96728 8.16224 3.89322e-19) (9.19064 7.95253 0) (9.40828 7.73675 -4.15447e-19) (9.61986 7.51492 0) (9.82516 7.28707 4.10598e-19) (10.024 7.05326 -4.10593e-19) (10.2164 6.81364 0) (10.402 6.56832 -4.27119e-19) (10.5809 6.31749 -2.1399e-20) (10.7529 6.06132 4.09656e-19) (10.9178 5.79999 4.32993e-19) (11.0756 5.53372 4.34771e-19) (11.226 5.2627 4.36461e-19) (11.3691 4.98716 -6.40617e-19) (11.5047 4.70731 -2.13766e-19) (11.6326 4.42338 0) (11.7527 4.13558 8.62831e-19) (11.865 3.84416 -4.21671e-19) (11.9693 3.54933 -6.61836e-19) (12.0655 3.25134 4.39968e-19) (12.1536 2.95042 2.17998e-19) (12.2334 2.64682 -4.30888e-19) (12.3049 2.34076 -2.24423e-19) (12.368 2.0325 1.09615e-19) (12.4226 1.72228 -4.39058e-19) (12.4687 1.41033 -1.09782e-19) (12.5062 1.09692 0) (12.5351 0.782287 1.07424e-19) (12.5553 0.466685 0) (12.5668 0.150352 0) (8.78414 7.96521 -8.69123e-21) (9.00213 7.76041 -3.74167e-19) (9.21448 7.54983 0) (9.42082 7.33341 0) (9.62093 7.1111 1.0451e-20) (9.81472 6.88296 2.1539e-21) (10.0021 6.6491 -3.8584e-19) (10.1829 6.40968 -7.69306e-19) (10.3571 6.16484 -3.92484e-19) (10.5245 5.91476 -4.0286e-19) (10.6851 5.65964 3.84813e-19) (10.8387 5.39967 -1.88033e-19) (10.9852 5.13507 -7.85503e-19) (11.1244 4.86605 6.08565e-19) (11.2564 4.59283 3.90784e-19) (11.3808 4.31561 0) (11.4978 4.03464 -6.04974e-19) (11.607 3.75012 6.07322e-19) (11.7085 3.46229 2.02903e-19) (11.802 3.17138 -4.06299e-19) (11.8877 2.87762 2.03396e-19) (11.9652 2.58124 1.02038e-20) (12.0347 2.28248 1.99547e-19) (12.096 1.98158 0) (12.149 1.67876 2.10485e-19) (12.1936 1.37428 0) (12.2299 1.06838 1.0038e-19) (12.2578 0.76128 -1.31396e-19) (12.2773 0.453245 2.57546e-20) (12.2882 0.144504 0) (8.60741 7.77525 -3.30243e-19) (8.82035 7.57525 -1.03457e-18) (9.02771 7.36979 0) (9.22905 7.1587 6.94162e-19) (9.4242 6.94182 3.67129e-19) (9.6131 6.7192 -3.6098e-19) (9.79569 6.49096 3.60976e-19) (9.97188 6.25725 7.28423e-19) (10.1416 6.0182 3.75083e-19) (10.3047 5.77402 0) (10.4611 5.52488 -3.78509e-19) (10.6107 5.271 3.80097e-19) (10.7534 5.01259 7.44839e-19) (10.889 4.74985 0) (11.0175 4.483 -9.38004e-19) (11.1387 4.21226 1.87718e-19) (11.2525 3.93784 3.86861e-19) (11.3589 3.65997 -3.87989e-19) (11.4576 3.37887 -1.89928e-19) (11.5487 3.09477 5.61237e-19) (11.632 2.80789 1.81362e-19) (11.7074 2.51846 3.86712e-19) (11.775 2.22671 -9.41856e-21) (11.8345 1.93287 2.83142e-19) (11.8859 1.63718 1.87638e-19) (11.9293 1.33987 -2.21409e-21) (11.9644 1.04117 -9.87362e-20) (11.9914 0.741317 9.40949e-20) (12.0101 0.440549 0) (12.0205 0.139096 0) (8.43668 7.59186 6.68996e-19) (8.64494 7.39652 6.73746e-19) (8.84763 7.19616 0) (9.04422 6.99037 -6.82936e-19) (9.23461 6.77884 6.54318e-19) (9.41882 6.56162 3.38062e-19) (9.59683 6.33885 -3.38059e-19) (9.76857 6.11067 -6.91132e-19) (9.93396 5.87724 6.85052e-19) (10.0929 5.63875 -3.43363e-19) (10.2453 5.39539 0) (10.3911 5.14738 0) (10.5301 4.89492 -3.57361e-19) (10.6623 4.63823 0) (10.7874 4.37752 1.70458e-20) (10.9055 4.113 3.44093e-19) (11.0164 3.8449 1.76985e-19) (11.1199 3.57343 1.69213e-19) (11.2161 3.2988 0) (11.3047 3.02125 -5.43698e-19) (11.3858 2.74099 -1.8777e-19) (11.4592 2.45825 0) (11.5249 2.17324 -1.83838e-19) (11.5827 1.88621 -9.42637e-20) (11.6327 1.59737 -9.86214e-20) (11.6748 1.30696 -9.23611e-20) (11.7088 1.0152 0) (11.7349 0.72231 -9.25731e-20) (11.7529 0.428535 -4.4135e-20) (11.7628 0.134094 1.10413e-20) (8.27171 7.41458 3.06429e-19) (8.47572 7.22383 -3.06426e-19) (8.67408 7.02866 6.05144e-19) (8.86615 6.82817 0) (9.05196 6.6219 -3.28827e-19) (9.23166 6.40996 -3.1504e-19) (9.40524 6.19253 0) (9.57268 5.96972 9.44644e-19) (9.7339 5.74171 1.59017e-21) (9.88884 5.50871 -3.21948e-19) (10.0374 5.27091 0) (10.1795 5.02855 1.63118e-19) (10.3149 4.78182 1.56226e-19) (10.4437 4.53095 4.8493e-19) (10.5657 4.27614 3.2988e-19) (10.6807 4.01762 -4.9647e-19) (10.7887 3.75559 -4.89818e-19) (10.8896 3.49027 1.50109e-19) (10.9832 3.22188 -3.25692e-19) (11.0696 2.95063 0) (11.1485 2.67674 3.27299e-19) (11.2199 2.40044 0) (11.2838 2.12193 8.4176e-20) (11.3401 1.84145 1.42001e-22) (11.3886 1.55921 -3.37692e-19) (11.4294 1.27544 -8.44444e-20) (11.4625 0.990362 -1.24982e-19) (11.4877 0.704191 -4.04164e-20) (11.505 0.417153 4.34302e-20) (11.5145 0.129469 -1.08649e-20) (8.11251 7.24298 0) (8.31276 7.05687 0) (8.5071 6.86714 -5.95604e-19) (8.69484 6.67199 0) (8.87621 6.4709 2.95598e-19) (9.05149 6.26413 -2.95595e-19) (9.22075 6.05186 -2.99068e-19) (9.38397 5.83424 -3.15373e-19) (9.54111 5.61144 -2.86948e-19) (9.6921 5.38369 -3.02156e-19) (9.83688 5.15123 0) (9.97533 4.91428 0) (10.1074 4.67305 -4.68018e-19) (10.2328 4.42777 -1.61802e-19) (10.3517 4.17863 -3.16648e-19) (10.4638 3.92587 4.73053e-19) (10.569 3.66968 1.51178e-20) (10.6673 3.41029 -4.75485e-19) (10.7585 3.1479 1.47139e-20) (10.8425 2.88272 3.06631e-19) (10.9194 2.61497 -3.22139e-19) (10.9889 2.34487 0) (11.0511 2.07263 0) (11.1058 1.79847 2.33747e-19) (11.153 1.52259 8.31293e-20) (11.1926 1.24523 0) (11.2246 0.966595 1.58973e-19) (11.249 0.6869 1.59135e-19) (11.2657 0.406363 -3.88806e-20) (11.2747 0.125198 0) (7.95938 7.07653 0) (8.15662 6.89529 0) (8.34717 6.71143 0) (8.53056 6.52167 0) (8.70748 6.32564 -5.41039e-19) (8.87834 6.12388 0) (9.04325 5.91659 0) (9.20223 5.70391 0) (9.35528 5.48607 8.63788e-19) (9.50236 5.26335 -2.83849e-19) (9.64339 5.03598 0) (9.77827 4.80421 0) (9.9069 4.56825 0) (10.0292 4.32833 0) (10.1449 4.08465 -1.45463e-19) (10.2541 3.83743 -1.39431e-19) (10.3567 3.58688 7.3156e-19) (10.4524 3.33319 -1.46395e-19) (10.5412 3.07659 4.48295e-19) (10.6231 2.81727 -4.49069e-19) (10.6979 2.55545 0) (10.7656 2.29134 7.411e-20) (10.8261 2.02515 -7.411e-20) (10.8793 1.75709 -6.87942e-21) (10.9252 1.48737 0) (10.9637 1.2162 0) (10.9947 0.943796 -1.49367e-19) (11.0183 0.670363 -1.49516e-19) (11.0343 0.396112 3.82754e-20) (11.0428 0.121248 0) (7.81224 6.91486 2.52894e-19) (8.00801 6.73894 -7.4935e-19) (8.19496 6.56146 0) (8.3737 6.377 0) (8.54585 6.18586 7.93743e-19) (8.71206 5.98889 -7.73052e-19) (8.87245 5.7863 0) (9.02707 5.57827 -2.6556e-19) (9.17597 5.36512 -2.55081e-19) (9.31912 5.14716 5.23189e-19) (9.45642 4.92465 0) (9.58777 4.69783 -5.27909e-19) (9.71305 4.46694 0) (9.83215 4.23218 1.36307e-19) (9.94495 3.99376 -1.36306e-19) (10.0513 3.75189 1.49783e-19) (10.1512 3.50677 -5.4983e-19) (10.2445 3.25861 1.31983e-19) (10.331 3.0076 2.70413e-19) (10.4107 2.75396 0) (10.4836 2.49788 0) (10.5495 2.23957 0) (10.6083 1.97924 0) (10.66 1.7171 6.35677e-20) (10.7046 1.45334 1.0341e-22) (10.742 1.18818 -7.00491e-20) (10.772 0.921819 7.1834e-20) (10.7948 0.654461 7.19051e-20) (10.8103 0.386308 0) (10.8183 0.117556 -1.71977e-20) (7.66927 6.75866 2.3737e-19) (7.86541 6.58981 2.51558e-19) (8.04911 6.41903 -2.42104e-19) (8.22264 6.23948 2.42101e-19) (8.38948 6.05287 -2.33085e-19) (8.55071 5.86031 2.40467e-20) (8.70643 5.66199 -4.95598e-19) (8.85668 5.45824 -1.33905e-21) (9.0015 5.24946 1.0137e-18) (9.14083 5.03596 -2.74069e-19) (9.27455 4.81804 0) (9.40253 4.59593 6.47163e-19) (9.52463 4.36986 -6.26113e-19) (9.64073 4.14002 0) (9.75069 3.90663 -1.28725e-19) (9.8544 3.66988 3.92633e-19) (9.95175 3.42997 2.64763e-19) (10.0426 3.18709 -2.65563e-19) (10.127 2.94145 -2.66309e-19) (10.2047 2.69324 -1.30623e-19) (10.2756 2.44267 1.30622e-19) (10.3397 2.18993 2.56399e-19) (10.397 1.93523 0) (10.4473 1.67876 -1.97476e-19) (10.4907 1.42074 1.28994e-19) (10.5269 1.16136 -6.5932e-20) (10.5561 0.900818 6.46143e-20) (10.5781 0.639313 0) (10.5929 0.377038 3.23635e-20) (10.6006 0.114178 1.69367e-20) (7.53012 6.60977 4.33263e-19) (7.72362 6.45387 0) (7.90385 6.28894 -4.44317e-19) (8.07214 6.11301 -4.48119e-19) (8.23351 5.93024 7.02562e-19) (8.38982 5.74142 6.97609e-19) (8.54116 5.5468 0) (8.68744 5.34688 0) (8.82863 5.14207 0) (8.9646 4.9327 -9.4892e-19) (9.09518 4.71904 0) (9.22019 4.50131 4.68217e-19) (9.33948 4.27973 4.91371e-19) (9.45291 4.05448 0) (9.56034 3.82578 2.36885e-19) (9.66166 3.59379 -2.37711e-19) (9.75674 3.35873 1.21995e-19) (9.8455 3.12078 -1.21995e-19) (9.92783 2.88014 3.62592e-19) (10.0037 2.637 1.17828e-19) (10.0729 2.39155 0) (10.1354 2.144 -1.09176e-20) (10.1913 1.89455 0) (10.2403 1.64339 1.88768e-19) (10.2825 1.39072 -2.51072e-19) (10.3178 1.13674 1.83738e-19) (10.3461 0.881642 -9.3411e-20) (10.3675 0.625617 -3.11246e-20) (10.3818 0.36885 -3.18785e-20) (10.3891 0.111511 0) (7.4153 6.45951 -4.38252e-19) (7.59394 6.32018 0) (7.76597 6.15737 2.28459e-19) (7.92919 5.98367 6.74078e-19) (8.08524 5.80458 2.24107e-19) (8.23651 5.61942 -6.8334e-19) (8.3835 5.42849 0) (8.52589 5.2325 -4.47186e-19) (8.66346 5.03182 0) (8.79601 4.82675 1.77523e-20) (8.92334 4.61752 0) (9.04524 4.40437 -9.28363e-19) (9.16155 4.18747 -1.1648e-19) (9.27212 3.96701 4.58027e-19) (9.37682 3.74318 -1.22491e-19) (9.47553 3.51617 2.40214e-19) (9.56816 3.28615 3.49479e-19) (9.6546 3.05332 -3.50104e-19) (9.73476 2.81786 -9.7355e-21) (9.80857 2.57997 -3.61987e-19) (9.87595 2.33983 -1.14678e-19) (9.93683 2.09763 -4.78194e-19) (9.99115 1.85357 0) (10.0388 1.60783 0) (10.0799 1.36062 1.17585e-19) (10.1142 1.11212 -1.22833e-19) (10.1417 0.862525 -5.63342e-20) (10.1624 0.612002 0) (10.1762 0.360734 0) (10.1832 0.108876 0) (0.803785 8.88838 0) (0.797864 9.08619 0) (0.792324 9.28873 1.10998e-20) (0.78585 9.49622 -1.12709e-20) (0.778722 9.70892 0) (0.771035 9.92713 0) (0.762697 10.1513 -7.40764e-21) (0.753641 10.3819 7.52784e-21) (0.743828 10.6197 0) (0.733217 10.8651 0) (0.721759 11.1189 0) (0.70939 11.3819 0) (0.696029 11.6549 0) (0.681576 11.939 -1.25677e-20) (0.665909 12.2356 -8.02876e-22) (0.648885 12.5463 1.38381e-20) (0.630339 12.8735 0) (0.610091 13.22 1.73005e-20) (0.587945 13.5895 1.16708e-21) (0.563701 13.9868 -1.91445e-20) (0.537177 14.4173 0) (0.508243 14.8871 0) (0.476831 15.4028 1.32738e-20) (0.442897 15.9698 -1.35347e-20) (0.407212 16.5909 0) (0.373056 17.2627 0) (0.334511 17.9711 0) (0.260929 18.686 0) (0.402161 19.3532 0) (-0.121601 19.8581 7.38533e-20) (1.03737 8.89496 -1.95448e-20) (1.03663 9.09305 -2.09467e-20) (1.03608 9.29594 2.12654e-20) (1.03496 9.50389 0) (1.03341 9.71712 2.59184e-20) (1.03143 9.93593 -2.63283e-20) (1.02896 10.1607 2.99544e-20) (1.02594 10.3921 -3.04405e-20) (1.02234 10.6305 0) (1.01815 10.8766 1.82382e-20) (1.01332 11.1312 0) (1.00781 11.395 0) (1.00156 11.6689 0) (0.99451 11.9539 0) (0.986563 12.2515 0) (0.977628 12.5634 0) (0.967602 12.8919 0) (0.956381 13.2399 -3.48817e-20) (0.943871 13.6111 7.34107e-20) (0.929998 14.0101 -7.97815e-20) (0.914727 14.4424 -2.88146e-21) (0.898098 14.9141 9.31447e-20) (0.880223 15.4314 5.34866e-20) (0.861212 15.9996 2.122e-21) (0.841911 16.621 0) (0.825567 17.2917 0) (0.806164 17.9968 0) (0.751814 18.7061 0) (0.911632 19.3579 4.84603e-20) (0.402066 19.8589 3.16249e-21) (1.27151 8.89556 0) (1.2759 9.09376 -2.07659e-20) (1.28034 9.29685 0) (1.28461 9.50509 4.88356e-20) (1.28865 9.7187 -1.02034e-19) (1.29241 9.93795 1.09601e-19) (1.29583 10.1632 -2.76562e-20) (1.29888 10.3951 -6.51398e-20) (1.30155 10.634 6.62106e-20) (1.30381 10.8807 -9.37492e-20) (1.30565 11.1359 7.67849e-20) (1.30704 11.4003 0) (1.30796 11.6749 0) (1.30836 11.9607 0) (1.30819 12.2592 0) (1.30741 12.5721 0) (1.30598 12.9016 6.48534e-20) (1.30387 13.2509 -6.60482e-20) (1.30108 13.6234 0) (1.29767 14.0239 1.63621e-19) (1.29375 14.4577 -8.46013e-20) (1.28952 14.9309 -4.74246e-20) (1.28527 15.4494 1.07762e-19) (1.28124 16.0184 -4.85058e-20) (1.27833 16.6396 -1.20374e-19) (1.27969 17.3085 0) (1.27905 18.0097 7.88039e-20) (1.24332 18.7126 6.37139e-21) (1.42002 19.3484 -8.85286e-20) (0.923816 19.8464 1.9952e-19) (1.50602 8.89015 1.22639e-19) (1.51549 9.08828 -6.29019e-20) (1.52492 9.29141 4.36215e-20) (1.5346 9.49978 4.94133e-20) (1.54426 9.7136 -1.03222e-19) (1.55379 9.93313 1.10836e-19) (1.56314 10.1587 -8.7454e-20) (1.57229 10.3909 0) (1.58125 10.6302 -7.08221e-20) (1.59 10.8774 7.20015e-20) (1.59855 11.1329 0) (1.60689 11.3978 0) (1.61502 11.6729 0) (1.62292 11.9593 0) (1.63059 12.2584 0) (1.63802 12.5721 -1.2075e-19) (1.64525 12.9025 1.22948e-19) (1.65231 13.2527 1.41793e-19) (1.65933 13.6264 -1.44436e-19) (1.66647 14.0281 -1.64265e-19) (1.67399 14.4631 -5.82703e-21) (1.68224 14.9374 -3.44582e-21) (1.69166 15.4568 0) (1.70264 16.026 0) (1.71609 16.6465 0) (1.73501 17.313 1.43657e-19) (1.75275 18.0096 1.21075e-20) (1.73517 18.7057 -1.6186e-19) (1.92762 19.3257 1.96086e-19) (1.44417 19.822 1.2129e-20) (1.74072 8.87867 -8.58488e-20) (1.75522 9.07656 1.25053e-19) (1.76966 9.27959 -4.56288e-20) (1.78477 9.48792 -4.89065e-20) (1.80007 9.70179 0) (1.81539 9.92143 0) (1.83069 10.1472 -6.04507e-20) (1.84598 10.3796 -6.65017e-20) (1.86125 10.6191 -2.25109e-21) (1.87653 10.8664 0) (1.89182 11.1223 -8.09225e-20) (1.90715 11.3874 0) (1.92252 11.6628 -9.40336e-20) (1.93797 11.9496 0) (1.95352 12.2492 2.93621e-21) (1.96923 12.5634 -2.36349e-19) (1.98517 12.8945 1.2755e-19) (2.00148 13.2454 -2.73256e-19) (2.01837 13.62 1.55136e-19) (2.03614 14.0225 -3.21788e-19) (2.05516 14.4584 -1.78082e-19) (2.07596 14.9334 -9.77274e-20) (2.09911 15.4533 -1.02413e-19) (2.1251 16.0223 -2.2337e-19) (2.15486 16.6415 -5.07432e-19) (2.19118 17.3052 -2.89585e-19) (2.22702 17.9967 1.47547e-19) (2.2272 18.6856 -3.4003e-19) (2.43464 19.2896 -3.72467e-19) (1.96338 19.785 -2.00355e-19) (1.97545 8.86107 -8.23559e-20) (1.99492 9.05859 -1.73823e-19) (2.01438 9.26136 8.88789e-20) (2.03494 9.46949 -5.71741e-22) (2.05591 9.68324 0) (2.07704 9.90283 5.95154e-20) (2.09831 10.1286 -2.43972e-19) (2.11976 10.361 -7.2934e-20) (2.14138 10.6006 1.35873e-19) (2.16321 10.8479 1.55495e-19) (2.18527 11.1038 -3.26344e-19) (2.20761 11.3691 8.23091e-20) (2.23027 11.6446 -8.50004e-22) (2.2533 11.9316 0) (2.27678 12.2315 -1.14466e-19) (2.3008 12.546 -3.95934e-21) (2.32551 12.8775 1.31869e-19) (2.35113 13.2289 -1.3649e-19) (2.37795 13.604 4.41388e-21) (2.4064 14.0072 9.3461e-21) (2.43699 14.4436 4.93397e-21) (2.47039 14.919 1.94013e-19) (2.5073 15.4388 2.11759e-19) (2.54831 16.0072 2.31611e-19) (2.59431 16.6248 5.18577e-19) (2.64788 17.285 3.00272e-19) (2.70155 17.9709 -1.3635e-19) (2.71914 18.6523 1.7603e-19) (2.94091 19.2402 3.72466e-19) (2.48133 19.7346 2.02039e-19) (2.21007 8.83731 0) (2.23444 9.03431 1.32299e-19) (2.25892 9.23669 -1.39814e-19) (2.28495 9.44447 4.41233e-20) (2.31159 9.65793 -5.79031e-21) (2.33855 9.8773 1.68331e-19) (2.36582 10.1029 -6.44776e-22) (2.39344 10.3351 -7.01026e-20) (2.42143 10.5746 2.08513e-19) (2.44983 10.8219 0) (2.47869 11.0777 8.16931e-20) (2.50808 11.3428 -8.09388e-22) (2.53805 11.6183 9.48832e-20) (2.5687 11.9053 0) (2.60013 12.2052 -1.18399e-19) (2.63251 12.5198 3.52607e-19) (2.66603 12.8515 1.29331e-19) (2.701 13.2032 1.40095e-19) (2.73782 13.5785 3.05058e-19) (2.777 13.982 3.31248e-19) (2.81922 14.4187 0) (2.86525 14.8941 1.96903e-19) (2.91595 15.4135 0) (2.97196 15.9808 2.4289e-19) (3.03413 16.5961 2.76287e-19) (3.1048 17.2525 -2.71839e-19) (3.17603 17.9323 3.11595e-19) (3.21064 18.6057 0) (3.4461 19.1772 -3.99139e-19) (2.99774 19.6707 7.91722e-19) (2.44443 8.80736 0) (2.47362 9.00372 0) (2.50312 9.20556 0) (2.53462 9.41282 0) (2.56696 9.62584 -5.42352e-20) (2.59975 9.84483 0) (2.63303 10.0701 6.17402e-20) (2.66684 10.302 -1.37097e-19) (2.70122 10.5412 -7.99837e-21) (2.73621 10.7882 1.49803e-19) (2.77189 11.0437 -1.70588e-19) (2.80833 11.3086 2.6232e-19) (2.84564 11.5838 0) (2.88393 11.8706 2.13779e-19) (2.92336 12.1703 1.33171e-20) (2.96412 12.4848 -2.35043e-19) (3.0065 12.8164 2.70154e-19) (3.05086 13.1681 -2.75131e-19) (3.09771 13.5435 1.64437e-19) (3.14768 13.9469 -6.62306e-19) (3.20156 14.3835 1.7579e-19) (3.26027 14.8586 -4.01504e-19) (3.32476 15.3772 -1.48812e-20) (3.39575 15.943 -8.74864e-21) (3.47401 16.5556 -7.85101e-19) (3.56162 17.2075 5.58479e-19) (3.65013 17.8807 -2.99538e-19) (3.70134 18.5458 -3.32297e-19) (3.94985 19.1008 0) (3.51235 19.5931 -4.06339e-19) (2.67839 8.7712 -9.49178e-21) (2.71232 8.96679 -9.29559e-21) (2.74682 9.16795 1.85401e-19) (2.78381 9.37453 0) (2.82183 9.58695 5.42352e-20) (2.86046 9.8054 0) (2.89976 10.0302 0) (2.93977 10.2616 0) (2.98054 10.5003 2.94089e-19) (3.02214 10.7468 8.72439e-21) (3.06465 11.0019 -3.30688e-19) (3.10818 11.2663 0) (3.15284 11.5412 -1.99848e-19) (3.19879 11.8275 4.18955e-19) (3.24623 12.1268 -2.19431e-19) (3.29541 12.441 -2.45031e-19) (3.34667 12.7723 -2.7231e-19) (3.40046 13.1237 -1.76757e-20) (3.45738 13.4989 -1.05045e-20) (3.51817 13.902 -3.47597e-19) (3.58375 14.3381 7.21205e-19) (3.65516 14.8124 0) (3.73344 15.3299 0) (3.81936 15.8937 2.36607e-19) (3.91362 16.5031 5.29465e-19) (4.01799 17.1501 -5.60357e-19) (4.12349 17.8163 3.13657e-19) (4.19091 18.4726 6.97631e-19) (4.45184 19.0109 -7.63464e-19) (4.02484 19.5019 8.25193e-19) (2.9118 8.7288 -8.35653e-20) (2.95039 8.9235 0) (2.98988 9.12385 9.6743e-20) (3.03234 9.3296 0) (3.07605 9.54125 0) (3.12052 9.759 -2.42864e-19) (3.16583 9.98309 2.46755e-19) (3.21204 10.2139 -1.43009e-19) (3.25922 10.452 1.38926e-19) (3.30743 10.6978 1.5766e-19) (3.35678 10.9523 1.68012e-19) (3.40739 11.2161 1.87052e-19) (3.45942 11.4903 -1.9029e-19) (3.51305 11.776 2.17426e-19) (3.56852 12.0747 -2.21287e-19) (3.62613 12.3884 4.98721e-19) (3.6863 12.7191 1.61577e-20) (3.74955 13.07 -2.79523e-19) (3.81657 13.4446 3.11007e-19) (3.88821 13.8471 0) (3.96551 14.2824 -3.6698e-19) (4.04962 14.7557 4.15149e-19) (4.14169 15.2715 1.58038e-20) (4.24249 15.8329 0) (4.35264 16.4387 0) (4.47356 17.0803 0) (4.59577 17.7389 0) (4.67899 18.3861 -3.58263e-19) (4.9517 18.9075 1.13349e-18) (4.53488 19.3972 -1.23722e-18) (3.14453 8.68015 -2.74263e-19) (3.18767 8.87386 8.59375e-20) (3.23213 9.07325 -9.67431e-20) (3.28006 9.27802 0) (3.32944 9.48874 -3.40966e-19) (3.37974 9.70562 2.32577e-19) (3.43106 9.92889 0) (3.48348 10.1589 -4.18994e-19) (3.53705 10.3961 4.35116e-19) (3.59188 10.6412 -3.16785e-19) (3.64807 10.8948 3.46371e-19) (3.70577 11.1578 1.04161e-20) (3.76517 11.4312 2.09612e-19) (3.82649 11.7161 -2.01336e-19) (3.89 12.014 7.43668e-21) (3.95606 12.3268 0) (4.02515 12.6568 0) (4.09787 13.0069 2.91383e-19) (4.17501 13.3807 -3.15766e-19) (4.25752 13.7822 -1.01357e-20) (4.34655 14.2164 3.59518e-19) (4.44336 14.6882 4.18122e-19) (4.54919 15.2021 -1.3218e-18) (4.66482 15.7606 9.48698e-19) (4.79074 16.3623 -5.29299e-19) (4.92802 16.998 8.82194e-19) (5.06662 17.6486 -3.07165e-19) (5.16523 18.2864 -1.06693e-18) (5.44908 18.7907 -3.62016e-20) (5.04212 19.2789 1.22642e-18) (3.37643 8.62523 -3.64084e-19) (3.42403 8.81786 2.71131e-19) (3.47342 9.01616 -2.01988e-19) (3.5268 9.21978 2.051e-19) (3.58184 9.42942 3.43345e-19) (3.63795 9.64528 1.28427e-20) (3.69527 9.86756 -2.51806e-19) (3.75388 10.0966 0) (3.81385 10.3329 -1.48115e-19) (3.87528 10.577 1.59125e-19) (3.93831 10.8296 -5.24774e-19) (4.0031 11.0916 3.59731e-19) (4.06987 11.3639 -1.98267e-19) (4.13887 11.6478 2.13713e-19) (4.21043 11.9447 8.00721e-21) (4.28495 12.2565 1.48809e-20) (4.36297 12.5854 1.6326e-20) (4.44517 12.9345 -8.77157e-19) (4.53244 13.3071 6.23259e-19) (4.62583 13.7074 -6.98038e-19) (4.72659 14.1402 -2.4339e-20) (4.8361 14.6101 -2.71423e-20) (4.95566 15.1215 4.2929e-19) (5.08603 15.6767 1.96883e-20) (5.22758 16.2739 1.64175e-20) (5.38099 16.9032 -5.81084e-19) (5.53568 17.5454 -3.34149e-19) (5.64926 18.1733 -2.6228e-20) (5.94361 18.6604 7.41095e-19) (5.54621 19.1472 -4.37652e-19) (3.60739 8.56405 8.65104e-20) (3.65932 8.7555 -9.36439e-20) (3.71361 8.95259 -2.04168e-19) (3.77242 9.1549 1.00437e-19) (3.83308 9.3633 -1.14348e-19) (3.89499 9.57798 -3.72733e-19) (3.95828 9.7991 1.17196e-19) (4.02307 10.027 1.32008e-19) (4.08942 10.2621 -3.08908e-19) (4.15745 10.505 4.83866e-19) (4.2273 10.7565 -3.37456e-19) (4.29917 11.0173 -1.87316e-19) (4.3733 11.2884 -6.1516e-19) (4.44998 11.571 2.03481e-19) (4.52958 11.8667 -6.16321e-21) (4.61255 12.1772 5.04609e-19) (4.6995 12.5049 -2.64511e-19) (4.7912 12.8526 -2.95848e-19) (4.8886 13.2238 0) (4.99287 13.6226 0) (5.10536 14.0536 -3.77794e-19) (5.22754 14.5213 0) (5.36077 15.0299 0) (5.5058 15.5813 0) (5.66282 16.1734 -1.09157e-18) (5.83214 16.7959 -2.25679e-20) (6.00259 17.4293 6.72504e-19) (6.13072 18.0471 -3.16738e-19) (6.4349 18.5168 -1.15421e-18) (6.04679 19.0021 -1.26222e-18) (3.83725 8.4966 -8.85268e-20) (3.89341 8.6868 9.36441e-20) (3.95255 8.88254 2.06338e-19) (4.01675 9.0834 -4.31246e-19) (4.08301 9.2904 5.74473e-19) (4.15068 9.50374 1.17633e-20) (4.21992 9.72355 -3.87987e-19) (4.29086 9.95013 1.40634e-19) (4.36357 10.1839 3.1173e-19) (4.43817 10.4255 -4.89692e-19) (4.51483 10.6756 7.0037e-19) (4.59376 10.935 -5.65945e-19) (4.67524 11.2047 5.95559e-19) (4.75959 11.4859 2.17278e-19) (4.84721 11.7801 2.5049e-19) (4.93863 12.0891 -4.93545e-19) (5.03451 12.4153 0) (5.13569 12.7614 2.95849e-19) (5.24321 13.1309 3.32148e-19) (5.35835 13.5278 -3.38412e-19) (5.48255 13.9567 3.77795e-19) (5.61737 14.4218 0) (5.76421 14.9272 4.66051e-19) (5.9238 15.4744 -4.7521e-19) (6.09613 16.061 5.36456e-19) (6.2811 16.6762 1.2028e-18) (6.46698 17.3003 -6.26377e-19) (6.60922 17.9076 -7.19563e-19) (6.92259 18.3598 -7.86562e-19) (6.5435 18.8437 -4.51037e-21) (4.06591 8.42289 1.93341e-19) (4.12617 8.61177 -1.85716e-19) (4.1901 8.80605 3.10607e-19) (4.25965 9.0053 1.19149e-19) (4.33146 9.21075 -1.09681e-19) (4.40484 9.4226 3.78866e-19) (4.48001 9.64093 -3.99053e-19) (4.55707 9.86602 2.77866e-19) (4.6361 10.0983 1.5367e-19) (4.71725 10.3384 0) (4.80069 10.5869 0) (4.88666 10.8448 3.9046e-19) (4.97546 11.1128 -3.97219e-19) (5.06746 11.3924 0) (5.16309 11.6849 4.88643e-19) (5.26294 11.9922 -1.02508e-18) (5.36773 12.3166 5.37252e-19) (5.47838 12.6608 -3.08694e-19) (5.59602 13.0284 6.49015e-19) (5.72201 13.4231 -3.40875e-19) (5.85789 13.8494 0) (6.0053 14.3116 0) (6.16568 14.8133 0) (6.3397 15.3559 0) (6.52716 15.9366 5.62432e-19) (6.72752 16.5441 -5.73668e-19) (6.92847 17.1584 1.33696e-18) (7.0844 17.7549 2.49216e-20) (7.4063 18.1896 -4.90688e-20) (7.03598 18.672 1.6512e-18) (4.29324 8.34294 -9.9658e-20) (4.35745 8.53045 1.87742e-19) (4.42612 8.72314 -1.02112e-19) (4.50096 8.92064 -1.10201e-19) (4.57827 9.12439 -1.16666e-19) (4.65733 9.33458 -2.57675e-19) (4.73836 9.55127 2.69143e-19) (4.8215 9.77472 1.53627e-20) (4.90682 10.0054 -7.71708e-19) (4.99448 10.2438 3.22631e-19) (5.08467 10.4906 -1.78711e-19) (5.17765 10.7466 0) (5.27375 11.0129 0) (5.37336 11.2905 -2.22589e-19) (5.47698 11.5811 4.92446e-19) (5.58524 11.8865 -5.01299e-19) (5.69892 12.2088 -8.54368e-19) (5.81901 12.5509 2.74301e-19) (5.94674 12.9162 6.5373e-19) (6.08355 13.3084 2.2377e-20) (6.23107 13.7319 -3.72681e-19) (6.39102 14.1908 4.19789e-19) (6.56484 14.6884 1.47973e-20) (6.75317 15.226 -4.81662e-19) (6.95557 15.8002 5.66075e-19) (7.17105 16.3995 -5.77383e-19) (7.38671 17.0037 -1.34113e-18) (7.55588 17.5892 6.98892e-19) (7.88566 18.0062 0) (7.52387 18.4873 0) (4.51913 8.25678 1.03781e-21) (4.58714 8.44288 0) (4.66047 8.63387 0) (4.74054 8.82947 1.10201e-19) (4.82329 9.03136 0) (4.90795 9.23975 -1.32865e-19) (4.9948 9.45464 3.99232e-19) (5.08397 9.67627 0) (5.17554 9.90508 0) (5.26966 10.1416 5.11466e-19) (5.36655 10.3865 -5.39885e-19) (5.4665 10.6405 3.75473e-19) (5.56986 10.9048 6.35551e-19) (5.67706 11.1804 -2.12091e-19) (5.78863 11.4688 -4.96234e-19) (5.90527 11.772 -3.05208e-20) (6.0278 12.092 8.25125e-19) (6.15732 12.4317 0) (6.2951 12.7944 3.29928e-19) (6.44269 13.1838 3.57744e-19) (6.60181 13.6041 3.88507e-19) (6.77422 14.0593 -8.55636e-19) (6.96139 14.5524 9.01914e-19) (7.16388 15.0845 5.03088e-19) (7.38101 15.6519 0) (7.61132 16.2426 6.03998e-19) (7.84132 16.8363 -6.64187e-19) (8.02327 17.4105 -7.32553e-19) (8.36029 17.8098 4.46121e-20) (8.00683 18.2897 -8.15511e-19) (4.74345 8.16445 -9.68269e-20) (4.81511 8.34912 4.02878e-19) (4.89301 8.53829 -5.14278e-19) (4.97824 8.73185 0) (5.06634 8.93173 0) (5.15655 9.13815 -3.89792e-19) (5.24915 9.35108 1.29293e-19) (5.34429 9.57073 -3.01155e-19) (5.44204 9.79752 6.29031e-19) (5.54258 10.032 -6.654e-19) (5.64613 10.2747 3.7223e-19) (5.75301 10.5266 -3.78591e-19) (5.86358 10.7886 1.21968e-20) (5.97832 11.0619 -9.01891e-19) (6.09781 11.348 4.71995e-19) (6.22278 11.6487 5.39666e-19) (6.35414 11.9662 -5.49489e-19) (6.49302 12.3032 6.30915e-19) (6.64082 12.663 -1.30486e-18) (6.79915 13.0493 -7.2856e-19) (6.9698 13.4661 -1.06234e-20) (7.15459 13.9171 -4.25475e-19) (7.355 14.4054 4.78654e-19) (7.5715 14.9316 -4.67869e-19) (7.80314 15.4917 -5.33656e-19) (8.04797 16.0734 -1.21176e-18) (8.29193 16.6563 6.64191e-19) (8.48622 17.2188 7.32557e-19) (8.82982 17.6004 8.0022e-19) (8.48451 18.0792 1.72471e-18) (4.96612 8.06601 -2.13265e-20) (5.04125 8.24923 3.87557e-19) (5.12362 8.43648 5.3935e-19) (5.21391 8.62785 -4.40769e-19) (5.30728 8.82557 0) (5.40295 9.02987 0) (5.50123 9.24067 1.37457e-19) (5.60226 9.45816 0) (5.70614 9.68275 3.25702e-19) (5.81303 9.91495 -1.61859e-19) (5.92319 10.1554 3.75283e-19) (6.03693 10.4049 -3.81696e-19) (6.15467 10.6645 -2.23932e-19) (6.2769 10.9353 4.41564e-19) (6.40426 11.2188 -5.0376e-19) (6.53751 11.5168 1.05645e-18) (6.67765 11.8314 3.38205e-20) (6.82587 12.1655 -1.23355e-18) (6.98363 12.5221 9.79485e-19) (7.15263 12.9049 -7.46698e-19) (7.33474 13.3178 7.60937e-19) (7.53183 13.7644 4.25477e-19) (7.74535 14.2475 0) (7.97568 14.7673 -5.26627e-19) (8.22159 15.3197 5.37067e-19) (8.48064 15.8919 -3.73734e-21) (8.73816 16.4636 -6.97409e-19) (8.94434 17.0142 7.11507e-19) (9.2939 17.3783 0) (8.95655 17.856 -1.73132e-18) (5.18703 7.96153 0) (5.26543 8.14332 0) (5.35214 8.32854 0) (5.4474 8.51756 0) (5.54593 8.71297 0) (5.64697 8.915 0) (5.75084 9.12349 0) (5.85769 9.33865 0) (5.96762 9.56086 -3.28468e-19) (6.0808 9.79062 3.33938e-19) (6.1975 10.0286 3.78323e-19) (6.31805 10.2755 -3.84788e-19) (6.44289 10.5325 0) (6.57256 10.8005 0) (6.70773 11.0812 0) (6.84922 11.3762 0) (6.99808 11.6878 0) (7.15558 12.0186 -6.39821e-19) (7.32324 12.3718 6.51749e-19) (7.50285 12.7508 0) (7.69635 13.1594 0) (7.90561 13.6012 -4.4455e-19) (8.13212 14.0786 9.38069e-19) (8.37609 14.5916 3.55574e-20) (8.63603 15.1359 -5.40456e-19) (8.90897 15.6983 6.11505e-19) (9.17966 16.2584 -7.01478e-19) (9.39727 16.797 7.15658e-19) (9.75215 17.1434 8.58401e-19) (9.42261 17.6203 -8.26365e-19) (5.40608 7.85115 4.11836e-19) (5.48753 8.03151 -8.10772e-19) (5.57845 8.21459 -2.37948e-19) (5.67854 8.40111 4.49408e-19) (5.78213 8.59405 -2.47085e-19) (5.88842 8.79362 -2.6405e-19) (5.99779 8.99964 -2.82388e-19) (6.11038 9.21229 -3.02238e-19) (6.22628 9.43192 0) (6.34567 9.65906 -3.5525e-19) (6.46883 9.89432 3.61243e-19) (6.59613 10.1385 -8.09685e-19) (6.72802 10.3925 4.1683e-19) (6.86506 10.6576 1.17853e-20) (7.00798 10.9352 -9.81041e-19) (7.15765 11.2271 -5.37226e-19) (7.31517 11.5353 -1.17561e-18) (7.48188 11.8626 6.24117e-19) (7.65938 12.212 -1.35394e-18) (7.84952 12.5869 -2.43025e-20) (8.0543 12.991 0) (8.27564 13.4275 0) (8.51497 13.8988 -4.57438e-19) (8.77239 14.4047 -1.52958e-18) (9.04611 14.9404 -1.12909e-18) (9.33261 15.4926 0) (9.61605 16.0408 -1.3602e-18) (9.84464 16.5672 0) (10.2042 16.8961 -1.63602e-18) (9.88238 17.3723 0) (5.62316 7.73501 0) (5.70742 7.91395 0) (5.80239 8.09477 8.82648e-19) (5.90716 8.27863 -2.20181e-19) (6.01567 8.46892 7.56471e-19) (6.1271 8.66586 -2.53387e-19) (6.24187 8.86923 -2.48215e-21) (6.3601 9.07916 6.07068e-19) (6.48189 9.29603 3.33973e-19) (6.60741 9.52033 -3.47757e-19) (6.73697 9.75269 -2.01949e-20) (6.87094 9.99387 -2.50642e-20) (7.00979 10.2448 1.29719e-18) (7.15415 10.5067 1.08331e-20) (7.30475 10.781 -3.60067e-21) (7.46253 11.0694 -1.81702e-20) (7.62864 11.3741 5.6149e-19) (7.80449 11.6976 6.2678e-19) (7.99175 12.0429 7.02349e-19) (8.19234 12.4133 -7.20416e-19) (8.4083 12.8125 -8.27449e-19) (8.64159 13.2434 1.71666e-18) (8.89358 13.7082 4.85079e-19) (9.16425 14.2065 5.31425e-19) (9.45147 14.7333 5.80712e-19) (9.75119 15.275 6.4586e-19) (10.047 15.811 3.43774e-18) (10.2861 16.3249 -2.2312e-18) (10.6498 16.6364 7.68757e-19) (10.3355 17.112 -9.28812e-19) (5.83815 7.61335 3.97946e-19) (5.92492 7.79086 0) (6.02376 7.96927 2.12797e-21) (6.13306 8.15027 -2.33565e-19) (6.24635 8.33772 0) (6.36281 8.53184 -2.80455e-19) (6.48286 8.73235 8.42947e-19) (6.60664 8.93937 -6.19167e-19) (6.73422 9.15328 6.56212e-19) (6.8658 9.37455 -6.9222e-19) (7.00167 9.60379 -3.87354e-19) (7.14223 9.84177 7.97022e-19) (7.28799 10.0894 3.22656e-21) (7.43957 10.3479 0) (7.59778 10.6187 5.01852e-19) (7.7636 10.9034 0) (7.93823 11.2042 5.6798e-19) (8.12314 11.5236 6.15027e-19) (8.32007 11.8645 0) (8.53101 12.2302 7.39986e-19) (8.75805 12.624 8.08272e-19) (9.00314 13.049 -8.73273e-19) (9.26763 13.507 9.51292e-19) (9.55133 13.9973 0) (9.85178 14.5147 -6.74356e-21) (10.1644 15.0455 -2.49749e-18) (10.4721 15.569 7.7196e-21) (10.7213 16.0703 1.50734e-18) (11.0885 16.3645 -1.65338e-18) (10.7817 16.8398 -8.45314e-21) (6.05088 7.48636 -4.02046e-19) (6.13985 7.66245 0) (6.24234 7.83827 -4.44311e-19) (6.35601 8.01619 0) (6.47393 8.20059 0) (6.59528 8.39168 -2.68822e-19) (6.72051 8.58912 0) (6.84975 8.79303 -3.09979e-19) (6.98304 9.00377 3.31819e-19) (7.12059 9.2218 -3.55505e-19) (7.26269 9.44772 0) (7.40977 9.68228 0) (7.56234 9.92641 -8.86948e-19) (7.72109 10.1813 4.5844e-19) (7.88683 10.4482 0) (8.0606 10.729 0) (8.24366 11.0256 -5.87936e-19) (8.43754 11.3407 0) (8.64406 11.6769 0) (8.86524 12.0375 0) (9.10322 12.4257 -8.08278e-19) (9.35998 12.8444 0) (9.63679 13.295 -9.62931e-19) (9.93328 13.777 0) (10.2467 14.2846 1.14266e-18) (10.5718 14.8042 1.25237e-18) (10.891 15.3149 -1.37575e-18) (11.1498 15.8035 2.30996e-18) (11.52 16.0807 8.51204e-19) (11.2206 16.5558 1.77219e-18) (6.26102 7.3546 -6.39843e-19) (6.35184 7.52907 6.3214e-19) (6.45778 7.70202 1.92176e-20) (6.57568 7.87657 -7.07109e-19) (6.69812 8.05766 0) (6.82428 8.24548 -2.73573e-19) (6.9546 8.43964 -2.92281e-19) (7.0892 8.64023 3.09982e-19) (7.22812 8.84759 -3.31821e-19) (7.37155 9.06217 -2.76735e-21) (7.51981 9.28456 -3.84116e-19) (7.67331 9.51548 1.00329e-20) (7.83262 9.75587 -4.29547e-19) (7.99844 10.0068 1.20825e-20) (8.17163 10.2698 -1.02261e-18) (8.35326 10.5464 -1.70208e-20) (8.54467 10.8386 0) (8.74743 11.149 -6.43585e-19) (8.96342 11.4802 -1.41222e-18) (9.19473 11.8354 -2.46117e-20) (9.44353 12.2176 8.1831e-19) (9.71179 12.6295 -1.80669e-18) (10.0007 13.0726 2.89793e-18) (10.3098 13.5457 -2.0766e-18) (10.6358 14.0433 5.97856e-19) (10.9731 14.5512 -6.098e-19) (11.3035 15.049 0) (11.5715 15.5247 -1.52374e-18) (11.9441 15.785 0) (11.652 16.2602 0) (6.46823 7.21816 2.10706e-19) (6.56052 7.39091 6.48102e-19) (6.66972 7.56065 -2.17385e-19) (6.7917 7.7315 7.35021e-19) (6.91858 7.90901 -5.02532e-19) (7.04947 8.09334 2.73575e-19) (7.18482 8.284 -3.10068e-19) (7.32472 8.48105 6.12126e-19) (7.4692 8.68483 3.44812e-19) (7.61844 8.89575 7.724e-21) (7.77276 9.1144 3.84119e-19) (7.93262 9.34148 4.12209e-19) (8.09858 9.5779 0) (8.27138 9.82477 4.63944e-19) (8.45192 10.0834 -1.56534e-20) (8.64133 10.3556 5.52236e-19) (8.84098 10.6432 5.99639e-19) (9.05252 10.9486 6.43591e-19) (9.27787 11.2745 -4.32741e-21) (9.51918 11.6239 1.51295e-18) (9.77865 11.9998 2.98216e-20) (10.0582 12.4047 -8.97679e-19) (10.3591 12.8397 -3.36648e-20) (10.6804 13.3036 -6.04886e-21) (11.0189 13.7907 -1.76366e-18) (11.368 14.2867 1.27269e-18) (11.709 14.7712 -1.34598e-18) (11.9859 15.2341 5.46076e-20) (12.3605 15.4778 1.75287e-18) (12.0756 15.9533 -2.64875e-18) (6.67128 7.07829 6.53503e-19) (6.76484 7.2484 -4.20949e-19) (6.87748 7.41427 2.29637e-19) (7.00373 7.58101 0) (7.13511 7.75465 0) (7.27071 7.93525 0) (7.41103 8.12221 0) (7.55614 8.31555 -6.49324e-19) (7.70608 8.51555 6.59998e-19) (7.86104 8.72263 0) (8.02134 8.93734 0) (8.18745 9.16037 0) (8.35997 9.39261 -4.60152e-19) (8.53965 9.63515 4.71463e-19) (8.72746 9.88932 5.15935e-19) (8.92454 10.1568 5.59478e-19) (9.13233 10.4394 -5.99644e-19) (9.35253 10.7396 6.51691e-19) (9.58713 11.0599 7.00511e-19) (9.8383 11.4033 -7.58786e-19) (10.1083 11.7725 0) (10.399 12.1699 -8.99918e-19) (10.7115 12.5965 9.74306e-19) (11.045 13.0509 1.61549e-18) (11.3954 13.527 1.20366e-18) (11.756 14.0107 -1.27962e-18) (12.1074 14.4818 2.07479e-18) (12.3927 14.9316 -1.54767e-18) (12.7689 15.159 -2.56769e-18) (12.4913 15.6352 1.74804e-18) (6.86955 6.9341 2.27294e-19) (6.96394 7.1012 -4.25211e-19) (7.08019 7.26259 -2.29639e-19) (7.21099 7.42491 0) (7.34706 7.59454 0) (7.48748 7.77128 -5.73071e-19) (7.63281 7.95438 5.8225e-19) (7.78313 8.14382 0) (7.9385 8.33986 0) (8.0991 8.54291 0) (8.26529 8.75348 -4.01932e-19) (8.43756 8.97225 8.40096e-19) (8.61654 9.20009 -4.38761e-19) (8.80302 9.43808 -4.82643e-19) (8.99797 9.68752 5.36255e-19) (9.20262 9.95001 -1.09045e-18) (9.41843 10.2275 -5.8847e-19) (9.64718 10.5221 -1.98125e-18) (9.89088 10.8366 6.86469e-19) (10.1518 11.1735 -7.67794e-19) (10.4321 11.5357 -8.32849e-19) (10.7338 11.9253 -3.33804e-20) (11.0578 12.3431 9.83309e-19) (11.4029 12.7875 -2.11207e-18) (11.7651 13.2523 6.07792e-19) (12.1369 13.7234 -6.19935e-19) (12.4982 14.1808 -6.80289e-19) (12.7918 14.6177 8.0016e-19) (13.1691 14.8292 -8.93054e-19) (12.8988 15.3067 8.51369e-19) (7.05772 6.78706 0) (7.15622 6.94816 0) (7.27862 7.10441 2.43106e-19) (7.41477 7.26231 -7.32651e-19) (7.55538 7.42809 0) (7.7003 7.60108 0) (7.85037 7.78034 -3.01836e-19) (8.00572 7.96582 6.5931e-19) (8.16634 8.15781 -1.01496e-18) (8.33246 8.35667 -3.69039e-19) (8.50443 8.56293 0) (8.68275 8.77725 0) (8.86808 9.00049 0) (9.06123 9.2337 -4.88985e-19) (9.26323 9.47817 -5.26014e-19) (9.47533 9.73547 5.63027e-19) (9.69905 10.0075 0) (9.9362 10.2963 6.74031e-19) (10.1889 10.6046 -6.90551e-19) (10.4593 10.9348 1.5627e-18) (10.7498 11.2897 2.27953e-20) (11.0622 11.671 0) (11.3974 12.0797 9.85329e-19) (11.754 12.5137 1.07494e-18) (12.1276 12.9669 1.1813e-18) (12.5101 13.4248 -6.69918e-19) (12.8812 13.8681 2.09641e-18) (13.1829 14.2919 1.56316e-18) (13.5612 14.4872 -8.97299e-19) (13.2988 14.9667 1.76864e-18) (7.23037 6.6387 -4.49285e-19) (7.33579 6.7885 4.31766e-19) (7.46895 6.93963 2.33484e-19) (7.61238 7.09406 2.48721e-19) (7.7583 7.25626 0) (7.90815 7.42535 0) (8.06316 7.60053 3.01839e-19) (8.22353 7.78185 6.64197e-19) (8.38935 7.96956 -3.30303e-19) (8.56086 8.16404 -1.12281e-20) (8.73849 8.36578 3.86686e-19) (8.92275 8.57544 0) (9.11431 8.79386 0) (9.31402 9.02207 9.93538e-19) (9.52293 9.26134 1.25125e-20) (9.74236 9.51319 0) (9.97385 9.77946 0) (10.2193 10.0623 6.59546e-19) (10.4807 10.364 0) (10.7606 10.6872 7.99351e-19) (11.061 11.0343 -8.14595e-19) (11.3839 11.4071 0) (11.73 11.8062 0) (12.0978 12.2295 0) (12.4823 12.6707 -1.18131e-18) (12.8751 13.1151 6.73224e-19) (13.2554 13.5433 5.32263e-20) (13.5657 13.9552 -2.31813e-18) (13.9445 14.1344 9.01538e-19) (13.6898 14.6189 4.54698e-20) (-5.2797 6.22017 2.17441e-19) (-5.4138 6.31529 -4.3154e-19) (-5.54954 6.43304 3.44048e-19) (-5.69115 6.55943 1.28561e-19) (-5.83887 6.69169 0) (-5.99178 6.83047 0) (-6.14941 6.97569 1.66071e-19) (-6.31173 7.12682 -3.72793e-19) (-6.47886 7.28345 5.75943e-19) (-6.65095 7.44541 4.35864e-19) (-6.82823 7.61269 -2.24993e-19) (-7.01098 7.78537 0) (-7.19962 7.96368 0) (-7.39468 8.14799 -9.64693e-21) (-7.59689 8.33883 6.47183e-19) (-7.80725 8.537 0) (-8.02712 8.74363 0) (-8.25837 8.96034 4.27818e-19) (-8.50354 9.18935 0) (-8.76604 9.43371 -5.27712e-19) (-9.05033 9.6975 5.37777e-19) (-9.36218 9.98605 0) (-9.70875 10.3061 0) (-10.0987 10.6657 0) (-10.541 11.0744 -8.09963e-19) (-11.0431 11.5432 -4.64952e-19) (-11.6171 12.0736 -4.20068e-20) (-12.2848 12.6461 -5.75031e-19) (-12.8584 13.4234 -6.50641e-19) (-13.9061 13.7338 -4.26292e-20) (-5.15497 6.36473 0) (-5.27877 6.47622 0) (-5.40301 6.60374 -3.64836e-19) (-5.53652 6.73475 1.22063e-19) (-5.67733 6.87069 0) (-5.82392 7.01311 0) (-5.97584 7.16195 -1.66069e-19) (-6.13295 7.31674 -3.76726e-19) (-6.29519 7.47719 1.85899e-19) (-6.46256 7.64317 -2.14601e-19) (-6.63521 7.81465 0) (-6.81338 7.99174 0) (-6.99744 8.17466 0) (-7.18791 8.3638 -3.02382e-19) (-7.3855 8.55971 -3.29607e-19) (-7.59117 8.76324 3.61851e-19) (-7.80629 8.97556 0) (-8.03269 9.19836 -4.41913e-19) (-8.27285 9.43393 4.52888e-19) (-8.53013 9.68545 5.13422e-19) (-8.80889 9.95712 5.61407e-19) (-9.11472 10.2544 0) (-9.45456 10.5843 6.73701e-19) (-9.83671 10.9548 7.39822e-19) (-10.2698 11.3756 8.09954e-19) (-10.7604 11.8577 -4.67262e-19) (-11.3198 12.4025 1.47148e-18) (-11.9699 12.9892 1.10176e-18) (-12.5155 13.7761 0) (-13.5401 14.1013 2.01681e-18) (-5.00243 6.50624 -3.32859e-19) (-5.12385 6.62958 2.15153e-19) (-5.24379 6.76437 -1.21487e-19) (-5.37291 6.90089 0) (-5.5089 7.04183 0) (-5.65039 7.18883 3.21674e-19) (-5.79725 7.34191 -3.26827e-19) (-5.94942 7.50081 0) (-6.10681 7.66538 0) (-6.26943 7.83555 0) (-6.43736 8.01135 2.45246e-19) (-6.61085 8.19291 -5.16412e-19) (-6.79021 8.38047 2.71596e-19) (-6.97596 8.57444 -3.06993e-19) (-7.16878 8.77542 -3.44968e-19) (-7.36963 8.98427 -7.51065e-19) (-7.57984 9.20225 -2.71778e-20) (-7.80121 9.43109 1.186e-21) (-8.03618 9.67319 -4.55722e-19) (-8.28803 9.93181 -5.13417e-19) (-8.56101 10.2113 -5.61401e-19) (-8.86055 10.5172 1.25763e-18) (-9.19336 10.8567 -2.02735e-18) (-9.56738 11.238 -2.43855e-20) (-9.99078 11.6707 0) (-10.4695 12.1657 0) (-11.0139 12.7239 -1.51621e-18) (-11.6458 13.3238 1.64448e-18) (-12.1645 14.1179 6.55951e-19) (-13.1676 14.4576 -6.26397e-19) (-4.83999 6.65001 -1.17374e-19) (-4.95945 6.77977 2.17509e-19) (-5.07618 6.9199 1.21486e-19) (-5.2017 7.0615 0) (-5.33367 7.20729 0) (-5.47079 7.35883 0) (-5.6131 7.51621 0) (-5.76064 7.67931 3.84492e-19) (-5.91337 7.84809 -3.90813e-19) (-6.07129 8.02253 0) (-6.23452 8.2027 0) (-6.40326 8.38874 0) (-6.57784 8.58094 2.92997e-19) (-6.75876 8.77973 -3.00524e-19) (-6.9467 8.98574 3.36886e-19) (-7.14259 9.19989 -1.4229e-20) (-7.34773 9.42348 -1.44611e-20) (-7.56391 9.6583 4.33276e-19) (-7.79351 9.90686 4.75909e-19) (-8.03971 10.1725 -5.19708e-19) (-8.30668 10.4597 0) (-8.59966 10.7742 -6.18059e-19) (-8.92511 11.1232 6.81319e-19) (-9.29066 11.515 3.60279e-19) (-9.70398 11.9593 1.21844e-18) (-10.1704 12.4666 0) (-10.6995 13.0376 1.00516e-18) (-11.313 13.65 -1.11253e-18) (-11.8056 14.4503 -5.73018e-19) (-12.7892 14.8052 -1.30511e-18) (-4.67255 6.79198 1.11436e-19) (-4.78946 6.92683 -1.2113e-19) (-4.90285 7.07164 3.63267e-19) (-5.02476 7.21781 -1.43152e-19) (-5.15281 7.36801 2.8272e-19) (-5.28575 7.5238 1.59678e-19) (-5.42368 7.68533 5.30799e-19) (-5.56673 7.85256 -3.63078e-19) (-5.71487 8.0255 -2.11062e-19) (-5.86814 8.20418 4.37363e-19) (-6.02664 8.38868 2.42223e-19) (-6.1906 8.57918 2.6342e-19) (-6.36034 8.77599 0) (-6.53635 8.97955 9.42643e-19) (-6.71929 9.19055 -6.64043e-19) (-6.91009 9.40994 3.6965e-19) (-7.11003 9.63907 3.99959e-19) (-7.32085 9.87982 4.39085e-19) (-7.54488 10.1348 3.10744e-21) (-7.78524 10.4073 1.04269e-18) (-8.04595 10.7022 -1.16241e-18) (-8.3321 11.0251 1.87461e-18) (-8.6499 11.3833 -1.34088e-18) (-9.00663 11.7855 4.2908e-21) (-9.40952 12.241 -3.93487e-19) (-9.86326 12.7603 -9.12755e-19) (-10.3769 13.3435 -1.04772e-18) (-10.9717 13.9681 -4.55355e-20) (-11.4385 14.7738 1.16472e-18) (-12.4036 15.1436 -7.18837e-19) (-4.49946 6.93025 1.20205e-19) (-4.61386 7.07015 -5.74912e-19) (-4.72409 7.21933 -1.58591e-20) (-4.8425 7.36974 1.27775e-19) (-4.96674 7.52409 0) (-5.09559 7.68392 -1.59677e-19) (-5.22924 7.84945 -1.73517e-19) (-5.36784 8.02069 1.90467e-19) (-5.51143 8.1977 -2.06936e-19) (-5.66004 8.38053 2.33648e-19) (-5.81381 8.5693 -7.29425e-19) (-5.97294 8.7642 -2.81105e-19) (-6.13778 8.96555 2.78457e-19) (-6.30878 9.17383 -6.35757e-19) (-6.48662 9.38976 6.8232e-19) (-6.67222 9.61432 -7.28609e-19) (-6.86681 9.84893 0) (-7.07212 10.0955 -4.39081e-19) (-7.29042 10.3568 1.8825e-20) (-7.52473 10.6362 -1.03021e-18) (-7.77896 10.9385 5.71563e-19) (-8.05802 11.2697 2.54479e-20) (-8.36788 11.6371 -6.87853e-19) (-8.71547 12.0493 -2.4523e-20) (-9.10758 12.5159 -4.31935e-19) (-9.54829 13.0467 4.40563e-19) (-10.0461 13.6417 0) (-10.6221 14.2778 -1.12997e-18) (-11.0631 15.0881 0) (-12.0098 15.472 0) (-4.32091 7.06492 0) (-4.43289 7.20957 0) (-4.54012 7.36281 -2.53009e-19) (-4.65513 7.51725 0) (-4.77563 7.67554 0) (-4.90048 7.83925 -1.63124e-19) (-5.0299 8.00863 0) (-5.1641 8.18375 -1.90466e-19) (-5.30315 8.36471 -8.15885e-21) (-5.4471 8.5516 -6.18688e-21) (-5.59609 8.74455 0) (-5.75036 8.94376 0) (-5.91022 9.14957 8.81276e-21) (-6.07614 9.36249 -3.05412e-19) (-6.24879 9.58326 0) (-6.42906 9.81292 0) (-6.61818 10.0529 -4.08556e-19) (-6.81782 10.3053 0) (-7.03021 10.5727 0) (-7.25827 10.8589 0) (-7.5058 11.1686 -5.78842e-19) (-7.77752 11.5079 0) (-8.07916 11.8843 -6.89397e-19) (-8.4173 12.3064 3.94449e-19) (-8.7983 12.7836 4.35023e-19) (-9.22563 13.3256 9.23288e-19) (-9.70735 13.9318 -1.02188e-18) (-10.2642 14.5789 1.12996e-18) (-10.6794 15.3931 1.2512e-18) (-11.6077 15.7901 1.37501e-18) (-4.13783 7.19605 -2.23679e-19) (-4.24722 7.34503 0) (-4.35143 7.5021 -1.49272e-21) (-4.46301 7.66036 -4.2769e-19) (-4.57979 7.82241 2.92309e-19) (-4.70065 7.98982 5.02403e-19) (-4.82586 8.1629 -1.65725e-19) (-4.95567 8.34176 5.65205e-21) (-5.09016 8.52655 -4.204e-19) (-5.22942 8.71737 -8.33944e-21) (-5.37361 8.91438 0) (-5.52294 9.11779 2.70337e-19) (-5.67776 9.32796 -2.45898e-21) (-5.83852 9.54543 0) (-6.00587 9.77096 3.47389e-19) (-6.1807 10.0056 0) (-6.36422 10.2509 1.24452e-18) (-6.55805 10.5089 -4.32231e-19) (-6.76435 10.7825 0) (-6.98598 11.0753 1.08418e-18) (-7.22659 11.3922 -5.84476e-19) (-7.49073 11.7395 -2.35826e-20) (-7.78386 12.1248 6.97951e-19) (-8.11225 12.5565 0) (-8.48179 13.0441 5.04031e-21) (-8.89541 13.5969 -1.85202e-18) (-9.3607 14.2138 -5.9147e-21) (-9.89813 14.8713 1.14252e-18) (-10.2875 15.6885 -1.25119e-18) (-11.1974 16.0976 6.79969e-21) (-3.95082 7.3234 0) (-4.05738 7.47643 0) (-4.15845 7.63711 2.58986e-19) (-4.26652 7.79902 1.39873e-19) (-4.37952 7.96467 -1.6235e-19) (-4.49636 8.13562 4.87579e-19) (-4.61733 8.31223 1.87943e-19) (-4.74272 8.49469 2.01518e-19) (-4.87262 8.68317 -2.19224e-19) (-5.00716 8.87779 6.8999e-19) (-5.14648 9.07874 1.64524e-20) (-5.29082 9.28624 2.02801e-20) (-5.44051 9.50067 -2.97006e-19) (-5.59602 9.72258 6.3252e-19) (-5.75797 9.95276 2.76451e-21) (-5.92725 10.1923 7.73533e-19) (-6.10503 10.4428 -3.96694e-19) (-6.2929 10.7064 4.51598e-19) (-6.49296 10.986 -5.07965e-19) (-6.70797 11.2853 1.07566e-18) (-6.94144 11.6093 4.08929e-20) (-7.19774 11.9645 1.95793e-20) (-7.4821 12.3583 -3.59011e-19) (-7.80043 12.7994 1.14129e-18) (-8.15819 13.2971 -4.3444e-19) (-8.55777 13.8603 1.37713e-18) (-9.00635 14.4874 1.52307e-18) (-9.52417 15.1546 -5.93054e-19) (-9.88776 15.974 1.94044e-18) (-10.7791 16.3944 -2.03194e-18) (-3.76019 7.44673 -4.72551e-19) (-3.86367 7.60359 4.83354e-19) (-3.96147 7.7677 -3.83723e-19) (-4.06594 7.93311 0) (-4.17508 8.10222 -1.5357e-19) (-4.28784 8.27656 -1.66661e-19) (-4.40453 8.45658 -1.80865e-19) (-4.52544 8.6425 -1.96285e-19) (-4.65071 8.83452 0) (-4.78045 9.03281 0) (-4.91484 9.23757 0) (-5.05411 9.44903 -2.72719e-19) (-5.1986 9.6676 0) (-5.34876 9.89383 -6.56451e-19) (-5.50522 10.1286 -9.7876e-21) (-5.66883 10.3729 -3.80915e-19) (-5.84074 10.6285 1.60397e-20) (-6.0225 10.8976 -1.35934e-18) (-6.21614 11.183 9.89401e-19) (-6.42433 11.4887 -1.05818e-18) (-6.65046 11.8197 0) (-6.89869 12.1825 0) (-7.17399 12.5848 -1.06816e-18) (-7.48196 13.035 -3.97723e-19) (-7.82762 13.5425 -8.47485e-19) (-8.21284 14.1157 0) (-8.64442 14.7525 -1.03385e-18) (-9.14247 15.4288 0) (-9.48024 16.2495 -1.26508e-18) (-10.353 16.6803 0) (-3.56613 7.56586 0) (-3.66632 7.72635 0) (-3.76074 7.89373 0) (-3.8615 8.0625 0) (-3.9667 8.23494 0) (-4.0753 8.41256 0) (-4.18763 8.59585 0) (-4.30401 8.78509 0) (-4.42457 8.98052 2.235e-19) (-4.54945 9.18235 -2.27222e-19) (-4.67884 9.39078 -2.63188e-19) (-4.81296 9.60609 5.53417e-19) (-4.95216 9.82866 -2.90678e-19) (-5.09687 10.0591 0) (-5.24772 10.2983 0) (-5.40554 10.5473 0) (-5.57145 10.8079 0) (-5.74696 11.0822 4.72561e-19) (-5.93402 11.3734 -4.81371e-19) (-6.13521 11.6854 0) (-6.35377 12.0233 0) (-6.59369 12.3935 3.35911e-19) (-6.85967 12.804 -7.10592e-19) (-7.15699 13.2631 -2.89207e-20) (-7.49024 13.78 4.12311e-19) (-7.86078 14.3628 4.72973e-19) (-8.27508 15.0087 5.44974e-19) (-8.75319 15.6935 -5.5599e-19) (-9.06518 16.5147 -6.82687e-19) (-9.91926 16.9551 6.57208e-19) (-3.36888 7.68065 1.41503e-20) (-3.46555 7.84458 -2.39893e-19) (-3.55645 8.01507 6.75888e-20) (-3.6534 8.18706 0) (-3.75456 8.36271 0) (-3.85892 8.54349 0) (-3.96683 8.72993 9.33691e-20) (-4.07859 8.92237 0) (-4.19438 9.12109 -2.25702e-19) (-4.31433 9.32632 3.48469e-19) (-4.43862 9.5383 -2.65607e-19) (-4.56751 9.7573 2.70146e-19) (-4.70132 9.98376 4.65035e-19) (-4.84048 10.2183 -3.18476e-19) (-4.98562 10.4617 3.69481e-19) (-5.13753 10.7153 -3.76124e-19) (-5.29731 10.9808 0) (-5.4664 11.2603 4.76046e-19) (-5.64672 11.5571 -2.33425e-19) (-5.84071 11.8752 5.66031e-19) (-6.0515 12.2197 -5.76825e-19) (-6.28287 12.5973 3.27183e-19) (-6.53927 13.0158 0) (-6.82565 13.4835 4.06911e-19) (-7.14618 14.0095 -4.14977e-19) (-7.50175 14.6014 3.0066e-21) (-7.89851 15.256 5.4829e-19) (-8.35652 15.9486 -5.59373e-19) (-8.64282 16.7694 0) (-9.47823 17.2185 -1.89951e-21) (-3.16861 7.79096 -6.17134e-20) (-3.26157 7.95814 -2.59386e-19) (-3.34881 8.13158 -8.55833e-20) (-3.44184 8.30667 1.33195e-19) (-3.53886 8.48541 1.54849e-19) (-3.6389 8.66924 9.19166e-20) (-3.74229 8.85872 -2.75269e-19) (-3.84936 9.05424 2.1028e-19) (-3.96029 9.25612 -4.41685e-19) (-4.07522 9.46462 -7.44294e-21) (-4.19434 9.68001 -2.68074e-19) (-4.3179 9.90259 2.72655e-19) (-4.44622 10.1328 -6.21148e-19) (-4.57974 10.3713 6.6408e-19) (-4.71904 10.6189 -3.48925e-19) (-4.86492 10.8769 -4.0495e-19) (-5.01843 11.1471 4.12321e-19) (-5.18097 11.4317 -4.79603e-19) (-5.35437 11.7339 -1.63134e-20) (-5.54099 12.058 8.81649e-21) (-5.74379 12.4091 -5.91918e-19) (-5.96637 12.7938 -3.27181e-19) (-6.21293 13.2199 -3.73039e-19) (-6.48808 13.6961 -4.24703e-19) (-6.79559 14.2308 4.17702e-19) (-7.1359 14.8313 -9.55018e-19) (-7.51487 15.494 5.29802e-19) (-7.95266 16.1937 5.88438e-19) (-8.21339 17.0132 6.47448e-19) (-9.03016 17.4704 1.41465e-18) (-2.96548 7.89665 2.41248e-19) (-3.05454 8.0669 0) (-3.13799 8.24314 -1.42445e-19) (-3.22698 8.4212 2.19776e-19) (-3.31976 8.60293 0) (-3.41538 8.78969 2.68156e-19) (-3.51417 8.9821 -8.85039e-20) (-3.61648 9.18059 0) (-3.72246 9.3855 0) (-3.83229 9.59715 -1.29382e-19) (-3.94615 9.81582 6.55926e-19) (-4.06429 10.0418 -2.75212e-19) (-4.18702 10.2757 -1.65083e-19) (-4.31478 10.5179 4.92037e-19) (-4.44814 10.7696 3.75561e-19) (-4.58786 11.0319 2.58748e-20) (-4.73496 11.3066 -2.00158e-19) (-4.8908 11.5962 0) (-5.05711 11.9038 2.53362e-19) (-5.23616 12.2336 2.76209e-19) (-5.43077 12.591 3.01454e-19) (-5.64433 12.9827 1.10568e-20) (-5.88079 13.4163 1.36078e-20) (-6.14443 13.9005 3.9549e-19) (-6.43865 14.4436 0) (-6.76342 15.0524 4.79042e-19) (-7.12437 15.7226 -5.29799e-19) (-7.54182 16.4287 -5.88435e-19) (-7.77715 17.2461 -1.34175e-18) (-8.57535 17.7105 -7.52023e-19) (-2.75963 7.9976 1.92677e-19) (-2.84461 8.17075 8.19942e-21) (-2.92416 8.34965 -2.05469e-19) (-3.009 8.53054 8.10797e-20) (-3.09743 8.71513 -2.41006e-19) (-3.18853 8.90473 1.83095e-19) (-3.28265 9.09996 -5.76226e-19) (-3.38009 9.3013 -1.3235e-20) (-3.48105 9.50913 3.37651e-19) (-3.58568 9.7238 -2.36451e-19) (-3.69419 9.94562 -1.31567e-19) (-3.80681 10.1749 0) (-3.92386 10.4122 0) (-4.04576 10.6582 -1.67975e-19) (-4.17305 10.9138 -3.78688e-19) (-4.30649 11.1802 3.85496e-19) (-4.44705 11.4594 2.31982e-19) (-4.59602 11.7537 -2.12222e-19) (-4.75509 12.0665 -5.13195e-19) (-4.92639 12.402 -1.89766e-20) (-5.11259 12.7655 2.94685e-19) (-5.3169 13.1639 3.31759e-19) (-5.54301 13.6048 -7.41244e-19) (-5.79487 14.0967 3.85578e-19) (-6.07551 14.6478 0) (-6.3845 15.2644 0) (-6.72721 15.9415 2.20142e-20) (-7.12422 16.6534 -5.69954e-19) (-7.33437 17.4678 0) (-8.1141 17.9388 0) (-2.5512 8.09368 -1.31932e-19) (-2.63193 8.26956 1.26747e-19) (-2.70746 8.45098 7.02643e-20) (-2.78803 8.63457 -8.11018e-20) (-2.87201 8.82191 2.42974e-19) (-2.95852 9.01424 -9.5004e-20) (-3.04786 9.21219 4.85105e-19) (-3.14036 9.41626 -2.03694e-19) (-3.2362 9.6269 -1.21796e-19) (-3.33556 9.84446 2.38873e-19) (-3.43862 10.0693 0) (-3.54563 10.3018 -2.98919e-19) (-3.65689 10.5424 3.04094e-19) (-3.77281 10.7919 0) (-3.89393 11.0512 -3.8187e-19) (-4.02096 11.3217 8.03581e-19) (-4.15484 11.6052 -4.22397e-19) (-4.2968 11.9042 2.45345e-19) (-4.44845 12.2219 -5.17111e-19) (-4.61181 12.5629 2.72231e-19) (-4.78941 12.9324 0) (-4.98424 13.3372 0) (-5.19974 13.7851 -3.80773e-19) (-5.43957 14.2845 3.88257e-19) (-5.70637 14.8432 -4.5982e-19) (-5.99933 15.467 4.69006e-19) (-6.32361 16.1506 -2.56055e-20) (-6.70011 16.8675 1.17325e-18) (-6.88532 17.6781 1.36184e-18) (-7.64674 18.1549 4.49517e-20) (-2.3403 8.18479 1.91708e-19) (-2.41664 8.36324 6.66923e-20) (-2.48803 8.54703 -1.48051e-19) (-2.56424 8.73318 3.11455e-19) (-2.64367 8.92316 -2.51436e-19) (-2.72548 9.1181 -1.03392e-20) (-2.80996 9.31866 9.16281e-20) (-2.89743 9.52536 1.06785e-19) (-2.98808 9.73868 -2.37387e-19) (-3.08207 9.95902 6.23464e-19) (-3.17959 10.1867 -5.39787e-19) (-3.28089 10.4223 7.31622e-19) (-3.38626 10.6661 -4.74975e-19) (-3.4961 10.919 5.053e-19) (-3.61092 11.1819 -5.72238e-19) (-3.73141 11.4563 3.92031e-19) (-3.85847 11.7439 0) (-3.99328 12.0473 2.39999e-19) (-4.13735 12.37 -2.69227e-19) (-4.29259 12.7162 2.74304e-19) (-4.46138 13.0914 3.10337e-19) (-4.64651 13.5025 0) (-4.85116 13.9572 -3.83447e-19) (-5.0787 14.4637 3.90983e-19) (-5.33141 15.0296 4.46602e-19) (-5.60811 15.6602 -1.89349e-20) (-5.91379 16.3495 1.08703e-18) (-6.26972 17.0708 -1.17697e-18) (-6.43028 17.8768 -6.59408e-19) (-7.17358 18.3588 4.10421e-21) (-2.12705 8.27082 -1.93558e-19) (-2.19887 8.45169 -6.66921e-20) (-2.26603 8.6377 1.5e-19) (-2.33777 8.82629 -2.30352e-19) (-2.41255 9.01877 -8.4384e-20) (-2.48957 9.21621 9.82554e-20) (-2.5691 9.41927 1.11096e-19) (-2.65146 9.62849 -3.15047e-19) (-2.73682 9.84438 2.39855e-19) (-2.82535 10.0674 -6.28554e-19) (-2.91725 10.2978 2.63995e-19) (-3.01274 10.5363 -1.46745e-19) (-3.11212 10.7832 -1.59047e-19) (-3.21577 11.0393 -1.72469e-19) (-3.32418 11.3057 3.81329e-19) (-3.43801 11.5838 -4.08559e-19) (-3.55812 11.8754 2.14706e-19) (-3.68562 12.1831 -2.39998e-19) (-3.82194 12.5104 2.71296e-19) (-3.96888 12.8617 -2.76413e-19) (-4.12866 13.2425 -3.10336e-19) (-4.30387 13.6596 0) (-4.49745 14.1208 0) (-4.71244 14.634 0) (-4.95082 15.2068 1.95131e-20) (-5.21106 15.8437 -9.67343e-19) (-5.49799 16.5382 -5.69611e-19) (-5.83332 17.2632 2.66612e-19) (-5.96954 18.0637 -3.46823e-19) (-6.69494 18.5503 -3.61598e-19) (-1.91159 8.35168 2.67799e-19) (-1.97875 8.5348 -6.36819e-20) (-2.04158 8.7229 1.51985e-19) (-2.10875 8.91378 -1.54327e-19) (-2.1788 9.10864 -9.09229e-20) (-2.25093 9.30847 -1.1506e-20) (-2.32543 9.51391 1.94798e-19) (-2.40259 9.72554 0) (-2.48258 9.94388 -1.18031e-19) (-2.56557 10.1694 1.27674e-19) (-2.65175 10.4025 1.45701e-19) (-2.74134 10.6437 -2.88712e-19) (-2.83463 10.8935 -1.62017e-19) (-2.93198 11.1528 -4.96675e-21) (-3.03387 11.4225 -2.02523e-19) (-3.14092 11.7041 1.99392e-19) (-3.25394 11.9995 0) (-3.37399 12.3114 7.31317e-21) (-3.5024 12.6432 9.42778e-21) (-3.64086 12.9994 9.00722e-21) (-3.79143 13.3855 2.14663e-20) (-3.95651 13.8084 2.39102e-20) (-4.13877 14.2757 -3.62155e-19) (-4.34099 14.7954 -8.39016e-19) (-4.56481 15.3746 1.35739e-18) (-4.80839 16.0173 -9.77401e-19) (-5.07645 16.7164 2.86688e-19) (-5.39115 17.4444 2.40501e-20) (-5.50339 18.2387 7.02307e-19) (-6.21116 18.7292 -1.07785e-18) (-1.69402 8.42727 7.14327e-20) (-1.75642 8.61248 -2.02791e-19) (-1.81484 8.80253 -7.51291e-20) (-1.87735 8.99557 0) (-1.94255 9.19268 9.30898e-20) (-2.00972 9.39478 -1.82421e-19) (-2.0791 9.60249 0) (-2.15097 9.81641 1.16152e-19) (-2.22552 10.0371 -1.12215e-19) (-2.30288 10.265 -2.56668e-19) (-2.38326 10.5006 -5.16301e-21) (-2.46686 10.7444 -9.39243e-21) (-2.55395 10.997 3.19867e-19) (-2.6449 11.2592 -3.57756e-19) (-2.74016 11.5321 3.75815e-19) (-2.8403 11.8171 0) (-2.9461 12.1162 0) (-3.05854 12.4321 2.43872e-19) (-3.17889 12.7682 -2.65296e-19) (-3.30869 13.129 2.88908e-19) (-3.44986 13.5203 0) (-3.6046 13.9487 -3.57847e-19) (-3.77533 14.4219 3.77601e-19) (-3.96454 14.9476 1.28495e-20) (-4.17359 15.5327 -4.52857e-19) (-4.40033 16.1808 2.3803e-19) (-4.64942 16.8839 2.65897e-19) (-4.9435 17.6142 -2.96833e-19) (-5.03215 18.4015 -3.25045e-19) (-5.72258 18.8955 7.33645e-19) (-1.47446 8.49751 -6.56799e-20) (-1.53201 8.68465 0) (-1.58592 8.87651 7.51291e-20) (-1.64368 9.07157 0) (-1.70396 9.2708 0) (-1.76607 9.47504 1.96262e-19) (-1.83025 9.6849 -1.99406e-19) (-1.89677 9.90099 3.39369e-19) (-1.96578 10.1239 -2.29595e-19) (-2.03743 10.354 3.18651e-21) (-2.11191 10.592 1.40943e-19) (-2.18943 10.8383 -1.56645e-19) (-2.27024 11.0936 1.59356e-19) (-2.35469 11.3586 -1.838e-19) (-2.44319 11.6345 1.87063e-19) (-2.53631 11.9227 -6.04772e-21) (-2.63476 12.2253 -1.46457e-20) (-2.73946 12.5449 2.39146e-19) (-2.85158 12.8852 2.69528e-19) (-2.97256 13.2505 0) (-3.10414 13.6467 -3.19819e-19) (-3.24832 14.0803 -3.60493e-19) (-3.40731 14.559 7.46461e-19) (-3.5833 15.0905 0) (-3.77736 15.6812 0) (-3.98712 16.334 0) (-4.21716 17.0406 0) (-4.49064 17.7725 3.16574e-19) (-4.55611 18.5521 3.5346e-19) (-5.22952 19.0488 -3.7221e-19) (-1.25304 8.56232 -1.35917e-19) (-1.30564 8.75122 1.46594e-19) (-1.35497 8.94475 -1.48824e-19) (-1.4079 9.14169 0) (-1.46317 9.34291 4.48872e-20) (-1.52015 9.54916 0) (-1.57905 9.76105 0) (-1.64012 9.97919 0) (-1.70352 10.2042 1.2058e-19) (-1.76938 10.4365 -1.35167e-19) (-1.83789 10.6767 -3.49549e-21) (-1.90923 10.9253 0) (-1.98367 11.1831 1.71202e-19) (-2.06151 11.4507 -3.59657e-19) (-2.14315 11.7295 1.88747e-19) (-2.22913 12.0207 -2.1019e-19) (-2.3201 12.3267 2.36765e-19) (-2.41692 12.6499 1.61645e-20) (-2.52066 12.9941 -5.31617e-19) (-2.63264 13.3637 3.04835e-19) (-2.75444 13.7645 9.16999e-21) (-2.88789 14.2031 0) (-3.03491 14.6871 0) (-3.19748 15.2239 2.10645e-19) (-3.37637 15.8197 -8.35478e-21) (-3.56899 16.4768 -1.01694e-20) (-3.77993 17.1862 2.81213e-19) (-4.03288 17.9191 6.19499e-19) (-4.0756 18.6902 -6.80624e-19) (-4.73233 19.1893 -3.2759e-21) (-1.02987 8.6216 0) (-1.07746 8.81211 0) (-1.12213 9.00718 0) (-1.17015 9.20586 0) (-1.22033 9.40892 -4.48872e-20) (-1.27209 9.61705 1.0046e-19) (-1.32563 9.83086 -4.92014e-20) (-1.38118 10.0509 1.17023e-19) (-1.43889 10.2778 7.43409e-21) (-1.49889 10.5122 -1.28485e-19) (-1.56133 10.7545 1.47614e-19) (-1.62642 11.0053 -7.23976e-20) (-1.69439 11.2654 -1.72794e-19) (-1.76553 11.5356 -1.13047e-20) (-1.84021 11.817 -1.23427e-20) (-1.91893 12.1111 2.0644e-19) (-2.0023 12.4202 -2.38734e-19) (-2.0911 12.7469 2.43133e-19) (-2.1863 13.0948 -4.19045e-19) (-2.28912 13.4684 2.92013e-19) (-2.40098 13.8736 -1.5653e-19) (-2.52348 14.3169 5.74662e-21) (-2.65835 14.8058 1.36882e-20) (-2.80729 15.3476 -4.14775e-19) (-2.97083 15.9481 -2.22897e-19) (-3.14619 16.609 8.43265e-21) (-3.33799 17.3206 -8.5885e-19) (-3.57049 18.0539 3.00433e-19) (-3.59094 18.8157 0) (-4.23135 19.3167 3.72197e-19) (-0.805086 8.6753 0) (-0.847582 8.86725 3.68041e-20) (-0.887539 9.06371 3.96437e-20) (-0.93057 9.26399 1.30172e-19) (-0.975583 9.46876 5.43965e-21) (-1.02205 9.67864 -4.61659e-20) (-1.07015 9.89422 6.11162e-22) (-1.12012 10.1161 1.75996e-19) (-1.17206 10.3448 -5.79913e-20) (-1.22611 10.5811 0) (-1.28242 10.8253 7.26223e-20) (-1.34117 11.0782 7.58937e-22) (-1.40258 11.3405 8.48993e-20) (-1.46692 11.613 0) (-1.53454 11.8969 3.04087e-19) (-1.60589 12.1938 -3.22227e-19) (-1.68153 12.5058 3.42846e-19) (-1.76218 12.8357 2.5776e-19) (-1.84871 13.1871 1.4179e-19) (-1.94221 13.5646 2.99212e-19) (-2.04394 13.9739 0) (-2.15532 14.4216 1.77198e-19) (-2.27784 14.9151 0) (-2.41295 15.4615 -2.2114e-19) (-2.56098 16.0662 2.15406e-19) (-2.71897 16.7303 2.47928e-19) (-2.89161 17.4436 2.83156e-19) (-3.10379 18.1766 0) (-3.10246 18.9286 3.68675e-19) (-3.72692 19.4309 2.06059e-20) (-0.578799 8.72332 7.09724e-20) (-0.616152 8.91655 2.25408e-21) (-0.651327 9.11428 -7.70084e-20) (-0.6893 9.31601 5.50555e-22) (-0.729073 9.52234 0) (-0.770171 9.73384 -1.52435e-19) (-0.812776 9.95106 2.15982e-19) (-0.857073 10.1746 -1.70369e-19) (-0.90318 10.4051 6.69701e-22) (-0.951214 10.643 0) (-1.00131 10.8891 7.31486e-22) (-1.05364 11.1439 -7.84978e-20) (-1.10841 11.4082 8.0377e-22) (-1.16586 11.6828 0) (-1.22632 11.9691 8.89112e-22) (-1.2902 12.2686 -1.0785e-19) (-1.358 12.5833 -1.20379e-19) (-1.43036 12.9162 1.24656e-19) (-1.50807 13.2709 -2.81352e-19) (-1.59209 13.652 -8.80578e-21) (-1.68353 14.0652 3.23885e-19) (-1.78361 14.517 1.79901e-19) (-1.89359 15.0148 1.96612e-19) (-2.01471 15.5654 2.15313e-19) (-2.14706 16.1739 -8.47989e-21) (-2.28758 16.8407 2.39907e-19) (-2.44106 17.555 1.2602e-19) (-2.63304 18.2871 4.70438e-19) (-2.61046 19.0286 3.49287e-19) (-3.21937 19.532 -1.89443e-19) (-0.351135 8.76559 7.60938e-20) (-0.383299 8.95995 -3.57648e-20) (-0.413635 9.1588 -4.01762e-20) (-0.446484 9.36185 -4.32569e-20) (-0.480949 9.5696 0) (-0.516614 9.78258 0) (-0.553647 10.0013 -5.40958e-20) (-0.592213 10.2264 6.04545e-20) (-0.632416 10.4584 -1.24378e-19) (-0.674363 10.698 7.03939e-20) (-0.718179 10.9457 -1.44936e-19) (-0.764015 11.2023 0) (-0.812057 11.4684 -8.57034e-20) (-0.862535 11.7451 0) (-0.91574 12.0335 -2.04498e-19) (-0.972036 12.3354 2.18794e-19) (-1.03188 12.6527 -3.55241e-19) (-1.09583 12.9884 -3.42309e-21) (-1.16459 13.3462 -1.44459e-19) (-1.23899 13.7306 -4.19806e-21) (-1.31997 14.1474 -1.64901e-19) (-1.40856 14.6031 -8.92653e-20) (-1.50584 15.1047 -2.9895e-19) (-1.61278 15.6591 -2.23154e-19) (-1.72932 16.2709 1.36498e-21) (-1.85229 16.9399 -2.49928e-19) (-1.98662 17.6547 -1.38609e-19) (-2.15857 18.3853 -3.18162e-19) (-2.11528 19.1158 -3.49288e-19) (-2.70908 19.6197 -1.91159e-19) (-0.122217 8.80205 -1.11601e-19) (-0.149154 8.99738 9.54745e-20) (-0.174599 9.19723 -3.98341e-20) (-0.202264 9.40144 -4.54085e-20) (-0.231358 9.61048 9.49919e-20) (-0.261528 9.82479 -1.02276e-19) (-0.292926 10.0449 8.24991e-20) (-0.325697 10.2714 -5.76187e-20) (-0.359933 10.5048 6.59051e-20) (-0.395727 10.7459 -6.70026e-20) (-0.433191 10.9951 -7.67759e-20) (-0.47246 11.2533 1.6103e-19) (-0.513702 11.5211 -8.43783e-20) (-0.557122 11.7997 0) (-0.60298 12.0901 0) (-0.651599 12.3941 0) (-0.703378 12.7138 0) (-0.758807 13.0521 -1.33979e-19) (-0.818481 13.4127 1.36477e-19) (-0.883102 13.8003 2.33763e-21) (-0.953468 14.2204 -8.0743e-20) (-1.03043 14.6795 -9.06363e-20) (-1.11482 15.1848 0) (-1.20744 15.7425 0) (-1.30801 16.3572 0) (-1.41334 17.0279 0) (-1.52854 17.7426 -1.5132e-19) (-1.68058 18.4711 1.54378e-19) (-1.61712 19.19 -1.87834e-19) (-2.19627 19.6942 -1.20744e-20) (0.10784 8.83262 0) (0.0861555 9.02877 -1.91812e-20) (0.0656474 9.22948 0) (0.043221 9.43473 -4.59742e-20) (0.0195542 9.64489 9.61538e-20) (-0.00506404 9.8604 -1.03484e-19) (-0.0307691 10.0817 8.17643e-20) (-0.0576862 10.3095 6.17759e-20) (-0.0858942 10.5442 -6.27914e-20) (-0.115473 10.7866 5.4322e-20) (-0.146521 11.0372 -7.30477e-20) (-0.179156 11.2968 4.18684e-20) (-0.213524 11.5662 -4.25931e-20) (-0.249808 11.8464 0) (-0.288234 12.1387 0) (-0.329081 12.4446 5.73839e-20) (-0.372692 12.7665 -1.20651e-19) (-0.419481 13.1072 6.33686e-20) (-0.469943 13.4704 0) (-0.524655 13.8608 -2.95886e-21) (-0.584259 14.284 8.13763e-20) (-0.649419 14.7463 -4.6012e-20) (-0.720776 15.2547 -1.03865e-19) (-0.798908 15.8155 -6.29585e-20) (-0.883403 16.4324 1.16093e-19) (-0.971022 17.1043 0) (-1.06712 17.8184 -7.61815e-20) (-1.19945 18.5443 -6.24851e-21) (-1.11639 19.2511 8.56734e-20) (-1.68149 19.7556 -8.85808e-22) (0.338923 8.85723 0) (0.322505 9.05407 2.01475e-20) (0.30697 9.25551 -2.04541e-20) (0.289828 9.46165 0) (0.271637 9.67281 -2.50261e-20) (0.252622 9.88937 2.54219e-20) (0.232662 10.1118 -2.8987e-20) (0.211652 10.3406 2.94574e-20) (0.189527 10.5765 0) (0.16622 10.8201 1.75139e-20) (0.141648 11.0719 0) (0.115711 11.3328 0) (0.0882836 11.6036 0) (0.0592095 11.8853 0) (0.0282964 12.1792 0) (-0.00469078 12.4869 0) (-0.0400359 12.8108 0) (-0.0780768 13.1537 3.40447e-20) (-0.119209 13.5192 -7.16681e-20) (-0.163883 13.9122 7.7926e-20) (-0.212587 14.3381 2.83414e-21) (-0.265803 14.8033 1.32596e-21) (-0.323974 15.3145 -5.23185e-20) (-0.387488 15.8778 1.08375e-19) (-0.45579 16.4966 0) (-0.525617 17.1691 0) (-0.60259 17.8819 0) (-0.715222 18.6047 0) (-0.612785 19.2989 -4.7561e-20) (-1.16414 19.8036 9.38597e-20) (0.570937 8.87582 0) (0.559783 9.07321 0) (0.549244 9.27526 -1.09621e-20) (0.537424 9.48215 1.1131e-20) (0.524749 9.69415 0) (0.51138 9.91161 0) (0.497211 10.135 7.32707e-21) (0.482157 10.3648 -7.44597e-21) (0.466166 10.6017 0) (0.449184 10.8462 0) (0.431144 11.0992 0) (0.411965 11.3612 0) (0.391542 11.6332 0) (0.369748 11.9162 1.24562e-20) (0.346424 12.2115 7.98825e-22) (0.321381 12.5208 -1.37185e-20) (0.294394 12.8464 0) (0.265204 13.1912 0) (0.233515 13.5589 -1.8642e-20) (0.199002 13.9542 1.89936e-20) (0.161331 14.3825 0) (0.120197 14.8502 0) (0.0753487 15.3638 -1.31766e-20) (0.0265758 15.9292 1.34356e-20) (-0.0254415 16.5494 0) (-0.0774234 17.2218 0) (-0.135288 17.9328 0) (-0.228486 18.6521 0) (-0.107156 19.3334 0) (-0.646579 19.8392 2.42636e-20) (-5.36858 6.04556 -2.04076e-19) (-5.54047 5.82982 0) (-5.68786 5.63853 2.8962e-19) (-5.83952 5.44778 1.00109e-19) (-5.98281 5.25773 -9.12197e-20) (-6.1218 5.06668 -9.80614e-20) (-6.25514 4.87391 -1.70299e-19) (-6.38344 4.67923 1.68886e-19) (-6.50655 4.48248 0) (-6.62458 4.28362 3.49519e-19) (-6.73748 4.08264 0) (-6.84525 3.87956 -1.62881e-20) (-6.94789 3.67439 4.29663e-20) (-7.04545 3.46718 -1.75938e-22) (-7.13791 3.25806 -1.31993e-19) (-7.2252 3.04713 8.89392e-20) (-7.30727 2.83447 -1.23316e-19) (-7.38413 2.62012 1.23209e-19) (-7.45571 2.40421 -1.69224e-19) (-7.52178 2.18681 -4.61125e-20) (-7.5825 1.96771 -1.23112e-19) (-7.63868 1.74695 -7.63486e-21) (-7.69012 1.5252 0) (-7.73574 1.30255 0) (-7.77566 1.07881 -4.08747e-20) (-7.8103 0.854392 -4.47837e-20) (-7.83954 0.629308 6.37753e-20) (-7.86334 0.403637 0) (-7.88167 0.177472 -1.04501e-20) (-7.89454 -0.0490679 0) (-5.53476 6.13745 2.01746e-19) (-5.69507 5.93573 0) (-5.84382 5.74463 -1.94004e-19) (-5.99405 5.55157 -1.91389e-19) (-6.13837 5.35904 1.0704e-19) (-6.27854 5.16521 4.88091e-19) (-6.41355 4.96962 0) (-6.54365 4.77204 -9.53681e-20) (-6.66871 4.57229 9.53672e-20) (-6.78872 4.37035 -3.77733e-19) (-6.90365 4.16618 0) (-7.01346 3.9598 1.78937e-19) (-7.11814 3.75124 1.93439e-19) (-7.21769 3.54056 0) (-7.31208 3.32785 8.83078e-20) (-7.40125 3.11322 -8.80474e-20) (-7.48517 2.89673 -4.57573e-20) (-7.56381 2.67847 4.57571e-20) (-7.63713 2.45855 4.19588e-20) (-7.705 2.237 1.33271e-19) (-7.76754 2.01367 0) (-7.82501 1.78871 -7.66348e-21) (-7.87709 1.56293 0) (-7.92357 1.3365 2.49063e-20) (-7.96461 1.10868 -1.97565e-21) (-8.00013 0.879919 2.12984e-20) (-8.0301 0.650356 -5.81491e-20) (-8.0545 0.420129 1.16408e-20) (-8.0733 0.189356 -1.22347e-20) (-8.0865 -0.0418348 0) (-5.69138 6.24739 -1.13429e-19) (-5.84832 6.05137 3.47331e-19) (-5.99922 5.85987 1.10062e-19) (-6.14988 5.66494 -1.10061e-19) (-6.29595 5.46972 -3.15711e-19) (-6.43794 5.27271 1.79644e-20) (-6.5751 5.0738 2.12264e-19) (-6.70744 4.87275 -1.05679e-19) (-6.83478 4.66945 1.13555e-19) (-6.95709 4.46385 8.74496e-20) (-7.07428 4.25595 0) (-7.18633 4.04576 1.62734e-19) (-7.2932 3.83333 -1.45178e-19) (-7.39485 3.61871 0) (-7.49126 3.40199 0) (-7.58237 3.18326 1.05453e-19) (-7.66814 2.96261 1.05241e-19) (-7.74854 2.74013 -1.05094e-19) (-7.8235 2.51592 -1.0501e-19) (-7.89296 2.29006 5.03595e-20) (-7.95698 2.06254 -5.03594e-20) (-8.01562 1.83351 9.68541e-20) (-8.06872 1.60331 0) (-8.11625 1.37196 -1.26768e-19) (-8.15822 1.13955 4.86998e-20) (-8.19453 0.906201 2.54385e-20) (-8.22516 0.672017 2.45868e-20) (-8.25009 0.437134 0) (-8.26929 0.201678 1.24208e-20) (-8.28275 -0.0342202 6.77041e-21) (-5.84325 6.37216 -1.24231e-19) (-6.00118 6.17796 -1.13278e-19) (-6.15504 5.98455 0) (-6.30749 5.7875 0) (-6.45589 5.5893 1.28987e-19) (-6.6002 5.38885 -1.08168e-19) (-6.73985 5.18628 0) (-6.87469 4.98141 0) (-7.00456 4.77416 -2.21052e-19) (-7.12936 4.56452 2.19627e-19) (-7.24901 4.35248 0) (-7.36345 4.13809 -2.17236e-19) (-7.47263 3.92138 0) (-7.5765 3.70243 -5.59403e-20) (-7.67503 3.48131 1.11719e-19) (-7.76815 3.25812 -1.02441e-19) (-7.85583 3.03295 -2.22615e-19) (-7.93801 2.80588 1.62273e-19) (-8.01465 2.57703 1.06628e-19) (-8.0857 2.34647 0) (-8.15116 2.11427 0) (-8.21107 1.88058 0) (-8.26533 1.64557 0) (-8.3139 1.40932 -3.24099e-20) (-8.35674 1.172 -8.66475e-23) (-8.39382 0.933726 2.80061e-20) (-8.42509 0.694613 2.93279e-20) (-8.45052 0.454782 2.94553e-20) (-8.47009 0.214362 0) (-8.48379 -0.026516 -6.87476e-21) (-5.99799 6.50359 0) (-6.15851 6.30958 0) (-6.31557 6.11377 0) (-6.47041 5.91433 0) (-6.62131 5.71296 -2.51084e-19) (-6.76809 5.50899 0) (-6.91027 5.30265 0) (-7.04764 5.09381 0) (-7.18002 4.88246 1.36885e-19) (-7.3073 4.66861 1.25911e-19) (-7.42937 4.45228 0) (-7.54616 4.23351 0) (-7.65761 4.01235 0) (-7.76366 3.78888 0) (-7.86427 3.56319 0) (-7.95937 3.33536 -1.17881e-19) (-8.04891 3.10548 1.83895e-19) (-8.13286 2.87366 6.11331e-20) (-8.21114 2.64 6.60739e-20) (-8.28373 2.40458 -6.60485e-20) (-8.35062 2.1675 0) (-8.4118 1.92891 -3.05806e-20) (-8.4672 1.68895 3.05806e-20) (-8.51678 1.44774 -4.85796e-21) (-8.56051 1.2054 0) (-8.59835 0.962073 0) (-8.63025 0.717883 -6.20054e-20) (-8.65619 0.472955 -6.22668e-20) (-8.67614 0.22742 1.625e-20) (-8.6901 -0.0185877 0) (-6.15679 6.64057 0) (-6.32064 6.44536 0) (-6.48109 6.24692 -3.0293e-19) (-6.63865 6.04477 0) (-6.79224 5.84005 -1.42303e-19) (-6.94161 5.63245 1.42302e-19) (-7.08636 5.42221 1.40043e-19) (-7.22628 5.20929 -4.30174e-19) (-7.36117 4.99372 -4.05175e-19) (-7.49091 4.77553 1.38221e-19) (-7.61538 4.55476 0) (-7.73449 4.33147 0) (-7.84819 4.10573 -7.35357e-20) (-7.9564 3.8776 -2.08717e-19) (-8.05906 3.64719 -7.30461e-20) (-8.15611 3.41458 5.42663e-21) (-8.24751 3.17988 1.06204e-20) (-8.33319 2.94318 -7.25413e-20) (-8.41312 2.70458 1.05056e-20) (-8.48724 2.46419 1.29098e-19) (-8.55554 2.22212 -1.39649e-19) (-8.618 1.97849 0) (-8.67455 1.73347 0) (-8.72517 1.48715 3.11185e-20) (-8.76981 1.23968 1.04023e-19) (-8.80844 0.991192 0) (-8.84101 0.741807 6.80929e-20) (-8.8675 0.491661 6.83638e-20) (-8.88786 0.240888 -1.65069e-20) (-8.90212 -0.0103751 0) (-6.31962 6.78322 -1.62197e-19) (-6.48721 6.58574 1.62195e-19) (-6.65119 6.38433 3.07783e-19) (-6.81177 6.17912 0) (-6.96823 5.97084 -4.80941e-19) (-7.12034 5.75945 1.55862e-19) (-7.26776 5.54517 0) (-7.41029 5.32803 1.42283e-19) (-7.54774 5.1081 9.02804e-22) (-7.67996 4.88544 1.51592e-19) (-7.80686 4.6601 0) (-7.92832 4.43216 -7.47223e-20) (-8.04427 4.20168 2.18354e-19) (-8.15465 3.96877 6.89192e-20) (-8.25938 3.7335 3.71094e-19) (-8.3584 3.49598 -2.96198e-19) (-8.45167 3.25631 -6.83713e-20) (-8.53912 3.01459 -8.51559e-20) (-8.62071 2.77094 -1.41866e-19) (-8.69639 2.52545 0) (-8.76613 2.27825 1.41886e-19) (-8.8299 2.02947 0) (-8.88765 1.77924 -3.6958e-20) (-8.93935 1.5277 -7.75676e-23) (-8.98495 1.27496 -1.48612e-19) (-9.02441 1.02117 3.71313e-20) (-9.0577 0.766458 -3.59302e-20) (-9.08479 0.51096 -3.60692e-20) (-9.10563 0.254813 1.95427e-20) (-9.12024 -0.00184392 -4.90791e-21) (-6.48672 6.93125 3.68939e-19) (-6.65825 6.73079 3.65244e-19) (-6.8259 6.52608 0) (-6.9897 6.31745 -3.58529e-19) (-7.1492 6.10541 3.30352e-19) (-7.3042 5.89004 -1.69299e-19) (-7.45441 5.67157 1.69298e-19) (-7.59963 5.45008 -6.97648e-21) (-7.7397 5.22566 -3.33207e-19) (-7.87447 4.99839 1.66129e-19) (-8.00383 4.76835 0) (-8.12768 4.53562 0) (-8.24593 4.30028 -1.69984e-19) (-8.35851 4.06244 0) (-8.46535 3.82219 9.35764e-20) (-8.56639 3.57963 7.50798e-20) (-8.66156 3.33487 -8.09414e-20) (-8.75082 3.08801 2.3678e-19) (-8.83411 2.83917 0) (-8.91139 2.58846 -8.71935e-20) (-8.98262 2.336 -2.48912e-19) (-9.04775 2.08193 0) (-9.10675 1.82637 -8.42068e-20) (-9.15959 1.56945 -1.24973e-19) (-9.20621 1.31131 3.44479e-20) (-9.24657 1.05209 -4.23765e-20) (-9.28064 0.791911 0) (-9.30838 0.530921 -4.26535e-20) (-9.32976 0.269257 -1.98598e-20) (-9.34479 0.00705978 4.98755e-21) (-6.65841 7.08438 -5.68152e-19) (-6.83398 6.88046 -1.78102e-19) (-7.00537 6.67215 0) (-7.17256 6.45979 3.64423e-19) (-7.33525 6.24376 1.94337e-19) (-7.49326 6.02424 1.85251e-19) (-7.64637 5.80143 -1.85249e-19) (-7.79438 5.57544 3.67394e-19) (-7.93715 5.3464 1.89419e-19) (-8.07454 5.1144 0) (-8.20643 4.87953 -1.87619e-19) (-8.33271 4.64189 1.8687e-19) (-8.45331 4.40158 3.58995e-19) (-8.56815 4.15869 0) (-8.67715 3.91333 -3.56971e-19) (-8.78025 3.6656 0) (-8.87738 3.41562 1.84519e-19) (-8.9685 3.1635 -1.84314e-19) (-9.05355 2.90935 8.86269e-20) (-9.13248 2.65329 8.21641e-20) (-9.20525 2.39544 2.59517e-19) (-9.27181 2.13593 3.49662e-21) (-9.33212 1.8749 -6.69001e-21) (-9.38615 1.61247 4.12085e-20) (-9.43385 1.34881 1.30451e-19) (-9.47516 1.08402 4.30732e-20) (-9.51008 0.818235 -4.65596e-20) (-9.53854 0.55161 4.33547e-20) (-9.56052 0.284283 0) (-9.57603 0.016397 0) (-6.83495 7.24251 -4.29983e-19) (-7.01461 7.03479 2.10683e-19) (-7.18981 6.82257 0) (-7.36052 6.60621 0) (-7.52653 6.38599 -4.01556e-19) (-7.68769 6.16213 1.37762e-21) (-7.8438 5.93482 2.02601e-19) (-7.9947 5.70421 6.54586e-21) (-8.14026 5.47041 -6.00017e-19) (-8.28033 5.23355 -2.06255e-19) (-8.41481 4.99373 1.90744e-19) (-8.5436 4.75106 -2.88324e-19) (-8.66661 4.50564 7.05214e-21) (-8.78376 4.25757 1.05283e-19) (-8.89497 4.00698 2.85817e-19) (-9.00019 3.75397 -9.75438e-20) (-9.09934 3.49865 -4.86951e-19) (-9.19237 3.24113 4.86529e-19) (-9.27923 2.98154 -9.71206e-20) (-9.35986 2.72 1.94245e-19) (-9.43422 2.45664 -9.71244e-20) (-9.50227 2.19157 7.25903e-21) (-9.56395 1.92494 9.3818e-20) (-9.61922 1.65687 0) (-9.66804 1.38753 5.25414e-20) (-9.71039 1.11702 4.88924e-20) (-9.7462 0.845494 4.7335e-20) (-9.77543 0.573088 -3.88039e-20) (-9.79807 0.299951 -1.23345e-20) (-9.81411 0.026226 0) (-7.01663 7.40568 2.22997e-19) (-7.20042 7.19385 0) (-7.3795 6.97747 -2.3531e-19) (-7.55383 6.75685 0) (-7.72327 6.53224 -2.2292e-19) (-7.88768 6.30386 2.22918e-19) (-8.0469 6.07189 0) (-8.20079 5.83649 -2.27822e-19) (-8.34922 5.5978 -1.59272e-20) (-8.49206 5.35594 2.09735e-19) (-8.6292 5.11104 2.24707e-19) (-8.76056 4.86321 2.23886e-19) (-8.88603 4.61256 2.23169e-19) (-9.00555 4.3592 -5.36347e-19) (-9.11903 4.10324 1.07053e-19) (-9.22642 3.84481 0) (-9.32764 3.58402 4.26828e-19) (-9.42263 3.32099 -2.05308e-19) (-9.51135 3.05583 -1.14568e-19) (-9.59373 2.78868 4.07582e-21) (-9.66974 2.51966 -1.06433e-19) (-9.73931 2.2489 3.76265e-21) (-9.80241 1.97654 -1.10674e-19) (-9.85897 1.7027 -5.34241e-20) (-9.90898 1.42753 -1.60766e-19) (-9.9524 1.15116 0) (-9.98915 0.873743 0) (-10.0192 0.595412 5.20011e-20) (-10.0425 0.316315 0) (-10.0592 0.0366007 0) (-7.20377 7.57401 0) (-7.39173 7.35782 0) (-7.57475 7.13702 4.96112e-19) (-7.75281 6.91191 0) (-7.92577 6.68269 -2.43551e-19) (-8.09354 6.44959 4.95338e-19) (-8.25596 6.21279 0) (-8.41292 5.97245 -7.75845e-21) (-8.5643 5.72872 -1.61774e-20) (-8.70997 5.48173 -8.41918e-21) (-8.84985 5.2316 -2.28547e-19) (-8.98383 4.97847 -2.27712e-19) (-9.11183 4.72245 -2.26982e-19) (-9.23376 4.46366 2.26357e-19) (-9.34957 4.20221 0) (-9.45917 3.93823 2.42566e-19) (-9.5625 3.67183 -5.83928e-19) (-9.6595 3.40315 1.16613e-19) (-9.75012 3.13229 2.24723e-19) (-9.83429 2.85939 8.56862e-21) (-9.91198 2.58458 1.20941e-19) (-9.98312 2.30798 0) (-10.0477 2.02974 5.41756e-20) (-10.1056 1.74998 -9.57976e-23) (-10.1568 1.46885 1.12824e-19) (-10.2013 1.18649 5.86044e-20) (-10.2391 0.903033 0) (-10.27 0.618629 0) (-10.294 0.333425 0) (-10.3113 0.0475698 0) (-7.39682 7.74773 0) (-7.58898 7.52693 0) (-7.776 7.30148 -2.61225e-19) (-7.95785 7.07163 -2.7837e-19) (-8.13443 6.8376 0) (-8.30563 6.59958 -5.20664e-19) (-8.47134 6.35776 2.54056e-19) (-8.63145 6.1123 -1.28906e-21) (-8.78585 5.86336 2.61276e-19) (-8.93443 5.61107 2.51037e-19) (-9.07709 5.35557 0) (-9.21375 5.09699 -3.96813e-19) (-9.34431 4.83545 5.24572e-19) (-9.46871 4.57108 1.37905e-19) (-9.58687 4.30399 0) (-9.69872 4.03432 -3.74554e-19) (-9.80419 3.76217 2.4657e-19) (-9.90323 3.48769 -1.37191e-19) (-9.99578 3.21099 1.27502e-19) (-10.0818 2.9322 -1.18179e-19) (-10.1612 2.65145 -1.23034e-19) (-10.2339 2.36887 -1.3244e-19) (-10.2999 2.0846 0) (-10.3592 1.79878 -6.4011e-20) (-10.4117 1.51154 6.4011e-20) (-10.4573 1.22305 0) (-10.496 0.933405 0) (-10.5278 0.64278 0) (-10.5527 0.35132 0) (-10.5705 0.0591751 0) (-7.59631 7.9272 1.17861e-20) (-7.79272 7.70154 2.9807e-19) (-7.98379 7.47118 2.94117e-19) (-8.16951 7.23636 2.81434e-19) (-8.34977 6.99727 -8.84988e-19) (-8.52449 6.75412 5.91028e-19) (-8.69356 6.50707 2.78359e-19) (-8.85688 6.25631 0) (-9.01435 6.00197 -5.60673e-19) (-9.16588 5.74421 5.79965e-19) (-9.31138 5.48316 0) (-9.45075 5.21896 2.72606e-19) (-9.58392 4.95174 -5.63981e-19) (-9.71081 4.68162 -4.11432e-19) (-9.83135 4.40873 1.4031e-19) (-9.94546 4.1332 0) (-10.0531 3.85515 -1.39686e-19) (-10.1542 3.57472 4.09161e-19) (-10.2487 3.29201 -1.39541e-19) (-10.3365 3.00718 1.49691e-19) (-10.4176 2.72034 1.44832e-19) (-10.4919 2.43163 2.79682e-19) (-10.5594 2.14119 1.45059e-19) (-10.6201 1.84916 0) (-10.6738 1.55566 0) (-10.7206 1.26087 0) (-10.7603 0.964893 0) (-10.793 0.667898 0) (-10.8186 0.370033 0) (-10.8371 0.0714491 -9.21593e-21) (-7.803 8.11295 -6.40514e-19) (-8.0037 7.88216 3.25148e-19) (-8.19888 7.64662 3.33718e-19) (-8.38852 7.40657 -3.19176e-19) (-8.57252 7.16218 6.26637e-19) (-8.75081 6.91365 -6.33956e-19) (-8.92329 6.66114 0) (-9.08988 6.40484 -3.12834e-19) (-9.25048 6.14489 1.27452e-21) (-9.405 5.88145 1.13212e-20) (-9.55335 5.61465 0) (-9.69546 5.34464 -3.20417e-19) (-9.83125 5.07154 2.97362e-19) (-9.96064 4.79549 -3.18817e-19) (-10.0836 4.51662 3.18198e-19) (-10.2 4.23506 3.17698e-19) (-10.3097 3.95093 4.70164e-19) (-10.4129 3.66436 -3.11373e-19) (-10.5093 3.37549 3.11148e-19) (-10.5989 3.08444 -3.00067e-19) (-10.6817 2.79134 -1.47404e-19) (-10.7576 2.49634 -1.47493e-19) (-10.8266 2.19956 1.10764e-20) (-10.8886 1.90115 -2.35558e-19) (-10.9436 1.60123 -7.97251e-20) (-10.9914 1.29996 1.56524e-19) (-11.0322 0.997529 0) (-11.0657 0.69401 0) (-11.092 0.389588 0) (-11.1111 0.0844115 -6.98273e-22) (-8.01788 8.30573 0) (-8.22293 8.06952 -3.52594e-19) (-8.42227 7.82851 7.27693e-19) (-8.61588 7.58293 -3.5052e-19) (-8.80368 7.33295 -3.46729e-19) (-8.98559 7.07876 6.8081e-19) (-9.16153 6.82053 0) (-9.33142 6.55843 0) (-9.49517 6.29262 -6.94521e-19) (-9.6527 6.02325 3.40622e-19) (-9.80393 5.75047 0) (-9.94879 5.47441 6.76594e-19) (-10.0872 5.19521 3.49513e-19) (-10.2191 4.91302 -2.41881e-20) (-10.3444 4.62795 -3.23919e-19) (-10.463 4.34014 -8.38386e-19) (-10.5749 4.04972 -1.55609e-19) (-10.6801 3.75683 3.34818e-19) (-10.7784 3.46158 1.20671e-20) (-10.8698 3.16412 0) (-10.9543 2.86458 6.21894e-21) (-11.0317 2.5631 1.6717e-19) (-11.1021 2.2598 -1.61565e-19) (-11.1654 1.95483 7.79126e-20) (-11.2215 1.64833 2.48883e-19) (-11.2704 1.34043 -2.52415e-19) (-11.3121 1.03134 -4.52344e-20) (-11.3465 0.721136 -4.21919e-20) (-11.3735 0.409991 0) (-11.3931 0.0980633 1.02591e-20) (-8.24234 8.50665 0) (-8.4518 8.26467 0) (-8.65536 8.01784 -3.70929e-19) (-8.853 7.76638 3.80744e-19) (-9.04464 7.51048 -3.8074e-19) (-9.23022 7.2503 0) (-9.40966 6.98603 3.75373e-19) (-9.58287 6.71782 -1.13762e-18) (-9.7498 6.44585 3.61733e-19) (-9.91035 6.17026 -1.31304e-20) (-10.0645 5.8912 0) (-10.212 5.60882 2.64757e-20) (-10.353 5.32326 -3.55875e-19) (-10.4874 5.03465 1.71364e-19) (-10.615 4.74312 -1.97103e-19) (-10.7359 4.44882 3.53891e-19) (-10.8499 4.15187 0) (-10.957 3.8524 -1.76601e-19) (-11.0571 3.55055 1.31793e-20) (-11.1502 3.24646 0) (-11.2363 2.94025 1.31834e-20) (-11.3152 2.63206 -1.89837e-19) (-11.3869 2.32204 1.90007e-19) (-11.4514 2.01031 -9.17589e-20) (-11.5087 1.69703 9.51075e-20) (-11.5585 1.38232 2.76175e-19) (-11.601 1.06634 8.90177e-20) (-11.6361 0.749279 4.79379e-20) (-11.6637 0.431232 0) (-11.6838 0.112379 0) (-8.47827 8.71723 -4.22775e-19) (-8.69223 8.46908 4.39276e-19) (-8.90007 8.21602 4.0399e-19) (-9.10181 7.95829 -4.18147e-19) (-9.29735 7.69605 -4.14012e-19) (-9.48664 7.42949 4.14007e-19) (-9.66961 7.15879 0) (-9.84617 6.8841 3.95568e-19) (-10.0163 6.60559 -4.07318e-19) (-10.1798 6.32342 1.22171e-18) (-10.3368 6.03774 -4.20441e-19) (-10.4871 5.74869 -8.09631e-19) (-10.6307 5.45642 4.18299e-19) (-10.7674 5.16107 0) (-10.8973 4.86276 1.79481e-19) (-11.0203 4.56165 -2.08069e-19) (-11.1363 4.25786 -2.00274e-19) (-11.2453 3.95153 2.00274e-19) (-11.3472 3.64279 -2.00699e-19) (-11.4419 3.33178 -2.00107e-19) (-11.5294 3.01863 -1.93225e-19) (-11.6097 2.70348 -1.4423e-20) (-11.6827 2.38646 -1.93508e-19) (-11.7483 2.06773 -1.00414e-19) (-11.8064 1.74741 -9.71855e-20) (-11.8571 1.42564 3.38328e-21) (-11.9003 1.10258 1.04649e-19) (-11.936 0.778405 -4.88212e-20) (-11.964 0.453276 -2.62934e-20) (-11.9845 0.127297 1.31855e-20) (-8.72826 8.93963 0) (-8.94682 8.6848 -4.45059e-19) (-9.15906 8.42502 4.42666e-19) (-9.36498 8.16052 -4.54754e-19) (-9.56449 7.89146 2.10452e-21) (-9.75755 7.61804 -1.56982e-20) (-9.94409 7.34043 0) (-10.124 7.05879 0) (-10.2973 6.77329 4.62947e-19) (-10.4639 6.48409 -8.91029e-19) (-10.6237 6.19134 4.2828e-19) (-10.7767 5.89519 2.06205e-19) (-10.9228 5.59578 1.52421e-20) (-11.0619 5.29327 -2.20428e-19) (-11.194 4.98779 4.40314e-19) (-11.319 4.67947 4.3971e-19) (-11.4369 4.36845 2.27526e-19) (-11.5476 4.05488 0) (-11.6511 3.73888 -7.56536e-21) (-11.7473 3.4206 2.19046e-19) (-11.8362 3.10016 -2.1915e-19) (-11.9176 2.77771 4.30781e-19) (-11.9916 2.45338 3.37385e-19) (-12.0581 2.12731 -2.1967e-19) (-12.1171 1.79966 2.24013e-19) (-12.1685 1.47055 1.14303e-19) (-12.2122 1.14013 -1.066e-19) (-12.2482 0.808561 0) (-12.2764 0.476052 5.5556e-20) (-12.297 0.142709 9.96048e-22) (-8.99576 9.17677 2.00111e-20) (-9.21911 8.91468 5.2475e-19) (-9.43588 8.64757 5.02232e-19) (-9.64612 8.37569 4.97375e-19) (-9.84972 8.09921 -9.92516e-19) (-10.0466 7.81833 9.72313e-19) (-10.2368 7.53321 0) (-10.4202 7.24403 -4.8933e-19) (-10.5967 6.95096 -4.70043e-19) (-10.7663 6.65416 9.57831e-19) (-10.929 6.35378 0) (-11.0846 6.04998 -5.02436e-19) (-11.2331 5.7429 -9.32114e-21) (-11.3745 5.4327 -2.4133e-19) (-11.5087 5.11951 1.73868e-20) (-11.6357 4.80347 -2.32057e-19) (-11.7553 4.48473 -2.31818e-19) (-11.8677 4.16343 0) (-11.9726 3.83969 -9.04566e-21) (-12.0701 3.51367 -4.88738e-19) (-12.1601 3.18549 0) (-12.2425 2.85529 -2.49063e-19) (-12.3174 2.52322 -2.36367e-19) (-12.3846 2.18942 -2.40516e-19) (-12.4441 1.85402 8.49808e-21) (-12.4958 1.51718 4.06343e-21) (-12.5398 1.17904 -6.26986e-20) (-12.5759 0.839748 6.28372e-20) (-12.6041 0.499472 -6.08116e-20) (-12.6244 0.158416 -1.46995e-20) (-9.28535 9.43261 -5.34882e-19) (-9.51376 9.16252 -1.08164e-18) (-9.73531 8.88733 5.49544e-19) (-9.95007 8.60733 0) (-10.1579 8.32269 1.10563e-18) (-10.3589 8.0336 -5.42019e-19) (-10.5528 7.74023 5.37745e-19) (-10.7397 7.44278 -5.3774e-19) (-10.9195 7.14141 -5.55148e-19) (-11.0922 6.83628 0) (-11.2577 6.52756 0) (-11.4159 6.2154 5.12018e-19) (-11.5669 5.89995 5.19794e-19) (-11.7105 5.58137 -2.64359e-19) (-11.8467 5.2598 -2.54522e-19) (-11.9755 4.93538 0) (-12.0968 4.60826 -2.62978e-19) (-12.2106 4.27858 2.62978e-19) (-12.3168 3.94647 -1.90996e-20) (-12.4154 3.61209 2.53628e-19) (-12.5063 3.27557 2.62878e-19) (-12.5895 2.93705 -9.06434e-21) (-12.6649 2.59666 1.2701e-19) (-12.7325 2.25456 0) (-12.7923 1.91089 -2.59335e-19) (-12.8441 1.56579 1.32008e-19) (-12.888 1.21941 -4.78695e-21) (-12.9238 0.871906 -6.40357e-20) (-12.9516 0.523425 -2.39915e-21) (-12.9714 0.174157 0) (-9.60294 9.71234 0) (-9.83681 9.43335 0) (-10.0635 9.14918 -1.22245e-18) (-10.2831 8.86014 5.99095e-19) (-10.4956 8.56641 -1.78619e-18) (-10.7008 8.26819 -2.14296e-20) (-10.8987 7.96567 0) (-11.0893 7.65902 5.8727e-19) (-11.2726 7.34843 -2.1416e-20) (-11.4485 7.03407 0) (-11.6169 6.71609 -3.02619e-19) (-11.7778 6.39467 -2.904e-19) (-11.9312 6.06996 2.90398e-19) (-12.0771 5.7421 -1.13433e-20) (-12.2153 5.41127 -2.893e-19) (-12.3458 5.07759 0) (-12.4686 4.74123 0) (-12.5837 4.40233 0) (-12.691 4.06102 -2.11169e-20) (-12.7905 3.71746 2.99083e-19) (-12.882 3.37179 2.99128e-19) (-12.9657 3.02415 0) (-13.0414 2.67469 -5.4389e-21) (-13.1091 2.32354 -1.44298e-19) (-13.1687 1.97086 -1.44675e-19) (-13.2203 1.61678 7.2214e-20) (-13.2637 1.26148 2.15071e-19) (-13.2988 0.905084 -3.62216e-20) (-13.3258 0.547772 -1.22163e-21) (-13.3445 0.189701 0) (-9.95592 10.0225 0) (-10.1959 9.73355 -6.60154e-19) (-10.4283 9.43931 1.97983e-18) (-10.6533 9.14014 -6.54232e-19) (-10.8708 8.8362 6.3258e-19) (-11.0807 8.52773 1.30537e-18) (-11.283 8.21492 6.4895e-19) (-11.4777 7.89795 -6.44368e-19) (-11.6647 7.577 3.36227e-19) (-11.8441 7.25225 9.75539e-19) (-12.0156 6.92388 6.40805e-19) (-12.1794 6.59205 0) (-12.3354 6.25693 3.30757e-19) (-12.4835 5.91867 -1.0977e-20) (-12.6238 5.57743 6.47073e-19) (-12.756 5.23338 -3.16644e-19) (-12.8804 4.88665 6.45462e-19) (-12.9967 4.53741 0) (-13.1049 4.18581 3.04949e-19) (-13.2051 3.83199 -3.17182e-19) (-13.2971 3.47609 -6.21033e-19) (-13.381 3.11828 0) (-13.4566 2.7587 -1.17081e-20) (-13.5241 2.39748 0) (-13.5832 2.03479 -1.58692e-19) (-13.6341 1.67077 2.41165e-19) (-13.6765 1.30557 0) (-13.7105 0.939362 8.27755e-20) (-13.7361 0.572314 4.14787e-20) (-13.7533 0.204595 1.03952e-20) (-10.3532 10.371 0) (-10.6002 10.0709 -7.25209e-19) (-10.8392 9.76527 2.7554e-20) (-11.0704 9.45466 -3.44265e-19) (-11.2936 9.1392 7.18787e-19) (-11.509 8.81915 -6.88803e-19) (-11.7163 8.49468 7.10478e-19) (-11.9157 8.16601 -7.10471e-19) (-12.107 7.83332 -1.04664e-18) (-12.2903 7.49679 3.66106e-19) (-12.4655 7.15661 2.66573e-20) (-12.6325 6.81295 -3.64582e-19) (-12.7914 6.46598 3.7601e-19) (-12.9421 6.11588 -3.49483e-19) (-13.0846 5.7628 -3.36078e-19) (-13.2187 5.40692 0) (-13.3446 5.04839 -3.35283e-19) (-13.4622 4.68738 0) (-13.5714 4.32404 7.08386e-19) (-13.6721 3.95853 -1.24611e-20) (-13.7645 3.591 0) (-13.8484 3.22162 -1.73739e-19) (-13.9238 2.85053 3.41331e-19) (-13.9907 2.47788 1.80819e-19) (-14.049 2.10383 -1.74268e-19) (-14.0987 1.72853 1.80804e-19) (-14.1398 1.35214 0) (-14.1721 0.974814 5.03391e-20) (-14.1957 0.596743 -8.60939e-20) (-14.2107 0.218117 -1.05996e-20) (-10.8043 10.7673 8.02054e-19) (-11.0597 10.4546 -8.02044e-19) (-11.3066 10.1362 4.14622e-19) (-11.5452 9.81273 -7.60457e-19) (-11.7755 9.48427 3.80222e-19) (-11.9973 9.1511 4.09438e-19) (-12.2108 8.81343 -7.82193e-19) (-12.4158 8.47146 2.63184e-21) (-12.6124 8.1254 4.07582e-19) (-12.8005 7.77542 7.77114e-19) (-12.9801 7.42174 -3.72728e-19) (-13.1511 7.06452 3.7181e-19) (-13.3136 6.70396 -3.70996e-19) (-13.4675 6.34023 0) (-13.6127 5.97351 3.99464e-19) (-13.7492 5.60399 3.98894e-19) (-13.8771 5.23182 -3.82605e-19) (-13.9962 4.8572 -1.54774e-20) (-14.1065 4.48027 -7.50446e-19) (-14.2081 4.10122 3.8217e-19) (-14.3009 3.72021 0) (-14.3848 3.3374 7.72211e-21) (-14.4599 2.95295 1.83461e-19) (-14.526 2.56703 -1.76573e-19) (-14.5833 2.17979 7.62762e-21) (-14.6316 1.79139 -5.27583e-22) (-14.6709 1.40198 0) (-14.7011 1.01174 -9.27452e-20) (-14.7222 0.620849 0) (-14.7344 0.229581 0) (-11.3175 11.2224 -4.22347e-19) (-11.5833 10.8958 4.24526e-19) (-11.84 10.5633 -4.22905e-19) (-12.0878 10.2255 -8.77455e-19) (-12.3268 9.88256 8.73779e-19) (-12.557 9.53472 -4.17618e-19) (-12.7782 9.18221 -8.63188e-19) (-12.9905 8.82525 1.72345e-18) (-13.1939 8.46403 -2.13107e-18) (-13.3883 8.09878 8.57557e-19) (-13.5738 7.72969 -4.26415e-19) (-13.7501 7.35696 1.01158e-21) (-13.9175 6.98079 8.49898e-19) (-14.0757 6.60138 -4.24498e-19) (-14.2247 6.21891 -4.07445e-19) (-14.3646 5.83358 -4.06864e-19) (-14.4954 5.44558 1.82648e-20) (-14.6169 5.05509 8.28062e-19) (-14.7292 4.66231 4.21473e-19) (-14.8322 4.26741 -2.01802e-19) (-14.9259 3.87057 0) (-15.0103 3.47197 7.89372e-21) (-15.0854 3.07178 -7.80128e-21) (-15.1511 2.67017 -2.03084e-19) (-15.2075 2.26732 -1.94503e-19) (-15.2545 1.86338 2.02878e-19) (-15.292 1.45852 1.10271e-19) (-15.32 1.05289 0) (-15.3383 0.646737 0) (-15.3471 0.240403 0) (-11.9053 11.7378 4.17801e-20) (-12.184 11.3962 -5.06044e-19) (-12.4528 11.0484 1.48486e-18) (-12.7123 10.695 -5.01691e-19) (-12.9624 10.3362 1.00833e-18) (-13.2032 9.97227 0) (-13.4345 9.60336 9.56108e-19) (-13.6564 9.22973 -3.25128e-21) (-13.8687 8.85161 -4.5543e-19) (-14.0716 8.46922 0) (-14.2648 8.08277 -4.94497e-19) (-14.4485 7.69249 -4.93225e-19) (-14.6225 7.29859 0) (-14.7868 6.90128 0) (-14.9414 6.50079 -2.17798e-20) (-15.0862 6.09733 2.10057e-20) (-15.2213 5.6911 -4.49149e-19) (-15.3465 5.28233 4.88197e-19) (-15.4619 4.87121 -2.43896e-19) (-15.5675 4.45795 -2.24088e-19) (-15.6632 4.04276 0) (-15.7491 3.62583 -2.33117e-19) (-15.825 3.20735 7.10025e-19) (-15.8911 2.78752 -2.33203e-19) (-15.9472 2.36651 -1.02452e-19) (-15.9934 1.94452 1.12341e-19) (-16.0295 1.52172 9.75621e-21) (-16.0556 1.09825 6.12081e-20) (-16.0713 0.674168 0) (-16.0767 0.249648 0) (-12.5893 12.2944 5.66935e-19) (-12.8835 11.9362 -1.09112e-18) (-13.1679 11.5714 -1.60055e-18) (-13.4423 11.2008 1.08121e-18) (-13.7067 10.8245 4.40324e-20) (-13.961 10.4427 1.06816e-18) (-14.2052 10.0556 -5.13532e-19) (-14.4393 9.66332 -1.06066e-18) (-14.6634 9.26618 5.5319e-19) (-14.8772 8.86438 0) (-15.0808 8.45815 5.04493e-19) (-15.2742 8.04773 5.03195e-19) (-15.4572 7.63337 -5.23214e-19) (-15.6298 7.21531 5.23211e-19) (-15.792 6.79378 5.00061e-19) (-15.9437 6.36904 -1.01977e-18) (-16.0848 5.94131 5.20494e-19) (-16.2155 5.51085 -2.27894e-19) (-16.3355 5.07788 -2.10922e-20) (-16.445 4.64263 2.48957e-19) (-16.5439 4.20535 -2.69738e-19) (-16.6322 3.76625 -5.18561e-19) (-16.7098 3.32555 -2.48633e-19) (-16.7768 2.88346 0) (-16.8332 2.44018 -3.84128e-19) (-16.8789 1.99593 2.59673e-19) (-16.914 1.55093 -1.24716e-19) (-16.9385 1.10531 5.20646e-21) (-16.9522 0.659081 0) (-16.9548 0.212262 0) (-13.1912 13.0601 6.47455e-19) (-13.5107 12.6907 -6.4433e-19) (-13.8196 12.3137 -6.41375e-19) (-14.1172 11.9302 5.48378e-19) (-14.4046 11.5402 -1.12124e-18) (-14.6816 11.144 0) (-14.9481 10.7417 -1.73903e-18) (-15.2041 10.3335 1.17315e-18) (-15.4495 9.91967 -6.27116e-19) (-15.6842 9.50035 0) (-15.908 9.07583 6.23533e-19) (-16.1208 8.64638 0) (-16.3227 8.21226 -5.7658e-19) (-16.5134 7.77375 1.19578e-18) (-16.6929 7.33112 0) (-16.8611 6.88465 -1.19043e-18) (-17.018 6.4346 7.75245e-22) (-17.1636 5.98125 2.96996e-19) (-17.2977 5.52488 -3.19758e-20) (-17.4204 5.06576 -3.19294e-20) (-17.5316 4.60415 -2.9583e-19) (-17.6313 4.14032 5.70911e-19) (-17.7195 3.67454 0) (-17.7962 3.20705 -3.06889e-19) (-17.8614 2.73808 -2.85679e-19) (-17.9151 2.26786 2.8568e-19) (-17.9572 1.79664 1.53729e-19) (-17.9881 1.32449 -6.90247e-20) (-18.0076 0.851145 3.85365e-20) (-18.0149 0.376232 0) (-14.2594 13.3502 4.22672e-20) (-14.5915 12.9627 -1.36356e-18) (-14.9158 12.5668 6.23173e-19) (-15.2288 12.1642 1.27661e-18) (-15.5317 11.7541 6.98204e-19) (-15.8237 11.3369 0) (-16.1049 10.9126 -1.29641e-18) (-16.3748 10.4816 4.09576e-21) (-16.6335 10.0441 1.896e-18) (-16.8807 9.6003 0) (-17.1163 9.1506 -6.00262e-19) (-17.34 8.69525 -7.1877e-22) (-17.5519 8.23456 -1.27724e-18) (-17.7518 7.76883 6.79119e-19) (-17.9395 7.29837 0) (-18.115 6.8235 -4.06459e-20) (-18.2781 6.34453 8.32359e-22) (-18.4288 5.86177 9.50172e-19) (-18.567 5.37554 2.95339e-19) (-18.6926 4.88615 -3.36852e-19) (-18.8056 4.39393 3.15851e-19) (-18.9058 3.89918 -1.28759e-22) (-18.9933 3.40221 -6.31643e-19) (-19.0681 2.90331 2.95437e-19) (-19.1302 2.40273 1.57974e-19) (-19.1794 1.90072 1.58128e-19) (-19.2162 1.39749 1.03617e-20) (-19.241 0.893095 1.57069e-22) (-19.2548 0.387271 -7.66632e-20) (-19.2563 -0.120547 -1.98294e-20) (-7.90194 -0.275866 0) (-7.90382 -0.502835 1.06959e-20) (-7.90013 -0.729869 0) (-7.89091 -0.956853 -6.71722e-20) (-7.87615 -1.18366 4.76282e-20) (-7.85585 -1.41017 4.44672e-20) (-7.83002 -1.63625 0) (-7.79867 -1.86177 0) (-7.7618 -2.08659 -9.2023e-20) (-7.71942 -2.31056 -1.4171e-19) (-7.67156 -2.53355 1.50074e-19) (-7.61823 -2.75541 1.9834e-19) (-7.55945 -2.97598 -4.64495e-20) (-7.49524 -3.19511 4.77892e-20) (-7.42562 -3.41264 -1.0674e-19) (-7.35064 -3.6284 5.56479e-20) (-7.27031 -3.84222 2.04262e-19) (-7.18466 -4.05392 5.325e-20) (-7.09373 -4.2633 1.41939e-20) (-6.99753 -4.47017 0) (-6.8961 -4.6743 -4.49032e-19) (-6.78945 -4.87547 0) (-6.67755 -5.0734 -2.23889e-19) (-6.56028 -5.26779 0) (-6.43738 -5.4583 3.62871e-19) (-6.30869 -5.64462 -1.18831e-19) (-6.17325 -5.82667 -3.70793e-19) (-6.02653 -6.00453 -1.30258e-19) (-5.86058 -6.17431 0) (-5.67654 -6.33552 2.52737e-19) (-8.0941 -0.273322 0) (-8.09605 -0.505006 1.24777e-20) (-8.09229 -0.736767 1.21192e-20) (-8.08285 -0.968487 3.66309e-20) (-8.06772 -1.20004 -7.18972e-20) (-8.0469 -1.43128 1.01165e-19) (-8.0204 -1.66209 -2.49025e-20) (-7.98821 -1.89231 0) (-7.95036 -2.12181 1.06288e-19) (-7.90684 -2.35045 0) (-7.85769 -2.57806 -4.81549e-20) (-7.8029 -2.80451 -1.5449e-19) (-7.74251 -3.02962 5.38346e-20) (-7.67654 -3.25325 -5.38346e-20) (-7.605 -3.47522 1.05899e-19) (-7.52793 -3.69535 8.00168e-21) (-7.44535 -3.91348 0) (-7.35728 -4.12941 -2.36573e-19) (-7.26376 -4.34295 -2.23541e-19) (-7.16479 -4.55388 0) (-7.06037 -4.76199 4.75691e-19) (-6.9505 -4.96704 1.21075e-19) (-6.83511 -5.16874 -1.21075e-19) (-6.71403 -5.36677 0) (-6.58694 -5.5608 -3.74917e-19) (-6.45349 -5.75064 -3.86984e-19) (-6.31307 -5.93625 2.47539e-19) (-6.16277 -6.1167 2.4945e-19) (-5.99575 -6.28977 0) (-5.81124 -6.46775 -5.20778e-19) (-8.29048 -0.270439 -6.81263e-21) (-8.29244 -0.506862 -1.26675e-20) (-8.28857 -0.743363 0) (-8.27888 -0.979817 -2.57344e-20) (-8.26336 -1.21609 2.70962e-20) (-8.24202 -1.45205 -5.2135e-20) (-8.21486 -1.68754 -2.73406e-20) (-8.18189 -1.92244 0) (-8.1431 -2.15659 -1.07906e-19) (-8.09853 -2.38984 -5.69123e-20) (-8.04816 -2.62204 5.69122e-20) (-7.99204 -2.85303 1.20158e-19) (-7.93016 -3.08265 1.21496e-19) (-7.86256 -3.31073 -1.22883e-19) (-7.78925 -3.53711 0) (-7.71025 -3.76161 -1.17066e-19) (-7.62559 -3.98405 -1.2731e-19) (-7.53528 -4.20424 4.50099e-20) (-7.43933 -4.42197 -6.25637e-20) (-7.33775 -4.63705 0) (-7.23051 -4.84924 -1.19732e-19) (-7.11758 -5.05832 -1.29941e-19) (-6.99886 -5.26402 -1.33176e-19) (-6.87416 -5.46606 2.67935e-19) (-6.74317 -5.66417 -1.64278e-20) (-6.60555 -5.85832 1.29042e-19) (-6.4608 -6.04852 -1.39157e-19) (-6.30727 -6.23389 1.39158e-19) (-6.14157 -6.41465 -1.49959e-19) (-5.96416 -6.60347 1.32731e-19) (-8.49163 -0.267729 6.91762e-21) (-8.49357 -0.509152 0) (-8.48955 -0.750654 -3.03274e-20) (-8.47958 -0.992102 -3.05471e-20) (-8.46364 -1.23336 2.97262e-20) (-8.44175 -1.47428 2.53824e-22) (-8.4139 -1.71473 3.26089e-20) (-8.38011 -1.95456 0) (-8.34036 -2.19362 0) (-8.29468 -2.43175 0) (-8.24308 -2.6688 0) (-8.18557 -2.90461 -1.2201e-19) (-8.12217 -3.13901 -5.90782e-20) (-8.05289 -3.37184 2.59611e-19) (-7.97776 -3.60292 -2.66363e-19) (-7.89678 -3.83209 2.694e-19) (-7.80999 -4.05915 6.27477e-20) (-7.71738 -4.28392 1.2141e-19) (-7.61896 -4.5062 0) (-7.51472 -4.72579 0) (-7.40464 -4.94248 0) (-7.28866 -5.15606 0) (-7.1667 -5.3663 -2.97301e-19) (-7.03857 -5.57298 0) (-6.90403 -5.77597 4.32456e-19) (-6.76284 -5.9753 -4.55059e-19) (-6.61462 -6.17102 0) (-6.4584 -6.36267 0) (-6.29297 -6.5516 4.49854e-19) (-6.12037 -6.74605 -1.53892e-19) (-8.69807 -0.264944 0) (-8.70002 -0.511519 -1.65217e-20) (-8.69587 -0.758174 6.40568e-20) (-8.68564 -1.00477 6.45079e-20) (-8.66932 -1.25118 0) (-8.64691 -1.49724 0) (-8.61842 -1.74281 4.9525e-21) (-8.58383 -1.98775 3.34133e-20) (-8.54317 -2.2319 -3.34133e-20) (-8.49643 -2.4751 0) (-8.44363 -2.7172 2.10746e-19) (-8.38479 -2.95803 -2.12126e-19) (-8.3199 -3.19743 7.01696e-20) (-8.249 -3.43522 -3.52666e-19) (-8.1721 -3.67125 1.3771e-19) (-8.08921 -3.90532 -1.39259e-19) (-8.00034 -4.13726 0) (-7.9055 -4.36688 1.42478e-19) (-7.80469 -4.594 0) (-7.69791 -4.81842 0) (-7.58513 -5.03995 1.53362e-19) (-7.4663 -5.25839 -4.72499e-19) (-7.34136 -5.47357 3.01943e-19) (-7.21016 -5.68531 0) (-7.07257 -5.89354 0) (-6.92842 -6.09833 3.12054e-19) (-6.77746 -6.2997 0) (-6.61914 -6.49755 0) (-6.45321 -6.69343 0) (-6.28195 -6.89178 0) (-8.91027 -0.262002 0) (-8.91227 -0.513858 1.6783e-20) (-8.90804 -0.7658 -7.02212e-20) (-8.89762 -1.01769 -7.06895e-20) (-8.88097 -1.26938 0) (-8.85811 -1.52073 -3.84404e-20) (-8.82902 -1.77158 -1.05556e-19) (-8.79372 -2.02179 7.55604e-20) (-8.7522 -2.2712 0) (-8.70447 -2.51964 1.53694e-19) (-8.65055 -2.76697 -1.4424e-19) (-8.59043 -3.01301 -1.08558e-20) (-8.52415 -3.2576 2.34536e-19) (-8.4517 -3.50057 -1.01421e-20) (-8.3731 -3.74175 -3.16554e-19) (-8.28837 -3.98095 2.40859e-19) (-8.19751 -4.21801 8.46293e-20) (-8.10054 -4.45274 2.45907e-19) (-7.99746 -4.68496 0) (-7.88826 -4.91448 0) (-7.77293 -5.14113 1.66583e-19) (-7.65143 -5.36473 1.57599e-19) (-7.52372 -5.58512 1.8001e-19) (-7.38969 -5.80217 1.7019e-19) (-7.24928 -6.01583 1.73788e-19) (-7.1024 -6.22616 -1.7379e-19) (-6.94891 -6.43314 0) (-6.78853 -6.63688 3.68521e-19) (-6.62143 -6.83864 0) (-6.44944 -7.04056 0) (-9.12863 -0.258883 4.93243e-21) (-9.13074 -0.516163 -1.9836e-20) (-9.1265 -0.773542 3.70231e-20) (-9.11594 -1.03087 7.74113e-20) (-9.09903 -1.28801 3.90523e-20) (-9.07578 -1.54481 1.57249e-19) (-9.04617 -1.80111 2.99561e-22) (-9.0102 -2.05676 -1.16406e-19) (-8.96789 -2.3116 0) (-8.91924 -2.56548 -1.56156e-19) (-8.86424 -2.81823 0) (-8.80293 -3.06968 1.59004e-19) (-8.73529 -3.31967 -7.17021e-20) (-8.66135 -3.56802 2.45567e-19) (-8.58112 -3.81457 3.39226e-19) (-8.49461 -4.05913 -2.56609e-19) (-8.40184 -4.30154 -2.53013e-19) (-8.3028 -4.54162 -8.10603e-20) (-8.19752 -4.77917 -8.77262e-20) (-8.08597 -5.01404 0) (-7.96816 -5.24605 1.80957e-19) (-7.84407 -5.47504 1.90047e-19) (-7.71366 -5.70086 -5.38642e-19) (-7.57689 -5.92341 0) (-7.4337 -6.14262 1.88506e-19) (-7.28407 -6.35852 2.03232e-19) (-7.12794 -6.57109 0) (-6.96523 -6.78048 -3.74424e-19) (-6.79629 -6.98755 1.96417e-19) (-6.62244 -7.19317 -1.9642e-19) (-9.35348 -0.255539 -5.01247e-21) (-9.35577 -0.518398 2.01579e-20) (-9.35159 -0.781369 4.36695e-20) (-9.34095 -1.04431 -4.07992e-20) (-9.32383 -1.30706 4.41993e-20) (-9.30024 -1.56947 -3.96839e-20) (-9.27016 -1.83139 4.65783e-20) (-9.2336 -2.09267 9.02405e-20) (-9.19055 -2.35314 0) (-9.14101 -2.61263 9.4548e-20) (-9.085 -2.87099 2.73456e-19) (-9.02253 -3.12806 0) (-8.95359 -3.38365 -8.40588e-20) (-8.8782 -3.6376 -9.10416e-20) (-8.79638 -3.88973 -2.7112e-19) (-8.70813 -4.13988 7.98313e-20) (-8.61346 -4.38786 0) (-8.51239 -4.63349 1.96661e-19) (-8.40493 -4.87662 0) (-8.29106 -5.11706 0) (-8.1708 -5.35464 1.96595e-19) (-8.04412 -5.58922 -5.86375e-19) (-7.91102 -5.82065 4.0494e-19) (-7.77147 -6.04883 2.02513e-19) (-7.62546 -6.2737 -2.02515e-19) (-7.47299 -6.49522 -3.98097e-19) (-7.31406 -6.71338 4.29127e-19) (-7.14872 -6.92831 0) (-6.97736 -7.14048 -4.37784e-19) (-6.80091 -7.35017 -4.42484e-19) (-9.58508 -0.251915 0) (-9.5876 -0.520507 0) (-9.58352 -0.78923 -4.43874e-20) (-9.57287 -1.05793 4.80404e-20) (-9.5556 -1.32646 -4.49259e-20) (-9.53172 -1.59467 4.70213e-20) (-9.50122 -1.86239 -1.38088e-19) (-9.4641 -2.12947 6.8469e-21) (-9.42035 -2.39575 -9.6088e-20) (-9.36998 -2.66105 9.83325e-21) (-9.31299 -2.92522 -2.85393e-19) (-9.24939 -3.18809 9.76125e-20) (-9.17918 -3.44949 2.04854e-19) (-9.10237 -3.70924 -2.06578e-19) (-9.01897 -3.96717 -2.08356e-19) (-8.92899 -4.2231 4.06368e-19) (-8.83245 -4.47686 0) (-8.72935 -4.72828 -4.13883e-19) (-8.61971 -4.97718 -2.15954e-19) (-8.50351 -5.22339 2.17956e-19) (-8.38078 -5.46675 0) (-8.2515 -5.7071 -2.22056e-19) (-8.11568 -5.94431 -4.33927e-19) (-7.97331 -6.17827 -4.46093e-19) (-7.8244 -6.4089 2.19832e-19) (-7.66899 -6.63613 -2.30575e-19) (-7.50711 -6.85994 -4.36181e-19) (-7.33888 -7.08039 0) (-7.16467 -7.29769 6.75857e-19) (-6.98513 -7.51184 2.1888e-19) (-9.82358 -0.247952 0) (-9.82639 -0.522434 -1.2553e-20) (-9.82247 -0.797068 6.47983e-20) (-9.81184 -1.0717 -4.88405e-20) (-9.79446 -1.34618 1.03887e-19) (-9.77034 -1.62035 -5.10649e-20) (-9.73946 -1.89404 0) (-9.70182 -2.16711 -1.00212e-19) (-9.65741 -2.43937 -1.08388e-19) (-9.60623 -2.71068 -2.07368e-19) (-9.54829 -2.98085 2.12177e-19) (-9.48358 -3.24972 -1.06494e-19) (-9.41211 -3.51711 -3.23403e-19) (-9.33389 -3.78286 3.26953e-19) (-9.24893 -4.04679 1.01789e-19) (-9.15724 -4.30871 -1.03649e-19) (-9.05882 -4.56846 -3.42836e-19) (-8.95368 -4.82586 4.42493e-19) (-8.84185 -5.08074 1.06579e-19) (-8.72331 -5.33292 -2.21586e-19) (-8.59809 -5.58224 0) (-8.46618 -5.82856 2.32743e-19) (-8.32759 -6.07172 4.62204e-19) (-8.18235 -6.31161 4.68729e-19) (-8.03048 -6.54813 2.50221e-19) (-7.87203 -6.7812 -6.51748e-21) (-7.70707 -7.01076 0) (-7.53575 -7.23681 0) (-7.35837 -7.45939 2.50367e-19) (-7.17542 -7.67837 9.6628e-21) (-10.0691 -0.243596 0) (-10.0722 -0.524125 0) (-10.0685 -0.804831 -5.31268e-20) (-10.0579 -1.08556 -5.74149e-20) (-10.0405 -1.36615 -5.37135e-20) (-10.0162 -1.64645 5.61444e-20) (-9.98494 -1.92629 -5.61442e-20) (-9.9468 -2.20551 1.1755e-19) (-9.90176 -2.48395 2.24734e-19) (-9.84979 -2.76143 -1.14518e-19) (-9.79091 -3.03779 -2.36149e-19) (-9.72511 -3.31285 3.57873e-19) (-9.6524 -3.58644 2.27113e-19) (-9.57278 -3.85838 -4.74331e-19) (-9.48626 -4.1285 0) (-9.39285 -4.39662 1.20874e-19) (-9.29255 -4.66255 3.6526e-19) (-9.18537 -4.92614 -2.53473e-19) (-9.07133 -5.18719 -2.55621e-19) (-8.95044 -5.44554 -2.57812e-19) (-8.8227 -5.70103 0) (-8.68814 -5.95349 1.69337e-20) (-8.54677 -6.20278 0) (-8.39862 -6.44877 0) (-8.24373 -6.69135 -2.59897e-19) (-8.08216 -6.93041 -2.61629e-19) (-7.91401 -7.16586 0) (-7.73942 -7.39765 2.76766e-19) (-7.55866 -7.62571 0) (-7.37208 -7.84988 -2.6442e-19) (-10.3217 -0.238799 0) (-10.3252 -0.525529 0) (-10.3217 -0.812463 3.12226e-20) (-10.3112 -1.09944 1.21148e-19) (-10.2937 -1.38631 6.09854e-20) (-10.2692 -1.67291 3.51218e-22) (-10.2377 -1.95906 3.70388e-22) (-10.199 -2.24461 -1.81265e-19) (-10.1534 -2.5294 0) (-10.1006 -2.81323 -1.3001e-19) (-10.0408 -3.09596 -8.87016e-21) (-9.97397 -3.37739 -2.45826e-19) (-9.90002 -3.65736 1.28616e-19) (-9.81901 -3.93569 3.88457e-19) (-9.73093 -4.21219 -2.6952e-19) (-9.6358 -4.4867 0) (-9.53362 -4.75902 -2.55669e-19) (-9.4244 -5.02899 2.57805e-19) (-9.30816 -5.29642 2.59989e-19) (-9.1849 -5.56114 5.4273e-19) (-9.05464 -5.82298 2.74499e-19) (-8.91741 -6.08178 2.08127e-20) (-8.77323 -6.33739 -2.76868e-19) (-8.62213 -6.58967 0) (-8.46418 -6.83848 2.65499e-19) (-8.29943 -7.08371 -2.8421e-19) (-8.12799 -7.32523 0) (-7.95001 -7.56294 -5.81994e-19) (-7.76568 -7.79671 0) (-7.57532 -8.02638 0) (-10.5815 -0.233517 0) (-10.5853 -0.5266 0) (-10.5821 -0.819917 -3.17631e-20) (-10.5717 -1.11331 -6.3838e-20) (-10.5542 -1.40661 0) (-10.5295 -1.69966 6.70052e-20) (-10.4976 -1.99229 -6.7005e-20) (-10.4586 -2.28434 -1.40155e-19) (-10.4123 -2.57564 1.41005e-19) (-10.3588 -2.866 1.32261e-19) (-10.2981 -3.15527 -5.12168e-21) (-10.2301 -3.44326 1.3828e-19) (-10.1549 -3.72979 1.40244e-19) (-10.0725 -4.01468 -5.62714e-19) (-9.98292 -4.29776 1.32909e-19) (-9.88607 -4.57884 0) (-9.78201 -4.85774 -4.42766e-19) (-9.67075 -5.13428 -1.02561e-20) (-9.5523 -5.40828 1.57181e-19) (-9.42667 -5.67956 -2.85368e-19) (-9.29389 -5.94796 0) (-9.15398 -6.2133 -9.01593e-19) (-9.00697 -6.47542 -2.53599e-21) (-8.85291 -6.73417 9.25355e-19) (-8.69185 -6.98941 -8.50689e-21) (-8.52387 -7.24099 0) (-8.34906 -7.48877 3.23591e-19) (-8.16756 -7.73261 3.057e-19) (-7.97956 -7.97235 0) (-7.78529 -8.20783 0) (-10.8485 -0.227716 9.24987e-21) (-10.8528 -0.527304 0) (-10.8497 -0.827155 0) (-10.8395 -1.12711 0) (-10.8219 -1.427 0) (-10.7971 -1.72666 0) (-10.7649 -2.02593 0) (-10.7253 -2.32463 -1.04376e-20) (-10.6784 -2.6226 -2.97421e-19) (-10.6242 -2.91966 -1.54879e-19) (-10.5626 -3.21563 -4.96784e-21) (-10.4935 -3.51034 -3.07752e-19) (-10.4171 -3.8036 1.52949e-19) (-10.3334 -4.09524 1.4379e-19) (-10.2422 -4.38507 0) (-10.1436 -4.6729 1.56303e-19) (-10.0377 -4.95856 1.47133e-19) (-9.92438 -5.24187 6.33162e-19) (-9.80372 -5.52262 -3.082e-19) (-9.67573 -5.80066 0) (-9.54042 -6.0758 -1.00422e-20) (-9.39782 -6.34787 -9.24586e-21) (-9.24797 -6.61669 0) (-9.09092 -6.88211 -3.21e-19) (-8.92672 -7.14396 -1.0155e-20) (-8.75545 -7.40209 -3.25622e-19) (-8.57721 -7.65634 -3.32151e-19) (-8.39212 -7.90653 3.4153e-19) (-8.20033 -8.15248 3.47497e-19) (-8.00206 -8.39405 -7.08368e-19) (-11.123 -0.221378 6.99593e-22) (-11.1277 -0.527622 0) (-11.1249 -0.834157 0) (-11.1147 -1.14082 0) (-11.0971 -1.44745 -2.73246e-21) (-11.072 -1.75387 4.08578e-22) (-11.0395 -2.05993 8.62821e-20) (-10.9995 -2.36544 -1.13831e-20) (-10.9519 -2.67024 1.56678e-19) (-10.8969 -2.97414 1.57629e-19) (-10.8344 -3.27698 -6.04677e-21) (-10.7643 -3.57856 1.53144e-19) (-10.6866 -3.87872 5.44139e-21) (-10.6014 -4.17726 -1.80016e-19) (-10.5087 -4.47401 -3.49224e-19) (-10.4084 -4.76877 -3.51662e-19) (-10.3006 -5.06136 3.54167e-19) (-10.1852 -5.3516 -3.33184e-19) (-10.0624 -5.63929 3.59374e-19) (-9.93201 -5.92426 0) (-9.79416 -6.20632 6.94783e-19) (-9.64887 -6.48529 2.78017e-21) (-9.49616 -6.761 -3.56596e-19) (-9.33609 -7.03327 0) (-9.16872 -7.30192 7.28505e-19) (-8.99413 -7.5668 1.32473e-20) (-8.81239 -7.82771 -3.68267e-19) (-8.62362 -8.08447 -3.85677e-19) (-8.42797 -8.33688 3.77625e-19) (-8.22563 -8.58481 -1.03535e-20) (-11.4055 -0.214508 -1.02956e-20) (-11.4104 -0.527561 0) (-11.4078 -0.840933 1.49939e-21) (-11.3976 -1.15446 4.30769e-20) (-11.3799 -1.46797 8.67633e-20) (-11.3546 -1.78131 1.74321e-19) (-11.3217 -2.0943 -4.38246e-19) (-11.2811 -2.40676 1.70156e-19) (-11.2329 -2.71853 1.77616e-19) (-11.1771 -3.02943 -3.62235e-19) (-11.1136 -3.33927 0) (-11.0423 -3.64789 1.74253e-19) (-10.9634 -3.95508 -3.63386e-19) (-10.8768 -4.26068 5.36344e-19) (-10.7825 -4.56449 5.53188e-19) (-10.6805 -4.86633 3.57985e-19) (-10.5707 -5.16601 2.56255e-20) (-10.4533 -5.46333 -3.88882e-19) (-10.3282 -5.75812 -3.65836e-19) (-10.1955 -6.05018 0) (-10.0551 -6.33932 3.85362e-19) (-9.90705 -6.62537 1.50609e-20) (-9.75146 -6.90813 0) (-9.58834 -7.18742 0) (-9.41776 -7.46305 1.433e-20) (-9.23978 -7.73485 -3.97505e-19) (-9.05449 -8.00262 -8.20146e-19) (-8.86199 -8.26615 7.84196e-19) (-8.6624 -8.52525 -4.07225e-19) (-8.45592 -8.77976 0) (-11.6965 -0.207143 0) (-11.7016 -0.527171 0) (-11.6991 -0.84754 -9.41248e-20) (-11.6889 -1.16809 0) (-11.6709 -1.48864 -9.48465e-20) (-11.6453 -1.80903 -9.82986e-20) (-11.6119 -2.1291 8.94517e-20) (-11.5708 -2.44866 -1.99474e-19) (-11.5218 -2.76754 2.0053e-19) (-11.4651 -3.08557 -1.36539e-20) (-11.4005 -3.40256 0) (-11.3281 -3.71834 0) (-11.2478 -4.03271 1.91427e-19) (-11.1597 -4.3455 0) (-11.0638 -4.65651 -3.87868e-19) (-10.9599 -4.96556 6.21022e-19) (-10.8482 -5.27246 -5.95825e-19) (-10.7287 -5.57701 3.95962e-19) (-10.6013 -5.87902 0) (-10.4661 -6.17831 0) (-10.3231 -6.47468 8.53085e-19) (-10.1723 -6.76794 -4.04589e-19) (-10.0138 -7.05789 -4.09705e-19) (-9.84759 -7.34434 4.26235e-19) (-9.67374 -7.62711 0) (-9.49232 -7.906 -4.36179e-19) (-9.30341 -8.18079 8.59985e-19) (-9.1071 -8.45128 -2.94732e-20) (-8.9035 -8.71725 0) (-8.69281 -8.97857 0) (-11.9974 -0.199369 0) (-12.0025 -0.526561 2.65487e-20) (-11.9999 -0.854108 4.96349e-20) (-11.9895 -1.18185 -1.07018e-19) (-11.9712 -1.5096 2.03996e-19) (-11.9451 -1.83722 1.01059e-19) (-11.9111 -2.16451 4.09365e-21) (-11.8692 -2.49131 2.0315e-19) (-11.8193 -2.81745 1.4882e-20) (-11.7615 -3.14274 2.05349e-19) (-11.6958 -3.46701 -2.14334e-19) (-11.6221 -3.79008 4.37101e-19) (-11.5403 -4.11175 2.1691e-19) (-11.4506 -4.43185 -2.16911e-19) (-11.3529 -4.75018 2.26853e-19) (-11.2471 -5.06656 -1.97794e-19) (-11.1334 -5.38079 0) (-11.0116 -5.69268 -4.6266e-19) (-10.8819 -6.00204 4.65807e-19) (-10.7441 -6.30866 4.69029e-19) (-10.5984 -6.61237 -4.55716e-19) (-10.4448 -6.91295 -4.57769e-19) (-10.2833 -7.21021 -4.4767e-19) (-10.1139 -7.50395 0) (-9.93666 -7.79397 4.71479e-19) (-9.75172 -8.08006 -4.71483e-19) (-9.5591 -8.36202 -4.78726e-19) (-9.35888 -8.6396 1.92361e-18) (-9.15119 -8.9126 -4.97394e-19) (-8.93621 -9.18089 -4.86238e-19) (-12.3099 -0.191343 -1.44728e-20) (-12.3149 -0.525927 -5.60874e-20) (-12.3119 -0.860869 0) (-12.3011 -1.196 1.09014e-19) (-12.2823 -1.53116 -1.1753e-19) (-12.2554 -1.86618 -3.93585e-21) (-12.2206 -2.20087 -3.39231e-19) (-12.1777 -2.53508 -1.23647e-19) (-12.1268 -2.86862 8.42611e-21) (-12.0677 -3.20133 -2.31619e-19) (-12.0006 -3.53301 2.34156e-19) (-11.9253 -3.86349 -4.61078e-19) (-11.842 -4.19259 2.44771e-19) (-11.7504 -4.52011 -2.46219e-19) (-11.6508 -4.84587 -4.788e-19) (-11.5429 -5.16967 -4.81821e-19) (-11.4269 -5.49133 -2.42926e-19) (-11.3028 -5.81065 9.58757e-19) (-11.1705 -6.12743 -7.19036e-19) (-11.03 -6.44148 -4.77775e-19) (-10.8815 -6.7526 9.96397e-19) (-10.7249 -7.06058 -5.18856e-19) (-10.5602 -7.36522 0) (-10.3874 -7.66633 0) (-10.2068 -7.96368 1.04397e-18) (-10.0182 -8.25708 3.82427e-21) (-9.82169 -8.54628 -5.17716e-19) (-9.61744 -8.83106 -5.06619e-19) (-9.40551 -9.1112 5.10524e-19) (-9.18612 -9.38658 0) (-12.637 -0.183327 1.47458e-20) (-12.6416 -0.525591 6.1376e-20) (-12.638 -0.868202 -6.3793e-20) (-12.6264 -1.211 6.40329e-20) (-12.6067 -1.5538 2.43992e-19) (-12.5789 -1.89645 -8.30629e-21) (-12.5429 -2.23876 -2.50158e-19) (-12.4987 -2.58057 4.98447e-19) (-12.4463 -2.92171 2.61853e-19) (-12.3858 -3.26199 0) (-12.3169 -3.60125 -2.55906e-19) (-12.2398 -3.93929 5.21896e-19) (-12.1545 -4.27594 -2.49388e-19) (-12.0609 -4.611 2.50864e-19) (-11.9589 -4.9443 2.52389e-19) (-11.8487 -5.27562 -1.82991e-20) (-11.7302 -5.6048 -2.65243e-19) (-11.6034 -5.93162 5.40939e-19) (-11.4683 -6.25589 5.54965e-19) (-11.3249 -6.57742 0) (-11.1733 -6.896 1.98098e-20) (-11.0134 -7.21143 1.09865e-18) (-10.8453 -7.5235 2.15582e-20) (-10.6691 -7.83201 0) (-10.4847 -8.13673 2.03149e-20) (-10.2922 -8.43746 -1.12489e-18) (-10.0917 -8.73396 5.64493e-19) (-9.88318 -9.02597 5.72865e-19) (-9.66683 -9.31329 4.29479e-21) (-9.44283 -9.59579 -1.17687e-18) (-12.9833 -0.175726 0) (-12.987 -0.526051 2.41037e-21) (-12.9824 -0.876691 6.50098e-20) (-12.9696 -1.2275 -6.52542e-20) (-12.9486 -1.57829 1.35957e-19) (-12.9193 -1.92888 -4.37478e-21) (-12.8817 -2.27911 0) (-12.8358 -2.6288 -1.32779e-19) (-12.7816 -2.97777 -5.43774e-19) (-12.719 -3.32587 2.76926e-19) (-12.648 -3.6729 0) (-12.5687 -4.01869 1.97912e-20) (-12.4809 -4.36306 2.829e-19) (-12.3848 -4.70581 -2.829e-19) (-12.2802 -5.04677 0) (-12.1672 -5.38573 2.77454e-19) (-12.0457 -5.72251 -2.89749e-19) (-11.9158 -6.05691 8.7964e-21) (-11.7776 -6.38873 -5.65551e-19) (-11.6308 -6.71778 0) (-11.4757 -7.04386 0) (-11.3122 -7.36675 4.12264e-20) (-11.1404 -7.68626 -1.80641e-18) (-10.9602 -8.00216 6.02961e-19) (-10.7718 -8.31425 -6.11467e-19) (-10.5751 -8.6223 -2.40564e-20) (-10.3702 -8.92607 0) (-10.1572 -9.2253 6.24792e-19) (-9.93608 -9.51978 -6.24798e-19) (-9.70718 -9.80939 6.11138e-19) (-13.3551 -0.168954 0) (-13.3574 -0.527999 -7.22758e-20) (-13.3513 -0.887242 -3.70597e-20) (-13.3369 -1.24653 1.47999e-19) (-13.314 -1.60578 7.4717e-20) (-13.2827 -1.96475 -1.48853e-19) (-13.2429 -2.32332 -1.50117e-19) (-13.1947 -2.68128 3.06184e-19) (-13.138 -3.03846 0) (-13.0728 -3.3947 -3.15055e-19) (-12.9991 -3.74981 -3.16615e-19) (-12.9169 -4.10362 2.17776e-20) (-12.8261 -4.45595 0) (-12.7268 -4.80661 0) (-12.6189 -5.15541 0) (-12.5025 -5.50217 -3.14783e-19) (-12.3775 -5.84669 6.42069e-19) (-12.244 -6.18877 3.18658e-19) (-12.1019 -6.52822 -3.18659e-19) (-11.9513 -6.86485 3.33398e-19) (-11.7921 -7.19846 0) (-11.6245 -7.52883 -1.28421e-18) (-11.4483 -7.85577 1.28849e-18) (-11.2637 -8.17905 0) (-11.0707 -8.49847 1.3568e-18) (-10.8693 -8.81378 6.74171e-19) (-10.6595 -9.12476 6.77017e-19) (-10.4415 -9.43114 2.67067e-20) (-10.2152 -9.73269 0) (-9.98092 -10.0293 0) (-13.7621 -0.163661 -1.04235e-20) (-13.7623 -0.532279 -4.18158e-20) (-13.7539 -0.901005 -8.38943e-20) (-13.7371 -1.26963 0) (-13.7116 -1.63794 7.86116e-20) (-13.6776 -2.00592 -1.63091e-19) (-13.6349 -2.37347 0) (-13.5836 -2.74026 1.18971e-20) (-13.5236 -3.10618 0) (-13.4551 -3.47103 -1.22233e-20) (-13.3778 -3.83468 1.00295e-18) (-13.2919 -4.19693 -3.24437e-19) (-13.1973 -4.55762 0) (-13.0941 -4.91654 -1.17004e-20) (-12.9821 -5.27351 -6.94508e-19) (-12.8614 -5.62834 -1.1723e-20) (-12.7321 -5.98083 -6.77995e-19) (-12.594 -6.33079 -3.60227e-19) (-12.4474 -6.67804 0) (-12.292 -7.02238 -7.04528e-19) (-12.128 -7.36361 3.4327e-19) (-11.9554 -7.70152 -3.64646e-19) (-11.7741 -8.0359 -7.14837e-19) (-11.5843 -8.36656 7.24401e-19) (-11.386 -8.69326 -1.45098e-18) (-11.1791 -9.01579 -7.02484e-19) (-10.9637 -9.33389 -7.34351e-19) (-10.7398 -9.6473 -7.41635e-19) (-10.5077 -9.95579 -7.44618e-19) (-10.2673 -10.2592 0) (-14.217 -0.16091 1.06284e-20) (-14.2146 -0.540151 -1.62513e-21) (-14.2032 -0.919413 3.76989e-20) (-14.1829 -1.2985 0) (-14.1539 -1.67714 1.72292e-19) (-14.1164 -2.05523 -1.78868e-19) (-14.0699 -2.43243 -1.86825e-19) (-14.0146 -2.80882 6.67764e-21) (-13.9504 -3.18426 -3.69423e-19) (-13.8775 -3.55849 0) (-13.7957 -3.93142 -7.20706e-19) (-13.705 -4.30286 -1.48918e-20) (-13.6056 -4.67259 0) (-13.4972 -5.04041 3.59063e-19) (-13.38 -5.4061 3.61028e-19) (-13.254 -5.7695 3.63058e-19) (-13.1192 -6.13041 -3.79159e-19) (-12.9755 -6.48865 3.51978e-19) (-12.8231 -6.84403 3.96808e-19) (-12.6618 -7.19634 -2.73832e-20) (-12.4919 -7.54541 1.15109e-18) (-12.3131 -7.89102 -4.00419e-19) (-12.1257 -8.23298 -7.8697e-19) (-11.9296 -8.57108 1.1963e-18) (-11.7247 -8.9051 7.6807e-19) (-11.5113 -9.23482 8.02797e-19) (-11.2892 -9.55999 -1.22031e-18) (-11.0586 -9.88033 1.59772e-18) (-10.8194 -10.1956 -8.13802e-19) (-10.572 -10.5057 0) (-14.7375 -0.161869 0) (-14.7316 -0.553359 0) (-14.7164 -0.944653 9.39336e-20) (-14.6922 -1.33561 0) (-14.6587 -1.72607 3.92913e-19) (-14.6161 -2.1157 -4.00981e-19) (-14.5645 -2.50427 -2.12685e-19) (-14.5042 -2.89179 6.02732e-19) (-14.4348 -3.27796 -2.13545e-19) (-14.3562 -3.66287 0) (-14.2687 -4.04634 4.02789e-19) (-14.1721 -4.42813 4.06237e-19) (-14.0664 -4.80795 8.28158e-19) (-13.9516 -5.18557 -4.0674e-19) (-13.8277 -5.56084 -4.25645e-19) (-13.6949 -5.93359 0) (-13.5532 -6.30363 0) (-13.4024 -6.67077 4.02315e-19) (-13.2428 -7.03481 -4.04677e-19) (-13.0742 -7.39558 4.07105e-19) (-12.8967 -7.75291 8.50863e-19) (-12.7104 -8.10658 -4.37524e-19) (-12.5153 -8.45641 5.4024e-21) (-12.3113 -8.80218 -1.279e-18) (-12.0986 -9.14369 -4.51187e-19) (-11.8771 -9.48071 1.33258e-18) (-11.6468 -9.81299 -4.52698e-19) (-11.4079 -10.1403 0) (-11.1602 -10.4623 -8.96275e-19) (-10.9042 -10.779 8.96285e-19) (-15.3465 -0.165828 0) (-15.3365 -0.57214 0) (-15.3168 -0.978053 0) (-15.2875 -1.38337 0) (-15.2487 -1.78792 2.24469e-19) (-15.2004 -2.19157 -2.32808e-19) (-15.1426 -2.59421 2.09403e-19) (-15.0754 -2.99542 -4.28735e-19) (-14.9991 -3.39492 4.29595e-19) (-14.9138 -3.79257 0) (-14.8191 -4.18806 -6.72266e-19) (-14.7151 -4.58124 1.48568e-20) (-14.6017 -4.97206 1.69343e-20) (-14.479 -5.3605 -9.12286e-19) (-14.347 -5.7464 4.34151e-19) (-14.2058 -6.12955 0) (-14.0554 -6.50971 -4.56e-19) (-13.8959 -6.88666 9.14509e-19) (-13.7273 -7.26026 2.58301e-21) (-13.5496 -7.63036 -4.61095e-19) (-13.3629 -7.99676 9.32984e-19) (-13.1671 -8.35927 -1.41994e-18) (-12.9624 -8.71767 1.88297e-18) (-12.7487 -9.07175 -9.44368e-19) (-12.5261 -9.42131 4.60203e-19) (-12.2946 -9.76612 -9.61246e-19) (-12.0542 -10.106 0) (-11.805 -10.4406 0) (-11.5469 -10.7698 4.737e-19) (-11.2801 -11.0934 -1.49255e-18) (-16.0724 -0.174857 0) (-16.0585 -0.59852 0) (-16.0339 -1.02133 -6.18114e-20) (-15.9993 -1.44308 -1.23936e-19) (-15.9548 -1.86369 -1.14557e-19) (-15.9004 -2.28298 1.05202e-19) (-15.836 -2.70085 -2.39924e-19) (-15.7616 -3.11714 2.29771e-19) (-15.6771 -3.53175 -2.40756e-19) (-15.5828 -3.94425 0) (-15.4789 -4.35442 2.34222e-19) (-15.3655 -4.76211 2.54754e-19) (-15.2428 -5.16726 -5.11701e-19) (-15.1105 -5.5697 9.88865e-19) (-14.9685 -5.9692 -1.01269e-18) (-14.8169 -6.36557 1.01516e-18) (-14.6557 -6.75864 0) (-14.4849 -7.14829 0) (-14.3048 -7.53431 5.26785e-19) (-14.1153 -7.91643 5.296e-19) (-13.9166 -8.29441 0) (-13.7086 -8.66802 -1.56671e-18) (-13.4915 -9.03707 -6.14298e-21) (-13.2652 -9.40135 1.03739e-18) (-13.0298 -9.76067 0) (-12.7854 -10.1148 1.01658e-18) (-12.532 -10.4637 -1.0567e-18) (-12.2695 -10.8069 5.15197e-19) (-11.9981 -11.1444 -5.52234e-19) (-11.7178 -11.4755 -4.06096e-20) (-16.9455 -0.234452 0) (-16.9254 -0.679601 0) (-16.8944 -1.12366 -5.1814e-21) (-16.853 -1.56617 1.26441e-19) (-16.8009 -2.0072 2.64583e-19) (-16.7385 -2.44649 -1.37419e-19) (-16.6657 -2.88395 0) (-16.5826 -3.31947 2.55983e-19) (-16.4891 -3.75297 -5.36167e-19) (-16.385 -4.18425 2.76563e-19) (-16.2704 -4.61306 8.17711e-19) (-16.1455 -5.03916 2.07238e-20) (-16.0105 -5.46225 2.40297e-19) (-15.8653 -5.88203 2.26995e-20) (-15.7101 -6.29831 -2.02713e-20) (-15.5449 -6.71092 -5.29335e-19) (-15.3698 -7.11971 5.5484e-19) (-15.1848 -7.52446 -5.54843e-19) (-14.9898 -7.92488 -5.37436e-19) (-14.7851 -8.32073 -5.40309e-19) (-14.5707 -8.71182 0) (-14.3467 -9.09796 1.68525e-18) (-14.1134 -9.47898 -1.13895e-18) (-13.8707 -9.85469 -1.15188e-18) (-13.6186 -10.2249 1.15189e-18) (-13.3574 -10.5895 -4.21452e-20) (-13.087 -10.9482 1.17253e-18) (-12.8074 -11.3008 -6.06322e-19) (-12.5183 -11.6469 -1.18687e-18) (-12.2194 -11.9862 1.76022e-18) (-18.0088 -0.0991886 0) (-17.9904 -0.571869 -3.86944e-20) (-17.9601 -1.04344 -7.88578e-21) (-17.9183 -1.51317 -1.55315e-19) (-17.8651 -1.98139 2.90348e-19) (-17.8004 -2.44779 -2.90347e-19) (-17.7244 -2.91224 3.12798e-19) (-17.6371 -3.37443 0) (-17.5385 -3.83406 5.87566e-19) (-17.4286 -4.29092 -8.71764e-19) (-17.3076 -4.74484 -2.85234e-19) (-17.1754 -5.19559 3.13404e-20) (-17.0322 -5.64292 8.83772e-19) (-16.878 -6.08656 2.45689e-21) (-16.713 -6.52626 4.37624e-20) (-16.5372 -6.96176 0) (-16.3508 -7.3928 -4.1089e-20) (-16.1538 -7.8191 -6.06783e-19) (-15.9463 -8.24046 0) (-15.7285 -8.65668 -6.56649e-19) (-15.5005 -9.06756 0) (-15.2624 -9.47288 6.62997e-19) (-15.0143 -9.87247 1.25096e-18) (-14.7564 -10.2662 -1.25097e-18) (-14.4889 -10.6537 0) (-14.2117 -11.035 -1.33545e-18) (-13.9251 -11.41 1.95285e-18) (-13.6291 -11.7787 6.84606e-19) (-13.3231 -12.1415 0) (-13.0054 -12.4982 -6.92808e-19) (-19.2407 -0.629859 -5.96512e-20) (-19.2095 -1.13194 -2.62075e-21) (-19.1666 -1.63403 -8.49705e-20) (-19.1112 -2.13388 -1.04393e-20) (-19.0434 -2.63209 1.59824e-19) (-18.9631 -3.12819 -1.60323e-19) (-18.8703 -3.62197 -3.01126e-19) (-18.7651 -4.11311 -4.37681e-22) (-18.6473 -4.60129 -6.47555e-19) (-18.5172 -5.0862 9.71143e-19) (-18.3747 -5.56754 -6.51071e-19) (-18.2201 -6.045 -3.07952e-19) (-18.0533 -6.51829 1.63584e-18) (-17.8745 -6.9871 2.35808e-21) (-17.6839 -7.45115 -1.27638e-18) (-17.4815 -7.91013 0) (-17.2674 -8.36375 6.2505e-19) (-17.0418 -8.81171 -1.33383e-18) (-16.8049 -9.25369 1.33801e-18) (-16.5567 -9.68944 6.32144e-19) (-16.2974 -10.1187 0) (-16.0273 -10.5412 7.22459e-19) (-15.7464 -10.9567 6.53293e-21) (-15.4549 -11.365 -1.36727e-18) (-15.1531 -11.7659 0) (-14.8409 -12.1594 2.03985e-18) (-14.5188 -12.5456 -1.34359e-18) (-14.1875 -12.9253 -6.50899e-19) (-13.8473 -13.3 -6.99907e-19) (-13.4961 -13.669 -4.12673e-20) (-13.1284 -14.0264 1.38168e-18) (-12.6759 -12.8464 -6.96316e-19) (-11.9116 -12.318 1.77842e-18) (-11.4287 -11.7995 -4.07333e-20) (-11.0048 -11.411 -1.509e-18) (-10.6398 -11.0902 9.08622e-19) (-10.3164 -10.8105 0) (-10.019 -10.5575 0) (-9.73881 -10.3208 0) (-9.47058 -10.0939 6.15754e-19) (-9.2113 -9.87331 -1.19023e-18) (-8.95937 -9.65702 0) (-8.71407 -9.44431 -4.94026e-19) (-8.47517 -9.23508 0) (-8.24269 -9.02954 0) (-8.01676 -8.82806 -1.3688e-20) (-7.79748 -8.63105 -7.17791e-19) (-7.58494 -8.43883 0) (-7.37912 -8.25169 0) (-7.17995 -8.06981 -2.67115e-19) (-6.98727 -7.89328 7.08805e-21) (-6.80084 -7.72213 2.18876e-19) (-6.62034 -7.55634 -4.47442e-19) (-6.44538 -7.39591 -2.01204e-19) (-6.27558 -7.24089 0) (-6.11055 -7.09146 0) (-5.9493 -6.94852 -1.58722e-19) (-5.78937 -6.81452 1.34729e-19) (-5.63225 -6.69174 -5.37525e-19) (-5.49919 -6.58137 2.69543e-19) (-12.7565 -14.3636 -2.14728e-18) (-12.34 -13.1827 0) (-11.5959 -12.6418 -1.20148e-18) (-11.1311 -12.1164 -5.69726e-19) (-10.7213 -11.7218 4.76821e-19) (-10.3672 -11.3951 -9.08611e-19) (-10.0526 -11.1093 -8.36834e-19) (-9.76262 -10.85 -7.66144e-19) (-9.48876 -10.6067 0) (-9.22621 -10.373 -6.43611e-19) (-8.97219 -10.1454 -4.49639e-21) (-8.72525 -9.92212 5.22678e-19) (-8.48477 -9.70246 -5.17083e-19) (-8.25059 -9.4864 0) (-8.02275 -9.27422 -4.21072e-19) (-7.80139 -9.06631 3.84196e-19) (-7.58664 -8.86312 3.53738e-19) (-7.37856 -8.665 0) (-7.17716 -8.47225 0) (-6.98235 -8.28507 0) (-6.79398 -8.10355 2.55592e-19) (-6.61183 -7.92775 6.95894e-19) (-6.43563 -7.75765 -4.52536e-19) (-6.26511 -7.59324 2.01202e-19) (-6.1001 -7.43455 0) (-5.94053 -7.28179 0) (-5.78599 -7.13598 4.69041e-19) (-5.63594 -6.99922 -1.58983e-19) (-5.49664 -6.87024 0) (-5.38708 -6.74191 0) (-12.3759 -14.6937 -6.84438e-19) (-11.9958 -13.5103 7.03553e-19) (-11.2717 -12.9575 -6.3203e-19) (-10.8253 -12.4263 5.25316e-19) (-10.4296 -12.0258 0) (-10.0865 -11.6936 0) (-9.78079 -11.402 1.64884e-18) (-9.49823 -11.1365 -7.73909e-19) (-9.23085 -10.8867 2.23359e-20) (-8.97415 -10.6463 6.43603e-19) (-8.72557 -10.4118 5.90481e-19) (-8.48382 -10.1816 -5.26833e-19) (-8.24836 -9.95509 2.0013e-18) (-8.0191 -9.73228 -3.02006e-20) (-7.79612 -9.51352 8.18129e-19) (-7.57956 -9.29926 -4.02365e-19) (-7.36956 -9.08996 3.6018e-19) (-7.16618 -8.88602 3.20298e-19) (-6.96943 -8.68772 -6.10293e-19) (-6.77922 -8.49528 2.9048e-19) (-6.59543 -8.3088 0) (-6.41783 -8.12833 0) (-6.24618 -7.95384 0) (-6.08024 -7.78534 -3.9768e-19) (-5.91986 -7.6228 3.9141e-19) (-5.76497 -7.46636 0) (-5.61533 -7.31684 0) (-5.47125 -7.17568 1.51737e-19) (-5.33998 -7.04061 2.72473e-19) (-5.23731 -6.90356 -1.43928e-19) (-11.9883 -15.0134 3.33079e-20) (-11.6444 -13.8285 2.04044e-18) (-10.9399 -13.2649 1.21617e-18) (-10.5118 -12.7288 -1.11218e-18) (-10.1301 -12.323 0) (-9.79784 -11.9855 -4.80764e-19) (-9.50108 -11.6884 -1.28681e-18) (-9.22606 -11.4168 -7.77267e-19) (-8.96528 -11.1607 7.07136e-19) (-8.71458 -10.9137 0) (-8.47162 -10.6724 5.99619e-19) (-8.23524 -10.4353 -5.50676e-19) (-8.00502 -10.202 -5.02004e-19) (-7.7809 -9.97252 9.143e-19) (-7.56298 -9.74726 -8.65531e-19) (-7.35143 -9.52673 -3.9441e-19) (-7.14638 -9.31141 -3.47379e-19) (-6.94791 -9.10169 3.44618e-19) (-6.75602 -8.8979 0) (-6.57063 -8.70022 0) (-6.39162 -8.50875 0) (-6.21879 -8.32352 -4.70516e-19) (-6.05195 -8.14448 4.62906e-19) (-5.89088 -7.97154 0) (-5.73548 -7.80463 0) (-5.58574 -7.64376 0) (-5.44147 -7.48947 0) (-5.30303 -7.34272 -1.51735e-19) (-5.17699 -7.20065 2.76608e-19) (-5.07657 -7.05582 -4.24689e-19) (-11.593 -15.3237 2.13199e-18) (-11.2852 -14.1381 -1.39691e-18) (-10.6004 -13.5643 -4.30047e-20) (-10.1905 -13.0239 1.07102e-18) (-9.8228 -12.6131 -1.02e-18) (-9.50142 -12.2707 1.40983e-18) (-9.2136 -11.9682 8.48713e-19) (-8.94621 -11.6908 -7.60265e-19) (-8.69216 -11.4284 7.14363e-19) (-8.44761 -11.1748 -2.04434e-20) (-8.21044 -10.9269 -1.20387e-18) (-7.97964 -10.683 -4.36107e-21) (-7.75484 -10.443 -5.10172e-19) (-7.53606 -10.2069 -4.65393e-19) (-7.32341 -9.97523 -4.31953e-19) (-7.11707 -9.7485 1.04989e-20) (-6.91717 -9.52722 -3.5301e-19) (-6.7238 -9.31181 0) (-6.53694 -9.10257 -3.12273e-19) (-6.35653 -8.89969 -2.88427e-19) (-6.18244 -8.70326 -9.31773e-21) (-6.01449 -8.51326 -2.53037e-19) (-5.85248 -8.32961 -4.40238e-19) (-5.6962 -8.15218 2.2202e-19) (-5.54553 -7.98078 -1.95637e-19) (-5.40043 -7.81533 3.49917e-19) (-5.26069 -7.65615 -5.12682e-19) (-5.12656 -7.50391 1.45294e-19) (-5.00412 -7.35577 -4.41811e-19) (-4.90502 -7.20507 -1.41959e-19) (-11.1901 -15.6239 0) (-10.9185 -14.4388 0) (-10.2534 -13.8554 1.23898e-18) (-9.86173 -13.3114 0) (-9.50788 -12.8961 4.95316e-19) (-9.19735 -12.549 -4.85611e-19) (-8.91852 -12.2413 8.2962e-19) (-8.65883 -11.9582 -1.57949e-18) (-8.41163 -11.6897 1.46328e-18) (-8.17338 -11.4296 -6.58287e-19) (-7.94218 -11.175 1.70155e-20) (-7.71713 -10.9245 1.13139e-18) (-7.49796 -10.6778 5.10167e-19) (-7.28471 -10.4352 0) (-7.07753 -10.1972 1.15943e-20) (-6.87659 -9.96438 8.00273e-19) (-6.68203 -9.73724 -1.38241e-20) (-6.49392 -9.5162 -1.18971e-20) (-6.31226 -9.30159 2.92626e-19) (-6.13697 -9.09357 -2.92e-19) (-5.96793 -8.89221 2.73759e-19) (-5.80495 -8.69747 2.49174e-19) (-5.64782 -8.50923 -2.30653e-19) (-5.49635 -8.32729 2.11186e-19) (-5.35038 -8.15143 1.95635e-19) (-5.2098 -7.98144 0) (-5.07433 -7.81753 4.96818e-19) (-4.94407 -7.66016 -2.04671e-20) (-4.82464 -7.50663 -4.39555e-19) (-4.72651 -7.3512 4.35968e-19) (-10.7797 -15.9139 -1.47077e-18) (-10.5443 -14.7305 -1.35725e-18) (-9.89915 -14.1383 -1.23897e-18) (-9.52549 -13.5911 1.1343e-18) (-9.18544 -13.1717 -1.0355e-18) (-8.88577 -12.8201 -1.40335e-18) (-8.61596 -12.5075 1.31442e-18) (-8.36405 -12.2188 7.88609e-19) (-8.12381 -11.9442 0) (-7.89202 -11.6778 6.68316e-19) (-7.66695 -11.4166 0) (-7.44784 -11.1595 0) (-7.23449 -10.9063 0) (-7.02697 -10.6573 4.77115e-19) (-6.82545 -10.413 0) (-6.6301 -10.1742 0) (-6.44105 -9.94127 -3.60472e-19) (-6.25837 -9.71471 1.04042e-18) (-6.08204 -9.49481 0) (-5.912 -9.28174 0) (-5.7481 -9.07554 5.32069e-19) (-5.59015 -8.87614 -5.07596e-19) (-5.43794 -8.68338 2.30651e-19) (-5.29124 -8.49704 0) (-5.14987 -8.31682 2.00296e-19) (-5.01368 -8.14247 0) (-4.88229 -7.97408 0) (-4.75572 -7.81199 3.18013e-19) (-4.63921 -7.65371 0) (-4.54218 -7.49426 -2.79034e-19) (-10.362 -16.1934 -8.13588e-21) (-10.1627 -15.0131 1.35724e-18) (-9.53764 -14.4127 -1.25474e-18) (-9.18194 -13.8628 7.55554e-21) (-8.85563 -13.4398 2.07808e-18) (-8.5668 -13.084 -6.65076e-21) (-8.30604 -12.7665 -8.67005e-19) (-8.062 -12.4724 -8.00171e-19) (-7.82885 -12.1919 1.4413e-18) (-7.60366 -11.9192 -2.01184e-18) (-7.3849 -11.6515 1.88334e-20) (-7.17192 -11.3879 0) (-6.96458 -11.1282 -5.0431e-19) (-6.76298 -10.8729 -4.63007e-19) (-6.5673 -10.6225 0) (-6.37771 -10.3778 -4.08482e-19) (-6.19435 -10.1392 0) (-6.01725 -9.9072 3.21623e-21) (-5.8464 -9.68212 -3.21413e-19) (-5.68172 -9.4641 0) (-5.52306 -9.25316 5.40385e-19) (-5.37022 -9.04921 -5.0689e-19) (-5.22298 -8.85206 4.77533e-19) (-5.08109 -8.66146 -6.40488e-19) (-4.94433 -8.47706 2.15048e-19) (-4.81251 -8.29857 3.63031e-19) (-4.68519 -8.126 -3.57451e-19) (-4.56233 -7.95957 -1.60002e-19) (-4.44881 -7.79698 -1.5065e-19) (-4.35311 -7.63399 2.82683e-19) (-9.93735 -16.4623 7.78257e-19) (-9.77401 -15.2863 7.27786e-19) (-9.16905 -14.6784 1.86173e-18) (-8.83121 -14.1265 -1.7368e-18) (-8.51857 -13.7001 -1.58666e-18) (-8.24057 -13.3403 -5.02465e-19) (-7.98891 -13.0182 -4.55619e-19) (-7.75282 -12.7188 -4.21547e-19) (-7.52688 -12.4324 -1.44661e-18) (-7.30845 -12.1535 4.49808e-20) (-7.09618 -11.8795 1.23847e-18) (-6.88951 -11.6095 -5.90006e-19) (-6.68837 -11.3434 -5.26919e-19) (-6.49288 -11.0819 -4.72143e-19) (-6.30322 -10.8255 1.28728e-20) (-6.11958 -10.5749 -3.58102e-21) (-5.94205 -10.3308 -1.31101e-20) (-5.77069 -10.0935 -1.04774e-18) (-5.60545 -9.86339 1.6842e-20) (-5.44625 -9.64054 1.82777e-20) (-5.29293 -9.425 2.7833e-19) (-5.14529 -9.21663 -2.63832e-19) (-5.00308 -9.01525 -7.04202e-19) (-4.86604 -8.82054 2.2405e-19) (-4.73394 -8.63216 1.90947e-19) (-4.60653 -8.44975 -5.79934e-19) (-4.48334 -8.27327 0) (-4.3643 -8.10281 0) (-4.25395 -7.93628 1.50649e-19) (-4.15985 -7.77006 0) (-9.50586 -16.7203 0) (-9.37832 -15.5499 0) (-8.79354 -14.9353 0) (-8.47345 -14.3818 0) (-8.17441 -13.9525 1.04974e-18) (-7.90723 -13.589 9.60412e-19) (-7.66471 -13.2624 1.30641e-18) (-7.43665 -12.9577 3.87309e-19) (-7.21806 -12.6656 0) (-7.00654 -12.3806 0) (-6.80093 -12.1003 1.73508e-20) (-6.60076 -11.824 1.15168e-18) (-6.40601 -11.5517 -5.32556e-19) (-6.21681 -11.284 9.88404e-19) (-6.03337 -11.0217 4.469e-19) (-5.85583 -10.7655 8.13385e-19) (-5.68431 -10.516 -1.40998e-20) (-5.51883 -10.2735 0) (-5.35934 -10.0385 3.24487e-19) (-5.20575 -9.81097 0) (-5.05788 -9.59095 0) (-4.91552 -9.37833 0) (-4.77843 -9.17286 2.38294e-19) (-4.64632 -8.97423 2.20931e-19) (-4.51895 -8.78206 2.04943e-19) (-4.39604 -8.59596 1.90205e-19) (-4.27711 -8.41579 0) (-4.16203 -8.24158 -3.2095e-19) (-4.05503 -8.0714 6.14783e-19) (-3.96283 -7.90216 -1.8846e-20) (-9.06782 -16.9672 7.08903e-19) (-8.97584 -15.8039 -7.36383e-19) (-8.41128 -15.1831 -6.14983e-19) (-8.10881 -14.6286 6.02794e-19) (-7.82329 -14.1967 -5.32123e-19) (-7.56692 -13.8297 4.69361e-19) (-7.33358 -13.4987 -3.02099e-20) (-7.11366 -13.189 -8.1602e-19) (-6.90253 -12.8912 3.86755e-19) (-6.69809 -12.6002 0) (-6.49931 -12.3138 0) (-6.30582 -12.0312 -5.61503e-19) (-6.11765 -11.7528 5.51225e-19) (-5.93494 -11.4792 0) (-5.75788 -11.2111 0) (-5.58663 -10.9494 0) (-5.42127 -10.6946 0) (-5.26182 -10.4471 -3.45451e-19) (-5.10822 -10.2073 6.59029e-19) (-4.96036 -9.97525 -3.14089e-19) (-4.81805 -9.75093 -2.73771e-19) (-4.68109 -9.5342 2.69286e-19) (-4.54921 -9.32482 0) (-4.42213 -9.12244 0) (-4.29959 -8.92666 0) (-4.18129 -8.73706 0) (-4.06674 -8.55344 0) (-3.95579 -8.37571 0) (-3.85236 -8.2021 0) (-3.76233 -8.02999 0) (-8.62352 -17.203 2.14263e-21) (-8.56679 -16.0479 0) (-8.02243 -15.4218 -6.19032e-19) (-7.73744 -14.8668 6.06762e-19) (-7.46536 -14.4326 -3.66941e-21) (-7.2198 -14.0622 -4.72694e-19) (-6.99569 -13.7271 4.63502e-19) (-6.78398 -13.4124 0) (-6.58046 -13.1091 -3.7792e-19) (-6.38325 -12.8122 -6.69492e-19) (-6.19148 -12.5197 6.56961e-19) (-6.00487 -12.2311 -8.59201e-19) (-5.82346 -11.9467 5.5561e-19) (-5.64742 -11.6672 0) (-5.47693 -11.3935 -4.42595e-19) (-5.31214 -11.1264 4.34778e-19) (-5.1531 -10.8665 -3.77225e-19) (-4.99984 -10.6141 1.90267e-19) (-4.85226 -10.3697 3.22526e-19) (-4.71025 -10.1333 -3.17107e-19) (-4.57363 -9.90479 1.33468e-19) (-4.44217 -9.68413 -2.72036e-19) (-4.31561 -9.471 0) (-4.19367 -9.26505 -1.14172e-19) (-4.07607 -9.06585 0) (-3.9625 -8.87294 0) (-3.85247 -8.68605 0) (-3.74581 -8.50501 -8.51398e-20) (-3.64614 -8.32817 -3.06467e-19) (-3.55857 -8.15331 6.15594e-19) (-8.17321 -17.4274 -1.51673e-18) (-8.15137 -16.2818 -7.04312e-19) (-7.62719 -15.651 -6.47853e-19) (-7.35952 -15.096 0) (-7.1008 -14.6599 1.07526e-18) (-6.86603 -14.2864 4.76047e-19) (-6.65119 -13.9472 4.21951e-19) (-6.44781 -13.6277 -4.27847e-19) (-6.25202 -13.319 3.77918e-19) (-6.06221 -13.0163 1.23236e-20) (-5.87763 -12.7179 6.52287e-19) (-5.69808 -12.4233 1.15921e-18) (-5.52362 -12.133 -5.60015e-19) (-5.35444 -11.8479 4.83994e-19) (-5.1907 -11.5687 -4.75341e-19) (-5.03253 -11.2964 -4.12021e-19) (-4.87998 -11.0314 7.85459e-19) (-4.73304 -10.7744 -1.15051e-20) (-4.59163 -10.5255 3.25611e-19) (-4.45561 -10.2849 -3.2014e-19) (-4.32479 -10.0524 5.67004e-19) (-4.19895 -9.82799 -5.33853e-19) (-4.07783 -9.61128 2.54861e-19) (-3.96113 -9.40193 -1.0897e-19) (-3.84859 -9.19947 3.26845e-19) (-3.73987 -9.00343 1.92633e-19) (-3.63449 -8.81346 1.68551e-19) (-3.53228 -8.6293 6.57115e-20) (-3.43656 -8.44941 -3.28361e-19) (-3.3517 -8.27189 7.86101e-20) (-7.71718 -17.6402 2.24482e-18) (-7.72982 -16.5054 -4.52974e-20) (-7.22575 -15.8707 6.4785e-19) (-6.97523 -15.3162 0) (-6.72977 -14.8784 -5.39476e-19) (-6.50578 -14.5021 0) (-6.30026 -14.159 -4.52479e-19) (-6.1053 -13.8347 -8.20931e-19) (-5.91739 -13.5207 7.78852e-19) (-5.73514 -13.2124 -3.49615e-19) (-5.55794 -12.9081 -3.21306e-19) (-5.38563 -12.6077 -2.95525e-19) (-5.21832 -12.3117 0) (-5.05617 -12.021 -7.40677e-19) (-4.89935 -11.7365 2.91117e-20) (-4.74798 -11.4591 4.42213e-19) (-4.60207 -11.1894 1.85308e-19) (-4.46161 -10.9278 -5.59531e-19) (-4.32651 -10.6747 -3.2871e-19) (-4.1966 -10.43 4.70158e-19) (-4.07171 -10.1937 -4.43937e-19) (-3.95161 -9.96566 0) (-3.83603 -9.74554 0) (-3.72469 -9.53295 -3.42314e-19) (-3.61732 -9.3274 1.14848e-19) (-3.51358 -9.12839 0) (-3.41298 -8.93551 8.7535e-20) (-3.31537 -8.7484 -1.78566e-19) (-3.22376 -8.56562 0) (-3.14185 -8.38555 1.0428e-21) (-7.25572 -17.8413 0) (-7.30237 -16.7186 0) (-6.81831 -16.0806 -6.31357e-19) (-6.58476 -15.527 1.21711e-18) (-6.35246 -15.088 0) (-6.13923 -14.7089 0) (-5.94308 -14.3621 4.42555e-19) (-5.75664 -14.0333 -1.61248e-20) (-5.57676 -13.714 -3.83518e-19) (-5.40223 -13.4002 3.42417e-19) (-5.23258 -13.0903 -2.11585e-20) (-5.06771 -12.7842 -5.98762e-19) (-4.90773 -12.4826 -2.49295e-19) (-4.75281 -12.1865 7.7675e-19) (-4.60309 -11.8969 4.53971e-19) (-4.45867 -11.6146 -4.45952e-19) (-4.31957 -11.3402 1.98735e-19) (-4.18574 -11.0743 0) (-4.05707 -10.817 0) (-3.93341 -10.5684 1.57489e-19) (-3.81457 -10.3285 -1.37638e-19) (-3.70032 -10.097 5.44854e-19) (-3.5904 -9.87364 1.12325e-19) (-3.48453 -9.65797 -3.53073e-19) (-3.38243 -9.4495 3.34183e-19) (-3.28378 -9.24768 -1.97236e-19) (-3.1881 -9.05205 3.82899e-19) (-3.09522 -8.86216 -1.70944e-19) (-3.00788 -8.67665 9.05361e-21) (-2.92915 -8.4941 8.52525e-20) (-6.78911 -18.0306 -1.5039e-18) (-6.86925 -16.9212 4.09314e-20) (-6.40509 -16.2806 -2.50103e-20) (-6.18829 -15.7284 -1.22118e-18) (-5.96905 -15.2883 5.30772e-19) (-5.76656 -14.9068 -5.20372e-19) (-5.57984 -14.5564 4.4572e-19) (-5.40203 -14.2231 -8.6107e-19) (-5.23031 -13.8988 0) (-5.06368 -13.5796 0) (-4.90177 -13.2641 3.17261e-19) (-4.74452 -12.9524 -6.03396e-19) (-4.59205 -12.6454 2.86663e-19) (-4.44454 -12.3441 -4.96056e-19) (-4.3021 -12.0495 7.08053e-19) (-4.1648 -11.7625 -4.49702e-19) (-4.03266 -11.4837 0) (-3.9056 -11.2136 1.74615e-19) (-3.7835 -10.9523 -3.55548e-19) (-3.66622 -10.7001 0) (-3.55355 -10.4567 1.40493e-19) (-3.44526 -10.2219 -2.83185e-19) (-3.34111 -9.99544 -3.75144e-19) (-3.24082 -9.77685 4.74855e-19) (-3.1441 -9.56562 -4.47536e-19) (-3.05065 -9.36115 1.99563e-19) (-2.96 -9.16293 -3.87454e-19) (-2.87198 -8.97042 0) (-2.78905 -8.78233 1.614e-19) (-2.7137 -8.5974 -1.67035e-19) (-6.31765 -18.208 -4.42249e-21) (-6.43072 -17.113 -4.50344e-21) (-5.9863 -16.4704 2.08312e-20) (-5.78603 -15.9202 1.21107e-18) (-5.57975 -15.4793 -1.12696e-18) (-5.38799 -15.0955 -5.07793e-19) (-5.21074 -14.7417 4.48893e-19) (-5.04166 -14.4041 -1.62946e-20) (-4.87825 -14.0748 0) (-4.71969 -13.7503 -3.60145e-19) (-4.56569 -13.4294 3.19678e-19) (-4.41625 -13.1124 -3.1376e-19) (-4.27149 -12.8001 -2.80747e-19) (-4.13156 -12.4938 0) (-3.99657 -12.1944 6.98536e-19) (-3.86657 -11.9028 -2.3282e-19) (-3.74153 -11.6197 1.9038e-19) (-3.62138 -11.3456 -7.5423e-19) (-3.50599 -11.0806 5.22046e-19) (-3.39521 -10.8248 -6.45814e-19) (-3.28882 -10.5781 4.48667e-19) (-3.18661 -10.3402 -2.86003e-19) (-3.08833 -10.1108 -1.29634e-19) (-2.99371 -9.88949 3.53685e-19) (-2.90248 -9.67564 -1.38152e-20) (-2.81433 -9.46868 -5.19788e-19) (-2.72881 -9.26801 3.85697e-19) (-2.64576 -9.07305 -1.85186e-19) (-2.56737 -8.88253 -8.44903e-20) (-2.49562 -8.69532 -2.42578e-19) (-5.84163 -18.3732 1.17038e-18) (-5.98701 -17.2939 1.07344e-18) (-5.56216 -16.65 2.99594e-19) (-5.37819 -16.102 -6.31122e-19) (-5.18474 -15.6607 1.63157e-20) (-5.0037 -15.2748 1.03535e-18) (-4.83598 -14.9177 0) (-4.67574 -14.5759 0) (-4.52079 -14.2419 0) (-4.37047 -13.9122 3.60144e-19) (-4.22457 -13.5861 -3.22099e-19) (-4.08313 -13.2638 3.16135e-19) (-3.94626 -12.9465 2.80746e-19) (-3.8141 -12.6352 2.52073e-19) (-3.68672 -12.3312 -4.8029e-19) (-3.56416 -12.0353 7.97289e-21) (-3.44638 -11.7482 2.03986e-19) (-3.33328 -11.4702 1.88757e-19) (-3.22473 -11.2016 1.74814e-19) (-3.12056 -10.9425 3.16414e-19) (-3.02057 -10.6926 -4.54493e-19) (-2.92454 -10.4518 2.88829e-19) (-2.83224 -10.2197 -1.23813e-19) (-2.74339 -9.99573 -1.06821e-19) (-2.65774 -9.77943 3.44098e-19) (-2.57499 -9.57013 1.04352e-19) (-2.4947 -9.36718 -9.31147e-20) (-2.41671 -9.16992 1.87415e-19) (-2.34298 -8.97714 8.44901e-20) (-2.27501 -8.78774 2.44736e-19) (-5.36136 -18.5262 -3.6726e-19) (-5.5384 -17.4638 3.26267e-20) (-5.1329 -16.8192 2.24287e-20) (-4.96499 -16.2739 3.17622e-19) (-4.78426 -15.8324 2.01798e-20) (-4.61391 -15.4446 5.12794e-19) (-4.45577 -15.0843 -1.48033e-20) (-4.3045 -14.7384 -4.17803e-19) (-4.15814 -14.3997 2.60856e-20) (-4.01623 -14.0651 2.37407e-20) (-3.87863 -13.7338 6.8225e-19) (-3.74537 -13.4065 -6.08257e-19) (-3.61657 -13.0843 5.7848e-19) (-3.49234 -12.7684 0) (-3.37275 -12.46 2.34642e-19) (-3.25779 -12.1599 2.10722e-19) (-3.14741 -11.8689 -4.20597e-19) (-3.04149 -11.5873 1.92104e-19) (-2.9399 -11.3153 -3.44371e-19) (-2.84247 -11.053 5.03669e-19) (-2.74898 -10.8002 -1.53227e-19) (-2.65924 -10.5566 1.42333e-19) (-2.573 -10.3219 0) (-2.49002 -10.0955 2.38248e-19) (-2.41003 -9.87688 -1.26992e-20) (-2.33276 -9.6654 -3.25071e-19) (-2.25779 -9.46032 -1.92571e-19) (-2.18497 -9.26093 1.89648e-19) (-2.116 -9.06603 -2.54292e-19) (-2.05199 -8.87456 9.43455e-21) (-4.87715 -18.6669 -7.86938e-19) (-5.08512 -17.6224 -3.55741e-19) (-4.69874 -16.9777 1.02635e-18) (-4.54664 -16.4355 2.97944e-19) (-4.37851 -15.9941 -8.54023e-19) (-4.21884 -15.6045 5.14812e-19) (-4.07035 -15.2413 -9.30429e-19) (-3.92814 -14.8914 1.30646e-18) (-3.79054 -14.5482 -4.12728e-19) (-3.65721 -14.2088 0) (-3.52808 -13.8726 -3.36115e-19) (-3.40318 -13.5404 3.09426e-19) (-3.28264 -13.2135 -2.85119e-19) (-3.16652 -12.8931 0) (-3.05487 -12.5805 0) (-2.94766 -12.2764 -5.64262e-21) (-2.84482 -11.9817 -7.38041e-21) (-2.74622 -11.6967 -4.66405e-21) (-2.65171 -11.4215 -1.049e-20) (-2.56112 -11.1562 -3.35925e-19) (-2.47424 -10.9006 3.07912e-19) (-2.39087 -10.6545 -4.20558e-19) (-2.31079 -10.4173 4.07379e-19) (-2.23376 -10.1886 0) (-2.15952 -9.96789 -2.2424e-19) (-2.08781 -9.75436 3.2748e-19) (-2.01824 -9.54732 0) (-1.95067 -9.34596 9.38874e-20) (-1.88655 -9.1491 -8.31649e-20) (-1.82666 -8.95568 2.61727e-19) (-4.38928 -18.7952 3.99084e-19) (-4.62746 -17.7698 -1.09832e-18) (-4.25993 -17.1255 3.55179e-19) (-4.12338 -16.5867 0) (-3.96772 -16.1456 0) (-3.81872 -15.7545 0) (-3.67994 -15.3884 0) (-3.54691 -15.0348 -1.23654e-20) (-3.41822 -14.6872 -4.15634e-19) (-3.29364 -14.3431 3.70717e-19) (-3.17316 -14.0022 0) (-3.05681 -13.6654 -3.14068e-19) (-2.94469 -13.3339 2.79717e-19) (-2.83686 -13.0092 -1.6506e-20) (-2.73331 -12.6926 -5.00209e-19) (-2.634 -12.3848 2.20519e-19) (-2.53883 -12.0866 -2.16671e-19) (-2.44766 -11.7983 1.89089e-19) (-2.36035 -11.5201 -1.85871e-19) (-2.2767 -11.2521 -1.68134e-19) (-2.19653 -10.9939 -3.05825e-19) (-2.11963 -10.7453 1.28048e-20) (-2.04579 -10.5058 1.42789e-19) (-1.97478 -10.2751 -2.43339e-19) (-1.90638 -10.0523 2.39502e-19) (-1.8403 -9.83693 0) (-1.7762 -9.62808 0) (-1.71394 -9.42491 -9.38873e-20) (-1.65476 -9.22625 0) (-1.59916 -9.03101 -2.54456e-19) (-3.89808 -18.9109 3.38167e-21) (-4.16567 -17.9056 7.4034e-19) (-3.8167 -17.2624 -6.82001e-19) (-3.69542 -16.7274 -3.1326e-19) (-3.55213 -16.2868 5.63053e-19) (-3.41378 -15.8943 -5.33669e-19) (-3.28477 -15.5255 -2.40891e-19) (-3.16105 -15.1683 0) (-3.04141 -14.8165 0) (-2.92576 -14.4679 -7.31196e-19) (-2.81411 -14.1224 3.53731e-19) (-2.70649 -13.7811 8.41753e-21) (-2.60297 -13.4454 1.81995e-20) (-2.50358 -13.1166 2.76756e-19) (-2.40828 -12.7961 2.46675e-19) (-2.31701 -12.4848 2.22336e-19) (-2.22964 -12.1833 -4.24291e-19) (-2.14603 -11.892 2.02287e-19) (-2.06602 -11.6111 0) (-1.98942 -11.3404 3.32358e-19) (-1.91605 -11.0798 -1.61499e-19) (-1.8457 -10.8289 -1.45128e-19) (-1.77818 -10.5874 0) (-1.71327 -10.3547 0) (-1.65075 -10.1301 0) (-1.59038 -9.91301 -5.51502e-20) (-1.53182 -9.7025 0) (-1.47494 -9.49769 -1.86188e-19) (-1.42078 -9.2974 1.83398e-19) (-1.3696 -9.10048 1.70587e-19) (-3.40382 -19.014 -8.01556e-19) (-3.70001 -18.03 0) (-3.36929 -17.3882 3.32496e-19) (-3.26302 -16.8573 3.02641e-19) (-3.13197 -16.4175 -5.64891e-19) (-3.00427 -16.0237 7.99899e-19) (-2.88509 -15.6524 6.90387e-21) (-2.7708 -15.2917 1.46567e-20) (-2.66037 -14.9359 4.15187e-19) (-2.55382 -14.583 -1.81525e-19) (-2.45117 -14.2332 6.85306e-19) (-2.35245 -13.8876 -1.68654e-19) (-2.25771 -13.5477 2.8399e-19) (-2.16691 -13.2151 -2.78852e-19) (-2.08002 -12.8911 2.42303e-19) (-1.99692 -12.5764 -1.38733e-20) (-1.91748 -12.2719 -1.26794e-20) (-1.84154 -11.9778 -2.03983e-19) (-1.76893 -11.6942 -2.70667e-19) (-1.69947 -11.4211 1.75477e-19) (-1.63298 -11.1583 -1.54015e-19) (-1.56927 -10.9053 8.24232e-21) (-1.50814 -10.6619 1.40933e-19) (-1.44939 -10.4274 -1.88324e-19) (-1.39283 -10.2012 1.22252e-19) (-1.33822 -9.98251 5.51502e-20) (-1.28525 -9.77051 0) (-1.23381 -9.56422 0) (-1.18473 -9.36246 0) (-1.13811 -9.164 0) (-2.90681 -19.1045 -3.8285e-19) (-3.23074 -18.1427 3.9769e-19) (-2.91793 -17.5029 0) (-2.82641 -16.9763 -3.15286e-19) (-2.70748 -16.5375 2.80082e-19) (-2.59042 -16.1426 -2.82254e-19) (-2.48116 -15.7689 -2.51775e-19) (-2.37641 -15.405 0) (-2.27535 -15.0453 -2.04472e-19) (-2.17807 -14.6883 0) (-2.0846 -14.3342 -3.4721e-19) (-1.99496 -13.9846 -4.74925e-19) (-1.90915 -13.6409 4.24488e-21) (-1.82711 -13.3046 1.27576e-19) (-1.74875 -12.9772 -6.29929e-19) (-1.67395 -12.6595 1.23113e-19) (-1.60256 -12.3521 0) (-1.53439 -12.0554 -1.00224e-19) (-1.46929 -11.7694 -7.92062e-22) (-1.40706 -11.4941 -8.63447e-20) (-1.34753 -11.2292 0) (-1.29052 -10.9744 -2.19275e-19) (-1.23585 -10.7292 7.27843e-20) (-1.18333 -10.4931 -6.39106e-22) (-1.13278 -10.2654 -1.77379e-19) (-1.08398 -10.0453 6.00288e-21) (-1.03667 -9.83201 5.49024e-20) (-0.990711 -9.62442 -4.91459e-20) (-0.946762 -9.42136 -4.59557e-20) (-0.904836 -9.22152 0) (-2.40729 -19.1822 2.0294e-19) (-2.7581 -18.2437 -3.79328e-19) (-2.46286 -17.6062 -1.81285e-19) (-2.38582 -17.0843 1.42793e-19) (-2.27893 -16.6466 -3.12121e-19) (-2.17252 -16.2509 -5.44302e-19) (-2.07323 -15.8749 -2.45753e-19) (-1.97815 -15.5078 -2.25597e-19) (-1.88661 -15.1445 -2.07269e-19) (-1.79877 -14.7835 -6.51817e-21) (-1.71465 -14.4255 -1.23648e-20) (-1.63426 -14.072 -5.85637e-21) (-1.55754 -13.7246 1.43041e-19) (-1.4844 -13.385 -1.42527e-19) (-1.41473 -13.0545 2.53458e-19) (-1.34835 -12.7339 -9.12882e-22) (-1.28511 -12.4239 0) (-1.22482 -12.1248 1.00224e-19) (-1.16731 -11.8366 -7.88709e-22) (-1.11239 -11.5593 8.63448e-20) (-1.05989 -11.2926 -8.09729e-20) (-1.00966 -11.0361 7.4652e-20) (-0.961507 -10.7893 -6.64719e-20) (-0.915276 -10.5518 2.59901e-19) (-0.870788 -10.3227 -6.43631e-20) (-0.827847 -10.1014 0) (-0.786224 -9.88694 -5.66579e-22) (-0.745796 -9.67822 -9.68941e-20) (-0.707032 -9.47403 1.8734e-19) (-0.66991 -9.27297 -8.85261e-20) (-1.90551 -19.2472 2.04652e-19) (-2.28235 -18.3328 3.79328e-19) (-2.00434 -17.698 3.49646e-19) (-1.94152 -17.181 -1.5489e-19) (-1.84656 -16.7446 3.02255e-19) (-1.7508 -16.3482 5.37079e-19) (-1.66158 -15.9702 2.37561e-19) (-1.57629 -15.6001 1.08543e-19) (-1.49443 -15.2333 1.02941e-19) (-1.41619 -14.8686 1.906e-19) (-1.3416 -14.5069 3.46114e-19) (-1.27062 -14.1497 -1.67518e-19) (-1.20314 -13.799 2.94251e-19) (-1.13905 -13.4562 -1.39001e-19) (-1.07818 -13.1228 1.28484e-19) (-1.02034 -12.7996 -4.11153e-21) (-0.96536 -12.4872 0) (-0.913039 -12.1859 0) (-0.8632 -11.8958 9.37721e-20) (-0.815668 -11.6167 -8.50978e-20) (-0.77028 -11.3483 1.64659e-19) (-0.726877 -11.0903 -7.36765e-20) (-0.685304 -10.8421 7.24849e-20) (-0.645408 -10.6033 6.53898e-20) (-0.607028 -10.3731 0) (-0.56999 -10.1507 0) (-0.534098 -9.93524 5.31658e-20) (-0.499231 -9.72556 4.96918e-20) (-0.465692 -9.5204 -1.37637e-19) (-0.433482 -9.3183 9.43386e-20) (-1.40169 -19.2996 4.01173e-19) (-1.80375 -18.4099 -2.02339e-19) (-1.54264 -17.7783 1.70466e-19) (-1.49375 -17.2663 -1.67087e-19) (-1.41064 -16.8315 0) (-1.32556 -16.4344 0) (-1.24648 -16.0545 0) (-1.17111 -15.6817 0) (-1.09909 -15.3115 2.09344e-19) (-1.03062 -14.9433 -9.3305e-20) (-0.965717 -14.5781 9.15586e-20) (-0.904298 -14.2176 1.58438e-19) (-0.846219 -13.8637 -1.55537e-19) (-0.791304 -13.5181 0) (-0.739357 -13.182 6.45589e-20) (-0.690171 -12.8564 0) (-0.643543 -12.5419 0) (-0.599277 -12.2387 -9.94476e-20) (-0.557191 -11.9468 1.90103e-19) (-0.517115 -11.6661 -9.07964e-20) (-0.478895 -11.3962 -7.98543e-20) (-0.442383 -11.1369 7.85462e-20) (-0.407438 -10.8875 -6.92892e-20) (-0.373923 -10.6476 1.32803e-19) (-0.341692 -10.4164 -1.23914e-19) (-0.310594 -10.1931 1.15705e-19) (-0.280466 -9.97683 -5.54657e-20) (-0.251185 -9.76637 -4.9247e-20) (-0.222903 -9.56043 7.08424e-20) (-0.195703 -9.35746 4.29566e-20) (-0.895902 -19.3401 8.83475e-22) (-1.32241 -18.4752 9.34249e-20) (-1.07796 -17.8467 -5.81091e-21) (-1.04273 -17.34 -8.40558e-20) (-0.97141 -16.9068 0) (-0.897052 -16.5094 1.3175e-19) (-0.828216 -16.1278 5.43525e-20) (-0.762909 -15.7523 -1.18576e-19) (-0.700871 -15.3791 -5.2167e-20) (-0.642332 -15.0077 9.39302e-20) (-0.587283 -14.6392 -9.2172e-20) (-0.535581 -14.2756 0) (-0.487035 -13.9188 7.36288e-20) (-0.441425 -13.5705 -1.40331e-19) (-0.398517 -13.232 2.25863e-21) (-0.35808 -12.9043 0) (-0.319897 -12.5878 0) (-0.283765 -12.2829 -5.01251e-20) (-0.249502 -11.9895 4.92722e-20) (-0.216946 -11.7074 -8.65685e-20) (-0.185951 -11.4363 1.0591e-19) (-0.156381 -11.1758 -7.50265e-20) (-0.128111 -10.9255 7.38131e-20) (-0.101017 -10.6846 6.52408e-20) (-0.0749726 -10.4526 -1.25121e-19) (-0.0498474 -10.2286 1.16866e-19) (-0.0255109 -10.0117 -5.60309e-20) (-0.00183918 -9.8006 0) (0.0211614 -9.59406 2.37605e-20) (0.0432621 -9.39041 0) (-0.387864 -19.3694 -2.18557e-21) (-0.83803 -18.5284 -5.11785e-20) (-0.610446 -17.9029 0) (-0.588726 -17.4019 0) (-0.529155 -16.9706 0) (-0.465598 -16.5729 0) (-0.407112 -16.1898 -1.79636e-21) (-0.351995 -15.812 -5.96639e-20) (-0.300091 -15.4359 -1.04223e-19) (-0.251641 -15.0614 3.1261e-21) (-0.206593 -14.6899 8.99391e-20) (-0.164752 -14.3235 -8.29008e-20) (-0.125871 -13.964 3.94233e-20) (-0.0896824 -13.6134 0) (-0.0559184 -13.2728 0) (-0.0243237 -12.9432 0) (0.00533399 -12.6251 0) (0.0332605 -12.3187 0) (0.0596358 -12.0239 0) (0.0846154 -11.7407 0) (0.108335 -11.4685 -2.07781e-20) (0.130916 -11.2071 0) (0.15247 -10.9559 3.52879e-20) (0.173105 -10.7143 -3.47244e-20) (0.19293 -10.4816 3.07502e-20) (0.212052 -10.2571 -3.02715e-20) (0.230571 -10.0397 0) (0.248615 -9.8282 -2.51535e-20) (0.266308 -9.62125 2.47765e-20) (0.28322 -9.41713 -2.31943e-20) (0.122999 -19.3862 -2.59491e-20) (-0.350179 -18.5688 0) (-0.140344 -17.9466 0) (-0.132186 -17.4518 0) (-0.0842381 -17.0227 0) (-0.0315271 -16.625 0) (0.0165064 -16.2406 1.53046e-20) (0.0613121 -15.8606 -1.50095e-20) (0.102941 -15.4819 0) (0.141159 -15.1047 0) (0.176062 -14.7304 2.1919e-20) (0.207908 -14.3613 -2.15132e-20) (0.237001 -13.9995 0) (0.263658 -13.6467 0) (0.288182 -13.3043 -1.59636e-20) (0.31085 -12.973 8.93861e-22) (0.331909 -12.6535 1.45298e-20) (0.351565 -12.3459 0) (0.369996 -12.05 0) (0.387349 -11.7658 0) (0.403748 -11.4928 0) (0.419299 -11.2307 0) (0.4341 -10.9788 -8.90152e-21) (0.448241 -10.7366 8.75937e-21) (0.461815 -10.5035 0) (0.474905 -10.2786 0) (0.48758 -10.0609 1.35745e-20) (0.499974 -9.84913 -1.33684e-20) (0.512325 -9.64195 0) (0.523952 -9.43757 0) (0.77606 -8.6495 0) (0.699152 -7.65593 -2.75279e-22) (0.756968 -6.70021 -6.65282e-22) (0.718751 -5.96952 3.70244e-22) (0.756994 -5.3173 0) (0.747249 -4.75826 0) (0.761203 -4.25471 -5.73541e-23) (0.755952 -3.79362 1.3822e-22) (0.752186 -3.36415 0) (0.738646 -2.96106 0) (0.721668 -2.58449 -1.20828e-23) (0.699707 -2.236 -6.09504e-24) (0.675884 -1.9181 0) (0.650988 -1.63224 6.48135e-25) (0.626817 -1.37875 1.15454e-24) (0.604095 -1.15675 2.18353e-25) (0.583643 -0.964406 -1.06399e-24) (0.565685 -0.799335 8.66442e-25) (0.55041 -0.658858 1.81982e-24) (0.537717 -0.540288 0) (0.527547 -0.44099 0) (0.51967 -0.358548 0) (0.513998 -0.290686 0) (0.51029 -0.235373 7.01361e-25) (0.508508 -0.190641 2.37984e-24) (0.508353 -0.154789 3.42178e-24) (0.509778 -0.12601 0) (0.512275 -0.102947 0) (0.515664 -0.0838831 0) (0.51919 -0.0680418 -7.82995e-24) (0.522496 -0.0537408 0) (0.524947 -0.0411827 0) (0.525917 -0.0283818 7.15209e-24) (0.525749 -0.0169814 0) (0.522887 -0.0037794 0) (0.520143 0.00718004 0) (0.513475 0.021707 1.25673e-25) (0.510195 0.0313245 6.59701e-24) (0.502254 0.0466033 0) (0.498746 0.0564395 -1.43259e-24) (0.989722 -8.65769 -3.81253e-21) (0.859036 -7.6626 8.33125e-22) (0.887164 -6.70715 0) (0.820204 -5.97556 8.15636e-22) (0.839078 -5.32278 0) (0.812651 -4.76217 -2.6111e-22) (0.813387 -4.2575 -2.63635e-22) (0.797199 -3.79494 0) (0.784209 -3.36425 0) (0.762983 -2.96005 -4.4734e-23) (0.739544 -2.58267 1.20888e-23) (0.712251 -2.23366 3.80937e-23) (0.684055 -1.91553 -1.10306e-23) (0.655627 -1.62965 -4.2042e-24) (0.628625 -1.37632 0) (0.603655 -1.15457 -3.56215e-24) (0.581425 -0.962528 3.54302e-24) (0.562064 -0.797768 -4.83299e-24) (0.545683 -0.65759 3.29288e-25) (0.532118 -0.539295 -1.36482e-24) (0.521258 -0.440241 0) (0.512837 -0.358014 0) (0.506733 -0.29034 2.34829e-24) (0.502681 -0.235191 1.87958e-25) (0.500618 -0.190599 -6.54508e-24) (0.50023 -0.154862 3.56138e-24) (0.501446 -0.126171 9.36063e-24) (0.503744 -0.103165 1.28839e-25) (0.506922 -0.0841231 -1.90328e-24) (0.510221 -0.0682646 7.83172e-24) (0.513268 -0.0539189 -1.94109e-24) (0.515442 -0.0412819 1.3927e-28) (0.516106 -0.0284012 -5.35442e-24) (0.515649 -0.0168971 8.14586e-25) (0.512505 -0.00363014 1.14335e-23) (0.509573 0.00741165 -6.27149e-25) (0.502756 0.0219451 3.53316e-25) (0.499579 0.0315717 6.7407e-24) (0.49162 0.0468488 1.74324e-25) (0.488766 0.0565066 -1.39809e-24) (1.20359 -8.66027 -5.57955e-21) (1.01958 -7.66627 4.81369e-21) (1.01775 -6.71211 0) (0.922173 -5.98055 -5.47189e-22) (0.921487 -5.32767 0) (0.878415 -4.76585 -5.22473e-24) (0.865821 -4.26025 -4.27976e-22) (0.838688 -3.79642 1.21208e-21) (0.816432 -3.36461 -1.3081e-22) (0.787509 -2.95938 -9.86469e-23) (0.757598 -2.58125 0) (0.724972 -2.23173 2.81981e-23) (0.692403 -1.91335 -3.99713e-23) (0.660444 -1.62743 -3.27727e-24) (0.630613 -1.37422 0) (0.603393 -1.15268 0) (0.579383 -0.960893 8.5601e-24) (0.558617 -0.796403 -9.33936e-24) (0.541126 -0.656485 0) (0.526685 -0.538432 0) (0.515131 -0.439594 -9.74364e-25) (0.50616 -0.357559 9.36903e-25) (0.499619 -0.290052 0) (0.495218 -0.235051 -5.3674e-24) (0.492872 -0.190586 6.29971e-24) (0.492247 -0.154955 -6.98847e-24) (0.49325 -0.126344 -7.44303e-24) (0.495346 -0.103387 -1.16342e-23) (0.498311 -0.0843616 1.80955e-25) (0.501382 -0.0684816 -3.86993e-24) (0.504167 -0.0540878 3.89544e-24) (0.506063 -0.0413696 -1.87693e-24) (0.506423 -0.0284082 -1.80286e-24) (0.505681 -0.0168008 0) (0.50226 -0.00347113 -1.22205e-23) (0.499147 0.00764984 1.25293e-24) (0.492195 0.0221836 -1.20694e-24) (0.489127 0.0318171 -2.63975e-23) (0.481166 0.0470817 -9.62053e-24) (0.478971 0.0565617 2.83039e-24) (1.41758 -8.65728 1.56114e-20) (1.18071 -7.66692 0) (1.14875 -6.71513 0) (1.02468 -5.98444 5.65594e-22) (1.00425 -5.33195 0) (0.944573 -4.76929 2.67052e-22) (0.918539 -4.26299 -3.71507e-22) (0.880449 -3.79807 -2.383e-22) (0.848882 -3.36525 2.55721e-22) (0.812251 -2.95907 -1.84792e-22) (0.775853 -2.58022 -2.05864e-22) (0.737891 -2.2302 4.59646e-23) (0.700944 -1.91157 -2.35819e-23) (0.665454 -1.62559 -1.97862e-23) (0.63279 -1.37245 2.41694e-24) (0.603319 -1.15107 2.22214e-24) (0.577525 -0.9595 0) (0.555349 -0.795238 1.26606e-24) (0.536744 -0.655544 1.59909e-24) (0.521421 -0.537699 1.87282e-24) (0.509169 -0.439049 -6.18489e-25) (0.499644 -0.357181 3.98456e-24) (0.49266 -0.289823 5.68397e-24) (0.487906 -0.234953 5.41588e-24) (0.485271 -0.190602 -7.291e-24) (0.484405 -0.155066 0) (0.485191 -0.126527 7.87706e-24) (0.487083 -0.103612 8.05985e-24) (0.489832 -0.0845984 -4.04799e-24) (0.492672 -0.0686927 3.89523e-24) (0.495193 -0.0542474 0) (0.496812 -0.041446 3.75449e-24) (0.496868 -0.028403 -3.6142e-24) (0.495844 -0.016693 0) (0.492153 -0.00330291 0) (0.488866 0.00789393 -1.2516e-24) (0.481792 0.0224221 -1.68305e-23) (0.47884 0.03206 3.96422e-23) (0.470894 0.0473016 9.6192e-24) (0.46936 0.0566048 5.52234e-24) (1.63158 -8.64875 -1.1485e-20) (1.34238 -7.66453 1.3384e-20) (1.28017 -6.71623 0) (1.12774 -5.9872 -1.71858e-21) (1.0874 -5.33565 3.58438e-21) (1.01116 -4.77248 -2.11818e-22) (0.971571 -4.26571 -1.82702e-21) (0.922511 -3.79988 -8.3432e-22) (0.88159 -3.36618 8.01602e-22) (0.837234 -2.95913 0) (0.794332 -2.57959 5.75905e-23) (0.751026 -2.22909 1.00703e-22) (0.709695 -1.91019 -9.67692e-23) (0.670668 -1.62411 0) (0.635168 -1.37101 -7.11952e-24) (0.60344 -1.14975 -2.22617e-24) (0.575857 -0.958351 2.17629e-24) (0.552267 -0.794274 0) (0.532542 -0.654765 4.55842e-25) (0.516331 -0.537095 7.63103e-25) (0.503375 -0.438605 -5.83625e-24) (0.493289 -0.35688 0) (0.485858 -0.289651 -9.52905e-24) (0.480744 -0.234896 -6.03244e-24) (0.477816 -0.190647 1.30775e-23) (0.476704 -0.155196 -6.90817e-24) (0.477271 -0.12672 0) (0.478955 -0.103842 0) (0.481484 -0.0848335 0) (0.484092 -0.0688977 3.20083e-23) (0.486348 -0.0543979 0) (0.487689 -0.0415113 0) (0.487443 -0.028386 0) (0.48614 -0.0165742 0) (0.482185 -0.00312605 0) (0.478733 0.00814325 0) (0.471548 0.0226598 1.80396e-23) (0.468719 0.0322996 -2.62849e-23) (0.460805 0.047508 -3.45623e-25) (0.459931 0.0566355 -1.09742e-23) (1.8455 -8.63472 -1.60012e-20) (1.50453 -7.65907 -2.33336e-21) (1.41203 -6.71544 0) (1.23138 -5.98879 1.15496e-21) (1.17095 -5.33875 1.46967e-23) (1.0782 -4.77543 -5.58405e-22) (1.02495 -4.26841 1.69071e-21) (0.964901 -3.80186 -1.25755e-21) (0.914582 -3.36739 -3.37117e-22) (0.862482 -2.95956 0) (0.813057 -2.57938 0) (0.764397 -2.2284 0) (0.718672 -1.90922 3.87388e-23) (0.676102 -1.62301 0) (0.637757 -1.3699 4.70904e-24) (0.603766 -1.14872 0) (0.574387 -0.957443 -5.20291e-24) (0.549375 -0.793511 2.90434e-24) (0.528523 -0.654149 0) (0.511418 -0.53662 3.67488e-24) (0.497751 -0.438261 1.11408e-24) (0.487098 -0.356656 8.38206e-24) (0.479213 -0.289536 -5.82101e-24) (0.473735 -0.234881 -6.57732e-25) (0.470508 -0.19072 1.27981e-23) (0.469146 -0.155344 7.06361e-24) (0.469488 -0.126924 -3.14294e-23) (0.47096 -0.104075 -8.19839e-24) (0.473267 -0.0850667 7.88665e-24) (0.47564 -0.0690968 -3.20442e-23) (0.47763 -0.0545395 0) (0.478693 -0.0415658 7.54782e-24) (0.478148 -0.0283576 -7.26422e-24) (0.47657 -0.0164449 5.3673e-23) (0.472358 -0.00294116 -2.90958e-24) (0.468749 0.00839708 2.80142e-24) (0.461467 0.0228961 0) (0.458767 0.0325355 2.64852e-23) (0.4509 0.0477003 0) (0.450684 0.0566539 6.83455e-26) (2.05921 -8.61528 -1.184e-20) (1.66708 -7.65044 1.13984e-20) (1.54433 -6.71279 -5.90395e-21) (1.33564 -5.98918 5.67138e-21) (1.25492 -5.34125 -3.72698e-21) (1.14573 -4.77811 2.77947e-21) (1.07871 -4.27111 0) (1.00765 -3.80402 5.3298e-22) (0.947886 -3.3689 6.86659e-22) (0.88802 -2.96037 3.53776e-22) (0.83205 -2.57958 -3.39893e-22) (0.778021 -2.22814 0) (0.72789 -1.90865 -1.00537e-22) (0.681766 -1.62228 3.08329e-23) (0.640567 -1.36913 3.78257e-23) (0.604305 -1.14798 -1.00895e-23) (0.573121 -0.956779 0) (0.546679 -0.792948 0) (0.524692 -0.653695 -2.09926e-24) (0.506686 -0.536274 -2.81635e-24) (0.492301 -0.438017 1.8875e-23) (0.481074 -0.356508 -2.5813e-23) (0.472729 -0.289477 -7.38358e-25) (0.46688 -0.234905 -2.43568e-23) (0.463348 -0.19082 2.87797e-23) (0.461731 -0.155509 7.91499e-24) (0.461845 -0.127136 1.57089e-23) (0.463101 -0.104311 7.85074e-24) (0.465182 -0.085298 -2.4362e-23) (0.467317 -0.0692899 1.92302e-25) (0.469039 -0.0546722 2.37897e-23) (0.469824 -0.0416097 6.10277e-23) (0.468982 -0.0283183 0) (0.467134 -0.0163056 -5.37148e-23) (0.462673 -0.00274886 2.90939e-24) (0.458915 0.00865471 -3.04913e-25) (0.451548 0.0231304 -2.40304e-24) (0.448983 0.0327668 -2.57749e-23) (0.441179 0.0478781 -6.87065e-25) (0.441619 0.0566598 1.60097e-23) (2.27262 -8.5905 0) (1.83 -7.63856 0) (1.67707 -6.7083 1.2038e-20) (1.44054 -5.98833 -3.1171e-21) (1.33935 -5.34315 -1.4032e-20) (1.21378 -4.78053 3.65087e-21) (1.13288 -4.2738 1.95448e-21) (1.05078 -3.80636 -5.34985e-22) (0.981531 -3.37072 2.41436e-22) (0.913871 -2.96156 -7.96576e-22) (0.851333 -2.58021 0) (0.791918 -2.2283 0) (0.737365 -1.90849 6.85622e-23) (0.687673 -1.62193 -3.21617e-23) (0.643608 -1.36869 -6.98414e-23) (0.605063 -1.14752 8.74544e-24) (0.572064 -0.956358 1.06617e-23) (0.544183 -0.792585 -1.80059e-24) (0.521051 -0.653402 0) (0.502136 -0.536055 5.20657e-24) (0.487025 -0.437872 1.85159e-24) (0.475218 -0.356435 -8.16219e-24) (0.466406 -0.289474 -1.10901e-24) (0.46018 -0.23497 2.70536e-23) (0.456338 -0.190948 6.3536e-25) (0.45446 -0.155692 1.60787e-23) (0.45434 -0.127358 -1.54604e-23) (0.455376 -0.104549 -3.28441e-23) (0.457229 -0.0855272 4.09962e-23) (0.459123 -0.0694771 5.71224e-23) (0.460577 -0.0547963 -2.37267e-23) (0.461084 -0.0416435 -6.87404e-23) (0.459947 -0.0282685 0) (0.457834 -0.016157 5.3797e-23) (0.453131 -0.00254981 0) (0.449232 0.00891541 0) (0.441793 0.0233621 0) (0.43937 0.032993 7.11322e-25) (0.431643 0.0480411 -3.72387e-23) (0.432733 0.0566533 -1.35271e-25) (2.48562 -8.56046 3.68476e-20) (1.99324 -7.62335 -2.47968e-21) (1.81024 -6.70199 0) (1.54612 -5.98622 0) (1.42424 -5.34444 -6.05751e-21) (1.28238 -4.78268 7.04151e-21) (1.18749 -4.27649 8.43603e-22) (1.09433 -3.80888 -2.45272e-21) (1.01554 -3.37284 1.81313e-21) (0.940061 -2.96313 1.00088e-21) (0.870926 -2.58126 -7.40925e-22) (0.806104 -2.2289 1.85254e-22) (0.74711 -1.90875 -2.62449e-22) (0.693835 -1.62196 0) (0.64689 -1.36858 1.42196e-23) (0.606048 -1.14736 -2.62326e-23) (0.571221 -0.95618 -2.11795e-24) (0.54189 -0.792423 -5.92108e-25) (0.517605 -0.653271 1.43569e-24) (0.497771 -0.535965 -9.37266e-24) (0.481926 -0.437826 2.546e-24) (0.469531 -0.356437 -8.99984e-24) (0.460245 -0.289526 2.3865e-23) (0.453636 -0.235074 -2.71275e-23) (0.449477 -0.191103 -2.95566e-23) (0.447333 -0.155891 0) (0.446974 -0.127589 3.26888e-23) (0.447786 -0.104791 -2.56285e-25) (0.449406 -0.0857543 -1.67508e-23) (0.451057 -0.0696586 -4.91309e-23) (0.452242 -0.054912 0) (0.452472 -0.0416675 -6.14269e-23) (0.451043 -0.0282088 -5.81484e-23) (0.448669 -0.0159996 -1.07719e-22) (0.443732 -0.00234468 4.8971e-23) (0.439703 0.00917844 0) (0.432202 0.0235907 0) (0.429927 0.0332134 0) (0.422292 0.048189 -7.9193e-26) (0.424025 0.0566343 -1.03059e-23) (2.6981 -8.5252 3.01896e-20) (2.15676 -7.60474 2.49272e-21) (1.94383 -6.69387 0) (1.65242 -5.98285 0) (1.50962 -5.34511 0) (1.35156 -4.78455 -2.48323e-21) (1.24257 -4.27917 -3.76987e-21) (1.13832 -3.81158 3.37455e-21) (1.04995 -3.37527 3.85153e-22) (0.966612 -2.9651 0) (0.890851 -2.58274 0) (0.820597 -2.22993 -2.03452e-22) (0.757141 -1.90943 1.72046e-22) (0.700264 -1.62237 0) (0.650421 -1.36882 5.93158e-23) (0.607267 -1.14748 2.29e-23) (0.5706 -0.956246 -1.55883e-23) (0.539806 -0.792461 9.88235e-24) (0.514357 -0.653302 -5.44541e-24) (0.493594 -0.536002 -2.64559e-24) (0.477007 -0.437879 1.89613e-23) (0.464016 -0.356514 1.21391e-23) (0.454248 -0.289633 -1.16656e-23) (0.447248 -0.235217 0) (0.442767 -0.191284 1.59732e-23) (0.440351 -0.156107 -1.5353e-23) (0.439748 -0.127829 -4.96804e-23) (0.440331 -0.105035 4.95032e-23) (0.441715 -0.0859792 0) (0.443121 -0.0698344 1.65417e-23) (0.444035 -0.0550195 -1.59056e-23) (0.443989 -0.0416821 6.15259e-23) (0.442271 -0.0281396 5.82294e-23) (0.439642 -0.0158341 -1.09776e-26) (0.434479 -0.00213415 -9.21949e-23) (0.430328 0.00944306 -4.79116e-23) (0.422778 0.0238154 7.1564e-23) (0.420656 0.0334275 -7.07206e-25) (0.413126 0.0483213 3.73055e-23) (0.415495 0.0566029 -1.0393e-23) (2.90995 -8.48477 2.53046e-20) (2.32052 -7.58267 -1.92201e-20) (2.07781 -6.68397 3.72471e-21) (1.75948 -5.97815 2.59916e-21) (1.59551 -5.34518 0) (1.42134 -4.78614 4.3707e-21) (1.29815 -4.28185 -4.22202e-21) (1.18278 -3.81447 -6.00296e-22) (1.08478 -3.37802 1.11644e-23) (0.993548 -2.96748 1.09598e-21) (0.911128 -2.58466 -1.12932e-21) (0.835415 -2.23141 1.13731e-22) (0.767471 -1.91052 -1.89695e-22) (0.70697 -1.62317 -6.59833e-23) (0.65421 -1.3694 -8.5368e-23) (0.608727 -1.1479 2.22081e-23) (0.570203 -0.956557 4.59568e-23) (0.537934 -0.7927 -8.99934e-24) (0.511309 -0.653494 -6.35143e-24) (0.489607 -0.536167 3.3015e-23) (0.472268 -0.438031 -9.29343e-24) (0.458672 -0.356665 1.06434e-23) (0.448416 -0.289795 0) (0.441018 -0.235399 -1.54533e-23) (0.436207 -0.191491 4.64148e-23) (0.433513 -0.156338 0) (0.432661 -0.128076 0) (0.433011 -0.105282 0) (0.434155 -0.086202 -6.72865e-23) (0.435313 -0.0700046 -1.66347e-23) (0.435956 -0.0551193 1.59914e-23) (0.435634 -0.0416877 0) (0.433631 -0.0280615 0) (0.430752 -0.0156612 4.7443e-23) (0.425371 -0.00191896 5.53641e-23) (0.421107 0.00970854 4.23448e-23) (0.413521 0.0240357 -1.2491e-25) (0.411556 0.0336347 0) (0.404145 0.0484379 -3.58485e-23) (0.40714 0.056559 -2.23509e-25) (3.1211 -8.43921 -3.84982e-20) (2.48448 -7.5571 -5.16885e-21) (2.21213 -6.67235 -7.55464e-21) (1.86734 -5.97202 -5.27329e-21) (1.68192 -5.34474 0) (1.49176 -4.7874 1.29439e-21) (1.35427 -4.28452 9.16039e-22) (1.22773 -3.81755 -1.51678e-23) (1.12005 -3.38109 -4.00726e-22) (1.02089 -2.97025 2.75764e-22) (0.931778 -2.58702 -2.20329e-22) (0.850574 -2.23333 1.26028e-21) (0.778115 -1.91205 -6.34952e-22) (0.713965 -1.62436 2.52247e-22) (0.658266 -1.37031 -4.08655e-23) (0.610434 -1.14861 -3.52256e-23) (0.570037 -0.957113 3.38328e-23) (0.536278 -0.79314 -2.67334e-23) (0.508464 -0.653847 -8.31929e-25) (0.485812 -0.536459 -6.76995e-27) (0.467711 -0.438281 2.93471e-24) (0.453502 -0.35689 2.96441e-23) (0.442749 -0.290011 -4.06772e-23) (0.434946 -0.235619 -3.22407e-23) (0.429799 -0.191723 -1.64404e-23) (0.42682 -0.156586 0) (0.425713 -0.128333 1.7304e-23) (0.425825 -0.105531 -3.39347e-23) (0.426726 -0.0864227 6.69873e-23) (0.427634 -0.0701695 8.31609e-23) (0.428004 -0.0552115 1.61481e-23) (0.427409 -0.0416849 4.65614e-23) (0.425124 -0.0279752 0) (0.422001 -0.0154815 -6.57536e-24) (0.41641 -0.00169977 6.32157e-24) (0.412043 0.00997415 0) (0.404431 0.024251 -7.15114e-23) (0.402629 0.0338344 -5.06178e-23) (0.395348 0.0485386 3.48613e-23) (0.398959 0.0565028 1.00728e-23) (3.33143 -8.38857 3.90583e-20) (2.64861 -7.52796 -5.3285e-21) (2.3468 -6.65919 3.83281e-21) (1.97604 -5.96424 -6.77665e-21) (1.76887 -5.34387 2.38816e-21) (1.56287 -4.78831 7.77909e-21) (1.41094 -4.28721 1.32483e-21) (1.2732 -3.82078 -2.43968e-21) (1.1558 -3.38447 2.26887e-21) (1.04867 -2.97343 -1.89708e-21) (0.952821 -2.58983 2.18934e-22) (0.866092 -2.23571 -7.59195e-22) (0.789085 -1.914 1.25059e-22) (0.721259 -1.62593 1.20972e-22) (0.662596 -1.37157 -7.50681e-23) (0.612395 -1.14962 -4.13972e-23) (0.570106 -0.957916 1.23197e-23) (0.534841 -0.793782 2.63464e-23) (0.505824 -0.654363 -5.96161e-25) (0.48221 -0.536879 -4.27964e-23) (0.463338 -0.438629 0) (0.448506 -0.357189 -5.27841e-23) (0.437247 -0.290281 0) (0.429033 -0.235877 6.22188e-23) (0.423542 -0.191981 0) (0.420273 -0.156849 5.0551e-23) (0.418905 -0.128597 3.41596e-23) (0.418774 -0.105782 -3.42848e-23) (0.419428 -0.0866413 -4.58109e-25) (0.420083 -0.0703292 -5.03316e-23) (0.420181 -0.0552966 -8.12777e-23) (0.419313 -0.041674 -4.66279e-23) (0.41675 -0.0278811 1.43961e-23) (0.413389 -0.0152957 -7.25055e-24) (0.407597 -0.00147685 9.76944e-23) (0.403137 0.0102392 -5.59879e-24) (0.395509 0.0244609 -6.93344e-23) (0.393875 0.0340261 4.87447e-23) (0.386736 0.0486231 1.34806e-24) (0.390951 0.0564343 9.80689e-24) (3.54085 -8.33295 -4.36039e-20) (2.81286 -7.49494 -8.28627e-21) (2.48178 -6.64476 2.23106e-20) (2.08563 -5.95485 0) (1.85633 -5.34239 0) (1.6347 -4.78894 2.80772e-23) (1.4682 -4.28997 9.49584e-22) (1.31923 -3.82416 0) (1.19204 -3.38816 -1.7423e-21) (1.07689 -2.97701 5.77242e-22) (0.974276 -2.59309 -1.35425e-23) (0.881984 -2.23854 -2.3091e-22) (0.800396 -1.91638 -2.23249e-22) (0.728862 -1.62791 2.61984e-22) (0.66721 -1.37318 -1.76857e-22) (0.614615 -1.15092 1.74644e-23) (0.570414 -0.958965 -3.90022e-23) (0.533626 -0.794627 3.08505e-23) (0.503391 -0.655041 -2.91289e-24) (0.478803 -0.537426 4.72451e-23) (0.459148 -0.439076 0) (0.443685 -0.357562 2.71808e-23) (0.431912 -0.290605 0) (0.423277 -0.236172 -3.16273e-23) (0.417437 -0.192264 3.45154e-23) (0.41387 -0.157127 -8.37122e-23) (0.412237 -0.128868 -1.68962e-23) (0.411858 -0.106035 0) (0.412262 -0.0868578 6.89164e-23) (0.412661 -0.0704839 0) (0.412486 -0.0553749 6.52266e-23) (0.411346 -0.0416556 -7.80414e-23) (0.408509 -0.02778 2.93048e-23) (0.404917 -0.0151045 -1.38653e-23) (0.398932 -0.0012505 -9.25021e-23) (0.394388 0.0105029 -5.59914e-24) (0.386756 0.0246646 7.13436e-23) (0.385294 0.0342092 5.171e-23) (0.378307 0.0486915 0) (0.383113 0.0563537 -9.80152e-24) (3.74932 -8.27243 7.81856e-21) (2.97717 -7.45743 5.95014e-23) (2.61696 -6.62912 6.37834e-23) (2.19624 -5.94435 2.85448e-21) (1.94432 -5.33989 0) (1.70726 -4.78942 -1.40573e-21) (1.52609 -4.29269 1.00028e-21) (1.36585 -3.8278 0) (1.2288 -3.39219 -6.33477e-22) (1.10559 -2.98098 2.47088e-21) (0.996159 -2.59678 -5.77766e-22) (0.898265 -2.24183 2.3257e-22) (0.812061 -1.9192 -8.87675e-23) (0.736785 -1.63027 1.70711e-22) (0.672113 -1.37514 3.29056e-22) (0.6171 -1.15252 -8.61272e-23) (0.570966 -0.960264 -3.90745e-23) (0.532636 -0.795674 2.91341e-23) (0.501169 -0.655882 2.38135e-23) (0.475593 -0.538101 -2.33854e-23) (0.455144 -0.439621 -2.6092e-23) (0.439039 -0.358008 0) (0.426744 -0.290982 3.27075e-23) (0.417681 -0.236505 -3.14011e-23) (0.411483 -0.192571 0) (0.407613 -0.15742 7.01046e-23) (0.405707 -0.129148 0) (0.405076 -0.10629 0) (0.405225 -0.0870724 -6.91545e-23) (0.405368 -0.0706338 0) (0.404919 -0.0554467 6.57344e-23) (0.40351 -0.0416302 6.27163e-23) (0.400402 -0.0276724 0) (0.396585 -0.0149086 -1.21981e-22) (0.390416 -0.0010229 1.26865e-23) (0.385797 0.0107645 8.4425e-23) (0.378171 0.0248618 0) (0.376886 0.0343834 -5.31176e-23) (0.37006 0.0487435 -3.44235e-23) (0.375443 0.0562611 -9.54053e-24) (3.95686 -8.20705 -5.55889e-20) (3.14151 -7.41518 2.79664e-20) (2.7521 -6.61203 6.18099e-22) (2.30801 -5.93318 1.094e-20) (2.03292 -5.33632 -2.11135e-21) (1.78054 -4.78976 0) (1.58465 -4.29533 -4.5096e-21) (1.41307 -3.83172 2.39516e-21) (1.26612 -3.3966 2.27822e-21) (1.13479 -2.9854 -1.63656e-21) (1.01849 -2.60092 9.90085e-22) (0.914951 -2.24557 -2.55325e-22) (0.824091 -1.92246 -1.5097e-22) (0.745038 -1.63304 -5.75144e-23) (0.677315 -1.37745 9.34608e-23) (0.619856 -1.15442 3.38612e-23) (0.571764 -0.961812 0) (0.531874 -0.796926 0) (0.499157 -0.656886 0) (0.47258 -0.538905 0) (0.451326 -0.440264 0) (0.434569 -0.358529 -3.13048e-23) (0.421742 -0.291413 -3.28133e-23) (0.412243 -0.236876 0) (0.40568 -0.192904 7.01058e-23) (0.4015 -0.157728 -7.04286e-23) (0.399317 -0.129434 -3.62588e-23) (0.398428 -0.106547 5.27692e-23) (0.39832 -0.0872851 5.28143e-23) (0.398203 -0.0707793 0) (0.397481 -0.0555126 1.55269e-25) (0.395803 -0.0415983 -4.74725e-23) (0.39243 -0.027559 -1.49746e-23) (0.388394 -0.0147088 1.32321e-23) (0.382049 -0.000796263 -1.27039e-23) (0.377365 0.0110235 -8.45208e-23) (0.369755 0.0250519 7.10561e-23) (0.36865 0.0345481 0) (0.361995 0.0487793 1.08678e-25) (0.367939 0.0561566 9.53455e-24) (4.16347 -8.13685 -1.239e-19) (3.30598 -7.36958 4.88171e-20) (2.88704 -6.59245 -2.954e-20) (2.42098 -5.92122 4.9308e-20) (2.12225 -5.33185 -3.05381e-21) (1.85451 -4.78987 -1.43266e-20) (1.64391 -4.29793 -3.61578e-21) (1.46092 -3.83584 -4.08387e-22) (1.30402 -3.40137 3.34148e-21) (1.16451 -2.99029 -1.07528e-21) (1.04129 -2.60556 1.0319e-21) (0.932055 -2.24975 2.57446e-22) (0.836497 -1.92616 0) (0.753629 -1.63621 6.85312e-23) (0.682822 -1.38011 -1.59909e-22) (0.622887 -1.15662 6.65333e-23) (0.572814 -0.963611 -1.18525e-22) (0.531342 -0.798383 -4.05124e-23) (0.497359 -0.658055 0) (0.469766 -0.539837 0) (0.447693 -0.441007 -3.17469e-23) (0.430274 -0.359123 -1.97461e-24) (0.416907 -0.291897 3.11871e-23) (0.406963 -0.237283 3.58127e-23) (0.400029 -0.19326 -1.04837e-22) (0.395531 -0.158051 -3.67633e-23) (0.393065 -0.129728 -3.71155e-23) (0.391914 -0.106807 3.62776e-23) (0.391545 -0.087496 -1.05146e-22) (0.391166 -0.0709205 6.89343e-23) (0.390171 -0.0555728 -6.63027e-23) (0.388227 -0.0415606 6.32515e-23) (0.384593 -0.0274405 -5.94825e-23) (0.380345 -0.0145057 1.22463e-22) (0.373833 -0.000569551 -1.11308e-22) (0.369093 0.0112791 0) (0.361508 0.0252345 -7.5013e-23) (0.360586 0.034703 3.74568e-24) (0.35411 0.0487987 7.08168e-23) (0.3606 0.0560406 -8.93534e-24) (4.3689 -8.062 -1.6707e-20) (3.47063 -7.32102 5.82486e-21) (3.02172 -6.56966 -3.03236e-20) (2.53496 -5.9083 2.91018e-20) (2.2124 -5.32653 0) (1.92921 -4.78972 0) (1.70392 -4.3005 0) (1.50942 -3.84016 0) (1.34253 -3.40647 -9.92234e-22) (1.19478 -2.99563 0) (1.06459 -2.61071 7.23611e-22) (0.949599 -2.25443 -9.76026e-22) (0.849291 -1.93028 0) (0.762568 -1.63979 0) (0.688641 -1.38312 0) (0.6262 -1.15912 0) (0.574118 -0.965663 1.15196e-22) (0.531043 -0.800046 8.40485e-25) (0.495775 -0.659388 3.8352e-23) (0.467151 -0.540899 3.35821e-23) (0.444248 -0.441848 3.35941e-23) (0.426156 -0.359791 -6.66181e-23) (0.412238 -0.292434 3.41438e-23) (0.401842 -0.237727 -3.59168e-23) (0.394528 -0.193641 0) (0.389707 -0.158388 -7.35162e-23) (0.386952 -0.13003 7.27474e-23) (0.385533 -0.107068 -3.60109e-23) (0.3849 -0.0877054 -3.51367e-23) (0.384257 -0.0710578 -5.18358e-23) (0.382989 -0.0556279 -1.66538e-23) (0.380781 -0.0415175 -7.93445e-23) (0.37689 -0.0273176 1.50404e-23) (0.372437 -0.0143001 1.22719e-22) (0.365767 -0.000342275 8.60183e-23) (0.360981 0.0115308 0) (0.35343 0.0254091 7.09077e-23) (0.352695 0.0348476 0) (0.346404 0.048802 -3.51703e-23) (0.353423 0.0559131 8.93079e-24) (4.57302 -7.98263 1.88227e-20) (3.6356 -7.26912 5.69812e-20) (3.15621 -6.54428 0) (2.64987 -5.89432 -3.18592e-21) (2.30345 -5.32042 2.2969e-21) (2.00464 -4.78927 -1.11285e-20) (1.76469 -4.30307 1.81074e-21) (1.5586 -3.84469 1.35753e-21) (1.38166 -3.41192 5.0644e-21) (1.22561 -3.0014 7.03663e-22) (1.0884 -2.61634 0) (0.967602 -2.25964 5.80213e-22) (0.862488 -1.93486 0) (0.771862 -1.64376 0) (0.694779 -1.3865 0) (0.629798 -1.16193 7.96218e-23) (0.57568 -0.96797 -1.36954e-22) (0.530978 -0.801917 4.86514e-23) (0.494408 -0.660888 0) (0.464736 -0.54209 3.64502e-23) (0.440989 -0.442789 -3.53969e-23) (0.422213 -0.360533 3.43852e-23) (0.407736 -0.293025 -7.30621e-23) (0.396879 -0.238209 3.40109e-23) (0.389178 -0.194045 -6.28967e-25) (0.384027 -0.158739 -3.70319e-23) (0.380977 -0.130338 0) (0.379286 -0.107332 -4.11946e-25) (0.378384 -0.0879133 0) (0.377477 -0.0711915 0) (0.375935 -0.0556782 0) (0.373466 -0.0414696 6.38232e-23) (0.369324 -0.0271908 4.52059e-23) (0.364672 -0.0140927 -9.56535e-23) (0.357853 -0.000115887 1.10522e-22) (0.353029 0.0117778 7.80951e-23) (0.34552 0.0255753 -7.57194e-23) (0.344974 0.0349818 0) (0.338875 0.0487891 0) (0.346406 0.0557744 0) (4.77564 -7.89889 8.68354e-21) (3.80098 -7.21375 -4.99367e-20) (3.29052 -6.5163 4.66166e-20) (2.76562 -5.87915 -5.89964e-23) (2.39545 -5.31348 -2.32305e-21) (2.08083 -4.78847 -1.67332e-21) (1.82627 -4.3056 -6.85434e-21) (1.60848 -3.84941 7.65615e-21) (1.42145 -3.41771 3.68708e-21) (1.25703 -3.00761 -5.95354e-21) (1.11274 -2.62245 2.33919e-21) (0.986076 -2.26534 -1.31624e-21) (0.876106 -1.93997 1.17389e-21) (0.781522 -1.64811 2.0392e-22) (0.70124 -1.39023 -6.50818e-23) (0.633687 -1.16505 -1.25106e-22) (0.577504 -0.970534 7.11752e-23) (0.531151 -0.803997 -4.90664e-23) (0.493257 -0.662554 0) (0.462522 -0.543412 -3.67397e-23) (0.437918 -0.443829 7.29082e-23) (0.418446 -0.36135 0) (0.403399 -0.29367 -1.48703e-24) (0.392073 -0.238727 7.40928e-23) (0.383977 -0.194474 7.48726e-23) (0.378489 -0.159105 3.76657e-23) (0.375138 -0.130654 -1.12042e-22) (0.373171 -0.107597 7.37807e-23) (0.371999 -0.08812 -7.25032e-23) (0.370824 -0.0713219 0) (0.36901 -0.0557243 0) (0.366282 -0.0414176 8.00662e-23) (0.361892 -0.0270608 4.49021e-23) (0.357049 -0.0138841 1.0994e-22) (0.350089 0.000108791 -1.97977e-22) (0.345236 0.0120196 -8.94272e-23) (0.337778 0.0257327 7.16349e-23) (0.337424 0.0351051 -4.70677e-23) (0.331523 0.0487603 -3.51894e-23) (0.339546 0.0556248 -8.8977e-24) (4.97659 -7.81101 9.02048e-20) (3.96686 -7.15458 6.24543e-21) (3.42468 -6.4856 -3.75976e-20) (2.88214 -5.86257 7.96318e-21) (2.48846 -5.30562 8.17874e-21) (2.15779 -4.78723 1.78592e-20) (1.88866 -4.30806 0) (1.65909 -3.8543 8.18491e-22) (1.46191 -3.42383 -2.69382e-21) (1.28905 -3.01425 2.93771e-21) (1.13762 -2.62903 1.66208e-21) (1.00503 -2.27152 -1.59368e-21) (0.890157 -1.94556 4.82533e-22) (0.791565 -1.65291 -6.54543e-22) (0.70803 -1.39431 0) (0.63787 -1.16848 0) (0.579591 -0.973356 -7.18385e-23) (0.531563 -0.806288 0) (0.492325 -0.664388 -4.35222e-23) (0.46051 -0.544865 4.17139e-23) (0.435034 -0.44497 -3.73613e-23) (0.414855 -0.362241 -1.48262e-24) (0.399229 -0.294368 1.14661e-22) (0.387423 -0.239282 -7.53712e-23) (0.378926 -0.194927 0) (0.373094 -0.159484 1.14433e-22) (0.369437 -0.130976 1.13008e-22) (0.367189 -0.107865 -7.49811e-23) (0.365742 -0.0883255 -2.88733e-25) (0.364299 -0.0714493 -3.54421e-23) (0.362213 -0.0557667 5.08614e-23) (0.359228 -0.0413619 -1.45144e-22) (0.354597 -0.0269284 -6.02867e-23) (0.349569 -0.013675 -2.20431e-22) (0.342476 0.000331129 9.91603e-23) (0.337604 0.0122556 0) (0.330204 0.025881 -7.47161e-23) (0.330043 0.0352173 1.07905e-22) (0.324344 0.0487157 3.25571e-23) (0.332842 0.0554645 1.16775e-25) (5.17569 -7.71943 -1.37015e-20) (4.13338 -7.09124 6.47998e-21) (3.55869 -6.45208 0) (2.99933 -5.84456 -2.4368e-20) (2.5825 -5.29693 2.08376e-20) (2.23557 -4.7856 1.78919e-21) (1.95189 -4.31049 0) (1.71045 -3.85939 8.71219e-22) (1.50308 -3.4303 -1.15606e-21) (1.3217 -3.02134 3.45311e-21) (1.16306 -2.6361 -8.06158e-22) (1.02448 -2.27819 -5.43085e-22) (0.904646 -1.95158 -1.07909e-21) (0.801997 -1.65819 -4.6209e-22) (0.71516 -1.39876 5.33811e-22) (0.642351 -1.17221 1.0033e-22) (0.581946 -0.976438 -2.48526e-23) (0.532215 -0.80879 -1.33237e-23) (0.491612 -0.666391 -3.04569e-24) (0.458698 -0.54645 -4.36898e-23) (0.432337 -0.446212 4.22044e-23) (0.411438 -0.363207 -3.89441e-23) (0.395223 -0.29512 1.30256e-24) (0.382931 -0.239874 -3.84018e-23) (0.374023 -0.195403 0) (0.367841 -0.159878 -1.17132e-22) (0.363872 -0.131306 7.68441e-23) (0.361339 -0.108135 -7.58281e-23) (0.359614 -0.0885302 1.10042e-22) (0.357902 -0.0715741 0) (0.355544 -0.0558057 1.02467e-22) (0.352305 -0.0413031 3.21838e-23) (0.347438 -0.026794 0) (0.342232 -0.0134661 1.10504e-22) (0.335015 0.000550489 0) (0.330131 0.0124854 -8.43552e-23) (0.322797 0.0260199 3.87285e-24) (0.322831 0.0353182 -5.43675e-23) (0.317337 0.0486556 -3.49613e-23) (0.32629 0.0552939 1.74174e-23) (5.37275 -7.62473 2.40461e-20) (4.30072 -7.02422 5.6139e-20) (3.69255 -6.41641 -3.98974e-20) (3.11708 -5.82573 3.69951e-20) (2.67761 -5.2879 1.54055e-20) (2.31418 -4.78392 -1.90792e-20) (2.01598 -4.31312 0) (1.7626 -3.86482 6.1635e-21) (1.54496 -3.43724 -1.06665e-20) (1.35499 -3.02895 3.18299e-21) (1.18908 -2.64372 0) (1.04445 -2.28538 1.54298e-21) (0.919585 -1.95808 -1.13464e-21) (0.812825 -1.6639 0) (0.722639 -1.40363 2.27993e-22) (0.647135 -1.17625 -3.06511e-22) (0.584569 -0.979786 1.53207e-22) (0.53311 -0.811509 -1.46762e-22) (0.491119 -0.668567 -4.65691e-23) (0.457089 -0.54817 1.3596e-22) (0.429827 -0.447556 -1.2645e-22) (0.408197 -0.364249 4.06077e-23) (0.391381 -0.295926 0) (0.378593 -0.240503 4.0965e-23) (0.369268 -0.195904 4.16299e-23) (0.362729 -0.160286 -3.92883e-23) (0.358443 -0.131643 -6.80903e-25) (0.355619 -0.108407 7.62455e-23) (0.353615 -0.0887343 3.73702e-23) (0.351631 -0.0716966 2.87033e-25) (0.349003 -0.0558419 -3.43434e-23) (0.345513 -0.041242 1.60842e-23) (0.340414 -0.0266585 -1.53901e-23) (0.335037 -0.0132581 0) (0.327705 0.000766249 -4.97049e-23) (0.322818 0.0127083 7.45857e-23) (0.315556 0.0261491 8.0068e-23) (0.315786 0.0354077 0) (0.310501 0.0485802 6.98009e-23) (0.319889 0.0551131 -8.64357e-24) (5.56735 -7.52692 6.70153e-20) (4.46894 -6.95538 -1.57368e-20) (3.82632 -6.37962 -4.15793e-20) (3.23536 -5.80656 2.59741e-20) (2.77385 -5.27879 -2.49519e-20) (2.39372 -4.78231 1.32317e-20) (2.08099 -4.31604 -1.1327e-20) (1.81557 -3.87067 -9.17654e-22) (1.58761 -3.44468 4.9673e-21) (1.38896 -3.03712 -3.72568e-21) (1.21571 -2.6519 1.6245e-21) (1.06494 -2.29313 -2.19555e-21) (0.934988 -1.9651 -2.44508e-22) (0.824057 -1.67006 -6.78923e-22) (0.730473 -1.40891 5.49061e-23) (0.652229 -1.18063 3.95098e-22) (0.587464 -0.983401 1.64114e-22) (0.534248 -0.814448 -1.22027e-22) (0.490847 -0.670917 -5.34722e-23) (0.455681 -0.550026 4.87038e-23) (0.427503 -0.449004 0) (0.405129 -0.365368 -4.29345e-23) (0.387703 -0.296788 1.25459e-22) (0.374411 -0.241171 1.00734e-24) (0.36466 -0.196429 -4.05111e-23) (0.357758 -0.160709 6.91966e-25) (0.353149 -0.131987 4.03255e-23) (0.35003 -0.108682 -7.7145e-23) (0.347743 -0.0889381 3.72443e-23) (0.345487 -0.0718173 -3.61563e-23) (0.34259 -0.0558757 -1.03981e-22) (0.338852 -0.0411789 0) (0.333527 -0.0265225 -6.10418e-23) (0.327986 -0.0130516 0) (0.320545 0.000977805 -1.173e-23) (0.315663 0.012924 5.34376e-23) (0.308479 0.0262683 -7.06661e-23) (0.308907 0.0354855 4.74872e-23) (0.303832 0.0484898 -6.69761e-23) (0.313636 0.0549226 0) (5.75915 -7.42561 0) (4.63818 -6.88351 0) (3.96033 -6.33977 3.71074e-20) (3.35422 -5.78485 -3.55682e-20) (2.87129 -5.2679 -1.6581e-20) (2.47425 -4.77954 1.65207e-20) (2.14694 -4.31838 -1.37509e-21) (1.86941 -3.87636 0) (1.63104 -3.45226 0) (1.42364 -3.0456 -8.92041e-22) (1.24296 -2.66051 2.91625e-22) (1.08598 -2.30133 1.97584e-22) (0.950869 -1.97257 -9.64544e-24) (0.835701 -1.67664 -3.91879e-22) (0.738668 -1.41455 9.956e-22) (0.657639 -1.18535 -4.89551e-22) (0.590633 -0.987268 -5.05978e-23) (0.535631 -0.817603 -1.3219e-22) (0.490796 -0.67344 1.53955e-22) (0.454476 -0.552016 -1.02272e-22) (0.425366 -0.450555 0) (0.402235 -0.366563 -1.51413e-25) (0.384188 -0.297704 -4.14118e-23) (0.370382 -0.241875 -4.0945e-23) (0.360199 -0.196978 0) (0.352926 -0.161145 0) (0.347988 -0.132339 -4.01648e-23) (0.344572 -0.108959 7.85266e-23) (0.341998 -0.0891417 -3.76237e-23) (0.33947 -0.0719364 0) (0.336304 -0.0559077 6.96683e-23) (0.332321 -0.0411146 -3.33546e-23) (0.326775 -0.0263864 -3.10861e-23) (0.321076 -0.0128472 0) (0.313537 0.00118463 4.99089e-23) (0.308667 0.0131321 -5.21769e-23) (0.301567 0.0263773 9.46701e-24) (0.302193 0.0355515 -2.51953e-23) (0.297329 0.0483847 3.47261e-23) (0.307528 0.0547226 -8.29427e-24) (5.94788 -7.3171 0) (4.80846 -6.8018 -5.14889e-20) (4.09466 -6.29092 8.75406e-20) (3.47348 -5.75634 -8.8617e-21) (2.96979 -5.25228 -4.79936e-20) (2.55568 -4.77348 2.11573e-20) (2.21379 -4.31863 -1.45907e-21) (1.92407 -3.8808 1.01722e-21) (1.67525 -3.45918 -6.98701e-22) (1.45902 -3.05385 3.62651e-21) (1.27084 -2.66914 -5.13155e-21) (1.10758 -2.30972 1.80883e-21) (0.967232 -1.9803 2.60772e-22) (0.847765 -1.6835 0) (0.747225 -1.42047 0) (0.663368 -1.19035 7.37186e-23) (0.594082 -0.991353 -1.35393e-22) (0.537259 -0.820939 1.40697e-22) (0.490967 -0.676112 3.01701e-23) (0.453472 -0.554124 0) (0.423414 -0.452197 2.34152e-23) (0.399514 -0.367826 -7.85637e-25) (0.380836 -0.298669 0) (0.366506 -0.242613 6.19743e-25) (0.355882 -0.197548 -4.2588e-23) (0.348233 -0.161594 4.19948e-23) (0.342961 -0.132696 3.19804e-25) (0.339242 -0.109238 -3.94417e-23) (0.336381 -0.0893445 3.83956e-23) (0.333578 -0.0720536 -7.35569e-23) (0.330145 -0.0559377 -3.48748e-23) (0.325921 -0.0410489 3.32448e-23) (0.320159 -0.0262504 6.15298e-23) (0.31431 -0.0126451 5.58718e-23) (0.306679 0.00138645 1.1795e-23) (0.301827 0.0133323 -5.34823e-23) (0.294818 0.0264761 0) (0.295641 0.0356059 -2.77466e-23) (0.290989 0.0482655 -1.53583e-23) (0.301563 0.0545135 8.93846e-24) (6.13419 -7.20062 5.24348e-21) (4.97977 -6.71226 -3.74451e-21) (4.22906 -6.23601 0) (3.59267 -5.72504 0) (3.06901 -5.23522 1.46288e-21) (2.63784 -4.76661 0) (2.28139 -4.31854 1.48262e-21) (1.97948 -3.8852 5.64752e-21) (1.72018 -3.46629 -6.19698e-21) (1.49505 -3.06241 0) (1.29933 -2.67817 0) (1.12972 -2.31853 -2.18606e-22) (0.984073 -1.98844 0) (0.860245 -1.69074 0) (0.756144 -1.42671 0) (0.669413 -1.19562 4.12737e-23) (0.597809 -0.995699 2.87638e-23) (0.539132 -0.824461 0) (0.491359 -0.678938 0) (0.452669 -0.556353 -2.83593e-23) (0.421647 -0.453931 2.46703e-23) (0.396964 -0.369158 4.72836e-23) (0.377643 -0.299683 -4.51938e-23) (0.362782 -0.243384 -4.38859e-23) (0.35171 -0.198139 4.29605e-23) (0.343677 -0.162055 0) (0.338067 -0.133059 4.14993e-23) (0.33404 -0.109519 -3.96381e-23) (0.330889 -0.0895468 3.87571e-23) (0.327812 -0.0721694 7.43374e-23) (0.324114 -0.0559662 3.50869e-23) (0.31965 -0.0409826 -2.95575e-25) (0.313679 -0.0261154 4.59967e-23) (0.307685 -0.0124459 -7.0444e-23) (0.29997 0.00158289 -5.00706e-23) (0.295145 0.0135243 5.22145e-23) (0.28823 0.0265645 -9.45853e-24) (0.28925 0.0356485 -2.2198e-23) (0.28481 0.0481323 -2.52174e-24) (0.295738 0.0542955 0) (6.31773 -7.0994 7.00477e-20) (5.15197 -6.64342 -1.2569e-19) (4.36377 -6.20069 5.13712e-20) (3.71195 -5.71099 -3.00492e-20) (3.16924 -5.23178 5.04896e-20) (2.72097 -4.77019 -5.28343e-21) (2.34992 -4.32646 -2.49779e-20) (2.03574 -3.89569 1.10075e-20) (1.7659 -3.47804 5.19316e-21) (1.53181 -3.07454 -4.97022e-21) (1.32846 -2.68995 0) (1.15242 -2.32947 2.21937e-22) (1.00141 -1.99824 7.61287e-23) (0.873153 -1.69926 0) (0.765433 -1.43394 0) (0.675778 -1.20165 -8.60839e-23) (0.601817 -1.00065 -2.9143e-23) (0.541253 -0.828421 0) (0.49197 -0.682099 1.4873e-22) (0.452066 -0.558838 1.71119e-23) (0.420064 -0.455855 -9.51428e-23) (0.394585 -0.37063 0) (0.37461 -0.300797 0) (0.359208 -0.244225 0) (0.34768 -0.198777 -2.23502e-23) (0.339258 -0.162546 4.25189e-23) (0.333303 -0.133441 2.094e-23) (0.328967 -0.109812 0) (0.325523 -0.0897564 1.95533e-23) (0.32217 -0.0722902 -3.74068e-23) (0.318208 -0.0559989 -3.52825e-23) (0.31351 -0.0409207 6.67089e-23) (0.307333 -0.0259856 -6.2547e-23) (0.301202 -0.0122535 0) (0.29341 0.00177114 5.0205e-23) (0.288618 0.0137057 -3.10531e-23) (0.281802 0.0266408 -8.13702e-24) (0.283019 0.0356784 1.24915e-23) (0.278789 0.047985 1.71957e-23) (0.290052 0.054069 -3.97731e-24) (6.49316 -7.03393 7.88033e-20) (5.32596 -6.60959 -7.46549e-20) (4.50099 -6.19203 2.25423e-21) (3.83314 -5.71731 -3.22114e-20) (3.27184 -5.24434 7.40641e-21) (2.80615 -4.78622 2.19179e-20) (2.42014 -4.34409 -1.19493e-20) (2.09343 -3.91382 1.07611e-20) (1.81283 -3.49582 -5.29716e-21) (1.56959 -3.09142 5.2603e-21) (1.35844 -2.7055 0) (1.17584 -2.3434 0) (1.01934 -2.0104 2.2342e-24) (0.886559 -1.70966 0) (0.775139 -1.44267 3.44661e-23) (0.682495 -1.20885 3.6521e-22) (0.606128 -1.00653 -3.06143e-22) (0.543636 -0.83311 0) (0.492811 -0.68582 -2.73522e-23) (0.451668 -0.561749 -1.19634e-22) (0.418668 -0.458102 9.38563e-23) (0.392378 -0.37234 -1.27583e-23) (0.371738 -0.302085 0) (0.355785 -0.24519 4.68456e-23) (0.343794 -0.199502 -6.71006e-23) (0.334974 -0.163096 1.09509e-23) (0.328671 -0.133862 -2.11128e-23) (0.32402 -0.110131 0) (0.320281 -0.0899848 -9.81925e-24) (0.316653 -0.0724254 0) (0.312429 -0.0560439 1.7708e-23) (0.307498 -0.04087 1.65475e-23) (0.301122 -0.0258672 -1.56008e-23) (0.29486 -0.0120731 0) (0.286999 0.0019461 1.18583e-23) (0.282246 0.0138728 9.87905e-24) (0.275532 0.0267021 2.25651e-23) (0.276945 0.0356936 1.33959e-23) (0.272924 0.0478225 2.55533e-24) (0.2845 0.0538337 3.973e-24) (6.65547 -6.89971 -8.26225e-20) (5.50204 -6.49851 1.95235e-20) (4.64146 -6.11445 5.72356e-20) (3.95633 -5.6701 5.87388e-22) (3.37683 -5.21617 0) (2.89352 -4.77135 0) (2.49225 -4.33866 -4.34382e-22) (2.15272 -3.9149 3.03474e-22) (1.86112 -3.50105 -5.96335e-21) (1.60851 -3.09912 5.49535e-21) (1.38939 -2.71434 0) (1.20006 -2.35247 0) (1.03794 -2.01905 -8.20618e-23) (0.900515 -1.71754 0) (0.785302 -1.44959 -3.54584e-23) (0.689593 -1.21477 0) (0.610762 -1.01147 0) (0.546297 -0.837152 1.78597e-22) (0.493893 -0.68909 -1.60953e-22) (0.451485 -0.564327 0) (0.417464 -0.460106 7.05925e-24) (0.390347 -0.373874 -3.91405e-23) (0.369029 -0.303243 4.97937e-23) (0.352514 -0.246058 0) (0.34005 -0.200154 4.6536e-23) (0.330828 -0.163592 -5.55536e-23) (0.324169 -0.134241 4.35938e-23) (0.319199 -0.110416 -4.15629e-23) (0.315164 -0.0901846 -1.005e-23) (0.31126 -0.0725358 0) (0.306775 -0.0560672 -1.82456e-23) (0.301616 -0.040801 -1.71097e-23) (0.295046 -0.0257344 1.58405e-23) (0.288658 -0.0118829 0) (0.280735 0.00212457 0) (0.276027 0.0140396 0) (0.26942 0.0267595 -8.89314e-24) (0.271026 0.0357013 0) (0.267212 0.0476507 0) (0.279082 0.0535912 0) (6.87658 -6.50746 0) (5.73149 -6.15817 0) (4.82357 -5.85351 0) (4.11426 -5.48246 0) (3.51246 -5.07888 0) (3.0067 -4.67204 0) (2.58568 -4.26851 0) (2.22953 -3.8665 0) (1.92366 -3.46847 0) (1.65886 -3.0779 0) (1.42937 -2.70101 0) (1.23132 -2.34441 0) (1.06192 -2.0144 0) (0.918518 -1.71502 0) (0.798443 -1.44835 0) (0.698824 -1.21427 0) (0.616862 -1.01137 0) (0.549896 -0.837237 0) (0.495495 -0.689276 0) (0.451486 -0.564501 0) (0.416167 -0.460255 0) (0.387992 -0.373989 0) (0.365798 -0.30333 0) (0.348549 -0.24613 0) (0.33546 -0.200223 0) (0.325695 -0.163662 0) (0.318553 -0.13431 0) (0.313145 -0.110465 0) (0.308699 -0.0901907 0) (0.304412 -0.0724693 0) (0.299567 -0.0559175 0) (0.294093 -0.0405544 0) (0.28726 -0.0254255 0) (0.280705 -0.0115216 0) (0.272706 0.00244968 0) (0.268067 0.0143237 0) (0.261616 0.0268822 0) (0.263496 0.0357356 0) (0.259979 0.0474404 0) (0.272244 0.0532745 0) (6.75563 -6.12546 0) (5.62477 -5.8762 0) (4.76368 -5.5909 0) (4.10007 -5.26092 0) (3.52459 -4.89546 0) (3.03161 -4.51892 0) (2.61586 -4.14037 0) (2.26038 -3.75897 0) (1.9523 -3.37781 0) (1.68404 -3.00177 0) (1.45075 -2.63769 0) (1.24902 -2.29248 0) (1.0762 -1.97241 0) (0.929722 -1.68152 0) (0.806886 -1.42192 0) (0.704817 -1.19361 0) (0.620691 -0.995331 0) (0.551826 -0.824863 0) (0.495772 -0.679763 0) (0.450337 -0.557227 0) (0.413781 -0.454724 0) (0.384537 -0.369814 0) (0.361414 -0.300215 0) (0.343355 -0.24384 0) (0.329549 -0.198569 0) (0.319146 -0.162484 0) (0.311421 -0.133467 0) (0.305477 -0.109828 0) (0.300525 -0.0896577 0) (0.295769 -0.0719507 0) (0.290487 -0.0553733 0) (0.284641 -0.0399521 0) (0.277509 -0.0248052 0) (0.270784 -0.0108924 0) (0.262734 0.00297973 0) (0.258231 0.0147474 0) (0.252019 0.0270662 0) (0.25428 0.0357701 0) (0.251166 0.0471629 0) (0.263921 0.0528519 0) (6.74407 -5.76991 0) (5.68493 -5.57994 0) (4.8315 -5.34075 0) (4.16872 -5.06338 0) (3.59207 -4.74016 0) (3.09273 -4.39416 0) (2.66877 -4.03882 0) (2.30494 -3.6754 0) (1.9886 -3.30796 0) (1.71271 -2.94294 0) (1.47282 -2.58806 0) (1.26564 -2.25084 0) (1.08846 -1.93777 0) (0.938523 -1.65304 0) (0.812944 -1.39876 0) (0.708665 -1.17497 0) (0.622712 -0.980475 0) (0.552299 -0.813117 0) (0.494909 -0.670531 0) (0.44831 -0.550028 0) (0.410724 -0.449151 0) (0.380565 -0.365541 0) (0.356623 -0.296978 0) (0.337827 -0.241425 0) (0.323349 -0.196799 0) (0.312329 -0.161202 0) (0.304029 -0.132533 0) (0.297546 -0.10911 0) (0.29208 -0.0890506 0) (0.286844 -0.0713622 0) (0.28112 -0.0547637 0) (0.274902 -0.0392894 0) (0.26748 -0.0241342 0) (0.260603 -0.0102258 0) (0.252529 0.00352768 0) (0.248193 0.0151719 0) (0.24225 0.0272321 0) (0.244915 0.0357693 0) (0.242221 0.0468379 0) (0.255451 0.0523847 0) (6.66908 -5.41477 0) (5.6522 -5.29822 0) (4.82502 -5.09704 0) (4.1861 -4.85815 0) (3.62704 -4.57214 0) (3.13419 -4.25579 0) (2.70991 -3.92413 0) (2.3426 -3.58023 0) (2.02101 -3.2287 0) (1.73924 -2.87698 0) (1.49368 -2.53347 0) (1.28145 -2.20604 0) (1.09998 -1.90134 0) (0.94654 -1.62368 0) (0.818137 -1.37529 0) (0.711604 -1.15634 0) (0.623838 -0.965762 0) (0.551942 -0.801562 0) (0.493312 -0.661487 0) (0.445657 -0.542985 0) (0.407144 -0.443697 0) (0.37616 -0.361347 0) (0.35147 -0.293788 0) (0.331987 -0.239031 0) (0.31687 -0.19503 0) (0.305252 -0.159906 0) (0.296382 -0.131576 0) (0.289355 -0.108363 0) (0.283366 -0.0884083 0) (0.277642 -0.0707345 0) (0.271473 -0.0541129 0) (0.264886 -0.0385861 0) (0.257188 -0.0234281 0) (0.250181 -0.00953314 0) (0.242113 0.00408684 0) (0.237979 0.0155896 0) (0.232333 0.0273739 0) (0.235428 0.0357295 0) (0.233167 0.0464611 0) (0.246852 0.0518723 0) (6.58196 -5.06906 0) (5.63588 -5.0091 0) (4.83838 -4.84974 0) (4.2138 -4.65025 0) (3.66552 -4.40133 0) (3.17587 -4.11444 0) (2.74954 -3.80571 0) (2.37812 -3.48074 0) (2.05134 -3.14489 0) (1.76403 -2.80651 0) (1.51321 -2.47464 0) (1.29632 -2.15746 0) (1.11085 -1.86169 0) (0.954052 -1.59171 0) (0.822881 -1.34975 0) (0.714091 -1.13611 0) (0.62449 -0.949838 0) (0.551099 -0.789088 0) (0.491235 -0.651749 0) (0.442551 -0.535412 0) (0.40315 -0.437834 0) (0.371386 -0.356835 0) (0.34599 -0.290347 0) (0.325856 -0.236436 0) (0.310125 -0.1931 0) (0.297921 -0.158478 0) (0.288483 -0.130507 0) (0.280908 -0.107517 0) (0.27439 -0.0876776 0) (0.268171 -0.0700245 0) (0.261556 -0.0533861 0) (0.254607 -0.037814 0) (0.246651 -0.0226654 0) (0.23954 -0.00879956 0) (0.231512 0.00466611 0) (0.227616 0.0160047 0) (0.222297 0.0274925 0) (0.225846 0.0356483 0) (0.224027 0.0460308 0) (0.238145 0.0513115 0) (6.47315 -4.72726 0) (5.59078 -4.71972 0) (4.82602 -4.60158 0) (4.22166 -4.43687 0) (3.68996 -4.22221 0) (3.20831 -3.96451 0) (2.78289 -3.67909 0) (2.40912 -3.37372 0) (2.0784 -3.05452 0) (1.78644 -2.73046 0) (1.53103 -2.41116 0) (1.30998 -2.10503 0) (1.12089 -1.81889 0) (0.961011 -1.55714 0) (0.827236 -1.32211 0) (0.716266 -1.11419 0) (0.624851 -0.932557 0) (0.549953 -0.775538 0) (0.488839 -0.641158 0) (0.439116 -0.527167 0) (0.398831 -0.43144 0) (0.366301 -0.351903 0) (0.340218 -0.286571 0) (0.319453 -0.233574 0) (0.303122 -0.190954 0) (0.290341 -0.156874 0) (0.280336 -0.129291 0) (0.27221 -0.106545 0) (0.265156 -0.0868347 0) (0.258439 -0.0692123 0) (0.25138 -0.0525672 0) (0.24408 -0.0369613 0) (0.235888 -0.0218381 0) (0.228705 -0.00802135 0) (0.220755 0.00526535 0) (0.217138 0.0164143 0) (0.212173 0.0275839 0) (0.2162 0.0355196 0) (0.214826 0.0455437 0) (0.229351 0.0506992 0) (6.34631 -4.39431 0) (5.53338 -4.43003 0) (4.80726 -4.35119 0) (4.22361 -4.21972 0) (3.70761 -4.0375 0) (3.23438 -3.80824 0) (2.81071 -3.54584 0) (2.43543 -3.26004 0) (2.10171 -2.95792 0) (1.80601 -2.64888 0) (1.54675 -2.34291 0) (1.32215 -2.04863 0) (1.12991 -1.77281 0) (0.967284 -1.51993 0) (0.831141 -1.29234 0) (0.718135 -1.09056 0) (0.624976 -0.913919 0) (0.548593 -0.76091 0) (0.486223 -0.629716 0) (0.435443 -0.518249 0) (0.394261 -0.424513 0) (0.36096 -0.346547 0) (0.334192 -0.282458 0) (0.312802 -0.230441 0) (0.295879 -0.188587 0) (0.282523 -0.155086 0) (0.271951 -0.127921 0) (0.263269 -0.105438 0) (0.255674 -0.0858717 0) (0.248457 -0.0682913 0) (0.24096 -0.0516512 0) (0.233325 -0.0360251 0) (0.224925 -0.0209461 0) (0.217706 -0.00720105 0) (0.209875 0.00587997 0) (0.206578 0.016812 0) (0.201997 0.0276421 0) (0.206523 0.0353366 0) (0.205593 0.0449962 0) (0.220496 0.050032 0) (6.20377 -4.071 0) (5.45828 -4.14271 0) (4.77263 -4.1002 0) (4.21195 -3.99927 0) (3.71358 -3.84679 0) (3.25114 -3.64484 0) (2.83127 -3.40533 0) (2.45596 -3.13931 0) (2.12051 -2.85485 0) (1.82215 -2.56159 0) (1.55995 -2.26978 0) (1.33251 -1.98812 0) (1.13767 -1.72335 0) (0.972717 -1.47996 0) (0.834497 -1.26034 0) (0.719649 -1.06514 0) (0.624862 -0.893852 0) (0.54705 -0.745146 0) (0.483439 -0.617375 0) (0.431596 -0.508621 0) (0.389499 -0.417026 0) (0.355412 -0.340748 0) (0.32795 -0.277992 0) (0.305931 -0.227022 0) (0.288413 -0.185988 0) (0.274482 -0.153105 0) (0.26334 -0.126385 0) (0.254096 -0.104186 0) (0.245957 -0.0847794 0) (0.238241 -0.067254 0) (0.230317 -0.0506328 0) (0.222367 -0.0350031 0) (0.213792 -0.0199897 0) (0.206578 -0.00634207 0) (0.198913 0.00650456 0) (0.195978 0.0171908 0) (0.191807 0.0276604 0) (0.196852 0.0350922 0) (0.196357 0.0443849 0) (0.211609 0.049307 0) (6.04696 -3.75928 0) (5.36766 -3.85959 0) (4.72523 -3.84927 0) (4.18939 -3.7764 0) (3.70913 -3.65121 0) (3.25854 -3.47506 0) (2.84397 -3.258 0) (2.46999 -3.01175 0) (2.13411 -2.74536 0) (1.8343 -2.46859 0) (1.57019 -2.1917 0) (1.34074 -1.92344 0) (1.14395 -1.67043 0) (0.977144 -1.43714 0) (0.837193 -1.22602 0) (0.72074 -1.03785 0) (0.624478 -0.872274 0) (0.545325 -0.728172 0) (0.480512 -0.604069 0) (0.427612 -0.498229 0) (0.384592 -0.408933 0) (0.349701 -0.334469 0) (0.32153 -0.273143 0) (0.29887 -0.223296 0) (0.28075 -0.183136 0) (0.266237 -0.150913 0) (0.254516 -0.12467 0) (0.244706 -0.102776 0) (0.236021 -0.0835465 0) (0.22781 -0.0660914 0) (0.219474 -0.0495059 0) (0.211235 -0.0338924 0) (0.202523 -0.0189695 0) (0.19536 -0.00544837 0) (0.18791 0.00713312 0) (0.18538 0.017543 0) (0.181644 0.027632 0) (0.187225 0.0347792 0) (0.187148 0.0437067 0) (0.202719 0.048521 0) (5.87792 -3.46024 0) (5.26196 -3.58236 0) (4.66342 -3.59966 0) (4.15368 -3.55191 0) (3.69233 -3.45125 0) (3.25501 -3.29913 0) (2.84754 -3.10395 0) (2.47657 -2.87748 0) (2.14174 -2.62953 0) (1.84188 -2.3699 0) (1.57701 -2.1087 0) (1.3465 -1.85456 0) (1.14849 -1.614 0) (0.980394 -1.39142 0) (0.839111 -1.18932 0) (0.721331 -1.00861 0) (0.623779 -0.849114 0) (0.5434 -0.709919 0) (0.477449 -0.589736 0) (0.423516 -0.487013 0) (0.379571 -0.400185 0) (0.343864 -0.327669 0) (0.314968 -0.267877 0) (0.291651 -0.219234 0) (0.272915 -0.18001 0) (0.257808 -0.148491 0) (0.245501 -0.122757 0) (0.235117 -0.101193 0) (0.225885 -0.0821604 0) (0.217187 -0.064794 0) (0.208458 -0.0482645 0) (0.199961 -0.0326912 0) (0.191158 -0.0178873 0) (0.184097 -0.00452522 0) (0.176913 0.00775849 0) (0.174832 0.0178603 0) (0.171552 0.0275498 0) (0.177681 0.0343905 0) (0.178 0.042959 0) (0.193863 0.0476705 0) (5.69833 -3.17476 0) (5.14201 -3.31237 0) (4.58735 -3.35231 0) (4.10472 -3.32649 0) (3.66284 -3.24768 0) (3.23982 -3.11769 0) (2.84112 -2.94362 0) (2.47488 -2.73682 0) (2.14273 -2.5076 0) (1.8443 -2.26568 0) (1.57999 -2.02085 0) (1.34947 -1.78152 0) (1.15107 -1.55405 0) (0.98229 -1.34276 0) (0.840127 -1.15018 0) (0.72134 -0.977354 0) (0.622714 -0.824307 0) (0.54125 -0.690324 0) (0.474243 -0.574315 0) (0.41932 -0.474921 0) (0.374463 -0.390734 0) (0.337934 -0.320305 0) (0.308296 -0.26216 0) (0.284305 -0.214806 0) (0.264936 -0.176584 0) (0.249222 -0.145818 0) (0.236318 -0.120627 0) (0.225354 -0.0994211 0) (0.215576 -0.0806082 0) (0.206401 -0.0633526 0) (0.197303 -0.0469034 0) (0.188586 -0.0313988 0) (0.179742 -0.0167464 0) (0.172838 -0.00357952 0) (0.165973 0.00837217 0) (0.164382 0.0181332 0) (0.161575 0.0274059 0) (0.168264 0.0339191 0) (0.168945 0.0421393 0) (0.185077 0.0467522 0) (5.50963 -2.90321 0) (5.00851 -3.05052 0) (4.4966 -3.1081 0) (4.04144 -3.10085 0) (3.6195 -3.04115 0) (3.21185 -2.93132 0) (2.82367 -2.77748 0) (2.46409 -2.59021 0) (2.13639 -2.37993 0) (1.84104 -2.15619 0) (1.57871 -1.92833 0) (1.34932 -1.70444 0) (1.15143 -1.49064 0) (0.982662 -1.29116 0) (0.84012 -1.10857 0) (0.720681 -0.944046 0) (0.621229 -0.797798 0) (0.538843 -0.669327 0) (0.470884 -0.557747 0) (0.415028 -0.461897 0) (0.369286 -0.380528 0) (0.331938 -0.312334 0) (0.301548 -0.255952 0) (0.276866 -0.20998 0) (0.256846 -0.17283 0) (0.240508 -0.142868 0) (0.226994 -0.118262 0) (0.215443 -0.0974433 0) (0.205121 -0.0788769 0) (0.195483 -0.0617584 0) (0.186047 -0.0454186 0) (0.177153 -0.0300161 0) (0.168323 -0.0155517 0) (0.161635 -0.0026199 0) (0.155143 0.00896437 0) (0.154083 0.0183518 0) (0.151761 0.0271925 0) (0.159014 0.0333581 0) (0.16002 0.0412453 0) (0.176405 0.0457621 0) (5.31266 -2.64544 0) (4.86174 -2.79729 0) (4.39075 -2.86771 0) (3.96309 -2.87562 0) (3.56157 -2.83242 0) (3.17032 -2.74084 0) (2.79441 -2.60624 0) (2.4435 -2.43824 0) (2.12218 -2.24703 0) (1.83165 -2.04184 0) (1.5728 -1.83143 0) (1.34579 -1.62348 0) (1.14937 -1.42386 0) (0.981347 -1.23666 0) (0.838972 -1.06449 0) (0.719272 -0.908652 0) (0.619268 -0.76954 0) (0.536147 -0.646875 0) (0.467358 -0.539979 0) (0.410642 -0.447888 0) (0.364052 -0.36952 0) (0.325898 -0.30371 0) (0.294752 -0.249215 0) (0.269365 -0.204722 0) (0.248678 -0.168718 0) (0.231698 -0.139618 0) (0.217561 -0.115638 0) (0.205417 -0.0952417 0) (0.194556 -0.0769527 0) (0.184474 -0.060003 0) (0.174733 -0.0438071 0) (0.165711 -0.0285457 0) (0.156957 -0.0143103 0) (0.150545 -0.00165683 0) (0.144481 0.00952401 0) (0.143987 0.0185051 0) (0.142158 0.0269014 0) (0.149976 0.0327013 0) (0.151261 0.0402747 0) (0.167892 0.0446958 0) (5.10748 -2.40088 0) (4.70159 -2.5528 0) (4.2692 -2.63165 0) (3.86883 -2.65145 0) (3.48823 -2.6223 0) (3.11452 -2.54717 0) (2.7527 -2.43079 0) (2.41258 -2.28172 0) (2.09965 -2.10958 0) (1.81576 -1.92314 0) (1.56198 -1.73054 0) (1.33863 -1.53893 0) (1.14471 -1.35388 0) (0.978202 -1.17936 0) (0.836573 -1.01797 0) (0.717036 -0.871163 0) (0.616778 -0.739501 0) (0.533129 -0.622924 0) (0.463648 -0.520959 0) (0.40616 -0.432841 0) (0.358772 -0.357658 0) (0.319835 -0.294387 0) (0.287937 -0.241906 0) (0.261836 -0.198994 0) (0.240465 -0.164215 0) (0.222828 -0.136038 0) (0.208055 -0.112732 0) (0.195314 -0.0927971 0) (0.183921 -0.0748219 0) (0.173417 -0.0580788 0) (0.163413 -0.0420672 0) (0.154316 -0.026992 0) (0.145701 -0.0130311 0) (0.139629 -0.000702558 0) (0.134045 0.0100388 0) (0.134148 0.0185822 0) (0.132812 0.0265241 0) (0.141193 0.031943 0) (0.142707 0.0392246 0) (0.15959 0.0435481 0) (4.89338 -2.16864 0) (4.52753 -2.31695 0) (4.13137 -2.40038 0) (3.75803 -2.42909 0) (3.399 -2.41178 0) (3.04408 -2.35145 0) (2.69822 -2.25225 0) (2.37105 -2.12164 0) (2.06859 -1.96844 0) (1.79318 -1.8008 0) (1.54606 -1.62617 0) (1.32769 -1.45113 0) (1.13729 -1.28092 0) (0.973111 -1.11937 0) (0.832833 -0.969076 0) (0.713902 -0.831589 0) (0.613711 -0.707661 0) (0.529759 -0.597435 0) (0.45974 -0.50064 0) (0.40158 -0.416708 0) (0.353457 -0.344894 0) (0.313768 -0.284319 0) (0.28113 -0.233983 0) (0.254311 -0.192757 0) (0.232245 -0.159288 0) (0.213936 -0.132098 0) (0.198516 -0.109519 0) (0.185175 -0.0900896 0) (0.173261 -0.0724708 0) (0.162364 -0.0559789 0) (0.15214 -0.0401991 0) (0.143027 -0.0253619 0) (0.134618 -0.0117254 0) (0.128949 0.000229193 0) (0.123892 0.0104953 0) (0.124619 0.0185716 0) (0.123772 0.0260522 0) (0.132709 0.0310781 0) (0.134397 0.0380915 0) (0.151553 0.0423126 0) (4.66911 -1.94773 0) (4.33894 -2.0896 0) (3.97687 -2.17444 0) (3.63041 -2.20947 0) (3.2938 -2.20205 0) (2.95905 -2.15503 0) (2.63103 -2.07195 0) (2.31894 -1.9592 0) (2.029 -1.82461 0) (1.76389 -1.67561 0) (1.52499 -1.51891 0) (1.31289 -1.36051 0) (1.12706 -1.20528 0) (0.965998 -1.05688 0) (0.827682 -0.917891 0) (0.709815 -0.789966 0) (0.610025 -0.674016 0) (0.52601 -0.57038 0) (0.45562 -0.478982 0) (0.396901 -0.399442 0) (0.348115 -0.331179 0) (0.307717 -0.273459 0) (0.274356 -0.2254 0) (0.246824 -0.185971 0) (0.224056 -0.153898 0) (0.205064 -0.127766 0) (0.188989 -0.10597 0) (0.175049 -0.0870984 0) (0.162629 -0.0698856 0) (0.151368 -0.0536975 0) (0.140975 -0.0382049 0) (0.131908 -0.023664 0) (0.123774 -0.0104064 0) (0.118568 0.00112276 0) (0.114083 0.0108791 0) (0.115452 0.0184618 0) (0.115083 0.0254773 0) (0.124564 0.0301021 0) (0.126373 0.0368708 0) (0.14384 0.0409812 0) (4.43345 -1.73743 0) (4.13551 -1.87083 0) (3.80585 -1.95457 0) (3.48639 -1.99379 0) (3.17318 -1.99458 0) (2.86006 -1.95948 0) (2.55169 -1.89145 0) (2.25671 -1.79578 0) (1.98121 -1.67927 0) (1.72811 -1.5485 0) (1.49889 -1.40948 0) (1.29428 -1.26758 0) (1.11399 -1.12729 0) (0.956833 -0.992101 0) (0.821082 -0.864542 0) (0.704737 -0.746349 0) (0.605691 -0.638578 0) (0.521862 -0.541742 0) (0.451279 -0.455951 0) (0.392124 -0.381 0) (0.342756 -0.316468 0) (0.301699 -0.26176 0) (0.267644 -0.216114 0) (0.239407 -0.178592 0) (0.215936 -0.148009 0) (0.196257 -0.123008 0) (0.179523 -0.102059 0) (0.164988 -0.0838023 0) (0.152082 -0.0670533 0) (0.140494 -0.0512306 0) (0.129984 -0.0360885 0) (0.121027 -0.0219098 0) (0.113235 -0.00908965 0) (0.10855 0.00196083 0) (0.104673 0.0111754 0) (0.106696 0.0182418 0) (0.106788 0.0247907 0) (0.116802 0.0290111 0) (0.11868 0.0355559 0) (0.136512 0.0395442 0) (4.18599 -1.53742 0) (3.91783 -1.66104 0) (3.61947 -1.74185 0) (3.32729 -1.78354 0) (3.03852 -1.79108 0) (2.74841 -1.7666 0) (2.46136 -1.71244 0) (2.18524 -1.63289 0) (1.92589 -1.53366 0) (1.68629 -1.42049 0) (1.46805 -1.29865 0) (1.27202 -1.17291 0) (1.09818 -1.04736 0) (0.945648 -0.92529 0) (0.813035 -0.809182 0) (0.698658 -0.700818 0) (0.600694 -0.601372 0) (0.517304 -0.511515 0) (0.446712 -0.431518 0) (0.387252 -0.361342 0) (0.337393 -0.300716 0) (0.295736 -0.249176 0) (0.261022 -0.206078 0) (0.232097 -0.170579 0) (0.207928 -0.141578 0) (0.187561 -0.117789 0) (0.17017 -0.0977555 0) (0.155051 -0.0801799 0) (0.141682 -0.0639613 0) (0.129807 -0.0485751 0) (0.119237 -0.0338562 0) (0.110453 -0.0201127 0) (0.103068 -0.00779258 0) (0.0989567 0.00272545 0) (0.0957154 0.0113685 0) (0.0983974 0.0179005 0) (0.098929 0.0239838 0) (0.109462 0.0278014 0) (0.111362 0.0341382 0) (0.129632 0.0379891 0) (3.92783 -1.34802 0) (3.68792 -1.46111 0) (3.42013 -1.53768 0) (3.15557 -1.58045 0) (2.89215 -1.59344 0) (2.6262 -1.57827 0) (2.36175 -1.53669 0) (2.1059 -1.47208 0) (1.86403 -1.38909 0) (1.63915 -1.29263 0) (1.43295 -1.18722 0) (1.24643 -1.07708 0) (1.0798 -0.965896 0) (0.93254 -0.85673 0) (0.803589 -0.751986 0) (0.691596 -0.653469 0) (0.595041 -0.562442 0) (0.512339 -0.479701 0) (0.441925 -0.405663 0) (0.382296 -0.340434 0) (0.332042 -0.28388 0) (0.289851 -0.235663 0) (0.254519 -0.195248 0) (0.224931 -0.161888 0) (0.200077 -0.134567 0) (0.179028 -0.112073 0) (0.160988 -0.0930304 0) (0.1453 -0.07621 0) (0.131498 -0.0605983 0) (0.119379 -0.0457302 0) (0.108806 -0.0315163 0) (0.10026 -0.0182883 0) (0.0933409 -0.00653417 0) (0.0898469 0.00339791 0) (0.0872605 0.0114429 0) (0.0905972 0.0174277 0) (0.0915446 0.023048 0) (0.102582 0.0264691 0) (0.104465 0.0326059 0) (0.123263 0.0363008 0) (3.66217 -1.17003 0) (3.44951 -1.27226 0) (3.21171 -1.34368 0) (2.97487 -1.38639 0) (2.73732 -1.40357 0) (2.49622 -1.39637 0) (2.25519 -1.36595 0) (2.02048 -1.31486 0) (1.797 -1.24684 0) (1.58767 -1.16593 0) (1.39427 -1.076 0) (1.21794 -0.980706 0) (1.05915 -0.883337 0) (0.917685 -0.786718 0) (0.792844 -0.693147 0) (0.683608 -0.604414 0) (0.588762 -0.521838 0) (0.506986 -0.446313 0) (0.436933 -0.378371 0) (0.377273 -0.318245 0) (0.326724 -0.265921 0) (0.284071 -0.221176 0) (0.24817 -0.183579 0) (0.21795 -0.152474 0) (0.192431 -0.126935 0) (0.170713 -0.105824 0) (0.15204 -0.087854 0) (0.135805 -0.0718719 0) (0.121603 -0.0569541 0) (0.109288 -0.0426963 0) (0.0987686 -0.029079 0) (0.0905195 -0.0164535 0) (0.0841178 -0.00533446 0) (0.0812755 0.00395936 0) (0.0793524 0.0113832 0) (0.0833327 0.0168136 0) (0.0846694 0.0219741 0) (0.0961975 0.0250099 0) (0.0980333 0.0309441 0) (0.117461 0.034461 0) (3.39427 -1.00453 0) (3.20797 -1.09581 0) (2.99933 -1.16145 0) (2.78983 -1.20311 0) (2.57808 -1.22326 0) (2.36188 -1.22259 0) (2.14443 -1.20175 0) (1.93115 -1.1626 0) (1.72642 -1.10803 0) (1.53305 -1.04133 0) (1.35286 -0.965727 0) (1.18715 -0.884349 0) (1.03661 -0.8001 0) (0.901338 -0.71555 0) (0.780962 -0.632859 0) (0.674793 -0.553771 0) (0.581918 -0.479622 0) (0.501285 -0.411369 0) (0.431766 -0.349634 0) (0.372209 -0.294748 0) (0.321469 -0.246802 0) (0.278427 -0.205674 0) (0.242012 -0.171027 0) (0.211199 -0.142295 0) (0.185041 -0.118639 0) (0.162677 -0.0990047 0) (0.143392 -0.0821973 0) (0.126639 -0.0671459 0) (0.112076 -0.0530197 0) (0.0996122 -0.039476 0) (0.0892017 -0.0265563 0) (0.0813024 -0.0146267 0) (0.0754599 -0.00421395 0) (0.0732921 0.00439137 0) (0.0720298 0.0111745 0) (0.0766358 0.0160491 0) (0.0783345 0.0207528 0) (0.0903412 0.0234186 0) (0.0921117 0.029134 0) (0.112278 0.0324484 0) (3.13092 -0.852493 0) (2.96978 -0.932901 0) (2.78893 -0.992297 0) (2.6057 -1.03202 0) (2.41893 -1.0539 0) (2.22697 -1.05825 0) (2.03256 -1.04532 0) (1.84033 -1.01639 0) (1.65415 -0.973617 0) (1.47666 -0.919612 0) (1.30974 -0.857032 0) (1.15479 -0.788507 0) (1.01269 -0.716561 0) (0.883837 -0.643496 0) (0.768166 -0.571307 0) (0.665296 -0.501654 0) (0.574606 -0.435854 0) (0.4953 -0.374892 0) (0.426471 -0.319444 0) (0.367144 -0.269919 0) (0.316312 -0.226487 0) (0.27296 -0.189114 0) (0.236088 -0.157549 0) (0.204726 -0.131308 0) (0.177964 -0.10964 0) (0.154984 -0.0915804 0) (0.135118 -0.0760319 0) (0.117882 -0.0620136 0) (0.102999 -0.048788 0) (0.090436 -0.0360726 0) (0.080184 -0.0239608 0) (0.0726785 -0.0128263 0) (0.067424 -0.00319275 0) (0.0659403 0.00467665 0) (0.0653255 0.0108028 0) (0.0705326 0.0151253 0) (0.0725664 0.0193743 0) (0.0850407 0.0216882 0) (0.0867388 0.0271534 0) (0.107753 0.0302385 0) (2.87954 -0.714411 0) (2.74179 -0.784153 0) (2.58668 -0.836965 0) (2.42789 -0.873908 0) (2.26452 -0.896299 0) (2.09537 -0.904161 0) (1.92275 -0.897441 0) (1.75056 -0.876937 0) (1.58217 -0.844237 0) (1.42004 -0.801342 0) (1.26605 -0.750393 0) (1.12168 -0.69357 0) (0.987987 -0.633026 0) (0.865604 -0.570784 0) (0.754747 -0.508648 0) (0.655316 -0.448163 0) (0.566959 -0.390589 0) (0.489125 -0.3369 0) (0.421116 -0.287797 0) (0.362131 -0.243734 0) (0.311301 -0.204944 0) (0.267716 -0.171458 0) (0.23045 -0.143102 0) (0.198588 -0.11947 0) (0.171265 -0.0998992 0) (0.147706 -0.0835167 0) (0.127297 -0.0693313 0) (0.109618 -0.0564579 0) (0.0944615 -0.0442527 0) (0.0818446 -0.0324909 0) (0.071794 -0.0213057 0) (0.0647147 -0.0110699 0) (0.0600622 -0.00228962 0) (0.0592579 0.00479966 0) (0.059266 0.0102555 0) (0.0650438 0.0140342 0) (0.0673868 0.0178279 0) (0.0803179 0.0198104 0) (0.0819472 0.0249766 0) (0.103909 0.0278043 0) (2.64713 -0.590094 0) (2.53036 -0.64946 0) (2.3983 -0.695451 0) (2.26144 -0.72887 0) (2.1192 -0.750622 0) (1.97079 -0.760537 0) (1.81811 -0.758362 0) (1.66438 -0.744542 0) (1.51251 -0.720193 0) (1.36477 -0.686814 0) (1.22301 -0.646085 0) (1.08875 -0.599779 0) (0.963186 -0.549695 0) (0.84714 -0.49757 0) (0.741063 -0.444997 0) (0.645106 -0.393372 0) (0.559156 -0.343865 0) (0.482885 -0.297404 0) (0.415793 -0.254681 0) (0.357243 -0.216169 0) (0.306499 -0.182137 0) (0.262753 -0.152667 0) (0.225156 -0.127646 0) (0.192849 -0.106742 0) (0.165013 -0.0893782 0) (0.140921 -0.074781 0) (0.120014 -0.0620705 0) (0.101939 -0.0504634 0) (0.0865545 -0.0394088 0) (0.0739265 -0.0287352 0) (0.0641102 -0.0186029 0) (0.0574754 -0.00937332 0) (0.0534221 -0.00152084 0) (0.0532767 0.0047474 0) (0.0538728 0.00952146 0) (0.0601852 0.012768 0) (0.0628122 0.0161029 0) (0.0761877 0.0177753 0) (0.0777601 0.0225756 0) (0.100748 0.0251173 0) (2.4395 -0.478557 0) (2.3408 -0.527918 0) (2.22859 -0.566945 0) (2.11069 -0.59621 0) (1.98683 -0.616298 0) (1.85656 -0.626942 0) (1.72147 -0.627785 0) (1.58417 -0.619021 0) (1.44715 -0.601401 0) (1.31246 -0.576014 0) (1.1819 -0.544144 0) (1.057 -0.507196 0) (0.939055 -0.466636 0) (0.82902 -0.423916 0) (0.72754 -0.380399 0) (0.634974 -0.337308 0) (0.551419 -0.29569 0) (0.476743 -0.256396 0) (0.410622 -0.220076 0) (0.352572 -0.187193 0) (0.301982 -0.15803 0) (0.258142 -0.132701 0) (0.220277 -0.111141 0) (0.187583 -0.0930839 0) (0.159289 -0.0780419 0) (0.134717 -0.0653436 0) (0.113365 -0.0542268 0) (0.0949441 -0.0440161 0) (0.0793768 -0.0342516 0) (0.0667736 -0.0248092 0) (0.0572118 -0.0158622 0) (0.0510228 -0.00774884 0) (0.0475479 -0.000898931 0) (0.0480247 0.00451018 0) (0.0491632 0.00859192 0) (0.0559676 0.0113197 0) (0.0588539 0.0141885 0) (0.0726565 0.0155712 0) (0.0741895 0.019922 0) (0.0982489 0.0221491 0) (2.26087 -0.378167 0) (2.17704 -0.417928 0) (2.08124 -0.449926 0) (1.97907 -0.474531 0) (1.87055 -0.492099 0) (1.75556 -0.502339 0) (1.6354 -0.504868 0) (1.51217 -0.499721 0) (1.38798 -0.487376 0) (1.26471 -0.468598 0) (1.14403 -0.444337 0) (1.0275 -0.415671 0) (0.916431 -0.383755 0) (0.811891 -0.34976 0) (0.714669 -0.314812 0) (0.625288 -0.279937 0) (0.544019 -0.246032 0) (0.470897 -0.21384 0) (0.405753 -0.183944 0) (0.348236 -0.156766 0) (0.297848 -0.132582 0) (0.25397 -0.111519 0) (0.215895 -0.0935472 0) (0.182876 -0.0784607 0) (0.154184 -0.0658581 0) (0.129194 -0.0551774 0) (0.107455 -0.04578 0) (0.088741 -0.0371034 0) (0.0730338 -0.0287762 0) (0.0604825 -0.0207141 0) (0.0511806 -0.0130892 0) (0.0454197 -0.00620363 0) (0.0424827 -0.000431133 0) (0.043528 0.00408262 0) (0.0451526 0.00746104 0) (0.0523991 0.00968354 0) (0.0555186 0.0120744 0) (0.0697226 0.0131863 0) (0.0712355 0.0169886 0) (0.0963652 0.0188733 0) (2.114 -0.28672 0) (2.04177 -0.317294 0) (1.95893 -0.342264 0) (1.86921 -0.361834 0) (1.77291 -0.376215 0) (1.67018 -0.38514 0) (1.56211 -0.38826 0) (1.4504 -0.385526 0) (1.33683 -0.377225 0) (1.22308 -0.36387 0) (1.11075 -0.346135 0) (1.00135 -0.324809 0) (0.896214 -0.300762 0) (0.796467 -0.274893 0) (0.703004 -0.248079 0) (0.616472 -0.221139 0) (0.537276 -0.194796 0) (0.465589 -0.16966 0) (0.401368 -0.146218 0) (0.344376 -0.124831 0) (0.294214 -0.105743 0) (0.25034 -0.0890766 0) (0.21211 -0.0748259 0) (0.178827 -0.0628377 0) (0.149805 -0.0527979 0) (0.124463 -0.044259 0) (0.102402 -0.0367127 0) (0.08345 -0.0297135 0) (0.0676417 -0.0229761 0) (0.0551581 -0.0164474 0) (0.0461041 -0.0102836 0) (0.0407329 -0.00473782 0) (0.0382726 -0.000117823 0) (0.0398147 0.00346487 0) (0.0418578 0.00612695 0) (0.0494872 0.00785565 0) (0.0528101 0.00975234 0) (0.0673768 0.0106092 0) (0.068887 0.013753 0) (0.0950267 0.0152679 0) (2.00057 -0.201825 0) (1.93682 -0.223529 0) (1.8636 -0.241463 0) (1.78315 -0.255707 0) (1.696 -0.266386 0) (1.60252 -0.273292 0) (1.50365 -0.276148 0) (1.40079 -0.274881 0) (1.29544 -0.269645 0) (1.18915 -0.260765 0) (1.08343 -0.248684 0) (0.97972 -0.233942 0) (0.879368 -0.217142 0) (0.78353 -0.198918 0) (0.693164 -0.179902 0) (0.609006 -0.160689 0) (0.53156 -0.141812 0) (0.4611 -0.123725 0) (0.397682 -0.106798 0) (0.341163 -0.0913092 0) (0.291218 -0.0774503 0) (0.247375 -0.0653242 0) (0.209039 -0.0549371 0) (0.175554 -0.0461835 0) (0.146274 -0.0388367 0) (0.120655 -0.0325697 0) (0.0983408 -0.0270106 0) (0.0792076 -0.0218356 0) (0.0633313 -0.0168422 0) (0.0509186 -0.0120005 0) (0.0420815 -0.00743691 0) (0.037039 -0.00334231 0) (0.0349725 4.98552e-05 0) (0.0369206 0.00266409 0) (0.039302 0.0045932 0) (0.0472433 0.00583542 0) (0.0507337 0.00721755 0) (0.0656068 0.00783064 0) (0.0671265 0.0102008 0) (0.0941452 0.0113194 0) (1.92215 -0.120594 0) (1.86394 -0.133659 0) (1.79713 -0.144539 0) (1.72289 -0.153248 0) (1.64186 -0.159862 0) (1.55463 -0.16425 0) (1.46205 -0.166236 0) (1.36526 -0.165757 0) (1.26563 -0.162888 0) (1.16456 -0.157808 0) (1.0635 -0.150768 0) (0.963848 -0.142083 0) (0.866936 -0.132108 0) (0.773933 -0.121222 0) (0.685834 -0.109807 0) (0.603428 -0.0982248 0) (0.527284 -0.0868048 0) (0.457748 -0.0758302 0) (0.394944 -0.0655323 0) (0.338792 -0.0560886 0) (0.289027 -0.0476227 0) (0.24522 -0.0402037 0) (0.206819 -0.03384 0) (0.173197 -0.0284698 0) (0.143736 -0.0239554 0) (0.117922 -0.0200958 0) (0.0954306 -0.0166629 0) (0.076173 -0.0134586 0) (0.0602559 -0.0103615 0) (0.0479034 -0.0073574 0) (0.0392318 -0.00452977 0) (0.0344332 -0.00199653 0) (0.0326545 9.13203e-05 0) (0.0348969 0.00169594 0) (0.0375222 0.00287101 0) (0.0456897 0.00362651 0) (0.0493031 0.00447101 0) (0.064405 0.0048448 0) (0.0659386 0.00633031 0) (0.0936258 0.00702484 0) (1.88062 -0.0403987 0) (1.82523 -0.0447457 0) (1.76174 -0.0483821 0) (1.69071 -0.0513055 0) (1.61287 -0.0535411 0) (1.52889 -0.0550435 0) (1.43959 -0.0557501 0) (1.34601 -0.0556359 0) (1.24941 -0.0547224 0) (1.15113 -0.0530654 0) (1.05257 -0.0507471 0) (0.955111 -0.0478703 0) (0.860069 -0.0445524 0) (0.768617 -0.0409193 0) (0.681764 -0.0370988 0) (0.600327 -0.0332135 0) (0.524907 -0.0293748 0) (0.455887 -0.0256794 0) (0.393429 -0.0222068 0) (0.337488 -0.0190182 0) (0.287827 -0.0161566 0) (0.244047 -0.0136467 0) (0.205614 -0.0114922 0) (0.17192 -0.00967257 0) (0.142364 -0.00814151 0) (0.116445 -0.0068309 0) (0.0938601 -0.00566341 0) (0.0745376 -0.00457204 0) (0.0586015 -0.00351626 0) (0.0462847 -0.00249195 0) (0.0377063 -0.00152875 0) (0.0330419 -0.000666067 0) (0.0314207 4.20121e-05 0) (0.0338231 0.000586552 0) (0.0365804 0.000982549 0) (0.044871 0.00123801 0) (0.048552 0.00152279 0) (0.0637808 0.00164994 0) (0.0653245 0.00215833 0) (0.0933865 0.00239606 0) (9.88344 -0.141695 -7.31771e-21) (9.877 -0.383162 1.40404e-20) (9.86445 -0.624785 1.90747e-21) (9.84546 -0.866344 -6.00592e-20) (9.82004 -1.10766 -3.96169e-24) (9.78826 -1.34856 6.01905e-20) (9.75013 -1.5889 7.64627e-21) (9.70566 -1.82848 -1.53242e-20) (9.65486 -2.06715 -1.13323e-19) (9.59775 -2.30474 2.39375e-19) (9.53435 -2.54107 0) (9.46469 -2.77599 1.21879e-19) (9.38878 -3.00934 -2.49005e-19) (9.30666 -3.24095 1.38154e-19) (9.21836 -3.47069 7.78123e-21) (9.1239 -3.69838 -2.40654e-19) (9.02333 -3.9239 -7.86059e-21) (8.91666 -4.1471 0) (8.80392 -4.36786 -2.65988e-19) (8.6851 -4.58604 2.45131e-19) (8.56024 -4.80155 -2.46478e-19) (8.42923 -5.01429 0) (8.29217 -5.2242 -5.21211e-19) (8.14854 -5.4313 2.7346e-19) (7.99905 -5.63552 -8.15697e-21) (7.84095 -5.83758 8.25119e-21) (7.67934 -6.03604 -4.13061e-21) (7.49798 -6.23881 4.18355e-21) (7.33722 -6.4232 0) (7.09862 -6.69136 0) (9.49848 -0.149098 7.00332e-21) (9.4924 -0.370762 0) (9.48096 -0.59273 0) (9.46407 -0.814769 0) (9.44162 -1.03666 0) (9.41364 -1.25824 -4.80863e-20) (9.38013 -1.47938 3.3527e-21) (9.34112 -1.69994 -6.73224e-21) (9.29661 -1.91977 6.73663e-21) (9.24661 -2.13873 -1.19832e-19) (9.19114 -2.35669 0) (9.1302 -2.57349 -6.78771e-21) (9.06383 -2.78901 1.13978e-19) (8.99205 -3.00311 1.36789e-20) (8.91487 -3.21565 -6.87293e-21) (8.83234 -3.4265 2.30347e-19) (8.74446 -3.63555 -2.12677e-19) (8.65126 -3.84265 0) (8.55277 -4.04769 0) (8.44898 -4.25056 -2.34649e-19) (8.33993 -4.45114 4.53486e-19) (8.22551 -4.64933 -2.18999e-19) (8.1059 -4.84503 2.3877e-19) (7.98048 -5.0382 0) (7.85034 -5.22854 0) (7.71219 -5.41676 0) (7.57303 -5.60025 2.27588e-19) (7.41469 -5.78739 0) (7.28293 -5.95001 -1.87972e-21) (7.08646 -6.18228 1.84464e-21) (9.12009 -0.150978 -7.27567e-22) (9.11418 -0.355675 2.18255e-21) (9.10355 -0.560523 2.08405e-20) (9.0883 -0.765415 -2.23039e-20) (9.06832 -0.970215 0) (9.04355 -1.1748 4.89015e-20) (9.01397 -1.37905 0) (8.97961 -1.58288 -8.96372e-20) (8.94046 -1.78616 -8.98187e-20) (8.89652 -1.98878 -5.87193e-21) (8.84779 -2.19065 8.29215e-24) (8.79428 -2.39165 1.18179e-20) (8.736 -2.59168 8.49337e-20) (8.67294 -2.79062 0) (8.60512 -2.98838 0) (8.53255 -3.18484 -1.19906e-20) (8.45522 -3.3799 2.26072e-19) (8.37315 -3.57347 -1.21326e-20) (8.28633 -3.76543 1.87001e-19) (8.19474 -3.95569 -1.88153e-19) (8.09841 -4.14415 -2.0643e-19) (7.9972 -4.33071 1.70463e-20) (7.89131 -4.51524 1.92121e-19) (7.78014 -4.69772 0) (7.66481 -4.87776 0) (7.54237 -5.05605 0) (7.41947 -5.22984 -1.69995e-20) (7.28065 -5.40697 0) (7.16643 -5.56127 -1.64387e-21) (7.0024 -5.77619 1.61405e-21) (8.75324 -0.152839 0) (8.74715 -0.341547 1.26208e-21) (8.73706 -0.530265 -2.24555e-20) (8.72302 -0.71895 2.11989e-20) (8.70492 -0.907541 -3.86765e-20) (8.68273 -1.09595 0) (8.65644 -1.2841 5.06305e-21) (8.62606 -1.4719 8.51719e-20) (8.59159 -1.65926 7.51747e-20) (8.55302 -1.84611 8.81934e-20) (8.51035 -2.03236 -5.11303e-21) (8.46358 -2.21793 7.84656e-20) (8.41271 -2.40274 -8.63023e-20) (8.35774 -2.5867 7.90552e-20) (8.29867 -2.76972 0) (8.2355 -2.95173 1.041e-20) (8.16824 -3.13264 -2.09391e-20) (8.09688 -3.31236 2.10524e-20) (8.02142 -3.4908 -1.88029e-19) (7.94186 -3.66788 3.41789e-19) (7.85821 -3.84351 1.07158e-20) (7.77038 -4.0176 1.80816e-19) (7.67854 -4.19001 -1.82145e-19) (7.58224 -4.36073 -1.09792e-20) (7.4824 -4.52939 0) (7.37675 -4.69659 5.57294e-21) (7.27058 -4.85994 -1.99331e-19) (7.15173 -5.02622 1.80498e-19) (7.05277 -5.17292 0) (6.91503 -5.37375 0) (8.39848 -0.152944 -4.17881e-21) (8.39217 -0.326575 -1.09215e-21) (8.38244 -0.500172 1.77937e-20) (8.36932 -0.673708 -2.18418e-21) (8.35277 -0.847135 4.33067e-20) (8.33274 -1.02039 -8.75338e-21) (8.30924 -1.19341 -2.91104e-20) (8.28227 -1.36614 0) (8.25183 -1.53851 -6.72355e-20) (8.2179 -1.71047 -1.41483e-19) (8.18049 -1.88196 -6.75874e-20) (8.1396 -2.05292 -6.70461e-21) (8.09522 -2.22329 0) (8.04734 -2.39301 -7.50485e-20) (7.99598 -2.56201 0) (7.94112 -2.73023 0) (7.88277 -2.89761 9.05864e-21) (7.82091 -3.06408 1.39455e-19) (7.75556 -3.22958 -1.83392e-20) (7.68669 -3.39404 -1.3639e-19) (7.61432 -3.55738 -9.29853e-21) (7.53838 -3.71954 0) (7.45899 -3.88041 0) (7.37584 -4.03998 -1.45785e-19) (7.2896 -4.19796 0) (7.19861 -4.35482 0) (7.1069 -4.50864 0) (7.00526 -4.66501 -1.65368e-19) (6.91977 -4.80491 1.25122e-21) (6.80413 -4.99264 -1.23054e-21) (8.05337 -0.151451 3.97002e-21) (8.04701 -0.310988 0) (8.03774 -0.47046 -1.39811e-20) (8.02557 -0.629843 -1.88663e-21) (8.01047 -0.7891 0) (7.99243 -0.948191 3.26029e-20) (7.97145 -1.10707 2.80309e-20) (7.94752 -1.26571 -2.89099e-20) (7.92065 -1.42405 5.91389e-21) (7.89082 -1.58207 1.22072e-19) (7.85805 -1.73971 5.65459e-20) (7.82232 -1.89693 1.71336e-21) (7.78364 -2.0537 -5.09639e-20) (7.74201 -2.20996 -7.71269e-21) (7.69743 -2.36567 0) (7.64989 -2.52078 -5.16599e-20) (7.59939 -2.67526 -7.82527e-21) (7.54593 -2.82904 -1.24393e-19) (7.48951 -2.98209 -1.36819e-19) (7.43012 -3.13435 7.97156e-21) (7.36777 -3.28577 -1.30732e-19) (7.30243 -3.43629 8.08966e-21) (7.23417 -3.58584 0) (7.16278 -3.73441 1.38034e-19) (7.08874 -3.88177 0) (7.0109 -4.0283 0) (6.93223 -4.1725 0) (6.84582 -4.31888 0) (6.77231 -4.45168 0) (6.67525 -4.62669 0) (7.71597 -0.148812 3.9091e-21) (7.70981 -0.295104 -8.12135e-22) (7.70115 -0.441314 -1.23741e-20) (7.69003 -0.587422 -3.24371e-21) (7.67641 -0.733404 -2.15087e-20) (7.6603 -0.879233 -3.06252e-20) (7.64169 -1.02488 3.25442e-21) (7.62058 -1.17032 3.39633e-20) (7.59698 -1.31552 9.82578e-20) (7.57088 -1.46045 -5.51317e-20) (7.54229 -1.60508 6.55896e-21) (7.5112 -1.74939 -6.20356e-20) (7.47763 -1.89334 6.22484e-20) (7.44156 -2.03691 -4.34816e-24) (7.403 -2.18005 -5.74819e-20) (7.36196 -2.32275 5.63726e-20) (7.31843 -2.46496 0) (7.27241 -2.60665 0) (7.2239 -2.7478 1.14671e-19) (7.1729 -2.88835 0) (7.11943 -3.02829 1.09335e-19) (7.06345 -3.16756 6.96248e-21) (7.00502 -3.30612 -1.07206e-19) (6.94401 -3.44395 0) (6.88074 -3.58092 -1.09212e-19) (6.81442 -3.71727 7.21941e-21) (6.74719 -3.85194 -7.29434e-21) (6.67394 -3.98842 0) (6.61087 -4.1139 -1.87051e-21) (6.52962 -4.2762 1.84379e-21) (7.38606 -0.14535 -2.94145e-21) (7.38023 -0.279203 0) (7.37228 -0.412968 1.31431e-20) (7.36223 -0.546631 -1.19999e-20) (7.35006 -0.680176 4.47279e-20) (7.33578 -0.813584 0) (7.31938 -0.946837 0) (7.30088 -1.07991 0) (7.28026 -1.2128 1.00048e-21) (7.25754 -1.34547 -4.83728e-20) (7.23272 -1.47791 0) (7.2058 -1.61009 -3.7364e-20) (7.17679 -1.742 -5.66803e-21) (7.14568 -1.87362 0) (7.11248 -2.00492 4.24816e-20) (7.07719 -2.13589 5.74302e-21) (7.03982 -2.2665 4.97552e-20) (7.00037 -2.39672 -5.8068e-21) (6.95884 -2.52655 5.8426e-21) (6.91523 -2.65595 -5.88259e-21) (6.86956 -2.78489 0) (6.8218 -2.91336 -9.10506e-20) (6.77201 -3.04133 9.63443e-21) (6.72009 -3.16877 -8.65803e-20) (6.66625 -3.29561 3.6026e-21) (6.60998 -3.42202 0) (6.55279 -3.54723 3.13178e-21) (6.49097 -3.6739 -6.3322e-21) (6.43707 -3.79182 3.2024e-21) (6.36932 -3.94146 0) (7.06454 -0.141228 0) (7.05907 -0.263444 0) (7.0518 -0.385571 -2.3827e-21) (7.04275 -0.507601 1.24558e-20) (7.03192 -0.629522 -4.39273e-21) (7.0193 -0.751323 2.05349e-20) (7.0049 -0.872991 -1.81663e-20) (6.98872 -0.994514 -1.34107e-20) (6.97077 -1.11588 -8.17297e-20) (6.95105 -1.23708 7.71052e-20) (6.92956 -1.35809 0) (6.90632 -1.47892 8.23682e-20) (6.88132 -1.59953 -4.17138e-20) (6.85457 -1.71992 9.72828e-21) (6.82608 -1.84008 -9.7739e-21) (6.79585 -1.96 0) (6.76388 -2.07965 -3.18141e-20) (6.73018 -2.19903 8.18008e-26) (6.69476 -2.31812 2.8019e-20) (6.65761 -2.4369 0) (6.61876 -2.55537 -1.01317e-20) (6.57818 -2.6735 9.12695e-20) (6.53592 -2.79129 9.20166e-20) (6.49191 -2.90871 8.24327e-20) (6.44631 -3.02572 1.73489e-19) (6.39877 -3.14244 8.0625e-20) (6.35033 -3.25835 -8.14911e-20) (6.29837 -3.37538 0) (6.25246 -3.48561 0) (6.1962 -3.62276 8.28838e-20) (6.75232 -0.136479 5.0916e-22) (6.74718 -0.24785 -4.37635e-21) (6.74052 -0.359133 0) (6.73236 -0.470324 0) (6.72269 -0.581416 -1.72177e-20) (6.71153 -0.692401 -1.72271e-20) (6.69887 -0.803274 3.67966e-20) (6.68472 -0.914025 1.31829e-20) (6.66908 -1.02465 3.4589e-20) (6.65197 -1.13514 -3.87559e-20) (6.63338 -1.24549 2.4703e-24) (6.61332 -1.35568 -3.07282e-20) (6.5918 -1.46572 3.4963e-20) (6.56883 -1.5756 -2.32166e-20) (6.54441 -1.6853 -8.33135e-21) (6.51855 -1.79483 3.17923e-20) (6.49126 -1.90417 0) (6.46253 -2.01331 0) (6.43238 -2.12225 -2.74822e-20) (6.40082 -2.23098 2.39816e-20) (6.36785 -2.33949 0) (6.33347 -2.44778 0) (6.29771 -2.55583 0) (6.26053 -2.66364 0) (6.22203 -2.77118 -1.4324e-19) (6.18199 -2.87852 -7.61574e-20) (6.14112 -2.98534 7.23841e-20) (6.09761 -3.09299 6.90328e-21) (6.05863 -3.19549 -2.32674e-21) (6.01211 -3.3205 -7.83589e-21) (6.44956 -0.131081 0) (6.44471 -0.232367 3.67127e-21) (6.43858 -0.333569 -6.56943e-21) (6.43119 -0.434684 0) (6.42253 -0.53571 -1.3136e-20) (6.41262 -0.636642 0) (6.40146 -0.737475 -1.46919e-20) (6.38905 -0.838208 0) (6.3754 -0.938836 0) (6.36052 -1.03935 0) (6.34442 -1.13976 0) (6.3271 -1.24005 0) (6.30856 -1.34023 0) (6.28883 -1.44028 1.01804e-20) (6.2679 -1.5402 -1.4157e-20) (6.24578 -1.63999 -2.30158e-20) (6.22248 -1.73966 2.71017e-20) (6.19801 -1.83918 -2.00633e-20) (6.17238 -1.93856 -3.46314e-20) (6.14559 -2.03781 -3.80781e-20) (6.11765 -2.1369 7.3188e-21) (6.08857 -2.23585 -7.37791e-21) (6.05835 -2.33464 7.42967e-21) (6.02701 -2.43327 7.50011e-21) (5.99458 -2.53174 -8.77457e-22) (5.96094 -2.63009 -3.82069e-21) (5.92655 -2.7281 -5.46707e-20) (5.89021 -2.82671 0) (5.8572 -2.92153 0) (5.81886 -3.03486 -6.65314e-20) (6.1554 -0.125008 6.97065e-22) (6.1508 -0.216922 0) (6.14514 -0.308757 1.18033e-20) (6.13842 -0.400511 0) (6.13065 -0.492184 1.24685e-20) (6.12182 -0.583775 -2.93741e-21) (6.11195 -0.675282 5.88192e-21) (6.10105 -0.766703 -5.8881e-21) (6.08912 -0.858038 2.94938e-21) (6.07616 -0.949285 -2.23754e-20) (6.06219 -1.04044 2.24234e-20) (6.04721 -1.13151 0) (6.03124 -1.22249 -2.25459e-20) (6.01428 -1.31338 8.69944e-21) (5.99633 -1.40417 -2.8701e-20) (5.97741 -1.49487 -6.01982e-21) (5.95753 -1.58548 -1.96222e-20) (5.93669 -1.676 5.49006e-20) (5.9149 -1.76641 4.90934e-20) (5.89217 -1.85674 -2.94341e-20) (5.86852 -1.94696 2.96285e-20) (5.84394 -2.0371 -1.24648e-20) (5.81845 -2.12713 6.27611e-21) (5.79206 -2.21707 -4.7937e-20) (5.76478 -2.30691 1.02537e-19) (5.73657 -2.39667 0) (5.7077 -2.48624 2.69431e-21) (5.6774 -2.57621 5.30572e-20) (5.64951 -2.66349 1.6649e-21) (5.61798 -2.76573 -1.6533e-21) (5.86802 -0.118254 -1.25073e-21) (5.86367 -0.201446 0) (5.85844 -0.284564 -6.52693e-21) (5.85232 -0.36761 1.24342e-21) (5.84532 -0.450584 2.48373e-21) (5.83745 -0.533486 -2.48699e-21) (5.82872 -0.616317 1.18947e-20) (5.81914 -0.699076 -2.49042e-21) (5.8087 -0.781765 -9.4284e-21) (5.79742 -0.864384 2.12246e-20) (5.7853 -0.946934 -2.12664e-20) (5.77236 -1.02941 0) (5.75859 -1.11183 2.35879e-21) (5.74402 -1.19417 4.05123e-20) (5.72865 -1.27645 2.15148e-20) (5.71248 -1.35867 5.07936e-21) (5.69553 -1.44081 -5.10136e-21) (5.6778 -1.5229 -2.41336e-21) (5.65931 -1.60492 -2.19073e-20) (5.64006 -1.68689 4.1618e-20) (5.62006 -1.76879 -7.6735e-21) (5.59933 -1.85063 1.98284e-20) (5.57786 -1.93242 1.05658e-20) (5.55568 -2.01415 8.01954e-20) (5.53279 -2.09583 -5.10111e-20) (5.50918 -2.17746 8.11552e-21) (5.485 -2.259 8.50067e-20) (5.45979 -2.34078 -4.69136e-20) (5.43627 -2.42073 0) (5.41044 -2.51256 4.20425e-20) (5.58487 -0.110829 5.87834e-22) (5.58077 -0.18588 -3.55699e-21) (5.57593 -0.260866 1.04938e-21) (5.57037 -0.335788 -3.96093e-21) (5.56408 -0.410648 0) (5.55708 -0.485447 0) (5.54937 -0.560187 -1.31204e-20) (5.54095 -0.634869 1.21282e-20) (5.53184 -0.709495 1.2682e-20) (5.52204 -0.784066 -7.94375e-21) (5.51156 -0.858585 4.21561e-21) (5.5004 -0.933052 1.59514e-20) (5.48858 -1.00747 1.37936e-20) (5.4761 -1.08184 -2.56172e-20) (5.46297 -1.15617 -4.2578e-21) (5.4492 -1.23045 0) (5.4348 -1.30469 1.61934e-20) (5.41977 -1.37889 -3.46061e-20) (5.40412 -1.45306 0) (5.38787 -1.52719 -3.92923e-20) (5.37103 -1.60128 -1.42594e-20) (5.3536 -1.67535 -3.53449e-20) (5.33558 -1.74938 -4.42843e-21) (5.317 -1.82339 -3.79988e-20) (5.29787 -1.89738 4.48764e-21) (5.27817 -1.97134 0) (5.25801 -2.04527 -4.11967e-20) (5.23711 -2.11934 -4.11764e-24) (5.21735 -2.19224 2.32209e-21) (5.19632 -2.27436 -3.9651e-20) (5.3029 -0.102783 4.71136e-22) (5.29906 -0.17021 9.99991e-22) (5.29462 -0.237581 2.64651e-21) (5.28959 -0.304897 3.75762e-21) (5.28397 -0.372161 -3.52631e-21) (5.27778 -0.439375 8.41976e-21) (5.271 -0.506542 0) (5.26366 -0.573664 -1.41831e-20) (5.25575 -0.640744 -1.41942e-20) (5.24728 -0.707783 7.53786e-21) (5.23826 -0.774785 -3.5385e-21) (5.2287 -0.841752 1.80536e-21) (5.2186 -0.908686 0) (5.20798 -0.975591 1.51906e-20) (5.19683 -1.04247 0) (5.18517 -1.10932 0) (5.173 -1.17615 -1.53312e-20) (5.16033 -1.24296 1.78887e-21) (5.14718 -1.30975 0) (5.13355 -1.37653 8.25021e-21) (5.11944 -1.4433 7.30872e-21) (5.10487 -1.51005 1.56864e-20) (5.08985 -1.5768 3.69593e-21) (5.07438 -1.64354 -3.71634e-21) (5.05848 -1.71028 -3.7438e-21) (5.04215 -1.77702 -1.04284e-20) (5.02544 -1.84375 0) (5.00821 -1.91057 2.69091e-20) (4.99172 -1.97671 2.89519e-21) (4.97478 -2.0498 -9.64516e-22) (5.0191 -0.0942509 3.70917e-22) (5.01556 -0.15451 -3.70997e-22) (5.01155 -0.214722 1.48079e-21) (5.00705 -0.274889 -4.27539e-21) (5.00209 -0.335015 -2.79241e-21) (4.99666 -0.395102 -7.33261e-22) (4.99076 -0.455154 5.58331e-21) (4.98441 -0.515173 9.2778e-21) (4.97761 -0.575162 -5.18806e-21) (4.97036 -0.635125 2.96571e-21) (4.96267 -0.695064 -8.56119e-21) (4.95454 -0.754982 -3.77537e-21) (4.94599 -0.814883 -5.95347e-21) (4.93702 -0.874769 5.95909e-21) (4.92763 -0.934643 -4.52329e-24) (4.91784 -0.994508 5.29639e-21) (4.90765 -1.05437 6.00307e-21) (4.89706 -1.11422 6.84572e-21) (4.88609 -1.17408 5.34251e-21) (4.87475 -1.23393 6.06665e-21) (4.86303 -1.29379 -1.14695e-20) (4.85096 -1.35366 -6.11783e-21) (4.83853 -1.41354 -8.49855e-21) (4.82576 -1.47342 3.0893e-21) (4.81266 -1.53332 0) (4.79922 -1.59324 2.51413e-20) (4.78549 -1.65317 0) (4.7714 -1.71316 -3.90507e-20) (4.75775 -1.77281 7.98882e-22) (4.7443 -1.8375 -2.48324e-20) (4.73131 -0.0854696 0) (4.72813 -0.138971 -6.21581e-22) (4.72457 -0.192435 6.9129e-22) (4.72063 -0.245865 1.40934e-21) (4.71631 -0.299263 2.65059e-21) (4.71162 -0.352634 -7.64015e-21) (4.70656 -0.405981 -5.29848e-21) (4.70113 -0.459306 2.2008e-21) (4.69535 -0.512614 5.58208e-21) (4.68921 -0.565908 -2.76316e-21) (4.68272 -0.619189 1.49603e-20) (4.67588 -0.672463 -4.68705e-21) (4.66871 -0.725732 -4.4091e-21) (4.6612 -0.778999 -9.96485e-21) (4.65337 -0.832266 9.97978e-21) (4.64522 -0.885538 -1.56886e-20) (4.63675 -0.938816 0) (4.62798 -0.992104 -5.01802e-21) (4.61891 -1.0454 -5.73261e-21) (4.60955 -1.09872 0) (4.5999 -1.15205 1.08379e-20) (4.58997 -1.2054 0) (4.57977 -1.25877 1.09232e-20) (4.56931 -1.31217 -5.12167e-21) (4.5586 -1.36559 1.48215e-20) (4.54764 -1.41904 -1.10826e-20) (4.53644 -1.47252 0) (4.525 -1.52605 1.12123e-20) (4.51383 -1.57946 -9.22067e-21) (4.50329 -1.63632 2.19821e-20) (4.43906 -0.0767515 2.61071e-22) (4.43628 -0.123882 1.24614e-21) (4.4332 -0.170985 5.91514e-22) (4.42982 -0.218063 0) (4.42613 -0.265121 0) (4.42214 -0.312162 2.22185e-21) (4.41785 -0.359188 6.00614e-21) (4.41327 -0.406203 -6.52152e-21) (4.4084 -0.45321 8.36512e-21) (4.40324 -0.500213 -8.59499e-21) (4.39781 -0.547214 -2.80616e-22) (4.3921 -0.594217 4.44348e-21) (4.38612 -0.641225 1.25859e-20) (4.37988 -0.68824 8.32683e-21) (4.37338 -0.735267 -4.16976e-21) (4.36662 -0.782306 -4.16802e-21) (4.35962 -0.829361 -3.69485e-21) (4.35238 -0.876435 -3.70388e-21) (4.3449 -0.923531 7.88895e-21) (4.3372 -0.970649 -4.19938e-21) (4.32928 -1.01779 -4.20358e-21) (4.32114 -1.06496 7.94303e-21) (4.31279 -1.11217 -3.72817e-21) (4.30425 -1.1594 -3.74041e-21) (4.29551 -1.20667 -5.37438e-21) (4.28659 -1.25397 2.13404e-21) (4.27749 -1.30131 -9.75096e-25) (4.26821 -1.34868 -2.15257e-21) (4.25911 -1.39609 9.28678e-21) (4.25092 -1.44562 0) (4.14402 -0.0684266 -2.07831e-22) (4.14168 -0.109573 -9.35981e-22) (4.13908 -0.150701 0) (4.13622 -0.191814 0) (4.13312 -0.232915 1.65579e-21) (4.12976 -0.274007 0) (4.12616 -0.315093 -7.03349e-21) (4.12231 -0.356176 1.86382e-22) (4.11823 -0.397258 -1.05177e-20) (4.11391 -0.438344 6.78397e-21) (4.10936 -0.479435 -6.78677e-21) (4.10458 -0.520535 -3.29511e-21) (4.09958 -0.561645 -7.44117e-21) (4.09437 -0.60277 -6.58576e-21) (4.08894 -0.64391 -1.00662e-20) (4.08331 -0.685069 6.53687e-24) (4.07747 -0.726249 4.35667e-21) (4.07145 -0.767452 7.45725e-21) (4.06523 -0.80868 -7.46434e-21) (4.05884 -0.849935 0) (4.05227 -0.891219 -6.59656e-21) (4.04553 -0.932534 -7.49486e-21) (4.03862 -0.973881 7.50843e-21) (4.03157 -1.01526 7.52386e-21) (4.02436 -1.05668 2.6024e-21) (4.01702 -1.09813 1.34901e-21) (4.00953 -1.13962 1.76839e-21) (4.00191 -1.18115 0) (3.99446 -1.22275 0) (3.98797 -1.26544 6.70746e-21) (3.85009 -0.0607711 -1.734e-22) (3.84816 -0.0963371 3.7082e-22) (3.84601 -0.131893 7.024e-22) (3.84363 -0.167442 1.47788e-21) (3.84103 -0.202986 -4.45214e-21) (3.83821 -0.238527 -1.47443e-21) (3.83517 -0.274068 1.66768e-21) (3.83192 -0.309611 9.0245e-21) (3.82845 -0.345159 1.87111e-22) (3.82478 -0.380715 -3.129e-21) (3.82091 -0.416279 3.1264e-21) (3.81684 -0.451856 3.12398e-21) (3.81257 -0.487446 2.92692e-21) (3.80812 -0.523051 9.00696e-21) (3.80348 -0.558675 6.8683e-22) (3.79867 -0.594317 -2.92672e-21) (3.79368 -0.629981 6.23125e-21) (3.78853 -0.665668 5.52754e-21) (3.78321 -0.701379 -2.91476e-21) (3.77775 -0.737115 2.92097e-21) (3.77213 -0.772879 7.13451e-22) (3.76637 -0.80867 -2.91281e-21) (3.76048 -0.844491 7.14856e-24) (3.75446 -0.880341 5.83428e-21) (3.74832 -0.916222 -9.16606e-21) (3.74206 -0.952135 -1.46791e-20) (3.73569 -0.98808 -4.0474e-21) (3.7292 -1.02406 2.92459e-21) (3.7229 -1.0601 4.05357e-21) (3.71746 -1.09645 -6.31151e-21) (3.56284 -0.0539424 0) (3.56127 -0.0843569 -6.29396e-22) (3.55949 -0.114768 -3.76063e-23) (3.5575 -0.145177 0) (3.55529 -0.175586 1.33084e-21) (3.55288 -0.205997 0) (3.55026 -0.236412 1.19121e-21) (3.54743 -0.266832 -1.1893e-21) (3.5444 -0.297259 -2.37463e-21) (3.54118 -0.327694 -2.48786e-21) (3.53776 -0.35814 4.97358e-21) (3.53415 -0.388598 -7.3275e-21) (3.53036 -0.419068 1.24188e-22) (3.5264 -0.449553 -2.6283e-21) (3.52226 -0.480054 5.2492e-21) (3.51795 -0.510571 -2.34437e-21) (3.51348 -0.541106 -9.59648e-21) (3.50885 -0.571659 9.27495e-21) (3.50407 -0.602232 -4.91589e-21) (3.49915 -0.632824 0) (3.49409 -0.663437 5.64844e-22) (3.4889 -0.694071 2.43894e-21) (3.48359 -0.724725 -4.87907e-21) (3.47816 -0.755401 2.44036e-21) (3.47261 -0.786098 0) (3.46696 -0.816817 9.79343e-21) (3.46121 -0.847556 5.18552e-21) (3.45535 -0.878315 0) (3.44968 -0.909073 -5.18269e-21) (3.44467 -0.939632 0) (3.28861 -0.0479489 0) (3.28733 -0.0736605 0) (3.28583 -0.0993731 -1.07695e-21) (3.28411 -0.125087 1.83083e-24) (3.28218 -0.150804 1.0755e-21) (3.28002 -0.176526 0) (3.27766 -0.202253 -1.07021e-22) (3.27509 -0.227986 1.59433e-23) (3.27231 -0.253726 6.4284e-21) (3.26933 -0.279475 2.03465e-21) (3.26615 -0.305232 0) (3.26278 -0.330999 1.24092e-22) (3.25923 -0.356777 4.35155e-21) (3.25549 -0.382565 6.22386e-21) (3.25157 -0.408364 -4.21286e-21) (3.24748 -0.434175 -1.96807e-21) (3.24322 -0.459997 8.61907e-21) (3.23881 -0.485832 -4.41743e-21) (3.23424 -0.511678 3.96986e-21) (3.22952 -0.537535 0) (3.22466 -0.563404 4.3853e-21) (3.21966 -0.589283 -4.1169e-21) (3.21453 -0.615173 -1.85065e-21) (3.20929 -0.641072 -1.85238e-21) (3.20392 -0.666981 -3.89506e-21) (3.19845 -0.692897 -4.33369e-21) (3.19287 -0.718818 0) (3.18718 -0.744735 3.85793e-21) (3.18167 -0.770583 -3.84542e-21) (3.17658 -0.795936 -3.86467e-21) (3.0336 -0.0426449 0) (3.03251 -0.0641065 0) (3.03118 -0.0855716 0) (3.02963 -0.107042 9.29957e-22) (3.02783 -0.128517 9.26304e-22) (3.02581 -0.149997 -2.74768e-21) (3.02356 -0.171482 -9.72228e-22) (3.02109 -0.192974 8.73624e-22) (3.0184 -0.214471 -3.77942e-21) (3.01549 -0.235975 -1.66197e-22) (3.01237 -0.257486 -1.75908e-21) (3.00904 -0.279003 0) (3.00551 -0.300526 3.63349e-21) (3.00178 -0.322056 -5.54286e-21) (2.99786 -0.343592 0) (2.99375 -0.365133 1.72885e-21) (2.98946 -0.386679 1.85963e-21) (2.985 -0.40823 -3.58315e-21) (2.98037 -0.429785 -1.90661e-21) (2.97557 -0.451342 -1.85451e-21) (2.97062 -0.472901 0) (2.96552 -0.49446 0) (2.96027 -0.516018 3.83409e-21) (2.95489 -0.537575 1.85178e-22) (2.94938 -0.559127 3.66699e-21) (2.94375 -0.580673 -1.72395e-21) (2.93799 -0.602208 1.72521e-21) (2.93212 -0.623711 -4.47748e-21) (2.92639 -0.645086 4.46334e-21) (2.92084 -0.665846 3.63109e-21) (2.80303 -0.0377893 -2.04279e-22) (2.80203 -0.0554404 7.03366e-24) (2.80078 -0.0730965 -6.17627e-22) (2.79927 -0.0907595 8.14526e-22) (2.79752 -0.108428 3.923e-22) (2.79552 -0.126102 6.37197e-23) (2.79327 -0.14378 0) (2.79077 -0.161464 0) (2.78804 -0.179152 0) (2.78506 -0.196845 -4.87269e-21) (2.78186 -0.214541 5.63758e-21) (2.77843 -0.232241 0) (2.77478 -0.249944 -3.16247e-21) (2.7709 -0.26765 3.16204e-21) (2.76682 -0.285356 0) (2.76253 -0.303063 -1.27214e-22) (2.75803 -0.32077 -1.47697e-21) (2.75334 -0.338474 3.10589e-21) (2.74847 -0.356176 1.61426e-21) (2.7434 -0.373872 -1.6064e-21) (2.73817 -0.391563 0) (2.73276 -0.409245 0) (2.72719 -0.426918 1.70992e-21) (2.72146 -0.444578 0) (2.71558 -0.462224 0) (2.70956 -0.479852 0) (2.70339 -0.497454 -4.304e-21) (2.6971 -0.515002 1.46835e-21) (2.69089 -0.532383 2.798e-21) (2.68468 -0.549149 2.81294e-21) (2.60068 -0.0330762 0) (2.59971 -0.0473232 1.87479e-22) (2.59846 -0.0615759 -1.87167e-22) (2.59693 -0.0758343 -3.4947e-22) (2.59514 -0.0900978 -2.4105e-23) (2.59307 -0.104366 7.43648e-22) (2.59074 -0.118639 -1.42601e-21) (2.58814 -0.132917 -1.4171e-21) (2.58528 -0.147197 2.84159e-21) (2.58216 -0.161481 6.86178e-22) (2.57879 -0.175767 2.76204e-21) (2.57517 -0.190054 -2.80855e-21) (2.5713 -0.204341 -6.77223e-22) (2.5672 -0.218628 2.77083e-21) (2.56286 -0.232914 -1.42834e-21) (2.55829 -0.247196 -4.1704e-21) (2.55349 -0.261474 2.73965e-21) (2.54848 -0.275747 0) (2.54326 -0.290011 0) (2.53783 -0.304267 -3.9776e-21) (2.5322 -0.318511 3.96678e-21) (2.52638 -0.332742 2.64057e-21) (2.52038 -0.346958 -1.26835e-21) (2.51419 -0.361156 0) (2.50784 -0.375332 0) (2.50131 -0.389483 0) (2.49463 -0.403598 3.90048e-21) (2.48779 -0.417644 0) (2.48098 -0.431513 -3.84044e-21) (2.47404 -0.444834 -2.63961e-21) (2.42894 -0.0282257 0) (2.42794 -0.0394227 7.88858e-23) (2.42664 -0.0506254 0) (2.42505 -0.0618328 1.75043e-22) (2.42317 -0.073045 -1.7874e-23) (2.421 -0.0842617 9.66147e-22) (2.41854 -0.0954826 -3.82708e-21) (2.4158 -0.106707 2.85797e-21) (2.41277 -0.117934 0) (2.40947 -0.129164 -3.7857e-21) (2.40589 -0.140395 1.86803e-21) (2.40205 -0.151626 6.10018e-22) (2.39794 -0.162856 1.24888e-21) (2.39356 -0.174085 0) (2.38894 -0.185311 -1.26997e-21) (2.38406 -0.196533 0) (2.37894 -0.207749 0) (2.37358 -0.218958 -2.40474e-21) (2.36798 -0.230157 2.40142e-21) (2.36216 -0.241346 1.84481e-23) (2.35612 -0.252522 -1.20545e-21) (2.34987 -0.263683 3.4897e-21) (2.34341 -0.274827 0) (2.33674 -0.285951 0) (2.32989 -0.297053 1.1127e-21) (2.32284 -0.308125 0) (2.31562 -0.319158 -1.16144e-21) (2.30822 -0.330119 0) (2.30078 -0.340914 1.14047e-21) (2.29314 -0.351257 -1.07699e-21) (2.28905 -0.0229553 2.92711e-22) (2.288 -0.0313918 2.16766e-22) (2.28663 -0.0398335 -5.84316e-22) (2.28495 -0.0482797 1.31308e-21) (2.28297 -0.0567308 -1.46112e-21) (2.28068 -0.0651861 1.27985e-23) (2.27809 -0.0736451 0) (2.27519 -0.0821073 -2.94937e-22) (2.272 -0.090572 2.80982e-22) (2.26851 -0.0990387 5.84683e-22) (2.26474 -0.107507 2.81921e-21) (2.26067 -0.115975 -3.3919e-21) (2.25633 -0.124443 -5.7537e-22) (2.25171 -0.132909 -2.22283e-21) (2.24681 -0.141373 2.21921e-21) (2.24165 -0.149833 0) (2.23622 -0.158288 4.35316e-21) (2.23054 -0.166737 -2.49756e-23) (2.2246 -0.175177 -8.06894e-21) (2.21842 -0.183608 3.70406e-21) (2.21201 -0.192028 0) (2.20536 -0.200434 -3.16376e-21) (2.19848 -0.208825 2.08251e-21) (2.19138 -0.217198 3.05655e-21) (2.18407 -0.225551 -2.09158e-21) (2.17655 -0.233877 0) (2.16884 -0.242166 0) (2.16093 -0.250391 -9.6729e-22) (2.15291 -0.258475 0) (2.14468 -0.266211 1.00926e-21) (2.18172 -0.017178 -1.65559e-23) (2.1806 -0.0230746 -5.35279e-22) (2.17916 -0.0289756 4.69117e-22) (2.1774 -0.0348808 0) (2.17532 -0.0407904 1.19352e-21) (2.17292 -0.0467039 -7.91117e-22) (2.17021 -0.052621 -2.23916e-21) (2.16719 -0.0585412 3.94652e-21) (2.16386 -0.0644641 -2.36385e-21) (2.16022 -0.0703894 2.07868e-21) (2.15628 -0.0763165 -2.60358e-21) (2.15203 -0.0822447 -1.52932e-21) (2.1475 -0.0881734 2.05054e-21) (2.14267 -0.0941018 0) (2.13755 -0.100029 2.4896e-22) (2.13216 -0.105954 -4.48762e-21) (2.12648 -0.111876 7.94488e-21) (2.12054 -0.117794 -3.95095e-21) (2.11432 -0.123706 -4.98186e-22) (2.10785 -0.129611 -4.93698e-22) (2.10112 -0.135508 4.72833e-22) (2.09415 -0.141395 4.25001e-21) (2.08693 -0.14727 -3.76977e-21) (2.07947 -0.153132 -9.48926e-22) (2.07179 -0.158978 8.92461e-22) (2.06388 -0.164804 -1.42497e-23) (2.05575 -0.1706 -1.36087e-21) (2.04742 -0.176345 9.07162e-22) (2.03892 -0.181985 -4.3665e-22) (2.03021 -0.187379 8.75768e-22) (2.10773 -0.0107033 2.71959e-22) (2.10656 -0.0142022 2.4767e-22) (2.10506 -0.0177041 -4.63881e-22) (2.10323 -0.0212088 -3.06835e-23) (2.10108 -0.0247162 -1.86034e-22) (2.09861 -0.0282264 0) (2.09581 -0.0317393 1.23908e-22) (2.0927 -0.0352547 3.67574e-22) (2.08926 -0.0387723 0) (2.08552 -0.0422921 -1.19613e-22) (2.08146 -0.0458137 0) (2.07709 -0.0493367 -1.18136e-22) (2.07243 -0.0528609 0) (2.06746 -0.0563857 1.16459e-22) (2.06219 -0.0599107 -2.35861e-22) (2.05664 -0.0634354 4.67851e-22) (2.05079 -0.0669591 0) (2.04467 -0.0704812 -3.61475e-21) (2.03826 -0.0740008 3.60239e-21) (2.03159 -0.0775173 0) (2.02465 -0.0810298 -2.27644e-22) (2.01745 -0.0845372 3.24308e-21) (2.00999 -0.0880386 -3.24066e-21) (2.00228 -0.0915325 0) (1.99433 -0.0950173 0) (1.98614 -0.0984902 0) (1.97772 -0.101945 1.01297e-21) (1.96908 -0.105369 -1.42385e-21) (1.96024 -0.108729 0) (1.95118 -0.111945 -6.04544e-22) (2.06886 -0.0036921 -7.34932e-24) (2.06767 -0.00484875 4.65896e-22) (2.06615 -0.00600807 -4.36377e-22) (2.0643 -0.00717018 2.92055e-23) (2.06212 -0.00833519 5.8221e-23) (2.05962 -0.00950315 0) (2.0568 -0.010674 0) (2.05365 -0.0118477 -1.14942e-22) (2.05019 -0.0130241 1.81311e-21) (2.0464 -0.0142031 -1.69545e-21) (2.0423 -0.0153845 0) (2.03789 -0.016568 1.12146e-22) (2.03317 -0.0177533 0) (2.02814 -0.01894 -1.10435e-22) (2.02281 -0.0201279 0) (2.01718 -0.0213163 -3.43919e-21) (2.01125 -0.0225049 1.97736e-23) (2.00503 -0.0236931 3.39299e-21) (1.99852 -0.0248801 0) (1.99173 -0.0260654 3.30083e-21) (1.98466 -0.0272483 -3.49198e-21) (1.97732 -0.0284278 -2.03735e-22) (1.96971 -0.0296032 -2.01278e-22) (1.96183 -0.0307735 0) (1.9537 -0.0319375 0) (1.94532 -0.0330936 0) (1.9367 -0.0342396 -1.31875e-21) (1.92783 -0.0353707 2.05693e-21) (1.91874 -0.0364771 -7.39738e-22) (1.90943 -0.0375357 1.85678e-22) (7.37706 6.11146 0) (7.51906 6.0055 0) (7.64598 5.86113 4.21513e-21) (7.79296 5.69938 -4.16246e-21) (7.93717 5.53058 8.31659e-21) (8.07586 5.35487 -8.22263e-21) (8.21174 5.17265 0) (8.34418 4.98524 5.19054e-19) (8.4722 4.79342 0) (8.59551 4.59749 5.13555e-19) (8.71396 4.39768 -2.46493e-19) (8.82731 4.19422 2.63511e-19) (8.9354 3.98728 0) (9.03811 3.77704 -2.69509e-19) (9.13533 3.56366 2.41929e-19) (9.22696 3.3473 7.82603e-21) (9.31293 3.12814 -1.21807e-19) (9.39314 2.90634 2.48971e-19) (9.46754 2.68208 -1.36751e-19) (9.53603 2.45552 0) (9.59856 2.22682 2.12309e-21) (9.65506 1.99615 1.43685e-19) (9.70548 1.76368 -1.53762e-20) (9.74978 1.52957 7.67094e-21) (9.78789 1.29397 -6.77354e-20) (9.81975 1.05705 -2.23661e-24) (9.84531 0.818964 6.76309e-20) (9.86451 0.579889 1.9096e-21) (9.8773 0.339986 -1.90811e-21) (9.88363 0.0994096 7.32036e-21) (7.29512 5.77918 -2.56683e-19) (7.42322 5.6278 -1.90581e-21) (7.52198 5.46249 0) (7.65738 5.29072 -2.28975e-19) (7.79497 5.119 0) (7.92185 4.94636 2.25703e-19) (8.04339 4.77085 0) (8.16147 4.59234 -2.39826e-19) (8.275 4.41108 2.20654e-19) (8.38358 4.22698 -2.37012e-19) (8.48736 4.03991 2.35737e-19) (8.58639 3.84992 0) (8.68061 3.65712 0) (8.76997 3.4616 0) (8.85445 3.26349 -2.31432e-19) (8.93399 3.06294 -6.9029e-21) (9.00854 2.86007 1.37394e-20) (9.07805 2.65503 -1.14459e-19) (9.14246 2.44794 -6.81804e-21) (9.20171 2.23895 0) (9.25574 2.02819 1.0672e-19) (9.30451 1.81578 6.76441e-21) (9.34795 1.60186 -6.75616e-21) (9.38601 1.38653 3.3663e-21) (9.41865 1.16994 5.50138e-20) (9.44582 0.952181 0) (9.4675 0.733405 0) (9.48364 0.513746 0) (9.4942 0.293343 0) (9.49911 0.07235 -7.00565e-21) (7.23464 5.42108 4.75293e-19) (7.34651 5.2686 -1.68766e-21) (7.41625 5.11096 0) (7.53081 4.94923 1.55182e-20) (7.65311 4.78663 0) (7.76255 4.62286 -4.12706e-19) (7.86533 4.45621 0) (7.96595 4.28635 -1.95271e-19) (8.06345 4.11365 -1.55717e-20) (8.15687 3.93831 -1.92382e-19) (8.2463 3.76038 1.91046e-19) (8.33185 3.57996 -1.89793e-19) (8.41344 3.39722 -1.22761e-20) (8.49093 3.21232 2.43991e-20) (8.56426 3.02539 -1.2129e-20) (8.63334 2.83656 0) (8.6981 2.64593 0) (8.75847 2.45363 -9.7927e-20) (8.81439 2.25975 1.19286e-20) (8.86579 2.06441 4.42936e-24) (8.91262 1.86771 -5.92217e-21) (8.95483 1.66975 9.06206e-20) (8.99236 1.47063 9.03631e-20) (9.02519 1.27046 0) (9.05325 1.06936 -4.91051e-20) (9.07653 0.867417 0) (9.09498 0.664754 0) (9.10859 0.461473 -2.38252e-20) (9.11732 0.257684 2.18653e-21) (9.12114 0.0534928 -7.28397e-22) (7.15382 5.07717 -2.16126e-19) (7.25357 4.92993 0) (7.30079 4.78022 -1.7356e-19) (7.39645 4.62629 1.79299e-19) (7.50569 4.46972 5.68174e-21) (7.6019 4.31151 1.88298e-19) (7.68998 4.15092 -1.12041e-20) (7.77635 3.98766 1.85126e-19) (7.86059 3.82216 -1.83788e-19) (7.94125 3.65477 1.93409e-19) (8.01816 3.48558 -3.47966e-19) (8.09157 3.31466 1.69321e-19) (8.16146 3.14212 1.85842e-19) (8.2277 2.96807 -2.12899e-20) (8.29023 2.79257 1.05817e-20) (8.349 2.6157 0) (8.40397 2.43752 0) (8.45509 2.25811 8.73252e-20) (8.50232 2.07754 -7.96229e-20) (8.54563 1.89586 -5.17391e-21) (8.58497 1.71317 1.03093e-20) (8.6203 1.52953 -9.63851e-20) (8.65161 1.34501 -8.58713e-20) (8.67884 1.1597 5.10894e-21) (8.70197 0.97368 0) (8.72098 0.787026 3.89402e-20) (8.73584 0.599821 0) (8.74651 0.412148 1.99924e-20) (8.75299 0.224091 1.26586e-21) (8.75522 0.0357305 0) (7.04743 4.74822 -1.43444e-21) (7.13625 4.60422 1.30599e-21) (7.16677 4.4595 3.26446e-19) (7.24528 4.31184 0) (7.34184 4.16133 0) (7.42658 4.00936 0) (7.50213 3.85591 1.50062e-19) (7.57595 3.70065 0) (7.64844 3.54374 0) (7.7179 3.38547 -9.52173e-21) (7.78391 3.22593 1.76994e-19) (7.84672 3.06513 -1.8759e-20) (7.90643 2.90312 -2.98796e-19) (7.96292 2.73997 9.25557e-21) (8.01613 2.57573 0) (8.06602 2.41046 0) (8.11257 2.2442 0) (8.15575 2.07703 0) (8.19552 1.90898 6.59902e-21) (8.23185 1.74012 6.87114e-20) (8.26473 1.57052 6.84333e-20) (8.29412 1.40023 6.81789e-20) (8.32 1.22931 0) (8.34236 1.05783 3.82961e-20) (8.36116 0.885844 -8.83236e-21) (8.37639 0.713422 -3.03908e-20) (8.38804 0.540626 -2.19908e-21) (8.39608 0.367521 -1.56818e-20) (8.4005 0.194177 -1.09606e-21) (8.40129 0.0206619 4.18283e-21) (6.91418 4.42464 0) (6.99223 4.28357 0) (7.01127 4.14343 -1.48216e-19) (7.07542 4.0022 0) (7.16 3.85867 0) (7.23454 3.71397 0) (7.29947 3.5685 -1.42101e-19) (7.36238 3.42194 0) (7.42448 3.27423 8.32518e-21) (7.48414 3.12553 1.18183e-19) (7.54067 2.97594 8.19046e-21) (7.5943 2.82546 1.08184e-19) (7.64518 2.67409 1.43504e-19) (7.69325 2.52189 -6.93621e-20) (7.73845 2.36889 6.89186e-20) (7.78073 2.21514 0) (7.82008 2.06067 -7.87616e-21) (7.85648 1.90552 6.77537e-20) (7.88991 1.74975 1.36989e-20) (7.92035 1.59339 -7.30068e-20) (7.94778 1.43649 -1.24075e-19) (7.97218 1.27909 -5.88858e-21) (7.99354 1.12125 2.93241e-20) (8.01184 0.963013 -3.59949e-20) (8.02706 0.804428 -2.53257e-20) (8.0392 0.645546 0) (8.04825 0.48642 -1.89776e-21) (8.05419 0.327102 3.2306e-20) (8.05702 0.167646 0) (8.05673 0.00810885 -3.97386e-21) (6.75727 4.1009 2.16188e-21) (6.82489 3.96476 -1.9741e-21) (6.83636 3.83077 0) (6.8889 3.69716 -7.53826e-21) (6.96237 3.56187 7.46162e-21) (7.02764 3.42561 1.13403e-19) (7.08345 3.28896 0) (7.13689 3.15171 1.11019e-19) (7.18981 3.01368 7.19026e-21) (7.24078 2.87493 -1.26924e-19) (7.28901 2.73554 0) (7.33461 2.59552 -1.17959e-19) (7.3778 2.45487 0) (7.41856 2.31362 5.81737e-20) (7.45682 2.17179 -5.78101e-20) (7.49254 2.02941 4.53547e-20) (7.52572 1.88651 4.97232e-24) (7.55634 1.74312 -5.00976e-20) (7.58438 1.59928 4.98629e-20) (7.60984 1.45502 6.69638e-21) (7.6327 1.31037 5.60991e-20) (7.65294 1.16538 -1.13177e-19) (7.67055 1.02007 -2.12275e-20) (7.68552 0.874491 3.29476e-21) (7.69785 0.728678 2.43884e-20) (7.70752 0.582671 2.82775e-20) (7.71454 0.436511 -3.27153e-21) (7.71889 0.29024 -1.3002e-21) (7.72057 0.143901 -8.13919e-22) (7.71959 -0.00246521 -2.28719e-21) (6.58219 3.78009 0) (6.64008 3.65125 3.37976e-21) (6.64658 3.52518 -6.63285e-21) (6.6897 3.40026 3.25566e-21) (6.75295 3.27409 0) (6.80964 3.14704 -1.62328e-20) (6.85746 3.01973 1.02708e-19) (6.90272 2.89211 -9.70882e-21) (6.94754 2.76394 9.44624e-20) (6.99085 2.63524 0) (7.0318 2.50606 -6.08215e-21) (7.07042 2.37644 6.04126e-21) (7.10691 2.24637 -5.99001e-21) (7.14131 2.11586 -3.94359e-20) (7.17356 1.98494 5.90912e-21) (7.20362 1.85362 -5.53737e-20) (7.23148 1.72193 0) (7.25714 1.58989 -5.80635e-21) (7.28058 1.45754 4.98385e-20) (7.30179 1.32489 0) (7.32077 1.19197 -5.72376e-21) (7.3375 1.05881 1.0331e-20) (7.35197 0.925445 0) (7.36418 0.791898 0) (7.37412 0.658201 0) (7.38179 0.524385 -2.3741e-20) (7.38719 0.390483 9.29148e-21) (7.39031 0.256525 -1.04159e-20) (7.39116 0.122545 0) (7.38973 -0.011425 2.94486e-21) (6.39483 3.46875 -9.63904e-20) (6.44382 3.3487 0) (6.44698 3.23148 0) (6.48233 3.11567 8.46525e-20) (6.53624 2.99887 -8.39463e-20) (6.58497 2.88121 -1.69925e-19) (6.62572 2.76334 -9.65813e-20) (6.66387 2.6453 -8.48851e-20) (6.70161 2.52689 -8.41146e-20) (6.73817 2.40807 -1.05228e-20) (6.77272 2.2889 0) (6.80525 2.16941 -1.03413e-20) (6.83592 2.0496 1.40062e-23) (6.86479 1.92948 5.32273e-20) (6.89181 1.80907 0) (6.91696 1.68837 -1.0062e-20) (6.94022 1.56742 1.00156e-20) (6.96159 1.44623 3.29124e-20) (6.98105 1.32483 -3.68429e-20) (6.99861 1.20322 0) (7.01425 1.08143 -3.73325e-20) (7.02797 0.959484 7.35445e-20) (7.03977 0.837405 2.33851e-20) (7.04963 0.715214 1.845e-20) (7.05756 0.592935 -1.59751e-20) (7.06355 0.470592 -2.07491e-20) (7.06761 0.348209 -7.75189e-21) (7.06973 0.225811 6.72433e-21) (7.06992 0.103422 0) (7.06818 -0.0189327 0) (6.1995 3.1721 8.91156e-21) (6.24044 3.06124 -2.46565e-21) (6.24127 2.95303 7.24736e-21) (6.27009 2.84619 -8.46956e-20) (6.31556 2.73854 7.93035e-20) (6.357 2.6301 1.49653e-19) (6.39147 2.52147 0) (6.42345 2.41275 0) (6.45501 2.30378 0) (6.48563 2.19452 0) (6.51458 2.08499 -8.8966e-21) (6.54179 1.97524 8.8419e-21) (6.56739 1.86527 0) (6.59144 1.75508 0) (6.61392 1.64469 -3.2883e-20) (6.6348 1.53411 -8.59067e-21) (6.65406 1.42335 8.55286e-21) (6.6717 1.31244 -3.59319e-20) (6.68772 1.20137 4.22482e-21) (6.70211 1.09018 -5.93135e-24) (6.71488 0.978879 3.12321e-20) (6.726 0.867479 -3.5279e-20) (6.73548 0.756002 -5.93802e-21) (6.74332 0.644463 -2.91006e-20) (6.74952 0.532881 1.74577e-20) (6.75407 0.421275 1.74085e-20) (6.75699 0.309663 0) (6.75826 0.198062 -8.6632e-21) (6.75791 0.0864933 3.37153e-21) (6.75591 -0.0250269 5.10488e-22) (5.99826 2.89223 7.69943e-20) (6.03201 2.7904 0) (6.03122 2.69094 0) (6.05458 2.59272 6.51249e-20) (6.09255 2.49386 -3.9886e-21) (6.12742 2.39432 -1.47945e-20) (6.15633 2.2946 7.85133e-21) (6.18296 2.19485 7.75766e-21) (6.20916 2.09494 -7.70414e-21) (6.2346 1.99483 7.62465e-21) (6.25865 1.89452 -7.57751e-21) (6.28122 1.79405 2.10099e-20) (6.30241 1.69343 3.57741e-20) (6.32228 1.59267 -2.81132e-20) (6.34081 1.49178 3.8515e-20) (6.35798 1.39075 -1.46293e-20) (6.37377 1.28962 3.48746e-20) (6.38819 1.18838 2.74455e-20) (6.40122 1.08705 0) (6.41288 0.985649 0) (6.42315 0.88418 0) (6.43203 0.78266 0) (6.43952 0.681101 -1.49823e-20) (6.44562 0.579519 1.49307e-20) (6.45033 0.477926 0) (6.45365 0.376337 1.32902e-20) (6.45558 0.274764 0) (6.45613 0.173223 6.61292e-21) (6.45531 0.0717261 -3.68567e-21) (6.45311 -0.029713 0) (5.79181 2.62918 -1.92364e-21) (5.8193 2.53605 1.77448e-21) (5.81744 2.44501 -4.90569e-20) (5.83622 2.35507 -9.52223e-21) (5.86763 2.26462 0) (5.89666 2.17361 -1.07526e-19) (5.92068 2.08244 5.02798e-20) (5.94267 1.99127 6.56413e-21) (5.96424 1.90001 -1.30289e-20) (5.98516 1.8086 6.46739e-21) (6.00495 1.71706 1.78868e-20) (6.02349 1.6254 -5.10967e-20) (6.04085 1.53365 -4.4425e-20) (6.05708 1.4418 3.29015e-20) (6.07218 1.34987 1.73905e-20) (6.08613 1.25786 1.72975e-20) (6.09892 1.16577 3.37249e-21) (6.11055 1.07363 -2.7851e-21) (6.12101 0.981442 0) (6.1303 0.889211 -2.30143e-20) (6.13842 0.796951 0) (6.14536 0.704672 3.0097e-21) (6.15114 0.612384 -6.00159e-21) (6.15574 0.520097 5.98104e-21) (6.15918 0.427822 -2.98338e-21) (6.16144 0.33557 -1.26151e-20) (6.16254 0.24335 0) (6.16248 0.151172 -1.18818e-20) (6.16126 0.0590471 0) (6.15889 -0.0330163 -6.98007e-22) (5.5804 2.38248 -4.85397e-20) (5.60254 2.29768 0) (5.59997 2.21471 4.94914e-20) (5.61489 2.13269 -9.47494e-20) (5.64057 2.05028 8.51312e-21) (5.66443 1.96739 4.22696e-20) (5.68414 1.88438 -5.30724e-20) (5.70208 1.80138 1.10737e-20) (5.71961 1.71832 -2.07741e-20) (5.73659 1.63517 -2.60545e-20) (5.75264 1.55192 -4.34348e-20) (5.76765 1.46859 2.28223e-20) (5.78167 1.38521 2.49706e-21) (5.79473 1.30177 -5.29472e-21) (5.80685 1.21827 -1.71174e-20) (5.81799 1.13474 -2.22621e-20) (5.82817 1.05116 -4.18472e-20) (5.83736 0.96756 -2.42491e-21) (5.84558 0.883939 0) (5.85282 0.800305 2.18275e-20) (5.85908 0.716667 0) (5.86436 0.633032 9.63512e-21) (5.86866 0.54941 -2.53587e-21) (5.87197 0.465806 2.5313e-21) (5.87431 0.38223 -2.51987e-21) (5.87567 0.298688 2.51665e-21) (5.87607 0.215188 1.25339e-21) (5.87549 0.131737 -6.67512e-22) (5.87395 0.0483424 0) (5.87146 -0.0349904 1.25242e-21) (5.36355 2.15151 4.55998e-20) (5.38112 2.07463 2.47408e-21) (5.37804 1.99933 -3.23263e-23) (5.38962 1.92484 3.83931e-20) (5.41025 1.85004 0) (5.4295 1.77485 4.71643e-21) (5.44537 1.69956 -1.002e-23) (5.45972 1.62429 -4.64925e-21) (5.47369 1.54899 3.70148e-20) (5.48721 1.47363 2.40492e-20) (5.49996 1.3982 3.19473e-20) (5.51185 1.32273 0) (5.52292 1.24723 3.6025e-20) (5.53321 1.17171 -1.68295e-20) (5.5427 1.09615 0) (5.55139 1.02059 -4.40398e-21) (5.55927 0.945008 4.40088e-20) (5.56635 0.869426 -2.29531e-20) (5.57262 0.793846 -1.64119e-20) (5.57807 0.718276 4.32311e-21) (5.58272 0.64272 8.13338e-21) (5.58655 0.567184 -2.15481e-20) (5.58957 0.491676 -3.80733e-21) (5.59179 0.416199 -4.26859e-21) (5.59319 0.340759 0) (5.59379 0.265361 0) (5.59359 0.190011 3.99761e-21) (5.5926 0.114713 5.54975e-21) (5.59081 0.0394709 4.09927e-22) (5.58822 -0.035711 4.63452e-22) (5.1392 1.9351 -1.11128e-21) (5.15285 1.86568 3.08823e-21) (5.14936 1.79763 -3.25538e-20) (5.15801 1.73026 0) (5.17417 1.66265 1.88817e-20) (5.18931 1.59473 -3.93664e-21) (5.20174 1.52674 -3.90328e-21) (5.21291 1.45877 3.88203e-21) (5.22375 1.3908 -1.64336e-20) (5.23421 1.3228 7.64116e-21) (5.24405 1.25476 -2.38233e-20) (5.25321 1.18671 0) (5.2617 1.11865 -3.01821e-20) (5.26955 1.05058 1.59342e-20) (5.27675 0.98252 0) (5.2833 0.914461 1.39431e-20) (5.2892 0.846414 -1.56963e-20) (5.29445 0.778382 0) (5.29903 0.710371 5.44204e-21) (5.30296 0.642385 -3.63642e-21) (5.30622 0.574428 -7.72087e-21) (5.30883 0.506504 1.45027e-20) (5.31078 0.438617 1.44569e-20) (5.31207 0.37077 0) (5.31271 0.302967 -4.96298e-21) (5.31269 0.23521 -3.56782e-21) (5.31202 0.167504 -7.15167e-21) (5.3107 0.0998486 2.66511e-21) (5.30873 0.032248 -2.77722e-21) (5.30613 -0.0352963 -4.71767e-22) (4.90387 1.73146 2.6523e-20) (4.91419 1.66909 -2.48692e-20) (4.91041 1.6079 4.13431e-20) (4.91653 1.54729 0) (4.9288 1.4865 -2.64322e-20) (4.94036 1.42547 0) (4.94978 1.3644 3.24463e-21) (4.95819 1.30337 1.53574e-20) (4.96632 1.24235 5.64959e-21) (4.97415 1.18133 0) (4.98151 1.1203 6.33103e-21) (4.98832 1.05927 -1.81731e-20) (4.99461 0.99826 7.1342e-21) (5.00039 0.937266 6.2427e-21) (5.00567 0.876292 -1.79053e-20) (5.01042 0.815342 -1.32005e-20) (5.01466 0.754419 6.16074e-21) (5.01838 0.693527 -6.12879e-21) (5.02158 0.632668 2.22163e-20) (5.02425 0.571846 2.69342e-21) (5.02639 0.511063 3.03254e-21) (5.02801 0.45032 -6.80482e-21) (5.02911 0.389622 -3.42175e-21) (5.02968 0.328968 -5.67421e-21) (5.02972 0.26836 7.45722e-22) (5.02924 0.207801 0) (5.02824 0.14729 4.51432e-21) (5.02673 0.0868292 1.49224e-21) (5.02469 0.0264186 -3.7195e-22) (5.02215 -0.0339415 3.7188e-22) (4.65403 1.53872 -2.6488e-20) (4.66165 1.48307 3.54669e-20) (4.65782 1.42843 -1.18725e-20) (4.66189 1.37428 0) (4.67092 1.32002 1.16536e-20) (4.67948 1.26558 -4.76406e-21) (4.68641 1.21113 -5.38402e-21) (4.69256 1.15671 -2.15248e-20) (4.69848 1.10233 -1.13956e-20) (4.70417 1.04797 0) (4.70951 0.99362 0) (4.71444 0.939295 1.64663e-20) (4.71897 0.884999 -5.2243e-21) (4.7231 0.830734 0) (4.72685 0.776503 5.90199e-21) (4.7302 0.722308 5.98066e-22) (4.73314 0.668151 -5.94279e-22) (4.73568 0.614035 1.47861e-20) (4.73782 0.559959 4.81486e-21) (4.73954 0.505926 -5.15341e-21) (4.74085 0.451938 -1.24081e-20) (4.74175 0.397993 4.4298e-21) (4.74224 0.344095 -7.2927e-21) (4.74232 0.290241 5.38483e-21) (4.74198 0.236434 7.74488e-21) (4.74122 0.182672 0) (4.74006 0.128955 -3.92753e-21) (4.73848 0.0752838 3.05595e-21) (4.7365 0.0216564 -6.24693e-22) (4.7341 -0.0319277 0) (4.38789 1.35565 0) (4.39354 1.30645 -9.93932e-21) (4.38999 1.25811 -2.27123e-21) (4.39261 1.2102 6.69375e-24) (4.39914 1.16221 2.24417e-21) (4.40538 1.1141 -3.2874e-21) (4.41043 1.06599 1.28256e-20) (4.41489 1.01793 2.22647e-20) (4.41917 0.969912 -8.30632e-21) (4.42329 0.921923 -4.39499e-21) (4.42715 0.873963 -4.37571e-21) (4.4307 0.826037 -8.2125e-21) (4.43396 0.778149 1.25356e-20) (4.43692 0.730299 1.24938e-20) (4.43959 0.68249 -1.2459e-20) (4.44195 0.634722 4.90509e-21) (4.444 0.586996 -5.95012e-22) (4.44574 0.539313 -2.15133e-20) (4.44717 0.491674 -4.5648e-21) (4.44828 0.444078 8.81179e-21) (4.44907 0.396525 2.89693e-22) (4.44954 0.349016 -8.53387e-21) (4.44968 0.30155 2.40595e-21) (4.44949 0.254126 -1.87442e-21) (4.44898 0.206743 -2.25164e-21) (4.44814 0.159401 0) (4.44698 0.112097 -1.98399e-21) (4.44548 0.0648323 -1.64432e-21) (4.44366 0.0176035 -7.26857e-22) (4.44152 -0.0295905 2.61703e-22) (4.10679 1.18195 0) (4.11121 1.13898 0) (4.10836 1.09671 0) (4.11019 1.0548 1.85909e-21) (4.11502 1.01285 -1.2534e-20) (4.1197 0.970811 4.65838e-21) (4.12352 0.928784 -7.89656e-21) (4.12691 0.886805 -7.86726e-21) (4.13016 0.844869 7.83966e-21) (4.1333 0.802968 6.8825e-21) (4.13624 0.761099 0) (4.13896 0.719266 7.76801e-21) (4.14145 0.677471 -7.74652e-21) (4.14372 0.635715 2.70799e-21) (4.14576 0.593999 7.70647e-21) (4.14757 0.552322 3.19716e-21) (4.14914 0.510685 6.78249e-21) (4.15046 0.469087 7.65424e-21) (4.15153 0.427529 3.37974e-21) (4.15235 0.38601 -1.95155e-22) (4.15292 0.344529 1.95647e-22) (4.15322 0.303086 3.60432e-21) (4.15326 0.261679 6.91279e-21) (4.15304 0.220308 7.13918e-21) (4.15255 0.17897 0) (4.1518 0.137666 -1.67277e-21) (4.15078 0.0963922 1.88371e-21) (4.14949 0.0551481 0) (4.14793 0.0139315 5.22683e-22) (4.14611 -0.0272593 2.08069e-22) (3.81564 1.01829 0) (3.81956 0.981276 -7.42723e-21) (3.8178 0.94482 3.09314e-21) (3.81949 0.908642 7.33594e-21) (3.82341 0.872441 9.29204e-21) (3.82725 0.836186 3.49217e-21) (3.83049 0.799939 6.11561e-21) (3.83341 0.763731 2.20086e-24) (3.83622 0.727559 -3.04582e-21) (3.83893 0.691417 -7.48144e-22) (3.84149 0.655304 3.03847e-21) (3.84387 0.61922 -3.03207e-21) (3.84607 0.583168 -5.73296e-21) (3.84809 0.547148 -6.45526e-21) (3.84993 0.511161 -3.02185e-21) (3.85157 0.475205 -7.20942e-22) (3.85301 0.439281 -9.28235e-21) (3.85425 0.403388 3.0102e-21) (3.85528 0.367527 -3.20432e-21) (3.85609 0.331695 -3.2001e-21) (3.85669 0.295894 3.19599e-21) (3.85706 0.26012 -6.18905e-21) (3.85721 0.224375 2.80025e-21) (3.85713 0.188655 -4.68045e-21) (3.85682 0.152961 -1.49422e-21) (3.85628 0.11729 1.51199e-21) (3.85551 0.0816404 1.49115e-21) (3.85451 0.0460115 0) (3.85327 0.0104012 7.67317e-22) (3.85179 -0.0251924 -5.6922e-22) (3.52241 0.865931 0) (3.52642 0.834533 5.51512e-21) (3.52606 0.803546 0) (3.52814 0.772765 -5.45532e-21) (3.53182 0.741967 -1.02896e-20) (3.53545 0.711128 0) (3.53865 0.680292 2.55525e-21) (3.5416 0.649479 -5.10439e-21) (3.54445 0.618691 2.54939e-21) (3.5472 0.58792 -5.9039e-22) (3.54981 0.557168 0) (3.55227 0.526435 -5.10201e-21) (3.55456 0.495722 1.07748e-20) (3.55669 0.46503 -5.09348e-21) (3.55865 0.434358 2.42149e-21) (3.56043 0.403707 -5.41349e-21) (3.56203 0.373077 2.70522e-21) (3.56344 0.342467 4.96709e-21) (3.56466 0.311877 -2.66826e-21) (3.56567 0.281306 5.08673e-21) (3.56649 0.250754 -2.54187e-21) (3.56709 0.22022 0) (3.56749 0.189703 1.20865e-21) (3.56767 0.159203 -1.20804e-21) (3.56764 0.128718 0) (3.56739 0.0982466 -1.34414e-21) (3.56692 0.0677884 0) (3.56623 0.0373418 6.3226e-22) (3.56532 0.00690545 -6.32165e-22) (3.56419 -0.0235221 0) (3.2367 0.726238 4.27011e-21) (3.24119 0.700012 4.08357e-21) (3.24238 0.674072 -4.07756e-21) (3.24522 0.64827 0) (3.24915 0.62245 4.55403e-21) (3.25302 0.596592 4.08996e-21) (3.25657 0.570727 6.2487e-21) (3.25991 0.544869 6.2618e-21) (3.26313 0.519018 -4.3036e-21) (3.26623 0.493172 -4.57196e-21) (3.2692 0.467331 0) (3.272 0.441496 -4.12399e-21) (3.27464 0.415668 4.58034e-21) (3.27712 0.389848 4.33267e-21) (3.27942 0.364036 -6.62146e-21) (3.28153 0.338232 -4.33831e-21) (3.28347 0.312436 2.26309e-21) (3.28521 0.286649 -1.2351e-22) (3.28675 0.26087 -4.46494e-21) (3.28809 0.2351 0) (3.28922 0.209337 0) (3.29015 0.183583 9.58853e-23) (3.29086 0.157836 -4.35725e-21) (3.29136 0.132096 1.08653e-22) (3.29163 0.106362 0) (3.29169 0.0806344 1.08481e-21) (3.29152 0.0549113 -4.94152e-25) (3.29113 0.0291923 -1.08395e-21) (3.29051 0.00347654 0) (3.28967 -0.0222369 0) (2.96798 0.600168 -3.99492e-21) (2.97313 0.578603 -2.92664e-21) (2.97585 0.55722 2.925e-21) (2.97962 0.53592 1.8165e-21) (2.98408 0.514593 -1.81519e-21) (2.98846 0.493229 -3.85074e-21) (2.99256 0.471845 -7.52289e-21) (2.99647 0.450453 3.30724e-21) (3.00025 0.429054 0) (3.00387 0.407646 0) (3.00734 0.386231 -5.46818e-21) (3.01063 0.364809 9.36875e-21) (3.01374 0.343381 -3.71208e-21) (3.01667 0.32195 5.49329e-21) (3.01941 0.300515 -1.78606e-21) (3.02195 0.279077 0) (3.02429 0.257637 -1.77217e-21) (3.02642 0.236195 3.7345e-21) (3.02834 0.214751 0) (3.03005 0.193307 1.79886e-21) (3.03153 0.171862 -1.80047e-21) (3.03279 0.150416 9.51702e-23) (3.03382 0.12897 1.95986e-21) (3.03462 0.107522 9.8588e-22) (3.03518 0.0860744 -9.74795e-22) (3.03551 0.0646254 9.38318e-22) (3.03561 0.0431751 9.37991e-22) (3.03546 0.0217233 0) (3.03508 0.000269623 0) (3.03446 -0.0211863 0) (2.72414 0.487962 -3.08949e-21) (2.72999 0.470515 -2.97221e-21) (2.73406 0.453171 1.55158e-21) (2.73876 0.435866 1.44203e-21) (2.74385 0.418528 0) (2.74881 0.40115 0) (2.75354 0.383743 0) (2.75806 0.366317 -1.7894e-21) (2.76241 0.348871 0) (2.76659 0.331407 -1.53515e-21) (2.77059 0.313926 1.67267e-21) (2.77439 0.296428 -1.67763e-21) (2.77798 0.278917 3.21897e-21) (2.78138 0.261392 -4.9062e-21) (2.78456 0.243855 1.30872e-22) (2.78752 0.226308 0) (2.79026 0.20875 3.25067e-21) (2.79277 0.191183 -3.25114e-21) (2.79504 0.173608 0) (2.79708 0.156025 7.72407e-22) (2.79888 0.138435 -1.55909e-21) (2.80043 0.120838 0) (2.80174 0.103235 8.55804e-22) (2.8028 0.0856256 0) (2.8036 0.0680108 -6.44259e-23) (2.80415 0.0503905 -3.96142e-22) (2.80444 0.0327649 8.1982e-22) (2.80447 0.015134 -1.01785e-21) (2.80425 -0.00250204 4.02604e-22) (2.80376 -0.0201432 -2.04722e-22) (2.5107 0.389045 2.88921e-21) (2.51715 0.375187 4.08068e-21) (2.52234 0.361377 0) (2.52784 0.347576 -4.12006e-21) (2.53351 0.333739 0) (2.53903 0.31986 0) (2.54431 0.305949 0) (2.54938 0.29201 -4.19939e-21) (2.55426 0.278047 2.766e-21) (2.55893 0.264059 2.88816e-21) (2.5634 0.250048 -2.79208e-21) (2.56764 0.236017 0) (2.57167 0.221966 0) (2.57546 0.207897 2.83506e-21) (2.57902 0.193811 -1.36024e-21) (2.58234 0.17971 -4.23709e-21) (2.58541 0.165595 2.85544e-21) (2.58824 0.151467 6.95799e-22) (2.59081 0.137327 -2.87604e-21) (2.59312 0.123175 3.62546e-21) (2.59517 0.109013 -7.0049e-22) (2.59695 0.0948403 2.89129e-21) (2.59847 0.0806586 -7.42411e-22) (2.59971 0.0664682 -1.44784e-21) (2.60068 0.0522695 -7.52556e-22) (2.60137 0.0380629 2.4317e-23) (2.60179 0.0238488 3.52152e-22) (2.60193 0.00962758 1.21376e-23) (2.60179 -0.00460054 -1.8809e-22) (2.60138 -0.0188352 0) (2.33073 0.302095 1.17944e-21) (2.33765 0.291351 -1.21245e-21) (2.34368 0.280622 0) (2.34981 0.269885 1.22799e-21) (2.35596 0.259111 0) (2.36192 0.248299 -1.17311e-21) (2.36765 0.237454 0) (2.37315 0.22658 0) (2.37844 0.21568 1.26098e-21) (2.3835 0.204755 1.2847e-21) (2.38833 0.193806 -3.68416e-21) (2.39292 0.182836 2.49677e-21) (2.39727 0.171845 -2.50023e-21) (2.40138 0.160836 0) (2.40522 0.149809 -6.16659e-22) (2.40881 0.138766 1.31038e-21) (2.41214 0.127708 0) (2.41519 0.116636 -1.28333e-21) (2.41797 0.105552 -6.25577e-22) (2.42048 0.0944548 2.57201e-21) (2.4227 0.0833468 -1.28036e-21) (2.42464 0.0722282 0) (2.42629 0.0610997 1.9195e-21) (2.42765 0.0499619 -3.88335e-21) (2.42872 0.0388152 1.61205e-21) (2.4295 0.0276603 3.34641e-22) (2.42998 0.0164974 -3.34737e-22) (2.43017 0.00532703 1.67359e-22) (2.43006 -0.00585054 0) (2.42965 -0.0170349 0) (2.1854 0.225229 -1.1026e-21) (2.19264 0.21721 0) (2.19927 0.209189 1.02768e-21) (2.20585 0.201153 0) (2.21233 0.193085 0) (2.21862 0.184985 -1.04956e-21) (2.22466 0.176856 1.09696e-21) (2.23047 0.168702 2.18514e-21) (2.23604 0.160525 -1.06273e-21) (2.24138 0.152325 0) (2.24647 0.144105 5.05442e-21) (2.2513 0.135866 -9.50115e-21) (2.25588 0.127609 -1.61795e-23) (2.26019 0.119337 4.51866e-21) (2.26423 0.111049 5.8381e-22) (2.268 0.102747 2.28859e-21) (2.27149 0.0944316 -2.29233e-21) (2.27469 0.0861046 5.91338e-22) (2.27761 0.0777664 -1.15405e-21) (2.28023 0.0694177 2.3182e-21) (2.28256 0.0610593 -5.97001e-22) (2.28459 0.0526917 -2.86305e-22) (2.28632 0.0443155 0) (2.28775 0.0359311 0) (2.28886 0.0275391 -1.29389e-23) (2.28967 0.0191397 -1.17342e-21) (2.29017 0.0107334 1.17399e-21) (2.29036 0.00232042 -5.86901e-22) (2.29024 -0.00609888 2.93724e-22) (2.2898 -0.0145242 2.93358e-22) (2.0749 0.156145 8.08204e-24) (2.08235 0.15056 -4.65666e-22) (2.08936 0.144968 -9.63845e-22) (2.09623 0.139362 -2.38107e-21) (2.10295 0.133732 -1.0794e-23) (2.10944 0.128078 1.93551e-21) (2.11569 0.122403 9.9928e-22) (2.1217 0.116709 -3.47088e-21) (2.12746 0.110998 3.47964e-21) (2.13296 0.10527 -4.94883e-22) (2.13821 0.0995285 5.15369e-22) (2.14319 0.093773 5.18917e-22) (2.1479 0.088005 -4.10246e-21) (2.15234 0.0822256 8.74887e-21) (2.1565 0.0764357 -3.62603e-21) (2.16037 0.0706361 -2.57096e-22) (2.16395 0.0648276 0) (2.16723 0.0590108 2.10572e-21) (2.17022 0.0531863 -2.6483e-21) (2.17291 0.0473547 -2.38346e-21) (2.17529 0.0415162 2.1252e-21) (2.17736 0.0356715 -1.86245e-21) (2.17911 0.0298207 4.5404e-21) (2.18056 0.0239641 -2.00952e-21) (2.18168 0.018102 -1.34679e-21) (2.18249 0.0122345 9.41491e-22) (2.18298 0.00636188 0) (2.18315 0.000484178 6.03832e-22) (2.183 -0.00539844 -5.37653e-22) (2.18252 -0.0112859 0) (1.99933 0.092254 6.60552e-22) (2.0069 0.0889305 0) (2.01416 0.0856016 -1.94016e-21) (2.02122 0.0822639 2.39179e-21) (2.02807 0.0789127 0) (2.03469 0.0755481 0) (2.04106 0.0721716 0) (2.04717 0.0687848 -4.31221e-21) (2.05304 0.0653884 3.87953e-21) (2.05864 0.0619831 2.38228e-22) (2.06397 0.0585699 0) (2.06903 0.0551493 3.74989e-21) (2.07382 0.051722 -3.76276e-21) (2.07832 0.0482886 -4.81121e-22) (2.08253 0.0448496 -4.84231e-22) (2.08645 0.0414055 2.43575e-22) (2.09007 0.0379566 -1.19998e-22) (2.09338 0.0345033 0) (2.0964 0.0310459 1.21182e-22) (2.0991 0.0275847 3.70079e-22) (2.1015 0.0241199 1.22152e-22) (2.10357 0.0206517 0) (2.10533 0.0171801 -3.73728e-22) (2.10677 0.0137054 -6.41139e-23) (2.10788 0.0102275 0) (2.10868 0.00674656 1.87896e-22) (2.10914 0.00326258 3.09214e-23) (2.10928 -0.000224413 -5.61233e-22) (2.10909 -0.0037144 2.49321e-22) (2.10858 -0.00720738 2.41309e-22) (1.96001 0.0305971 -2.0283e-22) (1.96769 0.0294704 -7.88292e-22) (1.97509 0.0283406 2.58899e-21) (1.98226 0.0272075 -1.80756e-21) (1.9892 0.0260702 0) (1.99589 0.0249295 0) (2.00232 0.0237864 0) (2.00849 0.0226417 2.11687e-22) (2.0144 0.021496 2.13777e-22) (2.02003 0.0203499 -3.22003e-21) (2.02539 0.0192037 3.45148e-21) (2.03046 0.0180577 0) (2.03525 0.0169123 3.52359e-21) (2.03976 0.0157674 1.24843e-23) (2.04396 0.0146233 -3.56348e-21) (2.04788 0.0134799 0) (2.05148 0.0123372 1.13794e-22) (2.05479 0.0111951 0) (2.05779 0.0100535 -1.15041e-22) (2.06047 0.00891213 -1.15583e-22) (2.06284 0.00777086 -1.96143e-21) (2.0649 0.00662944 1.84944e-21) (2.06663 0.00548763 1.16864e-22) (2.06805 0.00434516 -5.85862e-23) (2.06914 0.00320177 0) (2.06991 0.0020572 -5.88026e-23) (2.07036 0.000911183 -2.94321e-23) (2.07047 -0.000236531 -4.67713e-22) (2.07026 -0.00138618 4.67947e-22) (2.06973 -0.00253797 7.35743e-24) (1.00096 0.073937 0) (1.00787 0.222593 0) (1.02166 0.372752 0) (1.04273 0.525851 0) (1.07134 0.683097 0) (1.10795 0.84565 0) (1.15306 1.01459 0) (1.20715 1.19077 0) (1.27056 1.37475 0) (1.34343 1.56656 0) (1.42558 1.76569 0) (1.51655 1.97098 0) (1.61562 2.1808 0) (1.72194 2.39315 0) (1.83469 2.60597 0) (1.95333 2.81745 0) (2.07776 3.02641 0) (2.20878 3.23266 0) (2.3483 3.43757 0) (2.50027 3.64428 0) (2.67006 3.85798 0) (2.86677 4.0842 0) (3.09747 4.32886 0) (3.37781 4.59266 0) (3.70643 4.8779 0) (4.1181 5.17276 0) (4.57761 5.47797 0) (5.18784 5.77631 0) (5.82048 6.03118 0) (6.78556 6.36287 0) (1.00109 0.0724406 0) (1.00835 0.218099 0) (1.02245 0.365267 0) (1.04391 0.515273 0) (1.07291 0.669285 0) (1.10992 0.828431 0) (1.15549 0.993779 0) (1.21014 1.16624 0) (1.27431 1.34642 0) (1.34826 1.53449 0) (1.43196 1.73006 0) (1.52508 1.93212 0) (1.62699 2.13912 0) (1.73692 2.34911 0) (1.85406 2.56001 0) (1.97783 2.76987 0) (2.10807 2.97727 0) (2.2454 3.18166 0) (2.39146 3.38388 0) (2.54986 3.58637 0) (2.72542 3.79354 0) (2.92698 4.01032 0) (3.16084 4.24228 0) (3.44331 4.49035 0) (3.77127 4.75628 0) (4.18131 5.03107 0) (4.63519 5.30568 0) (5.2308 5.58988 0) (5.85622 5.75066 0) (6.71064 6.1626 0) (1.00114 0.0708257 0) (1.00859 0.213238 0) (1.02295 0.357176 0) (1.04475 0.503824 0) (1.07413 0.654295 0) (1.11153 0.809663 0) (1.1575 0.970971 0) (1.21264 1.13914 0) (1.27746 1.31483 0) (1.35234 1.49831 0) (1.4374 1.68932 0) (1.53245 1.88698 0) (1.637 2.08987 0) (1.75034 2.29607 0) (1.87171 2.50348 0) (2.00051 2.71002 0) (2.13645 2.91402 0) (2.28002 3.1145 0) (2.43254 3.31171 0) (2.59727 3.50724 0) (2.7784 3.70459 0) (2.98443 3.90776 0) (3.22074 4.12174 0) (3.50413 4.34742 0) (3.83002 4.58531 0) (4.23499 4.83124 0) (4.68301 5.05865 0) (5.25185 5.32667 0) (5.8725 5.36276 0) (6.63333 5.82354 0) (1.00115 0.0691329 0) (1.00872 0.208173 0) (1.02325 0.348767 0) (1.04533 0.491967 0) (1.07504 0.638817 0) (1.11278 0.79033 0) (1.15911 0.947503 0) (1.21465 1.11125 0) (1.27998 1.28226 0) (1.35561 1.4609 0) (1.44179 1.64701 0) (1.53849 1.83987 0) (1.64536 2.03815 0) (1.7618 2.24004 0) (1.88711 2.44339 0) (2.02065 2.64604 0) (2.16206 2.84608 0) (2.31164 3.04215 0) (2.4704 3.2339 0) (2.64119 3.42214 0) (2.82753 3.60941 0) (3.03745 3.79875 0) (3.27532 3.99428 0) (3.55797 4.1973 0) (3.88036 4.4053 0) (4.27559 4.62394 0) (4.71765 4.79757 0) (5.25206 5.05912 0) (5.86138 4.97943 0) (6.56119 5.46297 0) (1.00116 0.0673327 0) (1.00878 0.202795 0) (1.02343 0.339835 0) (1.04571 0.479395 0) (1.07567 0.622448 0) (1.1137 0.769941 0) (1.16033 0.922815 0) (1.21618 1.08196 0) (1.2819 1.24808 0) (1.35808 1.42161 0) (1.44512 1.60252 0) (1.54315 1.79022 0) (1.65198 1.98353 0) (1.77115 2.18071 0) (1.90002 2.37967 0) (2.03794 2.57815 0) (2.18448 2.77405 0) (2.33977 2.96567 0) (2.50449 3.15214 0) (2.68107 3.33355 0) (2.87228 3.51149 0) (3.08558 3.68819 0) (3.32438 3.8665 0) (3.60463 4.04911 0) (3.92273 4.22788 0) (4.30367 4.42489 0) (4.7386 4.54375 0) (5.23863 4.80855 0) (5.82339 4.63639 0) (6.48586 5.11753 0) (1.00116 0.0654213 0) (1.00879 0.197073 0) (1.02348 0.330305 0) (1.04588 0.465973 0) (1.07602 0.604981 0) (1.11425 0.748206 0) (1.16109 0.896524 0) (1.21715 1.05078 0) (1.28312 1.21169 0) (1.35965 1.37973 0) (1.44728 1.55499 0) (1.5463 1.73701 0) (1.65669 1.92477 0) (1.77813 2.11667 0) (1.91008 2.31067 0) (2.05194 2.50447 0) (2.20318 2.69582 0) (2.36379 2.88274 0) (2.53411 3.06388 0) (2.71617 3.23869 0) (2.91198 3.40782 0) (3.12823 3.57287 0) (3.36764 3.73492 0) (3.64394 3.89935 0) (3.95746 4.04922 0) (4.32113 4.22992 0) (4.74514 4.29424 0) (5.21714 4.56668 0) (5.7633 4.32445 0) (6.397 4.7818 0) (1.00116 0.0634046 0) (1.00877 0.19102 0) (1.02343 0.320196 0) (1.04585 0.451715 0) (1.07606 0.586415 0) (1.11438 0.725105 0) (1.16131 0.868592 0) (1.21746 1.01766 0) (1.28351 1.17302 0) (1.36018 1.33515 0) (1.44811 1.50425 0) (1.54772 1.67999 0) (1.6592 1.86153 0) (1.78238 2.04741 0) (1.91684 2.23569 0) (2.06205 2.42408 0) (2.21743 2.61023 0) (2.38283 2.7919 0) (2.55829 2.96734 0) (2.74539 3.13543 0) (2.9455 3.29587 0) (3.1642 3.44992 0) (3.40414 3.59615 0) (3.67516 3.74429 0) (3.98371 3.86492 0) (4.32962 4.03344 0) (4.736 4.04349 0) (5.18817 4.32217 0) (5.68647 4.02957 0) (6.2902 4.44461 0) (1.00115 0.0612862 0) (1.00872 0.184651 0) (1.02329 0.309531 0) (1.04563 0.436649 0) (1.07579 0.56678 0) (1.11407 0.700668 0) (1.16095 0.839049 0) (1.21702 0.982646 0) (1.28296 1.13211 0) (1.35952 1.28796 0) (1.44741 1.45042 0) (1.5472 1.61932 0) (1.65922 1.79395 0) (1.78351 1.97304 0) (1.9198 2.15477 0) (2.06762 2.33694 0) (2.22641 2.51711 0) (2.39589 2.69288 0) (2.57585 2.86211 0) (2.76739 3.02325 0) (2.97139 3.17499 0) (3.19195 3.31867 0) (3.4324 3.44943 0) (3.69732 3.5833 0) (3.99964 3.6744 0) (4.33013 3.83424 0) (4.71081 3.79192 0) (5.14861 4.06988 0) (5.59715 3.74845 0) (6.16672 4.10577 0) (1.00114 0.0590684 0) (1.00864 0.177972 0) (1.02308 0.298326 0) (1.04525 0.420798 0) (1.07522 0.546101 0) (1.1133 0.674919 0) (1.15996 0.807919 0) (1.21576 0.945755 0) (1.28137 1.08903 0) (1.35754 1.23823 0) (1.44504 1.39362 0) (1.54454 1.55513 0) (1.65652 1.72221 0) (1.78121 1.89376 0) (1.91849 2.06814 0) (2.06805 2.24323 0) (2.22934 2.41662 0) (2.40199 2.58577 0) (2.58559 2.74826 0) (2.78076 2.90223 0) (2.98809 3.04528 0) (3.2098 3.17935 0) (3.45058 3.29518 0) (3.70948 3.41719 0) (4.00307 3.47904 0) (4.32241 3.63306 0) (4.67113 3.5447 0) (5.09473 3.80927 0) (5.49745 3.48279 0) (6.02997 3.77273 0) (1.00113 0.0567532 0) (1.00853 0.170992 0) (1.02279 0.286601 0) (1.0447 0.404189 0) (1.07436 0.52441 0) (1.11208 0.647892 0) (1.15832 0.775236 0) (1.21362 0.907026 0) (1.27865 1.0438 0) (1.35413 1.18602 0) (1.44086 1.33394 0) (1.53957 1.48757 0) (1.65089 1.64649 0) (1.77519 1.80979 0) (1.91257 1.97601 0) (2.06282 2.14318 0) (2.2255 2.30893 0) (2.4002 2.47074 0) (2.58639 2.62589 0) (2.78412 2.77245 0) (2.99403 2.90679 0) (3.21617 3.03211 0) (3.45656 3.13365 0) (3.71065 3.24654 0) (3.99221 3.28044 0) (4.30456 3.42948 0) (4.61978 3.30751 0) (5.02464 3.54283 0) (5.38747 3.23189 0) (5.88261 3.45315 0) (1.00112 0.0543435 0) (1.0084 0.163722 0) (1.02242 0.274377 0) (1.04399 0.386859 0) (1.07322 0.50176 0) (1.11041 0.619649 0) (1.15602 0.741069 0) (1.21059 0.866537 0) (1.27475 0.996528 0) (1.34921 1.13144 0) (1.43475 1.27153 0) (1.53217 1.41685 0) (1.64217 1.56707 0) (1.76526 1.72144 0) (1.90172 1.87871 0) (2.05152 2.0371 0) (2.21434 2.19436 0) (2.38973 2.34803 0) (2.5772 2.49518 0) (2.77618 2.63399 0) (2.98757 2.75954 0) (3.2095 2.87693 0) (3.44807 2.96479 0) (3.69931 3.07111 0) (3.96604 3.08024 0) (4.27317 3.22156 0) (4.55888 3.08298 0) (4.93917 3.27565 0) (5.26648 2.99237 0) (5.72564 3.15077 0) (1.0011 0.0518436 0) (1.00825 0.156177 0) (1.02199 0.261684 0) (1.04313 0.368853 0) (1.0718 0.478213 0) (1.1083 0.590276 0) (1.15307 0.705524 0) (1.20664 0.82441 0) (1.26962 0.947345 0) (1.3427 1.07467 0) (1.42665 1.20662 0) (1.52224 1.34323 0) (1.63024 1.48427 0) (1.75129 1.62914 0) (1.88578 1.77675 0) (2.03388 1.92554 0) (2.19542 2.07343 0) (2.36997 2.21813 0) (2.55715 2.35654 0) (2.75589 2.4872 0) (2.96718 2.60371 0) (3.18836 2.71389 0) (3.42298 2.78871 0) (3.67301 2.88992 0) (3.92417 2.88016 0) (4.22443 3.00778 0) (4.48772 2.86954 0) (4.8405 3.01344 0) (5.13448 2.76141 0) (5.55915 2.8661 0) (1.00108 0.0492589 0) (1.00807 0.148374 0) (1.02148 0.248555 0) (1.04211 0.350226 0) (1.07012 0.453851 0) (1.10576 0.559879 0) (1.14948 0.668733 0) (1.2018 0.780807 0) (1.26329 0.896449 0) (1.33461 1.01594 0) (1.4165 1.13948 0) (1.50973 1.26708 0) (1.61507 1.39857 0) (1.73322 1.53344 0) (1.8647 1.67079 0) (2.0098 1.80926 0) (2.16856 1.94697 0) (2.34059 2.08186 0) (2.52567 2.21078 0) (2.72247 2.33276 0) (2.9316 2.43985 0) (3.15135 2.54326 0) (3.3798 2.60607 0) (3.62861 2.70175 0) (3.86605 2.68124 0) (4.1557 2.78865 0) (4.40275 2.66293 0) (4.72925 2.7602 0) (4.99191 2.53798 0) (5.38331 2.59867 0) (1.00105 0.0465966 0) (1.00786 0.140337 0) (1.0209 0.235032 0) (1.04095 0.331042 0) (1.06817 0.428762 0) (1.10281 0.52858 0) (1.14529 0.630859 0) (1.19609 0.73593 0) (1.25577 0.844085 0) (1.32497 0.955549 0) (1.40436 1.07046 0) (1.49469 1.18884 0) (1.59671 1.3105 0) (1.71113 1.43503 0) (1.83857 1.56164 0) (1.97941 1.68921 0) (2.13385 1.81605 0) (2.30162 1.94039 0) (2.48258 2.05906 0) (2.67563 2.17181 0) (2.88015 2.26905 0) (3.09722 2.36556 0) (3.31786 2.41819 0) (3.56319 2.50603 0) (3.79004 2.48318 0) (4.06585 2.56648 0) (4.29972 2.45888 0) (4.60334 2.51712 0) (4.83786 2.32175 0) (5.198 2.34792 0) (1.00102 0.0438654 0) (1.00763 0.132091 0) (1.02025 0.221161 0) (1.03966 0.311371 0) (1.06599 0.40305 0) (1.09948 0.49652 0) (1.14052 0.592083 0) (1.18957 0.690012 0) (1.24716 0.790538 0) (1.31386 0.893836 0) (1.39032 0.999997 0) (1.47723 1.109 0) (1.5753 1.22068 0) (1.68524 1.33465 0) (1.80766 1.45025 0) (1.94304 1.56651 0) (2.09168 1.68197 0) (2.25348 1.79516 0) (2.42823 1.90292 0) (2.61557 2.00587 0) (2.81302 2.093 0) (3.02522 2.18174 0) (3.23715 2.22668 0) (3.4753 2.30367 0) (3.69368 2.28455 0) (3.95428 2.34402 0) (4.17554 2.25484 0) (4.45927 2.28339 0) (4.66939 2.11201 0) (5.00166 2.11275 0) (1.00099 0.0410755 0) (1.00737 0.12367 0) (1.01953 0.206998 0) (1.03822 0.291297 0) (1.06358 0.376828 0) (1.0958 0.463852 0) (1.13524 0.552607 0) (1.18233 0.643307 0) (1.23754 0.736129 0) (1.30142 0.831194 0) (1.37455 0.928549 0) (1.45756 1.02814 0) (1.55111 1.1298 0) (1.65586 1.23316 0) (1.77242 1.33764 0) (1.90126 1.44242 0) (2.04275 1.54621 0) (2.19701 1.64787 0) (2.36357 1.74427 0) (2.54309 1.83683 0) (2.73136 1.9139 0) (2.93562 1.99345 0) (3.13817 2.0331 0) (3.36536 2.09712 0) (3.57525 2.08425 0) (3.82038 2.12336 0) (4.02859 2.0502 0) (4.29409 2.05773 0) (4.48289 1.90779 0) (4.79109 1.8913 0) (1.00095 0.0382381 0) (1.00708 0.115107 0) (1.01875 0.192604 0) (1.03667 0.270908 0) (1.06097 0.35022 0) (1.09181 0.430738 0) (1.12951 0.512642 0) (1.17445 0.596088 0) (1.22707 0.681197 0) (1.28784 0.768042 0) (1.35729 0.856629 0) (1.43599 0.946877 0) (1.52453 1.03859 0) (1.6235 1.13143 0) (1.73345 1.22488 0) (1.85487 1.31822 0) (1.98807 1.41032 0) (2.1334 1.50031 0) (2.29011 1.58521 0) (2.4597 1.66688 0) (2.63706 1.73425 0) (2.83015 1.80327 0) (3.02218 1.83905 0) (3.23543 1.88972 0) (3.43504 1.88257 0) (3.66424 1.90599 0) (3.85875 1.84577 0) (4.10635 1.8393 0) (4.27598 1.70862 0) (4.56275 1.68151 0) (1.00091 0.0353658 0) (1.00678 0.106441 0) (1.01792 0.178042 0) (1.03502 0.250299 0) (1.05819 0.323354 0) (1.08756 0.397349 0) (1.1234 0.472408 0) (1.16605 0.548631 0) (1.21589 0.62609 0) (1.27333 0.70481 0) (1.33884 0.784759 0) (1.41291 0.865827 0) (1.49604 0.94781 0) (1.58876 1.03038 0) (1.69153 1.11306 0) (1.80483 1.19521 0) (1.92888 1.27586 0) (2.06417 1.35433 0) (2.20981 1.42793 0) (2.3676 1.49845 0) (2.53264 1.55658 0) (2.71188 1.61442 0) (2.89164 1.64654 0) (3.08884 1.68499 0) (3.27576 1.68153 0) (3.4878 1.69352 0) (3.66785 1.64342 0) (3.89674 1.62811 0) (4.04882 1.51486 0) (4.31473 1.48194 0) (1.00087 0.0324715 0) (1.00645 0.0977103 0) (1.01705 0.163382 0) (1.03329 0.229569 0) (1.05527 0.296364 0) (1.0831 0.363857 0) (1.117 0.432121 0) (1.15726 0.50121 0) (1.20419 0.571145 0) (1.25816 0.641912 0) (1.31954 0.713444 0) (1.38875 0.785607 0) (1.46621 0.858186 0) (1.55236 0.930866 0) (1.6476 1.0032 0) (1.75231 1.07464 0) (1.86665 1.14431 0) (1.99113 1.21167 0) (2.1249 1.27446 0) (2.26953 1.33399 0) (2.42116 1.38332 0) (2.58477 1.43025 0) (2.75039 1.45814 0) (2.93001 1.4862 0) (3.10211 1.48426 0) (3.29527 1.48807 0) (3.46013 1.44582 0) (3.6686 1.4252 0) (3.80466 1.32785 0) (4.04823 1.29227 0) (1.00083 0.0295682 0) (1.00612 0.0889559 0) (1.01614 0.148691 0) (1.03149 0.208816 0) (1.05225 0.26938 0) (1.0785 0.330429 0) (1.11041 0.391993 0) (1.14821 0.454083 0) (1.19218 0.51668 0) (1.24258 0.579735 0) (1.29975 0.643151 0) (1.364 0.706775 0) (1.43567 0.770386 0) (1.51512 0.83368 0) (1.60264 0.896245 0) (1.69855 0.957592 0) (1.80295 1.01697 0) (1.91623 1.07388 0) (2.03775 1.12659 0) (2.16856 1.17573 0) (2.306 1.21669 0) (2.45315 1.25367 0) (2.60323 1.27672 0) (2.76426 1.29627 0) (2.92012 1.29424 0) (3.09287 1.29219 0) (3.24201 1.25608 0) (3.42811 1.23245 0) (3.54962 1.14957 0) (3.7683 1.11326 0) (1.00078 0.0266686 0) (1.00578 0.0802158 0) (1.01522 0.134034 0) (1.02967 0.188133 0) (1.04919 0.242526 0) (1.07383 0.297222 0) (1.10373 0.352216 0) (1.13907 0.407484 0) (1.18005 0.462977 0) (1.2269 0.518615 0) (1.27985 0.57428 0) (1.33915 0.629806 0) (1.40507 0.684969 0) (1.47784 0.73948 0) (1.5577 0.792962 0) (1.64485 0.844976 0) (1.73937 0.894888 0) (1.84149 0.942227 0) (1.95075 0.985713 0) (2.06773 1.02544 0) (2.19072 1.05858 0) (2.32137 1.08693 0) (2.45527 1.10489 0) (2.59743 1.11762 0) (2.73638 1.1146 0) (2.88798 1.1084 0) (3.02118 1.07719 0) (3.1836 1.05211 0) (3.29188 0.982254 0) (3.48326 0.94642 0) (1.00073 0.023784 0) (1.00543 0.0715247 0) (1.0143 0.11947 0) (1.02785 0.167604 0) (1.04614 0.215911 0) (1.06919 0.264372 0) (1.09709 0.312956 0) (1.12999 0.361611 0) (1.16804 0.410266 0) (1.2114 0.458822 0) (1.26023 0.507145 0) (1.31472 0.555063 0) (1.37503 0.602356 0) (1.44134 0.648753 0) (1.51378 0.693912 0) (1.59248 0.737441 0) (1.67745 0.778814 0) (1.7688 0.817578 0) (1.86622 0.852827 0) (1.96988 0.884325 0) (2.07874 0.910378 0) (2.1935 0.931502 0) (2.31139 0.944612 0) (2.43521 0.952004 0) (2.55732 0.947703 0) (2.6881 0.938715 0) (2.80556 0.911526 0) (2.94423 0.886189 0) (3.04036 0.827875 0) (3.20329 0.793356 0) (1.00069 0.0209239 0) (1.00509 0.0629108 0) (1.01339 0.105046 0) (1.02607 0.147295 0) (1.04315 0.189622 0) (1.06464 0.231987 0) (1.09061 0.27434 0) (1.12116 0.316612 0) (1.15638 0.358718 0) (1.19638 0.400546 0) (1.24128 0.441958 0) (1.29117 0.482782 0) (1.34617 0.522809 0) (1.40636 0.561787 0) (1.47182 0.599414 0) (1.54257 0.635342 0) (1.6186 0.669139 0) (1.69989 0.700389 0) (1.7862 0.728446 0) (1.87748 0.752937 0) (1.97306 0.772841 0) (2.07307 0.788083 0) (2.17581 0.796966 0) (2.28256 0.800333 0) (2.3886 0.794883 0) (2.49996 0.784283 0) (2.60227 0.760536 0) (2.71853 0.73596 0) (2.80341 0.687716 0) (2.93852 0.655238 0) (1.00065 0.0180946 0) (1.00477 0.0543936 0) (1.01253 0.0907951 0) (1.02435 0.127252 0) (1.04029 0.163716 0) (1.0603 0.200135 0) (1.08443 0.236446 0) (1.11274 0.272574 0) (1.14529 0.308424 0) (1.18214 0.343883 0) (1.22336 0.378815 0) (1.26898 0.413056 0) (1.31906 0.446414 0) (1.37362 0.478661 0) (1.43265 0.509533 0) (1.49615 0.53873 0) (1.56403 0.5659 0) (1.63619 0.590678 0) (1.71243 0.612592 0) (1.79255 0.63126 0) (1.8761 0.646035 0) (1.96289 0.656638 0) (2.05187 0.662112 0) (2.14341 0.662633 0) (2.2347 0.656421 0) (2.32882 0.645243 0) (2.41703 0.624597 0) (2.51339 0.601672 0) (2.58782 0.562148 0) (2.69744 0.532401 0) (1.00061 0.0152986 0) (1.00446 0.0459801 0) (1.01171 0.0767282 0) (1.02275 0.10749 0) (1.03761 0.138211 0) (1.05624 0.168834 0) (1.07867 0.199291 0) (1.10492 0.229505 0) (1.13501 0.259384 0) (1.16898 0.288818 0) (1.20684 0.317681 0) (1.24859 0.345823 0) (1.29423 0.373072 0) (1.34373 0.399232 0) (1.39704 0.424078 0) (1.45408 0.447357 0) (1.51474 0.468784 0) (1.57888 0.488056 0) (1.64627 0.504821 0) (1.71666 0.518744 0) (1.78969 0.529393 0) (1.86504 0.536467 0) (1.942 0.539399 0) (2.02047 0.538106 0) (2.0988 0.531641 0) (2.17828 0.52077 0) (2.25389 0.503078 0) (2.33346 0.482552 0) (2.39838 0.450606 0) (2.48601 0.424234 0) (1.00057 0.0125328 0) (1.00419 0.0376615 0) (1.01097 0.0628298 0) (1.0213 0.0879856 0) (1.03519 0.113073 0) (1.05258 0.138037 0) (1.07347 0.162811 0) (1.09787 0.187324 0) (1.12578 0.211489 0) (1.15719 0.235209 0) (1.19208 0.258372 0) (1.23043 0.280849 0) (1.27218 0.302493 0) (1.31728 0.323141 0) (1.36562 0.342606 0) (1.41711 0.360685 0) (1.4716 0.377153 0) (1.52889 0.391768 0) (1.58877 0.404266 0) (1.65096 0.414383 0) (1.71513 0.421815 0) (1.78092 0.426308 0) (1.8478 0.427511 0) (1.91545 0.425274 0) (1.98289 0.419092 0) (2.05041 0.409248 0) (2.11525 0.394504 0) (2.18135 0.376966 0) (2.23788 0.351705 0) (2.3076 0.329274 0) (1.00054 0.00978773 0) (1.00394 0.0294084 0) (1.01033 0.0490501 0) (1.02005 0.0686658 0) (1.03309 0.0882057 0) (1.04941 0.107619 0) (1.06898 0.12685 0) (1.0918 0.145835 0) (1.11783 0.164501 0) (1.14706 0.182767 0) (1.17944 0.20054 0) (1.21491 0.217716 0) (1.2534 0.234177 0) (1.29481 0.249793 0) (1.33904 0.264419 0) (1.38594 0.277899 0) (1.43534 0.290062 0) (1.48703 0.300725 0) (1.5408 0.309696 0) (1.59634 0.316777 0) (1.65335 0.321759 0) (1.71148 0.324447 0) (1.77027 0.324623 0) (1.82936 0.322143 0) (1.88805 0.316737 0) (1.94623 0.308482 0) (2.00235 0.296766 0) (2.0581 0.282657 0) (2.10761 0.263441 0) (2.16351 0.245419 0) (1.00051 0.00704526 0) (1.00375 0.0211661 0) (1.00981 0.0352964 0) (1.01902 0.0493985 0) (1.03139 0.0634329 0) (1.04684 0.0773595 0) (1.06535 0.0911346 0) (1.08689 0.104709 0) (1.11142 0.118027 0) (1.13891 0.131027 0) (1.16928 0.14364 0) (1.20247 0.155789 0) (1.23838 0.167386 0) (1.2769 0.17834 0) (1.3179 0.188544 0) (1.36122 0.197889 0) (1.40668 0.206254 0) (1.45406 0.213512 0) (1.50313 0.219531 0) (1.55361 0.224176 0) (1.60518 0.227307 0) (1.6575 0.228794 0) (1.71019 0.228498 0) (1.76286 0.226316 0) (1.81498 0.222103 0) (1.86625 0.215861 0) (1.91576 0.207303 0) (1.96402 0.196942 0) (2.00804 0.18336 0) (2.05396 0.170123 0) (1.00049 0.00427647 0) (1.00361 0.0128477 0) (1.00943 0.0214227 0) (1.01828 0.0299759 0) (1.03016 0.0384819 0) (1.04499 0.0469153 0) (1.06273 0.0552481 0) (1.08336 0.0634488 0) (1.10682 0.0714825 0) (1.13306 0.0793104 0) (1.16201 0.0868893 0) (1.19359 0.0941716 0) (1.22768 0.101105 0) (1.26417 0.107631 0) (1.30291 0.113687 0) (1.34373 0.119207 0) (1.38645 0.12412 0) (1.43085 0.128349 0) (1.47668 0.131817 0) (1.52367 0.134446 0) (1.57152 0.136156 0) (1.6199 0.136871 0) (1.66844 0.136514 0) (1.71678 0.135025 0) (1.76446 0.13233 0) (1.81111 0.128419 0) (1.85613 0.123166 0) (1.89948 0.116798 0) (1.93966 0.108649 0) (1.97907 0.100514 0) (1.00048 0.00144049 0) (1.00353 0.00432782 0) (1.00923 0.00721626 0) (1.01788 0.0100962 0) (1.02949 0.012959 0) (1.04398 0.0157959 0) (1.06131 0.0185975 0) (1.08145 0.0213527 0) (1.10433 0.0240496 0) (1.12991 0.0266748 0) (1.1581 0.0292136 0) (1.18881 0.0316499 0) (1.22193 0.0339657 0) (1.25734 0.0361417 0) (1.29488 0.0381568 0) (1.33438 0.0399886 0) (1.37565 0.0416132 0) (1.41848 0.0430057 0) (1.46261 0.0441405 0) (1.50779 0.0449914 0) (1.5537 0.0455326 0) (1.60003 0.0457391 0) (1.64642 0.0455865 0) (1.69251 0.0450547 0) (1.73789 0.0441217 0) (1.78218 0.0427819 0) (1.82489 0.0410003 0) (1.86574 0.0388421 0) (1.90392 0.0361102 0) (1.94008 0.0333663 0) (1.00047 0.0863552 0) (1.00365 0.25926 -9.67712e-23) (1.00973 0.433786 9.62418e-23) (1.01871 0.610641 1.09404e-22) (1.0302 0.790531 0) (1.04387 0.973871 -8.01887e-23) (1.05918 1.16079 -2.68439e-23) (1.0755 1.35109 -5.17409e-23) (1.09203 1.54424 1.01827e-22) (1.10794 1.73946 -1.47409e-22) (1.12234 1.93577 -9.30787e-23) (1.13437 2.13213 -8.77928e-23) (1.14321 2.32752 3.94366e-23) (1.14815 2.52111 -3.9319e-23) (1.14857 2.71244 -6.35001e-23) (1.14402 2.90168 0) (1.13433 3.09006 0) (1.11965 3.28048 0) (1.10074 3.47808 7.80381e-24) (1.07877 3.69053 -8.74827e-24) (1.0558 3.92716 -5.10272e-23) (1.03286 4.19739 -1.03221e-22) (1.01265 4.50878 1.0292e-22) (0.99196 4.86605 0) (0.97698 5.27381 0) (0.952845 5.73254 3.18837e-22) (0.942667 6.25783 4.16874e-22) (0.90287 6.83894 -6.95709e-22) (0.894852 7.54351 1.23592e-21) (0.831211 8.31158 9.14722e-22) (1.00043 0.0859192 -2.16227e-22) (1.00373 0.257977 3.27409e-22) (1.01014 0.431692 -3.25675e-22) (1.01961 0.607793 5.06431e-23) (1.0318 0.787014 5.37522e-23) (1.0464 0.969807 3.16355e-22) (1.06291 1.15634 -2.05884e-22) (1.08069 1.34646 2.01589e-22) (1.099 1.53965 -9.83247e-23) (1.117 1.73517 1.11494e-24) (1.13381 1.93202 9.98174e-23) (1.14856 2.12917 8.77927e-23) (1.16043 2.32557 -1.56617e-22) (1.16871 2.52036 -2.74134e-22) (1.17277 2.71305 3.17472e-22) (1.17218 2.90374 -9.67325e-23) (1.16677 3.09358 -5.4934e-23) (1.15673 3.28532 1.89502e-23) (1.14287 3.48396 3.04154e-23) (1.12647 3.69699 1.57055e-22) (1.10976 3.93368 -1.05559e-22) (1.09402 4.20347 0) (1.08226 4.51417 -6.20294e-22) (1.07173 4.87072 -2.3018e-22) (1.06876 5.27791 8.46239e-22) (1.05965 5.73639 -9.71597e-22) (1.06658 6.26147 -2.35939e-21) (1.04992 6.84343 1.39282e-21) (1.06659 7.54778 0) (1.04239 8.31748 5.20159e-21) (1.00039 0.0854838 2.42824e-22) (1.00381 0.256698 -1.89883e-22) (1.01054 0.4296 5.8344e-22) (1.0205 0.604943 -6.31992e-22) (1.03338 0.783487 -1.04186e-22) (1.0489 0.965719 -5.13891e-22) (1.06658 1.15185 4.07296e-22) (1.08582 1.34175 -4.02416e-22) (1.1059 1.53496 1.96113e-22) (1.12597 1.73074 -3.74591e-22) (1.14518 1.9281 -1.32715e-24) (1.16264 2.12599 -3.28471e-22) (1.17755 2.32336 1.56623e-22) (1.18916 2.51932 3.95392e-22) (1.19688 2.71331 -3.74884e-22) (1.20025 2.90541 2.54933e-22) (1.19914 3.09664 -3.56525e-23) (1.19376 3.28967 -3.30891e-23) (1.18498 3.48931 -1.36171e-23) (1.17416 3.7029 1.2643e-22) (1.16372 3.93959 3.0293e-22) (1.15519 4.20891 -3.02066e-22) (1.15188 4.51882 0) (1.1515 4.87448 0) (1.16053 5.28086 2.32534e-21) (1.16645 5.73876 -3.29661e-22) (1.19052 6.26315 0) (1.19705 6.84529 0) (1.23849 7.54864 0) (1.25416 8.31829 -1.85561e-21) (1.00035 0.0850494 0) (1.0039 0.255423 5.22643e-23) (1.01094 0.427512 -4.73181e-22) (1.02137 0.602094 6.23702e-22) (1.03494 0.779952 -2.05209e-22) (1.05137 0.961609 2.08088e-22) (1.07021 1.14731 1.99728e-22) (1.09089 1.33698 0) (1.11271 1.53018 -3.70046e-22) (1.13486 1.72618 7.36765e-22) (1.15645 1.92401 0) (1.17663 2.12262 3.28467e-22) (1.19457 2.32091 -2.89877e-22) (1.20952 2.51798 0) (1.22089 2.71324 0) (1.22825 2.90668 0) (1.23145 3.09927 -2.29968e-22) (1.23074 3.29352 4.48477e-23) (1.22705 3.49412 -3.7159e-23) (1.22185 3.70823 -2.707e-22) (1.21769 3.94491 0) (1.21638 4.21369 0) (1.2215 4.52271 -5.74546e-22) (1.23128 4.87734 -1.80395e-21) (1.2523 5.28265 2.84181e-21) (1.27325 5.73965 4.06736e-22) (1.3145 6.26286 -3.10308e-21) (1.34427 6.84448 5.21159e-21) (1.4105 7.54606 -1.48839e-20) (1.4664 8.31395 -7.02207e-21) (1.00031 0.0846162 0) (1.00398 0.254152 -1.02079e-22) (1.01133 0.425429 1.0179e-22) (1.02224 0.599246 0) (1.03648 0.776412 0) (1.0538 0.957482 0) (1.07379 1.14274 0) (1.0959 1.33215 7.45088e-22) (1.11946 1.5253 -7.22141e-22) (1.14365 1.72149 3.43362e-22) (1.16763 1.91977 -9.99497e-22) (1.19051 2.11904 -6.12125e-22) (1.21148 2.31822 2.68432e-22) (1.22979 2.51636 -5.337e-22) (1.24482 2.71283 0) (1.25617 2.90756 -2.61079e-22) (1.2637 3.10145 3.68269e-22) (1.26768 3.29689 -4.53018e-23) (1.2691 3.4984 -2.85153e-22) (1.26952 3.71298 6.74822e-22) (1.27166 3.94961 -5.62797e-22) (1.27757 4.21781 -8.49684e-22) (1.29113 4.52584 1.77126e-21) (1.31106 4.87927 2.09593e-21) (1.34407 5.28328 -7.4997e-21) (1.38005 5.73901 -2.91228e-21) (1.43852 6.26058 9.96093e-21) (1.49157 6.84095 0) (1.58257 7.54002 8.96584e-21) (1.67898 8.30438 -3.81869e-21) (1.00028 0.0841842 0) (1.00406 0.252887 0) (1.01172 0.423352 0) (1.0231 0.596402 0) (1.038 0.772869 0) (1.05621 0.95334 -3.80571e-22) (1.07733 1.13814 -7.36123e-22) (1.10086 1.32726 -3.73301e-22) (1.12613 1.52034 1.07091e-21) (1.15237 1.7167 -1.02034e-21) (1.17871 1.91537 6.56998e-22) (1.2043 2.11528 6.12114e-22) (1.2283 2.31531 4.50809e-23) (1.24995 2.51447 5.10266e-22) (1.26867 2.7121 -3.81105e-22) (1.28401 2.90807 2.33638e-22) (1.29588 3.1032 -3.34855e-22) (1.30457 3.29977 1.61929e-22) (1.31112 3.50214 1.23558e-22) (1.31718 3.71717 -6.83984e-22) (1.32563 3.9537 -3.85219e-23) (1.33878 4.22126 -2.1373e-21) (1.36078 4.5282 2.13596e-21) (1.39085 4.88028 -5.05915e-23) (1.43585 5.28274 -9.36604e-21) (1.48685 5.73686 4.94196e-21) (1.56256 6.25632 -3.62339e-21) (1.63896 6.83464 -4.75235e-21) (1.75464 7.53046 -1.21305e-20) (1.89178 8.28946 1.80674e-20) (1.00025 0.0837538 0) (1.00415 0.251627 0) (1.01211 0.421282 1.92937e-22) (1.02394 0.593563 -1.92441e-22) (1.03951 0.769326 0) (1.05858 0.949187 -7.38019e-22) (1.08083 1.13351 1.46608e-21) (1.10576 1.32232 0) (1.13273 1.51531 6.77238e-22) (1.161 1.71179 -3.49597e-24) (1.18971 1.91084 6.02584e-22) (1.21799 2.11134 -1.15235e-21) (1.24501 2.31217 5.49901e-22) (1.27003 2.51232 0) (1.29242 2.71106 3.81255e-22) (1.31178 2.90822 0) (1.328 3.10453 0) (1.34142 3.30217 -1.50469e-23) (1.35311 3.50536 0) (1.36483 3.72078 -2.45529e-22) (1.37961 3.95717 1.60125e-21) (1.4 4.22403 1.8301e-21) (1.43044 4.5298 4.63494e-23) (1.47067 4.88035 5.61929e-21) (1.52764 5.28103 5.37071e-22) (1.59366 5.73316 2.87151e-21) (1.68661 6.25007 0) (1.78643 6.82552 9.60368e-21) (1.92666 7.5174 1.23445e-20) (2.10468 8.26915 -7.96611e-21) (1.00022 0.0833251 9.46275e-23) (1.00424 0.250373 -8.45053e-22) (1.01249 0.419219 -7.45392e-22) (1.02478 0.590731 7.38789e-22) (1.04099 0.765783 0) (1.06093 0.945025 7.37286e-22) (1.08429 1.12885 -1.77865e-21) (1.1106 1.31734 3.51467e-22) (1.13927 1.5102 1.31731e-21) (1.16955 1.70678 -6.54996e-22) (1.20062 1.90616 0) (1.23159 2.10723 5.46135e-22) (1.26164 2.30883 4.65014e-22) (1.29001 2.50991 -4.63929e-22) (1.31609 2.70971 0) (1.33947 2.90801 3.58319e-22) (1.36006 3.10545 -4.60669e-22) (1.37822 3.30411 -4.52908e-23) (1.39507 3.50805 -3.98209e-22) (1.41247 3.72383 2.22539e-22) (1.43359 3.96003 0) (1.46124 4.22612 3.61422e-22) (1.50012 4.53062 -3.56814e-21) (1.5505 4.87949 -2.27537e-21) (1.61944 5.27814 1.78095e-21) (1.70048 5.72791 0) (1.81066 6.24183 -8.71848e-21) (1.93396 6.81355 -1.2275e-20) (2.09857 7.50082 1.12587e-20) (2.31757 8.24341 1.60766e-20) (1.00019 0.0828983 7.29041e-22) (1.00433 0.249126 9.33243e-22) (1.01287 0.417165 5.60014e-22) (1.02561 0.587906 -1.82666e-23) (1.04246 0.762244 0) (1.06325 0.940857 -3.50783e-22) (1.08771 1.12418 3.68268e-22) (1.1154 1.31232 1.34796e-21) (1.14575 1.50503 6.16213e-22) (1.17803 1.70168 -3.2702e-23) (1.21144 1.90136 -6.00611e-22) (1.2451 2.10295 -2.16232e-23) (1.27817 2.30528 0) (1.3099 2.50725 -7.25933e-22) (1.33968 2.70808 1.03134e-21) (1.36708 2.90746 -1.02596e-22) (1.39206 3.10597 4.06862e-22) (1.41497 3.30558 -3.00245e-23) (1.43701 3.51023 -2.21987e-22) (1.4601 3.7263 -4.6732e-22) (1.48757 3.96228 1.70615e-21) (1.52249 4.22753 -7.20799e-22) (1.56982 4.53066 -1.3904e-21) (1.63035 4.87769 -3.62473e-21) (1.71126 5.27409 0) (1.80731 5.72111 -3.07498e-21) (1.9347 6.23161 0) (2.08156 6.7987 -7.94646e-23) (2.27031 7.48071 -6.35057e-21) (2.53031 8.21217 -4.59488e-20) (1.00017 0.0824734 -7.27391e-22) (1.00442 0.247885 0) (1.01325 0.41512 0) (1.02643 0.58509 -7.18212e-22) (1.04391 0.758709 -3.47607e-22) (1.06555 0.936685 3.46909e-22) (1.09109 1.11949 -6.64835e-22) (1.12014 1.30727 -7.21515e-25) (1.15216 1.4998 -6.40167e-22) (1.18644 1.69649 0) (1.22218 1.89644 -5.38078e-22) (1.25852 2.09852 1.25427e-23) (1.29461 2.30154 0) (1.32971 2.50436 0) (1.36318 2.70615 -7.91156e-22) (1.39463 2.90657 2.81273e-22) (1.42399 3.10609 0) (1.45167 3.3066 7.54566e-23) (1.47891 3.51191 5.74564e-22) (1.50771 3.72822 1.475e-21) (1.54156 3.9639 3.31218e-21) (1.58377 4.22826 2.81784e-21) (1.63955 4.52993 -1.06901e-21) (1.71024 4.87494 5.63247e-21) (1.8031 5.26886 -6.18432e-21) (1.91417 5.71275 2.04492e-20) (2.05869 6.21941 0) (2.22921 6.78095 1.52887e-20) (2.44181 7.45706 1.31341e-20) (2.74278 8.17542 2.17529e-20) (1.00015 0.0820508 0) (1.00451 0.246652 1.74787e-22) (1.01363 0.413084 -1.7447e-22) (1.02724 0.582283 0) (1.04535 0.75518 0) (1.06782 0.932512 6.62388e-22) (1.09444 1.11478 -6.61213e-22) (1.12484 1.30218 -6.23192e-22) (1.15851 1.49451 6.22099e-22) (1.19477 1.69122 0) (1.23284 1.89141 -1.03389e-21) (1.27185 2.09395 1.0321e-21) (1.31097 2.29761 0) (1.34943 2.50125 0) (1.38661 2.70396 0) (1.4221 2.90535 -1.96847e-22) (1.45587 3.10584 2.83337e-22) (1.48833 3.30718 1.84078e-22) (1.52078 3.51308 -1.21575e-21) (1.55532 3.72958 -2.31365e-21) (1.59556 3.96492 3.53054e-21) (1.64507 4.22831 1.46554e-21) (1.70931 4.52841 -5.11767e-21) (1.79016 4.87124 -3.80017e-21) (1.89496 5.26245 -9.95654e-21) (2.02105 5.70281 -2.08526e-20) (2.18264 6.20525 1.45124e-20) (2.37691 6.76025 1.33844e-20) (2.61302 7.42986 -5.02006e-20) (2.95485 8.1331 1.67525e-20) (1.00013 0.0816305 0) (1.00461 0.245427 -1.51531e-21) (1.014 0.411059 5.06858e-22) (1.02804 0.579487 -3.36661e-22) (1.04677 0.751659 6.56475e-22) (1.07007 0.928339 -1.29466e-21) (1.09776 1.11007 -1.26765e-21) (1.1295 1.29706 2.12251e-23) (1.16481 1.48918 6.02546e-22) (1.20304 1.68588 0) (1.24342 1.88627 -1.01993e-21) (1.2851 2.08923 0) (1.32724 2.29351 0) (1.36907 2.49791 0) (1.40996 2.70151 -4.68744e-22) (1.44951 2.90382 0) (1.48769 3.10521 0) (1.52495 3.30733 -6.01834e-22) (1.56263 3.51375 6.41394e-22) (1.60292 3.73038 -1.15247e-21) (1.64956 3.96532 0) (1.70639 4.22767 7.65913e-22) (1.77909 4.5261 -5.313e-21) (1.87012 4.86659 -1.31116e-20) (1.98684 5.25487 1.413e-20) (2.12797 5.69128 1.48689e-20) (2.30651 6.18913 -1.4849e-20) (2.52463 6.73656 -1.0651e-20) (2.78387 7.39909 1.34421e-20) (3.16641 8.08519 3.96933e-20) (1.00012 0.0812127 0) (1.00471 0.244209 1.34169e-21) (1.01437 0.409045 9.70929e-22) (1.02884 0.576701 3.27162e-22) (1.04817 0.748145 -1.26795e-21) (1.07229 0.924167 1.28006e-21) (1.10104 1.10534 0) (1.13411 1.29192 -1.75752e-21) (1.17105 1.4838 2.76329e-23) (1.21124 1.68046 5.54862e-22) (1.25393 1.88104 4.02021e-23) (1.29828 2.08439 -8.39891e-22) (1.34344 2.28924 8.22654e-23) (1.38863 2.49437 6.05373e-22) (1.43324 2.6988 4.6912e-22) (1.47685 2.90198 -1.97992e-22) (1.51946 3.10422 0) (1.56153 3.30706 7.21774e-22) (1.60445 3.51395 0) (1.6505 3.73064 -7.08336e-23) (1.70357 3.96512 1.76607e-21) (1.76774 4.22634 2.32663e-21) (1.84891 4.52302 0) (1.95012 4.86097 8.17919e-21) (2.07874 5.24611 0) (2.23494 5.67813 -6.75998e-21) (2.43028 6.17109 2.78895e-20) (2.67235 6.70984 -3.31855e-20) (2.9543 7.36473 -2.05864e-20) (3.37734 8.03166 -9.16432e-21) (1.00011 0.0807977 -1.26543e-21) (1.00482 0.243 0) (1.01474 0.407042 -2.55576e-21) (1.02963 0.573928 -1.24809e-21) (1.04956 0.744641 1.8836e-21) (1.0745 0.919999 -1.21957e-21) (1.10429 1.10061 -6.04115e-22) (1.13868 1.28676 3.66923e-23) (1.17724 1.47838 -1.08457e-21) (1.21938 1.67498 0) (1.26437 1.87571 3.97721e-23) (1.31138 2.07942 0) (1.35955 2.28481 4.30005e-23) (1.40812 2.49064 -1.1663e-21) (1.45644 2.69585 0) (1.50414 2.89986 5.0868e-23) (1.55117 3.10287 5.1867e-22) (1.59807 3.30637 3.179e-22) (1.64624 3.51366 -2.45915e-21) (1.69809 3.73036 3.29814e-21) (1.75759 3.96431 -1.77084e-21) (1.82912 4.22433 -3.21031e-21) (1.91876 4.51914 9.87873e-21) (2.03017 4.85439 -7.35259e-21) (2.17066 5.23618 -5.45309e-21) (2.34196 5.66336 1.37116e-20) (2.55394 6.15111 2.29937e-21) (2.82005 6.68005 -8.61473e-21) (3.12425 7.32677 4.58008e-20) (3.58751 7.97251 -8.52662e-21) (1.00011 0.0803856 1.41647e-21) (1.00493 0.241799 -1.56157e-22) (1.01511 0.40505 3.39498e-23) (1.03041 0.571166 1.85463e-21) (1.05094 0.741146 -9.8562e-24) (1.07667 0.915835 6.05231e-22) (1.10751 1.09587 -5.69993e-22) (1.1432 1.28158 5.73442e-22) (1.18338 1.47292 2.17352e-21) (1.22746 1.66944 0) (1.27474 1.87029 3.93329e-23) (1.3244 2.07433 0) (1.37559 2.28024 7.14044e-22) (1.42753 2.48671 1.16431e-22) (1.47959 2.69266 3.5391e-22) (1.53136 2.89745 -8.86352e-23) (1.58284 3.10119 -6.33275e-22) (1.63457 3.30528 6.32951e-22) (1.68801 3.51291 4.66568e-22) (1.74566 3.72954 -5.44336e-21) (1.81162 3.9629 7.68491e-21) (1.89053 4.22164 -6.96656e-21) (1.98865 4.51449 -9.74934e-23) (2.11027 4.84684 -8.67309e-21) (2.2626 5.22506 -7.0857e-21) (2.44907 5.64693 -1.7419e-20) (2.67745 6.12921 2.47509e-20) (2.9677 6.64717 -2.24443e-20) (3.29367 7.28516 0) (3.79682 7.9077 -1.94801e-22) (1.00011 0.0799767 0) (1.00504 0.240607 0) (1.01547 0.40307 1.21946e-21) (1.03118 0.568417 -1.17372e-21) (1.0523 0.737661 0) (1.07883 0.911675 0) (1.11069 1.09113 3.51045e-23) (1.14769 1.27638 -1.09629e-21) (1.18947 1.46743 -9.94475e-22) (1.23549 1.66384 5.11793e-23) (1.28505 1.8648 8.99343e-22) (1.33736 2.06914 -7.14067e-22) (1.39157 2.27552 1.41443e-22) (1.44688 2.48261 1.7345e-22) (1.50267 2.68926 7.25794e-22) (1.55853 2.89476 0) (1.61447 3.09918 7.47744e-22) (1.67104 3.3038 -7.47625e-22) (1.72977 3.5117 9.06895e-22) (1.79323 3.7282 3.39203e-21) (1.86566 3.96089 -3.39161e-21) (1.95197 4.21827 -6.1269e-21) (2.05858 4.50905 9.54889e-21) (2.19044 4.83832 -5.74115e-21) (2.35455 5.21278 2.303e-20) (2.55625 5.62884 -5.754e-21) (2.8008 6.10537 0) (3.11525 6.61117 -1.47568e-20) (3.4625 7.23987 1.1345e-20) (4.00516 7.83725 1.8213e-20) (1.00012 0.0795711 1.45948e-22) (1.00515 0.239425 1.45538e-22) (1.01584 0.401102 -2.92295e-22) (1.03195 0.56568 2.8799e-21) (1.05365 0.734187 -5.72489e-22) (1.08097 0.907522 0) (1.11385 1.08638 5.68341e-22) (1.15214 1.27117 5.30715e-22) (1.19551 1.46191 9.56476e-22) (1.24345 1.6582 -1.42328e-23) (1.2953 1.85923 0) (1.35025 2.06384 0) (1.40747 2.27067 1.11759e-21) (1.46617 2.47834 -9.58234e-22) (1.52569 2.68564 2.33601e-22) (1.58565 2.89182 0) (1.64605 3.09686 0) (1.70748 3.30194 6.30289e-22) (1.7715 3.51005 -1.4561e-21) (1.8408 3.72634 9.70631e-22) (1.91971 3.9583 -4.81685e-21) (2.01344 4.21421 1.11551e-20) (2.12855 4.50282 -6.33875e-21) (2.27067 4.82882 0) (2.44652 5.19931 0) (2.66353 5.60907 9.256e-21) (2.92397 6.07958 4.31405e-21) (3.26268 6.57205 -2.10232e-20) (3.63069 7.19084 8.21362e-20) (4.21245 7.76117 -6.72074e-20) (1.00013 0.0791694 -1.41296e-22) (1.00527 0.238251 1.42138e-22) (1.01619 0.399146 1.11253e-21) (1.0327 0.562956 -1.13362e-21) (1.05499 0.730723 1.08346e-21) (1.08308 0.903374 5.30292e-22) (1.11698 1.08164 -5.30507e-22) (1.15656 1.26594 0) (1.20151 1.45636 9.3455e-22) (1.25137 1.65251 0) (1.30548 1.85359 3.36376e-23) (1.36308 2.05845 1.4281e-21) (1.42332 2.26569 -1.01064e-22) (1.48539 2.4739 -1.06145e-21) (1.54866 2.68182 5.66839e-22) (1.61272 2.88863 -2.35588e-22) (1.6776 3.09422 0) (1.7439 3.29971 1.1021e-21) (1.81322 3.50796 -1.38873e-22) (1.88837 3.72398 -1.10978e-21) (1.97378 3.95513 0) (2.07496 4.20949 -9.44839e-21) (2.19856 4.49582 6.55535e-21) (2.35097 4.81834 1.07212e-20) (2.53851 5.18467 -1.07291e-20) (2.7709 5.58762 7.48187e-21) (3.04694 6.05178 0) (3.40992 6.52983 -5.44601e-20) (3.79819 7.13798 5.45044e-20) (4.4186 7.67946 0) (1.00015 0.0787716 0) (1.00539 0.237088 0) (1.01655 0.397203 -1.10858e-21) (1.03345 0.560244 -5.36042e-22) (1.05631 0.72727 -5.43998e-22) (1.08518 0.899233 0) (1.12009 1.07689 0) (1.16093 1.26071 0) (1.20746 1.45079 -5.15466e-23) (1.25923 1.64677 -8.82637e-22) (1.31562 1.84789 -1.49409e-21) (1.37585 2.05297 3.37116e-23) (1.4391 2.2606 8.90267e-22) (1.50456 2.46931 -5.05478e-22) (1.57158 2.67781 8.73211e-23) (1.63975 2.8852 -3.46128e-23) (1.70911 3.0913 0) (1.78029 3.29712 0) (1.85493 3.50544 -2.78134e-21) (1.93595 3.72111 6.66317e-21) (2.02786 3.95138 -3.88309e-21) (2.13651 4.20409 2.90999e-21) (2.26861 4.48803 0) (2.43135 4.80688 0) (2.63052 5.16884 0) (2.87836 5.56447 0) (3.1697 6.02192 0) (3.55692 6.48456 0) (3.96498 7.08118 -6.98942e-20) (4.62354 7.59218 -1.9662e-20) (1.00017 0.0783783 0) (1.00551 0.235935 -1.04712e-21) (1.0169 0.395272 0) (1.0342 0.557545 5.18134e-22) (1.05761 0.723828 -5.18731e-22) (1.08725 0.895099 1.48312e-21) (1.12316 1.07214 -4.94958e-22) (1.16528 1.25547 0) (1.21337 1.44519 0) (1.26704 1.641 -2.5374e-23) (1.32569 1.84213 -1.4426e-21) (1.38856 2.0474 6.73611e-22) (1.45483 2.25539 4.66052e-22) (1.52368 2.46458 -4.40347e-22) (1.59445 2.67362 4.40975e-22) (1.66675 2.88154 0) (1.74059 3.08809 1.65629e-21) (1.81666 3.29418 -1.207e-21) (1.89663 3.50251 -1.24184e-21) (1.98353 3.71776 0) (2.08197 3.94707 0) (2.19811 4.19803 -6.99086e-21) (2.33872 4.47947 1.99294e-20) (2.51181 4.79445 -1.40143e-20) (2.72255 5.15182 0) (2.98589 5.53965 -8.00451e-21) (3.29225 5.98989 0) (3.70362 6.4363 -1.25436e-20) (4.131 7.02027 -5.51906e-20) (4.82724 7.49939 7.1322e-20) (1.0002 0.0779898 1.27631e-22) (1.00563 0.234792 -9.73624e-23) (1.01725 0.393353 -1.00537e-21) (1.03493 0.554857 -9.94368e-22) (1.05891 0.720395 0) (1.08931 0.890972 -1.94016e-21) (1.12621 1.0674 0) (1.16958 1.25021 0) (1.21924 1.43958 8.09204e-22) (1.27481 1.63519 -1.70464e-23) (1.33572 1.83631 -6.34897e-22) (1.40122 2.04176 6.36039e-22) (1.4705 2.25008 -1.19101e-21) (1.54275 2.45972 3.73277e-22) (1.61728 2.66926 2.5153e-22) (1.69371 2.87766 7.5614e-22) (1.77205 3.08461 -1.10742e-21) (1.85302 3.29092 0) (1.93833 3.49917 1.24595e-21) (2.03112 3.71392 0) (2.1361 3.94219 0) (2.25975 4.19131 7.2177e-21) (2.40888 4.47012 -1.12447e-20) (2.59235 4.78103 5.09237e-21) (2.8146 5.1336 0) (3.09347 5.51317 8.0591e-21) (3.41462 5.9556 0) (3.84994 6.38518 -4.54234e-20) (4.29624 6.95505 4.19695e-20) (5.02968 7.40121 2.01466e-20) (1.00023 0.0776064 1.09471e-21) (1.00576 0.23366 1.85911e-21) (1.0176 0.391446 3.07891e-23) (1.03566 0.552181 1.95059e-21) (1.06018 0.716973 0) (1.09134 0.886851 9.51386e-22) (1.12923 1.06266 -8.87917e-22) (1.17385 1.24496 0) (1.22507 1.43394 -7.92008e-22) (1.28253 1.62935 0) (1.34569 1.83045 1.23264e-21) (1.41383 2.03605 -7.42379e-23) (1.48613 2.24468 -2.56303e-22) (1.56177 2.45473 8.61061e-22) (1.64008 2.66473 0) (1.72064 2.87357 5.07569e-22) (1.80349 3.08086 -2.19328e-21) (1.88936 3.28733 3.68576e-21) (1.98002 3.49544 -4.09406e-21) (2.07872 3.70962 5.14285e-21) (2.19025 3.93676 2.55283e-21) (2.32144 4.18394 7.44945e-21) (2.47909 4.45999 -1.17112e-20) (2.67299 4.76665 0) (2.90669 5.11415 0) (3.20106 5.48507 -2.92599e-20) (3.53682 5.91891 3.77778e-20) (3.99578 6.33133 -5.9352e-20) (4.4607 6.88522 5.95209e-20) (5.23088 7.29776 -2.03364e-20) (1.00027 0.0772284 -1.48836e-22) (1.00589 0.232539 8.94822e-23) (1.01795 0.389551 1.43893e-21) (1.03638 0.549517 -5.04103e-22) (1.06145 0.713561 9.09295e-22) (1.09335 0.882736 0) (1.13221 1.05791 3.78697e-23) (1.17809 1.23969 1.66224e-21) (1.23085 1.42829 1.52945e-21) (1.2902 1.62348 -5.27194e-23) (1.35561 1.82454 -6.34774e-22) (1.42639 2.03027 -3.71461e-23) (1.50171 2.23918 1.75451e-22) (1.58075 2.44962 -6.05752e-22) (1.66284 2.66005 0) (1.74754 2.86929 1.1098e-21) (1.83491 3.07687 -3.02555e-21) (1.9257 3.28343 1.55405e-21) (2.02172 3.49134 -2.83502e-21) (2.12633 3.70486 -1.92213e-21) (2.24444 3.93079 -5.21204e-21) (2.38319 4.17593 -3.42714e-21) (2.54937 4.44908 -1.05433e-22) (2.75371 4.75131 0) (2.99883 5.09343 -6.93153e-21) (3.3086 5.4554 2.15087e-20) (3.6589 5.87966 -4.96244e-20) (4.14103 6.27494 6.06828e-20) (4.6244 6.81049 -6.08915e-20) (5.43087 7.18936 -7.57645e-20) (1.00031 0.076856 -2.95846e-23) (1.00602 0.231427 -7.07432e-22) (1.01829 0.387667 6.72061e-22) (1.03709 0.546864 -9.22141e-22) (1.0627 0.71016 -9.06207e-22) (1.09533 0.87863 8.52588e-22) (1.13517 1.05317 -8.14136e-22) (1.18228 1.23442 7.72226e-22) (1.23658 1.42263 -4.47156e-23) (1.29782 1.61759 -6.87168e-22) (1.36549 1.81858 -1.04891e-21) (1.4389 2.02443 5.64747e-22) (1.51724 2.2336 4.82815e-22) (1.5997 2.4444 -5.25582e-22) (1.68557 2.65522 3.8213e-22) (1.77442 2.86482 -3.8346e-22) (1.86632 3.07264 6.15458e-22) (1.96203 3.27923 0) (2.06342 3.48686 -6.50822e-23) (2.17397 3.69966 0) (2.29865 3.92428 8.84185e-21) (2.44498 4.16729 -2.75838e-21) (2.61973 4.43739 4.3996e-21) (2.83451 4.73503 0) (3.09104 5.07139 6.98296e-21) (3.41605 5.42423 8.69863e-21) (3.7809 5.83769 1.09734e-20) (4.28556 6.2162 0) (4.78742 6.73023 0) (5.62974 7.07616 7.75687e-20) (1.00035 0.076489 -1.33142e-21) (1.00616 0.230326 -4.36724e-22) (1.01864 0.385794 -4.59685e-22) (1.03781 0.544223 -4.40042e-22) (1.06394 0.70677 -4.21515e-22) (1.09729 0.874532 -8.50016e-22) (1.13808 1.04844 3.86878e-22) (1.18641 1.22915 -1.88901e-21) (1.24226 1.41695 -3.32677e-22) (1.30538 1.61166 0) (1.3753 1.81259 0) (1.45135 2.01853 -2.07388e-22) (1.53273 2.22794 -4.03858e-22) (1.61861 2.43908 2.809e-22) (1.70827 2.65026 5.34541e-23) (1.80129 2.86018 -1.06519e-21) (1.89772 3.06819 1.06957e-21) (1.99837 3.27474 2.08263e-21) (2.10513 3.48202 -1.12569e-21) (2.22162 3.69402 0) (2.35291 3.91724 0) (2.50683 4.15802 1.63548e-20) (2.69016 4.4249 -1.87491e-20) (2.91539 4.71781 -2.59731e-20) (3.18334 5.048 2.97503e-20) (3.52333 5.39165 0) (3.9029 5.79291 0) (4.42916 6.15558 0) (4.9498 6.64424 0) (5.82752 6.95926 0) (1.00041 0.0761264 5.37689e-22) (1.00632 0.229231 3.27552e-22) (1.01901 0.383928 0) (1.03853 0.54159 0) (1.06517 0.703387 4.19992e-22) (1.09922 0.870439 -7.84941e-22) (1.14093 1.0437 1.18108e-21) (1.19047 1.22386 1.07158e-21) (1.24785 1.41125 -3.57784e-22) (1.31285 1.60571 -5.55856e-22) (1.38503 1.80655 5.58254e-22) (1.46374 2.01258 2.07408e-22) (1.54817 2.22221 0) (1.63748 2.43365 0) (1.73095 2.64517 -6.32722e-23) (1.82814 2.85537 0) (1.92911 3.06352 -1.89644e-21) (2.03471 3.26999 -3.0841e-22) (2.14685 3.47684 6.61673e-21) (2.26929 3.68796 -8.93919e-21) (2.4072 3.90968 5.1171e-21) (2.56873 4.14814 0) (2.76068 4.41162 2.33778e-21) (2.99634 4.69966 0) (3.27575 5.02316 -3.68948e-21) (3.6304 5.35764 -4.16343e-20) (4.02502 5.74493 4.18564e-20) (4.57175 6.09297 0) (5.11201 6.55068 0) (6.02451 6.83792 0) (1.00047 0.0757673 0) (1.00649 0.22814 -2.04476e-22) (1.01939 0.382067 2.05358e-22) (1.03926 0.538963 0) (1.06639 0.700011 3.90553e-22) (1.1011 0.866348 -7.83546e-22) (1.14371 1.03896 0) (1.19443 1.21856 0) (1.25331 1.40552 0) (1.32018 1.5997 0) (1.39463 1.80045 0) (1.47601 2.00654 0) (1.56351 2.21638 0) (1.65628 2.42812 0) (1.75358 2.63995 1.06805e-22) (1.85498 2.85038 -1.27047e-21) (1.96051 3.05863 1.27726e-21) (2.07105 3.26496 2.28784e-21) (2.18859 3.47132 -6.91085e-21) (2.31699 3.68149 4.00778e-21) (2.46154 3.90161 1.36499e-20) (2.63069 4.13765 -1.37279e-20) (2.83129 4.39756 -2.19036e-20) (3.07733 4.68066 2.20319e-20) (3.36828 4.99696 3.86573e-21) (3.73713 5.32265 0) (4.14717 5.69436 0) (4.71259 6.02997 -7.40892e-21) (5.2734 6.45204 0) (6.21973 6.71756 0) (1.00054 0.0754156 0) (1.00669 0.22707 0) (1.0198 0.380242 0) (1.04 0.536388 -5.74566e-22) (1.06758 0.696701 1.33528e-21) (1.10292 0.862329 -7.52382e-22) (1.14637 1.03428 1.73312e-22) (1.1982 1.21332 4.72819e-22) (1.25854 1.39983 -7.87351e-22) (1.32725 1.59373 -9.78549e-22) (1.40396 1.79434 2.14944e-22) (1.48803 2.00048 7.73235e-22) (1.57864 2.2105 0) (1.67492 2.42249 -2.4064e-22) (1.77611 2.6346 -6.14804e-22) (1.88175 2.84524 7.54263e-22) (1.99187 3.05353 0) (2.1074 3.25966 6.23913e-22) (2.23036 3.46547 0) (2.36473 3.67461 0) (2.51594 3.89303 0) (2.69271 4.12653 1.005e-21) (2.90203 4.38262 0) (3.15842 4.66058 -2.82307e-20) (3.46112 4.96876 5.96749e-20) (3.84387 5.28542 -3.5394e-20) (4.27034 5.6392 -5.44621e-20) (4.85339 5.9617 6.23328e-20) (5.43788 6.34044 8.0055e-20) (6.41697 6.5887 -8.53034e-20) (1.00063 0.0750773 0) (1.00695 0.226051 0) (1.02027 0.378521 0) (1.04078 0.53397 1.89957e-22) (1.06876 0.693601 -5.31699e-22) (1.10464 0.858573 7.21974e-22) (1.14883 1.02992 -1.72827e-22) (1.20167 1.20843 7.66985e-22) (1.26335 1.39454 -3.89671e-22) (1.33381 1.58816 0) (1.41272 1.78868 0) (1.49945 1.99486 -3.43614e-23) (1.59319 2.20504 9.78782e-23) (1.69305 2.41726 -9.85032e-23) (1.79822 2.62958 -8.39874e-22) (1.90821 2.84035 2.24677e-21) (2.02306 3.0486 -1.4849e-21) (2.14368 3.25444 0) (2.27214 3.45961 -4.07032e-21) (2.41253 3.66768 4.3364e-21) (2.57043 3.88441 -1.45579e-20) (2.75478 4.1155 1.36504e-20) (2.97271 4.36794 -6.54689e-22) (3.23899 4.64134 -2.90306e-20) (3.55293 4.94177 2.9248e-20) (3.94802 5.25106 -4.49852e-20) (4.38943 5.58854 9.96388e-20) (4.98571 5.90264 -5.6324e-20) (5.59238 6.24151 2.3946e-21) (6.59799 6.4891 -3.05993e-21) (1.00075 0.0747031 0) (1.0073 0.224939 1.82204e-22) (1.02083 0.376679 -1.83253e-22) (1.04161 0.531411 0) (1.06992 0.690345 6.92288e-22) (1.10622 0.854649 -6.96361e-22) (1.15098 1.02538 6.26949e-22) (1.20461 1.20337 -5.40458e-23) (1.26738 1.38907 -6.50787e-22) (1.33931 1.58247 -8.52488e-22) (1.42014 1.78293 2.21362e-22) (1.50931 1.98923 3.12011e-22) (1.60603 2.19967 3.84266e-22) (1.70941 2.41222 -1.94331e-23) (1.81865 2.62484 9.3643e-22) (1.93321 2.83578 -8.68343e-22) (2.05312 3.04397 2.3709e-21) (2.17929 3.24942 -2.38618e-21) (2.31385 3.45378 4.23057e-21) (2.46103 3.66052 -4.4966e-21) (2.62658 3.87521 0) (2.81978 4.10344 0) (3.0482 4.35149 2.44308e-20) (3.32685 4.61918 -2.39306e-20) (3.65593 4.90984 0) (4.06799 5.20819 0) (4.53217 5.52316 5.8337e-20) (5.14843 5.8194 -5.71307e-20) (5.79508 6.10374 2.43474e-21) (6.82989 6.33779 3.03907e-21) (0.999923 0.0981211 0) (0.99709 0.293328 -6.86144e-22) (0.990362 0.48693 6.90662e-22) (0.97963 0.679313 0) (0.96429 0.870126 0) (0.943715 1.05883 -2.83311e-21) (0.917133 1.24461 -7.84561e-25) (0.88372 1.4264 3.31284e-24) (0.842629 1.60305 2.53227e-21) (0.793045 1.77339 5.76756e-21) (0.734214 1.93639 -5.72726e-23) (0.665441 2.09134 2.72076e-22) (0.586066 2.23794 -1.13847e-20) (0.495402 2.37668 5.6753e-21) (0.392655 2.50936 5.35177e-21) (0.276829 2.6398 -5.71792e-21) (0.146485 2.77458 4.82968e-21) (-0.000137534 2.92272 -4.86767e-21) (-0.165501 3.09334 4.19285e-21) (-0.352826 3.2928 -3.96614e-21) (-0.56583 3.52207 0) (-0.809011 3.77718 0) (-1.08761 4.05208 -2.72401e-22) (-1.40764 4.34107 2.40943e-22) (-1.77675 4.639 0) (-2.20507 4.94151 0) (-2.69841 5.24307 -2.11104e-20) (-3.25911 5.53036 2.18877e-20) (-3.93343 5.77983 1.14291e-21) (-4.81457 6.03523 1.6158e-21) (1.00011 0.0978935 0) (0.997731 0.292726 -6.73822e-22) (0.991586 0.486075 6.77428e-22) (0.981661 0.678347 6.77569e-22) (0.967323 0.86922 3.43038e-21) (0.947971 1.05821 -2.7636e-21) (0.922846 1.24451 -6.90735e-22) (0.891132 1.42713 -2.0979e-21) (0.851982 1.60491 3.85785e-21) (0.804572 1.77669 0) (0.748132 1.94145 0) (0.681958 2.09842 -3.50709e-22) (0.605385 2.2473 -5.41998e-21) (0.517738 2.3885 5.45423e-21) (0.41825 2.52368 -5.11509e-21) (0.305985 2.65647 1.03457e-20) (0.179593 2.7932 -4.91098e-21) (0.0374076 2.94271 0) (-0.12289 3.11426 -3.90222e-21) (-0.304361 3.31469 3.67454e-21) (-0.510603 3.54571 -4.23194e-21) (-0.746005 3.80406 4.46115e-21) (-1.01575 4.08412 3.25821e-23) (-1.32584 4.38053 4.47799e-21) (-1.68366 4.68847 -4.51057e-21) (-2.09942 5.00377 1.49119e-20) (-2.5806 5.32185 -3.76969e-20) (-3.13068 5.63255 2.22876e-20) (-3.779 5.90786 1.12146e-21) (-4.66968 6.16784 -1.54689e-21) (1.00025 0.0975918 0) (0.998257 0.291906 0) (0.992697 0.484879 0) (0.983595 0.676899 6.72342e-22) (0.970279 0.867684 -3.4154e-21) (0.952165 1.05678 2.73588e-21) (0.928505 1.24344 6.92675e-22) (0.898495 1.42669 -3.45449e-21) (0.861288 1.6054 2.07607e-21) (0.816054 1.77841 5.51128e-21) (0.762011 1.94468 -6.31849e-23) (0.698442 2.10342 -5.5082e-21) (0.624678 2.25427 0) (0.540049 2.39757 -5.18912e-21) (0.443812 2.5348 1.48222e-21) (0.335082 2.66936 5.03546e-21) (0.212598 2.80726 0) (0.0747844 2.95709 -1.05933e-21) (-0.0805306 3.12814 0) (-0.256249 3.32766 0) (-0.455845 3.55802 0) (-0.683598 3.81656 -1.98022e-22) (-0.944624 4.098 0) (-1.24491 4.39713 4.46819e-21) (-1.59164 4.70929 -1.42581e-20) (-1.99493 5.03045 9.00822e-21) (-2.46348 5.3562 2.16368e-20) (-3.0039 5.6798 -1.85827e-20) (-3.62651 5.97594 -4.3968e-20) (-4.51455 6.25423 4.19935e-20) (1.00036 0.0972828 0) (0.998701 0.291077 0) (0.993715 0.483687 0) (0.985441 0.675469 0) (0.973158 0.866171 -4.05177e-21) (0.956292 1.05538 2.70748e-21) (0.934105 1.24238 0) (0.905802 1.42625 0) (0.870541 1.60586 0) (0.827485 1.78007 0) (0.775843 1.94784 0) (0.714885 2.10834 0) (0.643935 2.26117 0) (0.562327 2.40658 0) (0.469337 2.54593 -1.26691e-21) (0.364122 2.6824 -4.65322e-21) (0.245506 2.82169 4.67773e-21) (0.112007 2.97214 4.98829e-21) (-0.038403 3.14309 -3.95437e-21) (-0.208465 3.34215 0) (-0.401525 3.57234 3.84817e-21) (-0.621753 3.83166 -3.86964e-21) (-0.874185 4.11526 1.02891e-21) (-1.1648 4.41818 -1.03476e-21) (-1.5006 4.73608 8.04131e-22) (-1.89159 5.06524 0) (-2.34688 5.40152 0) (-2.87781 5.74165 -3.16269e-21) (-3.47438 6.06546 0) (-4.35224 6.36847 0) (1.00045 0.0969619 9.67492e-22) (0.999092 0.290215 1.63348e-21) (0.994662 0.482455 0) (0.987212 0.673999 0) (0.975969 0.864624 1.32385e-21) (0.960361 1.05395 2.67862e-21) (0.939653 1.2413 -1.35471e-21) (0.913062 1.42577 -1.35296e-21) (0.879749 1.60629 4.03997e-21) (0.838876 1.78172 2.67676e-21) (0.789641 1.95099 -2.6882e-21) (0.731305 2.11327 1.31142e-21) (0.663181 2.26812 0) (0.584608 2.41572 0) (0.494876 2.55731 1.21442e-21) (0.393182 2.69586 0) (0.278427 2.83681 -4.21276e-21) (0.149228 2.9883 -5.67727e-22) (0.00369918 3.15965 7.10995e-21) (-0.160736 3.35882 -5.93371e-21) (-0.347285 3.5895 2.64329e-21) (-0.560001 3.85041 0) (-0.803825 4.13718 -1.48718e-23) (-1.08472 4.44518 0) (-1.40949 4.77045 -8.49013e-22) (-1.78808 5.10972 1.45288e-20) (-2.22922 5.4591 -1.4603e-20) (-2.7504 5.81746 0) (-3.32194 6.17025 0) (-4.18708 6.49192 0) (1.00053 0.0966253 -3.86382e-21) (0.999441 0.289299 -1.31162e-21) (0.99555 0.481135 -3.90548e-21) (0.988915 0.672419 1.31286e-21) (0.978713 0.86295 -1.32865e-21) (0.964368 1.05237 -5.27703e-21) (0.945147 1.24005 -1.33494e-21) (0.920272 1.42512 3.97824e-21) (0.888911 1.60652 -6.64372e-21) (0.850226 1.78313 0) (0.803406 1.95388 0) (0.747702 2.11793 -1.3113e-21) (0.68242 2.27479 5.02936e-21) (0.606897 2.42458 -1.23865e-20) (0.520439 2.56842 3.68268e-21) (0.422277 2.70911 -4.41433e-21) (0.31139 2.85183 4.43216e-21) (0.18649 3.00448 4.66361e-21) (0.0458332 3.17636 -5.37978e-21) (-0.112987 3.37576 0) (-0.29303 3.60698 0) (-0.498224 3.86945 1.1734e-21) (-0.733391 4.1593 -1.16367e-21) (-1.00447 4.47225 4.95905e-21) (-1.31808 4.80464 -4.13851e-21) (-1.68419 5.15365 0) (-2.11045 5.51549 0) (-2.62158 5.88998 0) (-3.16971 6.26962 0) (-4.0196 6.60927 0) (1.0006 0.0962755 3.71741e-23) (0.999758 0.288335 -3.20686e-21) (0.996385 0.479731 3.25587e-21) (0.990551 0.670724 -2.58061e-21) (0.981387 0.861136 -2.58996e-21) (0.96831 1.05063 2.63708e-21) (0.95058 1.23861 2.62047e-21) (0.927426 1.42424 -7.85302e-21) (0.898021 1.60648 5.27022e-21) (0.861528 1.78424 -2.58839e-21) (0.81713 1.95645 5.13327e-21) (0.764068 2.12222 -7.68034e-21) (0.70164 2.28106 -4.92913e-21) (0.629182 2.433 4.99526e-21) (0.546014 2.57908 4.56032e-21) (0.451397 2.7219 -4.57592e-21) (0.344381 2.86641 -2.04815e-21) (0.223774 3.02024 0) (0.0879743 3.19267 6.11893e-23) (-0.0652544 3.39224 0) (-0.238814 3.62384 5.52725e-22) (-0.436496 3.88755 -2.00722e-21) (-0.662996 4.18005 1.06071e-22) (-0.924219 4.49734 0) (-1.22657 4.83604 1.81322e-21) (-1.58023 5.1938 3.01851e-21) (-1.9911 5.56698 4.51866e-21) (-2.49167 5.95579 0) (-3.0175 6.36133 0) (-3.84918 6.72243 -1.20642e-20) (1.00067 0.0959153 3.54302e-22) (1.00005 0.287329 -2.81672e-22) (0.997175 0.47825 1.26225e-21) (0.992125 0.668923 1.32348e-21) (0.983993 0.859192 2.59879e-21) (0.972183 1.04874 0) (0.955947 1.237 5.15621e-21) (0.934517 1.42315 1.70605e-23) (0.907072 1.60621 -1.05803e-23) (0.872775 1.78508 5.17064e-21) (0.830805 1.9587 -2.52228e-21) (0.780394 2.12617 4.62691e-23) (0.720832 2.28695 -7.25879e-21) (0.651455 2.44103 4.89229e-21) (0.57159 2.58932 0) (0.48053 2.73428 2.03546e-21) (0.377388 2.88059 -5.97775e-21) (0.261069 3.03566 3.84474e-21) (0.130107 3.20868 3.17655e-21) (-0.0175605 3.40841 1.26121e-21) (-0.184667 3.64029 4.69771e-22) (-0.374867 3.90507 2.18007e-21) (-0.592708 4.19992 -2.48036e-22) (-0.844062 4.52119 0) (-1.13508 4.86577 -1.80001e-21) (-1.47632 5.23178 -2.11243e-20) (-1.87134 5.61596 1.06296e-20) (-2.36058 6.01848 -3.00806e-20) (-2.86487 6.44956 3.01769e-20) (-3.67587 6.83399 6.62029e-20) (1.00072 0.0955466 2.21497e-21) (1.00032 0.286288 5.37402e-21) (0.997927 0.476702 -3.80987e-23) (0.993643 0.667025 5.08553e-21) (0.986532 0.857124 0) (0.975985 1.0467 2.53395e-21) (0.961245 1.23521 -2.57587e-21) (0.941542 1.42187 0) (0.91606 1.60571 -2.56599e-21) (0.883962 1.78566 0) (0.844425 1.96066 4.53586e-23) (0.796675 2.12979 4.96754e-21) (0.739991 2.29248 7.15706e-21) (0.673708 2.44867 -2.38498e-21) (0.597162 2.59917 0) (0.509672 2.74627 6.19025e-21) (0.410411 2.89443 -7.77296e-21) (0.298374 3.05082 6.99376e-21) (0.172234 3.2245 -7.57849e-21) (0.0301013 3.42445 1.49251e-21) (-0.130584 3.65659 -8.85077e-22) (-0.313326 3.92235 1.77657e-22) (-0.522513 4.21942 -3.50299e-22) (-0.763982 4.54451 0) (-1.04355 4.89477 0) (-1.37238 5.26882 1.82917e-20) (-1.75119 5.66398 -1.52868e-20) (-2.22817 6.07976 3.02388e-20) (-2.71159 6.53543 -3.03179e-20) (-3.50004 6.94337 -1.20606e-20) (1.00076 0.0951706 -3.10562e-22) (1.00057 0.285216 2.74594e-22) (0.998646 0.475091 -2.5272e-21) (0.995108 0.665033 -2.53265e-21) (0.989005 0.854936 0) (0.979716 1.04452 -5.04191e-21) (0.96647 1.23325 0) (0.948496 1.42039 0) (0.924978 1.60498 -2.49413e-21) (0.895083 1.78598 4.9632e-21) (0.857986 1.96233 2.43339e-21) (0.812904 2.13309 -2.43769e-21) (0.75911 2.29767 2.29692e-21) (0.695936 2.45594 -4.6362e-21) (0.622726 2.60863 -4.22132e-21) (0.53882 2.75788 4.22922e-21) (0.443449 2.90793 1.86199e-21) (0.335696 3.06569 0) (0.214366 3.24012 -1.422e-21) (0.0777432 3.44034 0) (-0.076547 3.67276 0) (-0.251854 3.93942 3.72024e-23) (-0.452385 4.23859 -3.49754e-22) (-0.683949 4.56733 1.05754e-21) (-0.951954 4.92306 0) (-1.26833 5.30487 3.18209e-21) (-1.63066 5.7108 0) (-2.09444 6.13918 3.70394e-20) (-2.5576 6.61815 -3.92491e-20) (-3.32188 7.04968 6.65382e-20) (1.0008 0.0947879 0) (1.00081 0.284115 -2.49378e-21) (0.999337 0.473422 -6.19963e-22) (0.996526 0.662953 -6.21017e-22) (0.991416 0.852631 1.24309e-21) (0.983375 1.04219 1.26501e-21) (0.97162 1.23113 1.24408e-21) (0.955375 1.41871 0) (0.933824 1.60404 0) (0.906135 1.78605 -4.89433e-21) (0.871482 1.9637 4.81895e-21) (0.829076 2.13607 -2.39162e-21) (0.778184 2.30249 2.32978e-21) (0.718134 2.46282 4.34224e-21) (0.648275 2.6177 -4.34825e-21) (0.56797 2.7691 0) (0.4765 2.92106 1.59897e-21) (0.373033 3.08025 -4.47788e-22) (0.256505 3.25549 -1.60091e-21) (0.125373 3.45603 0) (-0.0225471 3.68871 0) (-0.190439 3.9562 1.05784e-22) (-0.382313 4.2573 -1.23008e-21) (-0.603956 4.58949 3.85665e-22) (-0.860284 4.95042 0) (-1.16416 5.33959 -3.16078e-21) (-1.50984 5.75595 0) (-1.95947 6.19629 -6.55131e-21) (-2.40279 6.69727 5.0242e-20) (-3.14149 7.15264 -4.15758e-20) (1.00084 0.0943994 0) (1.00104 0.282989 0) (1 0.4717 -2.43042e-21) (0.997901 0.66079 1.22615e-21) (0.993767 0.850215 -4.88776e-21) (0.986963 1.03973 1.22739e-21) (0.976693 1.22884 0) (0.962175 1.41685 0) (0.942592 1.60286 -4.81888e-21) (0.917112 1.78586 2.41581e-21) (0.884908 1.96479 -2.3328e-24) (0.845186 2.13872 -4.64226e-21) (0.797207 2.30696 -4.42592e-21) (0.740295 2.46932 6.57677e-21) (0.673805 2.62635 -3.99545e-21) (0.597117 2.7799 5.79241e-21) (0.509562 2.93379 -3.70116e-21) (0.410386 3.09446 0) (0.298654 3.27058 0) (0.172994 3.47148 1.65143e-21) (0.0314205 3.70441 -1.65314e-21) (-0.129079 3.97263 -1.32125e-22) (-0.312295 4.27551 0) (-0.524006 4.6109 0) (-0.768555 4.97675 0) (-1.05986 5.37287 0) (-1.38879 5.7993 0) (-1.82331 6.25108 0) (-2.24706 6.77286 4.17886e-20) (-2.95894 7.25213 1.33295e-20) (1.00086 0.0940054 3.00337e-22) (1.00125 0.281841 -3.02126e-22) (1.00065 0.469931 2.43908e-21) (0.999236 0.658551 -2.40126e-21) (0.996061 0.847693 2.44103e-21) (0.990481 1.03713 -1.208e-21) (0.981689 1.22639 1.20848e-21) (0.968895 1.4148 0) (0.95128 1.60148 2.40804e-21) (0.928011 1.78542 0) (0.898259 1.96559 4.64465e-21) (0.861229 2.14104 -2.25031e-24) (0.816173 2.31107 -4.34425e-21) (0.762413 2.47543 6.2414e-21) (0.699309 2.6346 -9.99708e-21) (0.626256 2.79028 5.78607e-21) (0.542629 2.94612 0) (0.447753 3.10831 4.22106e-21) (0.340814 3.28536 6.6032e-22) (0.22061 3.48666 -3.10571e-21) (0.0853607 3.71983 0) (-0.0677688 3.98871 1.3157e-22) (-0.242329 4.2932 0) (-0.4441 4.63159 -3.38865e-21) (-0.676778 5.00207 3.39078e-21) (-0.955396 5.40475 3.38205e-21) (-1.26754 5.84089 0) (-1.68603 6.30368 3.11791e-20) (-2.0903 6.84501 1.08512e-20) (-2.77429 7.34798 -4.20249e-20) (1.00088 0.0936063 -2.96732e-22) (1.00146 0.280673 -2.98631e-22) (1.00127 0.468119 5.97008e-22) (1.00053 0.656241 3.58349e-21) (0.998301 0.84507 1.19412e-21) (0.993929 1.0344 0) (0.986606 1.22378 3.54195e-21) (0.975532 1.41256 -1.18555e-21) (0.959883 1.59987 0) (0.938826 1.78473 2.29596e-21) (0.911532 1.96611 0) (0.877199 2.14305 0) (0.835078 2.31483 6.92548e-23) (0.784484 2.48115 1.93489e-23) (0.724781 2.64243 -1.78865e-21) (0.655381 2.80024 3.77056e-21) (0.5757 2.95804 0) (0.485133 3.12178 -1.46692e-21) (0.382987 3.29981 -3.27182e-21) (0.268225 3.50156 2.96448e-21) (0.139279 3.73496 0) (-0.00650284 4.00442 -5.46309e-22) (-0.172409 4.31038 5.46424e-22) (-0.364232 4.65154 0) (-0.584959 5.0264 -5.63749e-21) (-0.85076 5.43526 -5.97231e-21) (-1.14611 5.88072 -3.37062e-21) (-1.5477 6.35412 1.16229e-20) (-1.93248 6.91373 -3.33176e-20) (-2.58762 7.43999 -1.35065e-20) (1.00089 0.0932026 0) (1.00165 0.279487 0) (1.00188 0.466268 2.3376e-21) (1.0018 0.653866 -2.37589e-21) (1.00049 0.842352 0) (0.997311 1.03155 0) (0.991445 1.22102 -4.14514e-23) (0.982084 1.41014 -2.30497e-21) (0.968399 1.59805 2.29068e-21) (0.949555 1.7838 -4.58768e-21) (0.924721 1.96635 2.21123e-21) (0.893092 2.14474 2.14316e-21) (0.853915 2.31823 -2.14261e-21) (0.806501 2.48649 1.95756e-21) (0.750217 2.64984 -8.39046e-23) (0.684489 2.80977 0) (0.60877 2.96953 2.95562e-21) (0.522524 3.13485 -2.95502e-21) (0.425172 3.31391 -1.08317e-21) (0.315842 3.51614 1.22367e-21) (0.193182 3.74978 -1.22345e-21) (0.0547253 4.01974 6.96841e-22) (-0.102529 4.32703 -1.40353e-23) (-0.284398 4.67075 5.11281e-21) (-0.493106 5.04973 -9.47589e-21) (-0.745935 5.46439 9.31861e-21) (-1.0245 5.91875 0) (-1.40838 6.40233 6.90845e-21) (-1.77357 6.97901 -8.97193e-21) (-2.39898 7.52801 1.23592e-20) (1.00089 0.0927944 2.00511e-21) (1.00183 0.278284 2.90694e-22) (1.00246 0.464381 -3.93361e-23) (1.00303 0.65143 1.14209e-21) (1.00263 0.839545 1.74185e-24) (1.00063 1.02858 3.44983e-21) (0.996205 1.21812 -3.47097e-21) (0.98855 1.40754 7.99716e-21) (0.976825 1.59603 -3.23124e-23) (0.960194 1.78263 0) (0.937822 1.96631 -4.5911e-23) (0.908904 2.14612 0) (0.87268 2.32128 2.03267e-21) (0.828459 2.49143 3.84148e-21) (0.775611 2.65683 -5.54705e-21) (0.713574 2.81885 3.4432e-21) (0.641835 2.98057 -2.83082e-21) (0.559923 3.14751 2.82926e-21) (0.467371 3.32764 3.87744e-21) (0.363465 3.53039 -2.8604e-21) (0.247073 3.76426 1.07951e-21) (0.115921 4.03466 -1.67195e-22) (-0.0326848 4.34313 7.98245e-23) (-0.20459 4.68921 -2.92213e-21) (-0.401226 5.07204 2.42647e-21) (-0.640912 5.49213 1.43111e-21) (-0.902732 5.95491 -3.50621e-21) (-1.26817 6.4483 -1.3855e-20) (-1.61357 7.04083 0) (-2.20844 7.6119 1.63622e-22) (1.00089 0.0923821 -2.30222e-21) (1.00201 0.277067 0) (1.00304 0.462463 -4.58444e-21) (1.00424 0.64894 -2.30882e-21) (1.00472 0.836656 1.12324e-21) (1.00388 1.02549 -2.29294e-21) (1.00089 1.21507 1.13464e-21) (0.994929 1.40477 -4.25083e-23) (0.98516 1.5938 -2.24476e-21) (0.97074 1.78121 0) (0.950834 1.966 -4.59609e-23) (0.924631 2.14718 0) (0.891369 2.32398 -4.91101e-23) (0.850354 2.49599 -3.82108e-21) (0.800958 2.66341 0) (0.74263 2.8275 -5.57062e-23) (0.67489 2.99118 2.70626e-21) (0.597327 3.15973 -1.4911e-21) (0.509581 3.34098 -2.65681e-21) (0.411095 3.54428 1.01446e-21) (0.300957 3.77838 1.68531e-22) (0.177091 4.04916 1.23818e-21) (0.0371274 4.35867 -4.09796e-21) (-0.124803 4.70689 2.25097e-21) (-0.309328 5.09331 -2.41631e-21) (-0.53569 5.51845 7.28508e-21) (-0.780801 5.98918 -2.22333e-20) (-1.12713 6.49197 2.77557e-21) (-1.45247 7.0992 3.83063e-21) (-2.01606 7.69155 -1.92836e-20) (1.00089 0.091966 0) (1.00217 0.275838 2.2416e-21) (1.00359 0.460516 2.84309e-21) (1.00541 0.646399 -5.63798e-22) (1.00677 0.83369 -2.26858e-21) (1.00707 1.0223 2.21892e-21) (1.00549 1.21188 0) (1.00122 1.40183 -1.13091e-21) (0.993402 1.59137 -1.40508e-23) (0.981191 1.77957 -1.08118e-21) (0.963751 1.96541 -4.59888e-23) (0.940269 2.14794 1.99857e-21) (0.909978 2.32634 -3.9786e-21) (0.872181 2.50016 1.88398e-21) (0.826253 2.66957 1.70853e-21) (0.771653 2.8357 -1.61197e-21) (0.707931 3.00132 0) (0.634734 3.17152 -2.35944e-21) (0.551804 3.3539 0) (0.458734 3.55779 6.93279e-23) (0.354838 3.79212 -2.36484e-22) (0.238239 4.06321 3.20384e-22) (0.106911 4.37364 0) (-0.0450312 4.72378 3.24165e-21) (-0.217419 5.11353 0) (-0.43027 5.54336 -3.67611e-21) (-0.658707 6.02153 -7.15515e-21) (-0.985329 6.53332 3.58408e-20) (-1.29029 7.15411 -3.76093e-21) (-1.82189 7.76686 6.96879e-21) (1.00088 0.0915465 -1.38663e-22) (1.00232 0.274596 -1.82997e-21) (1.00414 0.458544 -8.34064e-22) (1.00656 0.643814 5.55111e-22) (1.00878 0.830652 -1.10447e-21) (1.0102 1.01901 -2.21813e-21) (1.01002 1.20856 2.18619e-21) (1.00743 1.39873 -1.03249e-23) (1.00155 1.58875 -1.07598e-21) (0.991545 1.77769 0) (0.976571 1.96457 -2.07629e-21) (0.955814 2.14839 0) (0.928502 2.32835 0) (0.893935 2.50395 0) (0.851491 2.6753 -1.70718e-21) (0.800638 2.84345 0) (0.740955 3.01101 0) (0.672141 3.18285 2.23188e-21) (0.594037 3.3664 -8.13363e-22) (0.506384 3.5709 5.55595e-22) (0.408719 3.80545 0) (0.299371 4.0768 -2.03271e-21) (0.176671 4.38801 1.31355e-21) (0.0347298 4.73987 2.67399e-21) (-0.125504 5.13267 -1.65267e-21) (-0.324657 5.56684 -9.06856e-21) (-0.536447 6.05193 9.0556e-21) (-0.84283 6.5723 -7.12223e-21) (-1.12707 7.20555 9.52625e-21) (-1.626 7.83772 -2.91226e-20) (1.00086 0.0911237 -1.36593e-22) (1.00247 0.273345 -1.37137e-22) (1.00467 0.45655 2.73784e-22) (1.00769 0.641187 0) (1.01075 0.827549 0) (1.01328 1.01562 -1.07925e-21) (1.01448 1.20511 1.07733e-21) (1.01354 1.39547 1.05716e-21) (1.0096 1.58593 -1.05529e-21) (1.0018 1.7756 0) (0.989293 1.96346 1.9767e-21) (0.971263 2.14854 -1.97325e-21) (0.946937 2.33002 0) (0.915612 2.50736 0) (0.876667 2.68062 0) (0.82958 2.85075 1.37584e-21) (0.773955 3.02022 -2.06392e-22) (0.709543 3.19372 -2.24846e-21) (0.636278 3.37844 1.55813e-21) (0.554043 3.58358 1.64144e-22) (0.462604 3.81836 -1.19967e-22) (0.360491 4.0899 -1.16836e-21) (0.246408 4.40177 1.47138e-21) (0.114485 4.75515 -1.83085e-21) (-0.0335874 5.15073 -5.42584e-21) (-0.218861 5.58888 5.30059e-21) (-0.414017 6.08036 -9.23741e-21) (-0.699692 6.60886 -2.41997e-20) (-0.962837 7.25351 -2.29912e-21) (-1.42845 7.90404 1.28756e-20) (1.00084 0.0906981 -1.06613e-21) (1.00261 0.272085 0) (1.00518 0.454536 0) (1.00879 0.638524 -1.06412e-21) (1.01268 0.824387 5.33721e-22) (1.01629 1.01215 -5.32645e-22) (1.01887 1.20155 0) (1.01958 1.39206 -2.06922e-21) (1.01756 1.58294 1.75169e-23) (1.01195 1.77328 0) (1.00191 1.9621 9.65244e-22) (0.986614 2.1484 -1.8989e-21) (0.965281 2.33135 -1.75778e-21) (0.937209 2.5104 1.75434e-21) (0.901778 2.68552 7.20879e-22) (0.858475 2.8576 -2.1829e-21) (0.806929 3.02897 0) (0.746937 3.2041 -4.78921e-22) (0.678525 3.39003 -7.45002e-22) (0.601714 3.59582 -5.86523e-22) (0.516493 3.83083 -1.44565e-23) (0.421604 4.10251 -3.42288e-22) (0.316125 4.41491 1.39527e-21) (0.194239 4.7696 2.78394e-21) (0.0583273 5.16769 9.55204e-21) (-0.112892 5.60947 -8.24489e-22) (-0.291418 6.1068 0) (-0.555971 6.64296 1.1037e-20) (-0.797641 7.29797 9.60569e-21) (-1.22933 7.96576 1.69056e-20) (1.00081 0.0902699 1.06855e-21) (1.00274 0.270817 7.8708e-22) (1.00568 0.452504 1.31489e-21) (1.00987 0.635828 1.99588e-23) (1.01457 0.82117 0) (1.01926 1.00859 5.20341e-22) (1.02318 1.19787 1.53545e-21) (1.02552 1.3885 5.721e-24) (1.02542 1.57976 2.17512e-23) (1.02201 1.77075 -9.73167e-22) (1.01443 1.96049 9.71041e-22) (1.00186 2.14798 2.36629e-23) (0.98353 2.33236 0) (0.958722 2.51306 1.58621e-21) (0.92682 2.69001 -8.10588e-22) (0.887319 2.864 6.91729e-22) (0.839872 3.03723 5.65357e-22) (0.784319 3.21401 3.10603e-23) (0.720776 3.40114 3.06076e-22) (0.649395 3.60761 6.63061e-23) (0.570389 3.84283 -2.40274e-22) (0.482712 4.11459 6.61253e-22) (0.385826 4.42741 -5.78699e-22) (0.273993 4.78321 -1.95704e-21) (0.150237 5.18354 0) (-0.00676345 5.62859 -2.0165e-21) (-0.168647 6.13122 0) (-0.411717 6.67455 6.5091e-23) (-0.631529 7.3389 -4.94591e-21) (-1.0287 8.02277 2.34873e-20) (1.00078 0.0898395 0) (1.00286 0.269544 -1.05462e-21) (1.00617 0.450457 -1.05167e-21) (1.01092 0.633102 1.04752e-21) (1.01643 0.817903 0) (1.02217 1.00496 1.01455e-21) (1.02743 1.19409 -1.52532e-21) (1.03139 1.38481 -5.03775e-22) (1.03319 1.57641 2.06262e-23) (1.03196 1.76802 9.73569e-22) (1.02684 1.95863 0) (1.01701 2.14726 9.11963e-22) (1.00168 2.33304 -8.28624e-22) (0.980147 2.51535 8.26679e-22) (0.951788 2.69408 0) (0.916107 2.86995 -1.20099e-21) (0.872779 3.04502 6.33334e-22) (0.821687 3.22342 4.46811e-22) (0.763029 3.41177 -7.14138e-22) (0.697086 3.61891 5.08799e-22) (0.624293 3.85434 4.22678e-22) (0.54382 4.12615 -2.0722e-21) (0.455512 4.43925 3.13423e-22) (0.353752 4.79597 9.99159e-22) (0.242141 5.19825 -1.51613e-21) (0.0995087 5.64624 0) (-0.0457092 6.1536 6.62913e-21) (-0.266979 6.70358 -5.42897e-21) (-0.464553 7.37628 -8.84002e-21) (-0.826647 8.07501 1.31865e-20) (1.00075 0.0894072 0) (1.00297 0.268265 0) (1.00665 0.448397 0) (1.01196 0.630352 0) (1.01825 0.814592 0) (1.02504 1.00126 -1.01556e-21) (1.03161 1.19021 1.99038e-21) (1.03717 1.38098 0) (1.04086 1.5729 -9.54384e-22) (1.04181 1.76508 1.8828e-21) (1.03915 1.95654 -8.95943e-22) (1.03205 2.14627 1.74846e-21) (1.01974 2.3334 -8.52627e-22) (1.00148 2.51728 0) (0.976679 2.69775 6.91937e-22) (0.944836 2.87545 0) (0.905646 3.05233 0) (0.859035 3.23233 -3.84316e-22) (0.80528 3.42189 0) (0.744786 3.62972 -1.26721e-22) (0.678206 3.86536 6.02392e-22) (0.604929 4.13714 2.52436e-22) (0.525185 4.45043 -4.32562e-23) (0.433515 4.80786 -1.51828e-21) (0.334037 5.21182 5.67791e-21) (0.205909 5.66239 2.16789e-21) (0.0773919 6.17394 0) (-0.121804 6.73001 7.708e-21) (-0.29677 7.41008 1.00796e-20) (-0.623245 8.12241 -6.62059e-21) (1.00072 0.0889734 0) (1.00308 0.266982 0) (1.00712 0.446327 0) (1.01297 0.627579 0) (1.02004 0.811241 0) (1.02786 0.997497 0) (1.03573 1.18623 -5.00769e-22) (1.04287 1.37703 -1.43412e-21) (1.04844 1.56923 4.66006e-22) (1.05155 1.76195 -4.65939e-22) (1.05135 1.95421 8.79054e-22) (1.04699 2.14501 8.41334e-22) (1.03769 2.33345 1.5729e-21) (1.02273 2.51885 -7.76568e-22) (1.00149 2.70101 -6.91674e-22) (0.973502 2.8805 -5.42713e-22) (0.938471 3.05915 9.7147e-22) (0.896361 3.24074 3.07942e-22) (0.847526 3.4315 -2.06049e-22) (0.792492 3.64002 9.63009e-23) (0.732127 3.87586 3.78422e-23) (0.666043 4.14757 4.05843e-23) (0.594847 4.46092 -4.35511e-23) (0.513284 4.81888 4.68501e-23) (0.425925 5.22423 6.10506e-22) (0.312421 5.67703 -3.71763e-21) (0.200648 6.19222 -2.96524e-21) (0.0237643 6.7538 -3.87927e-21) (-0.128238 7.44027 -1.02213e-20) (-0.418578 8.16488 -1.55623e-20) (1.00068 0.0885383 0) (1.00319 0.265696 1.23715e-22) (1.00758 0.444248 -1.23364e-22) (1.01397 0.624787 0) (1.02181 0.807855 0) (1.03063 0.993674 0) (1.03978 1.18217 0) (1.04849 1.37297 9.51146e-22) (1.05592 1.5654 -1.38844e-21) (1.0612 1.75863 4.54389e-22) (1.06344 1.95166 -8.79178e-22) (1.06182 2.14349 -8.41357e-22) (1.05554 2.33319 -1.16298e-21) (1.04387 2.52007 7.51674e-22) (1.02622 2.70388 0) (1.0021 2.88511 0) (0.971249 3.06549 2.23392e-22) (0.93366 3.24864 -3.52754e-22) (0.889765 3.4406 1.1947e-22) (0.840204 3.6498 -2.79969e-23) (0.786056 3.88582 -1.80044e-22) (0.727162 4.15742 -4.35415e-22) (0.664499 4.47071 1.142e-21) (0.593059 4.82902 -3.92885e-21) (0.517802 5.23547 3.5669e-21) (0.419026 5.69015 4.16242e-21) (0.324049 6.20841 -2.26792e-21) (0.16968 6.77491 0) (0.0409793 7.4668 7.75515e-21) (-0.212731 8.20234 -3.4356e-21) (1.00064 0.0881023 0) (1.00329 0.264409 -6.06893e-23) (1.00803 0.442162 -4.18409e-22) (1.01495 0.621979 4.76188e-22) (1.02354 0.804437 0) (1.03336 0.989799 7.03623e-22) (1.04377 1.17803 -2.34807e-22) (1.05404 1.36879 0) (1.06332 1.56143 4.44887e-22) (1.07074 1.75513 -1.09652e-23) (1.07543 1.94889 0) (1.07655 2.1417 3.97306e-22) (1.07328 2.33263 -3.84951e-22) (1.06493 2.52094 0) (1.05087 2.70635 0) (1.03063 2.88928 0) (1.00398 3.07136 -4.32019e-22) (0.97093 3.25603 3.76732e-22) (0.931993 3.44917 -7.75817e-23) (0.88792 3.65905 -2.19225e-22) (0.839993 3.89523 1.29622e-22) (0.788288 4.16666 0) (0.734142 4.4798 -3.94892e-22) (0.672838 4.83826 1.44581e-21) (0.609668 5.24554 -6.1257e-22) (0.525708 5.70174 -2.29645e-21) (0.447582 6.22252 0) (0.315898 6.79329 -4.6559e-21) (0.210817 7.48964 8.13016e-21) (-0.00579247 8.23473 1.33108e-20) (1.0006 0.0876657 2.05506e-22) (1.00338 0.263121 -2.05996e-22) (1.00846 0.440071 7.13955e-22) (1.01591 0.619158 -7.09767e-22) (1.02524 0.800992 1.16574e-22) (1.03605 0.985876 -8.13685e-22) (1.04771 1.17382 -9.70743e-25) (1.05951 1.3645 2.26862e-22) (1.07063 1.55732 -4.79739e-24) (1.08019 1.75145 -8.53535e-22) (1.08732 1.94591 4.12204e-22) (1.09116 2.13967 -7.7701e-22) (1.09092 2.33177 5.58993e-22) (1.08588 2.52147 1.65118e-22) (1.07542 2.70844 -1.46499e-22) (1.05909 2.89302 -1.04428e-22) (1.03665 3.07674 4.36439e-22) (1.00817 3.26291 -2.44916e-22) (0.974208 3.4572 7.27108e-23) (0.935637 3.66776 2.0146e-23) (0.893938 3.90409 -2.03233e-22) (0.849421 4.17529 2.02651e-22) (0.803779 4.48816 0) (0.75262 4.84658 0) (0.701521 5.25441 -2.04591e-21) (0.632449 5.71178 3.79612e-21) (0.57123 6.23452 0) (0.462373 6.80891 0) (0.381205 7.50876 0) (0.202154 8.26194 -1.76038e-21) (1.00056 0.0872288 -2.3532e-22) (1.00347 0.261832 3.51416e-22) (1.00889 0.437977 -3.49811e-22) (1.01686 0.616326 1.76738e-22) (1.02692 0.797524 -5.74146e-23) (1.03869 0.98191 3.41271e-22) (1.05159 1.16953 -2.26145e-22) (1.06491 1.36012 2.22239e-22) (1.07785 1.55308 -3.2309e-22) (1.08953 1.74761 6.23567e-22) (1.09909 1.94272 -3.08055e-22) (1.10567 2.13739 9.35317e-23) (1.10846 2.33063 -1.80401e-22) (1.10674 2.52167 -1.22896e-23) (1.09989 2.71014 6.40989e-23) (1.08748 2.89633 -1.23995e-22) (1.06927 3.08165 7.73182e-23) (1.04537 3.26927 6.54785e-24) (1.01641 3.4647 -4.75456e-23) (0.983354 3.67591 -1.01728e-22) (0.947888 3.91237 1.42908e-22) (0.910562 4.1833 0) (0.873408 4.49578 5.50011e-22) (0.832402 4.854 2.23641e-22) (0.793359 5.26208 -7.6983e-22) (0.739231 5.72027 -8.98838e-22) (0.694974 6.24441 1.43843e-21) (0.609058 6.82174 -2.35978e-21) (0.552065 7.52412 0) (0.411021 8.28389 8.67678e-22) (1.00052 0.0867919 0) (1.00356 0.260545 -1.29834e-22) (1.00932 0.435881 1.29244e-22) (1.01779 0.613486 1.14269e-22) (1.02857 0.794035 0) (1.0413 0.977907 -1.39654e-22) (1.05541 1.16519 2.74712e-23) (1.07024 1.35565 5.30481e-23) (1.08498 1.54872 -1.04468e-22) (1.09878 1.74361 -5.13032e-23) (1.11077 1.93934 -9.86411e-23) (1.12007 2.13487 -9.35326e-23) (1.12589 2.32921 -4.09559e-23) (1.12749 2.52155 4.08337e-23) (1.12428 2.71147 -6.99773e-23) (1.11579 2.89921 0) (1.10183 3.08609 0) (1.08253 3.27513 0) (1.05858 3.47166 -1.3697e-23) (1.03107 3.6835 4.48393e-24) (1.00184 3.92006 -4.14692e-23) (0.97171 4.19067 9.78252e-23) (0.943032 4.50265 -9.75393e-23) (0.912184 4.86048 -1.99302e-22) (0.885181 5.26854 1.98722e-22) (0.846036 5.72718 3.04302e-22) (0.818795 6.25216 4.00561e-22) (0.755907 6.83174 1.74556e-21) (0.723315 7.53569 -1.21627e-21) (0.620733 8.30044 8.91048e-22) (0.999188 0.00243567 0) (0.994067 0.00726382 0) (0.98456 0.0119966 0) (0.970258 0.0165756 0) (0.951324 0.0209467 0) (0.928081 0.0250598 0) (0.900844 0.0288671 0) (0.869936 0.0323236 0) (0.835726 0.035388 0) (0.798626 0.0380228 0) (0.759088 0.0401945 0) (0.717593 0.0418737 0) (0.674651 0.0430354 0) (0.630793 0.0436589 0) (0.58657 0.0437283 0) (0.542547 0.0432325 0) (0.499297 0.0421656 0) (0.457396 0.040528 0) (0.417419 0.0383275 0) (0.379924 0.0355814 0) (0.345447 0.0323196 0) (0.314486 0.028588 0) (0.287477 0.0244514 0) (0.264776 0.019994 0) (0.246638 0.0153171 0) (0.233204 0.0105315 0) (0.224504 0.00574744 0) (0.220459 0.00107114 0) (0.220826 -0.00339304 0) (0.225224 -0.00764393 0) (0.999168 0.00724193 0) (0.993913 0.0215946 0) (0.984152 0.035662 0) (0.96947 0.0492746 0) (0.950039 0.0622718 0) (0.92619 0.0745039 0) (0.898239 0.0858296 0) (0.866515 0.0961165 0) (0.831391 0.105243 0) (0.793287 0.113097 0) (0.752658 0.119581 0) (0.709991 0.124609 0) (0.665802 0.128104 0) (0.620629 0.130007 0) (0.575029 0.13027 0) (0.529575 0.128858 0) (0.484848 0.125755 0) (0.441434 0.12096 0) (0.399914 0.114497 0) (0.360854 0.106422 0) (0.324792 0.0968284 0) (0.292213 0.0858645 0) (0.263528 0.0737384 0) (0.239048 0.0607198 0) (0.218959 0.0471283 0) (0.203313 0.0333068 0) (0.192063 0.0195831 0) (0.185097 0.00624165 0) (0.181997 -0.00645662 0) (0.18172 -0.018398 0) (0.999129 0.0119616 0) (0.993631 0.0356619 0) (0.983417 0.0588872 0) (0.968056 0.0813632 0) (0.947734 0.102827 0) (0.922793 0.123033 0) (0.893556 0.141751 0) (0.860361 0.158766 0) (0.82359 0.173878 0) (0.783671 0.186909 0) (0.741069 0.197697 0) (0.69628 0.2061 0) (0.649828 0.211997 0) (0.602263 0.215286 0) (0.554152 0.215889 0) (0.506081 0.213748 0) (0.458643 0.208832 0) (0.412437 0.201143 0) (0.368058 0.190724 0) (0.326076 0.177674 0) (0.287018 0.162175 0) (0.251337 0.144507 0) (0.219376 0.125064 0) (0.191332 0.104349 0) (0.167244 0.08294 0) (0.146995 0.0614293 0) (0.130376 0.0403403 0) (0.117224 0.0200049 0) (0.107186 0.000514127 0) (0.0973155 -0.0168521 0) (0.999078 0.0166674 0) (0.993256 0.0496839 0) (0.98244 0.0820334 0) (0.966178 0.113339 0) (0.944669 0.143241 0) (0.918271 0.171403 0) (0.887317 0.197509 0) (0.852155 0.221265 0) (0.813176 0.242401 0) (0.770818 0.26067 0) (0.725558 0.275852 0) (0.677902 0.287755 0) (0.628384 0.29621 0) (0.577565 0.301078 0) (0.526025 0.302246 0) (0.474363 0.299634 0) (0.423187 0.293198 0) (0.37311 0.282942 0) (0.324731 0.268938 0) (0.278613 0.251358 0) (0.235247 0.230507 0) (0.195003 0.206861 0) (0.158082 0.181076 0) (0.124487 0.153961 0) (0.0940305 0.126391 0) (0.0663668 0.0991818 0) (0.0410214 0.0729454 0) (0.0175302 0.0480421 0) (-0.0023218 0.0246554 0) (-0.0265955 0.00221349 0) (0.999018 0.0214001 0) (0.992819 0.0637809 0) (0.981303 0.105298 0) (0.96399 0.145477 0) (0.941096 0.183865 0) (0.912994 0.220038 0) (0.880027 0.253601 0) (0.842551 0.284185 0) (0.800968 0.311452 0) (0.755725 0.335093 0) (0.707307 0.354833 0) (0.656231 0.370429 0) (0.603039 0.381668 0) (0.548303 0.388373 0) (0.492614 0.3904 0) (0.436581 0.387644 0) (0.380825 0.38005 0) (0.325963 0.367636 0) (0.272589 0.350525 0) (0.221229 0.329003 0) (0.172285 0.303572 0) (0.125975 0.274996 0) (0.0822729 0.244287 0) (0.0409041 0.212617 0) (0.00138871 0.181147 0) (-0.036846 0.150798 0) (-0.07419 0.122082 0) (-0.110448 0.0952037 0) (-0.145965 0.0701347 0) (-0.187889 0.0437925 0) (0.998954 0.0261733 0) (0.992352 0.077993 0) (0.980084 0.128749 0) (0.961641 0.177872 0) (0.937254 0.224823 0) (0.90731 0.269096 0) (0.872161 0.310221 0) (0.832167 0.347758 0) (0.787736 0.381304 0) (0.739323 0.410494 0) (0.68742 0.435 0) (0.632547 0.45453 0) (0.575255 0.468832 0) (0.516119 0.47769 0) (0.45574 0.480928 0) (0.394732 0.478421 0) (0.333718 0.470111 0) (0.27331 0.456047 0) (0.214064 0.436445 0) (0.156424 0.411777 0) (0.100637 0.38284 0) (0.0466791 0.350791 0) (-0.0057823 0.317075 0) (-0.0573427 0.283216 0) (-0.108735 0.250525 0) (-0.160591 0.219786 0) (-0.21296 0.19113 0) (-0.265106 0.164208 0) (-0.318462 0.138106 0) (-0.379778 0.109593 0) (0.99889 0.0309796 0) (0.991883 0.0922993 0) (0.978855 0.152353 0) (0.959265 0.210484 0) (0.933362 0.266071 0) (0.901539 0.318534 0) (0.864152 0.36733 0) (0.821562 0.411955 0) (0.77418 0.451946 0) (0.722461 0.486883 0) (0.666899 0.51639 0) (0.608015 0.54013 0) (0.54636 0.557811 0) (0.48251 0.569181 0) (0.417065 0.574036 0) (0.350638 0.572235 0) (0.283841 0.563732 0) (0.217255 0.548642 0) (0.151364 0.527339 0) (0.0864665 0.500572 0) (0.0225733 0.46955 0) (-0.0406528 0.435916 0) (-0.103892 0.401544 0) (-0.168021 0.368177 0) (-0.233862 0.336992 0) (-0.301824 0.308278 0) (-0.37132 0.281447 0) (-0.441043 0.255387 0) (-0.513186 0.228343 0) (-0.593639 0.196582 0) (0.998829 0.0357967 0) (0.991435 0.106635 0) (0.977677 0.176006 0) (0.956984 0.243174 0) (0.929613 0.307442 0) (0.895963 0.368162 0) (0.856384 0.424725 0) (0.811233 0.476564 0) (0.760917 0.523163 0) (0.705888 0.56405 0) (0.646632 0.598804 0) (0.583666 0.627046 0) (0.517533 0.648446 0) (0.448804 0.662721 0) (0.378069 0.669642 0) (0.305926 0.669062 0) (0.232961 0.660975 0) (0.15969 0.645611 0) (0.0864767 0.623582 0) (0.0134106 0.596029 0) (-0.0597986 0.564674 0) (-0.133855 0.531667 0) (-0.209752 0.499197 0) (-0.288488 0.468947 0) (-0.37073 0.441573 0) (-0.456359 0.416494 0) (-0.543928 0.392181 0) (-0.631642 0.366735 0) (-0.722427 0.337706 0) (-0.820847 0.301026 0) (0.998774 0.0405927 0) (0.991031 0.120905 0) (0.976606 0.199557 0) (0.954899 0.275739 0) (0.926171 0.348689 0) (0.890819 0.417695 0) (0.849181 0.482089 0) (0.801601 0.541248 0) (0.748476 0.594601 0) (0.690244 0.641633 0) (0.627379 0.681877 0) (0.560385 0.714919 0) (0.489792 0.740392 0) (0.416152 0.757985 0) (0.340038 0.767454 0) (0.262019 0.768665 0) (0.182629 0.761683 0) (0.102284 0.746921 0) (0.0211772 0.725315 0) (-0.0608641 0.698525 0) (-0.144491 0.668819 0) (-0.230756 0.638783 0) (-0.320836 0.610688 0) (-0.41565 0.585776 0) (-0.515456 0.563787 0) (-0.619382 0.543021 0) (-0.725084 0.520996 0) (-0.830536 0.495207 0) (-0.939504 0.462757 0) (-1.05492 0.419469 0) (0.998728 0.04533 0) (0.990686 0.135002 0) (0.975684 0.222829 0) (0.953091 0.307941 0) (0.923168 0.389519 0) (0.886301 0.466794 0) (0.842806 0.539044 0) (0.793008 0.605593 0) (0.737283 0.665824 0) (0.676051 0.719175 0) (0.609764 0.765142 0) (0.538905 0.803274 0) (0.463979 0.833176 0) (0.385517 0.854511 0) (0.304058 0.867032 0) (0.220127 0.87064 0) (0.13418 0.865518 0) (0.046483 0.852334 0) (-0.0429587 0.832472 0) (-0.134641 0.808136 0) (-0.2296 0.782143 0) (-0.329132 0.757347 0) (-0.434445 0.735766 0) (-0.546172 0.717811 0) (-0.663986 0.702032 0) (-0.7862 0.685562 0) (-0.909709 0.665149 0) (-1.03261 0.637961 0) (-1.15967 0.600916 0) (-1.29194 0.549794 0) (0.998693 0.0499694 0) (0.990413 0.14881 0) (0.974944 0.245637 0) (0.951622 0.33953 0) (0.920705 0.429623 0) (0.882555 0.5151 0) (0.837459 0.595185 0) (0.785714 0.669158 0) (0.727669 0.736356 0) (0.663714 0.796175 0) (0.594274 0.848075 0) (0.519801 0.891574 0) (0.44077 0.926249 0) (0.357674 0.951749 0) (0.271011 0.967835 0) (0.181241 0.974475 0) (0.0887122 0.972022 0) (-0.00645572 0.961467 0) (-0.104537 0.944743 0) (-0.206375 0.924602 0) (-0.3133 0.904329 0) (-0.426772 0.886793 0) (-0.547866 0.873404 0) (-0.676782 0.863446 0) (-0.812565 0.854171 0) (-0.952804 0.841688 0) (-1.09386 0.822255 0) (-1.2343 0.792985 0) (-1.38004 0.750731 0) (-1.52998 0.691161 0) (0.998668 0.0544731 0) (0.990221 0.162218 0) (0.974405 0.267801 0) (0.950532 0.370264 0) (0.918847 0.468702 0) (0.879679 0.562258 0) (0.833277 0.650114 0) (0.779902 0.731502 0) (0.719867 0.805719 0) (0.653526 0.872122 0) (0.581266 0.930138 0) (0.503503 0.979254 0) (0.42067 1.01903 0) (0.333218 1.0491 0) (0.241587 1.06926 0) (0.146158 1.07958 0) (0.0471394 1.08062 0) (-0.0555162 1.07381 0) (-0.16238 1.0616 0) (-0.274647 1.04735 0) (-0.393878 1.03463 0) (-0.521574 1.02603 0) (-0.658555 1.02206 0) (-0.804546 1.02072 0) (-0.958041 1.01803 0) (-1.11608 1.0093 0) (-1.27476 0.990605 0) (-1.43335 0.959143 0) (-1.59905 0.911689 0) (-1.76826 0.843605 0) (0.998656 0.0588065 0) (0.990112 0.175126 0) (0.97408 0.289159 0) (0.949844 0.39992 0) (0.917631 0.506479 0) (0.877729 0.607944 0) (0.83034 0.703457 0) (0.775681 0.79221 0) (0.714021 0.873459 0) (0.645671 0.946526 0) (0.570973 1.0108 0) (0.490297 1.06576 0) (0.404031 1.11093 0) (0.312569 1.14596 0) (0.216285 1.17069 0) (0.11546 1.18531 0) (0.0101723 1.19068 0) (-0.0998565 1.18869 0) (-0.215497 1.18236 0) (-0.338229 1.17556 0) (-0.469798 1.17196 0) (-0.61165 1.17363 0) (-0.764291 1.17996 0) (-0.927017 1.18765 0) (-1.09794 1.19166 0) (-1.27377 1.18681 0) (-1.45051 1.16912 0) (-1.62835 1.13596 0) (-1.81584 1.08389 0) (-2.00654 1.00768 0) (0.998656 0.0629404 0) (0.990089 0.187448 0) (0.973969 0.309569 0) (0.949562 0.428307 0) (0.917067 0.542715 0) (0.876723 0.651871 0) (0.828677 0.754885 0) (0.773095 0.85091 0) (0.710195 0.939164 0) (0.640238 1.01894 0) (0.563516 1.08959 0) (0.480345 1.15056 0) (0.391061 1.20139 0) (0.295994 1.24174 0) (0.195439 1.27149 0) (0.089567 1.29103 0) (-0.0216881 1.30151 0) (-0.138844 1.30535 0) (-0.263066 1.30615 0) (-0.396078 1.30817 0) (-0.539746 1.31501 0) (-0.695401 1.32798 0) (-0.863245 1.34528 0) (-1.04227 1.36239 0) (-1.23042 1.37347 0) (-1.42424 1.37303 0) (-1.6198 1.35718 0) (-1.81833 1.32337 0) (-2.02982 1.26775 0) (-2.24468 1.1842 0) (0.998667 0.0668511 0) (0.990146 0.199115 0) (0.974067 0.32892 0) (0.949676 0.45527 0) (0.917141 0.577211 0) (0.876643 0.693802 0) (0.828269 0.804119 0) (0.772129 0.907284 0) (0.708383 1.00248 0) (0.637235 1.08896 0) (0.55892 1.16605 0) (0.473697 1.23319 0) (0.381841 1.2899 0) (0.283617 1.33586 0) (0.179231 1.37107 0) (0.0687253 1.39607 0) (-0.0481077 1.4124 0) (-0.172021 1.42301 0) (-0.304467 1.43203 0) (-0.44737 1.44404 0) (-0.602664 1.46236 0) (-0.771552 1.48745 0) (-0.954 1.51629 0) (-1.14886 1.54332 0) (-1.35409 1.56213 0) (-1.56628 1.56709 0) (-1.7816 1.55439 0) (-2.00241 1.52142 0) (-2.2403 1.46375 0) (-2.4822 1.37402 0) (0.998689 0.0705214 0) (0.99028 0.210075 0) (0.974361 0.347126 0) (0.950164 0.48069 0) (0.91782 0.609817 0) (0.877446 0.73355 0) (0.829066 0.85094 0) (0.772725 0.961076 0) (0.708522 1.06311 0) (0.636598 1.15625 0) (0.557127 1.23982 0) (0.470308 1.31322 0) (0.376348 1.37598 0) (0.27544 1.42783 0) (0.1677 1.46884 0) (0.0530392 1.4998 0) (-0.0689036 1.52265 0) (-0.199105 1.54083 0) (-0.339273 1.55901 0) (-0.4915 1.58195 0) (-0.657763 1.61259 0) (-0.839156 1.65044 0) (-1.03551 1.69138 0) (-1.24572 1.72901 0) (-1.46795 1.75653 0) (-1.69892 1.76826 0) (-1.93497 1.76038 0) (-2.17963 1.73012 0) (-2.44627 1.67222 0) (-2.71807 1.57779 0) (0.998721 0.0739402 0) (0.990482 0.220295 0) (0.974834 0.364132 0) (0.950995 0.504489 0) (0.919058 0.640427 0) (0.87907 0.770981 0) (0.830986 0.895182 0) (0.774786 1.01209 0) (0.710502 1.12081 0) (0.638209 1.22055 0) (0.558016 1.31058 0) (0.470056 1.3903 0) (0.374467 1.45924 0) (0.271366 1.51717 0) (0.160775 1.5643 0) (0.0424823 1.60164 0) (-0.0840382 1.63155 0) (-0.219972 1.65799 0) (-0.367239 1.68608 0) (-0.528081 1.7207 0) (-0.704512 1.7643 0) (-0.897568 1.81546 0) (-1.10707 1.8691 0) (-1.3321 1.91817 0) (-1.5712 1.95564 0) (-1.82132 1.97579 0) (-2.07892 1.97468 0) (-2.34876 1.94924 0) (-2.64625 1.8932 0) (-2.9506 1.7958 0) (0.99876 0.077102 0) (0.990745 0.22976 0) (0.975464 0.379909 0) (0.952132 0.526622 0) (0.920797 0.668979 0) (0.881435 0.806012 0) (0.833929 0.936737 0) (0.778191 1.06018 0) (0.714183 1.17544 0) (0.64191 1.28165 0) (0.561413 1.37809 0) (0.472758 1.46414 0) (0.376014 1.53935 0) (0.271216 1.60352 0) (0.158293 1.657 0) (0.0369147 1.70106 0) (-0.0936041 1.73847 0) (-0.234638 1.77371 0) (-0.388289 1.8123 0) (-0.556931 1.85915 0) (-0.742627 1.9162 0) (-0.946415 1.98117 0) (-1.16822 2.04813 0) (-1.40748 2.1096 0) (-1.66323 2.15844 0) (-1.93269 2.18882 0) (-2.21242 2.19658 0) (-2.50842 2.1782 0) (-2.83844 2.12629 0) (-3.17767 2.02786 0) (0.998807 0.0800068 0) (0.991059 0.238467 0) (0.97623 0.394451 0) (0.953535 0.547077 0) (0.922974 0.695449 0) (0.884452 0.838605 0) (0.837781 0.975547 0) (0.782799 1.10528 0) (0.719398 1.22686 0) (0.647511 1.33942 0) (0.56711 1.44218 0) (0.47819 1.53453 0) (0.38075 1.61602 0) (0.274747 1.68654 0) (0.160015 1.74654 0) (0.0361098 1.79759 0) (-0.0977967 1.84283 0) (-0.243245 1.88726 0) (-0.402501 1.93678 0) (-0.578054 1.99624 0) (-0.772033 2.06711 0) (-0.985561 2.1463 0) (-1.21877 2.22724 0) (-1.47155 2.30215 0) (-1.74356 2.36385 0) (-2.03232 2.40637 0) (-2.33441 2.42514 0) (-2.6571 2.41612 0) (-3.02088 2.37074 0) (-3.39705 2.27339 0) (0.998859 0.0826591 0) (0.991414 0.246429 0) (0.977107 0.407776 0) (0.955159 0.565871 0) (0.925523 0.71985 0) (0.88803 0.868762 0) (0.84242 1.0116 0) (0.788461 1.14735 0) (0.725969 1.27504 0) (0.654806 1.39376 0) (0.574872 1.50273 0) (0.486095 1.60131 0) (0.3884 1.68908 0) (0.281669 1.76598 0) (0.165647 1.83262 0) (0.0397734 1.89081 0) (-0.0968954 1.94412 0) (-0.246044 1.99802 0) (-0.410085 2.05872 0) (-0.59161 2.13104 0) (-0.792848 2.21596 0) (-1.01507 2.30975 0) (-1.2587 2.40531 0) (-1.52417 2.4947 0) (-1.81185 2.57077 0) (-2.11962 2.62729 0) (-2.44394 2.65916 0) (-2.79336 2.66177 0) (-3.19169 2.62546 0) (-3.60681 2.53163 0) (0.998916 0.0850668 0) (0.9918 0.253668 0) (0.978072 0.419916 0) (0.956963 0.583041 0) (0.928378 0.742221 0) (0.892076 0.896518 0) (0.847725 1.04493 0) (0.795023 1.18641 0) (0.733711 1.31996 0) (0.663578 1.44466 0) (0.584454 1.55968 0) (0.496198 1.66438 0) (0.398664 1.75837 0) (0.291661 1.84165 0) (0.17485 1.91497 0) (0.0475599 1.98041 0) (-0.0912456 2.04191 0) (-0.24337 2.10542 0) (-0.411359 2.17742 0) (-0.597897 2.2627 0) (-0.805339 2.36183 0) (-1.03517 2.47052 0) (-1.28817 2.58128 0) (-1.56537 2.68615 0) (-1.86792 2.77802 0) (-2.19411 2.85035 0) (-2.54022 2.89734 0) (-2.91599 2.91387 0) (-3.34933 2.88937 0) (-3.80557 2.80191 0) (0.998975 0.0872413 0) (0.992207 0.260215 0) (0.979101 0.430918 0) (0.958904 0.598646 0) (0.931473 0.762625 0) (0.896497 0.92194 0) (0.853576 1.07558 0) (0.802334 1.2225 0) (0.742441 1.36167 0) (0.673611 1.49211 0) (0.595607 1.61301 0) (0.508218 1.72371 0) (0.411231 1.82383 0) (0.304384 1.91343 0) (0.187264 1.99341 0) (0.0590897 2.06613 0) (-0.0812402 2.13586 0) (-0.235625 2.209 0) (-0.406729 2.2923 0) (-0.597318 2.39054 0) (-0.809904 2.50392 0) (-1.04624 2.62772 0) (-1.30751 2.75422 0) (-1.59536 2.87546 0) (-1.91178 2.98444 0) (-2.25558 3.07425 0) (-2.62272 3.13823 0) (-3.02409 3.17083 0) (-3.49262 3.16109 0) (-3.99244 3.08352 0) (0.999035 0.0891959 0) (0.992627 0.266109 0) (0.980174 0.440838 0) (0.960945 0.612758 0) (0.93475 0.781146 0) (0.90121 0.945112 0) (0.859858 1.10365 0) (0.81025 1.25571 0) (0.75198 1.40022 0) (0.684694 1.5362 0) (0.608084 1.66278 0) (0.521875 1.77931 0) (0.425788 1.88542 0) (0.319493 1.98125 0) (0.202511 2.06783 0) (0.073966 2.14776 0) (-0.0673012 2.22571 0) (-0.223257 2.30839 0) (-0.396662 2.4029 0) (-0.590359 2.51396 0) (-0.807035 2.64153 0) (-1.04875 2.78058 0) (-1.31712 2.92322 0) (-1.6144 3.06159 0) (-1.94349 3.18882 0) (-2.30387 3.29766 0) (-2.69115 3.38049 0) (-3.11714 3.43145 0) (-3.62086 3.43989 0) (-4.16684 3.37663 0) (0.999095 0.0909458 0) (0.993052 0.271391 0) (0.981272 0.449741 0) (0.963052 0.625459 0) (0.938156 0.797878 0) (0.906137 0.966141 0) (0.866468 1.12925 0) (0.818634 1.28615 0) (0.762161 1.43573 0) (0.696624 1.57699 0) (0.62165 1.70904 0) (0.536898 1.83122 0) (0.442029 1.94318 0) (0.336645 2.04511 0) (0.220209 2.13818 0) (0.091786 2.2252 0) (-0.049865 2.31127 0) (-0.206752 2.40333 0) (-0.38167 2.50883 0) (-0.577565 2.63251 0) (-0.797307 2.77414 0) (-1.0433 2.92848 0) (-1.31762 3.0876 0) (-1.6231 3.24373 0) (-1.9636 3.39021 0) (-2.33947 3.51948 0) (-2.74587 3.62281 0) (-3.19505 3.69401 0) (-3.73321 3.72383 0) (-4.32782 3.67958 0) (0.999155 0.0925063 0) (0.993478 0.276106 0) (0.982383 0.457695 0) (0.965201 0.636838 0) (0.941646 0.812928 0) (0.911212 0.985145 0) (0.87331 1.15251 0) (0.827364 1.31393 0) (0.77283 1.46832 0) (0.709215 1.61461 0) (0.636082 1.7519 0) (0.55303 1.87952 0) (0.459659 1.99715 0) (0.355513 2.10502 0) (0.239996 2.20443 0) (0.112138 2.29841 0) (-0.0293829 2.39238 0) (-0.18659 2.49361 0) (-0.362283 2.60983 0) (-0.55951 2.74583 0) (-0.781318 2.90127 0) (-1.03046 3.0708 0) (-1.3095 3.24652 0) (-1.62176 3.42081 0) (-1.97201 3.58721 0) (-2.36179 3.73817 0) (-2.78606 3.86383 0) (-3.25714 3.95752 0) (-3.82941 4.01276 0) (-4.47532 3.99448 0) (0.999215 0.0938911 0) (0.993906 0.280293 0) (0.983504 0.464763 0) (0.967378 0.646982 0) (0.945191 0.826404 0) (0.916381 1.00225 0) (0.880307 1.17355 0) (0.836331 1.33921 0) (0.783845 1.49812 0) (0.722293 1.64919 0) (0.651174 1.79149 0) (0.570029 1.92434 0) (0.478403 2.04743 0) (0.375783 2.16106 0) (0.261523 2.26664 0) (0.134626 2.36739 0) (-0.00629777 2.46903 0) (-0.163259 2.57914 0) (-0.339049 2.70575 0) (-0.53681 2.85373 0) (-0.759769 3.02272 0) (-1.01106 3.20737 0) (-1.29376 3.3999 0) (-1.61172 3.5928 0) (-1.97065 3.77984 0) (-2.37358 3.95363 0) (-2.81539 4.10314 0) (-3.30679 4.22065 0) (-3.90957 4.30378 0) (-4.60579 4.31604 0) (0.999278 0.0951097 0) (0.994345 0.283983 0) (0.984645 0.470989 0) (0.969589 0.655952 0) (0.948781 0.838382 0) (0.921614 1.01754 0) (0.887401 1.19248 0) (0.84545 1.3621 0) (0.795091 1.52526 0) (0.735707 1.68086 0) (0.66674 1.82794 0) (0.587676 1.9658 0) (0.498004 2.09415 0) (0.397163 2.21333 0) (0.284459 2.32487 0) (0.158875 2.43217 0) (0.0189708 2.5412 0) (-0.137227 2.65984 0) (-0.312478 2.79641 0) (-0.510004 2.95586 0) (-0.733163 3.13787 0) (-0.985426 3.33717 0) (-1.27033 3.54615 0) (-1.5921 3.75748 0) (-1.95707 3.96521 0) (-2.3699 4.16255 0) (-2.82615 4.33803 0) (-3.33494 4.48205 0) (-3.96777 4.59576 0) (-4.7239 4.64618 0) (0.999349 0.0961826 0) (0.994813 0.287241 0) (0.985831 0.476478 0) (0.971858 0.663879 0) (0.952435 0.849006 0) (0.926918 1.03117 0) (0.894582 1.20943 0) (0.854683 1.38271 0) (0.806498 1.54985 0) (0.749354 1.7097 0) (0.682638 1.86131 0) (0.605784 2.00396 0) (0.518236 2.13736 0) (0.419384 2.2619 0) (0.308493 2.37921 0) (0.184532 2.49285 0) (0.0460121 2.60905 0) (-0.108983 2.73597 0) (-0.283185 2.88224 0) (-0.479908 3.05302 0) (-0.702689 3.24811 0) (-0.955423 3.46238 0) (-1.24228 3.68844 0) (-1.56811 3.91911 0) (-1.94001 4.14845 0) (-2.36469 4.37026 0) (-2.83931 4.57289 0) (-3.36929 4.74356 0) (-4.02698 4.88704 0) (-4.82275 4.98771 0) (0.999447 0.0971698 0) (0.995365 0.290267 0) (0.987126 0.481584 0) (0.974253 0.671274 0) (0.956218 0.858927 0) (0.932358 1.04389 0) (0.901913 1.22526 0) (0.864092 1.40194 0) (0.818117 1.57277 0) (0.763259 1.73657 0) (0.698854 1.89238 0) (0.624292 2.03946 0) (0.538976 2.17755 0) (0.442262 2.30709 0) (0.333383 2.42978 0) (0.211314 2.54933 0) (0.0745482 2.67214 0) (-0.0787237 2.80665 0) (-0.251115 2.96157 0) (-0.44591 3.14228 0) (-0.666635 3.3488 0) (-0.917362 3.57625 0) (-1.20258 3.8177 0) (-1.52737 4.06645 0) (-1.89891 4.31687 0) (-2.32522 4.56379 0) (-2.80554 4.79742 0) (-3.34246 5.00327 0) (-4.01396 5.18102 0) (-4.87178 5.32942 0) (0.99964 0.0980426 0) (0.996154 0.292985 0) (0.9887 0.486282 0) (0.976951 0.678232 0) (0.960327 0.868445 0) (0.938162 1.05632 0) (0.90967 1.24096 0) (0.874019 1.42128 0) (0.83037 1.59607 0) (0.777924 1.76413 0) (0.715949 1.92445 0) (0.643771 2.07628 0) (0.560738 2.21935 0) (0.466151 2.35418 0) (0.359187 2.48263 0) (0.238774 2.60869 0) (0.103354 2.73912 0) (-0.0489469 2.88297 0) (-0.220793 3.04908 0) (-0.415616 3.24311 0) (-0.637276 3.46498 0) (-0.890394 3.70973 0) (-1.18024 3.97052 0) (-1.51286 4.24084 0) (-1.89624 4.51481 0) (-2.34007 4.78748 0) (-2.84752 5.05094 0) (-3.42352 5.28611 0) (-4.13426 5.47993 0) (-5.01204 5.70149 0) (0.230975 -0.0103545 -6.54144e-22) (0.233617 -0.0114157 -1.28172e-21) (0.236549 -0.0124416 1.9338e-21) (0.23975 -0.013434 6.48523e-22) (0.243217 -0.0143948 0) (0.246945 -0.0153252 0) (0.250929 -0.0162263 0) (0.255164 -0.0170996 -6.61856e-22) (0.259643 -0.0179467 -6.64928e-22) (0.264362 -0.0187693 -1.13479e-20) (0.269317 -0.0195693 1.07287e-20) (0.274502 -0.0203486 0) (0.279913 -0.0211092 1.08097e-20) (0.285548 -0.021853 -4.1231e-24) (0.291401 -0.022582 -1.08895e-20) (0.29747 -0.0232982 0) (0.303751 -0.0240035 -3.4241e-22) (0.310243 -0.0246997 0) (0.316943 -0.0253888 3.44146e-22) (0.323848 -0.0260723 3.44888e-22) (0.330956 -0.026752 3.45544e-22) (0.338267 -0.0274294 0) (0.345779 -0.0281061 -3.46586e-22) (0.353489 -0.0287834 5.72181e-21) (0.361398 -0.0294626 -5.5566e-21) (0.369504 -0.0301449 1.73728e-22) (0.377806 -0.0308315 8.68892e-23) (0.386304 -0.0315232 -1.38944e-21) (0.394997 -0.032221 1.39013e-21) (0.403884 -0.0329258 -2.17048e-23) (0.185682 -0.0263026 -2.10262e-21) (0.187782 -0.0293611 0) (0.190186 -0.0323081 -4.81745e-21) (0.192808 -0.0351522 3.45647e-21) (0.195654 -0.0379011 0) (0.198728 -0.0405597 0) (0.202026 -0.043133 0) (0.205543 -0.0456266 -9.13526e-21) (0.209272 -0.0480463 1.05833e-20) (0.213212 -0.0503983 -7.09268e-22) (0.217357 -0.0526887 0) (0.221706 -0.0549238 1.14026e-20) (0.226254 -0.0571097 -1.14417e-20) (0.231 -0.0592525 1.43489e-21) (0.235942 -0.0613582 1.43871e-21) (0.241077 -0.0634327 -7.21132e-22) (0.246405 -0.0654814 3.61081e-22) (0.251922 -0.0675099 0) (0.257628 -0.0695232 -3.62521e-22) (0.263522 -0.0715263 -1.08993e-21) (0.269603 -0.0735236 -3.63659e-22) (0.27587 -0.0755197 0) (0.282321 -0.0775184 1.09392e-21) (0.288956 -0.0795236 1.82614e-22) (0.295773 -0.0815387 0) (0.302773 -0.0835668 -5.4786e-22) (0.309955 -0.0856108 -9.12858e-23) (0.317316 -0.0876734 -1.27746e-21) (0.324857 -0.0897569 7.30933e-22) (0.332577 -0.0918634 7.52715e-22) (0.0976705 -0.0292861 2.9987e-21) (0.0987947 -0.0340413 -1.46513e-21) (0.100253 -0.0386023 2.94314e-21) (0.101818 -0.0429953 -4.42672e-21) (0.103522 -0.04724 1.49142e-24) (0.105395 -0.0513496 5.94194e-21) (0.107438 -0.0553366 -2.98216e-21) (0.109646 -0.0592136 -1.49348e-21) (0.112019 -0.0629931 1.49781e-21) (0.114555 -0.0666869 1.50195e-21) (0.117256 -0.0703063 -1.50779e-21) (0.120122 -0.0738622 -1.51147e-21) (0.123154 -0.0773648 -1.21094e-20) (0.126351 -0.0808238 1.06243e-20) (0.129715 -0.0842486 -1.51951e-21) (0.133246 -0.0876477 -1.14207e-20) (0.136944 -0.0910293 1.22084e-20) (0.140811 -0.094401 6.11027e-21) (0.144846 -0.0977699 -4.59105e-21) (0.14905 -0.101143 7.65581e-22) (0.153423 -0.104525 0) (0.157964 -0.107923 -6.90404e-21) (0.162674 -0.111342 5.37681e-21) (0.167553 -0.114786 -3.83929e-22) (0.172599 -0.118259 -2.30365e-21) (0.177812 -0.121766 3.45879e-21) (0.183191 -0.12531 0) (0.188735 -0.128894 1.34356e-21) (0.194443 -0.13252 -1.53602e-21) (0.200313 -0.136192 0) (-0.03177 -0.0134978 3.21068e-21) (-0.0319188 -0.019515 0) (-0.0317138 -0.0253235 -3.13814e-21) (-0.0315695 -0.0309618 6.29594e-21) (-0.0313751 -0.03646 -6.31298e-21) (-0.0310628 -0.0418386 -9.49057e-21) (-0.0306261 -0.0471152 9.51024e-21) (-0.0300649 -0.0523067 6.35335e-21) (-0.0293746 -0.0574281 -9.5535e-21) (-0.0285491 -0.0624931 0) (-0.0275833 -0.0675141 1.11799e-20) (-0.0264726 -0.0725026 -2.40089e-20) (-0.0252131 -0.0774688 5.90859e-24) (-0.0238012 -0.0824225 1.28465e-20) (-0.022234 -0.0873723 -1.60799e-21) (-0.0205087 -0.0923264 6.43643e-21) (-0.0186233 -0.0972923 -6.44694e-21) (-0.016576 -0.102277 -1.61312e-21) (-0.0143655 -0.107286 -9.68254e-21) (-0.0119908 -0.112327 6.46312e-21) (-0.00945131 -0.117403 1.61629e-21) (-0.00674687 -0.122521 7.27312e-21) (-0.00387747 -0.127684 -6.47124e-21) (-0.000843047 -0.132897 0) (0.00235466 -0.138164 1.86885e-25) (0.00571467 -0.143487 -3.23283e-21) (0.0092368 -0.148869 3.23441e-21) (0.0129191 -0.154314 -1.61503e-21) (0.0167598 -0.159823 8.08444e-22) (0.020757 -0.165399 8.07082e-22) (-0.198881 0.0256353 -3.42671e-21) (-0.200542 0.0185371 3.34463e-21) (-0.201726 0.0115363 -3.35036e-21) (-0.203073 0.00459909 1.74729e-24) (-0.204429 -0.00229926 0) (-0.205684 -0.00917226 3.3645e-21) (-0.206823 -0.0160303 0) (-0.207843 -0.0228822 0) (-0.208733 -0.0297356 1.01342e-20) (-0.209486 -0.0365972 -3.38441e-21) (-0.210093 -0.0434728 -3.38897e-21) (-0.210549 -0.0503678 6.77768e-21) (-0.210849 -0.0572876 -6.78705e-21) (-0.210988 -0.064237 0) (-0.210964 -0.0712208 1.69849e-21) (-0.210773 -0.0782437 -3.39819e-21) (-0.210414 -0.08531 0) (-0.209885 -0.0924241 3.40184e-21) (-0.209186 -0.09959 1.70185e-21) (-0.208314 -0.106812 6.80736e-21) (-0.207271 -0.114093 -1.02169e-20) (-0.206057 -0.121437 6.80787e-21) (-0.204671 -0.128848 1.69579e-21) (-0.203116 -0.136327 -1.02136e-20) (-0.20139 -0.143879 2.55359e-21) (-0.199498 -0.151506 -8.49583e-22) (-0.197439 -0.15921 2.54799e-21) (-0.195215 -0.166992 -2.12357e-21) (-0.192829 -0.174856 0) (-0.190282 -0.182803 0) (-0.396768 0.0887469 -7.29391e-21) (-0.399687 0.0802658 -1.06881e-20) (-0.401998 0.0716295 0) (-0.404559 0.0628443 1.07013e-20) (-0.407142 0.0539258 0) (-0.409605 0.044894 0) (-0.411928 0.0357657 0) (-0.414111 0.0265538 -3.5832e-21) (-0.416145 0.0172687 7.16235e-21) (-0.418023 0.00791777 7.16916e-21) (-0.419737 -0.00149385 -7.16784e-21) (-0.421283 -0.0109631 -7.1663e-21) (-0.422659 -0.0204884 7.1717e-21) (-0.423861 -0.0300697 0) (-0.424889 -0.0397077 -3.57979e-21) (-0.425739 -0.0494041 -3.58193e-21) (-0.426411 -0.0591608 7.17403e-21) (-0.426905 -0.0689803 -1.79369e-21) (-0.42722 -0.0788653 -7.16699e-21) (-0.427355 -0.0888185 5.3819e-21) (-0.427312 -0.0988427 1.79252e-21) (-0.42709 -0.108941 7.15956e-21) (-0.426691 -0.119115 -5.37531e-21) (-0.426115 -0.129369 -3.57914e-21) (-0.425364 -0.139705 1.78385e-21) (-0.424439 -0.150124 2.70384e-24) (-0.423343 -0.16063 -8.93224e-22) (-0.422075 -0.171225 1.46002e-24) (-0.42064 -0.181909 4.44289e-22) (-0.419039 -0.192686 0) (-0.61592 0.172463 7.77481e-21) (-0.619689 0.16205 7.59284e-21) (-0.622711 0.151067 3.78858e-21) (-0.626043 0.139647 -1.13776e-20) (-0.629386 0.127897 0) (-0.632574 0.115904 0) (-0.635598 0.103728 0) (-0.638461 0.0914121 3.75321e-21) (-0.641161 0.0789873 0) (-0.643691 0.0664744 3.78887e-21) (-0.646049 0.053887 -3.76895e-21) (-0.648233 0.0412335 3.7676e-21) (-0.650241 0.0285188 7.55555e-21) (-0.652072 0.0157449 -3.79226e-21) (-0.653725 0.00291206 1.88891e-23) (-0.655198 -0.00998066 0) (-0.656492 -0.0229351 7.53992e-21) (-0.657605 -0.0359535 -7.54096e-21) (-0.658537 -0.0490387 0) (-0.659288 -0.0621935 1.31606e-20) (-0.659859 -0.0754208 -1.12732e-20) (-0.66025 -0.0887236 0) (-0.660461 -0.102105 -1.87051e-21) (-0.660494 -0.115567 0) (-0.660349 -0.129113 -1.0906e-23) (-0.660028 -0.142746 9.37913e-22) (-0.659532 -0.156468 1.8688e-21) (-0.658863 -0.170281 -1.40091e-21) (-0.658024 -0.184188 -1.36042e-24) (-0.657016 -0.19819 -4.66072e-22) (-0.847574 0.272558 8.15428e-21) (-0.851843 0.259481 9.97696e-21) (-0.855242 0.245339 -9.96782e-21) (-0.858987 0.230482 4.00264e-21) (-0.862725 0.215151 -3.99973e-21) (-0.866286 0.199506 7.94424e-21) (-0.869673 0.183652 -4.55646e-23) (-0.872897 0.167654 7.90596e-21) (-0.875958 0.151555 0) (-0.878853 0.135381 0) (-0.881581 0.119145 -3.96261e-21) (-0.884141 0.102856 -1.18846e-20) (-0.886531 0.0865181 4.56905e-24) (-0.88875 0.0701311 3.9554e-21) (-0.890797 0.0536941 3.97463e-21) (-0.892671 0.037205 0) (-0.894369 0.0206608 -1.18352e-20) (-0.895891 0.00405818 7.9017e-21) (-0.897237 -0.0126062 0) (-0.898405 -0.029336 -3.95373e-21) (-0.899396 -0.0461347 3.9493e-21) (-0.90021 -0.0630058 -7.83734e-21) (-0.900846 -0.0799529 3.94686e-21) (-0.901305 -0.0969793 -1.94903e-21) (-0.901589 -0.114088 -5.87912e-21) (-0.901697 -0.131283 1.95921e-21) (-0.901632 -0.148566 1.95409e-21) (-0.901394 -0.16594 9.74328e-22) (-0.900986 -0.183408 -9.74288e-22) (-0.900409 -0.200973 0) (-1.08552 0.385609 -8.6827e-21) (-1.09012 0.369161 -8.49482e-21) (-1.09375 0.351157 8.47957e-21) (-1.09775 0.332232 0) (-1.10173 0.312771 -8.32734e-21) (-1.10553 0.292997 -8.43822e-21) (-1.10917 0.27304 -4.23636e-21) (-1.11265 0.252972 -4.23062e-21) (-1.11598 0.232835 -8.35415e-21) (-1.11916 0.212651 8.2693e-21) (-1.12219 0.192428 0) (-1.12505 0.172172 4.70283e-23) (-1.12776 0.151883 7.18735e-23) (-1.13031 0.131559 0) (-1.13269 0.111196 4.10477e-21) (-1.13491 0.0907909 -8.263e-21) (-1.13696 0.0703393 1.2406e-20) (-1.13884 0.049837 8.20491e-21) (-1.14055 0.0292794 -3.63154e-23) (-1.14209 0.00866212 0) (-1.14346 -0.0120192 0) (-1.14465 -0.0327689 8.21059e-21) (-1.14567 -0.0535911 -8.41841e-24) (-1.14651 -0.0744899 2.92394e-23) (-1.14718 -0.0954693 0) (-1.14768 -0.116533 2.0328e-21) (-1.14801 -0.137685 -3.08254e-24) (-1.14817 -0.158928 -2.029e-21) (-1.14815 -0.180265 0) (-1.14797 -0.201701 0) (-1.32627 0.509805 0) (-1.3312 0.489379 -8.71152e-21) (-1.3351 0.466959 0) (-1.33939 0.443508 8.67773e-21) (-1.34364 0.419534 1.75114e-20) (-1.34773 0.395298 0) (-1.35166 0.370933 4.36914e-21) (-1.35545 0.346503 -8.72079e-21) (-1.35911 0.322041 4.3521e-21) (-1.36262 0.297561 -1.75532e-22) (-1.36599 0.273066 0) (-1.36922 0.248555 0) (-1.37229 0.224027 8.80504e-21) (-1.37521 0.199476 -8.62182e-21) (-1.37797 0.174899 -4.33602e-21) (-1.38057 0.150288 8.48676e-21) (-1.38301 0.12564 -4.23529e-21) (-1.38529 0.100949 -3.63946e-23) (-1.3874 0.0762091 -1.28398e-20) (-1.38934 0.051415 8.52044e-21) (-1.39111 0.0265615 -4.25449e-21) (-1.39271 0.00164344 -4.24108e-21) (-1.39414 -0.0233444 2.10311e-21) (-1.3954 -0.048407 2.13123e-21) (-1.39648 -0.0735492 0) (-1.39739 -0.0987757 2.07987e-21) (-1.39813 -0.124091 0) (-1.3987 -0.149499 1.04743e-21) (-1.3991 -0.175005 -1.04726e-21) (-1.39933 -0.200612 0) (-1.56823 0.644629 0) (-1.57364 0.619694 6.98635e-21) (-1.57796 0.592405 4.56746e-21) (-1.58268 0.564063 -6.94586e-21) (-1.58735 0.535266 -2.26818e-20) (-1.59186 0.506284 -1.34519e-20) (-1.59623 0.477232 9.04752e-21) (-1.60047 0.448162 1.00567e-24) (-1.60457 0.419092 -4.50237e-21) (-1.60854 0.390029 -2.48716e-22) (-1.61237 0.360972 4.48144e-21) (-1.61605 0.331916 -4.47193e-21) (-1.61959 0.302856 9.02379e-21) (-1.62297 0.273786 8.76288e-21) (-1.62619 0.2447 -4.43939e-21) (-1.62926 0.215592 -2.33937e-22) (-1.63216 0.186454 1.31781e-20) (-1.6349 0.157281 4.4124e-21) (-1.63747 0.128066 4.33238e-21) (-1.63987 0.0988026 4.3224e-21) (-1.6421 0.0694841 6.50981e-23) (-1.64416 0.0401044 -4.43815e-21) (-1.64604 0.0106572 1.30123e-20) (-1.64774 -0.0188634 2.10139e-21) (-1.64927 -0.0484636 -2.17187e-21) (-1.65063 -0.0781489 -6.48359e-21) (-1.65181 -0.107925 2.16195e-21) (-1.65281 -0.137797 0) (-1.65364 -0.167771 8.22332e-24) (-1.6543 -0.197851 -2.73131e-22) (-1.81087 0.790374 0) (-1.817 0.760416 0) (-1.82198 0.72784 0) (-1.82734 0.694265 2.34104e-21) (-1.83265 0.660338 2.48851e-21) (-1.83778 0.626306 5.01134e-21) (-1.84278 0.592262 9.0848e-21) (-1.84764 0.558239 9.06398e-21) (-1.85236 0.524245 -9.04298e-21) (-1.85694 0.490279 -9.35989e-21) (-1.86137 0.456337 0) (-1.86564 0.422413 -8.97888e-21) (-1.86976 0.388499 8.95715e-21) (-1.87372 0.354588 4.23486e-21) (-1.87751 0.320673 -8.91526e-21) (-1.88114 0.286746 -1.37493e-20) (-1.88459 0.2528 -9.18708e-21) (-1.88786 0.218827 -8.84566e-21) (-1.89096 0.18482 -4.56968e-21) (-1.89388 0.15077 -9.04493e-21) (-1.89661 0.116671 9.02714e-21) (-1.89916 0.0825142 -1.33734e-20) (-1.90153 0.0482931 -6.45469e-23) (-1.90371 0.0140003 -8.86311e-21) (-1.90571 -0.0203714 0) (-1.90751 -0.054829 3.69465e-23) (-1.90914 -0.0893794 4.82864e-23) (-1.91057 -0.124029 0) (-1.91182 -0.158784 -5.15658e-22) (-1.91289 -0.193652 -2.77535e-22) (-2.05414 0.94779 -1.2142e-21) (-2.06132 0.912275 1.04562e-20) (-2.06726 0.87399 -2.38476e-21) (-2.07356 0.834826 -4.7071e-24) (-2.07976 0.795426 2.36788e-21) (-2.08578 0.755998 -4.25761e-21) (-2.09165 0.716606 -4.92155e-21) (-2.09736 0.677267 -1.40477e-20) (-2.10291 0.637982 9.58273e-21) (-2.10829 0.598746 -4.67669e-21) (-2.1135 0.559551 -4.66698e-21) (-2.11854 0.520391 9.49449e-21) (-2.1234 0.481256 -4.82839e-21) (-2.12807 0.442138 -9.44139e-21) (-2.13256 0.403029 9.41425e-21) (-2.13685 0.36392 -1.35677e-20) (-2.14095 0.324803 1.81202e-20) (-2.14484 0.285669 1.36726e-20) (-2.14854 0.246509 4.44593e-21) (-2.15204 0.207316 1.13555e-22) (-2.15533 0.168079 -1.34918e-20) (-2.15841 0.12879 1.35453e-20) (-2.16129 0.0894419 -6.64502e-21) (-2.16396 0.0500251 6.83542e-21) (-2.16642 0.0105316 2.18225e-21) (-2.16867 -0.0290468 0) (-2.17072 -0.0687181 2.27223e-21) (-2.17255 -0.10849 5.26011e-22) (-2.17417 -0.148371 1.40691e-21) (-2.1756 -0.188367 2.76001e-22) (-2.29801 1.11788 1.85911e-20) (-2.30667 1.07623 -2.82356e-20) (-2.31396 1.0318 9.17785e-21) (-2.32155 0.986667 0) (-2.32901 0.941409 -9.15009e-21) (-2.33626 0.896189 1.44913e-20) (-2.34331 0.851044 -4.72242e-21) (-2.35016 0.805979 2.35136e-20) (-2.35682 0.760989 4.38177e-21) (-2.36327 0.716067 0) (-2.3695 0.671204 0) (-2.37553 0.62639 -4.35215e-21) (-2.38133 0.581617 -4.65331e-21) (-2.38691 0.536876 0) (-2.39226 0.492156 -1.35803e-20) (-2.39738 0.447449 1.86962e-20) (-2.40226 0.402746 -1.86396e-20) (-2.40691 0.358036 -4.8201e-21) (-2.41132 0.31331 -4.68961e-21) (-2.41548 0.268558 1.36401e-20) (-2.4194 0.223772 -2.15688e-21) (-2.42307 0.178941 4.26458e-21) (-2.4265 0.134056 2.37055e-21) (-2.42968 0.0891081 -4.34998e-21) (-2.43262 0.0440873 -6.63289e-21) (-2.43531 -0.00101528 0) (-2.43775 -0.0462088 1.03959e-21) (-2.43994 -0.0915021 5.25248e-22) (-2.44189 -0.136904 -5.52793e-22) (-2.4436 -0.182423 0) (-2.54208 1.30167 -2.03348e-20) (-2.55277 1.25328 2.01306e-20) (-2.56188 1.20228 -2.76072e-20) (-2.57125 1.15077 0) (-2.58042 1.09924 1.86285e-20) (-2.58932 1.0478 0) (-2.59796 0.996467 2.3352e-21) (-2.60636 0.945232 -7.30403e-21) (-2.61449 0.894089 -1.42547e-20) (-2.62235 0.843029 0) (-2.62995 0.792042 4.62708e-21) (-2.63727 0.741118 3.14816e-22) (-2.64431 0.690248 -8.81545e-21) (-2.65106 0.639421 4.58586e-21) (-2.65753 0.588627 9.45427e-21) (-2.66371 0.537856 4.18301e-21) (-2.66959 0.487098 4.548e-21) (-2.67518 0.436343 -4.53141e-21) (-2.68047 0.38558 -1.88678e-21) (-2.68545 0.3348 -6.90365e-21) (-2.69014 0.283992 2.24157e-21) (-2.69452 0.233147 -4.80192e-21) (-2.69859 0.182253 6.49927e-21) (-2.70236 0.131301 4.58381e-21) (-2.70583 0.0802816 3.31842e-22) (-2.70898 0.029184 0) (-2.71184 -0.0220013 -5.45579e-21) (-2.71439 -0.0732841 1.09248e-21) (-2.71664 -0.124674 -2.70695e-22) (-2.71859 -0.17618 2.70638e-22) (-2.78526 1.49998 -5.69126e-22) (-2.79869 1.44423 1.69274e-21) (-2.8102 1.38624 1.78417e-20) (-2.82192 1.32797 0) (-2.83336 1.26976 -7.20019e-21) (-2.84445 1.21167 -2.2475e-21) (-2.85521 1.1537 -2.25697e-21) (-2.86563 1.09584 2.24459e-21) (-2.87572 1.03808 8.47725e-21) (-2.88545 0.980417 4.49333e-21) (-2.89484 0.922835 3.99044e-21) (-2.90386 0.865322 4.47469e-21) (-2.91253 0.80787 1.32927e-20) (-2.92084 0.750468 -1.28745e-20) (-2.92877 0.693104 4.43606e-21) (-2.93634 0.635769 -9.23086e-21) (-2.94353 0.578452 8.3606e-21) (-2.95034 0.521142 0) (-2.95677 0.463828 3.02202e-21) (-2.96283 0.406501 -2.18546e-21) (-2.96849 0.34915 6.29777e-21) (-2.97378 0.291764 -1.07951e-20) (-2.97868 0.234332 -8.58943e-21) (-2.9832 0.176846 0) (-2.98733 0.119293 5.52889e-21) (-2.99107 0.0616635 -1.0662e-21) (-2.99443 0.00394807 4.21332e-21) (-2.99741 -0.0538638 5.25199e-22) (-3.00001 -0.111782 4.64642e-22) (-3.00223 -0.169817 2.45778e-22) (-3.02575 1.7132 -1.52802e-20) (-3.04276 1.64946 1.0528e-21) (-3.05731 1.58415 1.04737e-23) (-3.07206 1.51875 -1.65234e-20) (-3.08642 1.45346 0) (-3.10034 1.3883 2.11987e-21) (-3.11382 1.32327 -2.10655e-21) (-3.12686 1.25835 0) (-3.13946 1.19354 -1.68092e-20) (-3.15161 1.12881 -7.8442e-21) (-3.16331 1.06417 -1.67957e-20) (-3.17455 0.999596 -2.11452e-21) (-3.18533 0.935079 -1.46523e-20) (-3.19564 0.870609 8.89579e-21) (-3.20549 0.806175 0) (-3.21486 0.741766 -2.09596e-21) (-3.22375 0.677372 -1.24325e-20) (-3.23217 0.612981 5.68351e-21) (-3.24011 0.548583 8.76336e-21) (-3.24756 0.484168 0) (-3.25453 0.419724 -2.28997e-21) (-3.26102 0.355241 6.09998e-21) (-3.26702 0.290709 4.30984e-21) (-3.27253 0.226117 0) (-3.27755 0.161456 1.0079e-21) (-3.28209 0.0967133 -1.00668e-21) (-3.28614 0.0318805 -2.11048e-21) (-3.28971 -0.033053 -1.34936e-21) (-3.29279 -0.0980972 -1.53651e-21) (-3.2954 -0.163262 -3.21135e-23) (-3.26126 1.9412 1.62033e-20) (-3.28277 1.86888 0) (-3.30105 1.79597 -1.32624e-20) (-3.31958 1.72312 2.88605e-20) (-3.33757 1.6504 2.84118e-21) (-3.355 1.5778 -1.54927e-20) (-3.37187 1.50532 1.17747e-20) (-3.38817 1.43294 3.82396e-21) (-3.40391 1.36066 6.38389e-21) (-3.41908 1.28844 8.29642e-21) (-3.43367 1.2163 1.52515e-20) (-3.44769 1.14421 -6.96867e-21) (-3.46112 1.07217 1.30748e-21) (-3.47396 1.00016 -1.92505e-21) (-3.48621 0.92817 8.8942e-21) (-3.49786 0.856193 6.9705e-21) (-3.50892 0.784216 1.51767e-20) (-3.51938 0.712228 -1.25049e-21) (-3.52924 0.64022 0) (-3.53849 0.56818 -5.00421e-21) (-3.54713 0.496097 -1.88713e-21) (-3.55517 0.423962 -4.03082e-21) (-3.56261 0.351764 0) (-3.56943 0.279492 0) (-3.57564 0.207137 -9.19356e-22) (-3.58125 0.134688 9.18151e-22) (-3.58624 0.0621352 4.52681e-22) (-3.59063 -0.0105308 -5.92298e-22) (-3.59441 -0.0833202 4.48576e-22) (-3.59758 -0.156243 -4.38798e-22) (-3.48943 2.18347 -3.79074e-22) (-3.51647 2.10203 3.75514e-22) (-3.53917 2.02131 1.4853e-20) (-3.56225 1.94073 -4.41045e-21) (-3.58461 1.86026 0) (-3.60626 1.77989 2.53263e-20) (-3.62721 1.6996 -1.44951e-20) (-3.64744 1.6194 1.63916e-21) (-3.66695 1.53925 -3.2768e-21) (-3.68575 1.45916 1.63814e-21) (-3.70383 1.3791 -9.01363e-21) (-3.72118 1.29908 1.31205e-20) (-3.7378 1.21907 1.48219e-20) (-3.75369 1.13908 -5.81315e-21) (-3.76884 1.05908 -7.36566e-21) (-3.78326 0.979061 -9.02401e-21) (-3.79694 0.899022 1.44805e-22) (-3.80988 0.818948 -1.50597e-21) (-3.82207 0.738828 0) (-3.83352 0.658652 7.27153e-21) (-3.84422 0.57841 0) (-3.85418 0.498091 8.1452e-22) (-3.86338 0.417685 -1.6217e-21) (-3.87183 0.337182 1.61027e-21) (-3.87954 0.256572 -8.01501e-22) (-3.88649 0.175845 2.76423e-21) (-3.89269 0.094992 0) (-3.89813 0.0140027 3.06962e-21) (-3.90283 -0.0671324 0) (-3.90679 -0.148423 2.10582e-22) (-3.70841 2.4394 -5.80509e-21) (-3.74203 2.34837 0) (-3.76984 2.25969 0) (-3.79828 2.1711 -1.06123e-20) (-3.82576 2.08259 -5.80786e-22) (-3.85234 1.99413 -5.37763e-21) (-3.87804 1.90571 1.21358e-21) (-3.90285 1.81731 1.26347e-21) (-3.92676 1.72894 -1.25467e-21) (-3.94978 1.64058 1.29389e-21) (-3.9719 1.55223 -1.28582e-21) (-3.99313 1.46386 -7.41139e-21) (-4.01345 1.37547 -4.81268e-21) (-4.03287 1.28706 6.1374e-21) (-4.05139 1.19861 -2.97909e-21) (-4.069 1.1101 -2.6577e-21) (-4.08571 1.02154 -4.81919e-21) (-4.10151 0.932912 -6.13565e-21) (-4.1164 0.844204 0) (-4.13038 0.755407 0) (-4.14345 0.666512 0) (-4.15561 0.577508 6.51203e-22) (-4.16686 0.488386 2.10868e-21) (-4.1772 0.399137 -2.73354e-21) (-4.18662 0.30975 0) (-4.19513 0.220216 -2.91221e-21) (-4.20273 0.130525 0) (-4.20942 0.0406681 -1.421e-21) (-4.21519 -0.0493639 4.7802e-22) (-4.22006 -0.139581 0) (-3.91698 2.70867 5.40668e-21) (-3.95834 2.60761 -1.37752e-22) (-3.99194 2.51083 4.35757e-22) (-4.02662 2.41398 1.91954e-21) (-4.05997 2.31713 -2.60014e-21) (-4.09224 2.22026 -1.07875e-20) (-4.1234 2.12336 0) (-4.15344 2.02643 0) (-4.18237 1.92946 0) (-4.21019 1.83244 0) (-4.2369 1.73537 0) (-4.2625 1.63825 0) (-4.287 1.54105 0) (-4.31038 1.44378 0) (-4.33266 1.34642 4.54868e-21) (-4.35384 1.24897 -8.99158e-22) (-4.37391 1.15142 -6.88195e-24) (-4.39288 1.05376 3.3564e-21) (-4.41074 0.955988 4.50243e-22) (-4.4275 0.858087 -6.14186e-25) (-4.44316 0.760053 -2.88398e-21) (-4.45772 0.661875 2.40948e-21) (-4.47117 0.563546 -1.04067e-21) (-4.48353 0.465055 3.36287e-21) (-4.49479 0.366394 -1.13218e-21) (-4.50495 0.267555 -1.09774e-21) (-4.51401 0.168527 0) (-4.52198 0.0693023 4.09411e-22) (-4.52885 -0.0301286 -4.53358e-22) (-4.53463 -0.129776 4.70358e-23) (-4.11464 2.99112 7.85216e-22) (-4.16504 2.87967 3.64611e-23) (-4.20525 2.77472 -3.60833e-23) (-4.24711 2.66937 -2.34717e-21) (-4.28718 2.56392 2.75269e-21) (-4.32593 2.45835 5.86976e-22) (-4.36328 2.35265 -2.1913e-21) (-4.39925 2.24682 -1.67746e-21) (-4.43385 2.14087 -1.29209e-21) (-4.46709 2.03479 -2.0497e-22) (-4.49895 1.92858 -2.66738e-22) (-4.52946 1.82224 -2.60664e-23) (-4.55861 1.71576 -2.24459e-23) (-4.58639 1.60915 4.0713e-22) (-4.61282 1.5024 0) (-4.6379 1.39551 -3.52907e-22) (-4.66164 1.28846 3.51261e-22) (-4.68403 1.18127 -2.77388e-21) (-4.70508 1.07391 3.0954e-22) (-4.72479 0.96639 0) (-4.74317 0.858697 2.56874e-21) (-4.76022 0.750827 -2.81203e-21) (-4.77595 0.642772 -1.07519e-21) (-4.79035 0.534527 -1.22369e-21) (-4.80344 0.426084 1.26939e-21) (-4.8152 0.317435 1.07978e-21) (-4.82565 0.208572 1.26256e-23) (-4.83479 0.0994874 -5.99523e-22) (-4.84263 -0.00982698 0) (-4.84917 -0.119381 0) (-4.30074 3.28747 0) (-4.3616 3.1654 0) (-4.40928 3.05222 2.28363e-22) (-4.45949 2.9381 -2.26001e-22) (-4.50731 2.82375 0) (-4.55357 2.7091 -6.25538e-21) (-4.59808 2.59421 1.92844e-21) (-4.64089 2.47907 -6.39562e-21) (-4.682 2.3637 1.49424e-21) (-4.72141 2.2481 0) (-4.75913 2.13229 2.24008e-22) (-4.79516 2.01627 -2.22486e-22) (-4.82952 1.90002 1.92159e-22) (-4.86221 1.78356 -2.93558e-22) (-4.89325 1.66688 -1.6931e-22) (-4.92264 1.54999 -2.71556e-21) (-4.95039 1.43288 0) (-4.9765 1.31557 1.50767e-22) (-5.00098 1.19804 -2.85358e-22) (-5.02384 1.08031 0) (-5.04508 0.96236 0) (-5.06471 0.844204 2.8366e-21) (-5.08274 0.725836 0) (-5.09917 0.607251 0) (-5.11401 0.488447 0) (-5.12727 0.36942 -1.48145e-21) (-5.13894 0.250164 1.05917e-22) (-5.14905 0.130676 -8.4362e-22) (-5.1576 0.0109478 0) (-5.1646 -0.109027 2.15949e-22) (-4.47547 3.59647 -2.68029e-22) (-4.54883 3.46351 -2.41013e-22) (-4.60526 3.34215 5.02655e-22) (-4.6652 3.21926 9.11332e-22) (-4.72182 3.09604 -9.01979e-22) (-4.77654 2.97233 9.86384e-21) (-4.82907 2.84819 0) (-4.87952 2.72362 8.72656e-21) (-4.92791 2.59863 -7.13474e-22) (-4.97426 2.47324 -1.42539e-20) (-5.01859 2.34745 0) (-5.06092 2.22126 -1.40609e-20) (-5.10125 2.09471 0) (-5.13958 1.96781 7.27606e-21) (-5.17588 1.8406 -7.13118e-21) (-5.21017 1.71309 3.61312e-21) (-5.24245 1.5853 -6.43166e-24) (-5.27273 1.45722 -6.80738e-21) (-5.30103 1.32887 6.74557e-21) (-5.32736 1.20025 -5.49427e-22) (-5.35172 1.07137 6.14968e-21) (-5.37412 0.942241 -8.48443e-21) (-5.39458 0.812861 -3.6443e-21) (-5.41311 0.683238 -2.82517e-22) (-5.42971 0.553377 3.43334e-21) (-5.44439 0.423282 1.26681e-21) (-5.45718 0.292956 2.92904e-22) (-5.46807 0.162398 -8.20774e-22) (-5.47708 0.0316093 7.95731e-23) (-5.48424 -0.0994149 -3.06931e-22) (-4.63622 3.92111 0) (-4.723 3.77821 0) (-4.78863 3.64912 -3.02879e-20) (-4.8596 3.51713 0) (-4.92659 3.38438 0) (-4.99157 3.2508 0) (-5.05392 3.11658 -2.6262e-20) (-5.11375 2.98177 0) (-5.17104 2.84641 -1.25061e-21) (-5.22583 2.71054 1.70345e-20) (-5.27814 2.57418 -1.18122e-21) (-5.32796 2.43737 1.71597e-20) (-5.37525 2.30013 2.1237e-20) (-5.42002 2.16244 -5.93935e-21) (-5.46231 2.02429 5.79548e-21) (-5.5022 1.88567 0) (-5.5397 1.74661 1.05388e-21) (-5.57483 1.60713 5.53461e-21) (-5.60756 1.46727 2.77918e-21) (-5.63791 1.32704 -9.25876e-21) (-5.66589 1.18646 -1.67429e-20) (-5.69151 1.04556 -3.77645e-21) (-5.71477 0.904358 3.25766e-21) (-5.73569 0.762882 -4.64239e-21) (-5.75427 0.621147 -3.83966e-21) (-5.77053 0.479167 0) (-5.78449 0.336952 2.70836e-22) (-5.79616 0.194511 4.1619e-21) (-5.80557 0.0518531 0) (-5.81273 -0.091017 -6.9449e-22) (-4.78464 4.25132 3.03677e-22) (-4.88941 4.09667 -3.03645e-22) (-4.96829 3.95987 7.42568e-20) (-5.05283 3.81995 0) (-5.13097 3.67933 0) (-5.20629 3.53754 0) (-5.27824 3.39473 2.77368e-20) (-5.34728 3.25093 0) (-5.41341 3.10623 0) (-5.47668 2.96068 1.84356e-21) (-5.53706 2.81436 3.03618e-20) (-5.59464 2.66719 3.54985e-21) (-5.64962 2.51897 -5.63927e-20) (-5.70205 2.36959 -1.71834e-21) (-5.75172 2.2195 1.67723e-21) (-5.79853 2.06886 -1.66748e-21) (-5.8424 1.91774 0) (-5.88335 1.76613 0) (-5.92143 1.61402 4.38111e-21) (-5.95666 1.46141 1.08395e-20) (-5.98906 1.30834 1.08104e-20) (-6.01858 1.15488 1.08068e-20) (-6.04525 1.00105 0) (-6.0691 0.846891 4.6293e-21) (-6.09015 0.69241 1.62015e-21) (-6.10843 0.537634 -8.9051e-21) (-6.12393 0.382591 4.09588e-22) (-6.13669 0.227308 -3.03943e-21) (-6.14673 0.0718118 2.09651e-22) (-6.15406 -0.0838773 7.31012e-22) (-4.91833 4.60243 -5.93857e-20) (-5.04062 4.43559 7.96284e-22) (-5.12871 4.28983 -4.69626e-20) (-5.22591 4.14002 5.74896e-20) (-5.31678 3.98959 -1.48104e-21) (-5.40519 3.83781 5.16349e-20) (-5.48978 3.68477 2.76566e-21) (-5.57096 3.53044 4.91786e-20) (-5.64863 3.3749 -4.81855e-20) (-5.7229 3.21821 4.71435e-20) (-5.79396 3.06047 -8.47018e-20) (-5.86224 2.9018 4.79933e-20) (-5.92766 2.74244 3.20679e-20) (-5.98903 2.58262 2.41937e-21) (-6.04613 2.42189 -2.40386e-21) (-6.09972 2.26022 0) (-6.1501 2.09754 0) (-6.19745 1.93375 2.12145e-20) (-6.24168 1.76901 -1.60868e-20) (-6.28259 1.60364 1.14622e-21) (-6.32012 1.43767 -2.2851e-21) (-6.35429 1.27104 -1.86159e-20) (-6.38515 1.1038 -2.09011e-20) (-6.41274 0.936036 -1.14076e-21) (-6.43704 0.767838 0) (-6.45804 0.599277 8.08592e-21) (-6.47574 0.430409 0) (-6.49017 0.261278 5.65218e-21) (-6.50134 0.0919257 -2.9487e-22) (-6.50929 -0.0776151 0) (-5.02542 4.97666 1.38793e-19) (-5.16991 4.80077 0) (-5.27221 4.64717 0) (-5.38613 4.4873 1.31054e-20) (-5.49169 4.32622 0) (-5.5945 4.16338 -1.21726e-19) (-5.69279 3.99905 0) (-5.78713 3.83324 -5.19185e-20) (-5.87737 3.66599 -8.74361e-21) (-5.96359 3.49734 -5.32146e-20) (-6.04573 3.32733 4.87967e-20) (-6.12354 3.15612 -4.79508e-20) (-6.1969 2.98411 0) (-6.26673 2.81149 -3.23037e-21) (-6.33347 2.6378 3.20912e-21) (-6.39669 2.46303 0) (-6.45645 2.28728 0) (-6.51235 2.11079 -2.07755e-20) (-6.56378 1.93356 -3.10589e-21) (-6.6111 1.75514 -8.47028e-25) (-6.65497 1.57525 1.54012e-21) (-6.69521 1.39401 2.19938e-20) (-6.73144 1.21218 2.20005e-20) (-6.76365 1.02993 0) (-6.79187 0.847304 -1.38768e-20) (-6.81619 0.664303 -7.79652e-22) (-6.83666 0.480943 7.78405e-22) (-6.85332 0.297259 -5.24076e-21) (-6.8662 0.113293 -5.94563e-22) (-6.87533 -0.0709069 1.99435e-22) (-5.12257 5.35597 -8.03029e-20) (-5.29522 5.16526 0) (-5.41429 5.00213 0) (-5.54521 4.83299 -7.45484e-20) (-5.6652 4.66276 0) (-5.78174 4.49062 7.09174e-20) (-5.89302 4.31669 0) (-5.99989 4.14098 -8.1285e-20) (-6.10225 3.96349 6.64411e-20) (-6.20026 3.78424 -7.84682e-20) (-6.29389 3.60324 7.72452e-20) (-6.38307 3.42049 0) (-6.46783 3.2359 0) (-6.54843 3.04945 0) (-6.6248 2.86157 -7.34528e-20) (-6.69675 2.67238 2.06341e-21) (-6.764 2.48209 -4.09804e-21) (-6.82675 2.29092 -3.5854e-20) (-6.88593 2.09883 2.0241e-21) (-6.94186 1.90572 0) (-6.99367 1.71211 3.74744e-20) (-7.03986 1.51826 -2.00859e-21) (-7.08055 1.32355 2.01049e-21) (-7.11682 1.12789 -9.98691e-22) (-7.14887 0.931163 1.35931e-20) (-7.17675 0.733507 0) (-7.20037 0.535086 0) (-7.21968 0.336046 0) (-7.23468 0.136526 -2.58234e-22) (-7.24538 -0.0633363 -2.03228e-21) (-5.18704 5.80921 0) (-5.38788 5.59394 0) (-5.52632 5.41297 -1.58608e-21) (-5.6747 5.23008 1.56601e-21) (-5.81138 5.04693 -3.02968e-21) (-5.94383 4.86241 2.99502e-21) (-6.07039 4.67611 1.03449e-19) (-6.19196 4.48792 -1.65321e-20) (-6.30845 4.29775 0) (-6.41999 4.1056 -1.61563e-20) (-6.52659 3.91151 -8.0769e-20) (-6.62821 3.71548 -9.5448e-20) (-6.72491 3.51753 0) (-6.81681 3.31767 2.6271e-21) (-6.9039 3.11603 7.41752e-20) (-6.98612 2.91269 0) (-7.06337 2.7077 4.28084e-20) (-7.1357 2.50099 -7.59408e-21) (-7.20306 2.29268 4.73565e-20) (-7.26486 2.08333 0) (-7.32102 1.87342 9.93062e-21) (-7.3727 1.66292 -4.94239e-20) (-7.42034 1.45079 5.03274e-21) (-7.46342 1.2372 -2.51499e-21) (-7.50148 1.023 2.34993e-20) (-7.53426 0.808008 8.03792e-24) (-7.56183 0.59228 -2.36438e-20) (-7.58421 0.375907 0) (-7.60145 0.159015 5.65179e-21) (-7.61357 -0.0582536 2.39242e-21) (0.412964 -0.0336381 2.16867e-23) (0.422237 -0.0343587 1.38559e-21) (0.431703 -0.035088 -1.47143e-21) (0.44136 -0.0358266 -8.63837e-23) (0.451207 -0.0365748 -1.72428e-22) (0.461245 -0.0373328 -5.50208e-21) (0.471472 -0.0381009 5.49388e-21) (0.481887 -0.0388792 3.42252e-22) (0.492489 -0.0396678 0) (0.503277 -0.0404667 -3.40052e-22) (0.514249 -0.0412759 0) (0.525405 -0.0420952 -3.37497e-22) (0.536743 -0.0429246 0) (0.54826 -0.0437637 3.34602e-22) (0.559956 -0.0446123 0) (0.571829 -0.0454701 -1.05978e-20) (0.583876 -0.0463368 1.53073e-23) (0.596095 -0.047212 1.05009e-20) (0.608485 -0.0480954 0) (0.621042 -0.0489866 1.03636e-20) (0.633765 -0.0498852 -9.67243e-21) (0.646652 -0.050791 6.4002e-22) (0.659699 -0.0517038 6.35785e-22) (0.672906 -0.0526239 0) (0.686268 -0.0535516 0) (0.699786 -0.0544879 0) (0.713456 -0.0554347 -6.17798e-22) (0.727274 -0.0563953 3.0636e-21) (0.741233 -0.0573772 -1.22065e-21) (0.75537 -0.058394 -1.85452e-21) (0.340473 -0.0939948 6.60332e-22) (0.348545 -0.0961527 7.27229e-22) (0.356792 -0.0983385 -1.54612e-21) (0.365213 -0.100553 9.07547e-23) (0.373805 -0.102798 5.43643e-22) (0.382568 -0.105075 0) (0.391499 -0.107382 -3.60878e-22) (0.400598 -0.109722 -1.07985e-21) (0.40986 -0.112094 0) (0.419286 -0.1145 3.57879e-22) (0.428872 -0.116938 0) (0.438617 -0.119409 3.55516e-22) (0.448517 -0.121913 0) (0.45857 -0.12445 -3.52847e-22) (0.468775 -0.12702 7.02643e-22) (0.479127 -0.129623 -1.39915e-21) (0.489625 -0.132258 0) (0.500266 -0.134925 -1.10826e-20) (0.511048 -0.137624 1.10447e-20) (0.521967 -0.140356 0) (0.533021 -0.14312 6.81855e-22) (0.544208 -0.145917 1.15275e-20) (0.555526 -0.148748 -1.14808e-20) (0.566972 -0.151614 0) (0.578544 -0.154516 0) (0.590244 -0.157457 0) (0.60207 -0.160441 7.2332e-21) (0.614001 -0.163473 -5.88885e-21) (0.626002 -0.166565 0) (0.63823 -0.169739 1.98193e-21) (0.206343 -0.139911 4.78942e-23) (0.212532 -0.143678 -1.53056e-21) (0.218878 -0.147496 1.7212e-21) (0.225378 -0.151366 0) (0.232032 -0.155288 2.66632e-21) (0.238835 -0.159264 -3.8057e-21) (0.245786 -0.163293 3.79593e-22) (0.252883 -0.167378 6.81414e-21) (0.260121 -0.171517 -5.29339e-21) (0.2675 -0.175711 0) (0.275015 -0.17996 1.50254e-21) (0.282664 -0.184264 -7.48758e-21) (0.290444 -0.188623 5.97839e-21) (0.298352 -0.193037 1.18992e-20) (0.306384 -0.197506 -1.2615e-20) (0.314539 -0.202029 1.47772e-21) (0.322813 -0.206608 1.17634e-20) (0.331204 -0.211241 -1.1733e-20) (0.339708 -0.21593 1.45795e-21) (0.348324 -0.220676 1.45127e-21) (0.35705 -0.225479 -1.44623e-21) (0.365882 -0.230341 -1.43926e-21) (0.374819 -0.235264 0) (0.383861 -0.240253 2.84477e-21) (0.393005 -0.245311 8.48941e-21) (0.402257 -0.250443 -1.13781e-23) (0.411616 -0.255655 -7.00995e-21) (0.421033 -0.260957 -2.78076e-21) (0.430428 -0.26637 -1.38275e-21) (0.440173 -0.271927 4.08921e-25) (0.0249077 -0.171043 8.05537e-22) (0.0292096 -0.176757 1.00499e-21) (0.0336611 -0.182542 -1.60885e-21) (0.0382597 -0.188399 2.80843e-21) (0.0430027 -0.194329 -2.40696e-21) (0.0478873 -0.200334 5.57226e-25) (0.0529106 -0.206412 0) (0.0580697 -0.212566 -5.5754e-21) (0.0633617 -0.218795 5.57028e-21) (0.0687837 -0.225099 -1.58516e-21) (0.0743326 -0.23148 4.74266e-21) (0.0800056 -0.237936 -3.16204e-21) (0.0857999 -0.244469 1.57192e-21) (0.0917125 -0.251079 -6.27089e-21) (0.0977408 -0.257766 6.26066e-21) (0.103882 -0.264531 0) (0.110134 -0.271375 1.24157e-20) (0.116494 -0.278299 -2.14837e-23) (0.12296 -0.285305 -2.62109e-20) (0.12953 -0.292395 1.38256e-20) (0.136202 -0.299571 0) (0.142974 -0.306837 -3.04607e-21) (0.149844 -0.314197 6.07125e-21) (0.15681 -0.321656 3.00929e-21) (0.163872 -0.329222 -6.02692e-21) (0.171038 -0.336902 -5.97452e-21) (0.178304 -0.344705 5.95838e-21) (0.185578 -0.352641 2.96498e-21) (0.192714 -0.360739 0) (0.200371 -0.369047 -3.00745e-21) (-0.187579 -0.190835 0) (-0.184722 -0.198952 -2.11555e-22) (-0.181712 -0.207156 -1.68861e-21) (-0.178552 -0.215449 1.2678e-21) (-0.175244 -0.223831 -1.72721e-24) (-0.171792 -0.232303 4.2026e-21) (-0.168198 -0.240867 -1.00697e-20) (-0.164465 -0.249521 -8.29011e-22) (-0.160597 -0.258269 6.69251e-21) (-0.156595 -0.267109 -3.33339e-21) (-0.152463 -0.276043 8.32352e-21) (-0.148204 -0.285071 -1.66196e-21) (-0.143821 -0.294194 -3.30998e-21) (-0.139316 -0.303413 0) (-0.134691 -0.31273 3.28527e-21) (-0.129951 -0.322144 0) (-0.125097 -0.331657 0) (-0.120132 -0.341272 -6.52008e-21) (-0.115059 -0.350988 6.51107e-21) (-0.10988 -0.360809 -1.29526e-20) (-0.104598 -0.370737 3.23215e-21) (-0.0992167 -0.380774 3.21822e-21) (-0.0937384 -0.390923 0) (-0.0881679 -0.401189 0) (-0.0825068 -0.411574 -3.18684e-21) (-0.0767441 -0.422085 0) (-0.0708811 -0.432722 6.28727e-21) (-0.0650568 -0.443493 -3.14277e-21) (-0.0595264 -0.454421 -3.10855e-21) (-0.0533743 -0.465544 3.21918e-21) (-0.417276 -0.203557 0) (-0.415354 -0.214523 -4.42593e-22) (-0.413273 -0.225586 4.41941e-22) (-0.411037 -0.236748 8.86206e-22) (-0.408649 -0.248009 -3.87048e-24) (-0.40611 -0.25937 -1.75888e-21) (-0.403426 -0.270834 -3.51955e-21) (-0.400597 -0.2824 -3.50734e-21) (-0.397629 -0.29407 7.02311e-21) (-0.394523 -0.305845 -1.75404e-21) (-0.391284 -0.317726 6.9716e-21) (-0.387914 -0.329714 -6.978e-21) (-0.384417 -0.341809 1.74262e-21) (-0.380796 -0.354013 6.9311e-21) (-0.377055 -0.366326 -1.03952e-20) (-0.373197 -0.378751 3.43526e-21) (-0.369226 -0.391287 0) (-0.365146 -0.403936 6.85449e-21) (-0.360959 -0.416699 -6.84932e-21) (-0.356671 -0.429577 -3.39151e-21) (-0.352284 -0.442571 3.39641e-21) (-0.347803 -0.455682 6.76753e-21) (-0.343233 -0.468911 -1.01183e-20) (-0.338581 -0.482259 0) (-0.333844 -0.495727 0) (-0.329006 -0.509315 0) (-0.32408 -0.52302 -9.95101e-21) (-0.319283 -0.53684 0) (-0.314895 -0.550801 9.86643e-21) (-0.30951 -0.564933 6.75019e-21) (-0.655844 -0.21229 -4.6481e-22) (-0.65451 -0.22649 9.30444e-22) (-0.653016 -0.240791 -2.31869e-21) (-0.651363 -0.255195 1.85363e-21) (-0.649556 -0.269704 -9.27174e-22) (-0.647596 -0.284318 1.453e-23) (-0.645489 -0.29904 0) (-0.643237 -0.31387 0) (-0.640843 -0.328809 0) (-0.638313 -0.34386 -3.67709e-21) (-0.635648 -0.359023 1.85004e-21) (-0.632855 -0.374298 0) (-0.629936 -0.389688 -7.27169e-21) (-0.626896 -0.405193 7.27065e-21) (-0.62374 -0.420814 0) (-0.620472 -0.436552 -3.99627e-23) (-0.617096 -0.452407 -1.07772e-20) (-0.613617 -0.468382 7.19751e-21) (-0.610041 -0.484477 -3.55725e-21) (-0.606372 -0.500692 3.54612e-21) (-0.602615 -0.517028 0) (-0.598774 -0.533486 0) (-0.594858 -0.550066 -3.46028e-21) (-0.590873 -0.566769 0) (-0.586817 -0.583597 0) (-0.582661 -0.600547 0) (-0.578424 -0.617615 3.54687e-21) (-0.574403 -0.634799 3.48776e-21) (-0.570964 -0.652129 -6.98499e-21) (-0.566309 -0.669663 -7.22016e-21) (-0.899669 -0.218637 0) (-0.898768 -0.236402 -9.68223e-22) (-0.897706 -0.254271 9.68257e-22) (-0.896486 -0.272244 1.92978e-21) (-0.895111 -0.290326 1.92266e-21) (-0.893584 -0.308515 -1.91917e-21) (-0.891909 -0.326816 1.90645e-21) (-0.89009 -0.345228 5.73275e-21) (-0.888132 -0.363753 -3.46035e-23) (-0.886037 -0.382393 -5.16625e-23) (-0.88381 -0.401148 3.83182e-21) (-0.881456 -0.42002 0) (-0.87898 -0.43901 7.57757e-21) (-0.876387 -0.458118 -3.82933e-21) (-0.873681 -0.477346 0) (-0.870869 -0.496694 -3.79092e-21) (-0.867955 -0.516163 1.12843e-20) (-0.864945 -0.535754 -2.30227e-23) (-0.861845 -0.555466 1.11342e-20) (-0.858661 -0.575301 -1.1219e-20) (-0.855398 -0.595259 0) (-0.852063 -0.61534 0) (-0.848665 -0.635544 7.52414e-21) (-0.845213 -0.655871 -1.46505e-20) (-0.841702 -0.676322 -7.24635e-21) (-0.838089 -0.696896 -3.65123e-21) (-0.834397 -0.717585 3.65386e-21) (-0.831036 -0.738383 5.34996e-21) (-0.828518 -0.759336 -5.3151e-21) (-0.824547 -0.78053 -7.38414e-21) (-1.14763 -0.223238 0) (-1.14713 -0.244878 0) (-1.14646 -0.266624 -2.0071e-21) (-1.14564 -0.28848 4.2389e-24) (-1.14466 -0.310446 2.00354e-21) (-1.14353 -0.332524 0) (-1.14225 -0.354718 -3.56055e-23) (-1.14082 -0.377028 -7.94445e-21) (-1.13926 -0.399456 -3.9509e-21) (-1.13756 -0.422002 -3.99189e-21) (-1.13573 -0.44467 0) (-1.13377 -0.467458 -7.83227e-21) (-1.13168 -0.490369 5.39476e-23) (-1.12948 -0.513403 3.87624e-21) (-1.12717 -0.536561 -7.83998e-21) (-1.12476 -0.559843 -3.85185e-21) (-1.12224 -0.583249 -7.68033e-21) (-1.11963 -0.606779 1.54068e-20) (-1.11693 -0.630434 -1.55808e-20) (-1.11415 -0.654213 0) (-1.1113 -0.678117 -7.5805e-21) (-1.10837 -0.702143 -7.65831e-21) (-1.10539 -0.726292 1.15912e-20) (-1.10237 -0.750563 1.15406e-20) (-1.09929 -0.774957 7.69657e-21) (-1.09609 -0.799471 7.44102e-21) (-1.09279 -0.82409 0) (-1.08997 -0.848807 -7.62515e-21) (-1.08835 -0.873686 7.59608e-21) (-1.08497 -0.898851 7.89243e-21) (-1.3994 -0.226323 0) (-1.3993 -0.252144 -1.03848e-21) (-1.39905 -0.278076 2.06235e-21) (-1.39863 -0.304123 0) (-1.39805 -0.330288 -2.03739e-21) (-1.39732 -0.356572 0) (-1.39643 -0.382978 -2.07724e-21) (-1.3954 -0.409509 6.16915e-21) (-1.39423 -0.436166 3.75987e-23) (-1.39291 -0.46295 -4.07577e-21) (-1.39145 -0.489863 8.14416e-21) (-1.38987 -0.516906 -4.01451e-21) (-1.38816 -0.54408 8.15709e-21) (-1.38632 -0.571384 3.97249e-21) (-1.38437 -0.598821 -7.91934e-21) (-1.38231 -0.626389 4.06872e-21) (-1.38015 -0.654088 1.23694e-22) (-1.37789 -0.681918 7.74714e-21) (-1.37553 -0.709879 0) (-1.37309 -0.73797 0) (-1.37057 -0.766188 2.77765e-22) (-1.36798 -0.794534 3.93133e-21) (-1.36532 -0.823004 -7.85601e-21) (-1.36263 -0.851599 3.92504e-21) (-1.35987 -0.880317 0) (-1.35695 -0.909155 -1.54958e-20) (-1.3539 -0.93809 -7.55401e-21) (-1.35149 -0.96711 0) (-1.35076 -0.996306 7.46355e-21) (-1.34788 -1.02585 0) (-1.65479 -0.228043 -7.96943e-22) (-1.65511 -0.25835 5.34127e-22) (-1.65526 -0.288777 -1.07786e-21) (-1.65525 -0.319328 2.11966e-21) (-1.65507 -0.350006 2.10434e-21) (-1.65472 -0.380814 -2.10818e-21) (-1.65422 -0.411755 -6.22863e-21) (-1.65356 -0.442832 4.27973e-21) (-1.65275 -0.474047 -1.24839e-20) (-1.65179 -0.505402 8.27815e-21) (-1.65069 -0.536899 -4.07981e-21) (-1.64945 -0.568539 -4.06554e-21) (-1.64807 -0.600322 4.12905e-21) (-1.64655 -0.63225 -1.22837e-20) (-1.64492 -0.664323 3.00599e-22) (-1.64316 -0.696541 -4.10833e-21) (-1.64128 -0.728903 -7.97643e-21) (-1.6393 -0.761409 -8.28694e-21) (-1.63721 -0.794057 -4.04261e-21) (-1.63503 -0.826846 4.05116e-21) (-1.63275 -0.859775 3.70858e-22) (-1.63039 -0.892841 -3.99425e-21) (-1.62796 -0.926041 2.69868e-23) (-1.62549 -0.959373 7.94741e-21) (-1.62293 -0.992839 3.70835e-21) (-1.62014 -1.02643 1.17758e-20) (-1.61715 -1.06012 1.00151e-20) (-1.61504 -1.09388 3.89781e-21) (-1.61524 -1.12784 -9.89332e-21) (-1.61275 -1.16225 7.79443e-21) (-1.91377 -0.228637 2.7679e-22) (-1.91448 -0.263746 1.06203e-21) (-1.91501 -0.298984 0) (-1.91535 -0.334356 2.15486e-21) (-1.91552 -0.369865 -4.34598e-21) (-1.91551 -0.405517 0) (-1.91533 -0.441315 8.52911e-21) (-1.91498 -0.477262 8.59474e-21) (-1.91446 -0.513362 4.21375e-21) (-1.91378 -0.549616 -9.28788e-23) (-1.91294 -0.586029 7.37105e-23) (-1.91195 -0.6226 4.28811e-21) (-1.9108 -0.659332 8.14552e-21) (-1.90951 -0.696226 8.51913e-21) (-1.90808 -0.733283 4.34904e-21) (-1.9065 -0.770502 2.60996e-23) (-1.9048 -0.807884 4.57076e-21) (-1.90297 -0.845428 -7.9476e-21) (-1.90102 -0.883132 7.90428e-21) (-1.89896 -0.920996 0) (-1.89678 -0.959017 8.29672e-21) (-1.89449 -0.997193 7.76596e-21) (-1.89213 -1.03552 -7.71673e-21) (-1.8897 -1.074 -7.6657e-21) (-1.88717 -1.11262 3.40319e-21) (-1.88431 -1.1514 -1.40243e-20) (-1.88114 -1.19027 1.96575e-21) (-1.87915 -1.22921 0) (-1.88028 -1.2684 0) (-1.87806 -1.30816 -8.32152e-21) (-2.17682 -0.228486 2.74104e-22) (-2.17783 -0.268736 -8.46354e-22) (-2.17865 -0.309122 -1.60605e-21) (-2.17926 -0.349651 0) (-2.17967 -0.390327 0) (-2.17988 -0.431155 -2.09238e-21) (-2.17989 -0.472142 -2.25561e-21) (-2.17971 -0.513291 2.00139e-21) (-2.17935 -0.554605 -4.24371e-21) (-2.17879 -0.59609 -4.37819e-21) (-2.17805 -0.637748 8.31989e-21) (-2.17714 -0.679581 -4.06193e-21) (-2.17605 -0.721593 -2.08414e-20) (-2.17478 -0.763784 8.32518e-21) (-2.17335 -0.806157 -4.15691e-21) (-2.17176 -0.848712 0) (-2.17001 -0.89145 8.44184e-21) (-2.16811 -0.93437 1.2457e-20) (-2.16606 -0.977473 -8.39564e-21) (-2.16387 -1.02076 -4.04368e-21) (-2.16154 -1.06422 -3.97928e-21) (-2.15907 -1.10786 -8.18424e-21) (-2.15649 -1.15167 1.21442e-20) (-2.15384 -1.19565 1.20232e-20) (-2.15105 -1.23982 -4.59402e-21) (-2.14779 -1.28415 1.9179e-21) (-2.14408 -1.32859 -2.58967e-23) (-2.14191 -1.37309 -1.90929e-21) (-2.14392 -1.41791 -6.11535e-21) (-2.14172 -1.46348 -9.81949e-22) (-2.44506 -0.228068 0) (-2.4463 -0.273847 -5.4371e-22) (-2.44728 -0.319766 2.74249e-21) (-2.44802 -0.365833 -3.16505e-21) (-2.44853 -0.412055 -2.07101e-21) (-2.4488 -0.458436 6.32374e-21) (-2.44883 -0.504983 4.0959e-21) (-2.44864 -0.551702 -6.48107e-21) (-2.44821 -0.598598 4.51705e-21) (-2.44757 -0.645674 -1.06074e-20) (-2.4467 -0.692935 -4.11691e-21) (-2.44561 -0.740385 4.28443e-21) (-2.44431 -0.788028 1.26226e-20) (-2.44281 -0.835865 -8.18115e-21) (-2.44109 -0.883899 8.12651e-21) (-2.43918 -0.932132 3.633e-21) (-2.43707 -0.980565 0) (-2.43477 -1.0292 -3.9536e-21) (-2.43228 -1.07803 1.14473e-20) (-2.42961 -1.12707 0) (-2.42675 -1.1763 -7.32855e-21) (-2.42371 -1.22574 -3.81747e-21) (-2.42053 -1.27536 -3.33115e-21) (-2.41725 -1.32519 -3.74147e-21) (-2.41379 -1.37522 -4.08505e-21) (-2.40966 -1.42545 6.89943e-21) (-2.40488 -1.47578 0) (-2.40211 -1.52618 -6.68519e-21) (-2.40483 -1.57697 7.4941e-21) (-2.40225 -1.62873 -1.36042e-20) (-2.72025 -0.227812 2.67935e-22) (-2.72161 -0.279579 -2.67987e-22) (-2.72266 -0.331488 1.06e-21) (-2.72342 -0.383547 1.13253e-21) (-2.72388 -0.435762 2.18178e-21) (-2.72405 -0.488141 -3.60529e-22) (-2.72392 -0.540689 -4.316e-21) (-2.72351 -0.593414 -1.8665e-21) (-2.72281 -0.646319 -3.72089e-21) (-2.72183 -0.699412 2.04324e-21) (-2.72057 -0.752696 2.20268e-21) (-2.71904 -0.806177 1.35743e-20) (-2.71723 -0.859857 -3.99491e-21) (-2.71516 -0.913741 3.91665e-21) (-2.71283 -0.967832 -3.92791e-21) (-2.71024 -1.02213 -8.11894e-21) (-2.7074 -1.07665 3.80383e-21) (-2.7043 -1.13137 -7.14398e-21) (-2.70096 -1.18631 -1.54074e-20) (-2.69737 -1.24147 3.73607e-21) (-2.69354 -1.29685 7.75512e-21) (-2.68946 -1.35243 -3.58475e-21) (-2.68518 -1.40824 9.42328e-21) (-2.68079 -1.46425 1.7764e-21) (-2.67613 -1.52051 0) (-2.67056 -1.57699 -1.35573e-20) (-2.66407 -1.63358 0) (-2.66014 -1.69022 1.90085e-20) (-2.66334 -1.74733 3.9608e-22) (-2.65985 -1.80567 1.40851e-20) (-3.00408 -0.227978 -2.44075e-22) (-3.00555 -0.286275 -1.48132e-21) (-3.00663 -0.344715 5.1236e-22) (-3.00733 -0.403305 -1.90786e-21) (-3.00765 -0.462053 -1.00183e-21) (-3.0076 -0.520966 -3.19015e-21) (-3.00717 -0.580049 0) (-3.00638 -0.63931 7.80829e-21) (-3.00521 -0.698755 5.80227e-21) (-3.00368 -0.758388 -1.65809e-21) (-3.0018 -0.818215 -1.89621e-21) (-2.99956 -0.878242 9.3084e-22) (-2.99696 -0.938473 0) (-2.99402 -0.998912 -6.83169e-21) (-2.99074 -1.05956 0) (-2.98712 -1.12043 3.56914e-21) (-2.98316 -1.18152 2.93386e-21) (-2.97887 -1.24282 -2.37575e-21) (-2.97425 -1.30435 3.48064e-21) (-2.96931 -1.36611 -9.51132e-21) (-2.96404 -1.4281 3.37018e-21) (-2.95843 -1.49031 -5.89074e-21) (-2.95256 -1.55274 1.58399e-21) (-2.94653 -1.61541 -1.59267e-21) (-2.94017 -1.67834 -1.51623e-21) (-2.93258 -1.74152 8.14071e-21) (-2.92369 -1.8048 0) (-2.91804 -1.86808 -1.33365e-20) (-2.9215 -1.93193 1.03126e-21) (-2.91656 -1.99732 -3.56271e-22) (-3.29753 -0.228558 3.23256e-23) (-3.29918 -0.293995 5.41975e-22) (-3.30033 -0.359578 4.79168e-22) (-3.30099 -0.425314 2.0099e-21) (-3.30117 -0.491212 -9.30734e-22) (-3.30087 -0.557275 9.31843e-22) (-3.30008 -0.623512 3.36466e-21) (-3.29881 -0.689927 -3.87453e-21) (-3.29707 -0.756525 -8.8816e-21) (-3.29486 -0.823313 5.57255e-21) (-3.29219 -0.890295 0) (-3.28905 -0.957476 -7.4046e-21) (-3.28545 -1.02486 -7.78368e-21) (-3.2814 -1.09245 1.65234e-20) (-3.27689 -1.16025 -1.65265e-21) (-3.27195 -1.22827 0) (-3.26656 -1.29651 -6.88213e-21) (-3.26073 -1.36496 1.37248e-20) (-3.25447 -1.43364 -1.52747e-21) (-3.24779 -1.50255 1.16377e-20) (-3.24065 -1.5717 4.96059e-21) (-3.23306 -1.64107 1.10197e-20) (-3.22511 -1.71067 0) (-3.21697 -1.78052 7.52921e-21) (-3.20838 -1.85065 1.29133e-21) (-3.19818 -1.92107 0) (-3.1862 -1.99158 7.05156e-21) (-3.17821 -2.06207 4.26652e-23) (-3.18174 -2.13325 5.35986e-22) (-3.17486 -2.20638 6.28824e-21) (-3.60016 -0.22931 4.34327e-22) (-3.60213 -0.302529 4.30778e-22) (-3.60346 -0.375905 6.82483e-22) (-3.60418 -0.449445 4.25932e-22) (-3.60428 -0.523154 8.2884e-22) (-3.60376 -0.597037 -8.29903e-22) (-3.60262 -0.671099 -3.5456e-21) (-3.60087 -0.745346 0) (-3.59851 -0.81978 3.44765e-21) (-3.59554 -0.894407 -6.93229e-21) (-3.59197 -0.96923 6.80529e-21) (-3.58779 -1.04425 0) (-3.58302 -1.11948 1.44885e-21) (-3.57766 -1.19492 -1.11598e-20) (-3.57171 -1.27057 -4.68315e-21) (-3.56517 -1.34643 1.31491e-21) (-3.55805 -1.42251 -1.32055e-21) (-3.55035 -1.49882 -1.59258e-21) (-3.54209 -1.57535 3.96122e-21) (-3.53325 -1.65211 -9.17883e-21) (-3.52382 -1.72912 -1.70104e-21) (-3.51379 -1.80636 -6.1013e-21) (-3.50327 -1.88384 2.02738e-21) (-3.4925 -1.96159 -1.59928e-20) (-3.48117 -2.03966 4.28321e-21) (-3.46776 -2.11804 1.28021e-21) (-3.452 -2.1965 -1.26398e-20) (-3.44116 -2.27489 3.40328e-21) (-3.44464 -2.35413 0) (-3.43541 -2.43574 -6.69642e-21) (-3.90999 -0.22988 -2.08098e-22) (-3.91244 -0.311511 0) (-3.9141 -0.393319 -2.85959e-21) (-3.91499 -0.475309 0) (-3.9151 -0.557485 -2.36499e-21) (-3.91443 -0.639851 -6.75428e-22) (-3.91299 -0.72241 1.33649e-21) (-3.91078 -0.805166 -1.30483e-21) (-3.9078 -0.888121 6.45037e-22) (-3.90404 -0.971278 5.70128e-21) (-3.89953 -1.05464 -5.56418e-21) (-3.89424 -1.13821 0) (-3.8882 -1.22199 5.26851e-21) (-3.88141 -1.30599 2.81671e-21) (-3.87386 -1.3902 3.88648e-21) (-3.86557 -1.47463 0) (-3.85653 -1.55928 2.7163e-21) (-3.84675 -1.64416 -6.0235e-21) (-3.83625 -1.72927 -6.4883e-21) (-3.82502 -1.81461 3.17428e-21) (-3.81303 -1.90019 -3.07723e-21) (-3.80027 -1.98601 -1.28061e-21) (-3.7869 -2.07207 6.09279e-22) (-3.77324 -2.15838 6.00382e-21) (-3.75891 -2.24503 -6.43593e-21) (-3.74194 -2.332 0) (-3.72196 -2.41897 4.56694e-21) (-3.70812 -2.50572 -3.49617e-21) (-3.71187 -2.59336 -2.92605e-24) (-3.69868 -2.68391 3.14083e-24) (-4.22401 -0.229994 0) (-4.22703 -0.320609 -4.3907e-22) (-4.2291 -0.411428 1.30439e-21) (-4.23021 -0.502454 0) (-4.23037 -0.59369 2.49155e-21) (-4.22957 -0.685137 0) (-4.22781 -0.776797 9.39123e-22) (-4.2251 -0.86867 2.08625e-23) (-4.22143 -0.96076 4.52474e-22) (-4.21681 -1.05306 0) (-4.21124 -1.14559 0) (-4.20472 -1.23833 0) (-4.19724 -1.33128 0) (-4.18882 -1.42446 2.70856e-21) (-4.17946 -1.51786 -1.16957e-21) (-4.16916 -1.61147 1.48453e-21) (-4.15792 -1.70531 -2.86762e-21) (-4.14575 -1.79937 2.98593e-21) (-4.13266 -1.89365 2.00437e-21) (-4.11866 -1.98815 -4.68539e-22) (-4.1037 -2.08289 2.17245e-22) (-4.08775 -2.17784 -5.47964e-23) (-4.07101 -2.273 5.51774e-23) (-4.0539 -2.3684 -1.26312e-22) (-4.03597 -2.46412 5.41259e-21) (-4.01475 -2.56012 1.5429e-22) (-3.98962 -2.65603 -4.56158e-22) (-3.97169 -2.75166 0) (-3.97535 -2.84826 0) (-3.95919 -2.9482 -1.00927e-20) (-4.53932 -0.229649 4.34394e-23) (-4.54288 -0.329754 5.01846e-22) (-4.54528 -0.430091 -8.28693e-23) (-4.54653 -0.530661 0) (-4.54663 -0.631464 5.49765e-22) (-4.54557 -0.732501 4.61418e-22) (-4.54336 -0.83377 -1.8532e-21) (-4.53998 -0.935272 -2.66685e-22) (-4.53544 -1.037 -3.19808e-22) (-4.52974 -1.13897 -6.11605e-23) (-4.52287 -1.24116 2.91537e-23) (-4.51485 -1.34357 -2.75643e-22) (-4.50566 -1.44621 7.97351e-22) (-4.4953 -1.54907 1.44184e-21) (-4.48379 -1.65214 -5.91783e-23) (-4.47112 -1.75543 -9.78741e-22) (-4.45728 -1.85894 0) (-4.4423 -1.96265 0) (-4.42617 -2.06657 -2.63208e-21) (-4.40891 -2.1707 2.669e-22) (-4.39045 -2.27503 0) (-4.37074 -2.37955 0) (-4.35005 -2.48425 0) (-4.32886 -2.58914 0) (-4.30664 -2.69431 -1.51714e-20) (-4.28039 -2.79975 -1.16474e-20) (-4.24945 -2.90506 1.32315e-20) (-4.22712 -3.01004 -9.78745e-22) (-4.22994 -3.11612 3.64232e-22) (-4.20961 -3.22584 -7.67043e-21) (-4.85439 -0.229185 0) (-4.85827 -0.339241 0) (-4.86077 -0.449548 -1.53885e-23) (-4.8619 -0.560106 3.17123e-22) (-4.86165 -0.670912 -1.27307e-21) (-4.86002 -0.781964 -4.93758e-22) (-4.857 -0.893259 3.8677e-22) (-4.8526 -1.0048 1.83797e-22) (-4.84681 -1.11657 -1.90289e-21) (-4.83963 -1.22857 2.5122e-21) (-4.83105 -1.34081 0) (-4.82108 -1.45327 3.39873e-21) (-4.80971 -1.56594 -4.7402e-22) (-4.79694 -1.67883 -6.24933e-22) (-4.78278 -1.79192 6.27828e-22) (-4.7672 -1.90521 0) (-4.75023 -2.0187 -5.93435e-21) (-4.73185 -2.13237 -9.70207e-23) (-4.71209 -2.24621 2.67748e-21) (-4.69094 -2.36023 1.11764e-21) (-4.66834 -2.47441 1.34313e-21) (-4.6442 -2.58875 1.42291e-20) (-4.61882 -2.70321 1.52284e-20) (-4.59281 -2.81779 1.80512e-20) (-4.5656 -2.9326 2.8855e-20) (-4.53368 -3.04767 1.23291e-20) (-4.49619 -3.16262 -1.33638e-20) (-4.4687 -3.27712 -6.18233e-22) (-4.47019 -3.39269 6.24658e-22) (-4.4452 -3.51206 1.95553e-20) (-5.17004 -0.229258 -2.26262e-22) (-5.17386 -0.349744 0) (-5.17605 -0.470482 9.20636e-22) (-5.17661 -0.591466 -2.38573e-22) (-5.17553 -0.712692 2.9617e-21) (-5.17282 -0.834156 0) (-5.16847 -0.955851 0) (-5.16248 -1.07777 0) (-5.15484 -1.19991 -3.09243e-21) (-5.14557 -1.32227 -2.75058e-21) (-5.13465 -1.44483 0) (-5.12207 -1.56759 -4.01187e-21) (-5.10785 -1.69054 6.33473e-22) (-5.09198 -1.81367 0) (-5.07444 -1.93697 8.61613e-21) (-5.05525 -2.06043 -7.83928e-22) (-5.03439 -2.18404 4.4172e-21) (-5.01187 -2.30778 8.99182e-22) (-4.98769 -2.43163 -1.0209e-21) (-4.96188 -2.55559 1.02781e-21) (-4.93435 -2.67965 0) (-4.90498 -2.80379 -1.5687e-20) (-4.87405 -2.92798 7.80429e-21) (-4.84236 -3.0522 -1.95688e-20) (-4.8094 -3.17654 9.59109e-21) (-4.77116 -3.30113 0) (-4.72631 -3.42557 -8.419e-22) (-4.69262 -3.5494 8.50626e-22) (-4.6917 -3.67402 0) (-4.66126 -3.8022 0) (-5.48952 -0.230678 1.53029e-22) (-5.49288 -0.362177 8.52443e-23) (-5.49427 -0.493899 -1.05274e-21) (-5.49372 -0.625834 3.83484e-22) (-5.49123 -0.757974 -2.72471e-21) (-5.48679 -0.890307 -3.77617e-21) (-5.48042 -1.02282 -4.18875e-22) (-5.47211 -1.15552 3.60466e-21) (-5.46187 -1.28837 1.61708e-20) (-5.44969 -1.42138 -9.78573e-21) (-5.43558 -1.55454 -1.05561e-21) (-5.41955 -1.68782 -9.57133e-21) (-5.40158 -1.82123 9.92917e-21) (-5.38168 -1.95473 -5.37954e-23) (-5.35984 -2.08833 -7.03275e-21) (-5.33608 -2.222 1.12994e-20) (-5.31037 -2.35573 1.36005e-21) (-5.28272 -2.48949 0) (-5.25315 -2.62327 2.89866e-20) (-5.22167 -2.75705 0) (-5.18821 -2.89082 3.35431e-20) (-5.15263 -3.02458 -1.75676e-21) (-5.11514 -3.1583 -2.60768e-20) (-5.07666 -3.29189 0) (-5.03702 -3.42544 -2.92611e-20) (-4.99173 -3.5591 -2.24244e-21) (-4.93858 -3.69255 2.26548e-21) (-4.89703 -3.82515 1.28339e-21) (-4.89171 -3.95804 -6.15033e-22) (-4.85456 -4.09368 -7.41962e-22) (-5.81763 -0.234094 7.08036e-22) (-5.82021 -0.377364 0) (-5.82044 -0.520804 -3.26772e-21) (-5.81832 -0.664395 3.09778e-22) (-5.81388 -0.808116 0) (-5.80711 -0.951948 3.73936e-21) (-5.79803 -1.09587 7.24861e-21) (-5.78665 -1.23987 -4.76026e-21) (-5.77298 -1.38392 4.05217e-21) (-5.75702 -1.52801 2.47102e-20) (-5.73878 -1.67212 1.64928e-20) (-5.71827 -1.81622 -5.80785e-21) (-5.6955 -1.96031 -1.34288e-20) (-5.67048 -2.10436 1.74756e-21) (-5.6432 -2.24836 0) (-5.61369 -2.39228 -1.52994e-20) (-5.58194 -2.53611 1.97269e-21) (-5.54795 -2.67983 -4.04508e-20) (-5.51176 -2.82342 -2.62118e-20) (-5.4734 -2.96686 -2.23922e-21) (-5.43285 -3.11013 -3.11425e-20) (-5.38995 -3.25324 -2.4429e-21) (-5.3448 -3.39614 0) (-5.29839 -3.53872 4.88452e-20) (-5.25088 -3.68093 0) (-5.19773 -3.8229 0) (-5.1357 -3.96451 0) (-5.08508 -4.1049 0) (-5.07364 -4.24422 0) (-5.0273 -4.3842 0) (-6.15865 -0.239739 -7.45268e-22) (-6.16045 -0.395746 2.244e-22) (-6.15941 -0.551857 2.88935e-21) (-6.15556 -0.708038 4.6844e-22) (-6.1489 -0.864251 7.352e-21) (-6.13944 -1.02046 1.94408e-21) (-6.12721 -1.17663 -7.90251e-21) (-6.11221 -1.33273 0) (-6.09445 -1.48872 -1.46927e-20) (-6.07396 -1.64457 -3.49915e-20) (-6.05075 -1.80024 -1.56731e-20) (-6.02484 -1.95571 -4.75424e-21) (-5.99624 -2.11094 0) (-5.96498 -2.26591 -2.22561e-20) (-5.93107 -2.42059 -2.58033e-21) (-5.89455 -2.57496 2.59521e-21) (-5.85544 -2.72899 -2.76768e-21) (-5.81375 -2.88266 4.03208e-20) (-5.76952 -3.03594 5.86684e-21) (-5.72282 -3.1888 -6.03808e-20) (-5.67367 -3.3412 3.1154e-21) (-5.62195 -3.49312 0) (-5.56769 -3.6445 0) (-5.51177 -3.79517 -5.1581e-20) (-5.45475 -3.94493 0) (-5.39255 -4.09383 0) (-5.32075 -4.24199 0) (-5.25801 -4.38837 -7.30494e-20) (-5.23483 -4.53165 -5.64715e-22) (-5.17791 -4.67345 6.15574e-22) (-6.51399 -0.247315 0) (-6.51534 -0.41713 -3.11473e-22) (-6.51331 -0.587002 -5.38744e-21) (-6.50792 -0.756873 5.7924e-21) (-6.49916 -0.926685 -9.24063e-21) (-6.48706 -1.09638 0) (-6.47163 -1.2659 -1.37282e-21) (-6.45287 -1.43519 2.49816e-20) (-6.43081 -1.60418 2.8409e-20) (-6.40546 -1.77284 1.79523e-20) (-6.37684 -1.9411 1.48079e-21) (-6.34497 -2.1089 2.20775e-20) (-6.30988 -2.2762 -2.81693e-20) (-6.27159 -2.44294 2.34424e-20) (-6.23013 -2.60907 0) (-6.18554 -2.77453 -3.49563e-21) (-6.13786 -2.93928 3.51789e-21) (-6.08713 -3.10325 -3.72352e-21) (-6.03339 -3.26639 -6.31465e-20) (-5.97673 -3.42862 1.22289e-19) (-5.91721 -3.58985 -1.04585e-22) (-5.85478 -3.75002 7.34919e-20) (-5.78939 -3.90905 -7.61673e-20) (-5.72171 -4.06674 4.45381e-21) (-5.65261 -4.22275 0) (-5.57895 -4.37701 -2.44755e-21) (-5.49521 -4.53002 -8.16761e-20) (-5.41632 -4.68116 7.33041e-20) (-5.37589 -4.82807 1.35136e-21) (-5.3072 -4.97167 0) (-6.88067 -0.255295 2.04084e-22) (-6.88212 -0.439805 -6.17729e-22) (-6.87961 -0.624348 6.40978e-21) (-6.87316 -0.80884 -5.242e-21) (-6.86276 -0.993203 -8.53472e-22) (-6.84844 -1.17736 1.5554e-20) (-6.8302 -1.36123 0) (-6.80806 -1.54474 -2.63179e-20) (-6.78201 -1.72781 -2.69004e-20) (-6.75209 -1.91037 1.9129e-21) (-6.71829 -2.09233 3.64835e-23) (-6.68064 -2.27362 -3.96921e-21) (-6.63915 -2.45414 3.16701e-20) (-6.59384 -2.63382 0) (-6.54474 -2.81256 0) (-6.49186 -2.99026 4.44392e-21) (-6.43524 -3.1668 7.46227e-20) (-6.37491 -3.34207 0) (-6.31091 -3.51595 7.04954e-20) (-6.24329 -3.68829 -7.27465e-20) (-6.17211 -3.85893 -9.352e-20) (-6.09738 -4.0277 1.85765e-20) (-6.01898 -4.19447 8.02164e-20) (-5.93725 -4.35909 0) (-5.85307 -4.52117 0) (-5.76465 -4.68055 0) (-5.66655 -4.83809 -1.41461e-20) (-5.56847 -4.99434 0) (-5.5034 -5.14647 0) (-5.41835 -5.29165 0) (-7.25171 -0.263403 2.57569e-21) (-7.25354 -0.463554 -2.63466e-22) (-7.25081 -0.663687 0) (-7.24354 -0.863713 0) (-7.23176 -1.06354 0) (-7.21547 -1.26308 -1.74875e-20) (-7.1947 -1.46224 -1.16225e-21) (-7.16944 -1.66093 2.29854e-21) (-7.13972 -1.85904 -2.37616e-21) (-7.10555 -2.05647 -3.97593e-20) (-7.06694 -2.25313 0) (-7.02391 -2.44889 2.52499e-21) (-6.97647 -2.64366 4.47863e-20) (-6.92463 -2.8373 -5.23523e-21) (-6.86841 -3.02968 2.65568e-21) (-6.80782 -3.22069 9.56829e-20) (-6.74286 -3.41016 -8.32847e-20) (-6.67355 -3.59795 0) (-6.59986 -3.78388 0) (-6.52179 -3.96778 -1.05631e-19) (-6.43931 -4.14945 2.01557e-19) (-6.35238 -4.3287 -9.59046e-20) (-6.26083 -4.50534 1.14418e-19) (-6.16459 -4.67922 0) (-6.06417 -4.84992 0) (-5.95895 -5.01699 0) (-5.84489 -5.18117 1.11525e-19) (-5.72654 -5.34338 0) (-5.6301 -5.49881 0) (-5.52031 -5.63841 0) (-7.62053 -0.275754 -2.41521e-21) (-7.6223 -0.493379 -5.78462e-21) (-7.61884 -0.711029 0) (-7.6102 -0.928603 2.22448e-20) (-7.59638 -1.146 -1.61382e-23) (-7.57738 -1.3631 -2.27955e-20) (-7.55321 -1.57979 -2.85205e-21) (-7.52388 -1.79595 5.75786e-21) (-7.4894 -2.01146 4.46128e-20) (-7.44979 -2.22619 9.82369e-20) (-7.40504 -2.44001 0) (-7.3552 -2.65279 -4.99432e-20) (-7.30026 -2.86438 7.37231e-21) (-7.24026 -3.07463 -5.8272e-20) (-7.17523 -3.2834 0) (-7.10518 -3.49052 -1.03284e-19) (-7.03015 -3.69581 -1.13706e-19) (-6.95018 -3.89911 0) (-6.86531 -4.10021 1.22402e-19) (-6.77556 -4.29891 1.10276e-19) (-6.681 -4.49495 1.49945e-20) (-6.58173 -4.68805 0) (-6.47779 -4.87784 1.50306e-20) (-6.36916 -5.06388 0) (-6.25621 -5.2454 4.24206e-21) (-6.13972 -5.42105 -4.29047e-21) (-6.01817 -5.58955 2.22722e-21) (-5.88964 -5.74977 -2.25537e-21) (-5.76664 -5.89336 0) (-5.63506 -5.99853 0) (0.798999 -0.0615748 0) (0.882084 -0.0658392 0) (0.973924 -0.0697017 0) (1.07454 -0.0732449 0) (1.18428 -0.0762244 0) (1.30279 -0.0783555 0) (1.42905 -0.0795747 0) (1.56184 -0.0798564 0) (1.69982 -0.0791842 0) (1.84144 -0.077565 0) (1.98504 -0.0750151 0) (2.12873 -0.071588 0) (2.2707 -0.0673716 0) (2.40885 -0.0624918 0) (2.54158 -0.0570925 0) (2.66678 -0.051342 0) (2.78355 -0.0454087 0) (2.88985 -0.0394691 0) (2.986 -0.0336774 0) (3.06988 -0.0281798 0) (3.14343 -0.0230793 0) (3.20405 -0.0184581 0) (3.25578 -0.0143442 0) (3.29474 -0.0107703 0) (3.32755 -0.0077058 0) (3.34786 -0.00515216 0) (3.36571 -0.00303015 0) (3.37083 -0.00133581 0) (3.3779 4.31918e-05 0) (3.37093 0.00108577 0) (3.37101 0.00192665 0) (3.35415 0.00254517 0) (3.35037 0.00305593 0) (3.32475 0.00343414 0) (3.31946 0.00375365 0) (3.28506 0.00402653 0) (3.28002 0.00424169 0) (3.2358 0.0044695 0) (3.23259 0.00461259 0) (3.17687 0.00468717 0) (0.678029 -0.179591 0) (0.761867 -0.192223 0) (0.853236 -0.204308 0) (0.953548 -0.215269 0) (1.06363 -0.224402 0) (1.18289 -0.230836 0) (1.30995 -0.234537 0) (1.44359 -0.235424 0) (1.58248 -0.233472 0) (1.72512 -0.228711 0) (1.86983 -0.221218 0) (2.01469 -0.211154 0) (2.15784 -0.19877 0) (2.29717 -0.184432 0) (2.43105 -0.168564 0) (2.55741 -0.151665 0) (2.67531 -0.134231 0) (2.78283 -0.116789 0) (2.88019 -0.0997833 0) (2.96546 -0.0836482 0) (3.04043 -0.0686707 0) (3.10274 -0.0551053 0) (3.15621 -0.0430203 0) (3.19723 -0.0325274 0) (3.23208 -0.0235139 0) (3.2548 -0.0160078 0) (3.27493 -0.00974722 0) (3.28274 -0.00475619 0) (3.29221 -0.000665462 0) (3.28812 0.00242292 0) (3.29061 0.00496249 0) (3.27679 0.00679545 0) (3.27527 0.00837126 0) (3.25284 0.00948372 0) (3.24956 0.0105049 0) (3.21856 0.0112956 0) (3.21511 0.0120096 0) (3.17461 0.0126719 0) (3.17238 0.0131498 0) (3.12089 0.0134196 0) (0.475238 -0.289272 0) (0.563511 -0.309991 0) (0.655235 -0.331714 0) (0.757349 -0.350614 0) (0.870069 -0.366225 0) (0.992381 -0.376783 0) (1.12217 -0.382855 0) (1.2585 -0.384263 0) (1.40012 -0.38104 0) (1.54548 -0.373237 0) (1.69283 -0.360973 0) (1.8402 -0.344526 0) (1.9856 -0.324308 0) (2.12692 -0.300915 0) (2.26245 -0.275046 0) (2.39023 -0.247531 0) (2.50926 -0.219185 0) (2.61785 -0.190871 0) (2.71615 -0.163303 0) (2.80252 -0.137183 0) (2.87862 -0.112954 0) (2.94245 -0.0910313 0) (2.99752 -0.0715066 0) (3.0407 -0.0545643 0) (3.07775 -0.0399991 0) (3.10333 -0.0278668 0) (3.12619 -0.0177231 0) (3.13749 -0.00962776 0) (3.15006 -0.0029597 0) (3.14998 0.00210025 0) (3.15574 0.00630475 0) (3.14637 0.009321 0) (3.14806 0.0119868 0) (3.13048 0.0138276 0) (3.13012 0.0156104 0) (3.10442 0.0169209 0) (3.10336 0.0182015 0) (3.06879 0.0193242 0) (3.06804 0.0201798 0) (3.02338 0.020774 0) (0.232375 -0.395112 0) (0.330373 -0.424169 0) (0.423341 -0.456881 0) (0.531181 -0.483387 0) (0.649475 -0.505658 0) (0.777633 -0.519448 0) (0.912244 -0.527467 0) (1.05357 -0.529051 0) (1.20007 -0.524389 0) (1.35009 -0.513415 0) (1.50166 -0.496236 0) (1.65267 -0.473258 0) (1.80099 -0.445103 0) (1.94451 -0.412632 0) (2.08147 -0.376848 0) (2.21006 -0.338917 0) (2.3293 -0.299983 0) (2.43778 -0.261225 0) (2.53563 -0.223616 0) (2.62165 -0.188087 0) (2.69733 -0.155215 0) (2.7612 -0.125535 0) (2.81641 -0.0991542 0) (2.86043 -0.0762895 0) (2.89843 -0.0566523 0) (2.92584 -0.04029 0) (2.95048 -0.0266077 0) (2.96457 -0.0156629 0) (2.9796 -0.00663318 0) (2.98315 0.000266027 0) (2.99179 0.00601838 0) (2.98679 0.01017 0) (2.99152 0.0138753 0) (2.97899 0.0164474 0) (2.98153 0.0189788 0) (2.96161 0.0208446 0) (2.96298 0.0226869 0) (2.93506 0.0243478 0) (2.93585 0.0255609 0) (2.89896 0.0266445 0) (-0.022192 -0.500163 0) (0.089053 -0.54105 0) (0.183855 -0.583112 0) (0.301135 -0.616262 0) (0.426621 -0.645578 0) (0.563084 -0.66085 0) (0.704067 -0.670524 0) (0.852666 -0.671884 0) (1.00598 -0.665456 0) (1.16225 -0.650837 0) (1.3192 -0.628197 0) (1.47453 -0.598145 0) (1.62603 -0.561576 0) (1.77162 -0.519671 0) (1.90955 -0.473778 0) (2.0382 -0.425411 0) (2.15665 -0.37604 0) (2.26384 -0.32714 0) (2.35994 -0.279925 0) (2.44418 -0.23551 0) (2.51799 -0.19458 0) (2.58041 -0.157743 0) (2.63429 -0.125106 0) (2.67773 -0.0968794 0) (2.71529 -0.072691 0) (2.74322 -0.0525474 0) (2.76839 -0.0357245 0) (2.78411 -0.0222472 0) (2.80052 -0.0111284 0) (2.80675 -0.00260071 0) (2.81737 0.00453809 0) (2.81598 0.00972824 0) (2.82305 0.0143771 0) (2.81499 0.0176384 0) (2.8199 0.0208691 0) (2.80534 0.0232861 0) (2.80878 0.0256614 0) (2.7872 0.0279027 0) (2.78934 0.0294379 0) (2.75996 0.0311455 0) (-0.278036 -0.608735 0) (-0.153067 -0.661199 0) (-0.0520454 -0.710358 0) (0.0755217 -0.750918 0) (0.209084 -0.787725 0) (0.356525 -0.802186 0) (0.504958 -0.813773 0) (0.663164 -0.81434 0) (0.824659 -0.805465 0) (0.988213 -0.786297 0) (1.15118 -0.757306 0) (1.31114 -0.719393 0) (1.46588 -0.673766 0) (1.61337 -0.621954 0) (1.75191 -0.565671 0) (1.8801 -0.506776 0) (1.99715 -0.447066 0) (2.10232 -0.388285 0) (2.19589 -0.331859 0) (2.27753 -0.279047 0) (2.34861 -0.23061 0) (2.4087 -0.187191 0) (2.46037 -0.148874 0) (2.5023 -0.115826 0) (2.53852 -0.0875945 0) (2.56603 -0.0641131 0) (2.59082 -0.0445479 0) (2.60725 -0.0288628 0) (2.62415 -0.0159418 0) (2.63214 -0.00600401 0) (2.64394 0.0023326 0) (2.64528 0.0084301 0) (2.65395 0.0138989 0) (2.64952 0.0177775 0) (2.6562 0.0216346 0) (2.64617 0.0245662 0) (2.65123 0.0274324 0) (2.63518 0.0302557 0) (2.63841 0.0320785 0) (2.61564 0.0344963 0) (-0.534461 -0.724086 0) (-0.391405 -0.782968 0) (-0.284076 -0.840912 0) (-0.144807 -0.88808 0) (-0.00121994 -0.933008 0) (0.159841 -0.944864 0) (0.316519 -0.958544 0) (0.486532 -0.957305 0) (0.65685 -0.944884 0) (0.828282 -0.920007 0) (0.997592 -0.883671 0) (1.16234 -0.837057 0) (1.32033 -0.781705 0) (1.46957 -0.719508 0) (1.6085 -0.652552 0) (1.73591 -0.583045 0) (1.85119 -0.513095 0) (1.95396 -0.444688 0) (2.04463 -0.379434 0) (2.12327 -0.318692 0) (2.19128 -0.263269 0) (2.24864 -0.213806 0) (2.29772 -0.170341 0) (2.33772 -0.132974 0) (2.37218 -0.101162 0) (2.39878 -0.0747499 0) (2.42271 -0.0528064 0) (2.43928 -0.0352129 0) (2.45614 -0.0207559 0) (2.46525 -0.00960588 0) (2.47766 -0.000267122 0) (2.481 0.0066087 0) (2.49073 0.0127752 0) (2.48913 0.0171902 0) (2.49709 0.0215961 0) (2.49072 0.0249897 0) (2.49703 0.0283031 0) (2.4855 0.0316831 0) (2.4896 0.0337666 0) (2.47229 0.0369397 0) (-0.791372 -0.846267 0) (-0.62645 -0.908646 0) (-0.511954 -0.977103 0) (-0.357185 -1.02755 0) (-0.204268 -1.08287 0) (-0.0266069 -1.09031 0) (0.13946 -1.10513 0) (0.322801 -1.10101 0) (0.50214 -1.08378 0) (0.681902 -1.05201 0) (0.857772 -1.00735 0) (1.0274 -0.951206 0) (1.18858 -0.885475 0) (1.33943 -0.812435 0) (1.47852 -0.734551 0) (1.6049 -0.654374 0) (1.71819 -0.574305 0) (1.81832 -0.496544 0) (1.90591 -0.422844 0) (1.98139 -0.354628 0) (2.04619 -0.29272 0) (2.1007 -0.237717 0) (2.1471 -0.189598 0) (2.18503 -0.148365 0) (2.21761 -0.113391 0) (2.24309 -0.0844103 0) (2.26598 -0.0604079 0) (2.2824 -0.0411703 0) (2.29896 -0.025408 0) (2.30878 -0.0132257 0) (2.32148 -0.00305453 0) (2.3263 0.00448623 0) (2.33674 0.0112432 0) (2.33735 0.0161172 0) (2.34624 0.0210024 0) (2.34276 0.0248019 0) (2.35003 0.0285258 0) (2.34209 0.0324237 0) (2.34688 0.0347521 0) (2.33388 0.038698 0) (-1.04909 -0.976812 0) (-0.858291 -1.04055 0) (-0.734832 -1.11987 0) (-0.560631 -1.16953 0) (-0.400164 -1.23863 0) (-0.201867 -1.23886 0) (-0.0255856 -1.25351 0) (0.171501 -1.24564 0) (0.360242 -1.22216 0) (0.54876 -1.18233 0) (0.731288 -1.12836 0) (0.905771 -1.06186 0) (1.07001 -0.985128 0) (1.22225 -0.90083 0) (1.36128 -0.811811 0) (1.48639 -0.720952 0) (1.59749 -0.630923 0) (1.69483 -0.5441 0) (1.77924 -0.462348 0) (1.85149 -0.38711 0) (1.91309 -0.319195 0) (1.96473 -0.259128 0) (2.00847 -0.206809 0) (2.04432 -0.162128 0) (2.07503 -0.124362 0) (2.09934 -0.0931356 0) (2.12116 -0.0673526 0) (2.13728 -0.046701 0) (2.15344 -0.0298292 0) (2.16373 -0.0167701 0) (2.17656 -0.00589761 0) (2.18252 0.00220401 0) (2.19346 0.00946043 0) (2.19578 0.0147249 0) (2.2054 0.0200331 0) (2.20417 0.0241863 0) (2.21221 0.0282949 0) (2.20703 0.0326678 0) (2.21242 0.0352374 0) (2.20267 0.0399567 0) (-1.30768 -1.11729 0) (-1.08744 -1.18048 0) (-0.952456 -1.27151 0) (-0.753932 -1.3139 0) (-0.587999 -1.40031 0) (-0.365591 -1.39075 0) (-0.178673 -1.40401 0) (0.0323451 -1.39113 0) (0.231213 -1.35984 0) (0.42867 -1.31084 0) (0.617777 -1.2466 0) (0.796955 -1.16897 0) (0.964009 -1.08067 0) (1.11737 -0.984771 0) (1.25607 -0.884475 0) (1.37969 -0.782978 0) (1.48843 -0.683188 0) (1.58286 -0.587624 0) (1.66405 -0.498219 0) (1.73306 -0.416404 0) (1.7915 -0.342943 0) (1.84032 -0.27826 0) (1.88149 -0.222161 0) (1.9153 -0.174408 0) (1.94421 -0.134187 0) (1.96736 -0.100999 0) (1.98812 -0.0736783 0) (2.00388 -0.0518125 0) (2.01962 -0.0339974 0) (2.03024 -0.0201946 0) (2.04312 -0.00872805 0) (2.04997 -0.000156215 0) (2.06129 0.00752879 0) (2.06498 0.0131263 0) (2.07518 0.0188149 0) (2.07569 0.0232765 0) (2.08439 0.0277548 0) (2.08127 0.032561 0) (2.08718 0.0353789 0) (2.07979 0.0408633 0) (-1.56642 -1.26867 0) (-1.31442 -1.32964 0) (-1.16531 -1.43476 0) (-0.936035 -1.46084 0) (-0.766526 -1.56724 0) (-0.518081 -1.54667 0) (-0.319453 -1.55666 0) (-0.0945161 -1.53703 0) (0.115083 -1.49649 0) (0.321337 -1.43734 0) (0.516807 -1.3619 0) (0.700394 -1.27245 0) (0.869933 -1.1721 0) (1.02409 -1.06433 0) (1.16217 -0.952683 0) (1.28407 -0.840652 0) (1.3903 -0.731344 0) (1.48173 -0.627382 0) (1.55968 -0.530731 0) (1.62547 -0.442777 0) (1.68083 -0.364208 0) (1.7269 -0.295329 0) (1.76561 -0.235834 0) (1.79745 -0.185354 0) (1.82466 -0.142974 0) (1.84666 -0.10808 0) (1.86643 -0.0794336 0) (1.8818 -0.0565276 0) (1.89711 -0.0379113 0) (1.90797 -0.0234784 0) (1.92085 -0.0115082 0) (1.92843 -0.00254152 0) (1.94004 0.00551678 0) (1.94483 0.0113995 0) (1.95551 0.0174378 0) (1.95738 0.0221696 0) (1.96663 0.0270122 0) (1.96501 0.0322133 0) (1.97139 0.0352957 0) (1.96559 0.041531 0) (-1.82341 -1.43111 0) (-1.53892 -1.48795 0) (-1.3744 -1.61239 0) (-1.10661 -1.61148 0) (-0.934023 -1.73826 0) (-0.659707 -1.70686 0) (-0.447394 -1.71105 0) (-0.20888 -1.68278 0) (0.0116887 -1.63195 0) (0.22636 -1.56159 0) (0.427877 -1.47406 0) (0.615477 -1.37217 0) (0.787092 -1.25938 0) (0.941664 -1.13955 0) (1.07882 -1.01657 0) (1.19877 -0.894173 0) (1.30233 -0.77563 0) (1.39069 -0.663636 0) (1.4654 -0.56015 0) (1.52803 -0.466482 0) (1.58039 -0.383223 0) (1.62382 -0.310536 0) (1.66016 -0.248 0) (1.69012 -0.195101 0) (1.71571 -0.150831 0) (1.73662 -0.114453 0) (1.75544 -0.0846678 0) (1.77041 -0.0608731 0) (1.7853 -0.0415776 0) (1.79634 -0.0266122 0) (1.80918 -0.0142145 0) (1.81737 -0.00491297 0) (1.82921 0.00347259 0) (1.8349 0.00960103 0) (1.84596 0.015967 0) (1.8489 0.0209378 0) (1.85859 0.0261461 0) (1.85803 0.0317076 0) (1.86482 0.0350772 0) (1.85998 0.0420447 0) (-2.0759 -1.60433 0) (-1.75889 -1.6537 0) (-1.58043 -1.80606 0) (-1.26645 -1.7681 0) (-1.08851 -1.91208 0) (-0.790643 -1.87101 0) (-0.562207 -1.86674 0) (-0.31088 -1.828 0) (-0.0793935 -1.76588 0) (0.143346 -1.68328 0) (0.350447 -1.58286 0) (0.541543 -1.468 0) (0.714752 -1.34248 0) (0.869323 -1.21051 0) (1.00521 -1.07628 0) (1.12297 -0.943735 0) (1.22372 -0.816279 0) (1.30896 -0.696636 0) (1.38046 -0.586726 0) (1.43998 -0.487758 0) (1.48945 -0.400202 0) (1.53032 -0.32407 0) (1.56443 -0.258814 0) (1.59258 -0.203776 0) (1.61665 -0.157853 0) (1.63651 -0.120189 0) (1.65444 -0.0894271 0) (1.669 -0.0648756 0) (1.68349 -0.0450061 0) (1.69464 -0.0295918 0) (1.70743 -0.016831 0) (1.71612 -0.00724472 0) (1.72812 0.00143082 0) (1.73457 0.00777282 0) (1.74591 0.014451 0) (1.74968 0.0196355 0) (1.75972 0.0252158 0) (1.75987 0.0311067 0) (1.76699 0.0347903 0) (1.76261 0.0424673 0) (-2.32153 -1.78867 0) (-1.97064 -1.82407 0) (-1.78245 -2.01514 0) (-1.41744 -1.93363 0) (-1.22832 -2.08776 0) (-0.910728 -2.03839 0) (-0.663951 -2.02328 0) (-0.400539 -1.97234 0) (-0.158529 -1.89779 0) (0.0717794 -1.80201 0) (0.283908 -1.68802 0) (0.477884 -1.5598 0) (0.652149 -1.42137 0) (0.806268 -1.27727 0) (0.94055 -1.13194 0) (1.05588 -0.989529 0) (1.15369 -0.853514 0) (1.23576 -0.726619 0) (1.30406 -0.610696 0) (1.36054 -0.506826 0) (1.40722 -0.415345 0) (1.44564 -0.336102 0) (1.47763 -0.268419 0) (1.50407 -0.211493 0) (1.52671 -0.164126 0) (1.54556 -0.125352 0) (1.56264 -0.0937544 0) (1.5768 -0.0685605 0) (1.5909 -0.0482078 0) (1.60212 -0.0324162 0) (1.61484 -0.0193469 0) (1.62395 -0.00951816 0) (1.63606 -0.000583104 0) (1.64312 0.00594729 0) (1.65467 0.0129264 0) (1.65907 0.018305 0) (1.66935 0.0242659 0) (1.66992 0.030458 0) (1.67729 0.0344848 0) (1.67298 0.0428435 0) (-2.55974 -1.98593 0) (-2.17037 -1.9967 0) (-1.97709 -2.2363 0) (-1.56171 -2.11059 0) (-1.3526 -2.26504 0) (-1.01942 -2.20798 0) (-0.75297 -2.18011 0) (-0.478001 -2.11534 0) (-0.226136 -2.02721 0) (0.0111168 -1.91736 0) (0.227578 -1.7893 0) (0.423755 -1.64743 0) (0.598501 -1.49602 0) (0.751702 -1.33988 0) (0.884028 -1.1837 0) (0.996694 -1.03174 0) (1.09145 -0.887551 0) (1.1703 -0.753813 0) (1.23544 -0.63228 0) (1.28896 -0.523893 0) (1.33294 -0.428835 0) (1.36903 -0.346789 0) (1.399 -0.276944 0) (1.42382 -0.218354 0) (1.44511 -0.16973 0) (1.46299 -0.129997 0) (1.47929 -0.0976889 0) (1.49304 -0.0719517 0) (1.50676 -0.051194 0) (1.51801 -0.035086 0) (1.53063 -0.0217551 0) (1.54009 -0.0117189 0) (1.55225 -0.00254957 0) (1.55983 0.00414984 0) (1.57148 0.0114213 0) (1.57638 0.0169787 0) (1.58678 0.0233298 0) (1.58756 0.0297974 0) (1.59509 0.0341966 0) (1.59052 0.0432044 0) (-2.79221 -2.19944 0) (-2.35625 -2.17143 0) (-2.15913 -2.46439 0) (-1.70048 -2.30006 0) (-1.46161 -2.44417 0) (-1.11593 -2.37883 0) (-0.829744 -2.33647 0) (-0.543534 -2.25651 0) (-0.282705 -2.15363 0) (-0.0392725 -2.029 0) (0.180735 -1.88648 0) (0.378398 -1.7308 0) (0.55303 -1.56643 0) (0.704843 -1.39845 0) (0.83487 -1.23169 0) (0.944653 -1.07056 0) (1.03623 -0.918598 0) (1.11184 -0.778428 0) (1.17385 -0.651683 0) (1.22448 -0.539145 0) (1.26588 -0.440836 0) (1.29973 -0.356273 0) (1.3278 -0.284505 0) (1.35108 -0.224452 0) (1.3711 -0.174735 0) (1.38807 -0.134178 0) (1.40362 -0.101266 0) (1.41696 -0.0750716 0) (1.43032 -0.0539763 0) (1.44157 -0.0376037 0) (1.45407 -0.024051 0) (1.46381 -0.0138359 0) (1.47597 -0.00445342 0) (1.48397 0.00240043 0) (1.49564 0.00995675 0) (1.50091 0.0156823 0) (1.51131 0.022432 0) (1.51214 0.0291516 0) (1.51971 0.0339509 0) (1.51465 0.0435703 0) (-3.02133 -2.43277 0) (-2.52978 -2.35105 0) (-2.32335 -2.69437 0) (-1.83322 -2.50121 0) (-1.55654 -2.62548 0) (-1.1995 -2.55016 0) (-0.894751 -2.49154 0) (-0.597561 -2.39525 0) (-0.328797 -2.27658 0) (-0.080082 -2.13659 0) (0.14264 -1.9794 0) (0.341055 -1.80983 0) (0.51497 -1.63263 0) (0.664932 -1.45305 0) (0.792332 -1.27608 0) (0.899027 -1.10617 0) (0.987323 -0.946856 0) (1.05968 -0.800666 0) (1.11861 -0.669095 0) (1.16643 -0.552755 0) (1.20533 -0.451501 0) (1.23705 -0.364679 0) (1.26332 -0.291206 0) (1.28514 -0.229869 0) (1.30397 -0.179205 0) (1.32007 -0.137942 0) (1.33491 -0.104519 0) (1.34785 -0.0779412 0) (1.36087 -0.0565659 0) (1.37208 -0.0399728 0) (1.38445 -0.0262321 0) (1.3944 -0.0158611 0) (1.40653 -0.00628365 0) (1.41485 0.000714481 0) (1.42646 0.0085488 0) (1.43199 0.0144352 0) (1.44227 0.02159 0) (1.44304 0.0285399 0) (1.45054 0.0337641 0) (1.44483 0.0439533 0) (-3.24847 -2.68762 0) (-2.69515 -2.5405 0) (-2.46661 -2.92299 0) (-1.95754 -2.71179 0) (-1.63892 -2.8088 0) (-1.26972 -2.72135 0) (-0.948385 -2.64451 0) (-0.640651 -2.531 0) (-0.365031 -2.39564 0) (-0.11204 -2.23985 0) (0.112533 -2.06791 0) (0.310981 -1.88448 0) (0.483581 -1.69466 0) (0.631246 -1.50381 0) (0.755712 -1.31701 0) (0.859134 -1.13876 0) (0.944067 -0.972517 0) (1.01315 -0.820717 0) (1.06905 -0.684693 0) (1.11414 -0.564882 0) (1.15065 -0.460965 0) (1.18034 -0.372123 0) (1.2049 -0.297142 0) (1.22535 -0.234681 0) (1.24306 -0.183197 0) (1.25832 -0.141331 0) (1.2725 -0.107478 0) (1.28505 -0.0805803 0) (1.29772 -0.0589742 0) (1.30888 -0.0421976 0) (1.3211 -0.0282976 0) (1.33122 -0.0177891 0) (1.34325 -0.00803225 0) (1.35183 -0.000896623 0) (1.36329 0.00720891 0) (1.36901 0.0132517 0) (1.37905 0.0208153 0) (1.37966 0.0279759 0) (1.387 0.0336459 0) (1.38053 0.0443592 0) (-3.47019 -2.96368 0) (-2.85706 -2.74506 0) (-2.58893 -3.14924 0) (-2.07003 -2.92918 0) (-1.71001 -2.99343 0) (-1.32666 -2.89175 0) (-0.990989 -2.7947 0) (-0.673467 -2.66316 0) (-0.392079 -2.51043 0) (-0.135892 -2.3386 0) (0.0896574 -2.15183 0) (0.287449 -1.95474 0) (0.458153 -1.75259 0) (0.603101 -1.55086 0) (0.724354 -1.35466 0) (0.824342 -1.1685 0) (0.905846 -0.995766 0) (0.971674 -0.838758 0) (1.02458 -0.698641 0) (1.06702 -0.57567 0) (1.10124 -0.469352 0) (1.12899 -0.378708 0) (1.15193 -0.302394 0) (1.17108 -0.238952 0) (1.18774 -0.186762 0) (1.20221 -0.144382 0) (1.21577 -0.11017 0) (1.22793 -0.083007 0) (1.24028 -0.0612122 0) (1.25135 -0.0442832 0) (1.26342 -0.030248 0) (1.27364 -0.0196165 0) (1.28555 -0.00969365 0) (1.29431 -0.0024246 0) (1.30556 0.00594501 0) (1.31138 0.0121422 0) (1.32108 0.020115 0) (1.32148 0.0274682 0) (1.32854 0.0336002 0) (1.32126 0.0447894 0) (-3.68712 -3.2582 0) (-3.01756 -2.96912 0) (-2.69304 -3.37353 0) (-2.16753 -3.15113 0) (-1.77041 -3.17848 0) (-1.37088 -3.06057 0) (-1.02294 -2.94155 0) (-0.69672 -2.79122 0) (-0.410677 -2.62064 0) (-0.152352 -2.43266 0) (0.0733127 -2.23108 0) (0.269737 -2.02063 0) (0.438013 -1.80652 0) (0.579862 -1.59433 0) (0.697654 -1.38919 0) (0.794072 -1.19558 0) (0.8721 -1.01678 0) (0.934684 -0.854956 0) (0.984668 -0.711088 0) (1.02455 -0.585249 0) (1.05656 -0.476774 0) (1.08247 -0.384526 0) (1.10388 -0.307039 0) (1.1218 -0.242743 0) (1.13746 -0.189946 0) (1.15119 -0.147131 0) (1.16415 -0.112619 0) (1.17594 -0.0852384 0) (1.18797 -0.0632903 0) (1.19893 -0.0462352 0) (1.21083 -0.0320849 0) (1.22111 -0.0213418 0) (1.23286 -0.0112644 0) (1.24175 -0.00386387 0) (1.25272 0.00476205 0) (1.25858 0.0111134 0) (1.26786 0.0194921 0) (1.268 0.0270218 0) (1.2747 0.0336266 0) (1.26659 0.0452423 0) (-3.89058 -3.5665 0) (-3.1761 -3.21508 0) (-2.78274 -3.59688 0) (-2.24813 -3.37561 0) (-1.82005 -3.36327 0) (-1.40316 -3.22702 0) (-1.04472 -3.08457 0) (-0.711136 -2.91478 0) (-0.421565 -2.72603 0) (-0.16216 -2.52189 0) (0.0627829 -2.30568 0) (0.257172 -2.08221 0) (0.422531 -1.85656 0) (0.560937 -1.63438 0) (0.675055 -1.42078 0) (0.767796 -1.22017 0) (0.842321 -1.03573 0) (0.901691 -0.869468 0) (0.948815 -0.722175 0) (0.986213 -0.593741 0) (1.01612 -0.483331 0) (1.04027 -0.389661 0) (1.06023 -0.311142 0) (1.07698 -0.246105 0) (1.09171 -0.192788 0) (1.10473 -0.149607 0) (1.11713 -0.114847 0) (1.12856 -0.0872901 0) (1.14028 -0.0652187 0) (1.15112 -0.0480595 0) (1.16284 -0.0338106 0) (1.17314 -0.0229649 0) (1.1847 -0.0127429 0) (1.19364 -0.00521147 0) (1.20429 0.00366255 0) (1.21014 0.0101687 0) (1.21892 0.018947 0) (1.21878 0.0266385 0) (1.22503 0.033722 0) (1.21611 0.0457142 0) (-4.07704 -3.88317 0) (-3.32741 -3.48255 0) (-2.86156 -3.82059 0) (-2.31158 -3.60059 0) (-1.85867 -3.54704 0) (-1.42429 -3.39031 0) (-1.0569 -3.22333 0) (-0.717453 -3.0335 0) (-0.425487 -2.82645 0) (-0.166032 -2.60625 0) (0.0573915 -2.3757 0) (0.249122 -2.1396 0) (0.411124 -1.90288 0) (0.545788 -1.67118 0) (0.656056 -1.4496 0) (0.745038 -1.24245 0) (0.81605 -1.05279 0) (0.872246 -0.882442 0) (0.916581 -0.73203 0) (0.951585 -0.601254 0) (0.979474 -0.489116 0) (1.00195 -0.394185 0) (1.02053 -0.314764 0) (1.03619 -0.249086 0) (1.05003 -0.195326 0) (1.06239 -0.151839 0) (1.07426 -0.116876 0) (1.08533 -0.0891767 0) (1.09676 -0.0670072 0) (1.10745 -0.0497621 0) (1.11899 -0.0354282 0) (1.12927 -0.024487 0) (1.14062 -0.0141288 0) (1.14956 -0.00646641 0) (1.15984 0.00264705 0) (1.16562 0.00930927 0) (1.17384 0.0184776 0) (1.17342 0.026318 0) (1.17916 0.0338807 0) (1.16947 0.0462002 0) (-4.24339 -4.20103 0) (-3.46533 -3.76783 0) (-2.93118 -4.04569 0) (-2.35858 -3.82416 0) (-1.88606 -3.72853 0) (-1.43511 -3.54949 0) (-1.06015 -3.35726 0) (-0.716418 -3.14703 0) (-0.423182 -2.92173 0) (-0.164659 -2.68571 0) (0.0564984 -2.44121 0) (0.245005 -2.19294 0) (0.403261 -1.94564 0) (0.533927 -1.70494 0) (0.640202 -1.47584 0) (0.72537 -1.2626 0) (0.792879 -1.06811 0) (0.845952 -0.894022 0) (0.887574 -0.740775 0) (0.920269 -0.607891 0) (0.946226 -0.49421 0) (0.967107 -0.398168 0) (0.984396 -0.317958 0) (0.999013 -0.251729 0) (1.01202 -0.197593 0) (1.02374 -0.153851 0) (1.03511 -0.118724 0) (1.04584 -0.0909114 0) (1.05698 -0.0686649 0) (1.06752 -0.0513491 0) (1.07887 -0.0369414 0) (1.08909 -0.0259101 0) (1.1002 -0.0154232 0) (1.1091 -0.00762936 0) (1.11898 0.00171451 0) (1.12465 0.00853422 0) (1.13227 0.0180804 0) (1.13157 0.026058 0) (1.13674 0.0340957 0) (1.12634 0.046695 0) (-4.38912 -4.51286 0) (-3.58482 -4.0645 0) (-2.99228 -4.27152 0) (-2.39038 -4.04448 0) (-1.9022 -3.90611 0) (-1.43649 -3.7033 0) (-1.05524 -3.48557 0) (-0.7088 -3.25484 0) (-0.415389 -3.01159 0) (-0.158713 -2.76016 0) (0.0594963 -2.50222 0) (0.244279 -2.24232 0) (0.398453 -1.98499 0) (0.524913 -1.7358 0) (0.627086 -1.49969 0) (0.708412 -1.28079 0) (0.772443 -1.08184 0) (0.822452 -0.904342 0) (0.861441 -0.748526 0) (0.891913 -0.613747 0) (0.916024 -0.498694 0) (0.935391 -0.401671 0) (0.95145 -0.320774 0) (0.965086 -0.254071 0) (0.977313 -0.199618 0) (0.988432 -0.155666 0) (0.999322 -0.120408 0) (1.00971 -0.092507 0) (1.02057 -0.070201 0) (1.03096 -0.052827 0) (1.0421 -0.0383544 0) (1.05224 -0.0272375 0) (1.06309 -0.0166282 0) (1.0719 -0.00870237 0) (1.08137 0.000862612 0) (1.08688 0.00784098 0) (1.09388 0.0177506 0) (1.09289 0.0258551 0) (1.09746 0.0343593 0) (1.08642 0.0471932 0) (-4.51443 -4.81572 0) (-3.6828 -4.36712 0) (-3.04439 -4.49686 0) (-2.40863 -4.26023 0) (-1.90737 -4.07854 0) (-1.42936 -3.85069 0) (-1.04304 -3.60756 0) (-0.695403 -3.35644 0) (-0.402858 -3.09569 0) (-0.148858 -2.82941 0) (0.0658019 -2.55864 0) (0.246434 -2.28771 0) (0.396248 -2.02096 0) (0.518341 -1.76384 0) (0.616343 -1.52122 0) (0.693822 -1.29711 0) (0.754415 -1.0941 0) (0.801431 -0.913497 0) (0.837869 -0.755367 0) (0.866206 -0.618896 0) (0.888553 -0.502627 0) (0.906482 -0.404744 0) (0.921377 -0.323253 0) (0.934085 -0.256145 0) (0.945572 -0.201426 0) (0.956121 -0.157304 0) (0.966559 -0.121942 0) (0.976627 -0.0939745 0) (0.987214 -0.0716236 0) (0.997425 -0.0542017 0) (1.00836 -0.0396715 0) (1.01838 -0.0284724 0) (1.02898 -0.0177464 0) (1.03766 -0.00968838 0) (1.04669 8.81747e-05 0) (1.05202 0.00722592 0) (1.05837 0.0174828 0) (1.05711 0.025705 0) (1.06105 0.0346635 0) (1.04946 0.0476899 0) (-4.62607 -5.11521 0) (-3.75771 -4.67622 0) (-3.08633 -4.72347 0) (-2.41491 -4.47266 0) (-1.90201 -4.24679 0) (-1.41455 -3.99222 0) (-1.02443 -3.72364 0) (-0.677 -3.45216 0) (-0.3863 -3.17428 0) (-0.135718 -2.89361 0) (0.0748676 -2.61061 0) (0.250992 -2.32922 0) (0.396228 -2.05361 0) (0.513839 -1.78912 0) (0.607635 -1.5405 0) (0.681288 -1.31162 0) (0.738503 -1.10492 0) (0.782603 -0.921525 0) (0.816578 -0.761333 0) (0.842866 -0.623369 0) (0.863531 -0.506037 0) (0.880095 -0.407413 0) (0.893888 -0.325415 0) (0.905719 -0.257968 0) (0.916507 -0.203032 0) (0.926516 -0.158775 0) (0.936526 -0.123336 0) (0.946281 -0.0953211 0) (0.956602 -0.0729382 0) (0.966633 -0.0554775 0) (0.977356 -0.0408961 0) (0.987245 -0.0296181 0) (0.997563 -0.0187807 0) (1.00608 -0.0105906 0) (1.01467 -0.000612192 0) (1.0198 0.00668494 0) (1.02549 0.0172717 0) (1.02397 0.0256031 0) (1.02727 0.0350007 0) (1.01521 0.0481806 0) (-4.72957 -5.42336 0) (-3.80918 -5.00156 0) (-3.11589 -4.95791 0) (-2.4102 -4.68651 0) (-1.88642 -4.41502 0) (-1.39259 -4.13112 0) (-1.00005 -3.83644 0) (-0.654189 -3.54412 0) (-0.366277 -3.24907 0) (-0.119802 -2.95412 0) (0.0862403 -2.6592 0) (0.257556 -2.36766 0) (0.398034 -2.08358 0) (0.511084 -1.8121 0) (0.600664 -1.55784 0) (0.670533 -1.32454 0) (0.72444 -1.11445 0) (0.765712 -0.928535 0) (0.797314 -0.7665 0) (0.821642 -0.627218 0) (0.840706 -0.508962 0) (0.855975 -0.409703 0) (0.868726 -0.327278 0) (0.879729 -0.259555 0) (0.889857 -0.204448 0) (0.899355 -0.16009 0) (0.908956 -0.124597 0) (0.918409 -0.0965524 0) (0.928471 -0.0741494 0) (0.938318 -0.0566584 0) (0.948824 -0.0420315 0) (0.958559 -0.0306778 0) (0.968593 -0.0197339 0) (0.976928 -0.0114127 0) (0.985064 -0.00124225 0) (0.989964 0.0062133 0) (0.995002 0.0171115 0) (0.993249 0.0255444 0) (0.995898 0.0353635 0) (0.983442 0.0486614 0) (-4.83231 -5.74517 0) (-3.83739 -5.34959 0) (-3.12953 -5.20415 0) (-2.39458 -4.90413 0) (-1.8607 -4.58616 0) (-1.3636 -4.27018 0) (-0.970272 -3.94863 0) (-0.627301 -3.63487 0) (-0.343121 -3.32244 0) (-0.101424 -3.01314 0) (0.099628 -2.70644 0) (0.265869 -2.40482 0) (0.401423 -2.1124 0) (0.509845 -1.83408 0) (0.595209 -1.57433 0) (0.661339 -1.33675 0) (0.712011 -1.1234 0) (0.750541 -0.935068 0) (0.77986 -0.771281 0) (0.802313 -0.630756 0) (0.819853 -0.511636 0) (0.833894 -0.411789 0) (0.845661 -0.328974 0) (0.855882 -0.261 0) (0.865387 -0.205742 0) (0.874402 -0.161299 0) (0.883615 -0.125763 0) (0.892777 -0.0976962 0) (0.902585 -0.0752779 0) (0.912243 -0.0577599 0) (0.922531 -0.0430898 0) (0.932095 -0.0316618 0) (0.94184 -0.0206151 0) (0.949967 -0.0121635 0) (0.957655 -0.00180959 0) (0.962312 0.00580266 0) (0.966708 0.0169939 0) (0.964732 0.0255218 0) (0.966742 0.0357435 0) (0.953972 0.0491284 0) (-4.94065 -6.05117 0) (-3.8449 -5.69395 0) (-3.12414 -5.44415 0) (-2.36809 -5.11082 0) (-1.82533 -4.7495 0) (-1.32786 -4.40208 0) (-0.935479 -4.0551 0) (-0.596672 -3.72111 0) (-0.317127 -3.39241 0) (-0.080836 -3.06973 0) (0.114821 -2.75202 0) (0.275765 -2.441 0) (0.406249 -2.14073 0) (0.509988 -1.85594 0) (0.59114 -1.59096 0) (0.653572 -1.34923 0) (0.701074 -1.13269 0) (0.736938 -0.941947 0) (0.764053 -0.776383 0) (0.784707 -0.634572 0) (0.800792 -0.514537 0) (0.813665 -0.414051 0) (0.824498 -0.330798 0) (0.833979 -0.262533 0) (0.842894 -0.207088 0) (0.851449 -0.16253 0) (0.860293 -0.126928 0) (0.869173 -0.0988214 0) (0.878734 -0.076374 0) (0.888201 -0.0588192 0) (0.898268 -0.044099 0) (0.907649 -0.0325921 0) (0.917101 -0.0214419 0) (0.925003 -0.0128585 0) (0.932246 -0.00232803 0) (0.936649 0.00544025 0) (0.94042 0.0169073 0) (0.938239 0.0255265 0) (0.939624 0.0361318 0) (0.926613 0.0495785 0) (-5.04993 -6.2548 0) (-3.83888 -5.95659 0) (-3.10112 -5.62388 0) (-2.33294 -5.26453 0) (-1.78275 -4.87064 0) (-1.28711 -4.50047 0) (-0.89709 -4.13459 0) (-0.563399 -3.78604 0) (-0.289143 -3.44543 0) (-0.058669 -3.11303 0) (0.131346 -2.7871 0) (0.286871 -2.46911 0) (0.41224 -2.16296 0) (0.51131 -1.87326 0) (0.588297 -1.60428 0) (0.647099 -1.35938 0) (0.691507 -1.14037 0) (0.724783 -0.947752 0) (0.749767 -0.780782 0) (0.768688 -0.637937 0) (0.783377 -0.51715 0) (0.795133 -0.416126 0) (0.805075 -0.332497 0) (0.81385 -0.263976 0) (0.822203 -0.208361 0) (0.830319 -0.163698 0) (0.838808 -0.128032 0) (0.847414 -0.0998856 0) (0.856732 -0.077407 0) (0.866004 -0.0598139 0) (0.875849 -0.0450416 0) (0.885037 -0.0334548 0) (0.894196 -0.022202 0) (0.901859 -0.0134876 0) (0.908664 -0.00279087 0) (0.912806 0.00513362 0) (0.915973 0.0168593 0) (0.913605 0.0255644 0) (0.914384 0.0365304 0) (0.901201 0.0500125 0) (-5.1241 -6.28471 3.85925e-20) (-3.83472 -6.05581 -9.73711e-21) (-3.07676 -5.68517 -2.60984e-20) (-2.30344 -5.31872 2.2851e-22) (-1.74777 -4.90998 0) (-1.25433 -4.53241 0) (-0.866382 -4.15874 -9.82144e-23) (-0.536906 -3.80503 4.31491e-23) (-0.266853 -3.45969 -2.41725e-22) (-0.0409627 -3.1235 2.2617e-22) (0.144652 -2.79412 0) (0.295962 -2.47324 0) (0.417374 -2.16473 7.66655e-23) (0.512842 -1.87323 0) (0.586622 -1.60301 6.4846e-23) (0.642629 -1.35735 0) (0.684654 -1.13801 0) (0.715933 -0.945363 5.41956e-22) (0.739269 -0.778572 -5.46341e-22) (0.756846 -0.636025 0) (0.770447 -0.515592 -1.54006e-23) (0.78133 -0.414934 -9.37074e-23) (0.790571 -0.331654 6.92678e-23) (0.798787 -0.26345 0) (0.80669 -0.208113 5.71861e-24) (0.814448 -0.163687 -5.93885e-24) (0.822642 -0.128216 -1.53635e-23) (0.831013 -0.10022 1.46501e-23) (0.840117 -0.0778497 -5.90205e-24) (0.849207 -0.0603196 2.80128e-23) (0.858844 -0.0455711 -4.08194e-23) (0.86784 -0.0339632 -1.4427e-23) (0.876728 -0.022659 1.41753e-23) (0.884152 -0.0138578 0) (0.890567 -0.00304463 0) (0.894445 0.00499319 0) (0.897083 0.0169065 -9.52132e-24) (0.89452 0.0256617 0) (0.894753 0.0368976 0) (0.881409 0.050371 0) (-4.93112 -6.40203 -3.85707e-20) (-3.64932 -6.17154 1.05455e-20) (-2.93076 -5.74082 2.68416e-20) (-2.17772 -5.35496 1.19779e-20) (-1.64683 -4.92604 -3.99159e-21) (-1.17207 -4.53921 -7.36008e-21) (-0.800588 -4.1576 2.22537e-21) (-0.484553 -3.79909 -2.26994e-21) (-0.225866 -3.4498 -1.56568e-22) (-0.00961834 -3.11088 1.55032e-22) (0.167771 -2.77957 0) (0.312096 -2.45773 0) (0.427601 -2.14914 -1.17973e-21) (0.518161 -1.8583 1.12452e-21) (0.587938 -1.58929 -6.37416e-23) (0.640731 -1.3452 6.94369e-22) (0.680213 -1.12756 -7.63537e-22) (0.7095 -0.93662 0) (0.731289 -0.771433 8.13163e-23) (0.747668 -0.630328 -2.88834e-22) (0.760346 -0.511149 3.19759e-22) (0.77052 -0.411555 2.07415e-23) (0.779216 -0.329157 0) (0.78702 -0.261673 1.9971e-23) (0.794608 -0.206916 -1.41876e-23) (0.802132 -0.162947 4.74316e-25) (0.810146 -0.12783 -6.27244e-24) (0.818382 -0.1001 0) (0.827369 -0.0779209 -6.04547e-24) (0.836363 -0.0605154 0) (0.845881 -0.045839 -1.41406e-23) (0.854762 -0.0342513 7.1676e-23) (0.863468 -0.0229349 -4.15141e-23) (0.870725 -0.0140841 0) (0.87685 -0.00319635 -1.19954e-23) (0.880522 0.00491869 3.34601e-23) (0.88274 0.0169647 3.24716e-23) (0.880001 0.0257504 1.33192e-23) (0.879765 0.0371915 -2.931e-24) (0.866251 0.0506474 7.29874e-24) (-4.77294 -6.50089 -4.08385e-20) (-3.50945 -6.26903 6.44673e-20) (-2.81354 -5.78917 -2.63447e-20) (-2.07425 -5.39095 1.21222e-20) (-1.56043 -4.94492 -1.92631e-20) (-1.09944 -4.5502 2.7529e-21) (-0.74065 -4.16107 6.95433e-21) (-0.435483 -3.79771 -2.18014e-21) (-0.186359 -3.44419 7.99791e-23) (0.0214608 -3.10212 -7.65323e-23) (0.191395 -2.76835 0) (0.329167 -2.445 -1.28894e-22) (0.438952 -2.13574 -7.08901e-23) (0.524623 -1.84503 0) (0.590317 -1.57678 0) (0.63977 -1.33387 2.01744e-22) (0.676575 -1.11765 8.14157e-23) (0.703745 -0.928206 0) (0.723876 -0.764478 3.15366e-22) (0.738965 -0.624721 -1.56212e-22) (0.750643 -0.506736 -2.87274e-22) (0.760044 -0.40817 0) (0.768145 -0.326637 0) (0.775492 -0.259867 0) (0.782731 -0.205687 -7.2519e-24) (0.789993 -0.162179 2.31481e-24) (0.797803 -0.127419 6.22109e-24) (0.805887 -0.0999598 0) (0.814743 -0.0779755 1.17629e-23) (0.823627 -0.0606975 -2.68288e-23) (0.833016 -0.0460955 -2.65769e-25) (0.841773 -0.0345288 -2.87397e-23) (0.85029 -0.0232012 -4.57051e-25) (0.857374 -0.0143001 0) (0.863207 -0.00333937 4.96641e-23) (0.866673 0.00485489 -1.15443e-23) (0.868477 0.0170318 -2.87552e-23) (0.865577 0.0258477 1.42491e-23) (0.864883 0.0374937 1.95112e-23) (0.85124 0.0509217 -7.30672e-24) (-4.59762 -6.62078 2.65429e-21) (-3.36072 -6.37471 -1.95402e-21) (-2.68924 -5.84278 0) (-1.96806 -5.4296 0) (-1.47287 -4.96525 5.76791e-22) (-1.02699 -4.56211 0) (-0.681294 -4.16529 4.09139e-22) (-0.387217 -3.79707 -1.25493e-21) (-0.147604 -3.43942 9.7465e-22) (0.0519224 -3.09434 0) (0.214607 -2.75828 0) (0.34604 -2.43355 1.26951e-22) (0.450307 -2.12372 0) (0.531252 -1.83314 0) (0.592977 -1.56557 0) (0.639158 -1.32373 -9.72673e-23) (0.673314 -1.10879 -8.03545e-23) (0.698369 -0.920689 0) (0.716828 -0.758265 0) (0.730603 -0.619713 7.43628e-23) (0.741252 -0.502798 -5.06549e-23) (0.749849 -0.405155 5.82377e-23) (0.757324 -0.3244 -5.56626e-23) (0.764186 -0.258274 2.15356e-23) (0.77105 -0.204618 -5.9099e-24) (0.778027 -0.161529 0) (0.785615 -0.127096 -1.73562e-23) (0.793532 -0.0998833 1.65777e-23) (0.802242 -0.0780764 0) (0.811006 -0.0609126 2.55651e-23) (0.820255 -0.0463746 2.58397e-23) (0.828878 -0.0348207 5.65149e-23) (0.8372 -0.0234755 1.3926e-23) (0.844104 -0.0145182 -4.02096e-23) (0.849642 -0.00348133 -4.95311e-23) (0.852901 0.00479672 3.35334e-23) (0.854297 0.0171048 1.41735e-23) (0.85125 0.0259526 -3.56069e-23) (0.850109 0.037803 2.91597e-24) (0.836379 0.0511936 0) (-4.42098 -6.73938 0) (-3.21566 -6.47164 2.65746e-20) (-2.56548 -5.89341 -4.32965e-20) (-1.86359 -5.46626 5.0688e-21) (-1.38621 -4.9848 1.85779e-20) (-0.955534 -4.57362 -6.5773e-21) (-0.622699 -4.1694 -4.02597e-22) (-0.339693 -3.79641 1.93459e-22) (-0.10951 -3.43469 -4.94857e-23) (0.0817732 -3.08663 4.76772e-22) (0.237295 -2.74833 -1.31384e-21) (0.362489 -2.42228 9.02407e-22) (0.461361 -2.11192 -2.35293e-22) (0.537709 -1.82152 0) (0.595589 -1.55467 0) (0.638601 -1.31391 -1.75651e-22) (0.670188 -1.10024 -6.91332e-22) (0.693181 -0.913449 6.38533e-22) (0.710001 -0.7523 -8.9628e-23) (0.722477 -0.614916 0) (0.732098 -0.499036 1.33527e-22) (0.739884 -0.402285 -1.43451e-22) (0.746719 -0.322279 0) (0.753081 -0.256774 -2.25483e-24) (0.759554 -0.203621 5.85865e-24) (0.76623 -0.160935 0) (0.773582 -0.126816 1.51088e-23) (0.781317 -0.0998401 -2.09241e-23) (0.78987 -0.0782024 -2.63479e-23) (0.798502 -0.0611458 -1.69062e-24) (0.807603 -0.0466662 2.90647e-23) (0.816081 -0.0351196 -2.74308e-23) (0.824202 -0.0237528 5.61042e-23) (0.830917 -0.0147347 5.34016e-23) (0.836159 -0.00361951 -1.19471e-23) (0.839209 0.00474586 -3.24702e-23) (0.840202 0.0171844 0) (0.837022 0.0260651 -2.53765e-23) (0.835446 0.0381189 -2.15822e-23) (0.82167 0.051463 1.35862e-23) (-4.24084 -6.86014 0) (-3.07064 -6.5643 0) (-2.44059 -5.94342 -1.77398e-20) (-1.75997 -5.50163 1.69997e-20) (-1.30007 -5.00389 8.78537e-21) (-0.88493 -4.58477 -8.03893e-21) (-0.5648 -4.17343 -4.20807e-22) (-0.292875 -3.79576 0) (-0.0720397 -3.43007 0) (0.111042 -3.07908 5.26663e-23) (0.259466 -2.73858 -7.51071e-23) (0.378485 -2.41123 -1.08773e-22) (0.472046 -2.10035 1.27846e-23) (0.543892 -1.81013 -1.06056e-21) (0.598026 -1.544 1.36844e-21) (0.637965 -1.30429 -3.77785e-22) (0.667068 -1.09186 1.43518e-22) (0.688068 -0.90637 -4.11088e-22) (0.703299 -0.746469 6.3136e-22) (0.714509 -0.610232 -2.19938e-23) (0.723123 -0.495365 0) (0.730107 -0.399486 1.13091e-22) (0.736303 -0.320215 1.54307e-23) (0.74216 -0.255318 -2.88818e-23) (0.748232 -0.20266 0) (0.754596 -0.16037 0) (0.761701 -0.126558 -1.49989e-23) (0.769244 -0.0998143 -2.68607e-24) (0.77763 -0.0783416 2.24395e-23) (0.78612 -0.0613882 0) (0.795062 -0.0469635 5.68637e-23) (0.803388 -0.0354206 -8.60878e-23) (0.811299 -0.0240291 2.79009e-23) (0.817819 -0.014947 0) (0.822762 -0.00375196 4.95218e-23) (0.825601 0.00470362 -3.34583e-23) (0.826197 0.0172712 -9.93293e-24) (0.822897 0.0261854 -2.83735e-23) (0.820896 0.0384411 3.89678e-23) (0.807115 0.0517295 -1.44155e-23) (-4.05859 -6.9797 5.26641e-20) (-2.92615 -6.65102 -2.64069e-20) (-2.31504 -5.9921 2.78596e-20) (-1.65733 -5.53533 -1.19784e-20) (-1.21445 -5.02243 1.14978e-20) (-0.815146 -4.59554 -4.7151e-21) (-0.507557 -4.17737 7.53148e-21) (-0.246724 -3.79512 -2.71042e-21) (-0.035161 -3.42556 -1.48891e-22) (0.139757 -3.0717 1.95322e-22) (0.281141 -2.72906 7.55181e-22) (0.394041 -2.40045 -4.66289e-22) (0.482359 -2.08908 2.1657e-22) (0.54978 -1.79905 -5.86562e-22) (0.600248 -1.53362 2.47505e-22) (0.637196 -1.29495 5.11802e-22) (0.66389 -1.08373 4.86641e-22) (0.682964 -0.899498 -5.74314e-22) (0.696662 -0.740809 1.5931e-22) (0.706649 -0.605685 -1.24323e-22) (0.714286 -0.491803 0) (0.720485 -0.396773 -4.61958e-23) (0.726052 -0.318217 3.42495e-23) (0.731404 -0.253913 -4.06223e-23) (0.737074 -0.201737 9.22221e-25) (0.743121 -0.159833 -2.2014e-23) (0.749971 -0.126323 9.48411e-24) (0.757313 -0.0998052 4.23586e-23) (0.765523 -0.0784931 -2.28369e-23) (0.773861 -0.0616389 -8.36446e-23) (0.782637 -0.0472653 -2.93045e-23) (0.790801 -0.0357225 0) (0.798495 -0.0243036 -5.59069e-23) (0.804812 -0.0151539 0) (0.809453 -0.00387794 1.19885e-23) (0.81208 0.00467051 3.23862e-23) (0.812285 0.0173654 -7.48778e-23) (0.808875 0.0263137 5.98367e-23) (0.806463 0.038769 -8.08423e-23) (0.792717 0.051993 0) (-3.87433 -7.09774 -1.2748e-20) (-2.7817 -6.73268 -3.97088e-20) (-2.18887 -6.03977 1.51174e-20) (-1.55555 -5.56743 -1.50964e-20) (-1.1293 -5.04049 -8.80926e-21) (-0.746132 -4.6059 6.61312e-21) (-0.450929 -4.18123 -2.65951e-21) (-0.201206 -3.79449 1.29358e-21) (0.00115759 -3.42116 1.41578e-21) (0.167946 -3.0645 -2.79854e-22) (0.302347 -2.71978 0) (0.40918 -2.38996 5.7659e-22) (0.492317 -2.07812 -7.2866e-22) (0.555378 -1.78829 0) (0.60225 -1.52355 1.69965e-22) (0.636275 -1.2859 0) (0.660627 -1.07586 4.5898e-22) (0.677836 -0.892847 -4.3965e-22) (0.690053 -0.735335 -1.44387e-22) (0.698861 -0.601289 1.19158e-22) (0.705554 -0.488361 -8.48764e-23) (0.710994 -0.394152 6.5e-23) (0.715946 -0.31629 0) (0.720802 -0.252562 6.86938e-24) (0.726071 -0.200855 -1.24254e-23) (0.731799 -0.159327 2.75917e-23) (0.738389 -0.126111 -2.95836e-23) (0.745524 -0.0998132 4.47482e-23) (0.753551 -0.0786567 -2.70726e-23) (0.76173 -0.0618974 1.09401e-22) (0.770331 -0.0475711 -8.46554e-23) (0.778323 -0.0360246 -1.44968e-23) (0.785794 -0.0245753 1.38712e-23) (0.7919 -0.0153549 0) (0.796237 -0.00399688 -4.93618e-23) (0.798648 0.00464692 9.78653e-23) (0.798468 0.0174671 6.48814e-23) (0.794961 0.0264498 0) (0.792148 0.039102 7.70147e-23) (0.778477 0.0522531 -1.3356e-23) (-3.68829 -7.21326 -7.80268e-21) (-2.63712 -6.80939 3.89722e-21) (-2.06221 -6.08633 0) (-1.45458 -5.59793 1.20137e-20) (-1.04459 -5.05809 -1.26498e-20) (-0.677836 -4.61587 7.35912e-22) (-0.394876 -4.18503 0) (-0.156284 -3.79386 2.25962e-22) (0.0369476 -3.41689 -1.90229e-22) (0.195638 -3.05748 2.05311e-22) (0.32311 -2.71073 3.40987e-22) (0.423925 -2.37974 1.77027e-22) (0.501941 -2.06747 -6.70051e-22) (0.560703 -1.77785 -7.00265e-22) (0.604042 -1.51379 5.03e-22) (0.635204 -1.27713 2.65113e-22) (0.657271 -1.06824 -3.77408e-23) (0.672669 -0.886418 -3.72403e-23) (0.683453 -0.730046 -3.11498e-22) (0.691124 -0.597043 1.09898e-22) (0.696907 -0.485038 5.865e-23) (0.701614 -0.391625 -6.05019e-23) (0.705969 -0.314434 4.62768e-23) (0.710341 -0.251264 -1.90317e-23) (0.715215 -0.200013 0) (0.720624 -0.158852 -8.18286e-24) (0.726954 -0.125921 -3.44521e-23) (0.733877 -0.0998373 4.54677e-23) (0.741715 -0.0788314 2.82138e-23) (0.749727 -0.0621626 0) (0.758146 -0.0478799 2.76739e-23) (0.765958 -0.036326 8.57227e-23) (0.773197 -0.0248434 0) (0.779085 -0.0155491 1.06839e-22) (0.783115 -0.00410815 0) (0.785308 0.00463329 -8.73563e-23) (0.78475 0.0175763 -4.19188e-24) (0.781156 0.0265939 -5.25242e-23) (0.777956 0.0394396 -3.89212e-23) (0.764399 0.0525094 2.82618e-23) (-3.50052 -7.32577 -4.73481e-20) (-2.49224 -6.88156 3.94216e-21) (-1.93516 -6.13173 1.5073e-20) (-1.3543 -5.62687 -4.85409e-21) (-0.960292 -5.07524 -2.62679e-21) (-0.610206 -4.62545 -6.67794e-21) (-0.339362 -4.18875 0) (-0.111919 -3.79325 2.45511e-22) (0.07224 -3.41274 6.30443e-22) (0.222862 -3.05064 -4.51745e-22) (0.343455 -2.70193 4.79818e-22) (0.438302 -2.36981 -4.60031e-22) (0.511255 -2.05713 8.45648e-22) (0.565776 -1.76772 -6.55507e-22) (0.605638 -1.50434 0) (0.633992 -1.26865 0) (0.653826 -1.06088 2.16273e-22) (0.667459 -0.880209 0) (0.676854 -0.72494 -1.20783e-22) (0.683425 -0.592946 1.15762e-22) (0.688332 -0.481832 -6.29954e-23) (0.692331 -0.389188 2.05399e-23) (0.696111 -0.312647 2.53817e-23) (0.700012 -0.250018 -8.43107e-24) (0.7045 -0.19921 0) (0.709594 -0.158404 6.26654e-23) (0.715663 -0.125751 2.26508e-23) (0.722371 -0.0998762 -4.5397e-23) (0.730016 -0.0790161 8.24992e-25) (0.737854 -0.0624334 2.89122e-23) (0.746083 -0.0481905 -4.23781e-23) (0.753708 -0.0366255 -8.66166e-23) (0.760709 -0.025107 -7.00606e-23) (0.766372 -0.0157358 -2.1334e-22) (0.770092 -0.00421108 9.86926e-23) (0.772064 0.00463002 5.16805e-24) (0.771134 0.0176932 -7.95542e-23) (0.767464 0.0267458 1.09912e-22) (0.763888 0.0397811 4.09114e-23) (0.750484 0.0527617 7.0669e-25) (-3.31107 -7.4348 5.24835e-21) (-2.34694 -6.94948 2.24016e-20) (-1.80784 -6.17588 -2.27162e-20) (-1.25464 -5.6543 2.43373e-23) (-0.876393 -5.09195 -1.16522e-21) (-0.543186 -4.63464 -7.48398e-22) (-0.284351 -4.19242 3.31257e-21) (-0.0680763 -3.79265 -2.72706e-21) (0.107066 -3.40873 0) (0.249647 -3.04399 -9.34184e-23) (0.363411 -2.69339 7.3198e-23) (0.452336 -2.36016 -4.58535e-22) (0.520281 -2.0471 3.99018e-22) (0.570618 -1.75791 3.06089e-22) (0.607059 -1.4952 -1.84128e-23) (0.632655 -1.26046 -2.63776e-22) (0.6503 -1.05378 -2.14273e-22) (0.662209 -0.874219 1.62529e-22) (0.670252 -0.720017 0) (0.675759 -0.588998 9.13253e-23) (0.679819 -0.478744 -1.30286e-22) (0.683137 -0.386843 0) (0.686362 -0.310929 -3.60983e-23) (0.689808 -0.248824 6.23836e-24) (0.693919 -0.198445 9.70727e-24) (0.698705 -0.157985 -1.4173e-23) (0.704514 -0.125602 -2.16383e-23) (0.711006 -0.0999289 4.73846e-23) (0.718453 -0.0792096 -7.98566e-23) (0.726113 -0.0627087 2.65934e-23) (0.734146 -0.0485018 0) (0.741575 -0.0369222 5.75371e-23) (0.748332 -0.025365 5.59871e-23) (0.753761 -0.0159141 1.06514e-22) (0.757168 -0.00430506 -1.97104e-22) (0.758918 0.00463748 -8.20205e-23) (0.757622 0.0178178 7.37672e-23) (0.753886 0.0269055 -6.04231e-23) (0.749947 0.040126 -3.88494e-23) (0.736734 0.0530096 -1.40036e-23) (-3.11994 -7.54001 -1.52825e-20) (-2.20112 -7.01345 -3.58569e-20) (-1.68031 -6.21867 0) (-1.15549 -5.68028 1.03014e-20) (-0.792869 -5.1082 -1.04443e-20) (-0.476721 -4.64346 4.99182e-21) (-0.229809 -4.19602 -2.31764e-21) (-0.0247167 -3.79206 -1.53311e-21) (0.141455 -3.40484 -1.46075e-21) (0.276023 -3.03753 4.38081e-23) (0.383003 -2.68509 0) (0.466052 -2.35081 -2.33966e-22) (0.529044 -2.03738 0) (0.575251 -1.74842 2.85449e-22) (0.608322 -1.48636 -2.73783e-22) (0.631208 -1.25255 0) (0.646707 -1.04693 1.91118e-22) (0.656929 -0.868448 -1.61153e-22) (0.663653 -0.715277 0) (0.668124 -0.585199 -9.06051e-23) (0.671365 -0.475775 6.25629e-23) (0.674026 -0.384588 -3.63212e-23) (0.676717 -0.309281 8.09071e-24) (0.679723 -0.247682 7.81494e-24) (0.683469 -0.197718 -1.95155e-23) (0.687952 -0.157593 -5.62159e-24) (0.693505 -0.125472 1.63176e-23) (0.699781 -0.0999946 1.06933e-24) (0.707028 -0.079411 0) (0.714504 -0.0629875 0) (0.722335 -0.0488129 0) (0.72956 -0.0372151 7.24296e-23) (0.736066 -0.0256166 5.62244e-23) (0.741255 -0.0160833 -1.20081e-22) (0.744348 -0.00438953 8.65803e-23) (0.745872 0.004656 9.32566e-23) (0.744218 0.0179502 -6.94741e-23) (0.740425 0.0270729 0) (0.736137 0.0404735 0) (0.723151 0.0532528 0) (-2.92714 -7.64114 -1.0502e-20) (-2.05473 -7.07373 3.93547e-21) (-1.55265 -6.26001 1.77342e-20) (-1.05678 -5.7049 -1.70167e-20) (-0.709702 -5.12399 0) (-0.410756 -4.65192 0) (-0.175704 -4.19956 0) (0.0181969 -3.7915 0) (0.175439 -3.40109 -2.59095e-22) (0.302019 -3.03127 0) (0.402259 -2.67706 1.48657e-22) (0.479476 -2.34176 -3.30864e-23) (0.537568 -2.02799 0) (0.579697 -1.73925 0) (0.609448 -1.47784 0) (0.629668 -1.24493 0) (0.643059 -1.04033 -3.68912e-22) (0.651628 -0.862897 -2.76098e-22) (0.657062 -0.71072 1.27353e-22) (0.660524 -0.581548 7.05521e-23) (0.66297 -0.472923 -7.55805e-23) (0.664996 -0.382425 -8.29362e-24) (0.66717 -0.307701 -1.61017e-23) (0.669753 -0.24659 4.48935e-24) (0.673145 -0.197028 0) (0.677334 -0.157227 -2.82585e-23) (0.682634 -0.12536 4.11584e-23) (0.688695 -0.100072 -7.40367e-23) (0.695741 -0.0796193 2.49929e-23) (0.703028 -0.063269 -7.17205e-23) (0.710652 -0.0491228 1.40444e-23) (0.717667 -0.0375034 -4.31677e-23) (0.723915 -0.025861 1.8746e-25) (0.728857 -0.0162428 7.99805e-23) (0.731634 -0.00446394 1.11e-22) (0.732929 0.00468585 0) (0.730924 0.0180902 7.43514e-23) (0.727084 0.0272478 0) (0.72246 0.040823 -3.91253e-23) (0.709737 0.0534907 1.41027e-23) (-2.73269 -7.73798 4.27364e-20) (-1.90772 -7.13053 -3.99707e-20) (-1.42491 -6.2998 1.781e-20) (-0.958408 -5.72821 -2.92951e-20) (-0.626874 -5.13931 4.90258e-21) (-0.345235 -4.66003 7.67703e-21) (-0.122001 -4.20305 1.53306e-21) (0.0607021 -3.79096 -1.1992e-21) (0.209047 -3.39749 -5.40809e-22) (0.327664 -3.02521 5.78914e-23) (0.421204 -2.66929 -5.55522e-23) (0.492634 -2.33301 -8.38227e-23) (0.545875 -2.01892 0) (0.583977 -1.73041 3.66622e-22) (0.610457 -1.46963 -2.36699e-22) (0.628053 -1.2376 1.93841e-22) (0.639372 -1.03399 -8.0208e-24) (0.646318 -0.857563 2.66715e-22) (0.650487 -0.706346 -1.19414e-22) (0.652963 -0.578045 0) (0.654635 -0.470188 5.37871e-23) (0.656045 -0.380353 -5.35156e-23) (0.657721 -0.306191 2.48588e-23) (0.659894 -0.24555 -3.12803e-24) (0.662945 -0.196374 -1.42689e-23) (0.666848 -0.156888 0) (0.671901 -0.125267 -4.0957e-23) (0.677748 -0.100161 -2.63878e-23) (0.684591 -0.0798339 -2.91501e-23) (0.691686 -0.0635521 5.68612e-23) (0.699097 -0.0494306 -5.83021e-23) (0.705895 -0.0377861 5.8059e-23) (0.71188 -0.0260973 -5.60713e-23) (0.716568 -0.016392 9.35513e-23) (0.719027 -0.00452781 -8.57462e-23) (0.720092 0.00472726 0) (0.717743 0.018238 -7.00635e-23) (0.713865 0.0274302 -3.98856e-24) (0.708919 0.0411738 7.7786e-23) (0.696494 0.0537231 -1.41114e-23) (-2.53661 -7.83038 3.76482e-20) (-1.76004 -7.18404 -2.69194e-20) (-1.29712 -6.33795 -6.35147e-21) (-0.860305 -5.75028 -1.04192e-20) (-0.544365 -5.15413 -1.18021e-21) (-0.280105 -4.66781 0) (-0.0686706 -4.20647 1.07645e-21) (0.102837 -3.79046 -8.6717e-23) (0.242309 -3.39403 -8.31121e-22) (0.35299 -3.01936 -1.96749e-23) (0.439867 -2.6618 -1.77181e-22) (0.505551 -2.32457 1.71651e-22) (0.553991 -2.01018 1.01659e-22) (0.588114 -1.7219 -3.47443e-22) (0.611367 -1.46174 3.24934e-22) (0.626379 -1.23055 -9.38144e-23) (0.63566 -1.0279 0) (0.64101 -0.852447 0) (0.643939 -0.702152 0) (0.645448 -0.57469 0) (0.646364 -0.46757 0) (0.647175 -0.378372 2.97423e-23) (0.648368 -0.304749 1.3701e-23) (0.650147 -0.24456 0) (0.652867 -0.195758 1.71803e-23) (0.656491 -0.156574 -3.35389e-23) (0.661302 -0.12519 2.37018e-23) (0.666938 -0.100261 -3.61065e-23) (0.673577 -0.0800539 6.70763e-23) (0.680478 -0.0638362 0) (0.687671 -0.0497355 -3.66515e-25) (0.694245 -0.0380625 -7.24615e-23) (0.699963 -0.0263248 1.39847e-23) (0.704391 -0.0165301 -1.28706e-23) (0.706529 -0.0045807 1.25371e-23) (0.707363 0.00478042 -8.67598e-23) (0.704678 0.0183933 7.4163e-23) (0.700771 0.0276197 0) (0.695517 0.0415252 -6.24032e-26) (0.683423 0.0539496 1.34903e-23) (-2.33892 -7.91822 2.43033e-20) (-1.6117 -7.2344 -1.82395e-20) (-1.16931 -6.37438 -4.13632e-23) (-0.762397 -5.7712 1.81213e-21) (-0.462152 -5.16845 0) (-0.215314 -4.67528 -8.05275e-22) (-0.0156793 -4.20984 4.89275e-22) (0.144637 -3.78999 0) (0.275256 -3.39072 3.0961e-22) (0.378024 -3.01374 -1.34685e-22) (0.458274 -2.65458 1.21329e-22) (0.518253 -2.31644 -5.87153e-23) (0.561938 -2.00177 -3.06126e-22) (0.592128 -1.71372 -1.15069e-22) (0.612197 -1.45416 1.95149e-22) (0.624664 -1.22379 -1.8203e-22) (0.631938 -1.02207 1.4707e-22) (0.635718 -0.847547 0) (0.637425 -0.698139 -8.93431e-23) (0.637986 -0.571481 1.20185e-22) (0.638161 -0.46507 -1.85973e-23) (0.638388 -0.376481 -3.3943e-23) (0.639113 -0.303375 4.62824e-24) (0.640508 -0.243621 -4.44335e-24) (0.642909 -0.195178 0) (0.646264 -0.156285 3.33846e-23) (0.650838 -0.125131 1.20901e-23) (0.656265 -0.100371 -1.16083e-23) (0.662701 -0.0802786 -5.54618e-23) (0.669403 -0.0641204 0) (0.676374 -0.0500367 5.83039e-23) (0.68272 -0.0383318 7.28118e-23) (0.688163 -0.0265429 -1.40026e-23) (0.692326 -0.0166567 -9.33313e-23) (0.694143 -0.00462221 -1.84281e-23) (0.694743 0.00484547 9.23223e-23) (0.691732 0.0185562 0) (0.687805 0.0278162 -5.42908e-23) (0.682257 0.0418763 -4.00514e-23) (0.670526 0.0541696 -1.34988e-23) (-2.13967 -8.00138 2.47398e-21) (-1.46266 -7.28173 3.95173e-20) (-1.04148 -6.40905 -1.02319e-20) (-0.664616 -5.791 0) (-0.380212 -5.18225 0) (-0.150809 -4.68245 -1.63185e-23) (0.0370048 -4.21315 5.13273e-22) (0.186142 -3.78958 0) (0.307918 -3.38758 -6.33584e-22) (0.402798 -3.00833 1.22561e-22) (0.476452 -2.64765 1.36619e-23) (0.530765 -2.30863 5.82945e-23) (0.56974 -1.9937 -1.85299e-22) (0.59604 -1.70588 4.7243e-22) (0.612967 -1.44689 -8.90114e-23) (0.622923 -1.21732 2.44908e-22) (0.62822 -1.01649 -4.27864e-22) (0.630453 -0.842863 2.3214e-23) (0.630958 -0.694305 1.78365e-22) (0.630585 -0.568418 -1.9496e-22) (0.630033 -0.462684 0) (0.629688 -0.37468 -2.1265e-23) (0.629956 -0.30207 0) (0.63098 -0.242732 -3.6457e-24) (0.633071 -0.194634 -1.49926e-23) (0.636165 -0.156022 -3.26038e-23) (0.640508 -0.125087 9.90699e-24) (0.645728 -0.100491 0) (0.65196 -0.0805075 5.52709e-23) (0.658462 -0.0644041 0) (0.665208 -0.0503334 5.88412e-23) (0.671319 -0.0385934 -4.34903e-23) (0.676484 -0.0267509 -2.79813e-23) (0.680376 -0.0167713 1.34119e-23) (0.681871 -0.00465201 -1.04074e-22) (0.682237 0.00492249 5.65695e-24) (0.678907 0.0187263 7.39176e-23) (0.674968 0.0280193 5.57811e-23) (0.669143 0.0422266 0) (0.657805 0.0543829 -1.32669e-23) (-1.9389 -8.07979 -2.42423e-20) (-1.31291 -7.32614 -3.92573e-21) (-0.913635 -6.4419 2.6503e-21) (-0.566903 -5.80974 8.13329e-21) (-0.298516 -5.19551 -1.84789e-21) (-0.0865424 -4.68934 -3.2013e-21) (0.089414 -4.21641 -2.71861e-21) (0.227387 -3.78922 1.93317e-21) (0.340325 -3.3846 -1.64856e-22) (0.427341 -3.00317 3.15974e-22) (0.494428 -2.64102 -7.9241e-24) (0.543113 -2.30115 2.2458e-23) (0.577418 -1.98596 -7.03605e-23) (0.599871 -1.69837 1.77831e-22) (0.613694 -1.43994 -2.54156e-22) (0.621173 -1.21113 -1.47048e-22) (0.624519 -1.01115 2.00269e-23) (0.625227 -0.838393 1.16373e-22) (0.624546 -0.69065 1.52386e-22) (0.623253 -0.5655 -8.05249e-24) (0.621985 -0.460415 0) (0.621079 -0.372969 3.97627e-23) (0.6209 -0.300833 0) (0.621563 -0.241893 8.73447e-24) (0.623353 -0.194126 0) (0.626192 -0.155783 4.71858e-23) (0.63031 -0.12506 -1.02263e-23) (0.635326 -0.10062 1.38241e-23) (0.641356 -0.0807399 1.31416e-24) (0.647655 -0.0646867 -7.26296e-23) (0.654172 -0.0506251 -4.375e-23) (0.660043 -0.0388466 -7.27666e-23) (0.664925 -0.0269482 -1.39624e-23) (0.668541 -0.0168735 6.89963e-24) (0.669714 -0.00466981 9.84385e-23) (0.669845 0.00501151 5.65321e-24) (0.666206 0.0189036 -7.59344e-23) (0.662263 0.0282288 5.90372e-23) (0.656176 0.0425751 -1.44093e-24) (0.645261 0.054589 1.32743e-23) (-1.73666 -8.15339 2.44256e-20) (-1.16246 -7.36769 -3.98315e-21) (-0.785777 -6.47292 -5.30588e-21) (-0.4692 -5.82747 -3.71626e-21) (-0.217037 -5.20822 0) (-0.0224649 -4.69596 8.36651e-22) (0.141581 -4.21961 5.20142e-22) (0.268409 -3.78893 1.1204e-23) (0.372506 -3.3818 -1.79855e-22) (0.451683 -2.99824 6.83888e-23) (0.512229 -2.63468 5.95663e-23) (0.555322 -2.29399 2.62647e-23) (0.584997 -1.97857 -1.69969e-22) (0.603642 -1.69119 6.61188e-23) (0.614397 -1.43331 8.29207e-23) (0.61943 -1.20523 -1.36508e-22) (0.62085 -1.00607 1.31108e-22) (0.620052 -0.834136 -4.04577e-23) (0.618201 -0.687171 1.99967e-23) (0.615998 -0.562726 1.12068e-22) (0.614024 -0.458259 5.7318e-23) (0.612566 -0.371346 -3.21951e-23) (0.611949 -0.299663 -1.02363e-23) (0.612259 -0.241105 -4.90806e-25) (0.613756 -0.193653 -1.88591e-23) (0.616347 -0.155569 0) (0.620244 -0.125049 -1.27735e-23) (0.625059 -0.100757 2.62488e-23) (0.630886 -0.0809752 5.81591e-23) (0.636982 -0.0649674 4.43279e-23) (0.643266 -0.0509111 -1.49716e-23) (0.648893 -0.0390908 7.2679e-23) (0.653488 -0.0271342 0) (0.656824 -0.0169629 6.51581e-24) (0.657674 -0.00467536 -6.26432e-24) (0.65757 0.0051125 0) (0.653631 0.0190878 -7.37116e-23) (0.649693 0.0284443 -5.70383e-23) (0.64336 0.0429212 3.97816e-23) (0.632895 0.0547875 1.30324e-23) (-1.53303 -8.22212 -1.93818e-20) (-1.0113 -7.40644 2.26126e-20) (-0.657893 -6.50207 2.65705e-21) (-0.371455 -5.84423 1.85909e-21) (-0.135743 -5.22038 0) (0.0414693 -4.70233 -2.7951e-21) (0.193539 -4.22275 2.70038e-21) (0.309244 -3.78871 -3.22093e-22) (0.404493 -3.37917 -9.41835e-24) (0.475853 -2.99357 -1.4993e-22) (0.52988 -2.62865 1.77002e-22) (0.567416 -2.28718 9.86507e-23) (0.592497 -1.97153 -1.23244e-22) (0.607372 -1.68436 7.50621e-23) (0.615092 -1.42699 -7.28218e-23) (0.617708 -1.19962 1.0707e-23) (0.617226 -1.00124 2.25985e-22) (0.61494 -0.830091 -1.47702e-22) (0.611931 -0.683869 3.30304e-23) (0.608829 -0.560095 -9.58617e-23) (0.606157 -0.456217 -1.4501e-23) (0.604153 -0.369812 1.09341e-23) (0.603105 -0.29856 0) (0.603069 -0.240366 5.55305e-24) (0.60428 -0.193216 8.7227e-24) (0.60663 -0.155379 0) (0.61031 -0.125052 0) (0.614927 -0.100903 0) (0.620552 -0.0812131 -5.67407e-23) (0.626442 -0.0652459 1.50696e-23) (0.63249 -0.0511907 -1.44869e-23) (0.637869 -0.0393254 0) (0.642173 -0.0273086 0) (0.645225 -0.0170391 5.97682e-23) (0.645753 -0.0046685 4.2746e-23) (0.645414 0.0052254 4.31229e-23) (0.641186 0.0192787 6.51881e-26) (0.63726 0.0286653 0) (0.630697 0.0432641 -3.83481e-23) (0.620709 0.054978 -1.27303e-25) (-1.32806 -8.28593 2.46995e-20) (-0.859426 -7.44243 2.01064e-21) (-0.529967 -6.52934 0) (-0.273621 -5.86004 0) (-0.0545987 -5.23198 0) (0.105305 -4.70845 -1.70408e-21) (0.245322 -4.22584 -5.5664e-22) (0.349928 -3.78857 3.42753e-22) (0.436315 -3.37673 1.87204e-22) (0.499881 -2.98915 0) (0.547409 -2.62293 0) (0.579421 -2.2807 -8.78388e-25) (0.599942 -1.96484 5.08501e-23) (0.611081 -1.67787 0) (0.615797 -1.421 -1.33063e-22) (0.616023 -1.19429 1.16629e-22) (0.613659 -0.99666 -1.62784e-22) (0.609901 -0.826258 -2.98879e-24) (0.605746 -0.680742 -9.63519e-23) (0.601754 -0.557606 5.10348e-23) (0.59839 -0.454288 -2.8225e-23) (0.595846 -0.368366 3.32411e-24) (0.594373 -0.297524 -3.19442e-24) (0.593996 -0.239676 0) (0.594927 -0.192814 0) (0.59704 -0.155212 0) (0.600507 -0.125071 -1.16555e-23) (0.604928 -0.101056 1.47241e-23) (0.610352 -0.0814529 1.48894e-23) (0.616034 -0.0655215 -2.94474e-23) (0.621845 -0.0514636 1.45499e-23) (0.626971 -0.0395501 5.87131e-23) (0.63098 -0.0274709 5.65065e-23) (0.633746 -0.017102 6.93482e-26) (0.633953 -0.0046491 -1.0381e-22) (0.633379 0.00535007 -3.74477e-23) (0.628872 0.0194759 7.35721e-23) (0.624966 0.0288916 7.44333e-25) (0.61819 0.043603 3.72763e-23) (0.608703 0.0551601 -1.2721e-23) (-1.12183 -8.3448 -2.49185e-20) (-0.706833 -7.4757 -1.99993e-21) (-0.401982 -6.55474 0) (-0.175651 -5.87493 0) (0.0264297 -5.24302 4.4035e-21) (0.169085 -4.71435 -3.37322e-21) (0.296963 -4.22888 5.53876e-22) (0.390495 -3.78852 7.75139e-22) (0.468003 -3.37448 -1.07217e-21) (0.523796 -2.985 -1.82965e-22) (0.564843 -2.61753 2.77386e-22) (0.59136 -2.27457 3.52139e-23) (0.607353 -1.95851 -3.29882e-23) (0.614788 -1.67172 0) (0.616529 -1.41532 6.5471e-23) (0.614388 -1.18925 -5.72266e-23) (0.610163 -0.992327 9.72277e-23) (0.604946 -0.822635 7.51524e-23) (0.599656 -0.677788 -8.35547e-24) (0.59478 -0.555258 3.19762e-23) (0.590729 -0.452471 -6.95697e-24) (0.58765 -0.367006 -8.24412e-24) (0.585755 -0.296554 1.90269e-24) (0.585043 -0.239034 -1.04692e-23) (0.585697 -0.192447 -1.69964e-23) (0.587578 -0.15507 0) (0.590837 -0.125104 2.47965e-23) (0.595063 -0.101217 4.00117e-25) (0.600285 -0.0816944 -1.49867e-23) (0.605759 -0.0657939 -4.53999e-23) (0.611329 -0.0517292 0) (0.616199 -0.0397644 -5.86186e-23) (0.619911 -0.0276207 -5.64278e-23) (0.622387 -0.0171513 -1.06452e-22) (0.622274 -0.0046171 4.89402e-23) (0.621468 0.00548634 0) (0.616691 0.0196791 0) (0.612815 0.0291225 7.42588e-25) (0.605842 0.043937 -7.96836e-25) (0.596879 0.0553333 -1.26621e-23) (-0.914422 -8.3987 0) (-0.553522 -7.50627 0) (-0.273916 -6.57827 -9.56875e-21) (-0.0775018 -5.88893 9.19074e-21) (0.10738 -5.2535 4.46799e-21) (0.232852 -4.72002 -2.81108e-21) (0.348498 -4.23188 -1.42217e-21) (0.43098 -3.78858 -3.62176e-22) (0.499587 -3.37243 -5.379e-22) (0.547627 -2.98113 2.06284e-22) (0.582206 -2.61246 0) (0.603258 -2.2688 0) (0.614751 -1.95253 3.92365e-23) (0.618511 -1.66592 -3.76974e-23) (0.617304 -1.40996 3.13857e-24) (0.612818 -1.1845 5.18574e-23) (0.606747 -0.988241 -5.51549e-24) (0.600086 -0.819221 -3.94097e-23) (0.593669 -0.675008 0) (0.587916 -0.553049 -1.88944e-23) (0.583182 -0.450764 1.68895e-23) (0.579569 -0.365733 -6.97067e-24) (0.577256 -0.295649 1.66961e-24) (0.576211 -0.238441 1.04407e-23) (0.576593 -0.192115 -9.52119e-25) (0.578245 -0.15495 -1.21727e-23) (0.581298 -0.125152 1.17046e-23) (0.585332 -0.101385 -2.76934e-23) (0.590353 -0.0819371 2.18273e-23) (0.595617 -0.0660626 6.69584e-23) (0.600943 -0.0519872 -3.7547e-23) (0.605553 -0.0399679 -5.16586e-23) (0.608966 -0.0277578 0) (0.61115 -0.0171869 5.32035e-23) (0.610718 -0.0045725 0) (0.609682 0.00563396 0) (0.604648 0.0198879 0) (0.600807 0.0293577 0) (0.593656 0.0442655 -3.81216e-23) (0.585238 0.0554974 1.321e-25) (-0.705925 -8.4476 1.00233e-20) (-0.39949 -7.53417 -9.64959e-21) (-0.145745 -6.59992 4.83836e-21) (0.0208666 -5.90203 -4.64747e-21) (0.18829 -5.26341 1.59639e-21) (0.296646 -4.72549 -2.17851e-21) (0.399961 -4.23483 0) (0.471418 -3.78874 3.60805e-22) (0.531098 -3.37059 4.34721e-22) (0.571403 -2.97754 -1.71547e-22) (0.599526 -2.60773 1.64811e-22) (0.615138 -2.26339 0) (0.622157 -1.94692 -2.33773e-23) (0.622269 -1.66047 2.99851e-23) (0.618136 -1.40493 4.856e-23) (0.611326 -1.18003 -4.66632e-23) (0.603425 -0.984403 0) (0.59533 -0.816016 2.90533e-23) (0.587793 -0.672398 -4.84892e-23) (0.581167 -0.550979 7.00479e-24) (0.575753 -0.449168 8.62891e-24) (0.57161 -0.364544 -3.77617e-24) (0.56888 -0.294809 -7.50949e-24) (0.567505 -0.237896 -2.36576e-24) (0.567617 -0.191816 1.78641e-23) (0.569042 -0.154854 -6.22889e-24) (0.571891 -0.125214 3.9175e-23) (0.575733 -0.10156 -6.64777e-24) (0.580553 -0.0821806 -3.69094e-23) (0.585606 -0.0663272 -3.59417e-25) (0.590687 -0.0522371 3.73151e-23) (0.595034 -0.0401603 5.88577e-23) (0.598145 -0.027882 0) (0.600035 -0.0172088 -5.32747e-23) (0.599288 -0.00451534 -2.92528e-24) (0.598023 0.00579266 2.82774e-25) (0.592743 0.0201019 2.43908e-24) (0.588946 0.0295966 -2.81224e-23) (0.581634 0.0445877 7.1174e-25) (0.57378 0.055652 1.87407e-23) (-0.496424 -8.49148 1.4203e-20) (-0.244734 -7.5594 -2.06707e-21) (-0.0174415 -6.61971 0) (0.119494 -5.91427 9.90079e-22) (0.269201 -5.27275 -1.23872e-23) (0.360508 -4.73074 -4.58156e-22) (0.451388 -4.23774 3.02745e-22) (0.511843 -3.78902 0) (0.562566 -3.36896 -2.21322e-22) (0.595152 -2.97424 0) (0.616827 -2.60333 0) (0.627023 -2.25834 0) (0.629591 -1.94167 -7.80663e-24) (0.62608 -1.65536 0) (0.619043 -1.40022 -6.32975e-23) (0.609925 -1.17584 4.16318e-23) (0.600207 -0.980811 1.6454e-23) (0.590687 -0.813018 -3.28256e-23) (0.582037 -0.66996 0) (0.574542 -0.549047 1.11506e-23) (0.56845 -0.44768 -1.75976e-23) (0.563777 -0.363441 -2.2716e-24) (0.560631 -0.294033 2.47818e-24) (0.558926 -0.237399 1.18712e-24) (0.55877 -0.191551 1.12611e-23) (0.55997 -0.15478 -5.23353e-24) (0.562616 -0.125289 -2.62277e-23) (0.566268 -0.101741 7.42083e-24) (0.570887 -0.0824247 -7.13865e-24) (0.575726 -0.0665874 -3.03636e-23) (0.580559 -0.0524786 0) (0.584642 -0.0403414 -7.37336e-24) (0.587449 -0.0279931 7.0963e-24) (0.589045 -0.0172168 5.32332e-23) (0.587983 -0.00444572 2.92313e-24) (0.586494 0.00596211 -2.81447e-24) (0.580979 0.0203208 0) (0.577233 0.0298387 2.73803e-23) (0.569778 0.0449028 0) (0.562506 0.0557967 -6.72521e-26) (-0.286015 -8.53033 1.02271e-20) (-0.089255 -7.58198 -7.78545e-21) (0.111022 -6.63765 0) (0.218417 -5.92563 -1.48826e-21) (0.350152 -5.28154 -1.66115e-21) (0.424476 -4.7358 1.14073e-21) (0.502815 -4.24062 1.51086e-21) (0.552287 -3.78943 6.34398e-22) (0.594022 -3.36755 -6.09507e-22) (0.618903 -2.97124 0) (0.634136 -2.59928 3.34484e-23) (0.638937 -2.25366 -2.10181e-23) (0.637073 -1.9368 2.01967e-23) (0.629961 -1.65062 0) (0.620037 -1.39583 3.71811e-23) (0.608627 -1.17195 -1.78589e-23) (0.597104 -0.977466 1.76603e-23) (0.586167 -0.810226 0) (0.576408 -0.667691 -8.23797e-24) (0.568046 -0.547251 1.86069e-23) (0.561277 -0.4463 2.25375e-24) (0.556075 -0.362421 0) (0.552513 -0.293321 -4.1264e-24) (0.550478 -0.236947 -5.78848e-25) (0.550054 -0.191319 -5.19396e-24) (0.55103 -0.154728 5.41499e-24) (0.553474 -0.125378 0) (0.556936 -0.101929 0) (0.561353 -0.0826689 0) (0.565978 -0.0668429 3.03295e-23) (0.570561 -0.0527116 0) (0.574376 -0.040511 0) (0.576878 -0.0280909 0) (0.578178 -0.017211 0) (0.576807 -0.00436383 0) (0.575096 0.00614191 0) (0.569358 0.020544 1.92589e-23) (0.565671 0.0300834 -2.85878e-23) (0.558091 0.04521 3.54202e-25) (0.551417 0.0559311 -1.22086e-23) (-0.0747908 -8.56415 -1.44666e-20) (0.0669499 -7.60193 0) (0.239675 -6.65376 0) (0.317673 -5.93613 4.99869e-22) (0.431185 -5.28978 0) (0.488589 -4.74066 2.37149e-22) (0.554276 -4.24348 -8.30299e-22) (0.592784 -3.78997 2.99285e-22) (0.625496 -3.36638 -1.94586e-22) (0.642683 -2.96855 1.01511e-23) (0.651478 -2.59558 6.84414e-23) (0.650902 -2.24935 -1.50771e-23) (0.644624 -1.9323 1.44885e-23) (0.633929 -1.64622 0) (0.621134 -1.39176 -1.7219e-23) (0.607445 -1.16833 1.59545e-24) (0.594125 -0.974365 1.56007e-23) (0.581777 -0.80764 2.2162e-23) (0.570913 -0.665591 -2.99048e-24) (0.561686 -0.545591 -8.82393e-24) (0.55424 -0.445028 -3.88775e-24) (0.548507 -0.361484 -1.20913e-24) (0.544528 -0.292671 5.28321e-24) (0.542163 -0.236543 7.59236e-24) (0.541471 -0.19112 -1.02323e-23) (0.542224 -0.154699 0) (0.544466 -0.12548 -7.20905e-24) (0.547737 -0.102122 2.16198e-23) (0.551951 -0.082913 3.86878e-24) (0.55636 -0.0670935 -3.72279e-24) (0.560691 -0.0529357 0) (0.564237 -0.0406689 -3.69918e-24) (0.566433 -0.0281755 3.56096e-24) (0.567438 -0.0171916 0) (0.565759 -0.00426986 0) (0.563831 0.00633166 1.26174e-24) (0.557882 0.020771 -1.94552e-23) (0.554262 0.0303301 4.11915e-23) (0.546574 0.0455086 9.06848e-24) (0.540512 0.056055 6.07153e-24) (0.137145 -8.59298 5.22897e-21) (0.223884 -7.61927 -5.56617e-21) (0.368553 -6.66804 0) (0.417297 -5.94577 -5.14322e-22) (0.512342 -5.29746 0) (0.552885 -4.74533 4.73924e-24) (0.605809 -4.2463 6.96029e-22) (0.633367 -3.79065 -6.49296e-22) (0.657019 -3.36544 1.213e-22) (0.66652 -2.96618 3.0291e-22) (0.668877 -2.59225 0) (0.66294 -2.24543 -2.8185e-23) (0.652262 -1.92817 1.88205e-23) (0.637999 -1.64218 2.8567e-24) (0.622348 -1.38802 0) (0.60639 -1.16501 0) (0.59128 -0.971509 -6.05411e-24) (0.577527 -0.805258 3.95363e-25) (0.56556 -0.663658 0) (0.555468 -0.544065 0) (0.547344 -0.443861 -3.15176e-25) (0.541079 -0.360629 3.03058e-25) (0.536681 -0.292083 0) (0.533984 -0.236183 -1.88998e-24) (0.533023 -0.190954 3.16639e-24) (0.533552 -0.15469 -6.41082e-24) (0.535592 -0.125594 -7.01313e-24) (0.538671 -0.102321 -1.84882e-23) (0.542682 -0.0831567 3.67138e-24) (0.546872 -0.0673388 3.89748e-24) (0.55095 -0.0531508 -7.58414e-24) (0.554224 -0.040815 1.83659e-24) (0.556114 -0.0282467 3.53884e-24) (0.556824 -0.0171587 -1.68977e-24) (0.554842 -0.00416408 -1.22195e-23) (0.552702 0.00653088 -1.26017e-24) (0.546554 0.0210014 1.21392e-24) (0.543008 0.0305782 -2.74981e-23) (0.53523 0.0457979 -9.0697e-24) (0.529793 0.056168 2.96787e-24) (0.349678 -8.61687 3.6896e-21) (0.381557 -7.63408 7.99758e-22) (0.497696 -6.68056 0) (0.517326 -5.95456 7.74562e-22) (0.593666 -5.30461 0) (0.617401 -4.74982 -2.41219e-22) (0.65745 -4.24911 -2.44072e-22) (0.674067 -3.79148 0) (0.688622 -3.36475 0) (0.690442 -2.96414 -3.72022e-23) (0.686359 -2.58928 1.059e-23) (0.675072 -2.24189 1.47183e-24) (0.660006 -1.92443 1.15523e-23) (0.642189 -1.6385 -2.21055e-24) (0.623691 -1.3846 0) (0.605473 -1.16197 6.22226e-24) (0.588579 -0.968897 -1.77075e-23) (0.573423 -0.80308 2.99411e-24) (0.560354 -0.661892 -4.27238e-24) (0.549397 -0.542673 2.60391e-24) (0.540593 -0.4428 0) (0.533795 -0.359855 0) (0.528975 -0.291557 -1.89645e-24) (0.525944 -0.235869 8.7426e-24) (0.524712 -0.190818 -1.24084e-23) (0.525015 -0.154703 4.61271e-24) (0.526852 -0.125721 5.15855e-24) (0.529739 -0.102524 -1.44748e-25) (0.533544 -0.0833998 1.85258e-24) (0.537515 -0.0675787 7.74838e-24) (0.541338 -0.0533567 1.92233e-24) (0.544338 -0.0409494 6.06649e-27) (0.545921 -0.0283048 -8.91711e-24) (0.546337 -0.0171125 -8.13687e-25) (0.544057 -0.00404683 1.30006e-23) (0.54171 0.00673906 6.29316e-25) (0.535376 0.0212345 -3.53909e-25) (0.531911 0.0308271 6.73139e-24) (0.524061 0.0460773 -1.75761e-25) (0.519259 0.05627 -1.50125e-24) (0.562687 -8.6358 0) (0.53998 -7.64635 -2.68586e-22) (0.627153 -6.6913 6.5511e-22) (0.617799 -5.96249 -8.90057e-22) (0.675203 -5.31123 0) (0.682177 -4.75413 0) (0.709236 -4.25192 2.22909e-22) (0.714919 -3.79247 -1.34822e-22) (0.720334 -3.36432 0) (0.714475 -2.96243 0) (0.703948 -2.58669 -1.05845e-23) (0.687321 -2.23874 -4.89843e-24) (0.667874 -1.92107 0) (0.646514 -1.63519 -5.29431e-26) (0.625176 -1.38151 -1.77094e-24) (0.604704 -1.15921 -1.71465e-25) (0.586031 -0.966529 1.27698e-24) (0.569473 -0.801106 3.12684e-24) (0.555302 -0.660292 7.01292e-25) (0.543479 -0.541414 0) (0.533993 -0.441843 0) (0.526657 -0.359161 0) (0.521413 -0.291091 0) (0.518046 -0.235599 -6.72864e-25) (0.51654 -0.190714 2.71594e-24) (0.516615 -0.154736 4.04059e-24) (0.518247 -0.125859 0) (0.52094 -0.102733 0) (0.524538 -0.083642 0) (0.528287 -0.0678131 -7.74664e-24) (0.531853 -0.0535534 0) (0.534579 -0.0410719 0) (0.535855 -0.0283498 7.12862e-24) (0.535978 -0.0170533 0) (0.533405 -0.00391845 0) (0.530856 0.00695564 0) (0.524349 0.0214699 -1.25921e-25) (0.520973 0.0310761 6.87678e-24) (0.513069 0.046346 0) (0.50891 0.0563605 -1.46696e-24) ) ; boundaryField { inlet { type freestream; freestreamValue uniform (1 0 0); value uniform (1 0 0); } outlet { type freestream; freestreamValue uniform (1 0 0); value nonuniform List<vector> 120 ( (0.272244 0.0532745 0) (0.263921 0.0528519 0) (0.255451 0.0523847 0) (0.246852 0.0518723 0) (0.238145 0.0513115 0) (0.229351 0.0506992 0) (0.220496 0.050032 0) (0.211609 0.049307 0) (0.202719 0.048521 0) (0.193863 0.0476705 0) (0.185077 0.0467522 0) (0.176405 0.0457621 0) (0.167892 0.0446958 0) (0.15959 0.0435481 0) (0.151553 0.0423126 0) (0.14384 0.0409812 0) (0.136512 0.0395442 0) (0.129632 0.0379891 0) (0.123263 0.0363008 0) (0.117461 0.034461 0) (0.112278 0.0324484 0) (0.107753 0.0302385 0) (0.103909 0.0278043 0) (0.100748 0.0251173 0) (0.0982489 0.0221491 0) (0.0963652 0.0188733 0) (0.0950267 0.0152679 0) (0.0941452 0.0113194 0) (0.0936258 0.00702484 0) (0.0933865 0.00239606 0) (0.498746 0.0564395 -1.43259e-24) (0.488766 0.0565066 -1.39809e-24) (0.478971 0.0565617 2.83039e-24) (0.46936 0.0566048 5.52234e-24) (0.459931 0.0566355 -1.09742e-23) (0.450684 0.0566539 6.83455e-26) (0.441619 0.0566598 1.60097e-23) (0.432733 0.0566533 -1.35271e-25) (0.424025 0.0566343 -1.03059e-23) (0.415495 0.0566029 -1.0393e-23) (0.40714 0.056559 -2.23509e-25) (0.398959 0.0565028 1.00728e-23) (0.390951 0.0564343 9.80689e-24) (0.383113 0.0563537 -9.80152e-24) (0.375443 0.0562611 -9.54053e-24) (0.367939 0.0561566 9.53455e-24) (0.3606 0.0560406 -8.93534e-24) (0.353423 0.0559131 8.93079e-24) (0.346406 0.0557744 0) (0.339546 0.0556248 -8.8977e-24) (0.332842 0.0554645 1.16775e-25) (0.32629 0.0552939 1.74174e-23) (0.319889 0.0551131 -8.64357e-24) (0.313636 0.0549226 0) (0.307528 0.0547226 -8.29427e-24) (0.301563 0.0545135 8.93846e-24) (0.295738 0.0542955 0) (0.290052 0.054069 -3.97731e-24) (0.2845 0.0538337 3.973e-24) (0.279082 0.0535912 0) (0.881409 0.050371 0) (0.866251 0.0506474 7.29874e-24) (0.85124 0.0509217 -7.30672e-24) (0.836379 0.0511936 0) (0.82167 0.051463 1.35862e-23) (0.807115 0.0517295 -1.44155e-23) (0.792717 0.051993 0) (0.778477 0.0522531 -1.3356e-23) (0.764399 0.0525094 2.82618e-23) (0.750484 0.0527617 7.0669e-25) (0.736734 0.0530096 -1.40036e-23) (0.723151 0.0532528 0) (0.709737 0.0534907 1.41027e-23) (0.696494 0.0537231 -1.41114e-23) (0.683423 0.0539496 1.34903e-23) (0.670526 0.0541696 -1.34988e-23) (0.657805 0.0543829 -1.32669e-23) (0.645261 0.054589 1.32743e-23) (0.632895 0.0547875 1.30324e-23) (0.620709 0.054978 -1.27303e-25) (0.608703 0.0551601 -1.2721e-23) (0.596879 0.0553333 -1.26621e-23) (0.585238 0.0554974 1.321e-25) (0.57378 0.055652 1.87407e-23) (0.562506 0.0557967 -6.72521e-26) (0.551417 0.0559311 -1.22086e-23) (0.540512 0.056055 6.07153e-24) (0.529793 0.056168 2.96787e-24) (0.519259 0.05627 -1.50125e-24) (0.50891 0.0563605 -1.46696e-24) (3.17687 0.00468717 0) (3.12089 0.0134196 0) (3.02338 0.020774 0) (2.89896 0.0266445 0) (2.75996 0.0311455 0) (2.61564 0.0344963 0) (2.47229 0.0369397 0) (2.33388 0.038698 0) (2.20267 0.0399567 0) (2.07979 0.0408633 0) (1.96559 0.041531 0) (1.85998 0.0420447 0) (1.76261 0.0424673 0) (1.67298 0.0428435 0) (1.59052 0.0432044 0) (1.51465 0.0435703 0) (1.44483 0.0439533 0) (1.38053 0.0443592 0) (1.32126 0.0447894 0) (1.26659 0.0452423 0) (1.21611 0.0457142 0) (1.16947 0.0462002 0) (1.12634 0.046695 0) (1.08642 0.0471932 0) (1.04946 0.0476899 0) (1.01521 0.0481806 0) (0.983442 0.0486614 0) (0.953972 0.0491284 0) (0.926613 0.0495785 0) (0.901201 0.0500125 0) ) ; } top { type symmetryPlane; } bottom { type symmetryPlane; } cylinder { type rotatingWallVelocity; origin (0 0 0); axis (0 0 1); omega constant -40; value nonuniform List<vector> 240 ( (0.270673 -19.9963 7.2072e-23) (0.793181 -19.9822 0) (1.31514 -19.9545 2.34326e-22) (1.83619 -19.9131 4.14193e-22) (2.35598 -19.8581 0) (2.87415 -19.7897 3.04463e-22) (3.39036 -19.7077 0) (3.90425 -19.6122 -3.87824e-22) (4.41547 -19.5034 2.76834e-22) (4.92368 -19.3813 -1.65634e-22) (5.42853 -19.246 0) (5.92967 -19.0976 0) (6.42677 -18.9361 1.68282e-22) (6.91949 -18.7617 0) (7.4075 -18.5745 0) (7.89045 -18.3746 0) (8.36803 -18.1622 -1.22313e-21) (8.83991 -17.9375 0) (9.30576 -17.7004 1.66194e-21) (9.76528 -17.4513 0) (10.2181 -17.1903 0) (10.664 -16.9176 0) (11.1027 -16.6333 0) (11.5338 -16.3377 0) (11.957 -16.0309 0) (12.3721 -15.7132 0) (12.7787 -15.3847 -3.36024e-21) (13.1767 -15.0457 0) (13.5656 -14.6965 3.76469e-21) (13.9454 -14.3372 -3.96313e-21) (19.9963 -0.270673 7.2072e-23) (19.9822 -0.793181 0) (19.9545 -1.31514 2.34326e-22) (19.9131 -1.83619 4.14193e-22) (19.8581 -2.35598 0) (19.7897 -2.87415 3.04463e-22) (19.7077 -3.39036 0) (19.6122 -3.90425 -3.87824e-22) (19.5034 -4.41547 2.76834e-22) (19.3813 -4.92368 -1.65634e-22) (19.246 -5.42853 0) (19.0976 -5.92967 0) (18.9361 -6.42677 1.68282e-22) (18.7617 -6.91949 0) (18.5745 -7.4075 0) (18.3746 -7.89045 0) (18.1622 -8.36803 -1.22313e-21) (17.9375 -8.83991 0) (17.7004 -9.30576 1.66194e-21) (17.4513 -9.76528 0) (17.1903 -10.2181 0) (16.9176 -10.664 0) (16.6333 -11.1027 0) (16.3377 -11.5338 0) (16.0309 -11.957 0) (15.7132 -12.3721 0) (15.3847 -12.7787 -3.36024e-21) (15.0457 -13.1767 0) (14.6965 -13.5656 3.76469e-21) (14.3372 -13.9454 -3.96313e-21) (14.3372 13.9454 -3.96313e-21) (14.6965 13.5656 3.76469e-21) (15.0457 13.1767 0) (15.3847 12.7787 -3.36024e-21) (15.7132 12.3721 0) (16.0309 11.957 0) (16.3377 11.5338 0) (16.6333 11.1027 0) (16.9176 10.664 0) (17.1903 10.2181 0) (17.4513 9.76528 0) (17.7004 9.30576 1.66194e-21) (17.9375 8.83991 0) (18.1622 8.36803 -1.22313e-21) (18.3746 7.89045 0) (18.5745 7.4075 0) (18.7617 6.91949 0) (18.9361 6.42677 1.68282e-22) (19.0976 5.92967 0) (19.246 5.42853 -0) (19.3813 4.92368 -1.65634e-22) (19.5034 4.41547 2.76834e-22) (19.6122 3.90425 -3.87824e-22) (19.7077 3.39036 -0) (19.7897 2.87415 3.04463e-22) (19.8581 2.35598 -0) (19.9131 1.83619 4.14193e-22) (19.9545 1.31514 2.34326e-22) (19.9822 0.793181 -0) (19.9963 0.270673 7.2072e-23) (0.270673 19.9963 7.2072e-23) (0.793181 19.9822 0) (1.31514 19.9545 2.34326e-22) (1.83619 19.9131 4.14193e-22) (2.35598 19.8581 0) (2.87415 19.7897 3.04463e-22) (3.39036 19.7077 0) (3.90425 19.6122 -3.87824e-22) (4.41547 19.5034 2.76834e-22) (4.92368 19.3813 -1.65634e-22) (5.42853 19.246 0) (5.92967 19.0976 -0) (6.42677 18.9361 1.68282e-22) (6.91949 18.7617 -0) (7.4075 18.5745 -0) (7.89045 18.3746 -0) (8.36803 18.1622 -1.22313e-21) (8.83991 17.9375 -0) (9.30576 17.7004 1.66194e-21) (9.76528 17.4513 -0) (10.2181 17.1903 -0) (10.664 16.9176 -0) (11.1027 16.6333 -0) (11.5338 16.3377 -0) (11.957 16.0309 -0) (12.3721 15.7132 -0) (12.7787 15.3847 -3.36024e-21) (13.1767 15.0457 -0) (13.5656 14.6965 3.76469e-21) (13.9454 14.3372 -3.96313e-21) (-13.9454 14.3372 -3.96313e-21) (-13.5656 14.6965 3.76469e-21) (-13.1767 15.0457 0) (-12.7787 15.3847 -3.36024e-21) (-12.3721 15.7132 0) (-11.957 16.0309 0) (-11.5338 16.3377 0) (-11.1027 16.6333 0) (-10.664 16.9176 0) (-10.2181 17.1903 0) (-9.76528 17.4513 0) (-9.30576 17.7004 1.66194e-21) (-8.83991 17.9375 0) (-8.36803 18.1622 -1.22313e-21) (-7.89045 18.3746 0) (-7.4075 18.5745 0) (-6.91949 18.7617 0) (-6.42677 18.9361 1.68282e-22) (-5.92967 19.0976 0) (-5.42853 19.246 0) (-4.92368 19.3813 -1.65634e-22) (-4.41547 19.5034 2.76834e-22) (-3.90425 19.6122 -3.87824e-22) (-3.39036 19.7077 0) (-2.87415 19.7897 3.04463e-22) (-2.35598 19.8581 0) (-1.83619 19.9131 4.14193e-22) (-1.31514 19.9545 2.34326e-22) (-0.793181 19.9822 0) (-0.270673 19.9963 7.2072e-23) (-14.3372 13.9454 -3.96313e-21) (-14.6965 13.5656 3.76469e-21) (-15.0457 13.1767 0) (-15.3847 12.7787 -3.36024e-21) (-15.7132 12.3721 0) (-16.0309 11.957 0) (-16.3377 11.5338 0) (-16.6333 11.1027 0) (-16.9176 10.664 0) (-17.1903 10.2181 0) (-17.4513 9.76528 0) (-17.7004 9.30576 1.66194e-21) (-17.9375 8.83991 0) (-18.1622 8.36803 -1.22313e-21) (-18.3746 7.89045 0) (-18.5745 7.4075 0) (-18.7617 6.91949 0) (-18.9361 6.42677 1.68282e-22) (-19.0976 5.92967 0) (-19.246 5.42853 0) (-19.3813 4.92368 -1.65634e-22) (-19.5034 4.41547 2.76834e-22) (-19.6122 3.90425 -3.87824e-22) (-19.7077 3.39036 0) (-19.7897 2.87415 3.04463e-22) (-19.8581 2.35598 0) (-19.9131 1.83619 4.14193e-22) (-19.9545 1.31514 2.34326e-22) (-19.9822 0.793181 0) (-19.9963 0.270673 7.2072e-23) (-19.9963 -0.270673 7.2072e-23) (-19.9822 -0.793181 0) (-19.9545 -1.31514 2.34326e-22) (-19.9131 -1.83619 4.14193e-22) (-19.8581 -2.35598 0) (-19.7897 -2.87415 3.04463e-22) (-19.7077 -3.39036 0) (-19.6122 -3.90425 -3.87824e-22) (-19.5034 -4.41547 2.76834e-22) (-19.3813 -4.92368 -1.65634e-22) (-19.246 -5.42853 0) (-19.0976 -5.92967 0) (-18.9361 -6.42677 1.68282e-22) (-18.7617 -6.91949 0) (-18.5745 -7.4075 0) (-18.3746 -7.89045 0) (-18.1622 -8.36803 -1.22313e-21) (-17.9375 -8.83991 0) (-17.7004 -9.30576 1.66194e-21) (-17.4513 -9.76528 0) (-17.1903 -10.2181 0) (-16.9176 -10.664 0) (-16.6333 -11.1027 0) (-16.3377 -11.5338 0) (-16.0309 -11.957 0) (-15.7132 -12.3721 0) (-15.3847 -12.7787 -3.36024e-21) (-15.0457 -13.1767 0) (-14.6965 -13.5656 3.76469e-21) (-14.3372 -13.9454 -3.96313e-21) (-13.9454 -14.3372 -3.96313e-21) (-13.5656 -14.6965 3.76469e-21) (-13.1767 -15.0457 0) (-12.7787 -15.3847 -3.36024e-21) (-12.3721 -15.7132 0) (-11.957 -16.0309 0) (-11.5338 -16.3377 0) (-11.1027 -16.6333 0) (-10.664 -16.9176 0) (-10.2181 -17.1903 0) (-9.76528 -17.4513 0) (-9.30576 -17.7004 1.66194e-21) (-8.83991 -17.9375 0) (-8.36803 -18.1622 -1.22313e-21) (-7.89045 -18.3746 0) (-7.4075 -18.5745 0) (-6.91949 -18.7617 0) (-6.42677 -18.9361 1.68282e-22) (-5.92967 -19.0976 0) (-5.42853 -19.246 0) (-4.92368 -19.3813 -1.65634e-22) (-4.41547 -19.5034 2.76834e-22) (-3.90425 -19.6122 -3.87824e-22) (-3.39036 -19.7077 0) (-2.87415 -19.7897 3.04463e-22) (-2.35598 -19.8581 0) (-1.83619 -19.9131 4.14193e-22) (-1.31514 -19.9545 2.34326e-22) (-0.793181 -19.9822 0) (-0.270673 -19.9963 7.2072e-23) ) ; } frontandback { type empty; } } // ************************************************************************* //
[ "jezvonek@gmail.com" ]
jezvonek@gmail.com
14ac84387fa863f81936cc75111357c6604880e8
bac7267590c6267b489178c8717e42a1865bb46b
/WildMagic5/LibMathematics/Intersection/Wm5IntrLine2Line2.h
5a15b66d768b13edd7db3bf37cd1477d4fb40d42
[]
no_license
VB6Hobbyst7/GeometricTools-Apple
1e53f260e84f8942e12adf7591b83ba2dd46a7f1
07b9764871a9dbe1240b6181039dd703e118a628
refs/heads/master
2021-02-11T11:17:56.813941
2013-11-26T15:25:10
2013-11-26T15:25:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,041
h
// Geometric Tools, LLC // Copyright (c) 1998-2013 // Distributed under the Boost Software License, Version 1.0. // http://www.boost.org/LICENSE_1_0.txt // http://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // // File Version: 5.0.1 (2010/10/01) #ifndef WM5INTRLINE2LINE2_H #define WM5INTRLINE2LINE2_H #include "Wm5MathematicsLIB.h" #include "Wm5Intersector.h" #include "Wm5Line2.h" namespace Wm5 { template <typename Real> class WM5_MATHEMATICS_ITEM IntrLine2Line2 : public Intersector<Real,Vector2<Real> > { public: IntrLine2Line2 (const Line2<Real>& line0, const Line2<Real>& line1); // Object access. const Line2<Real>& GetLine0 () const; const Line2<Real>& GetLine1 () const; // Static intersection query. virtual bool Test (); virtual bool Find (); // The intersection set. If the lines do not intersect, GetQuantity() // returns 0. If the lines intersect in a single point, GetQuantity() // returns 1, in which case GetPoint() returns the point of intersection // and Intersector::GetIntersectionType() returns IT_POINT. If the lines // are the same geometric entity, GetQuantity() returns INT_MAX and // Intersector::GetIntersectionType() returns IT_LINE. int GetQuantity () const; const Vector2<Real>& GetPoint () const; private: using Intersector<Real,Vector2<Real> >::IT_EMPTY; using Intersector<Real,Vector2<Real> >::IT_POINT; using Intersector<Real,Vector2<Real> >::IT_LINE; using Intersector<Real,Vector2<Real> >::mIntersectionType; // Determine the relationship between the two lines. int Classify (Real* s, Vector2<Real>* diff, Vector2<Real>* diffN); // The objects to intersect. const Line2<Real>* mLine0; const Line2<Real>* mLine1; // Information about the intersection set. int mQuantity; Vector2<Real> mPoint; }; typedef IntrLine2Line2<float> IntrLine2Line2f; typedef IntrLine2Line2<double> IntrLine2Line2d; } #endif
[ "tprepscius" ]
tprepscius
5c325d8a8b7eb383625785674ab7bab5798daf99
3d9d8bb23bc237cbeb71827093cf39314144747f
/src/qt/guiutil.cpp
f98e6218627e81db8af88a0edb4ba86fa35cb697
[ "MIT" ]
permissive
Gundrak/Civitas-1
809e4670624393cc8488885d181dea3b52fa4bb4
0b9733e0c15cca4b72e339445d1515d40eeaf82d
refs/heads/master
2020-06-27T11:38:31.750308
2019-07-31T23:52:37
2019-07-31T23:52:37
199,944,147
0
0
MIT
2019-07-31T23:49:02
2019-07-31T23:49:02
null
UTF-8
C++
false
false
31,012
cpp
// Copyright (c) 2011-2014 The Bitcoin developers // Copyright (c) 2014-2015 The Dash developers // Copyright (c) 2015-2017 The PIVX developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "guiutil.h" #include "bitcoinaddressvalidator.h" #include "bitcoinunits.h" #include "qvalidatedlineedit.h" #include "walletmodel.h" #include "init.h" #include "main.h" #include "primitives/transaction.h" #include "protocol.h" #include "script/script.h" #include "script/standard.h" #include "util.h" #ifdef WIN32 #ifdef _WIN32_WINNT #undef _WIN32_WINNT #endif #define _WIN32_WINNT 0x0501 #ifdef _WIN32_IE #undef _WIN32_IE #endif #define _WIN32_IE 0x0501 #define WIN32_LEAN_AND_MEAN 1 #ifndef NOMINMAX #define NOMINMAX #endif #include "shellapi.h" #include "shlobj.h" #include "shlwapi.h" #endif #include <boost/filesystem.hpp> #include <boost/filesystem/fstream.hpp> #if BOOST_FILESYSTEM_VERSION >= 3 #include <boost/filesystem/detail/utf8_codecvt_facet.hpp> #endif #include <QAbstractItemView> #include <QApplication> #include <QClipboard> #include <QDateTime> #include <QDesktopServices> #include <QDesktopWidget> #include <QDoubleValidator> #include <QFileDialog> #include <QFont> #include <QLineEdit> #include <QSettings> #include <QTextDocument> // for Qt::mightBeRichText #include <QThread> #if QT_VERSION < 0x050000 #include <QUrl> #else #include <QUrlQuery> #endif #if BOOST_FILESYSTEM_VERSION >= 3 static boost::filesystem::detail::utf8_codecvt_facet utf8; #endif #if defined(Q_OS_MAC) extern double NSAppKitVersionNumber; #if !defined(NSAppKitVersionNumber10_8) #define NSAppKitVersionNumber10_8 1187 #endif #if !defined(NSAppKitVersionNumber10_9) #define NSAppKitVersionNumber10_9 1265 #endif #endif #define URI_SCHEME "civitas" namespace GUIUtil { QString dateTimeStr(const QDateTime& date) { return date.date().toString(Qt::SystemLocaleShortDate) + QString(" ") + date.toString("hh:mm"); } QString dateTimeStr(qint64 nTime) { return dateTimeStr(QDateTime::fromTime_t((qint32)nTime)); } QFont bitcoinAddressFont() { QFont font("Monospace"); #if QT_VERSION >= 0x040800 font.setStyleHint(QFont::Monospace); #else font.setStyleHint(QFont::TypeWriter); #endif return font; } void setupAddressWidget(QValidatedLineEdit* widget, QWidget* parent) { parent->setFocusProxy(widget); widget->setFont(bitcoinAddressFont()); #if QT_VERSION >= 0x040700 // We don't want translators to use own addresses in translations // and this is the only place, where this address is supplied. widget->setPlaceholderText(QObject::tr("Enter a Civitas address (e.g. %1)").arg("PCYiHgGJJ6xGHqivmdZrYjRnhaYf6AJ2Mp")); #endif widget->setValidator(new BitcoinAddressEntryValidator(parent)); widget->setCheckValidator(new BitcoinAddressCheckValidator(parent)); } void setupAmountWidget(QLineEdit* widget, QWidget* parent) { QDoubleValidator* amountValidator = new QDoubleValidator(parent); amountValidator->setDecimals(8); amountValidator->setBottom(0.0); widget->setValidator(amountValidator); widget->setAlignment(Qt::AlignRight | Qt::AlignVCenter); } bool parseBitcoinURI(const QUrl& uri, SendCoinsRecipient* out) { // return if URI is not valid or is no Civitas: URI if (!uri.isValid() || uri.scheme() != QString(URI_SCHEME)) return false; SendCoinsRecipient rv; rv.address = uri.path(); // Trim any following forward slash which may have been added by the OS if (rv.address.endsWith("/")) { rv.address.truncate(rv.address.length() - 1); } rv.amount = 0; #if QT_VERSION < 0x050000 QList<QPair<QString, QString> > items = uri.queryItems(); #else QUrlQuery uriQuery(uri); QList<QPair<QString, QString> > items = uriQuery.queryItems(); #endif for (QList<QPair<QString, QString> >::iterator i = items.begin(); i != items.end(); i++) { bool fShouldReturnFalse = false; if (i->first.startsWith("req-")) { i->first.remove(0, 4); fShouldReturnFalse = true; } if (i->first == "label") { rv.label = i->second; fShouldReturnFalse = false; } if (i->first == "message") { rv.message = i->second; fShouldReturnFalse = false; } else if (i->first == "amount") { if (!i->second.isEmpty()) { if (!BitcoinUnits::parse(BitcoinUnits::CIV, i->second, &rv.amount)) { return false; } } fShouldReturnFalse = false; } if (fShouldReturnFalse) return false; } if (out) { *out = rv; } return true; } bool parseBitcoinURI(QString uri, SendCoinsRecipient* out) { // Convert civitas:// to civitas: // // Cannot handle this later, because civitas:// will cause Qt to see the part after // as host, // which will lower-case it (and thus invalidate the address). if (uri.startsWith(URI_SCHEME "://", Qt::CaseInsensitive)) { uri.replace(0, std::strlen(URI_SCHEME) + 3, URI_SCHEME ":"); } QUrl uriInstance(uri); return parseBitcoinURI(uriInstance, out); } QString formatBitcoinURI(const SendCoinsRecipient& info) { QString ret = QString(URI_SCHEME ":%1").arg(info.address); int paramCount = 0; if (info.amount) { ret += QString("?amount=%1").arg(BitcoinUnits::format(BitcoinUnits::CIV, info.amount, false, BitcoinUnits::separatorNever)); paramCount++; } if (!info.label.isEmpty()) { QString lbl(QUrl::toPercentEncoding(info.label)); ret += QString("%1label=%2").arg(paramCount == 0 ? "?" : "&").arg(lbl); paramCount++; } if (!info.message.isEmpty()) { QString msg(QUrl::toPercentEncoding(info.message)); ret += QString("%1message=%2").arg(paramCount == 0 ? "?" : "&").arg(msg); paramCount++; } return ret; } bool isDust(const QString& address, const CAmount& amount) { CTxDestination dest = CBitcoinAddress(address.toStdString()).Get(); CScript script = GetScriptForDestination(dest); CTxOut txOut(amount, script); return txOut.IsDust(::minRelayTxFee); } QString HtmlEscape(const QString& str, bool fMultiLine) { #if QT_VERSION < 0x050000 QString escaped = Qt::escape(str); #else QString escaped = str.toHtmlEscaped(); #endif escaped = escaped.replace(" ", "&nbsp;"); if (fMultiLine) { escaped = escaped.replace("\n", "<br>\n"); } return escaped; } QString HtmlEscape(const std::string& str, bool fMultiLine) { return HtmlEscape(QString::fromStdString(str), fMultiLine); } void copyEntryData(QAbstractItemView* view, int column, int role) { if (!view || !view->selectionModel()) return; QModelIndexList selection = view->selectionModel()->selectedRows(column); if (!selection.isEmpty()) { // Copy first item setClipboard(selection.at(0).data(role).toString()); } } QString getSaveFileName(QWidget* parent, const QString& caption, const QString& dir, const QString& filter, QString* selectedSuffixOut) { QString selectedFilter; QString myDir; if (dir.isEmpty()) // Default to user documents location { #if QT_VERSION < 0x050000 myDir = QDesktopServices::storageLocation(QDesktopServices::DocumentsLocation); #else myDir = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation); #endif } else { myDir = dir; } /* Directly convert path to native OS path separators */ QString result = QDir::toNativeSeparators(QFileDialog::getSaveFileName(parent, caption, myDir, filter, &selectedFilter)); /* Extract first suffix from filter pattern "Description (*.foo)" or "Description (*.foo *.bar ...) */ QRegExp filter_re(".* \\(\\*\\.(.*)[ \\)]"); QString selectedSuffix; if (filter_re.exactMatch(selectedFilter)) { selectedSuffix = filter_re.cap(1); } /* Add suffix if needed */ QFileInfo info(result); if (!result.isEmpty()) { if (info.suffix().isEmpty() && !selectedSuffix.isEmpty()) { /* No suffix specified, add selected suffix */ if (!result.endsWith(".")) result.append("."); result.append(selectedSuffix); } } /* Return selected suffix if asked to */ if (selectedSuffixOut) { *selectedSuffixOut = selectedSuffix; } return result; } QString getOpenFileName(QWidget* parent, const QString& caption, const QString& dir, const QString& filter, QString* selectedSuffixOut) { QString selectedFilter; QString myDir; if (dir.isEmpty()) // Default to user documents location { #if QT_VERSION < 0x050000 myDir = QDesktopServices::storageLocation(QDesktopServices::DocumentsLocation); #else myDir = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation); #endif } else { myDir = dir; } /* Directly convert path to native OS path separators */ QString result = QDir::toNativeSeparators(QFileDialog::getOpenFileName(parent, caption, myDir, filter, &selectedFilter)); if (selectedSuffixOut) { /* Extract first suffix from filter pattern "Description (*.foo)" or "Description (*.foo *.bar ...) */ QRegExp filter_re(".* \\(\\*\\.(.*)[ \\)]"); QString selectedSuffix; if (filter_re.exactMatch(selectedFilter)) { selectedSuffix = filter_re.cap(1); } *selectedSuffixOut = selectedSuffix; } return result; } Qt::ConnectionType blockingGUIThreadConnection() { if (QThread::currentThread() != qApp->thread()) { return Qt::BlockingQueuedConnection; } else { return Qt::DirectConnection; } } bool checkPoint(const QPoint& p, const QWidget* w) { QWidget* atW = QApplication::widgetAt(w->mapToGlobal(p)); if (!atW) return false; return atW->topLevelWidget() == w; } bool isObscured(QWidget* w) { return !(checkPoint(QPoint(0, 0), w) && checkPoint(QPoint(w->width() - 1, 0), w) && checkPoint(QPoint(0, w->height() - 1), w) && checkPoint(QPoint(w->width() - 1, w->height() - 1), w) && checkPoint(QPoint(w->width() / 2, w->height() / 2), w)); } void openDebugLogfile() { boost::filesystem::path pathDebug = GetDataDir() / "debug.log"; /* Open debug.log with the associated application */ if (boost::filesystem::exists(pathDebug)) QDesktopServices::openUrl(QUrl::fromLocalFile(boostPathToQString(pathDebug))); } void openConfigfile() { boost::filesystem::path pathConfig = GetConfigFile(); /* Open civitas.conf with the associated application */ if (boost::filesystem::exists(pathConfig)) QDesktopServices::openUrl(QUrl::fromLocalFile(boostPathToQString(pathConfig))); } void openMNConfigfile() { boost::filesystem::path pathConfig = GetMasternodeConfigFile(); /* Open masternode.conf with the associated application */ if (boost::filesystem::exists(pathConfig)) QDesktopServices::openUrl(QUrl::fromLocalFile(boostPathToQString(pathConfig))); } void showBackups() { boost::filesystem::path pathBackups = GetDataDir() / "backups"; /* Open folder with default browser */ if (boost::filesystem::exists(pathBackups)) QDesktopServices::openUrl(QUrl::fromLocalFile(boostPathToQString(pathBackups))); } void SubstituteFonts(const QString& language) { #if defined(Q_OS_MAC) // Background: // OSX's default font changed in 10.9 and QT is unable to find it with its // usual fallback methods when building against the 10.7 sdk or lower. // The 10.8 SDK added a function to let it find the correct fallback font. // If this fallback is not properly loaded, some characters may fail to // render correctly. // // The same thing happened with 10.10. .Helvetica Neue DeskInterface is now default. // // Solution: If building with the 10.7 SDK or lower and the user's platform // is 10.9 or higher at runtime, substitute the correct font. This needs to // happen before the QApplication is created. #if defined(MAC_OS_X_VERSION_MAX_ALLOWED) && MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_8 if (floor(NSAppKitVersionNumber) > NSAppKitVersionNumber10_8) { if (floor(NSAppKitVersionNumber) <= NSAppKitVersionNumber10_9) /* On a 10.9 - 10.9.x system */ QFont::insertSubstitution(".Lucida Grande UI", "Lucida Grande"); else { /* 10.10 or later system */ if (language == "zh_CN" || language == "zh_TW" || language == "zh_HK") // traditional or simplified Chinese QFont::insertSubstitution(".Helvetica Neue DeskInterface", "Heiti SC"); else if (language == "ja") // Japanesee QFont::insertSubstitution(".Helvetica Neue DeskInterface", "Songti SC"); else QFont::insertSubstitution(".Helvetica Neue DeskInterface", "Lucida Grande"); } } #endif #endif } ToolTipToRichTextFilter::ToolTipToRichTextFilter(int size_threshold, QObject* parent) : QObject(parent), size_threshold(size_threshold) { } bool ToolTipToRichTextFilter::eventFilter(QObject* obj, QEvent* evt) { if (evt->type() == QEvent::ToolTipChange) { QWidget* widget = static_cast<QWidget*>(obj); QString tooltip = widget->toolTip(); if (tooltip.size() > size_threshold && !tooltip.startsWith("<qt")) { // Escape the current message as HTML and replace \n by <br> if it's not rich text if (!Qt::mightBeRichText(tooltip)) tooltip = HtmlEscape(tooltip, true); // Envelop with <qt></qt> to make sure Qt detects every tooltip as rich text // and style='white-space:pre' to preserve line composition tooltip = "<qt style='white-space:pre'>" + tooltip + "</qt>"; widget->setToolTip(tooltip); return true; } } return QObject::eventFilter(obj, evt); } void TableViewLastColumnResizingFixer::connectViewHeadersSignals() { connect(tableView->horizontalHeader(), SIGNAL(sectionResized(int, int, int)), this, SLOT(on_sectionResized(int, int, int))); connect(tableView->horizontalHeader(), SIGNAL(geometriesChanged()), this, SLOT(on_geometriesChanged())); } // We need to disconnect these while handling the resize events, otherwise we can enter infinite loops. void TableViewLastColumnResizingFixer::disconnectViewHeadersSignals() { disconnect(tableView->horizontalHeader(), SIGNAL(sectionResized(int, int, int)), this, SLOT(on_sectionResized(int, int, int))); disconnect(tableView->horizontalHeader(), SIGNAL(geometriesChanged()), this, SLOT(on_geometriesChanged())); } // Setup the resize mode, handles compatibility for Qt5 and below as the method signatures changed. // Refactored here for readability. void TableViewLastColumnResizingFixer::setViewHeaderResizeMode(int logicalIndex, QHeaderView::ResizeMode resizeMode) { #if QT_VERSION < 0x050000 tableView->horizontalHeader()->setResizeMode(logicalIndex, resizeMode); #else tableView->horizontalHeader()->setSectionResizeMode(logicalIndex, resizeMode); #endif } void TableViewLastColumnResizingFixer::resizeColumn(int nColumnIndex, int width) { tableView->setColumnWidth(nColumnIndex, width); tableView->horizontalHeader()->resizeSection(nColumnIndex, width); } int TableViewLastColumnResizingFixer::getColumnsWidth() { int nColumnsWidthSum = 0; for (int i = 0; i < columnCount; i++) { nColumnsWidthSum += tableView->horizontalHeader()->sectionSize(i); } return nColumnsWidthSum; } int TableViewLastColumnResizingFixer::getAvailableWidthForColumn(int column) { int nResult = lastColumnMinimumWidth; int nTableWidth = tableView->horizontalHeader()->width(); if (nTableWidth > 0) { int nOtherColsWidth = getColumnsWidth() - tableView->horizontalHeader()->sectionSize(column); nResult = std::max(nResult, nTableWidth - nOtherColsWidth); } return nResult; } // Make sure we don't make the columns wider than the tables viewport width. void TableViewLastColumnResizingFixer::adjustTableColumnsWidth() { disconnectViewHeadersSignals(); resizeColumn(lastColumnIndex, getAvailableWidthForColumn(lastColumnIndex)); connectViewHeadersSignals(); int nTableWidth = tableView->horizontalHeader()->width(); int nColsWidth = getColumnsWidth(); if (nColsWidth > nTableWidth) { resizeColumn(secondToLastColumnIndex, getAvailableWidthForColumn(secondToLastColumnIndex)); } } // Make column use all the space available, useful during window resizing. void TableViewLastColumnResizingFixer::stretchColumnWidth(int column) { disconnectViewHeadersSignals(); resizeColumn(column, getAvailableWidthForColumn(column)); connectViewHeadersSignals(); } // When a section is resized this is a slot-proxy for ajustAmountColumnWidth(). void TableViewLastColumnResizingFixer::on_sectionResized(int logicalIndex, int oldSize, int newSize) { adjustTableColumnsWidth(); int remainingWidth = getAvailableWidthForColumn(logicalIndex); if (newSize > remainingWidth) { resizeColumn(logicalIndex, remainingWidth); } } // When the tabless geometry is ready, we manually perform the stretch of the "Message" column, // as the "Stretch" resize mode does not allow for interactive resizing. void TableViewLastColumnResizingFixer::on_geometriesChanged() { if ((getColumnsWidth() - this->tableView->horizontalHeader()->width()) != 0) { disconnectViewHeadersSignals(); resizeColumn(secondToLastColumnIndex, getAvailableWidthForColumn(secondToLastColumnIndex)); connectViewHeadersSignals(); } } /** * Initializes all internal variables and prepares the * the resize modes of the last 2 columns of the table and */ TableViewLastColumnResizingFixer::TableViewLastColumnResizingFixer(QTableView* table, int lastColMinimumWidth, int allColsMinimumWidth) : tableView(table), lastColumnMinimumWidth(lastColMinimumWidth), allColumnsMinimumWidth(allColsMinimumWidth) { columnCount = tableView->horizontalHeader()->count(); lastColumnIndex = columnCount - 1; secondToLastColumnIndex = columnCount - 2; tableView->horizontalHeader()->setMinimumSectionSize(allColumnsMinimumWidth); setViewHeaderResizeMode(secondToLastColumnIndex, QHeaderView::Interactive); setViewHeaderResizeMode(lastColumnIndex, QHeaderView::Interactive); } /** * Class constructor. * @param[in] seconds Number of seconds to convert to a DHMS string */ DHMSTableWidgetItem::DHMSTableWidgetItem(const int64_t seconds) : QTableWidgetItem(), value(seconds) { this->setText(QString::fromStdString(DurationToDHMS(seconds))); } /** * Comparator overload to ensure that the "DHMS"-type durations as used in * the "active-since" list in the masternode tab are sorted by the elapsed * duration (versus the string value being sorted). * @param[in] item Right hand side of the less than operator */ bool DHMSTableWidgetItem::operator<(QTableWidgetItem const& item) const { DHMSTableWidgetItem const* rhs = dynamic_cast<DHMSTableWidgetItem const*>(&item); if (!rhs) return QTableWidgetItem::operator<(item); return value < rhs->value; } #ifdef WIN32 boost::filesystem::path static StartupShortcutPath() { return GetSpecialFolderPath(CSIDL_STARTUP) / "Civitas.lnk"; } bool GetStartOnSystemStartup() { // check for Civitas.lnk return boost::filesystem::exists(StartupShortcutPath()); } bool SetStartOnSystemStartup(bool fAutoStart) { // If the shortcut exists already, remove it for updating boost::filesystem::remove(StartupShortcutPath()); if (fAutoStart) { CoInitialize(NULL); // Get a pointer to the IShellLink interface. IShellLink* psl = NULL; HRESULT hres = CoCreateInstance(CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER, IID_IShellLink, reinterpret_cast<void**>(&psl)); if (SUCCEEDED(hres)) { // Get the current executable path TCHAR pszExePath[MAX_PATH]; GetModuleFileName(NULL, pszExePath, sizeof(pszExePath)); TCHAR pszArgs[5] = TEXT("-min"); // Set the path to the shortcut target psl->SetPath(pszExePath); PathRemoveFileSpec(pszExePath); psl->SetWorkingDirectory(pszExePath); psl->SetShowCmd(SW_SHOWMINNOACTIVE); psl->SetArguments(pszArgs); // Query IShellLink for the IPersistFile interface for // saving the shortcut in persistent storage. IPersistFile* ppf = NULL; hres = psl->QueryInterface(IID_IPersistFile, reinterpret_cast<void**>(&ppf)); if (SUCCEEDED(hres)) { WCHAR pwsz[MAX_PATH]; // Ensure that the string is ANSI. MultiByteToWideChar(CP_ACP, 0, StartupShortcutPath().string().c_str(), -1, pwsz, MAX_PATH); // Save the link by calling IPersistFile::Save. hres = ppf->Save(pwsz, TRUE); ppf->Release(); psl->Release(); CoUninitialize(); return true; } psl->Release(); } CoUninitialize(); return false; } return true; } #elif defined(Q_OS_LINUX) // Follow the Desktop Application Autostart Spec: // http://standards.freedesktop.org/autostart-spec/autostart-spec-latest.html boost::filesystem::path static GetAutostartDir() { namespace fs = boost::filesystem; char* pszConfigHome = getenv("XDG_CONFIG_HOME"); if (pszConfigHome) return fs::path(pszConfigHome) / "autostart"; char* pszHome = getenv("HOME"); if (pszHome) return fs::path(pszHome) / ".config" / "autostart"; return fs::path(); } boost::filesystem::path static GetAutostartFilePath() { return GetAutostartDir() / "civitas.desktop"; } bool GetStartOnSystemStartup() { boost::filesystem::ifstream optionFile(GetAutostartFilePath()); if (!optionFile.good()) return false; // Scan through file for "Hidden=true": std::string line; while (!optionFile.eof()) { getline(optionFile, line); if (line.find("Hidden") != std::string::npos && line.find("true") != std::string::npos) return false; } optionFile.close(); return true; } bool SetStartOnSystemStartup(bool fAutoStart) { if (!fAutoStart) boost::filesystem::remove(GetAutostartFilePath()); else { char pszExePath[MAX_PATH + 1]; memset(pszExePath, 0, sizeof(pszExePath)); if (readlink("/proc/self/exe", pszExePath, sizeof(pszExePath) - 1) == -1) return false; boost::filesystem::create_directories(GetAutostartDir()); boost::filesystem::ofstream optionFile(GetAutostartFilePath(), std::ios_base::out | std::ios_base::trunc); if (!optionFile.good()) return false; // Write a civitas.desktop file to the autostart directory: optionFile << "[Desktop Entry]\n"; optionFile << "Type=Application\n"; optionFile << "Name=Civitas\n"; optionFile << "Exec=" << pszExePath << " -min\n"; optionFile << "Terminal=false\n"; optionFile << "Hidden=false\n"; optionFile.close(); } return true; } #elif defined(Q_OS_MAC) #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wdeprecated-declarations" // based on: https://github.com/Mozketo/LaunchAtLoginController/blob/master/LaunchAtLoginController.m #include <CoreFoundation/CoreFoundation.h> #include <CoreServices/CoreServices.h> LSSharedFileListItemRef findStartupItemInList(LSSharedFileListRef list, CFURLRef findUrl); LSSharedFileListItemRef findStartupItemInList(LSSharedFileListRef list, CFURLRef findUrl) { // loop through the list of startup items and try to find the civitas app CFArrayRef listSnapshot = LSSharedFileListCopySnapshot(list, NULL); for (int i = 0; i < CFArrayGetCount(listSnapshot); i++) { LSSharedFileListItemRef item = (LSSharedFileListItemRef)CFArrayGetValueAtIndex(listSnapshot, i); UInt32 resolutionFlags = kLSSharedFileListNoUserInteraction | kLSSharedFileListDoNotMountVolumes; CFURLRef currentItemURL = NULL; #if defined(MAC_OS_X_VERSION_MAX_ALLOWED) && MAC_OS_X_VERSION_MAX_ALLOWED >= 10100 if(&LSSharedFileListItemCopyResolvedURL) currentItemURL = LSSharedFileListItemCopyResolvedURL(item, resolutionFlags, NULL); #if defined(MAC_OS_X_VERSION_MIN_REQUIRED) && MAC_OS_X_VERSION_MIN_REQUIRED < 10100 else LSSharedFileListItemResolve(item, resolutionFlags, &currentItemURL, NULL); #endif #else LSSharedFileListItemResolve(item, resolutionFlags, &currentItemURL, NULL); #endif if(currentItemURL && CFEqual(currentItemURL, findUrl)) { // found CFRelease(currentItemURL); return item; } if (currentItemURL) { CFRelease(currentItemURL); } } return NULL; } bool GetStartOnSystemStartup() { CFURLRef bitcoinAppUrl = CFBundleCopyBundleURL(CFBundleGetMainBundle()); LSSharedFileListRef loginItems = LSSharedFileListCreate(NULL, kLSSharedFileListSessionLoginItems, NULL); LSSharedFileListItemRef foundItem = findStartupItemInList(loginItems, bitcoinAppUrl); return !!foundItem; // return boolified object } bool SetStartOnSystemStartup(bool fAutoStart) { CFURLRef bitcoinAppUrl = CFBundleCopyBundleURL(CFBundleGetMainBundle()); LSSharedFileListRef loginItems = LSSharedFileListCreate(NULL, kLSSharedFileListSessionLoginItems, NULL); LSSharedFileListItemRef foundItem = findStartupItemInList(loginItems, bitcoinAppUrl); if (fAutoStart && !foundItem) { // add civitas app to startup item list LSSharedFileListInsertItemURL(loginItems, kLSSharedFileListItemBeforeFirst, NULL, NULL, bitcoinAppUrl, NULL, NULL); } else if (!fAutoStart && foundItem) { // remove item LSSharedFileListItemRemove(loginItems, foundItem); } return true; } #pragma GCC diagnostic pop #else bool GetStartOnSystemStartup() { return false; } bool SetStartOnSystemStartup(bool fAutoStart) { return false; } #endif void saveWindowGeometry(const QString& strSetting, QWidget* parent) { QSettings settings; settings.setValue(strSetting + "Pos", parent->pos()); settings.setValue(strSetting + "Size", parent->size()); } void restoreWindowGeometry(const QString& strSetting, const QSize& defaultSize, QWidget* parent) { QSettings settings; QPoint pos = settings.value(strSetting + "Pos").toPoint(); QSize size = settings.value(strSetting + "Size", defaultSize).toSize(); if (!pos.x() && !pos.y()) { QRect screen = QApplication::desktop()->screenGeometry(); pos.setX((screen.width() - size.width()) / 2); pos.setY((screen.height() - size.height()) / 2); } parent->resize(size); parent->move(pos); } // Check whether a theme is not build-in bool isExternal(QString theme) { if (theme.isEmpty()) return false; return (theme.operator!=("default")); } // Open CSS when configured QString loadStyleSheet() { QString styleSheet; QSettings settings; QString cssName; QString theme = settings.value("theme", "").toString(); if (isExternal(theme)) { // External CSS settings.setValue("fCSSexternal", true); boost::filesystem::path pathAddr = GetDataDir() / "themes/"; cssName = pathAddr.string().c_str() + theme + "/css/theme.css"; } else { // Build-in CSS settings.setValue("fCSSexternal", false); if (!theme.isEmpty()) { cssName = QString(":/css/") + theme; } else { cssName = QString(":/css/default"); settings.setValue("theme", "default"); } } QFile qFile(cssName); if (qFile.open(QFile::ReadOnly)) { styleSheet = QLatin1String(qFile.readAll()); } return styleSheet; } void setClipboard(const QString& str) { QApplication::clipboard()->setText(str, QClipboard::Clipboard); QApplication::clipboard()->setText(str, QClipboard::Selection); } #if BOOST_FILESYSTEM_VERSION >= 3 boost::filesystem::path qstringToBoostPath(const QString& path) { return boost::filesystem::path(path.toStdString(), utf8); } QString boostPathToQString(const boost::filesystem::path& path) { return QString::fromStdString(path.string(utf8)); } #else #warning Conversion between boost path and QString can use invalid character encoding with boost_filesystem v2 and older boost::filesystem::path qstringToBoostPath(const QString& path) { return boost::filesystem::path(path.toStdString()); } QString boostPathToQString(const boost::filesystem::path& path) { return QString::fromStdString(path.string()); } #endif QString formatDurationStr(int secs) { QStringList strList; int days = secs / 86400; int hours = (secs % 86400) / 3600; int mins = (secs % 3600) / 60; int seconds = secs % 60; if (days) strList.append(QString(QObject::tr("%1 d")).arg(days)); if (hours) strList.append(QString(QObject::tr("%1 h")).arg(hours)); if (mins) strList.append(QString(QObject::tr("%1 m")).arg(mins)); if (seconds || (!days && !hours && !mins)) strList.append(QString(QObject::tr("%1 s")).arg(seconds)); return strList.join(" "); } QString formatServicesStr(quint64 mask) { QStringList strList; // Just scan the last 8 bits for now. for (int i = 0; i < 8; i++) { uint64_t check = 1 << i; if (mask & check) { switch (check) { case NODE_NETWORK: strList.append(QObject::tr("NETWORK")); break; case NODE_BLOOM: case NODE_BLOOM_WITHOUT_MN: strList.append(QObject::tr("BLOOM")); break; default: strList.append(QString("%1[%2]").arg(QObject::tr("UNKNOWN")).arg(check)); } } } if (strList.size()) return strList.join(" & "); else return QObject::tr("None"); } QString formatPingTime(double dPingTime) { return dPingTime == 0 ? QObject::tr("N/A") : QString(QObject::tr("%1 ms")).arg(QString::number((int)(dPingTime * 1000), 10)); } } // namespace GUIUtil
[ "debian@packer-debian-7-amd64.droplet.local" ]
debian@packer-debian-7-amd64.droplet.local
8560b1d65cba4d0e63f64eabbd9e5b3aea3ecd8e
75452de12ec9eea346e3b9c7789ac0abf3eb1d73
/src/ui/bin/root_presenter/tests/fakes/fake_session.h
3d7f18142b6a70f5bc2d0960c29dfbe204f0b7dc
[ "BSD-3-Clause" ]
permissive
oshunter/fuchsia
c9285cc8c14be067b80246e701434bbef4d606d1
2196fc8c176d01969466b97bba3f31ec55f7767b
refs/heads/master
2022-12-22T11:30:15.486382
2020-08-16T03:41:23
2020-08-16T03:41:23
287,920,017
2
2
BSD-3-Clause
2022-12-16T03:30:27
2020-08-16T10:18:30
C++
UTF-8
C++
false
false
2,140
h
// Copyright 2019 The Fuchsia 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 SRC_UI_BIN_ROOT_PRESENTER_TESTS_FAKES_FAKE_SESSION_H_ #define SRC_UI_BIN_ROOT_PRESENTER_TESTS_FAKES_FAKE_SESSION_H_ #include <fuchsia/ui/scenic/cpp/fidl.h> #include <fuchsia/ui/scenic/cpp/fidl_test_base.h> #include <lib/fidl/cpp/binding.h> #include <lib/ui/scenic/cpp/resources.h> namespace root_presenter { namespace testing { class FakeSession : public fuchsia::ui::scenic::Session { public: FakeSession(); ~FakeSession() override; // void NotImplemented_(const std::string& name) final {} // Binds the session. void Bind(fidl::InterfaceRequest<fuchsia::ui::scenic::Session> request, fuchsia::ui::scenic::SessionListenerPtr listener); // Session implementation. void Enqueue(std::vector<fuchsia::ui::scenic::Command> cmds) override; void Present(uint64_t presentation_time, std::vector<zx::event> acquire_fences, std::vector<zx::event> release_fences, PresentCallback callback) override; void Present(uint64_t presentation_time, PresentCallback callback); void RequestPresentationTimes(zx_duration_t request_prediction_span, RequestPresentationTimesCallback callback) override; void Present2(fuchsia::ui::scenic::Present2Args args, Present2Callback callback) override; void SetDebugName(std::string debug_name) override {} // Test method bool PresentWasCalled() { return presents_called_ > 0; } int PresentsCalled() { return presents_called_; } // Test method auto GetFirstCommand() { return last_cmds_.size() > 0 ? std::make_optional(std::move(last_cmds_.front().gfx())) : std::nullopt; } private: int presents_called_ = 0; std::vector<fuchsia::ui::scenic::Command> last_cmds_; fidl::Binding<fuchsia::ui::scenic::Session> binding_; fuchsia::ui::scenic::SessionListenerPtr listener_; }; } // namespace testing } // namespace root_presenter #endif // SRC_UI_BIN_ROOT_PRESENTER_TESTS_FAKES_FAKE_SESSION_H_
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
f06fa5497ea4003a6ade039bd42cc30f09521a42
79636d9a11c4ac53811d55ef0f432f68ab62944f
/smart-darkgdk/include/Listener.h
3f9ff71e9b68d45492883549145a61ece626d84e
[ "MIT" ]
permissive
endel/smart-darkgdk
44d90a1afcd71deebef65f47dc54586df4ae4736
6235288b8aab505577223f9544a6e5a7eb6bf6cd
refs/heads/master
2021-01-19T10:58:29.387767
2009-06-26T16:44:15
2009-06-26T16:44:15
32,123,434
0
0
null
null
null
null
UTF-8
C++
false
false
145
h
#pragma once #include "Event.h" class Listener { public: Listener(void); ~Listener(void); virtual void execute(Event* e) = 0; };
[ "endel.dreyer@0995f060-2c81-11de-ae9b-2be1a451ffb1" ]
endel.dreyer@0995f060-2c81-11de-ae9b-2be1a451ffb1
c44fa3eaa733e64269c5036c323381e28311ff0d
92f4662156d763cc8e244d12932ba32496c21eb0
/Project/clientserver/src/newsclient.cc
9a37526518625216ba137da654755be6f83803de
[]
no_license
antongudjonsson/EDAF50
86ae36a3b35ce4e3e9adcb2544e3908b99e21184
95c56d5acf5431d5ab8088819941c4cc381691d4
refs/heads/master
2020-04-20T20:30:43.045693
2019-04-21T16:15:03
2019-04-21T16:15:03
169,078,654
1
2
null
null
null
null
UTF-8
C++
false
false
10,358
cc
#include "messagehandler.h" #include "server.h" #include "connection.h" #include <iostream> #include <istream> #include <limits> using namespace std; using std::cin; Connection init(int argc, char *argv[]) { if (argc != 3) { cerr << "Usage: myclient host port-number" << endl; exit(1); } int port = -1; try { port = stoi(argv[2]); } catch (exception &e) { cerr << "Wrong format for port number. " << e.what() << endl; exit(2); } Connection conn(argv[1], port); if (!conn.isConnected()) { cerr << "Server initialization error." << endl; exit(3); } return conn; } bool handle_ack(MessageHandler &msg) { if (msg.receive_cmd() == Protocol::ANS_ACK) { return true; } switch (msg.receive_cmd()) { case Protocol::ERR_NG_ALREADY_EXISTS: cerr << "Sorry, a newsgroup with that name already exists." << endl; break; case Protocol::ERR_NG_DOES_NOT_EXIST: cerr << "Sorry, there is no newsgroup with that ID." << endl; break; case Protocol::ERR_ART_DOES_NOT_EXIST: cerr << "Sorry, there is no article with that ID in this newsgroup." << endl; break; default: cerr << "Unknown protocol." << endl; break; } return false; } void handle_end(MessageHandler &msg) { if (msg.receive_cmd() != Protocol::ANS_END) { cerr << "Error! Protocol Violated!" << endl; } } bool handle_ans(Protocol actual, Protocol expected) { if (actual == expected) { return true; } else { cout << "Protocol violated. Aborting.." << endl; return false; } } void list_NG(MessageHandler &msg) { msg.send_code(Protocol::COM_LIST_NG); msg.send_code(Protocol::COM_END); int nbrofNG; int grpid; string grpname; if (handle_ans(msg.receive_cmd(), Protocol::ANS_LIST_NG)) { nbrofNG = msg.receive_int_parameter(); if(nbrofNG != 0){ cout << "ID: Name" << endl; if (nbrofNG != 0) { for (int i = 0; i < nbrofNG; i++) { grpid = msg.receive_int_parameter(); grpname = msg.receive_string_parameter(); cout << grpid << ": " << grpname << endl; } } }else{ cout << "There are currently no newsgroups." << endl; } handle_end(msg); } else { cerr << "Error! Protocol Violated!" << endl; } } void create_NG(MessageHandler &msg) { cout << "Enter the name of the newsgroup: "; string ngName; cin.ignore(); getline(cin,ngName); msg.send_code(Protocol::COM_CREATE_NG); msg.send_string_parameter(ngName); msg.send_code(Protocol::COM_END); cout << endl; if (handle_ans(msg.receive_cmd(), Protocol::ANS_CREATE_NG)) { if (handle_ack(msg)) { cout << "Newsgroup " << "'" << ngName << "'" << " created." << endl; }; } handle_end(msg); } void delete_NG(MessageHandler &msg) { cout << "Enter the ID of the newsgroup you wish to delete: "; int ngID; while(!(cin >> ngID)){ cin.clear(); cin.ignore(numeric_limits<streamsize>::max(), '\n'); cout << "Invalid input. Try again: "; } cin.ignore(numeric_limits<streamsize>::max(), '\n'); msg.send_code(Protocol::COM_DELETE_NG); msg.send_int_parameter(ngID); msg.send_code(Protocol::COM_END); if (handle_ans(msg.receive_cmd(), Protocol::ANS_DELETE_NG)) { if (handle_ack(msg)) { cout << "Newsgroup deleted." << endl; } } handle_end(msg); } void create_art(MessageHandler &msg) { int grpid; string title; string author; string text; msg.send_code(Protocol::COM_CREATE_ART); cout << "Please enter the ID of the newsgroup you want to add the article to: "; while(!(cin >> grpid)){ cin.clear(); cin.ignore(numeric_limits<streamsize>::max(), '\n'); cout << "Invalid input. Try again: "; } cin.ignore(numeric_limits<streamsize>::max(), '\n'); msg.send_int_parameter(grpid); cout << "Please provide the following information: " << endl; cout << "Title: "; getline(cin, title); msg.send_string_parameter(title); cout << "Author: "; getline(cin, author); msg.send_string_parameter(author); cout << "Contents (text): "; getline(cin, text); msg.send_string_parameter(text); msg.send_code(Protocol::COM_END); if (handle_ans(msg.receive_cmd(), Protocol::ANS_CREATE_ART)) { if (handle_ack(msg)) { cout << "Article created." << endl; } } handle_end(msg); } void list_art(MessageHandler &msg) { msg.send_code(Protocol::COM_LIST_ART); cout << "Please enter the ID of the newsgroup of which you wish to view the articles: "; int grpid; while(!(cin >> grpid)){ cin.clear(); cin.ignore(numeric_limits<streamsize>::max(), '\n'); cout << "Invalid input. Try again: "; } cin.ignore(numeric_limits<streamsize>::max(), '\n'); msg.send_int_parameter(grpid); msg.send_code(Protocol::COM_END); if (handle_ans(msg.receive_cmd(), Protocol::ANS_LIST_ART)) { if (handle_ack(msg)) { int nbrofart = msg.receive_int_parameter(); if (nbrofart != 0) { cout << "ID: Title" << endl; for (int i = 0; i < nbrofart; i++) { int artid = msg.receive_int_parameter(); string title = msg.receive_string_parameter(); cout << to_string(artid) + ": " + title << endl; } cout << endl; } else { cout << "This newsgroup currently has no articles. Use cmd '5' to create one." << endl; } } } handle_end(msg); } void delete_art(MessageHandler &msg) { msg.send_code(Protocol::COM_DELETE_ART); int grpid; int artid; cout << "Please provide the following: " << endl; cout << "ID of the article's newsgroup: "; while(!(cin >> grpid)){ cin.clear(); cin.ignore(numeric_limits<streamsize>::max(), '\n'); cout << "Invalid input. Try again: "; } cin.ignore(numeric_limits<streamsize>::max(), '\n'); msg.send_int_parameter(grpid); cout << "ID of the article: "; while(!(cin >> artid)){ cin.clear(); cin.ignore(numeric_limits<streamsize>::max(), '\n'); cout << "Invalid input. Try again: "; } cin.ignore(numeric_limits<streamsize>::max(), '\n'); msg.send_int_parameter(artid); msg.send_code(Protocol::COM_END); if (handle_ans(msg.receive_cmd(), Protocol::ANS_DELETE_ART)) { if (handle_ack(msg)) { cout << "Article deleted." << endl; } } handle_end(msg); } void get_art(MessageHandler &msg){ msg.send_code(Protocol::COM_GET_ART); int grpid; int artid; cout << "Please provide the following: " << endl; cout << "ID of the article's newsgroup: "; while(!(cin >> grpid)){ cin.clear(); cin.ignore(numeric_limits<streamsize>::max(), '\n'); cout << "Invalid input. Try again: "; } cin.ignore(numeric_limits<streamsize>::max(), '\n'); cout << "ID of the article: "; while(!(cin >> artid)){ cin.clear(); cin.ignore(numeric_limits<streamsize>::max(), '\n'); cout << "Invalid input. Try again: "; } cin.ignore(numeric_limits<streamsize>::max(), '\n'); msg.send_int_parameter(grpid); msg.send_int_parameter(artid); msg.send_code(Protocol::COM_END); if (handle_ans(msg.receive_cmd(), Protocol::ANS_GET_ART)) { if (handle_ack(msg)) { string title = msg.receive_string_parameter(); string author = msg.receive_string_parameter(); string text = msg.receive_string_parameter(); cout << "\nTitle: " << title << endl; cout << "Author: " << author << endl; cout << text << endl; } } handle_end(msg); } void list_options() { cout << "1. List all current newsgroups." << endl; cout << "2. Create new newsgroup." << endl; cout << "3. Delete a newsgroup." << endl; cout << "4. List all articles of a newsgroup." << endl; cout << "5. Create a new article in a newsgroup." << endl; cout << "6. Delete an article." << endl; cout << "7. Read an article." << endl; cout << "8. Exit." << endl; } int main(int argc, char *argv[]) { auto conn = init(argc, argv); int cmd; cout << "Welcome to our client!" << endl; cout << "Please choose one of these options:" << endl; list_options(); MessageHandler msg(conn); while (true) { if (cin >> cmd) { cout << "---------------------------" << endl; try { switch (cmd) { case 1: list_NG(msg); break; case 2: create_NG(msg); break; case 3: delete_NG(msg); break; case 4: list_art(msg); break; case 5: create_art(msg); break; case 6: delete_art(msg); break; case 7: get_art(msg); break; case 8: cout << "Exiting. Thank you for using our program." << endl; exit(0); break; } cin.clear(); cin.sync(); cout << "---------------------------" << endl; cout << "\nPlease choose another command. " << endl; list_options(); } catch (ConnectionClosedException &) { cout << "Not following proper protocol. Terminating.." << endl; } } } }
[ "dat14agu@student.lu.se" ]
dat14agu@student.lu.se
60130dd2022c53c56914f4f7a72fad8432441772
ec10d899e0d6465e474fda57ae4e459e98476825
/TopiVarScores.hpp
5b7616b650e1b018b4b1facf2ce80d195d785013
[ "MIT" ]
permissive
alexander-nadel/intel_sat_solver
7cf7e68bc466f96f447387846e57d685ff755d1c
65e7e751740585fee8c6ec6047b0a46d098259f3
refs/heads/main
2023-08-08T20:57:22.555200
2023-08-07T08:44:37
2023-08-07T08:44:37
485,669,789
13
3
null
null
null
null
UTF-8
C++
false
false
6,141
hpp
// Copyright(C) 2021-2022 Intel Corporation // SPDX - License - Identifier: MIT #pragma once #include "ToporVector.hpp" // Variable scores handler, including a heap implementation namespace Topor { template <typename TUVar, typename TUV> class CVarScores { public: // The heap's 0 index must always be occupied, so that position 0 would mean not-in-the-heap CVarScores(double& varActivityInc) : m_VarActivityInc(varActivityInc), m_Heap(1, 0, 1) { static_assert(std::is_same<TUVar, TUV>::value); } void SetInitOrder(bool initOrder) { m_InitOrder = initOrder; } void reserve_exactly(size_t beyondMaxVar) { m_PosScore.reserve_exactly(beyondMaxVar, 0); m_Heap.reserve_exactly(beyondMaxVar); } inline bool uninitialized_or_erroneous() const { return m_PosScore.uninitialized_or_erroneous() || m_Heap.uninitialized_or_erroneous(); } inline size_t size() const { return m_Heap.size() - 1; } inline bool empty() const { return size() == 0; } inline bool in_heap(TUVar v) const { assert(v < m_PosScore.cap()); return m_PosScore[v].m_Pos > 0; } bool increase_score(TUVar v, double mult = 1.0) { bool isRescaled = false; if (unlikely((m_PosScore[v].m_Score += m_VarActivityInc * mult) > 1e100)) { span<TPosScore> posScoreSpan = m_PosScore.get_span_cap(); // Rescale for (auto& currPosScore : posScoreSpan) { currPosScore.m_Score *= 1e-100; } m_VarActivityInc *= 1e-100; isRescaled = true; } if (in_heap(v)) { percolate_up(m_PosScore[v].m_Pos); } return isRescaled; } void reinsert_if_not_in_heap(TUVar v) { assert(!uninitialized_or_erroneous()); assert(v < m_PosScore.cap()); if (!in_heap(v)) { m_PosScore[v].m_Pos = (TUV)m_Heap.size(); m_Heap.push_back(v); percolate_up(m_PosScore[v].m_Pos); } } void rebuild() { m_Heap.reserve_exactly(m_PosScore.cap()); m_Heap.clear(); m_Heap.emplace_back(0); for (TUVar v = 1; v < m_PosScore.cap(); ++v) { if (in_heap(v)) { m_PosScore[v].m_Pos = 0; assert(!in_heap(v)); insert(v, m_PosScore[v].m_Score); assert(in_heap(v)); } } } void insert(TUVar v, double score) { if (v >= m_PosScore.cap()) { m_PosScore.reserve_atleast(v + 1, (size_t)0); m_Heap.reserve_atleast(v + 1); if (uninitialized_or_erroneous()) { return; } } assert(!in_heap(v)); m_PosScore[v] = TPosScore((TUV)m_Heap.size(), score); m_Heap.push_back(v); percolate_up(m_PosScore[v].m_Pos); } TUVar remove_min() { auto v = m_Heap[1]; swap(m_Heap[1], m_Heap.back()); m_PosScore[m_Heap[1]].m_Pos = 1; m_PosScore[v].m_Pos = 0; m_Heap.pop_back(); if (m_Heap.size() > 2) { percolate_down(1); } return v; } inline TUVar get_min() const { return m_Heap[1]; } inline bool var_score_exists(TUVar v) const { return v < m_PosScore.cap(); } inline double get_var_score(TUVar v) const { return m_PosScore[v].m_Score; } // Use set_var_score only if rebuild is surely scheduled soon, otherwise it will botch the data structure! inline void set_var_score(TUVar v, double newScore) { m_PosScore[v].m_Score = newScore; } inline void var_inc_update(double varDecay) { m_VarActivityInc *= (1. / varDecay); } inline void set_multiplier(double multiplier) { m_PosScore.SetMultiplier(multiplier); m_Heap.SetMultiplier(multiplier); } inline void replace_pos_score_vars(TUVar vFrom, TUVar vTo) { m_PosScore[vTo] = move(m_PosScore[vFrom]); } inline size_t memMb() const { return m_Activity.memMb() + m_Heap.memMb() + m_PosScore.memMb(); } protected: // The activity CVector<double> m_Activity; double& m_VarActivityInc; // This variable allows one to simulate the two different insertion orders: // false: bigger variable indices first; true: smaller variable indices first (default) // We do the simulation by providing two implementations of the "better" predicate (see below) // See the parameter m_ParamVsidsInitOrder for more details bool m_InitOrder = false; // Heap of variables CVector<TUVar> m_Heap; // TPosScore: 1) position in the heap (0 means not in the heap); 2) score struct TPosScore { TPosScore(TUV pos, double score) : m_Pos(pos), m_Score(score) {} TUV m_Pos; double m_Score; }; // Variable-indexed array: position & score per variable CDynArray<TPosScore> m_PosScore; // Index "traversal" functions static constexpr TUV left(TUV i) { return i << 1; }; static constexpr TUV right(TUV i) { return (i << 1) + 1; }; static constexpr TUV parent(TUV i) { return i >> 1; }; // Cannot put the static asserts in the class itself, since it's forbidden by C++ standard // as the functions are undefined inside the class void static_assert_traversal() { static_assert(parent(2) == 1); static_assert(parent(3) == 1); static_assert(left(1) == 2); static_assert(right(1) == 3); static_assert(parent(4) == 2); static_assert(parent(5) == 2); static_assert(left(2) == 4); static_assert(right(2) == 5); static_assert(parent(6) == 3); static_assert(parent(7) == 3); static_assert(left(3) == 6); static_assert(right(3) == 7); } void percolate_up(TUV i) { const TUVar v = m_Heap[i]; TUV p = parent(i); while (i != 1 && better(v, m_Heap[p])) { m_Heap[i] = m_Heap[p]; m_PosScore[m_Heap[p]].m_Pos = i; i = p; p = parent(p); } m_Heap[i] = v; m_PosScore[v].m_Pos = i; } void percolate_down(TUV i) { TUVar v = m_Heap[i]; while (left(i) < m_Heap.size()) { auto child = right(i) < m_Heap.size() && better(m_Heap[right(i)], m_Heap[left(i)]) ? right(i) : left(i); if (!better(m_Heap[child], v)) break; m_Heap[i] = m_Heap[child]; m_PosScore[m_Heap[i]].m_Pos = i; i = child; } m_Heap[i] = v; m_PosScore[v].m_Pos = i; } inline bool better(TUVar v1, TUVar v2) const { return m_InitOrder ? m_PosScore[v1].m_Score > m_PosScore[v2].m_Score : m_PosScore[v1].m_Score >= m_PosScore[v2].m_Score; } }; }
[ "alexander.nadel@intel.com" ]
alexander.nadel@intel.com
e463694aa8cddaa656cc151771edad11fb52fef6
e724711f52ecd3e1e4f0b4ec9bec017c9c5f9a6a
/nano/lib/lmdbconfig.cpp
a4387fcaa8147f54dceb6b47459acfaa47905399
[ "BSD-3-Clause" ]
permissive
nanocurrency/nano-node
43e56ecf12ced0d2b20ea65b1bbf4125476470a9
da9cf6ac004dec6944c01f638bf70f620cc98e91
refs/heads/develop
2023-08-16T18:53:08.724630
2023-07-29T11:27:07
2023-07-29T11:27:07
19,347,340
1,392
492
BSD-3-Clause
2023-09-13T17:09:35
2014-05-01T14:49:25
C++
UTF-8
C++
false
false
2,215
cpp
#include <nano/lib/lmdbconfig.hpp> #include <nano/lib/tomlconfig.hpp> #include <nano/secure/common.hpp> #include <iostream> nano::error nano::lmdb_config::serialize_toml (nano::tomlconfig & toml) const { std::string sync_string; switch (sync) { case nano::lmdb_config::sync_strategy::always: sync_string = "always"; break; case nano::lmdb_config::sync_strategy::nosync_safe: sync_string = "nosync_safe"; break; case nano::lmdb_config::sync_strategy::nosync_unsafe: sync_string = "nosync_unsafe"; break; case nano::lmdb_config::sync_strategy::nosync_unsafe_large_memory: sync_string = "nosync_unsafe_large_memory"; break; } toml.put ("sync", sync_string, "Sync strategy for flushing commits to the ledger database. This does not affect the wallet database.\ntype:string,{always, nosync_safe, nosync_unsafe, nosync_unsafe_large_memory}"); toml.put ("max_databases", max_databases, "Maximum open lmdb databases. Increase default if more than 100 wallets is required.\nNote: external management is recommended when a large amounts of wallets are required (see https://docs.nano.org/integration-guides/key-management/).\ntype:uin32"); toml.put ("map_size", map_size, "Maximum ledger database map size in bytes.\ntype:uint64"); return toml.get_error (); } nano::error nano::lmdb_config::deserialize_toml (nano::tomlconfig & toml) { auto default_max_databases = max_databases; toml.get_optional<uint32_t> ("max_databases", max_databases); toml.get_optional<size_t> ("map_size", map_size); if (!toml.get_error ()) { std::string sync_string = "always"; toml.get_optional<std::string> ("sync", sync_string); if (sync_string == "always") { sync = nano::lmdb_config::sync_strategy::always; } else if (sync_string == "nosync_safe") { sync = nano::lmdb_config::sync_strategy::nosync_safe; } else if (sync_string == "nosync_unsafe") { sync = nano::lmdb_config::sync_strategy::nosync_unsafe; } else if (sync_string == "nosync_unsafe_large_memory") { sync = nano::lmdb_config::sync_strategy::nosync_unsafe_large_memory; } else { toml.get_error ().set (sync_string + " is not a valid sync option"); } } return toml.get_error (); }
[ "noreply@github.com" ]
noreply@github.com
0956ecbc9d873cb0b3606b7810b3538b008abe94
486e96a5a383d7cc6e42f4344428af8de5d350bf
/headers/I_unmark.h
0ae1264ed86c9f95510a3445a0e90232d3038d3f
[]
no_license
Smehta97/bugworld_phase_3
71640ecf1bcf4c484734dbc42cd1f77b06899607
8e9f6f7e294c71cb52b998af9125daca334f53d7
refs/heads/master
2020-03-09T02:55:16.514292
2018-04-09T18:10:57
2018-04-09T18:10:57
128,552,251
0
0
null
null
null
null
UTF-8
C++
false
false
337
h
/** I_unmark.h */ #ifndef _I_UNMARK_H #define _I_UNMARK_H class I_unmark: public Bug, public Instruction, public tstate{ private: // attributes int m; tstate z; //functions public: //attributes //functions void execute(Bug b); void parse(string args); void unmark(int m, tsate z); }; #endif
[ "mehta.sahil1997@gmail.com" ]
mehta.sahil1997@gmail.com
694db7abce01fe8fe1b8cc147cebef7030431ca9
8aa4219a652175ce28a15dbdcf83f2568c9ae46f
/scenes/gamescene.cpp
47ea727f116502282ecf61f46524542d2125503d
[]
no_license
2hdddg/pac
acac251f3d8398e1f1391d3ba199b18b3e8ddc27
e13fdf38eaf0e0cbf58a134c6540d0f4ce28055e
refs/heads/master
2021-07-06T20:21:15.377225
2017-08-01T09:28:22
2017-10-02T17:07:11
105,561,565
0
0
null
null
null
null
UTF-8
C++
false
false
2,701
cpp
#include <memory> #include <iostream> #include "scenes/gamescene.hpp" #include "util/tileset.hpp" #include "game/playerview.hpp" #define D(x) namespace game { GameScene::GameScene(std::shared_ptr<Resources> resources, std::shared_ptr<Game> game) : _resources(resources), _game(game) { D(std::cout << typeid(*this).name() << "::constructor\n"); auto screenSize = resources->gameResolution; if (game->numLocalPlayers > 2) { throw "Too many players"; } auto splitted = sf::Vector2f(screenSize.x / game->numLocalPlayers, screenSize.y); auto viewArea = sf::FloatRect(0, 0, screenSize.x / game->numLocalPlayers, splitted.y); addPlayerView(game->heroes[0], screenSize, Controller::Layout::Arrows, viewArea); if (game->numLocalPlayers > 1) { viewArea.left = viewArea.width; addPlayerView(game->heroes[1], screenSize, Controller::Layout::AWSD, viewArea); } } GameScene::~GameScene() { D(std::cout << typeid(*this).name() << "::destructor\n"); } void GameScene::addPlayerView(std::shared_ptr<Hero> hero, sf::Vector2f &screenSize, Controller::Layout layout, sf::FloatRect &viewArea) { auto controller = std::make_unique<Controller>(layout, hero); auto playerView = std::make_shared<PlayerView>( _resources, _game, hero, std::move(controller), screenSize, viewArea); _playerViews.push_back(playerView); } void GameScene::event(sf::Event &event, SceneTransition *transition) { for (auto&& playerView : _playerViews) { playerView->event(event); } } void GameScene::update(long delta, SceneTransition *transition) { switch (_game->update(delta)) { case Game::Transition::LevelComplete: transition->toLevelCompleted(_game); break; case Game::Transition::GameOver: transition->toStart(); break; case Game::Transition::None: default: break; } for (auto&& playerView : _playerViews) { playerView->update(delta); } } void GameScene::render(sf::RenderWindow &window) { for (auto&& playerView : _playerViews) { playerView->render(window); } } }
[ "2hdddg@gmail.com" ]
2hdddg@gmail.com
a0bc432c25cc512bab0c2574dcf486c0f834c7ce
604f92bbe3cf39a18398b3a584d0a9fd36fd94c2
/SDP_Project/main.cpp
687007ab7eb7314d2509bd1ee12437ceb1dd2ad3
[]
no_license
nikdenev/sdp
20002faebc0a8601e89c49834d333eeecbd5b44d
e4115d2f735782834cfb9cfae0e5d2b17518c1d0
refs/heads/master
2021-01-21T05:10:44.003605
2017-02-25T17:01:10
2017-02-25T17:01:10
83,145,223
0
0
null
null
null
null
ISO-8859-1
C++
false
false
937
cpp
/** *   * Solution to homework task * Data Structures Course * Faculty of Mathematics and Informatics of Sofia University * Winter semester 2016/2017 * * @author Nikolay Denev * @idnumber 45231 * @task 0 * @compiler VC * */ #include <iostream> #include <cstring> #include "Archive.h" #include "Unarchive.h" int main(int argc, char* argv[]) { if (argc < 2) { std::cerr << "Error! There are not enough main arguments" << std::endl; return 1; } if (!strcmp(argv[1], "-Pack") && argc == 4) Archive::archive(argv[2], argv[3]); else if (!strcmp(argv[1], "-Unpack") && argc == 4) Unarchive::unarchive(argv[2], argv[3]); else if (!strcmp(argv[1], "-List") && argc == 3) Unarchive::list(argv[2]); else if (!strcmp(argv[1], "-Search") && argc == 4) Unarchive::search(argv[2], argv[3]); else { std::cerr << "Error! Unknown command!" << std::endl; return 1; } return 0; }
[ "noreply@github.com" ]
noreply@github.com
814326c0b7f355f0faa85d9bb064cc3f7d22b43c
bc720faf86f20ee4387e2300506b7add80c8c028
/Multiplayer Game/ReplicationManagerServer.cpp
1114001afd3a9ef1c64b654611e83e0ae43727db
[ "MIT" ]
permissive
lakaens/multiplayer-game
f27ae016938c455768a0089065789872d391235c
c2369ceb5435105ce5dcff41f67016343744ad84
refs/heads/master
2022-03-10T21:35:16.228942
2019-12-01T19:34:12
2019-12-01T19:34:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,594
cpp
#include "ReplicationManagerServer.h" #include "Networks.h" ReplicationManagerServer::ReplicationManagerServer() : m_replicationCommands() { } ReplicationManagerServer::~ReplicationManagerServer() { } void ReplicationManagerServer::create(uint32 networkID) { auto it = m_replicationCommands.find(networkID); if (it != m_replicationCommands.end()) { return; } m_replicationCommands[networkID] = ReplicationCommand(ReplicationAction::Create, networkID); } void ReplicationManagerServer::update(uint32 networkID) { auto it = m_replicationCommands.find(networkID); if (it == m_replicationCommands.end()) { return; } if (m_replicationCommands[networkID].m_action != ReplicationAction::Create && m_replicationCommands[networkID].m_action != ReplicationAction::Destroy) { m_replicationCommands[networkID].m_action = ReplicationAction::Update; } } void ReplicationManagerServer::destroy(uint32 networkID) { auto it = m_replicationCommands.find(networkID); if (it == m_replicationCommands.end()) { return; } m_replicationCommands[networkID].m_action = ReplicationAction::Destroy; } void ReplicationManagerServer::remove(uint32 networkID) { m_replicationCommands.erase(networkID); } void ReplicationManagerServer::write(OutputMemoryStream& packet, ReplicationManagerTransmissionData* replicationManagerTransmissionData) { for (auto& replicationCommand : m_replicationCommands) { uint32 networkID = replicationCommand.second.m_networkID; packet.Write(networkID); ReplicationAction replicationAction = replicationCommand.second.m_action; packet.Write(replicationAction); switch (replicationAction) { case ReplicationAction::Create: case ReplicationAction::Update: { writeCreateOrUpdate(packet, networkID); break; } default: { break; } } replicationManagerTransmissionData->AddTransmission(replicationCommand.second); replicationCommand.second.m_action = ReplicationAction::None; } } void ReplicationManagerServer::writeCreateOrUpdate(OutputMemoryStream& packet, uint32 networkID) { GameObject* gameObject = App->modLinkingContext->getNetworkGameObject(networkID); gameObject->write(packet); } ReplicationCommand::ReplicationCommand() { } ReplicationCommand::ReplicationCommand(ReplicationAction action, uint32 networkID) : m_action(action) , m_networkID(networkID) { } ReplicationManagerTransmissionData::ReplicationManagerTransmissionData(ReplicationManagerServer* replicationManager) : m_replicationManager(replicationManager) { } ReplicationManagerTransmissionData::~ReplicationManagerTransmissionData() { } void ReplicationManagerTransmissionData::onDeliverySuccess(DeliveryManager* deliveryManager) { for (const auto& replicationCommand : m_replicationCommands) { switch (replicationCommand.m_action) { case ReplicationAction::Destroy: { HandleDestroyDeliveryFailure(replicationCommand.m_networkID); break; } default: { break; } } } } void ReplicationManagerTransmissionData::onDeliveryFailure(DeliveryManager* deliveryManager) { for (const auto& replicationCommand : m_replicationCommands) { switch (replicationCommand.m_action) { case ReplicationAction::Create: { HandleCreateDeliveryFailure(replicationCommand.m_networkID); break; } case ReplicationAction::Update: { HandleUpdateDeliveryFailure(replicationCommand.m_networkID); break; } case ReplicationAction::Destroy: { HandleDestroyDeliveryFailure(replicationCommand.m_networkID); break; } default: { break; } } } } void ReplicationManagerTransmissionData::HandleDestroyDeliverySuccess(uint32 networkID) const { m_replicationManager->remove(networkID); } void ReplicationManagerTransmissionData::HandleCreateDeliveryFailure(uint32 networkID) const { if (App->modLinkingContext->getNetworkGameObject(networkID) != nullptr) { m_replicationManager->create(networkID); } } void ReplicationManagerTransmissionData::HandleUpdateDeliveryFailure(uint32 networkID) const { if (App->modLinkingContext->getNetworkGameObject(networkID) != nullptr) { m_replicationManager->update(networkID); } } void ReplicationManagerTransmissionData::HandleDestroyDeliveryFailure(uint32 networkID) const { if (App->modLinkingContext->getNetworkGameObject(networkID) == nullptr) { m_replicationManager->destroy(networkID); } } void ReplicationManagerTransmissionData::AddTransmission(const ReplicationCommand& replicationCommand) { m_replicationCommands.push_back(replicationCommand); }
[ "sandruskiag@gmail.com" ]
sandruskiag@gmail.com
55da799c4106988a198266685af24cb999f2cf87
03d80412e26676ac81fc23d0ab580b08066860e8
/priority_queue.h
48a1c074b12b3fc483a4548f6b42cc321545e8f8
[]
no_license
Aparajith-S/Dijkstras_Algorithm
f3fe15a5c6a5e94e9d4ba475a0dbda0e734629f4
289627188ff7c5d5c24adb734611a7af8d47a90f
refs/heads/master
2022-12-07T04:08:19.497515
2020-08-31T05:36:04
2020-08-31T05:36:04
291,623,490
0
0
null
null
null
null
UTF-8
C++
false
false
4,694
h
/// @file: /// @author: /// @date : /// @brief : workaround for template class definitions. #pragma once #include<vector> #include"myalgorithm.h" typedef unsigned int uint32; /// @class Priority queue based on min heap /// @brief Priority queue which accepts a pair <prio,name> where name is a type could be an integer,string etc. but prio is always float template<class Type> class PriorityQueue { public: ///@brief constructor constructs an empty priority Queue PriorityQueue() :PQ() {}; ///@brief clean default user defined destructor virtual ~PriorityQueue() {}; ///@brief Change the priority of the given node ///@details node priority is changed by removing the old node priority in O(N) and inserting new node priority in O(logN) ///@param[in] nodeName: node name whose priority has to be changed ///@param[in] prio: priority of the node ///@return true when node is found ///@return false when node is not found bool chgPriority(const Type& nodeName, const float prio); ///@brief removes the top most element whose priority is minimum ///@details this is a min heap implementation. /// hence, the elements are ordered in ascending order of priority in the queue. this function pops that element ///@return true if there is an element in the prio queue that can be popped ///@return false if the prio queue itself is empty bool minPriority(); ///@brief if the said node is available in the priority queue ///@details finds an available node in linear (O(N)) time ///@param[in] nodeName name of the to-be-found node ///@return true if the element exists ///@return false if the element does not exist bool contains(const Type& nodeName); ///@brief inserts a new node into the priority queue ///@details inserts a new element in the queue in O(logN) time ///@param[in] nodeName : the vertex Name to be inserted ///@param[in] prio : the priority of the element ///@return true if the operation was successful ///@return false if the operation was not successful bool insertQ(const Type& nodeName,const float prio); ///@brief top returns the top element in the priority queue ///@details Constant time operation. ///@return true if the operation is successful and the element in the queue. std::pair<bool, std::pair<float,Type>> top(); ///@brief returns the size of the Priority queue ///@return unsigned integer size size_t size(); private: ///@brief container to hold the queue in a pair and sorted by first value std::vector<std::pair<float,Type>> PQ; }; // C++ compilers have a problem with template classes being seperated into declarations in .h and definitions in .cpp files. // Hence, this will still keep code clean and circumvent the compiler problem. // caveat: to be used only in small projects. template<class Type> bool PriorityQueue<Type>::chgPriority(const Type& Value, const float prio) { float oldPrio; bool found = false; for (auto iter = PQ.begin(); iter != PQ.end(); iter++) { if (iter->second == Value) { oldPrio = iter->first; found = true; break; } } if (found) { PQ.erase(oldPrio); PQ.insert(std::pair<float, Type>(prio, Value)); } return found; } template<class Type> bool PriorityQueue<Type>::minPriority() { bool success = false; if (PQ.size()) { PQ.pop_back(); success = true; } return success; } template<class Type> bool PriorityQueue<Type>::contains(const Type& Value) { uint32 dummy = 0; bool found = false; for (auto iter = PQ.begin(); iter != PQ.end(); iter++) { if (iter->second == Value) { found = true; break; } } return found; } template<class Type> bool PriorityQueue<Type>::insertQ(const Type& nodeValue, const float prio) { if (PQ.size()) { auto pos = binary_search(PQ.begin(), PQ.end(), std::pair<float,Type>(prio,nodeValue), [&]( std::pair<float, Type> left, std::pair<float, Type> right) {return (left.first < right.first);}); static_cast<void>(PQ.insert(pos, std::pair<float, Type>(prio, nodeValue))); } else { PQ.push_back(std::pair<float, Type>(prio, nodeValue)); } return true; } template<class Type> std::pair<bool, std::pair<float, Type>> PriorityQueue<Type>::top() { std::pair<bool, std::pair<float, Type>> returnVal; returnVal.first = false; if (PQ.size()) { returnVal.second.second = PQ[PQ.size() - 1].second; returnVal.second.first = PQ[PQ.size()-1].first; returnVal.first = true; } return returnVal; } template<class Type> size_t PriorityQueue<Type>::size() { return PQ.size(); }
[ "noreply@github.com" ]
noreply@github.com
a6a967fd7fa064a0bd48ac578a19b3b75a0a747e
0b15d36c0abe3379554a3c959cd31d08fb9ca078
/spavanac.cpp
e9c4ae02bc6b691ac5027570549bec3807c1f196
[]
no_license
adhwa98/week_01-Folder
61562d37846a839e823c94fa22b34ebce71e610f
d5390a1b76c876d651c1eed7dbfb820d07e58fa2
refs/heads/main
2023-01-01T08:43:39.069377
2020-10-29T16:30:49
2020-10-29T16:30:49
308,382,513
0
0
null
null
null
null
UTF-8
C++
false
false
298
cpp
#include <stdio.h> int mod(int x, int y) { return (x >= 0) ? x % y : x % y + y; } int main() { int h, m; // hours, minutes scanf("%d %d", &h, &m); m -= 45; if (m > 0) printf("%d %d\n", h, m); else printf("%d %d\n", mod(h - 1, 24), 60 + m); return 0; }
[ "noreply@github.com" ]
noreply@github.com
56d7024ff94489af8cc0fe72c3e07fede3e66781
4bc7bbfb9808e619ceae51d698afc1d95bce497d
/Project4/src/main.cpp
f37df4b3abe9889fb165f912c77679d45b141c38
[]
no_license
Nimtaa/ERS-Homework
cac6ca5aeda45d7052f8cfec0ff1477658bb9f3a
9fd1e151e0c8f95ecc2c0f4b2aff408769384e6d
refs/heads/master
2020-04-02T01:58:57.534848
2019-09-05T10:27:26
2019-09-05T10:27:26
153,885,126
1
0
null
null
null
null
UTF-8
C++
false
false
2,305
cpp
// #include <mbed.h> // // System Outputs // DigitalOut red_led(PTC1); // DigitalOut green_led(PTC2); // BusOut display(PTE5,PTE4,PTE3,PTE2,PTB11,PTB10,PTB9,PTB8); // // Intrupts // InterruptIn push_button1(PTD1); // InterruptIn push_button2(PTD2); // InterruptIn push_button3(PTD3); // bool but1_presed = false; // bool but2_presed = false; // bool but3_presed = false; // bool task3_running = false; // bool task4_running = false; // bool task5_running = false; // unsigned int i; // void scheduler(); // // Tasks // void task5(){ // task5_running = true; // display=0xBF; // wait(1); // display=0x86; // wait(1); // display=0xDB; // wait(1); // display=0xCF; // wait(1); // display=0xE6; // wait(1); // display=0xED; // wait(1); // display=0xFD; // wait(1); // display=0x87; // wait(1); // display=0xFF; // wait(1); // display=0xEF; // wait(1); // display=0x00; // wait(1); // task5_running = false; // scheduler(); // } // void task3(){ // task3_running = true; // red_led = 1; // green_led = 0; // wait(2); // red_led = 0; // green_led = 1; // wait(2); // task3_running = false; // scheduler(); // } // void task4(){ // task4_running = true; // green_led = 1; // red_led = 1; // wait(2); // green_led = 0; // red_led = 0; // wait(2); // task4_running = false; // scheduler(); // } // // ISRs // void isr1() { // but1_presed = true; // } // void isr2() { // but2_presed = true; // } // void isr3() { // but3_presed = true; // } // void scheduler() { // if (but3_presed) { // but3_presed = false; // red_led = 0; // green_led = 0; // task5(); // red_led = 0; // green_led = 0; // wait(2); // }else if (but2_presed) { // but2_presed = false; // task4(); // red_led = 0; // green_led = 0; // wait(2); // }else if (but1_presed) { // but1_presed = false; // task3(); // red_led = 0; // green_led = 0; // wait(2); // } // } // int main() { // push_button1.rise(&isr1); // push_button2.rise(&isr2); // push_button3.rise(&isr3); // while(1) { // scheduler(); // } // }
[ "nima.tavassoli2@gmail.com" ]
nima.tavassoli2@gmail.com
a67b4c2f47a942bc35503f1dd629d0685ff532ac
786de89be635eb21295070a6a3452f3a7fe6712c
/O2OTranslator/tags/V00-29-08/src/O2OCvtFactory.cpp
af1a000f06367755dcd4224bbdb0da89a5768b76
[]
no_license
connectthefuture/psdmrepo
85267cfe8d54564f99e17035efe931077c8f7a37
f32870a987a7493e7bf0f0a5c1712a5a030ef199
refs/heads/master
2021-01-13T03:26:35.494026
2015-09-03T22:22:11
2015-09-03T22:22:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
30,117
cpp
//-------------------------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // Class O2OCvtFactory... // // Author List: // Andy Salnikov // //------------------------------------------------------------------------ //----------------------- // This Class's Header -- //----------------------- #include "O2OTranslator/O2OCvtFactory.h" //----------------- // C/C++ Headers -- //----------------- #include <boost/make_shared.hpp> //------------------------------- // Collaborating Class Headers -- //------------------------------- #include "H5DataTypes/AcqirisConfigV1.h" #include "H5DataTypes/AcqirisTdcConfigV1.h" #include "H5DataTypes/AliasConfigV1.h" #include "H5DataTypes/AndorConfigV1.h" #include "H5DataTypes/AndorFrameV1.h" #include "H5DataTypes/BldDataEBeamV0.h" #include "H5DataTypes/BldDataEBeamV1.h" #include "H5DataTypes/BldDataEBeamV2.h" #include "H5DataTypes/BldDataEBeamV3.h" #include "H5DataTypes/BldDataEBeamV4.h" #include "H5DataTypes/BldDataFEEGasDetEnergy.h" #include "H5DataTypes/BldDataGMDV0.h" #include "H5DataTypes/BldDataGMDV1.h" #include "H5DataTypes/BldDataIpimbV0.h" #include "H5DataTypes/BldDataIpimbV1.h" #include "H5DataTypes/BldDataPhaseCavity.h" #include "H5DataTypes/BldDataPimV1.h" #include "H5DataTypes/BldDataSpectrometerV0.h" #include "H5DataTypes/CameraFrameFexConfigV1.h" #include "H5DataTypes/CameraFrameV1.h" #include "H5DataTypes/CameraTwoDGaussianV1.h" #include "H5DataTypes/ControlDataConfigV1.h" #include "H5DataTypes/ControlDataConfigV2.h" #include "H5DataTypes/ControlDataConfigV3.h" #include "H5DataTypes/CsPad2x2ConfigV1.h" #include "H5DataTypes/CsPad2x2ConfigV2.h" #include "H5DataTypes/CsPadConfigV1.h" #include "H5DataTypes/CsPadConfigV2.h" #include "H5DataTypes/CsPadConfigV3.h" #include "H5DataTypes/CsPadConfigV4.h" #include "H5DataTypes/CsPadConfigV5.h" #include "H5DataTypes/EncoderConfigV1.h" #include "H5DataTypes/EncoderConfigV2.h" #include "H5DataTypes/EncoderDataV1.h" #include "H5DataTypes/EncoderDataV2.h" #include "H5DataTypes/EpicsPvHeader.h" #include "H5DataTypes/EvrConfigV1.h" #include "H5DataTypes/EvrConfigV2.h" #include "H5DataTypes/EvrConfigV3.h" #include "H5DataTypes/EvrConfigV4.h" #include "H5DataTypes/EvrConfigV5.h" #include "H5DataTypes/EvrConfigV6.h" #include "H5DataTypes/EvrConfigV7.h" #include "H5DataTypes/EvrDataV3.h" #include "H5DataTypes/EvrIOConfigV1.h" #include "H5DataTypes/FccdConfigV1.h" #include "H5DataTypes/FccdConfigV2.h" #include "H5DataTypes/FliConfigV1.h" #include "H5DataTypes/FliFrameV1.h" #include "H5DataTypes/Gsc16aiConfigV1.h" #include "H5DataTypes/ImpConfigV1.h" #include "H5DataTypes/IpimbConfigV1.h" #include "H5DataTypes/IpimbConfigV2.h" #include "H5DataTypes/IpimbDataV1.h" #include "H5DataTypes/IpimbDataV2.h" #include "H5DataTypes/L3TConfigV1.h" #include "H5DataTypes/L3TDataV1.h" #include "H5DataTypes/LusiDiodeFexConfigV1.h" #include "H5DataTypes/LusiDiodeFexConfigV2.h" #include "H5DataTypes/LusiDiodeFexV1.h" #include "H5DataTypes/LusiIpmFexConfigV1.h" #include "H5DataTypes/LusiIpmFexConfigV2.h" #include "H5DataTypes/LusiIpmFexV1.h" #include "H5DataTypes/LusiPimImageConfigV1.h" #include "H5DataTypes/OceanOpticsConfigV1.h" #include "H5DataTypes/Opal1kConfigV1.h" #include "H5DataTypes/OrcaConfigV1.h" #include "H5DataTypes/PnCCDConfigV1.h" #include "H5DataTypes/PnCCDConfigV2.h" #include "H5DataTypes/PrincetonConfigV1.h" #include "H5DataTypes/PrincetonConfigV2.h" #include "H5DataTypes/PrincetonConfigV3.h" #include "H5DataTypes/PrincetonConfigV4.h" #include "H5DataTypes/PrincetonConfigV5.h" #include "H5DataTypes/PrincetonFrameV1.h" #include "H5DataTypes/PrincetonFrameV2.h" #include "H5DataTypes/PrincetonInfoV1.h" #include "H5DataTypes/PulnixTM6740ConfigV1.h" #include "H5DataTypes/PulnixTM6740ConfigV2.h" #include "H5DataTypes/QuartzConfigV1.h" #include "H5DataTypes/RayonixConfigV1.h" #include "H5DataTypes/TimepixConfigV1.h" #include "H5DataTypes/TimepixConfigV2.h" #include "H5DataTypes/TimepixConfigV3.h" #include "H5DataTypes/UsdUsbConfigV1.h" #include "H5DataTypes/UsdUsbDataV1.h" #include "O2OTranslator/AcqirisConfigV1Cvt.h" #include "O2OTranslator/AcqirisDataDescV1Cvt.h" #include "O2OTranslator/AcqirisTdcDataV1Cvt.h" #include "O2OTranslator/CameraFrameV1Cvt.h" #include "O2OTranslator/ConfigDataTypeCvt.h" #include "O2OTranslator/CsPadElementV1Cvt.h" #include "O2OTranslator/CsPadElementV2Cvt.h" #include "O2OTranslator/CsPadCalibV1Cvt.h" #include "O2OTranslator/CsPad2x2CalibV1Cvt.h" #include "O2OTranslator/CsPad2x2ElementV1Cvt.h" #include "O2OTranslator/EvtDataTypeCvtDef.h" #include "O2OTranslator/EpicsDataTypeCvt.h" #include "O2OTranslator/FliFrameV1Cvt.h" #include "O2OTranslator/Gsc16aiDataV1Cvt.h" #include "O2OTranslator/ImpElementV1Cvt.h" #include "O2OTranslator/OceanOpticsDataV1Cvt.h" #include "O2OTranslator/PnCCDFrameV1Cvt.h" #include "O2OTranslator/PrincetonFrameCvt.h" #include "O2OTranslator/TimepixDataV1Cvt.h" #include "O2OTranslator/TimepixDataV2Cvt.h" #include "pdsdata/xtc/TypeId.hh" //----------------------------------------------------------------------- // Local Macros, Typedefs, Structures, Unions and Forward Declarations -- //----------------------------------------------------------------------- using boost::make_shared; using boost::shared_ptr; using namespace H5DataTypes; namespace { using O2OTranslator::O2OCvtFactory; template<typename ConfigType> void makeConfigCvt(O2OCvtFactory::DataTypeCvtList& cvts, const hdf5pp::Group& group, const std::string& typeGroupName, Pds::Src src, Pds::TransitionId::Value transition, const O2OTranslator::CvtOptions& cvtOptions, int schemaVersion) { // For config type we register one of two converters - regular config converter // which works for non-event transitions and event-type converter for configuration // objects appearing inside L1Accept if (transition == Pds::TransitionId::L1Accept) { // case for event-like configurations cvts.push_back(make_shared<O2OTranslator::EvtDataTypeCvtDef<ConfigType> >(group, typeGroupName, src, cvtOptions, schemaVersion, "config")); } else { cvts.push_back(make_shared<O2OTranslator::ConfigDataTypeCvt<ConfigType> >(group, typeGroupName, src, schemaVersion)); } } } // ---------------------------------------- // -- Public Function Member Definitions -- // ---------------------------------------- namespace O2OTranslator { /** * @brief Constructor instantiates converters for all known data types */ O2OCvtFactory::O2OCvtFactory(ConfigObjectStore& configStore, CalibObjectStore& calibStore, const O2OMetaData& metadata, const CvtOptions& cvtOptions) : m_configStore(configStore) , m_calibStore(calibStore) , m_metadata(metadata) , m_cvtOptions(cvtOptions) , m_groupCvtMap() { } // Return the list of converters for given arguments. O2OCvtFactory::DataTypeCvtList O2OCvtFactory::getConverters(const hdf5pp::Group& group, Pds::TypeId typeId, Pds::Src src, Pds::TransitionId::Value transition) { TypeSrcCvtMap& typeSrcCvtMap = m_groupCvtMap[group]; TypeSrcCvtMap::iterator it = typeSrcCvtMap.find(std::make_pair(typeId, src)); if (it != typeSrcCvtMap.end()) return it->second; // if not found make a full list const DataTypeCvtList& cvts = makeCvts(group, typeId, src, transition); typeSrcCvtMap.insert(TypeSrcCvtMap::value_type(std::make_pair(typeId, src), cvts)); return cvts; } O2OCvtFactory::DataTypeCvtList O2OCvtFactory::makeCvts(const hdf5pp::Group& group, Pds::TypeId typeId, Pds::Src src, Pds::TransitionId::Value transition) { DataTypeCvtList cvts; uint32_t version = typeId.version(); switch(typeId.id()) { case Pds::TypeId::Any: case Pds::TypeId::Id_Xtc: break; case Pds::TypeId::Id_Frame: switch (version) { case 1: cvts.push_back(make_shared<CameraFrameV1Cvt>(group, "Camera::FrameV1", src, m_cvtOptions, 0)); break; } break; case Pds::TypeId::Id_AcqWaveform: switch (version) { case 1: // very special converter for Acqiris::DataDescV1, it needs two types of data cvts.push_back(make_shared<AcqirisDataDescV1Cvt>(group, "Acqiris::DataDescV1", src, m_configStore, m_cvtOptions, 1)); break; } break; case Pds::TypeId::Id_AcqConfig: // very special converters for Acqiris config data if (version == 1) { if (src.level() == Pds::Level::Reporter) { // case for BLD data cvts.push_back(make_shared<AcqirisConfigV1Cvt>(group, "Acqiris::ConfigV1", src, m_cvtOptions, 0)); } else { cvts.push_back(make_shared<O2OTranslator::ConfigDataTypeCvt<AcqirisConfigV1> >(group, "Acqiris::ConfigV1", src, 0)); } } break; case Pds::TypeId::Id_TwoDGaussian: switch (version) { case 1: cvts.push_back(make_shared<EvtDataTypeCvtDef<CameraTwoDGaussianV1> >(group, "Camera::TwoDGaussianV1", src, m_cvtOptions, 0)); break; } break; case Pds::TypeId::Id_Opal1kConfig: switch (version) { case 1: ::makeConfigCvt<Opal1kConfigV1>(cvts, group, "Opal1k::ConfigV1", src, transition, m_cvtOptions, 0); break; } break; case Pds::TypeId::Id_FrameFexConfig: switch (version) { case 1: ::makeConfigCvt<CameraFrameFexConfigV1>(cvts, group, "Camera::FrameFexConfigV1", src, transition, m_cvtOptions, 0); break; } break; case Pds::TypeId::Id_EvrConfig: switch (version) { case 1: ::makeConfigCvt<EvrConfigV1>(cvts, group, "EvrData::ConfigV1", src, transition, m_cvtOptions, 0); break; case 2: ::makeConfigCvt<EvrConfigV2>(cvts, group, "EvrData::ConfigV2", src, transition, m_cvtOptions, 0); break; case 3: ::makeConfigCvt<EvrConfigV3>(cvts, group, "EvrData::ConfigV3", src, transition, m_cvtOptions, 0); break; case 4: ::makeConfigCvt<EvrConfigV4>(cvts, group, "EvrData::ConfigV4", src, transition, m_cvtOptions, 0); break; case 5: ::makeConfigCvt<EvrConfigV5>(cvts, group, "EvrData::ConfigV5", src, transition, m_cvtOptions, 0); break; case 6: ::makeConfigCvt<EvrConfigV6>(cvts, group, "EvrData::ConfigV6", src, transition, m_cvtOptions, 0); break; case 7: ::makeConfigCvt<EvrConfigV7>(cvts, group, "EvrData::ConfigV7", src, transition, m_cvtOptions, 0); break; } break; case Pds::TypeId::Id_TM6740Config: switch (version) { case 1: ::makeConfigCvt<PulnixTM6740ConfigV1>(cvts, group, "Pulnix::TM6740ConfigV1", src, transition, m_cvtOptions, 0); break; case 2: ::makeConfigCvt<PulnixTM6740ConfigV2>(cvts, group, "Pulnix::TM6740ConfigV2", src, transition, m_cvtOptions, 0); break; } break; case Pds::TypeId::Id_ControlConfig: switch (version) { case 1: ::makeConfigCvt<ControlDataConfigV1>(cvts, group, "ControlData::ConfigV1", src, transition, m_cvtOptions, 0); break; case 2: ::makeConfigCvt<ControlDataConfigV2>(cvts, group, "ControlData::ConfigV2", src, transition, m_cvtOptions, 2); break; case 3: ::makeConfigCvt<ControlDataConfigV3>(cvts, group, "ControlData::ConfigV3", src, transition, m_cvtOptions, 1); break; } break; case Pds::TypeId::Id_pnCCDframe: switch (version) { case 1: // very special converter for PNCCD::FrameV1, it needs two types of data cvts.push_back(make_shared<PnCCDFrameV1Cvt>(group, "PNCCD::FrameV1", src, m_configStore, m_cvtOptions, 0)); break; } break; case Pds::TypeId::Id_pnCCDconfig: switch (version) { case 1: ::makeConfigCvt<PnCCDConfigV1>(cvts, group, "PNCCD::ConfigV1", src, transition, m_cvtOptions, 0); break; case 2: ::makeConfigCvt<PnCCDConfigV2>(cvts, group, "PNCCD::ConfigV2", src, transition, m_cvtOptions, 0); break; } break; case Pds::TypeId::Id_Epics: switch (version) { case 1: // Epics converter, non-default chunk size cvts.push_back(make_shared<EpicsDataTypeCvt>(group, "Epics::EpicsPv", src, m_configStore, 16*1024, m_cvtOptions.compLevel(), 0)); break; } break; case Pds::TypeId::Id_FEEGasDetEnergy: switch (version) { case 0: // version for this type is 0 cvts.push_back(make_shared<EvtDataTypeCvtDef<BldDataFEEGasDetEnergy> >(group, "Bld::BldDataFEEGasDetEnergy", src, m_cvtOptions, 0)); break; } break; case Pds::TypeId::Id_EBeam: switch (version) { case 0: cvts.push_back(make_shared<EvtDataTypeCvtDef<BldDataEBeamV0> >(group, "Bld::BldDataEBeamV0", src, m_cvtOptions, 0)); break; case 1: cvts.push_back(make_shared<EvtDataTypeCvtDef<BldDataEBeamV1> >(group, "Bld::BldDataEBeamV1", src, m_cvtOptions, 0)); break; case 2: cvts.push_back(make_shared<EvtDataTypeCvtDef<BldDataEBeamV2> >(group, "Bld::BldDataEBeamV2", src, m_cvtOptions, 0)); break; case 3: cvts.push_back(make_shared<EvtDataTypeCvtDef<BldDataEBeamV3> >(group, "Bld::BldDataEBeamV3", src, m_cvtOptions, 0)); break; case 4: cvts.push_back(make_shared<EvtDataTypeCvtDef<BldDataEBeamV4> >(group, "Bld::BldDataEBeamV4", src, m_cvtOptions, 0)); break; } break; case Pds::TypeId::Id_PhaseCavity: switch (version) { case 0: // version for this type is 0 cvts.push_back(make_shared<EvtDataTypeCvtDef<BldDataPhaseCavity> >(group, "Bld::BldDataPhaseCavity", src, m_cvtOptions, 0)); break; } break; case Pds::TypeId::Id_PrincetonFrame: switch (version) { case 1: // very special converter for Princeton::FrameV1, it needs two types of data cvts.push_back(make_shared<PrincetonFrameCvt<PrincetonFrameV1> >(group, "Princeton::FrameV1", src, m_configStore, m_cvtOptions, 0)); break; case 2: // very special converter for Princeton::FrameV2, it needs two types of data cvts.push_back(make_shared<PrincetonFrameCvt<PrincetonFrameV2> >(group, "Princeton::FrameV2", src, m_configStore, m_cvtOptions, 0)); break; } break; case Pds::TypeId::Id_PrincetonConfig: switch (version) { case 1: ::makeConfigCvt<PrincetonConfigV1>(cvts, group, "Princeton::ConfigV1", src, transition, m_cvtOptions, 0); break; case 2: ::makeConfigCvt<PrincetonConfigV2>(cvts, group, "Princeton::ConfigV2", src, transition, m_cvtOptions, 0); break; case 3: ::makeConfigCvt<PrincetonConfigV3>(cvts, group, "Princeton::ConfigV3", src, transition, m_cvtOptions, 0); break; case 4: ::makeConfigCvt<PrincetonConfigV4>(cvts, group, "Princeton::ConfigV4", src, transition, m_cvtOptions, 0); break; case 5: ::makeConfigCvt<PrincetonConfigV5>(cvts, group, "Princeton::ConfigV5", src, transition, m_cvtOptions, 0); break; } break; case Pds::TypeId::Id_EvrData: switch (version) { case 3: cvts.push_back(make_shared<EvtDataTypeCvtDef<EvrDataV3> >(group, "EvrData::DataV3", src, m_cvtOptions, 0)); break; } break; case Pds::TypeId::Id_FrameFccdConfig: // was never implemented in pdsdata break; case Pds::TypeId::Id_FccdConfig: switch (version) { case 1: ::makeConfigCvt<FccdConfigV1>(cvts, group, "FCCD::FccdConfigV1", src, transition, m_cvtOptions, 0); break; case 2: ::makeConfigCvt<FccdConfigV2>(cvts, group, "FCCD::FccdConfigV2", src, transition, m_cvtOptions, 0); break; } break; case Pds::TypeId::Id_IpimbData: switch (version) { case 1: cvts.push_back(make_shared<EvtDataTypeCvtDef<H5DataTypes::IpimbDataV1> >(group, "Ipimb::DataV1", src, m_cvtOptions, 0)); break; case 2: cvts.push_back(make_shared<EvtDataTypeCvtDef<H5DataTypes::IpimbDataV2> >(group, "Ipimb::DataV2", src, m_cvtOptions, 0)); break; } break; case Pds::TypeId::Id_IpimbConfig: switch (version) { case 1: ::makeConfigCvt<H5DataTypes::IpimbConfigV1>(cvts, group, "Ipimb::ConfigV1", src, transition, m_cvtOptions, 0); break; case 2: ::makeConfigCvt<H5DataTypes::IpimbConfigV2>(cvts, group, "Ipimb::ConfigV2", src, transition, m_cvtOptions, 0); break; } break; case Pds::TypeId::Id_EncoderData: switch (version) { case 1: cvts.push_back(make_shared<EvtDataTypeCvtDef<EncoderDataV1> >(group, "Encoder::DataV1", src, m_cvtOptions, 0)); break; case 2: cvts.push_back(make_shared<EvtDataTypeCvtDef<EncoderDataV2> >(group, "Encoder::DataV2", src, m_cvtOptions, 0)); break; } break; case Pds::TypeId::Id_EncoderConfig: switch (version) { case 1: ::makeConfigCvt<EncoderConfigV1>(cvts, group, "Encoder::ConfigV1", src, transition, m_cvtOptions, 0); break; case 2: ::makeConfigCvt<EncoderConfigV2>(cvts, group, "Encoder::ConfigV2", src, transition, m_cvtOptions, 0); break; } break; case Pds::TypeId::Id_EvrIOConfig: switch (version) { case 1: ::makeConfigCvt<EvrIOConfigV1>(cvts, group, "EvrData::IOConfigV1", src, transition, m_cvtOptions, 0); break; } break; case Pds::TypeId::Id_PrincetonInfo: switch (version) { case 1: cvts.push_back(make_shared<EvtDataTypeCvtDef<PrincetonInfoV1> >(group, "Princeton::InfoV1", src, m_cvtOptions, 0)); break; } break; case Pds::TypeId::Id_CspadElement: switch (version) { case 1: // very special converter for CsPad::ElementV1, it needs two types of data cvts.push_back(make_shared<CsPadElementV1Cvt>(group, "CsPad::ElementV1", src, m_configStore, m_calibStore, m_cvtOptions, 0)); break; case 2: // very special converter for CsPad::ElementV2, it needs two types of data cvts.push_back(make_shared<CsPadElementV2Cvt>(group, "CsPad::ElementV2", src, m_configStore, m_calibStore, m_cvtOptions, 0)); break; } break; case Pds::TypeId::Id_CspadConfig: switch (version) { case 1: ::makeConfigCvt<CsPadConfigV1>(cvts, group, "CsPad::ConfigV1", src, transition, m_cvtOptions, 0); break; case 2: ::makeConfigCvt<CsPadConfigV2>(cvts, group, "CsPad::ConfigV2", src, transition, m_cvtOptions, 0); break; case 3: ::makeConfigCvt<CsPadConfigV3>(cvts, group, "CsPad::ConfigV3", src, transition, m_cvtOptions, 0); break; case 4: ::makeConfigCvt<CsPadConfigV4>(cvts, group, "CsPad::ConfigV4", src, transition, m_cvtOptions, 0); break; case 5: ::makeConfigCvt<CsPadConfigV5>(cvts, group, "CsPad::ConfigV5", src, transition, m_cvtOptions, 0); break; } // special converter object for CsPad calibration data cvts.push_back(shared_ptr<CsPadCalibV1Cvt>(new CsPadCalibV1Cvt(group, "CsPad::CalibV1", src, m_metadata, m_calibStore, 0))); if (version == 3) { // some cspad2x2 data was produced without Cspad2x2Config object but // with CspadConfig/3 instead cvts.push_back(shared_ptr<CsPad2x2CalibV1Cvt>(new CsPad2x2CalibV1Cvt(group, "CsPad2x2::CalibV1", src, m_metadata, m_calibStore, 0))); } break; case Pds::TypeId::Id_IpmFexConfig: switch (version) { case 1: ::makeConfigCvt<LusiIpmFexConfigV1>(cvts, group, "Lusi::IpmFexConfigV1", src, transition, m_cvtOptions, 0); break; case 2: ::makeConfigCvt<LusiIpmFexConfigV2>(cvts, group, "Lusi::IpmFexConfigV2", src, transition, m_cvtOptions, 0); break; } break; case Pds::TypeId::Id_IpmFex: switch (version) { case 1: cvts.push_back(make_shared<EvtDataTypeCvtDef<LusiIpmFexV1> >(group, "Lusi::IpmFexV1", src, m_cvtOptions, 0)); break; } break; case Pds::TypeId::Id_DiodeFexConfig: switch (version) { case 1: ::makeConfigCvt<LusiDiodeFexConfigV1>(cvts, group, "Lusi::DiodeFexConfigV1", src, transition, m_cvtOptions, 0); break; case 2: ::makeConfigCvt<LusiDiodeFexConfigV2>(cvts, group, "Lusi::DiodeFexConfigV2", src, transition, m_cvtOptions, 0); break; } break; case Pds::TypeId::Id_DiodeFex: switch (version) { case 1: cvts.push_back(make_shared<EvtDataTypeCvtDef<LusiDiodeFexV1> >(group, "Lusi::DiodeFexV1", src, m_cvtOptions, 0)); break; } break; case Pds::TypeId::Id_PimImageConfig: switch (version) { case 1: ::makeConfigCvt<LusiPimImageConfigV1>(cvts, group, "Lusi::PimImageConfigV1", src, transition, m_cvtOptions, 0); break; } break; case Pds::TypeId::Id_SharedIpimb: // ==== shared stuff is split now === // switch (version) { // case 0: // cvts.push_back(make_shared<EvtDataTypeCvtDef<BldDataIpimbV0> >(group, "Bld::BldDataIpimbV0", src, m_cvtOptions)); // break; // case 1: // cvts.push_back(make_shared<EvtDataTypeCvtDef<BldDataIpimbV1> >(group, "Bld::BldDataIpimbV1", src, m_cvtOptions)); // break; // } break; case Pds::TypeId::Id_AcqTdcConfig: switch (version) { case 1: ::makeConfigCvt<AcqirisTdcConfigV1>(cvts, group, "Acqiris::AcqirisTdcConfigV1", src, transition, m_cvtOptions, 0); break; } break; case Pds::TypeId::Id_AcqTdcData: switch (version) { case 1: cvts.push_back(make_shared<AcqirisTdcDataV1Cvt>(group, "Acqiris::TdcDataV1", src, m_cvtOptions, 0)); break; } break; case Pds::TypeId::Id_Index: // this is not meant to be converted break; case Pds::TypeId::Id_XampsConfig: // TODO: implement when pdsdata is ready break; case Pds::TypeId::Id_XampsElement: // TODO: implement when pdsdata is ready break; case Pds::TypeId::Id_Cspad2x2Element: switch (version) { case 1: // very special converter for CsPad2x2::ElementV1, it needs calibrations cvts.push_back(make_shared<CsPad2x2ElementV1Cvt>(group, "CsPad2x2::ElementV1", src, m_calibStore, m_cvtOptions, 0)); break; } break; case Pds::TypeId::Id_SharedPim: // ==== shared stuff is split now === // switch (version) { // case 1: // cvts.push_back(make_shared<EvtDataTypeCvtDef<BldDataPimV1> >(group, "Bld::BldDataPimV1", src, m_cvtOptions)); // break; // } break; case Pds::TypeId::Id_Cspad2x2Config: switch (version) { case 1: ::makeConfigCvt<CsPad2x2ConfigV1>(cvts, group, "CsPad2x2::ConfigV1", src, transition, m_cvtOptions, 0); break; case 2: ::makeConfigCvt<CsPad2x2ConfigV2>(cvts, group, "CsPad2x2::ConfigV2", src, transition, m_cvtOptions, 0); break; } // special converter object for CsPad calibration data cvts.push_back(shared_ptr<CsPad2x2CalibV1Cvt>(new CsPad2x2CalibV1Cvt(group, "CsPad2x2::CalibV1", src, m_metadata, m_calibStore, 0))); break; case Pds::TypeId::Id_FexampConfig: // TODO: implement when pdsdata is ready break; case Pds::TypeId::Id_FexampElement: // TODO: implement when pdsdata is ready break; case Pds::TypeId::Id_Gsc16aiConfig: switch (version) { case 1: ::makeConfigCvt<Gsc16aiConfigV1>(cvts, group, "Gsc16ai::ConfigV1", src, transition, m_cvtOptions, 0); break; } break; case Pds::TypeId::Id_Gsc16aiData: switch (version) { case 1: // very special converter for Gsc16ai::DataV1, it needs two types of data cvts.push_back(make_shared<Gsc16aiDataV1Cvt>(group, "Gsc16ai::DataV1", src, m_configStore, m_cvtOptions, 0)); break; } break; case Pds::TypeId::Id_PhasicsConfig: // TODO: implement when pdsdata is ready break; case Pds::TypeId::Id_TimepixConfig: switch (version) { case 1: ::makeConfigCvt<TimepixConfigV1>(cvts, group, "Timepix::ConfigV1", src, transition, m_cvtOptions, 0); break; case 2: ::makeConfigCvt<TimepixConfigV2>(cvts, group, "Timepix::ConfigV2", src, transition, m_cvtOptions, 0); break; case 3: ::makeConfigCvt<TimepixConfigV3>(cvts, group, "Timepix::ConfigV3", src, transition, m_cvtOptions, 0); break; } break; case Pds::TypeId::Id_TimepixData: switch (version) { case 1: // very special converter for Timepix::DataV1 // Note that it makes group DataV2 as internally it converts DataV1 into DataV2 cvts.push_back(make_shared<TimepixDataV1Cvt>(group, "Timepix::DataV2", src, m_cvtOptions, 0)); break; case 2: // very special converter for Timepix::DataV1 cvts.push_back(make_shared<TimepixDataV2Cvt>(group, "Timepix::DataV2", src, m_cvtOptions, 0)); break; } break; case Pds::TypeId::Id_CspadCompressedElement: break; case Pds::TypeId::Id_OceanOpticsConfig: switch (version) { case 1: ::makeConfigCvt<OceanOpticsConfigV1>(cvts, group, "OceanOptics::ConfigV1", src, transition, m_cvtOptions, 0); break; } break; case Pds::TypeId::Id_OceanOpticsData: switch (version) { case 1: // very special converter for OceanOptics::DataV1, it needs two types of data cvts.push_back(make_shared<OceanOpticsDataV1Cvt>(group, "OceanOptics::DataV1", src, m_configStore, m_cvtOptions, 0)); break; } break; case Pds::TypeId::Id_EpicsConfig: // this is handled internally by regular epics converter break; case Pds::TypeId::Id_FliConfig: switch (version) { case 1: ::makeConfigCvt<FliConfigV1>(cvts, group, "Fli::ConfigV1", src, transition, m_cvtOptions, 0); break; } break; case Pds::TypeId::Id_FliFrame: switch (version) { case 1: // very special converter for Fli::FrameV1, it needs two types of data cvts.push_back(make_shared<FliFrameV1Cvt<FliFrameV1> >(group, "Fli::FrameV1", src, m_configStore, Pds::TypeId(Pds::TypeId::Id_FliConfig, 1), m_cvtOptions, 0)); break; } break; case Pds::TypeId::Id_QuartzConfig: switch (version) { case 1: ::makeConfigCvt<QuartzConfigV1>(cvts, group, "Quartz::ConfigV1", src, transition, m_cvtOptions, 0); break; } break; case Pds::TypeId::Reserved1: break; case Pds::TypeId::Reserved2: break; case Pds::TypeId::Id_AndorConfig: switch (version) { case 1: ::makeConfigCvt<AndorConfigV1>(cvts, group, "Andor::ConfigV1", src, transition, m_cvtOptions, 0); break; } break; case Pds::TypeId::Id_AndorFrame: switch (version) { case 1: // very special converter for Andor::FrameV1, it needs two types of data cvts.push_back(make_shared<FliFrameV1Cvt<AndorFrameV1> >(group, "Andor::FrameV1", src, m_configStore, Pds::TypeId(Pds::TypeId::Id_FliConfig, 1), m_cvtOptions, 0)); break; } break; case Pds::TypeId::Id_UsdUsbData: switch (version) { case 1: cvts.push_back(make_shared<EvtDataTypeCvtDef<UsdUsbDataV1> >(group, "UsdUsb::DataV1", src, m_cvtOptions, 1)); break; } break; case Pds::TypeId::Id_UsdUsbConfig: switch (version) { case 1: ::makeConfigCvt<UsdUsbConfigV1>(cvts, group, "UsdUsb::ConfigV1", src, transition, m_cvtOptions, 0); break; } break; case Pds::TypeId::Id_GMD: switch (version) { case 0: cvts.push_back(make_shared<EvtDataTypeCvtDef<BldDataGMDV0> >(group, "Bld::BldDataGMDV0", src, m_cvtOptions, 0)); break; case 1: cvts.push_back(make_shared<EvtDataTypeCvtDef<BldDataGMDV1> >(group, "Bld::BldDataGMDV1", src, m_cvtOptions, 0)); break; } break; case Pds::TypeId::Id_SharedAcqADC: // shared stuff is split now break; case Pds::TypeId::Id_OrcaConfig: switch (version) { case 1: ::makeConfigCvt<OrcaConfigV1>(cvts, group, "Orca::ConfigV1", src, transition, m_cvtOptions, 0); break; } break; case Pds::TypeId::Id_ImpConfig: switch (version) { case 1: ::makeConfigCvt<ImpConfigV1>(cvts, group, "Imp::ConfigV1", src, transition, m_cvtOptions, 0); break; } break; case Pds::TypeId::Id_ImpData: switch (version) { case 1: // very special converter for Imp::ElementV1, it needs two types of data cvts.push_back(make_shared<ImpElementV1Cvt>(group, "Imp::ElementV1", src, m_configStore, m_cvtOptions, 0)); break; } break; case Pds::TypeId::Id_AliasConfig: switch (version) { case 1: ::makeConfigCvt<AliasConfigV1>(cvts, group, "Alias::ConfigV1", src, transition, m_cvtOptions, 0); break; } break; case Pds::TypeId::Id_L3TConfig: switch (version) { case 1: ::makeConfigCvt<L3TConfigV1>(cvts, group, "L3T::ConfigV1", src, transition, m_cvtOptions, 0); break; } break; case Pds::TypeId::Id_L3TData: switch (version) { case 1: cvts.push_back(make_shared<EvtDataTypeCvtDef<L3TDataV1> >(group, "L3T::DataV1", src, m_cvtOptions, 0)); break; } break; case Pds::TypeId::Id_Spectrometer: switch (version) { case 0: cvts.push_back(make_shared<EvtDataTypeCvtDef<BldDataSpectrometerV0> >(group, "Bld::BldDataSpectrometerV0", src, m_cvtOptions, 0)); break; } break; case Pds::TypeId::Id_RayonixConfig: switch (version) { case 1: ::makeConfigCvt<RayonixConfigV1>(cvts, group, "Rayonix::ConfigV1", src, transition, m_cvtOptions, 0); break; } break; case Pds::TypeId::NumberOf: break; } return cvts; } // Notify factory that the group is about to be closed. void O2OCvtFactory::closeGroup(const hdf5pp::Group& group) { m_groupCvtMap.erase(group); } bool O2OCvtFactory::TypeAndSourceCmp::operator()(const TypeAndSource& lhs, const TypeAndSource& rhs) const { if (lhs.first.value() < rhs.first.value()) return true; if (lhs.first.value() > rhs.first.value()) return false; if (lhs.second.phy() < rhs.second.phy()) return true; if (lhs.second.phy() > rhs.second.phy()) return false; // for all known Src subtypes log() value is a combination of // level and process ID. We do not want to compare PIDs (we consider // all sources with different PIDs identical, different PIDs probably // only happen in EPICS data). return int(lhs.second.level()) < int(rhs.second.level()); }; } // namespace O2OTranslator
[ "salnikov@SLAC.STANFORD.EDU@b967ad99-d558-0410-b138-e0f6c56caec7" ]
salnikov@SLAC.STANFORD.EDU@b967ad99-d558-0410-b138-e0f6c56caec7
8c050208488f501261e0726e3939dc8eed09afdd
0d0e78c6262417fb1dff53901c6087b29fe260a0
/ie/src/v20200304/model/CoverTaskResult.cpp
5b06b951d6d7c0f19081b859bf60f57fc42f2a0c
[ "Apache-2.0" ]
permissive
li5ch/tencentcloud-sdk-cpp
ae35ffb0c36773fd28e1b1a58d11755682ade2ee
12ebfd75a399ee2791f6ac1220a79ce8a9faf7c4
refs/heads/master
2022-12-04T15:33:08.729850
2020-07-20T00:52:24
2020-07-20T00:52:24
281,135,686
1
0
Apache-2.0
2020-07-20T14:14:47
2020-07-20T14:14:46
null
UTF-8
C++
false
false
5,326
cpp
/* * Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. 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 <tencentcloud/ie/v20200304/model/CoverTaskResult.h> using TencentCloud::CoreInternalOutcome; using namespace TencentCloud::Ie::V20200304::Model; using namespace rapidjson; using namespace std; CoverTaskResult::CoverTaskResult() : m_statusHasBeenSet(false), m_errCodeHasBeenSet(false), m_errMsgHasBeenSet(false), m_itemSetHasBeenSet(false) { } CoreInternalOutcome CoverTaskResult::Deserialize(const Value &value) { string requestId = ""; if (value.HasMember("Status") && !value["Status"].IsNull()) { if (!value["Status"].IsInt64()) { return CoreInternalOutcome(Error("response `CoverTaskResult.Status` IsInt64=false incorrectly").SetRequestId(requestId)); } m_status = value["Status"].GetInt64(); m_statusHasBeenSet = true; } if (value.HasMember("ErrCode") && !value["ErrCode"].IsNull()) { if (!value["ErrCode"].IsInt64()) { return CoreInternalOutcome(Error("response `CoverTaskResult.ErrCode` IsInt64=false incorrectly").SetRequestId(requestId)); } m_errCode = value["ErrCode"].GetInt64(); m_errCodeHasBeenSet = true; } if (value.HasMember("ErrMsg") && !value["ErrMsg"].IsNull()) { if (!value["ErrMsg"].IsString()) { return CoreInternalOutcome(Error("response `CoverTaskResult.ErrMsg` IsString=false incorrectly").SetRequestId(requestId)); } m_errMsg = string(value["ErrMsg"].GetString()); m_errMsgHasBeenSet = true; } if (value.HasMember("ItemSet") && !value["ItemSet"].IsNull()) { if (!value["ItemSet"].IsArray()) return CoreInternalOutcome(Error("response `CoverTaskResult.ItemSet` is not array type")); const Value &tmpValue = value["ItemSet"]; for (Value::ConstValueIterator itr = tmpValue.Begin(); itr != tmpValue.End(); ++itr) { CoverTaskResultItem item; CoreInternalOutcome outcome = item.Deserialize(*itr); if (!outcome.IsSuccess()) { outcome.GetError().SetRequestId(requestId); return outcome; } m_itemSet.push_back(item); } m_itemSetHasBeenSet = true; } return CoreInternalOutcome(true); } void CoverTaskResult::ToJsonObject(Value &value, Document::AllocatorType& allocator) const { if (m_statusHasBeenSet) { Value iKey(kStringType); string key = "Status"; iKey.SetString(key.c_str(), allocator); value.AddMember(iKey, m_status, allocator); } if (m_errCodeHasBeenSet) { Value iKey(kStringType); string key = "ErrCode"; iKey.SetString(key.c_str(), allocator); value.AddMember(iKey, m_errCode, allocator); } if (m_errMsgHasBeenSet) { Value iKey(kStringType); string key = "ErrMsg"; iKey.SetString(key.c_str(), allocator); value.AddMember(iKey, Value(m_errMsg.c_str(), allocator).Move(), allocator); } if (m_itemSetHasBeenSet) { Value iKey(kStringType); string key = "ItemSet"; iKey.SetString(key.c_str(), allocator); value.AddMember(iKey, Value(kArrayType).Move(), allocator); int i=0; for (auto itr = m_itemSet.begin(); itr != m_itemSet.end(); ++itr, ++i) { value[key.c_str()].PushBack(Value(kObjectType).Move(), allocator); (*itr).ToJsonObject(value[key.c_str()][i], allocator); } } } int64_t CoverTaskResult::GetStatus() const { return m_status; } void CoverTaskResult::SetStatus(const int64_t& _status) { m_status = _status; m_statusHasBeenSet = true; } bool CoverTaskResult::StatusHasBeenSet() const { return m_statusHasBeenSet; } int64_t CoverTaskResult::GetErrCode() const { return m_errCode; } void CoverTaskResult::SetErrCode(const int64_t& _errCode) { m_errCode = _errCode; m_errCodeHasBeenSet = true; } bool CoverTaskResult::ErrCodeHasBeenSet() const { return m_errCodeHasBeenSet; } string CoverTaskResult::GetErrMsg() const { return m_errMsg; } void CoverTaskResult::SetErrMsg(const string& _errMsg) { m_errMsg = _errMsg; m_errMsgHasBeenSet = true; } bool CoverTaskResult::ErrMsgHasBeenSet() const { return m_errMsgHasBeenSet; } vector<CoverTaskResultItem> CoverTaskResult::GetItemSet() const { return m_itemSet; } void CoverTaskResult::SetItemSet(const vector<CoverTaskResultItem>& _itemSet) { m_itemSet = _itemSet; m_itemSetHasBeenSet = true; } bool CoverTaskResult::ItemSetHasBeenSet() const { return m_itemSetHasBeenSet; }
[ "tencentcloudapi@tenent.com" ]
tencentcloudapi@tenent.com
879ea5f0a78dddf8b4dd34711f36339aec4cd755
980ff4935a3ec6fc38e6aa41301b970c50f3c802
/inverse_pendulum_control/src/pid_inverse_pendulum.h
019b44585a3a817ce54620bd93721e9c7bf6b1d1
[]
no_license
vuvuzella/ros_inverse_pendulum
ee06b8842cd42fd672d7477f6a3eec12c17327b5
5138b827c5355ca77bae69e8761d60205f97f6e1
refs/heads/master
2022-10-24T19:33:44.740198
2020-06-13T13:38:24
2020-06-13T13:38:24
272,016,075
1
0
null
null
null
null
UTF-8
C++
false
false
1,083
h
#include "ros/init.h" #include "ros/node_handle.h" #include <ros/ros.h> #include "ros/subscriber.h" #include "ros/rate.h" #include "sensor_msgs/JointState.h" #include <sensor_msgs/Imu.h> #include <geometry_msgs/Quaternion.h> #include <string.h> #include <std_msgs/Float64.h> class PIDInversePendulum { public: double imuX; double imuY; double imuZ; double imuW; // double armPos; // double armVel; // double armEffort; double conPos; double conVel; double conEffort; std::string jointName; double pGain; double iGain; double dGain; double error; PIDInversePendulum(); ~PIDInversePendulum(); // Callback functions for subscribers void jointStateCallback(const sensor_msgs::JointState& msg); void imuCallback(const sensor_msgs::Imu& msg); // TODO: functions to calculate desired arm tilt // TODO: the PID functions to maintain the arm tilt double updatePID(double goal); };
[ "j.tabacii@gmail.com" ]
j.tabacii@gmail.com
9c59624b9f0dffd64adf0513cc99198506b19748
64732dfaeb3efb781db6e894bebfe23d627278e7
/LoganEngine/old/lInterfaces/lResourceManager/liGPUFactory.h
259fc2f53a0554da918bc778b76c515197d03bc8
[ "MIT" ]
permissive
sereslorant/logan_engine
b791f843a36bd19caa4cc97dc4ec102a37cb650a
a596b4128d0a58236be00f93064e276e43484017
refs/heads/master
2020-05-21T19:41:45.676116
2018-01-28T10:25:43
2018-01-28T10:25:43
63,418,341
1
0
null
null
null
null
UTF-8
C++
false
false
4,340
h
#ifndef LI_GPU_FACTORY_H #define LI_GPU_FACTORY_H /* * Itt include-oljuk be azokat az interface-eket, amelyeken keresztül a resource manager adatokat közöl a * motor rendererével. * */ #include "liBitmap.h" #include "../../lMath/lMath.h" #include <string> class liStaticMeshResource { public: virtual unsigned int GetVertexBufferLength() const = 0; virtual const lmVector3D *GetVertexArray() const = 0; virtual const lmVector3D *GetNormalArray() const = 0; virtual const lmVector3D *GetTangentArray() const = 0; virtual const lmVector3D *GetBitangentArray() const = 0; virtual const lmVector2D *GetTexCoordArray() const = 0; class liMtlGroup { public: virtual const std::string &GetMaterial() const = 0; virtual unsigned int GetIndexBufferLength() const = 0; virtual const unsigned int *GetIndexArray() const = 0; liMtlGroup(){} virtual ~liMtlGroup(){} }; virtual unsigned int GetMatGroupsSize() const = 0; virtual const liMtlGroup *GetMtlGroup(unsigned int i) const = 0; liStaticMeshResource(){} virtual ~liStaticMeshResource(){} }; class liSkeletalMeshResource { public: static const unsigned int MAX_WEIGHT_COUNT = 4; virtual unsigned int GetVertexBufferLength() const = 0; virtual const lmVector3D *GetVertexArray() const = 0; virtual const lmVector3D *GetNormalArray() const = 0; virtual const lmVector3D *GetTangentArray() const = 0; virtual const lmVector3D *GetBitangentArray() const = 0; virtual const lmVector2D *GetTexCoordArray() const = 0; virtual const int *GetBoneIdArray() const = 0; virtual const float *GetWeightArray() const = 0; virtual unsigned int GetBoneIdStructSize() const = 0; virtual unsigned int GetWeightStructSize() const = 0; virtual const std::string &GetMaterial() const = 0; virtual unsigned int GetIndexBufferLength() const = 0; virtual const unsigned int *GetIndexArray() const = 0; liSkeletalMeshResource(){} virtual ~liSkeletalMeshResource(){} }; #include "../lRenderer/liImg.h" #include "../lRenderer/liStaticMesh.h" #include "../lRenderer/liSkeletalMesh.h" class liGPUFactory { public: /** \brief Ez a függvény feltölt egy bittérképet a videokártya memóriájába, és visszaad egy lrImg-et paraméterbe, amin keresztül el lehet érni. * * \todo A paraméterekhez fűzöttkomment nagyon parasztosan van megfogalmazva, át kell fogalmazni. * * \param Img lrImg **: Arra az lrImg pointerre mutató pointer, amelyet rá akarunk állítani az újonnan létrehozott lrImg-re. * \param Bmp BMP *: A betöltött bittérkép adatai * \return void * */ virtual void UploadImage(liImg* &Img,liBitmap *Bmp) = 0; virtual void UploadCubemap(liImg* &Img,liBitmap *bitmaps[6]) = 0; /** \brief Ez a függvény feltölti a paraméterben kapott statikus mesht a videokártya memóriájába, és visszaad egy lrStaticMesht paraméterbe, amin keresztül el lehet érni. * * \todo A paraméterekhez fűzöttkomment nagyon parasztosan van megfogalmazva, át kell fogalmazni. * * \param Mesh lrStaticMesh **: arra a static mesh pointerre mutató pointer, amelyet rá akarunk állítani az újonnan létrehozott statikus meshre. * \param Src lrmStaticMesh *: a fájlból betöltött csúcspontokat, háromszögeket és material groupokat tartalmazó adatstruktúra. * \return void * */ virtual void UploadStaticMesh(liStaticMesh* &Mesh,liStaticMeshResource *Src) = 0; /** \brief Ez a függvény feltölti a paraméterben kapott skeletal mesht a videokártya memóriájába, és visszaad egy lrSkeletalMesht paraméterbe, amin keresztül el lehet érni. * * \todo A paraméterekhez fűzöttkomment nagyon parasztosan van megfogalmazva, át kell fogalmazni. * * \param Mesh lrSkeletalMesh **: arra a skeletal mesh pointerre mutató pointer, amelyet rá akarunk állítani az újonnan létrehozott skeletal meshre. * \param Src lrmSkeletalMesh *: a fájlból betöltött csúcspontokat, háromszögeket és stb.-ket tartalmazó adatstruktúra. * \return void * */ virtual void UploadSkeletalMesh(liSkeletalMesh* &Mesh,liSkeletalMeshResource *Src) = 0; liGPUFactory() { //Üres függvénytörzs } virtual ~liGPUFactory() { //Üres függvénytörzs } }; #endif // LI_GPU_FACTORY_H
[ "sereslorant@gmail.com" ]
sereslorant@gmail.com
2c45ac23d611bd1bda3d25aa72731e03dfea34e5
a6b698105aec67701cdd509cb9a48528786049d2
/RegainEarthCheat/SDK/Slate_classes.h
6e92261d23554e25d8a09313cd78157df9acfa17
[]
no_license
ejiaogl/RegainEarth-Cheat
859d44d8400a3694b4e946061b20d30561c6304f
4136c2c11e78e9dbb305e55556928dfba7f4f620
refs/heads/master
2023-08-29T09:39:45.222291
2021-10-19T19:56:05
2021-10-19T19:56:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,495
h
#pragma once // Name: RegainEart-FirtstStrike, Version: Version-1 /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Classes //--------------------------------------------------------------------------- // Class Slate.ButtonWidgetStyle // 0x0278 (FullSize[0x02A8] - InheritedSize[0x0030]) class UButtonWidgetStyle : public USlateWidgetStyleContainerBase { public: struct FButtonStyle ButtonStyle; // 0x0030(0x0278) (Edit, BlueprintVisible, NativeAccessSpecifierPublic) static UClass* StaticClass() { static auto ptr = UObject::FindClass("Class Slate.ButtonWidgetStyle"); return ptr; } }; // Class Slate.CheckBoxWidgetStyle // 0x0580 (FullSize[0x05B0] - InheritedSize[0x0030]) class UCheckBoxWidgetStyle : public USlateWidgetStyleContainerBase { public: struct FCheckBoxStyle CheckBoxStyle; // 0x0030(0x0580) (Edit, NativeAccessSpecifierPublic) static UClass* StaticClass() { static auto ptr = UObject::FindClass("Class Slate.CheckBoxWidgetStyle"); return ptr; } }; // Class Slate.ComboBoxWidgetStyle // 0x03F0 (FullSize[0x0420] - InheritedSize[0x0030]) class UComboBoxWidgetStyle : public USlateWidgetStyleContainerBase { public: struct FComboBoxStyle ComboBoxStyle; // 0x0030(0x03F0) (Edit, NativeAccessSpecifierPublic) static UClass* StaticClass() { static auto ptr = UObject::FindClass("Class Slate.ComboBoxWidgetStyle"); return ptr; } }; // Class Slate.ComboButtonWidgetStyle // 0x03B8 (FullSize[0x03E8] - InheritedSize[0x0030]) class UComboButtonWidgetStyle : public USlateWidgetStyleContainerBase { public: struct FComboButtonStyle ComboButtonStyle; // 0x0030(0x03B8) (Edit, NativeAccessSpecifierPublic) static UClass* StaticClass() { static auto ptr = UObject::FindClass("Class Slate.ComboButtonWidgetStyle"); return ptr; } }; // Class Slate.EditableTextBoxWidgetStyle // 0x07F8 (FullSize[0x0828] - InheritedSize[0x0030]) class UEditableTextBoxWidgetStyle : public USlateWidgetStyleContainerBase { public: struct FEditableTextBoxStyle EditableTextBoxStyle; // 0x0030(0x07F8) (Edit, NativeAccessSpecifierPublic) static UClass* StaticClass() { static auto ptr = UObject::FindClass("Class Slate.EditableTextBoxWidgetStyle"); return ptr; } }; // Class Slate.EditableTextWidgetStyle // 0x0220 (FullSize[0x0250] - InheritedSize[0x0030]) class UEditableTextWidgetStyle : public USlateWidgetStyleContainerBase { public: struct FEditableTextStyle EditableTextStyle; // 0x0030(0x0220) (Edit, NativeAccessSpecifierPublic) static UClass* StaticClass() { static auto ptr = UObject::FindClass("Class Slate.EditableTextWidgetStyle"); return ptr; } }; // Class Slate.ProgressWidgetStyle // 0x01A0 (FullSize[0x01D0] - InheritedSize[0x0030]) class UProgressWidgetStyle : public USlateWidgetStyleContainerBase { public: struct FProgressBarStyle ProgressBarStyle; // 0x0030(0x01A0) (Edit, BlueprintVisible, NativeAccessSpecifierPublic) static UClass* StaticClass() { static auto ptr = UObject::FindClass("Class Slate.ProgressWidgetStyle"); return ptr; } }; // Class Slate.ScrollBarWidgetStyle // 0x04D0 (FullSize[0x0500] - InheritedSize[0x0030]) class UScrollBarWidgetStyle : public USlateWidgetStyleContainerBase { public: struct FScrollBarStyle ScrollBarStyle; // 0x0030(0x04D0) (Edit, NativeAccessSpecifierPublic) static UClass* StaticClass() { static auto ptr = UObject::FindClass("Class Slate.ScrollBarWidgetStyle"); return ptr; } }; // Class Slate.ScrollBoxWidgetStyle // 0x0228 (FullSize[0x0258] - InheritedSize[0x0030]) class UScrollBoxWidgetStyle : public USlateWidgetStyleContainerBase { public: struct FScrollBoxStyle ScrollBoxStyle; // 0x0030(0x0228) (Edit, NativeAccessSpecifierPublic) static UClass* StaticClass() { static auto ptr = UObject::FindClass("Class Slate.ScrollBoxWidgetStyle"); return ptr; } }; // Class Slate.SlateSettings // 0x0008 (FullSize[0x0030] - InheritedSize[0x0028]) class USlateSettings : public UObject { public: bool bExplicitCanvasChildZOrder; // 0x0028(0x0001) (Edit, ZeroConstructor, Config, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic) unsigned char UnknownData_C7VF[0x7]; // 0x0029(0x0007) MISSED OFFSET (PADDING) static UClass* StaticClass() { static auto ptr = UObject::FindClass("Class Slate.SlateSettings"); return ptr; } }; // Class Slate.SpinBoxWidgetStyle // 0x02E8 (FullSize[0x0318] - InheritedSize[0x0030]) class USpinBoxWidgetStyle : public USlateWidgetStyleContainerBase { public: struct FSpinBoxStyle SpinBoxStyle; // 0x0030(0x02E8) (Edit, NativeAccessSpecifierPublic) static UClass* StaticClass() { static auto ptr = UObject::FindClass("Class Slate.SpinBoxWidgetStyle"); return ptr; } }; // Class Slate.TextBlockWidgetStyle // 0x0270 (FullSize[0x02A0] - InheritedSize[0x0030]) class UTextBlockWidgetStyle : public USlateWidgetStyleContainerBase { public: struct FTextBlockStyle TextBlockStyle; // 0x0030(0x0270) (Edit, NativeAccessSpecifierPublic) static UClass* StaticClass() { static auto ptr = UObject::FindClass("Class Slate.TextBlockWidgetStyle"); return ptr; } }; // Class Slate.ToolMenuBase // 0x0000 (FullSize[0x0028] - InheritedSize[0x0028]) class UToolMenuBase : public UObject { public: static UClass* StaticClass() { static auto ptr = UObject::FindClass("Class Slate.ToolMenuBase"); return ptr; } }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "64608145+Fischsalat@users.noreply.github.com" ]
64608145+Fischsalat@users.noreply.github.com
d9a6dacc07d3cfb517fbec5a4ecc266907508caa
f72c4c4641a17a07e58196ff14c9d5c3edb86eda
/CryptoRedux.cpp
df371290dfc15fd580fea2c153be13e0eede108f
[]
no_license
madcapheathen/CryptoRedux
1aae5f5b70737a6463f66209002d4e7ad82f9b37
e27758b27070a08cb665db0d99b527a0fc34cc2c
refs/heads/master
2021-01-25T12:08:32.931304
2016-02-19T06:37:41
2016-02-19T06:37:41
37,689,479
0
0
null
null
null
null
UTF-8
C++
false
false
1,631
cpp
// CryptoRedux.cpp : // // Now with 100% more Git! #include "Standard_Include.h" #include "Bitwise.h" #include <fstream> using namespace std; int main(int argc, char* argv[]) { // Set 1, Challenge 1 //cout << bits_to_b64(hex_to_bits("49276d206b696c6c696e6720796f757220627261696e206c696b65206120706f69736f6e6f7573206d757368726f6f6d")) << endl; // Set 1, Challenge 2 //vector<bitset<8>> first = hex_to_bits("1c0111001f010100061a024b53535009181c"); //vector<bitset<8>> second = hex_to_bits("686974207468652062756c6c277320657965"); //cout << bits_to_hex(xor(first, second)) << endl; // Set 1, Challenge 3 //cout << bits_to_text(single_character_xor(hex_to_bits("1b37373331363f78151b7f2b783431333d78397828372d363c78373e783a393b3736"))) << endl; // Set 1, Challenge 4 //fstream fs("4.txt"); //string best_hex = ""; //vector<bitset<8>> best_text; //int high_score = 0; //while (!fs.eof()){ // string next = ""; // getline(fs, next); // vector<bitset<8>> result = single_character_xor(hex_to_bits(next)); // int score = score_char_freq(result); // if (score > high_score){ // high_score = score; // best_hex = next; // best_text = result; // } //} //cout << "Encoded string: " << best_hex << endl; //cout << "Decoded to: " << bits_to_text(best_text) << endl; // Set 1, Challenge 5 //fstream fs("5in.txt"); //string ciphertext; //char next = fs.get(); //while (!fs.eof()) { // ciphertext.push_back(next); // next = fs.get(); //} //cout << ciphertext << endl; //cout << bits_to_hex(encrypt_RKXOR(text_to_bits(ciphertext), text_to_bits("ICE"))) << endl; //return 0; // Set 1, Challenge 6 }
[ "madcapheathen@gmail.com" ]
madcapheathen@gmail.com
6322cba6f37c5737e1b7c1965bb2c735c1eba957
83fa4cc511d9dda8ee4625e9fd432c2c16a504c7
/Day-1/merge without extra space.cpp
71d642c5eb20db1c8d1bc25a2eef5a25ceab0348
[]
no_license
Himansh1706/Competitive-programming-C-
0cee06f93486c59eedbf6ec6be1313c972647447
66062b8f6478948c989e80ad5a9949223ebc6f49
refs/heads/master
2023-02-03T01:23:31.704977
2020-12-22T19:40:42
2020-12-22T19:40:42
285,493,597
1
0
null
null
null
null
UTF-8
C++
false
false
1,819
cpp
/* Given two sorted arrays arr1[] and arr2[] in non-decreasing order with size n and m. The task is to merge the two sorted arrays into one sorted array (in non-decreasing order). Note: Expected time complexity is O((n+m) log(n+m)). DO NOT use extra space. We need to modify existing arrays as following. Input: First line contains an integer T, denoting the number of test cases. First line of each test case contains two space separated integers X and Y, denoting the size of the two sorted arrays. Second line of each test case contains X space separated integers, denoting the first sorted array P. Third line of each test case contains Y space separated integers, denoting the second array Q. Output: For each test case, print (X + Y) space separated integer representing the merged array. Constraints: 1 <= T <= 100 1 <= X, Y <= 5*104 0 <= arr1i, arr2i <= 109 Example: Input: 2 4 5 1 3 5 7 0 2 6 8 9 2 3 10 12 5 18 20 Output: 0 1 2 3 5 6 7 8 9 5 10 12 18 20 */ #include <iostream> using namespace std; int main() { int t; cin>>t; for(int j=0;j<t;j++) { int x,y; int m,n,i; cin>>m>>n; int arr[m],arr1[n]; for(i=0;i<m;i++) { cin>>arr[i]; } for(i=0;i<n;i++) { cin>>arr1[i]; } x=0; y=0; for(i=0;i<m+n;i++) { if(arr[x]>arr1[y] && x<m && y<n) { cout<<arr1[y]<<" "; y++; } else { if (arr[x]<=arr1[y] && x<m && y<n){ cout<<arr[x]<<" "; x++;} } } if(x<m) { for(i=x;i<m;i++) { cout<<arr[i]<<" "; } } else { for(i=y;i<n;i++) { cout<<arr1[i]<<" "; } } cout<<endl; } return 0; }
[ "himanshsharma0622@gmail.com" ]
himanshsharma0622@gmail.com
92102613caa617978877ee4eeff038bf86035ff5
8d39f509abf62a0947f3e9dd11a1bc02665b609e
/comp2012h/csd_only/assignments/PA5-InhPoly/Sol/lzhaoaj/LegendAnimal.cpp
ff348b0a95e9f051c8bd77a2a1bb6bab5ab94243
[]
no_license
clcheungac/clcheungac.github.io
c77c8a0c5b2261cf37602ce644c143e266184277
815885f2af89ef3ac32fad607786c6e8fa47c6e0
refs/heads/master
2021-01-10T13:08:37.959427
2018-12-30T13:44:20
2018-12-30T13:44:20
48,602,655
1
0
null
null
null
null
WINDOWS-1252
C++
false
false
550
cpp
/* * LegendAnimal.cpp * * Created on: 2015Äê11ÔÂ21ÈÕ * Author: Lucen */ #include "LegendAnimal.h" LegendAnimal::LegendAnimal(Game* game, int player, int position):AnimalAtk(game,player,position){ } bool LegendAnimal::isLegendAnimal() const{ return true; } LegendAnimal::~LegendAnimal(){ } bool LegendAnimal::canWeatherStorm() const { if (this->LegendAnimalNumber() >= 3) //check the condition return true; else return false; } void LegendAnimal::WeatherStorm(){ if (this->canWeatherStorm()){ SpecialAttack(3); } }
[ "clcheungac@connect.ust.hk" ]
clcheungac@connect.ust.hk
cd42a4e38cfa5e31feb98ceeced10a991aa3ae94
205b4e41e101350a67cc399cc594ae2a7cd210e1
/Package Inheritance Hierarchy(standard answer)/Package Inheritance Hierarchy/Router.cpp
4419a2f76b51b3dfbfc1302856a20ec79a6cfa12
[ "MIT" ]
permissive
JJLOVEXX/programLearningInSCUT
890310b47dbaf76d4617e1bc1a376da0d7c85fa2
525bdbf963086acd281755d17e830aa57f4bc833
refs/heads/master
2020-12-22T18:43:10.367234
2020-01-30T00:04:12
2020-01-30T00:04:12
236,882,608
2
0
null
null
null
null
UTF-8
C++
false
false
99
cpp
#include "stdafx.h" #include "Router.h" Router::Router() { } Router::~Router() { }
[ "895846885@qq.com" ]
895846885@qq.com
bf855233981b50a9e94ecbc45cd9a865062e31da
7b0cb17217327a5d2c8d787fdf8e2c440621ebb2
/src/modules/cameratools.h
3b1e059e5d1a3afd09b4dc973d17562bb22b4ebc
[ "BSD-2-Clause" ]
permissive
bmcfetty/StatusSpec
68ae32bdf1c76726536c96fbf07c5a93cad2db0f
89031ca4127ab99d169733e44efc0f20fd60cfb7
refs/heads/master
2021-07-14T06:17:44.077603
2014-12-23T05:24:30
2014-12-23T05:24:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
826
h
/* * cameratools.h * StatusSpec project * * Copyright (c) 2014 thesupremecommander * BSD 2-Clause License * http://opensource.org/licenses/BSD-2-Clause * */ #pragma once #include "../stdafx.h" #include <algorithm> #include <array> #include <vector> #include "convar.h" #include "vgui/IScheme.h" #include "vgui_controls/EditablePanel.h" #include "../common.h" #include "../funcs.h" #include "../ifaces.h" #include "../modules.h" #include "../player.h" #include "../tfdefs.h" class CameraTools : public Module { public: CameraTools(std::string name); static bool CheckDependencies(std::string name); private: KeyValues *specguiSettings; ConCommand *spec_player; ConVar *spec_player_alive; ConCommand *spec_pos; void SpecPlayer(const CCommand &command); void SpecPosition(const CCommand &command); };
[ "thesupremecmdr@gmail.com" ]
thesupremecmdr@gmail.com
5231e8ee36964c5547a75c8b8ce9c9d94e03f974
f4c05c00bedd9252b70f7436804644dba5d2fb95
/剑指offer_c++/51_构建乘积数组.cpp
1d2f6661ac743a6bad4151faf98284cdbe179b87
[]
no_license
zhugege215/JianzhiOffer_C
af0768556947a2a2592b61f6635dedc54c3ab2b7
7072c21f261fd40eafcd80668e35112d0bc9e766
refs/heads/master
2021-05-02T03:59:00.404897
2019-03-06T00:59:54
2019-03-06T00:59:54
120,907,479
0
0
null
null
null
null
UTF-8
C++
false
false
399
cpp
#include <vector> using namespace std; class Solution { public: vector<int> multiply(const vector<int>& A) { vector <int> vec; int sz = A.size(); if (sz == 0) return vec; vec.push_back(1); for (int i = 0; i < sz - 1; i++) vec.push_back(vec.back()*A[i]); int temp = 1; for (int i = sz - 1; i >= 0; i--) { vec[i] = vec[i] * temp; temp = temp * A[i]; } return vec; } };
[ "839568703@qq.com" ]
839568703@qq.com
3258288e64fb14a2ea0d2bae76945d4d075d9130
8271f54e1c3e7fc13f05f202c7a6b3e7a5561623
/src/ofxMicroUIRemote.h
b73b9d6bae18fec4992e73a9d79e732e6ecaa25d
[]
no_license
ofxyz/ofxMicroUI
fe5654c32f2cacbbf262b28eb97dd4c7024d7ef9
68a4c4a1b280ae3560a484114ec3948eb679e12b
refs/heads/master
2021-05-18T23:38:49.718348
2020-02-10T18:05:13
2020-02-10T18:05:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
944
h
/* placeholder */ #pragma once #if defined( TARGET_OF_IPHONE ) || defined( TARGET_OF_IOS ) || defined( TARGET_ANDROID ) #define MICROUI_TARGET_TOUCH #endif #include "ofEvents.h" #include "ofxMicroUI.h" #include "ofxOsc.h" #ifdef MICROUI_TARGET_TOUCH #include "ofxAccelerometer.h" #endif class ofxMicroUIRemote : public ofBaseApp { public: ofxOscSender send; ofxOscReceiver receive; string serverHostname = ""; int serverPort = 8000; string remoteHostname = ""; int remotePort = 9000; ofxMicroUIRemote() { //init(); ofAddListener(ofEvents().draw, this, &ofxMicroUIRemote::onDraw); ofAddListener(ofEvents().update, this, &ofxMicroUIRemote::onUpdate); } //-------------------------------------------------------------- void onDraw(ofEventArgs &data) { draw(); } //-------------------------------------------------------------- void onUpdate(ofEventArgs &data) { update(); } ~ofxMicroUIRemote() {} };
[ "dimitre@users.noreply.github.com" ]
dimitre@users.noreply.github.com
9d6da1d16e3828b87d157d4be21b583d6fd257f7
d8bdd07d7fff442a028ca9edbb4d66660621442d
/src/form/ApplyArgsCont.cpp
0b813eb8f1d132c0f6f1f4e88e625b7a380bb512
[]
no_license
xprime480/scam
0257dc2eae4aede8594b3a3adf0a109e230aae7d
a567d7a3a981979d929be53fce0a5fb5669ab294
refs/heads/master
2020-03-31T23:03:19.143250
2020-02-10T20:58:59
2020-02-10T20:58:59
152,641,151
0
0
null
null
null
null
UTF-8
C++
false
false
919
cpp
#include "form/ApplyArgsCont.hpp" #include "ScamEngine.hpp" #include "env/Env.hpp" #include "expr/EvalOps.hpp" #include "value/ScamData.hpp" #include "value/TypePredicates.hpp" using namespace scam; using namespace std; ApplyArgsCont::ApplyArgsCont(ScamValue op, Continuation * cont, Env * env) : Continuation("Apply Args") , op(op) , cont(cont) , env(env) { } ApplyArgsCont * ApplyArgsCont::makeInstance(ScamValue op, Continuation * cont, Env * env) { return new ApplyArgsCont(op, cont, env); } void ApplyArgsCont::mark() { if ( ! isMarked() ) { Continuation::mark(); op->mark(); cont->mark(); env->mark(); } } void ApplyArgsCont::handleValue(ScamValue value) { Continuation::handleValue(value); if ( isUnhandledError(value) ) { ScamEngine::getEngine().handleError(value); } else { apply(op, value, cont, env); } }
[ "xprime480@gmail.com" ]
xprime480@gmail.com
6c012dcc88450b348363b8744992f9d0109664f5
67b29354900dbdb003fb68301a0d4d257e9d0c0c
/EECS_560/Lab08/leftist-min-heap-lab-8/priority-queue.cpp
c7c894267fb32b367bcad8e6a131640d133801a8
[]
no_license
budlinville/EECS_560
ed930daa5c85ef0612a6a237b17fb84b8fb71c23
0ec7337dc0df183626f009be4ce6d72c2bf39ae5
refs/heads/master
2021-09-03T01:44:17.136059
2018-01-04T16:42:52
2018-01-04T16:42:52
112,029,590
0
1
null
null
null
null
UTF-8
C++
false
false
7,819
cpp
#include "priority-queue.hpp" #include "util.hpp" /////////////////////////////////// // Private Functions Definitions // /////////////////////////////////// ////////////////////////////////// // Public functions Definitions // ////////////////////////////////// PriorityQueue::PriorityQueue(){ rootPtr = nullptr; size = 0; } //constructor for a Priority Queue, given the rootPtr to a leftist heap //ASSUMES that the rootPtr points to a properly ordered leftist heap //USED in deleteMin(), to create two new priority queues that can then be concatenated back together PriorityQueue::PriorityQueue(node_t* pq){ rootPtr = pq; } PriorityQueue::PriorityQueue(Task** tasks, int taskSize){ //No clue why, but tasks are coming in in an array with values at every even index with odd indices being nonsense values /* for (int i = 0; i < taskSize; i++) { std::cout << "(ii = " << i << "): " << tasks[i]->getNice() << std::endl; } */ for (int i = 0; i < taskSize; i++) { //std::cout << "YUP: " << tasks[i]->getNice() << std::endl; if (rootPtr == nullptr) { //empty tree node_t *newNode = new node_t; newNode->lChild = nullptr; newNode->rChild = nullptr; newNode->rank = 0; newNode->task = tasks[i]; rootPtr = newNode; } else { this->addElem(tasks[i]); } } } PriorityQueue::~PriorityQueue() { destroyTree(rootPtr); } /* 3 STEPS (1) Merging (2) Labeling (3) Swapping */ void PriorityQueue::concat(PriorityQueue* that){ //no PriorityQueue yet if (that->rootPtr == nullptr) { //dont need to do anything return; } else if (this->rootPtr == nullptr) { this->rootPtr = that->rootPtr; return; } node_t *thisNode = this->rootPtr; node_t *thatNode = that->rootPtr; node_t *temp = nullptr; bool inserted = false; /*****FIRST STEP - MERGING ********/ while (thatNode != nullptr) { inserted = false; while (!inserted) { if (thatNode->task->getNice() < thisNode->task->getNice()) { //should only really happen when thisNode == rootNode //std::cout << "\nAAAAAAAAAAAAAAAAAAAAA" << std::endl; //lets just swap thisNode and thatNode and then go from there //change root first if (rootPtr == thisNode) //should happen everytime we get here if my logic is correct - included "if" as a safety net rootPtr = thatNode; temp = thisNode; thisNode = thatNode; thatNode = temp; //done inserting inserted = true; temp = nullptr; } else if (thisNode->rChild != nullptr) { //std::cout << "\nBBBBBBBBBBBBBBBBBBBBBB" << std::endl; if ((thatNode->task->getNice() < thisNode->rChild->task->getNice())) { //insert thatNode into thisNode's position //easier to just change thisNode's values in practice //store thisNode's current right child in temp temp = thisNode->rChild; //set thisNode's new right child thisNode->rChild = thatNode; //set thatNode to thisNode's old right child for future merges thatNode = temp; //done inserting inserted = true; temp = nullptr; } else { //if (thatNode->task->getNice() > thisNode->task->getNice()) thisNode = thisNode->rChild; //move downward } } else { //breaks second loop //std::cout << "\nCCCCCCCCCCCCCCCCCCCCCC" << std::endl; thisNode->rChild = thatNode; thatNode = nullptr; temp = nullptr; inserted = true; } } } /*****SECOND STEP - LABELING ********/ /*****THIRD STEP - SWAPPING ********/ //Can combine these two steps //inherently recursive checkRankAndSwap(rootPtr); /* std::cout << "\n--------" << std::endl; inorderTraversal(rootPtr, 0, &PriorityQueue::printElement); std::cout << std::endl; postorderTraversal(rootPtr, 0, &PriorityQueue::printElement); std::cout << "\n--------" << std::endl; */ } void PriorityQueue::addElem(Task* task) { Task ** taskArr = new Task*[1]; taskArr[0] = task; size++; PriorityQueue *p = new PriorityQueue(taskArr, 1); concat(p); } Task* PriorityQueue::deleteMinElem(){ node_t* temp = nullptr; Task *ret = nullptr; if (rootPtr == nullptr) { //Error size = 0; return nullptr; } if ((rootPtr->lChild == nullptr) && (rootPtr->rChild == nullptr)) { temp = rootPtr; ret = temp->task; rootPtr = nullptr; size = 0; delete temp; temp = nullptr; return ret; } else if (rootPtr->lChild == nullptr) { //shouldnt happen temp = rootPtr; rootPtr = rootPtr->rChild; ret = temp->task; size--; delete temp; temp = nullptr; return ret; } else if (rootPtr->rChild == nullptr) { temp = rootPtr; rootPtr = rootPtr->lChild; ret = temp->task; size--; delete temp;temp = nullptr; return ret; } temp = rootPtr; ret = temp->task; PriorityQueue *pqRight = new PriorityQueue(rootPtr->rChild); rootPtr = rootPtr->lChild; delete temp; temp = nullptr; concat(pqRight); size--; return ret; } int PriorityQueue::inorderTraversal(node_t *treePtr, int identity, int (PriorityQueue::*op)(Task*)){ if (treePtr != nullptr) { identity = inorderTraversal(treePtr->lChild, identity, op); identity = (this->*op)(treePtr->task); identity = inorderTraversal(treePtr->rChild, identity, op); } return identity; } int PriorityQueue::postorderTraversal(node_t *treePtr, int identity, int (PriorityQueue::*op)(Task*)){ if (treePtr != nullptr) { identity = postorderTraversal(treePtr->lChild, identity, op); identity = postorderTraversal(treePtr->rChild, identity, op); identity = (this->*op)(treePtr->task); } return identity; } int PriorityQueue::preorderTraversal(node_t *treePtr, int identity, int (PriorityQueue::*op)(Task*)){ if (treePtr != nullptr) { identity = (this->*op)(treePtr->task); identity = preorderTraversal(treePtr->lChild, identity, op); identity = preorderTraversal(treePtr->rChild, identity, op); } return identity; } int PriorityQueue::printElement(Task* t) { std::cout << t->getNice() << " "; return 0; } int PriorityQueue::checkRankAndSwap(node_t* treePtr) { int rank = 0; if (treePtr == nullptr) return 0; if (treePtr->lChild == nullptr && treePtr->rChild == nullptr) { rank = 0; //no children - dont need to check if I need to swap } else if (treePtr->lChild == nullptr) { //lchild = nullptr, rchild does not - will need to swap rank = 0; treePtr->lChild = treePtr->rChild; treePtr->rChild = nullptr; //dont need a tempPtr } else if (treePtr->rChild == nullptr) { //no swap, rankLeft >= rankRight rank = 0; } else { int rankLeft = checkRankAndSwap(treePtr->lChild); int rankRight = checkRankAndSwap(treePtr->rChild); rank = (rankLeft > rankRight) ? (rankLeft + 1) : (rankRight + 1); treePtr->rank = rank; if (rankRight > rankLeft) { //swap node_t *temp = treePtr->lChild; treePtr->lChild = treePtr->rChild; treePtr->rChild = temp; temp = nullptr; } } return rank; } void PriorityQueue::destroyTree(node_t* treePtr) { if(treePtr != nullptr) { destroyTree(treePtr->lChild); destroyTree(treePtr->rChild); delete treePtr->task; delete treePtr; } } int PriorityQueue::getSize() { return size; } node_t* PriorityQueue::getRootPtr() { return rootPtr; } int PriorityQueue::sizeTraversal(node_t *treePtr, int identity, int (PriorityQueue::*op)(int)){ if (treePtr != nullptr) { identity = sizeTraversal(treePtr->lChild, identity, op); identity = (this->*op)(identity); identity = sizeTraversal(treePtr->rChild, identity, op); } return identity; }
[ "budlinville@gmail.com" ]
budlinville@gmail.com
bd04bd8d0d3033a0e2fbf37a8f7ae196dff8909f
63792101db5716e2dcd57668e6d16d26233094b6
/ch16_drill/ch16_drill.cpp
4d044dd68f222ff342c152b2d83c48f940c6a01b
[]
no_license
Armisam/prog1
357bdfe35b8ac8c8349b67468f6b3c53cbab6bd2
2fe4b91062972a473650eff81305ed6abcf42076
refs/heads/main
2023-04-10T17:47:28.154765
2021-04-19T08:37:35
2021-04-19T08:37:35
337,112,864
0
0
null
null
null
null
UTF-8
C++
false
false
150
cpp
#include "Graph.h" #include "Lines_window.h" int main() { Lines_window win {Point{100,100}, 600, 400, "lines"}; return gui_main(); }
[ "csabaszekely99@gmail.com" ]
csabaszekely99@gmail.com
7607988787896089a469126cd038bdec4087d531
fb1cd787e80732bd24467f99c4ac6a1725cd3753
/HowTOVideo.ino
ea6ee7733c3d2ec74a4da37a2a180bf21aed8cbf
[]
no_license
fandican/ESP8266
2700628fe9a2da99537e904c1e73e1cc00f0c34e
94c75abf947083e2f438799478f15f59dd53f122
refs/heads/master
2021-01-22T21:57:55.237853
2017-03-23T12:42:23
2017-03-23T12:42:23
85,492,114
0
0
null
null
null
null
UTF-8
C++
false
false
3,289
ino
#include <ESP8266WiFi.h> #include "Gsender.h" // digital pin D6 has a door sensor attached to it. Give it a name: int pushButton = D3; int buttonState = 0; // current state of the button int lastButtonState = 0; // previous state of the button #pragma region Globals const char* ssid = "WIFINAME"; // WIFI network name const char* password = "WIFIpassword"; // WIFI network password uint8_t connection_state = 0; // Connected to WIFI or not uint16_t reconnect_interval = 10000; // If not connected wait time to try again #pragma endregion Globals uint8_t WiFiConnect(const char* nSSID = nullptr, const char* nPassword = nullptr) { static uint16_t attempt = 0; Serial.print("Connecting to "); if(nSSID) { WiFi.begin(nSSID, nPassword); Serial.println(nSSID); } else { WiFi.begin(ssid, password); Serial.println(ssid); } uint8_t i = 0; while(WiFi.status()!= WL_CONNECTED && i++ < 3) { delay(200); Serial.print("."); } ++attempt; Serial.println(""); if(i == 2) { Serial.print("Connection: TIMEOUT on attempt: "); Serial.println(attempt); if(attempt % 2 == 0) Serial.println("Check if access point available or SSID and Password\r\n"); return false; } Serial.println("Connection: ESTABLISHED"); Serial.print("Got IP address: "); Serial.println(WiFi.localIP()); return true; } void Awaits() { uint32_t ts = millis(); while(!connection_state) { delay(50); if(millis() > (ts + reconnect_interval) && !connection_state){ connection_state = WiFiConnect(); ts = millis(); } } } // the setup routine runs once when you press reset: void setup() { Serial.begin(115200); // make the pushbutton's pin an input: pinMode(pushButton, INPUT_PULLUP); //**** CHANGED } // the loop routine runs over and over again forever: void loop() { // read the input pin: int buttonState = digitalRead(pushButton); if (buttonState != lastButtonState) { // print out the state of the button: if(buttonState==1){ digitalWrite(D4, HIGH); // turn the LED off by making the voltage LOW Serial.println("WINDOW/DOOR IS OPENED"); delay(200); // Email send Serial.begin(115200); connection_state = WiFiConnect(); if(!connection_state) // if not connected to WIFI Awaits(); // constantly trying to connect Gsender *gsender = Gsender::Instance(); // Getting pointer to class instance String subject = "Window/Door Opened"; if(gsender->Subject(subject)->Send("Gmail@gmail.com", "Window or Door opened!!")) { Serial.println("Message send."); } else { Serial.print("Error sending message: "); Serial.println(gsender->getError()); } }else{ digitalWrite(D4, LOW); // turn the LED on (HIGH is the voltage level) Serial.println("WINDOW/DOOR IS CLOSED"); } } //for next time through the loop lastButtonState = buttonState; delay(10); // delay in between reads for stability }
[ "fbagmu@gmail.com" ]
fbagmu@gmail.com
ff4460684cedbf1833a3277b12c0b8397941a917
a44956f74a894a5439ef93df1647c87ed08d3fa2
/File.h
523a289f2ea54cd971a6e058977c4718cf127eb8
[]
no_license
maktal/MDF
f9699c1a655a2392a0eb728801756d656bd39695
14fa1dbfb2a536be6a98cafe50cb28771dd6beb0
refs/heads/master
2020-03-20T15:47:19.442175
2019-09-19T06:14:23
2019-09-19T06:14:23
137,521,986
0
0
null
null
null
null
UTF-8
C++
false
false
1,117
h
// File.h: interface for the CFile class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_FILE_H__F8CF0BB9_A4AA_4829_AD26_2962F14064A2__INCLUDED_) #define AFX_FILE_H__F8CF0BB9_A4AA_4829_AD26_2962F14064A2__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #include "Constant.h" #include <io.h> #include <stdio.h> class CFile { public: FILE* m_pFile; public: CFile(); CFile(const char* stFileName, const char* stMode); virtual ~CFile(); int Open(const char* stFileName, const char* stMode); void Close(); int SetPointer(int,int); int SetPointerToStart(); int SetPointerToEnd(); int GetFileSize(); int GetCurrentLocation(); int Flush(); int Write(const char* stData, int iLength); int WriteLine(const char* stData, int iLength); int Read(char* stBuffer, int iLength); int ReadLine(char* stBuffer, int iLength); bool IsEOF(); }; #endif // !defined(AFX_FILE_H__F8CF0BB9_A4AA_4829_AD26_2962F14064A2__INCLUDED_)
[ "maktal@gmail.com" ]
maktal@gmail.com
8d7ce22e29021302f4c008b03fc6734652380b50
64dfe7e6a139044799a6a54dfc2ba04c09479c8d
/Image Algorithm/image analysis/image segmentation/SLIC/slic.cpp
7e806e86cdec9c739ee7918d748c27cdaa0955a1
[]
no_license
chierqj/ML-and-Image
9a1c9956eb90e41b06b0114012c4813dfcf8c9e1
92adc3530167ac1478808770f19baf81a18a086a
refs/heads/master
2021-10-24T05:38:48.266694
2019-03-22T11:38:31
2019-03-22T11:38:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
12,432
cpp
#include "slic.h" /* * Constructor. Nothing is done here. */ Slic::Slic() { } /* * Destructor. Clear any present data. */ Slic::~Slic() { clear_data(); } /* * Clear the data as saved by the algorithm. * * Input : - * Output: - */ void Slic::clear_data() { clusters.clear(); distances.clear(); centers.clear(); center_counts.clear(); } /* * Initialize the cluster centers and initial values of the pixel-wise cluster * assignment and distance values. * * Input : The image (IplImage*). * Output: - */ void Slic::init_data(IplImage *image) { /* Initialize the cluster and distance matrices. */ for (int i = 0; i < image->width; i++) { vector<int> cr; vector<double> dr; for (int j = 0; j < image->height; j++) { cr.push_back(-1); dr.push_back(FLT_MAX); } clusters.push_back(cr); distances.push_back(dr); } /* Initialize the centers and counters. */ for (int i = step; i < image->width - step/2; i += step) { for (int j = step; j < image->height - step/2; j += step) { vector<double> center; /* Find the local minimum (gradient-wise). */ CvPoint nc = find_local_minimum(image, cvPoint(i,j)); CvScalar colour = cvGet2D(image, nc.y, nc.x); /* Generate the center vector. */ center.push_back(colour.val[0]); center.push_back(colour.val[1]); center.push_back(colour.val[2]); center.push_back(nc.x); center.push_back(nc.y); /* Append to vector of centers. */ centers.push_back(center); center_counts.push_back(0); } } } /* * Compute the distance between a cluster center and an individual pixel. * * Input : The cluster index (int), the pixel (CvPoint), and the Lab values of * the pixel (CvScalar). * Output: The distance (double). */ double Slic::compute_dist(int ci, CvPoint pixel, CvScalar colour) { double dc = sqrt(pow(centers[ci][0] - colour.val[0], 2) + pow(centers[ci][1] - colour.val[1], 2) + pow(centers[ci][2] - colour.val[2], 2)); double ds = sqrt(pow(centers[ci][3] - pixel.x, 2) + pow(centers[ci][4] - pixel.y, 2)); return sqrt(pow(dc / nc, 2) + pow(ds / ns, 2)); //double w = 1.0 / (pow(ns / nc, 2)); //return sqrt(dc) + sqrt(ds * w); } /* * Find a local gradient minimum of a pixel in a 3x3 neighbourhood. This * method is called upon initialization of the cluster centers. * * Input : The image (IplImage*) and the pixel center (CvPoint). * Output: The local gradient minimum (CvPoint). */ CvPoint Slic::find_local_minimum(IplImage *image, CvPoint center) { double min_grad = FLT_MAX; CvPoint loc_min = cvPoint(center.x, center.y); for (int i = center.x-1; i < center.x+2; i++) { for (int j = center.y-1; j < center.y+2; j++) { CvScalar c1 = cvGet2D(image, j+1, i); CvScalar c2 = cvGet2D(image, j, i+1); CvScalar c3 = cvGet2D(image, j, i); /* Convert colour values to grayscale values. */ double i1 = c1.val[0]; double i2 = c2.val[0]; double i3 = c3.val[0]; /*double i1 = c1.val[0] * 0.11 + c1.val[1] * 0.59 + c1.val[2] * 0.3; double i2 = c2.val[0] * 0.11 + c2.val[1] * 0.59 + c2.val[2] * 0.3; double i3 = c3.val[0] * 0.11 + c3.val[1] * 0.59 + c3.val[2] * 0.3;*/ /* Compute horizontal and vertical gradients and keep track of the minimum. */ if (sqrt(pow(i1 - i3, 2)) + sqrt(pow(i2 - i3,2)) < min_grad) { min_grad = fabs(i1 - i3) + fabs(i2 - i3); loc_min.x = i; loc_min.y = j; } } } return loc_min; } /* * Compute the over-segmentation based on the step-size and relative weighting * of the pixel and colour values. * * Input : The Lab image (IplImage*), the stepsize (int), and the weight (int). * Output: - */ void Slic::generate_superpixels(IplImage *image, int step, int nc) { this->step = step; this->nc = nc; this->ns = step; /* Clear previous data (if any), and re-initialize it. */ clear_data(); init_data(image); /* Run EM for 10 iterations (as prescribed by the algorithm). */ for (int i = 0; i < NR_ITERATIONS; i++) { /* Reset distance values. */ for (int j = 0; j < image->width; j++) { for (int k = 0;k < image->height; k++) { distances[j][k] = FLT_MAX; } } for (int j = 0; j < (int) centers.size(); j++) { /* Only compare to pixels in a 2 x step by 2 x step region. */ for (int k = centers[j][3] - step; k < centers[j][3] + step; k++) { for (int l = centers[j][4] - step; l < centers[j][4] + step; l++) { if (k >= 0 && k < image->width && l >= 0 && l < image->height) { CvScalar colour = cvGet2D(image, l, k); double d = compute_dist(j, cvPoint(k,l), colour); /* Update cluster allocation if the cluster minimizes the distance. */ if (d < distances[k][l]) { distances[k][l] = d; clusters[k][l] = j; } } } } } /* Clear the center values. */ for (int j = 0; j < (int) centers.size(); j++) { centers[j][0] = centers[j][1] = centers[j][2] = centers[j][3] = centers[j][4] = 0; center_counts[j] = 0; } /* Compute the new cluster centers. */ for (int j = 0; j < image->width; j++) { for (int k = 0; k < image->height; k++) { int c_id = clusters[j][k]; if (c_id != -1) { CvScalar colour = cvGet2D(image, k, j); centers[c_id][0] += colour.val[0]; centers[c_id][1] += colour.val[1]; centers[c_id][2] += colour.val[2]; centers[c_id][3] += j; centers[c_id][4] += k; center_counts[c_id] += 1; } } } /* Normalize the clusters. */ for (int j = 0; j < (int) centers.size(); j++) { centers[j][0] /= center_counts[j]; centers[j][1] /= center_counts[j]; centers[j][2] /= center_counts[j]; centers[j][3] /= center_counts[j]; centers[j][4] /= center_counts[j]; } } } /* * Enforce connectivity of the superpixels. This part is not actively discussed * in the paper, but forms an active part of the implementation of the authors * of the paper. * * Input : The image (IplImage*). * Output: - */ void Slic::create_connectivity(IplImage *image) { int label = 0, adjlabel = 0; const int lims = (image->width * image->height) / ((int)centers.size()); const int dx4[4] = {-1, 0, 1, 0}; const int dy4[4] = { 0, -1, 0, 1}; /* Initialize the new cluster matrix. */ vec2di new_clusters; for (int i = 0; i < image->width; i++) { vector<int> nc; for (int j = 0; j < image->height; j++) { nc.push_back(-1); } new_clusters.push_back(nc); } for (int i = 0; i < image->width; i++) { for (int j = 0; j < image->height; j++) { if (new_clusters[i][j] == -1) { vector<CvPoint> elements; elements.push_back(cvPoint(i, j)); /* Find an adjacent label, for possible use later. */ for (int k = 0; k < 4; k++) { int x = elements[0].x + dx4[k], y = elements[0].y + dy4[k]; if (x >= 0 && x < image->width && y >= 0 && y < image->height) { if (new_clusters[x][y] >= 0) { adjlabel = new_clusters[x][y]; } } } int count = 1; for (int c = 0; c < count; c++) { for (int k = 0; k < 4; k++) { int x = elements[c].x + dx4[k], y = elements[c].y + dy4[k]; if (x >= 0 && x < image->width && y >= 0 && y < image->height) { if (new_clusters[x][y] == -1 && clusters[i][j] == clusters[x][y]) { elements.push_back(cvPoint(x, y)); new_clusters[x][y] = label; count += 1; } } } } /* Use the earlier found adjacent label if a segment size is smaller than a limit. */ if (count <= lims >> 2) { for (int c = 0; c < count; c++) { new_clusters[elements[c].x][elements[c].y] = adjlabel; } label -= 1; } label += 1; } } } } /* * Display the cluster centers. * * Input : The image to display upon (IplImage*) and the colour (CvScalar). * Output: - */ void Slic::display_center_grid(IplImage *image, CvScalar colour) { for (int i = 0; i < (int) centers.size(); i++) { cvCircle(image, cvPoint(centers[i][3], centers[i][4]), 2, colour, 2); } } /* * Display a single pixel wide contour around the clusters. * * Input : The target image (IplImage*) and contour colour (CvScalar). * Output: - */ void Slic::display_contours(IplImage *image, CvScalar colour) { const int dx8[8] = {-1, -1, 0, 1, 1, 1, 0, -1}; const int dy8[8] = { 0, -1, -1, -1, 0, 1, 1, 1}; /* Initialize the contour vector and the matrix detailing whether a pixel * is already taken to be a contour. */ vector<CvPoint> contours; vec2db istaken; for (int i = 0; i < image->width; i++) { vector<bool> nb; for (int j = 0; j < image->height; j++) { nb.push_back(false); } istaken.push_back(nb); } /* Go through all the pixels. */ for (int i = 0; i < image->width; i++) { for (int j = 0; j < image->height; j++) { int nr_p = 0; /* Compare the pixel to its 8 neighbours. */ for (int k = 0; k < 8; k++) { int x = i + dx8[k], y = j + dy8[k]; if (x >= 0 && x < image->width && y >= 0 && y < image->height) { if (istaken[x][y] == false && clusters[i][j] != clusters[x][y]) { nr_p += 1; } } } /* Add the pixel to the contour list if desired. */ if (nr_p >= 2) { contours.push_back(cvPoint(i,j)); istaken[i][j] = true; } } } /* Draw the contour pixels. */ for (int i = 0; i < (int)contours.size(); i++) { cvSet2D(image, contours[i].y, contours[i].x, colour); } } /* * Give the pixels of each cluster the same colour values. The specified colour * is the mean RGB colour per cluster. * * Input : The target image (IplImage*). * Output: - */ void Slic::colour_with_cluster_means(IplImage *image) { vector<CvScalar> colours(centers.size()); /* Gather the colour values per cluster. */ for (int i = 0; i < image->width; i++) { for (int j = 0; j < image->height; j++) { int index = clusters[i][j]; CvScalar colour = cvGet2D(image, j, i); colours[index].val[0] += colour.val[0]; colours[index].val[1] += colour.val[1]; colours[index].val[2] += colour.val[2]; } } /* Divide by the number of pixels per cluster to get the mean colour. */ for (int i = 0; i < (int)colours.size(); i++) { colours[i].val[0] /= center_counts[i]; colours[i].val[1] /= center_counts[i]; colours[i].val[2] /= center_counts[i]; } /* Fill in. */ for (int i = 0; i < image->width; i++) { for (int j = 0; j < image->height; j++) { CvScalar ncolour = colours[clusters[i][j]]; cvSet2D(image, j, i, ncolour); } } }
[ "1152591772@qq.com" ]
1152591772@qq.com
224fab0034b6bce8d6e75d8b87a70c8e532419c6
f4c1902534825c7b97a9392e78b148345a011147
/DataStructure/SegmentTree/UESTC1073.cpp
71c18956e18d325fc2d51df90669ead28ce983aa
[]
no_license
obsolescenceL/obsolescenceL
6443fbfc88f5286007800b809839ef3b663b6ce0
096f50469beb0c98b71b828d185b685d071177ed
refs/heads/master
2020-04-04T00:15:43.241792
2017-06-10T05:24:38
2017-06-10T05:24:38
28,584,497
3
2
null
2017-06-10T05:24:39
2014-12-29T07:41:23
C++
UTF-8
C++
false
false
1,916
cpp
/************************************************************************* File Name: UESTC1073.cpp ID: obsoles1 LANG: C++ Mail: 384099319@qq.com Created Time: 2015年05月23日 星期六 17时24分00秒 ************************************************************************/ #include<cstdio> #include<cstring> #include<iostream> #include<algorithm> #include<map> #include<queue> #include<stack> #include<cmath> #include<cctype> #include<ctime> #include<cstdlib> #include<string> #include<vector> #include<set> #include<bitset> #define Max(x,y) ((x)>(y)?(x):(y)) #define Min(x,y) ((x)<(y)?(x):(y)) #define each(it,v) for(__typeof((v).begin()) it=(v).begin();it!=(v).end();++it) #define Abs(x,y) ((x)>(y)?((x)-(y)):((y)-(x))) #define ll long long #define Mem0(x) memset(x,0,sizeof(x)) #define Mem1(x) memset(x,-1,sizeof(x)) #define MemX(x) memset(x,0x3f,sizeof(x)) #define pb push_back using namespace std; const int N=100001; ll tree[N<<2]; void push_up(int t){ tree[t]=tree[t<<1]+tree[t<<1|1]; } void build(int t,int L,int R){ if(L==R){ scanf("%lld",&tree[t]); return; } int mid=(L+R)>>1; build(t<<1,L,mid); build(t<<1|1,mid+1,R); push_up(t); } void update(int t,int L,int R,int x,int v){ if(L==R){ tree[t]=v; return; } int mid=(L+R)>>1; if(x<=mid)update(t<<1,L,mid,x,v); else update(t<<1|1,mid+1,R,x,v); push_up(t); } ll query(int t,int L,int R,int l,int r){ if(l<=L&&R<=r)return tree[t]; int mid=(L+R)>>1; ll ans=0; if(l<=mid)ans+=query(t<<1,L,mid,l,r); if(r>mid)ans+=query(t<<1|1,mid+1,R,l,r); return ans; } int main(){ int n,m,l,r,x,v,op; while(~scanf("%d",&n)){ build(1,1,n); scanf("%d",&m); while(m--){ scanf("%d",&op); if(op==1){ scanf("%d%d",&x,&v); update(1,1,n,x,v); }else{ scanf("%d%d",&l,&r); printf("%lld\n",query(1,1,n,l,r)); } } } }
[ "384099319@qq.com" ]
384099319@qq.com
6cc60e8323ae8ad7bfe8d80fc90f6ec219bfc31f
c022f16e7be5c20cb479ec1a884bc72aa926a8eb
/Beeftext/Group/Group.cpp
9add31f78fd7464ab968d2c82c18cf1527a368bb
[ "LGPL-3.0-only", "OpenSSL", "MIT" ]
permissive
danijeljw/Beeftext
8b59260b28a0d95ddb40a6e26b2d05a669a5a1ec
fa06366a25bf5687fc7107f53f59693bcd98c14b
refs/heads/master
2020-09-21T16:19:25.059298
2019-11-20T16:11:03
2019-11-20T16:11:03
224,846,293
0
0
MIT
2019-11-29T12:05:05
2019-11-29T12:02:23
null
UTF-8
C++
false
false
6,674
cpp
/// \file /// \author Xavier Michelon /// /// \brief Implementation of combo group class /// /// Copyright (c) Xavier Michelon. All rights reserved. /// Licensed under the MIT License. See LICENSE file in the project root for full license information. #include "stdafx.h" #include "Group.h" #include <utility> #include "BeeftextConstants.h" namespace { QString const kPropUuid = "uuid"; ///< The JSon property name for the UUID QString const kPropName = "name"; ///< The JSON property name for the name QString const kPropDescription = "description"; ///< The JSON property name for the description QString const kPropCreationDateTime = "creationDateTime"; ///< The JSON property name for the created date/time QString const kPropModificationDateTime = "modificationDateTime"; ///< The JSON property name for the modification date/time } //********************************************************************************************************************** /// \param[in] name The name of the group /// \param[in] description The description of the group //********************************************************************************************************************** Group::Group(QString name, QString description) : uuid_(QUuid::createUuid()) , name_(std::move(name)) , description_(std::move(description)) { creationDateTime_ = modificationDateTime_ = QDateTime::currentDateTime(); } //********************************************************************************************************************** /// \param[in] object The JSON object /// \param[in] formatVersion The version number of the JSON file format //********************************************************************************************************************** Group::Group(QJsonObject const& object, qint32 formatVersion) : uuid_(QUuid(object[kPropUuid].toString())) , name_(object[kPropName].toString()) , description_(object[kPropDescription].toString()) , creationDateTime_(QDateTime::fromString(object[kPropCreationDateTime].toString(), constants::kJsonExportDateFormat)) , modificationDateTime_(QDateTime::fromString(object[kPropModificationDateTime].toString(), constants::kJsonExportDateFormat)) { (void)formatVersion; // avoid warning in MinGW. We will for sure use this variable later } //********************************************************************************************************************** /// \return true if and only if the group is valid //********************************************************************************************************************** bool Group::isValid() const { return (!creationDateTime_.isNull()) && (!modificationDateTime_.isNull()) && (!uuid_.isNull()) && (!name_.isEmpty()); } //********************************************************************************************************************** /// \return The UUID of the combo group //********************************************************************************************************************** QUuid Group::uuid() const { return uuid_; } //********************************************************************************************************************** /// \return The name of the group //********************************************************************************************************************** QString Group::name() const { return name_; } //********************************************************************************************************************** /// \param[in] name The name of the group //********************************************************************************************************************** void Group::setName(QString const& name) { if (name_ != name) { name_ = name; this->touch(); } } //********************************************************************************************************************** /// \return The description of the group //********************************************************************************************************************** QString Group::description() const { return description_; } //********************************************************************************************************************** /// \param[in] description The description of the group //********************************************************************************************************************** void Group::setDescription(QString const& description) { if (description_ != description) { description_ = description; this->touch(); } } //********************************************************************************************************************** /// \return A JSON object representing the group //********************************************************************************************************************** QJsonObject Group::toJsonObject() const { QJsonObject result; result.insert(kPropUuid, uuid_.toString()); result.insert(kPropName, name_); result.insert(kPropDescription, description_); result.insert(kPropCreationDateTime, creationDateTime_.toString(constants::kJsonExportDateFormat)); result.insert(kPropModificationDateTime, modificationDateTime_.toString(constants::kJsonExportDateFormat)); return result; } //********************************************************************************************************************** /// \param[in] name The name of the group /// \param[in] description The description of the group //********************************************************************************************************************** SpGroup Group::create(QString const& name, QString const& description) { return std::make_shared<Group>(name, description); } //********************************************************************************************************************** /// \param[in] object The JSON object /// \param[in] formatVersion The version number of the JSON file format //********************************************************************************************************************** SpGroup Group::create(QJsonObject const& object, qint32 formatVersion) { return std::make_shared<Group>(object, formatVersion); } //********************************************************************************************************************** // //********************************************************************************************************************** void Group::touch() { modificationDateTime_ = QDateTime::currentDateTime(); }
[ "xmichelo@gmail.com" ]
xmichelo@gmail.com
8a409861e07154bc3a433079f55ed10b228ee1b5
fef7dfa0475cb868a5a14432eba57a81693f357d
/Management_System_Xion_2.7/include/TransaxinventarioNegocio.h
84c980c99098b13194b4611e6897b9d29d722a7c
[]
no_license
EzequielEduardo/LAB2-SEGUNDO-PARCIAL
a656845d61d0db3ab2a619f5ab68755d9223e4cc
bad1897538361031e07b6987b44c630df51f8683
refs/heads/main
2023-05-31T13:52:52.378898
2021-07-14T15:44:10
2021-07-14T15:44:10
373,639,841
0
0
null
2021-06-06T21:59:55
2021-06-03T21:00:09
C++
UTF-8
C++
false
false
253
h
#ifndef TRANSAXINVENTARIONEGOCIO_H #define TRANSAXINVENTARIONEGOCIO_H #include "Transaxinventario.h" class TransaxinventarioNegocio { public: void actualizarstock(bool,TransaxInventario); }; #endif // TRANSAXINVENTARIONEGOCIO_H
[ "noreply@github.com" ]
noreply@github.com
f209abf8622576fbc9677f632c0bf1854be0c212
9ab722e6b9e4ce741cc6f865ba97e0fdc0ad14e5
/library/view/native_theme_painter.cpp
5d717a549ec0f6066f70d21ac35255fe76c725eb
[ "MIT" ]
permissive
csjy309450/PuTTY-ng
b892c6474c8ff797f1d0bf555b08351da4fe617b
0af73729d45d51936810f675d481c47e5588407b
refs/heads/master
2022-12-24T13:31:22.786842
2020-03-08T16:53:51
2020-03-08T16:53:51
296,880,184
1
0
MIT
2020-09-19T13:54:25
2020-09-19T13:54:24
null
UTF-8
C++
false
false
2,138
cpp
#include "native_theme_painter.h" #include "base/logging.h" #include "ui_gfx/canvas_skia.h" #include "ui_gfx/rect.h" #include "ui_base/animation/animation.h" #include "native_theme_delegate.h" namespace view { NativeThemePainter::NativeThemePainter(NativeThemeDelegate* delegate) : delegate_(delegate) { DCHECK(delegate_); } gfx::Size NativeThemePainter::GetPreferredSize() { const gfx::NativeTheme* theme = gfx::NativeTheme::instance(); gfx::NativeTheme::ExtraParams extra; gfx::NativeTheme::State state = delegate_->GetThemeState(&extra); return theme->GetPartSize(delegate_->GetThemePart(), state, extra); } void NativeThemePainter::Paint(int w, int h, gfx::Canvas* canvas) { const gfx::NativeTheme* native_theme = gfx::NativeTheme::instance(); gfx::NativeTheme::Part part = delegate_->GetThemePart(); gfx::CanvasSkia* skia_canvas = canvas->AsCanvasSkia(); gfx::Rect rect(0, 0, w, h); if(delegate_->GetThemeAnimation()!=NULL && delegate_->GetThemeAnimation()->is_animating()) { // Paint background state. gfx::NativeTheme::ExtraParams prev_extra; gfx::NativeTheme::State prev_state = delegate_->GetBackgroundThemeState(&prev_extra); native_theme->Paint(skia_canvas, part, prev_state, rect, prev_extra); // Composite foreground state above it. gfx::NativeTheme::ExtraParams extra; gfx::NativeTheme::State state = delegate_->GetForegroundThemeState(&extra); int alpha = delegate_->GetThemeAnimation()->CurrentValueBetween(0, 255); skia_canvas->SaveLayerAlpha(static_cast<uint8>(alpha)); native_theme->Paint(skia_canvas, part, state, rect, extra); skia_canvas->Restore(); } else { gfx::NativeTheme::ExtraParams extra; gfx::NativeTheme::State state = delegate_->GetThemeState(&extra); native_theme->Paint(skia_canvas, part, state, rect, extra); } } } //namespace view
[ "wlwlxj@gmail.com@b2b8c3b8-ce47-b78c-ec54-380d862a5473" ]
wlwlxj@gmail.com@b2b8c3b8-ce47-b78c-ec54-380d862a5473
813cd6ebd3695c7e876485353068757370c570b2
5144bebd786c4ed9a08583c3e9e797f3079b2c8b
/src/Scene/Scene.cpp
3d05e6847dc1a3060e5bdcfd3aef677fe20bfe06
[ "MIT" ]
permissive
swindesr/ss_raytracer
62b49afdbf2656aa2263132af46661e64c65cff0
44fc726fb97cf4a2b1aefc5026b37ab7b8eaedaa
refs/heads/main
2023-03-04T03:35:22.388316
2021-02-16T02:40:40
2021-02-16T02:40:40
339,261,460
0
0
null
null
null
null
UTF-8
C++
false
false
621
cpp
#include "Scene.h" #include "Light/Color.h" #include "variables.h" Scene::Scene(const Sampler& sampler, const Painter& painter, const Camera& camera, const RayTracer& rt) : sampler_(sampler), painter_(painter), camera_(camera), ray_tracer_(rt) {} // Loop through every pixel, trace its ray, and paint it void Scene::render() { Sample s(0, 0); int pixel_number = 0; while (sampler_.getSample(s)) { Ray r(Vec3(), Vec3(), 0, INFINITY_F); Color c(0); camera_.makeRay(s, r); ray_tracer_.traceRay(r, c); painter_.paint(pixel_number, c); pixel_number++; } }
[ "swindesr@users.noreply.github.com" ]
swindesr@users.noreply.github.com
2036252bf53687c8497b94b34dc49b0e9e5b2d02
8d1725e2bedd244d7bc865df75317a85d2468e93
/qt_core/c_lib/src/qt_core_c_QThread.cpp
eacb059ca3a1f1db0f8990b928b5e90abb6c3c67
[]
no_license
aristotle9/qt_generator-output
04100597f923b117314afcc80f0ea85417d342be
be98dd92de8d2e2c43cf8e9e20ebd1316fd4b101
refs/heads/master
2021-07-23T12:20:15.277052
2017-10-24T08:20:03
2017-10-24T08:20:03
108,097,475
2
0
null
null
null
null
UTF-8
C++
false
false
3,548
cpp
#include "qt_core_c_QThread.h" QThread* qt_core_c_QThread_G_dynamic_cast_QThread_ptr(QObject* ptr) { return dynamic_cast<QThread*>(ptr); } QObject* qt_core_c_QThread_G_static_cast_QObject_ptr(QThread* ptr) { return static_cast<QObject*>(ptr); } QThread* qt_core_c_QThread_G_static_cast_QThread_ptr(QObject* ptr) { return static_cast<QThread*>(ptr); } QThread* qt_core_c_QThread_currentThread() { return QThread::currentThread(); } void qt_core_c_QThread_delete(QThread* this_ptr) { delete this_ptr; } bool qt_core_c_QThread_event(QThread* this_ptr, QEvent* event) { return this_ptr->event(event); } QAbstractEventDispatcher* qt_core_c_QThread_eventDispatcher(const QThread* this_ptr) { return this_ptr->eventDispatcher(); } void qt_core_c_QThread_exit_no_args(QThread* this_ptr) { this_ptr->exit(); } void qt_core_c_QThread_exit_retcode(QThread* this_ptr, int retcode) { this_ptr->exit(retcode); } int qt_core_c_QThread_idealThreadCount() { return QThread::idealThreadCount(); } bool qt_core_c_QThread_isFinished(const QThread* this_ptr) { return this_ptr->isFinished(); } bool qt_core_c_QThread_isInterruptionRequested(const QThread* this_ptr) { return this_ptr->isInterruptionRequested(); } bool qt_core_c_QThread_isRunning(const QThread* this_ptr) { return this_ptr->isRunning(); } int qt_core_c_QThread_loopLevel(const QThread* this_ptr) { return this_ptr->loopLevel(); } const QMetaObject* qt_core_c_QThread_metaObject(const QThread* this_ptr) { return this_ptr->metaObject(); } void qt_core_c_QThread_msleep(unsigned long arg1) { QThread::msleep(arg1); } QThread* qt_core_c_QThread_new_no_args() { return new QThread(); } QThread* qt_core_c_QThread_new_parent(QObject* parent) { return new QThread(parent); } QThread::Priority qt_core_c_QThread_priority(const QThread* this_ptr) { return this_ptr->priority(); } void qt_core_c_QThread_quit(QThread* this_ptr) { this_ptr->quit(); } void qt_core_c_QThread_requestInterruption(QThread* this_ptr) { this_ptr->requestInterruption(); } void qt_core_c_QThread_setEventDispatcher(QThread* this_ptr, QAbstractEventDispatcher* eventDispatcher) { this_ptr->setEventDispatcher(eventDispatcher); } void qt_core_c_QThread_setPriority(QThread* this_ptr, QThread::Priority priority) { this_ptr->setPriority(priority); } void qt_core_c_QThread_setStackSize(QThread* this_ptr, unsigned int stackSize) { this_ptr->setStackSize(stackSize); } void qt_core_c_QThread_sleep(unsigned long arg1) { QThread::sleep(arg1); } unsigned int qt_core_c_QThread_stackSize(const QThread* this_ptr) { return this_ptr->stackSize(); } void qt_core_c_QThread_start_arg1(QThread* this_ptr, QThread::Priority arg1) { this_ptr->start(arg1); } void qt_core_c_QThread_start_no_args(QThread* this_ptr) { this_ptr->start(); } void qt_core_c_QThread_terminate(QThread* this_ptr) { this_ptr->terminate(); } void qt_core_c_QThread_trUtf8_to_output(const char* s, const char* c, int n, QString* output) { new(output) QString(QThread::trUtf8(s, c, n)); } void qt_core_c_QThread_tr_to_output(const char* s, const char* c, int n, QString* output) { new(output) QString(QThread::tr(s, c, n)); } void qt_core_c_QThread_usleep(unsigned long arg1) { QThread::usleep(arg1); } bool qt_core_c_QThread_wait_no_args(QThread* this_ptr) { return this_ptr->wait(); } bool qt_core_c_QThread_wait_time(QThread* this_ptr, unsigned long time) { return this_ptr->wait(time); } void qt_core_c_QThread_yieldCurrentThread() { QThread::yieldCurrentThread(); }
[ "lanfan.1987@gmail.com" ]
lanfan.1987@gmail.com
e714da230d71c5fe872d8d26647347b469fbe7f5
50934b4a85143039da1a52b554a503e430f05a54
/src/qt/askpassphrasedialog.cpp
13bbd63b49c694d26150d5f201ead174fc80fbe4
[ "MIT" ]
permissive
bignev/GIVEAWAY
23e079700cebf836bd7ed76fbe9f182765695f0d
3f5299ea4c4ab70df376d96718e3bf8f35f3a06a
refs/heads/master
2021-01-24T22:44:44.945507
2015-10-28T07:48:06
2015-10-28T07:48:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,000
cpp
#include "askpassphrasedialog.h" #include "ui_askpassphrasedialog.h" #include "guiconstants.h" #include "walletmodel.h" #include <QMessageBox> #include <QPushButton> #include <QKeyEvent> extern bool fWalletUnlockStakingOnly; AskPassphraseDialog::AskPassphraseDialog(Mode mode, QWidget *parent) : QDialog(parent), ui(new Ui::AskPassphraseDialog), mode(mode), model(0), fCapsLock(false) { ui->setupUi(this); ui->passEdit1->setMaxLength(MAX_PASSPHRASE_SIZE); ui->passEdit2->setMaxLength(MAX_PASSPHRASE_SIZE); ui->passEdit3->setMaxLength(MAX_PASSPHRASE_SIZE); // Setup Caps Lock detection. ui->passEdit1->installEventFilter(this); ui->passEdit2->installEventFilter(this); ui->passEdit3->installEventFilter(this); switch(mode) { case Encrypt: // Ask passphrase x2 ui->passLabel1->hide(); ui->passEdit1->hide(); ui->warningLabel->setText(tr("Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>10 or more random characters</b>, or <b>eight or more words</b>.")); setWindowTitle(tr("Encrypt wallet")); break; case UnlockStaking: ui->stakingCheckBox->setChecked(true); ui->stakingCheckBox->show(); // fallthru case Unlock: // Ask passphrase ui->warningLabel->setText(tr("This operation needs your wallet passphrase to unlock the wallet.")); ui->passLabel2->hide(); ui->passEdit2->hide(); ui->passLabel3->hide(); ui->passEdit3->hide(); setWindowTitle(tr("Unlock wallet")); break; case Decrypt: // Ask passphrase ui->warningLabel->setText(tr("This operation needs your wallet passphrase to decrypt the wallet.")); ui->passLabel2->hide(); ui->passEdit2->hide(); ui->passLabel3->hide(); ui->passEdit3->hide(); setWindowTitle(tr("Decrypt wallet")); break; case ChangePass: // Ask old passphrase + new passphrase x2 setWindowTitle(tr("Change passphrase")); ui->warningLabel->setText(tr("Enter the old and new passphrase to the wallet.")); break; } textChanged(); connect(ui->passEdit1, SIGNAL(textChanged(QString)), this, SLOT(textChanged())); connect(ui->passEdit2, SIGNAL(textChanged(QString)), this, SLOT(textChanged())); connect(ui->passEdit3, SIGNAL(textChanged(QString)), this, SLOT(textChanged())); } AskPassphraseDialog::~AskPassphraseDialog() { // Attempt to overwrite text so that they do not linger around in memory ui->passEdit1->setText(QString(" ").repeated(ui->passEdit1->text().size())); ui->passEdit2->setText(QString(" ").repeated(ui->passEdit2->text().size())); ui->passEdit3->setText(QString(" ").repeated(ui->passEdit3->text().size())); delete ui; } void AskPassphraseDialog::setModel(WalletModel *model) { this->model = model; } void AskPassphraseDialog::accept() { SecureString oldpass, newpass1, newpass2; if(!model) return; oldpass.reserve(MAX_PASSPHRASE_SIZE); newpass1.reserve(MAX_PASSPHRASE_SIZE); newpass2.reserve(MAX_PASSPHRASE_SIZE); // TODO: get rid of this .c_str() by implementing SecureString::operator=(std::string) // Alternately, find a way to make this input mlock()'d to begin with. oldpass.assign(ui->passEdit1->text().toStdString().c_str()); newpass1.assign(ui->passEdit2->text().toStdString().c_str()); newpass2.assign(ui->passEdit3->text().toStdString().c_str()); switch(mode) { case Encrypt: { if(newpass1.empty() || newpass2.empty()) { // Cannot encrypt with empty passphrase break; } QMessageBox::StandardButton retval = QMessageBox::question(this, tr("Confirm wallet encryption"), tr("Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR COINS</b>!") + "<br><br>" + tr("Are you sure you wish to encrypt your wallet?"), QMessageBox::Yes|QMessageBox::Cancel, QMessageBox::Cancel); if(retval == QMessageBox::Yes) { if(newpass1 == newpass2) { if(model->setWalletEncrypted(true, newpass1)) { QMessageBox::warning(this, tr("Wallet encrypted"), "<qt>" + tr("FreeCoin will close now to finish the encryption process. " "Remember that encrypting your wallet cannot fully protect " "your coins from being stolen by malware infecting your computer.") + "<br><br><b>" + tr("IMPORTANT: Any previous backups you have made of your wallet file " "should be replaced with the newly generated, encrypted wallet file. " "For security reasons, previous backups of the unencrypted wallet file " "will become useless as soon as you start using the new, encrypted wallet.") + "</b></qt>"); QApplication::quit(); } else { QMessageBox::critical(this, tr("Wallet encryption failed"), tr("Wallet encryption failed due to an internal error. Your wallet was not encrypted.")); } QDialog::accept(); // Success } else { QMessageBox::critical(this, tr("Wallet encryption failed"), tr("The supplied passphrases do not match.")); } } else { QDialog::reject(); // Cancelled } } break; case UnlockStaking: case Unlock: if(!model->setWalletLocked(false, oldpass)) { QMessageBox::critical(this, tr("Wallet unlock failed"), tr("The passphrase entered for the wallet decryption was incorrect.")); } else { fWalletUnlockStakingOnly = ui->stakingCheckBox->isChecked(); QDialog::accept(); // Success } break; case Decrypt: if(!model->setWalletEncrypted(false, oldpass)) { QMessageBox::critical(this, tr("Wallet decryption failed"), tr("The passphrase entered for the wallet decryption was incorrect.")); } else { QDialog::accept(); // Success } break; case ChangePass: if(newpass1 == newpass2) { if(model->changePassphrase(oldpass, newpass1)) { QMessageBox::information(this, tr("Wallet encrypted"), tr("Wallet passphrase was successfully changed.")); QDialog::accept(); // Success } else { QMessageBox::critical(this, tr("Wallet encryption failed"), tr("The passphrase entered for the wallet decryption was incorrect.")); } } else { QMessageBox::critical(this, tr("Wallet encryption failed"), tr("The supplied passphrases do not match.")); } break; } } void AskPassphraseDialog::textChanged() { // Validate input, set Ok button to enabled when acceptable bool acceptable = false; switch(mode) { case Encrypt: // New passphrase x2 acceptable = !ui->passEdit2->text().isEmpty() && !ui->passEdit3->text().isEmpty(); break; case UnlockStaking: case Unlock: // Old passphrase x1 case Decrypt: acceptable = !ui->passEdit1->text().isEmpty(); break; case ChangePass: // Old passphrase x1, new passphrase x2 acceptable = !ui->passEdit1->text().isEmpty() && !ui->passEdit2->text().isEmpty() && !ui->passEdit3->text().isEmpty(); break; } ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(acceptable); } bool AskPassphraseDialog::event(QEvent *event) { // Detect Caps Lock key press. if (event->type() == QEvent::KeyPress) { QKeyEvent *ke = static_cast<QKeyEvent *>(event); if (ke->key() == Qt::Key_CapsLock) { fCapsLock = !fCapsLock; } if (fCapsLock) { ui->capsLabel->setText(tr("Warning: The Caps Lock key is on!")); } else { ui->capsLabel->clear(); } } return QWidget::event(event); } bool AskPassphraseDialog::eventFilter(QObject *object, QEvent *event) { /* Detect Caps Lock. * There is no good OS-independent way to check a key state in Qt, but we * can detect Caps Lock by checking for the following condition: * Shift key is down and the result is a lower case character, or * Shift key is not down and the result is an upper case character. */ if (event->type() == QEvent::KeyPress) { QKeyEvent *ke = static_cast<QKeyEvent *>(event); QString str = ke->text(); if (str.length() != 0) { const QChar *psz = str.unicode(); bool fShift = (ke->modifiers() & Qt::ShiftModifier) != 0; if ((fShift && psz->isLower()) || (!fShift && psz->isUpper())) { fCapsLock = true; ui->capsLabel->setText(tr("Warning: The Caps Lock key is on!")); } else if (psz->isLetter()) { fCapsLock = false; ui->capsLabel->clear(); } } } return QDialog::eventFilter(object, event); }
[ "freecoin@scryptmail.com" ]
freecoin@scryptmail.com
22ccbe0ab3fabb03a724d7c72aa414d05ccea371
fccf6a532586b8a4e59eaa021e9f9a31a0a8b05f
/Evaluador.cpp
551e39e0f016eacb46a994423d3c4d89457bf303
[]
no_license
williamFportillo/Tareaprogramacion1
61f7bf8178fd1dd01f67d9989e7c4553c4d98d10
2b1fc77d34c8e95570f6d8d19d7808a26fd563fb
refs/heads/master
2021-06-28T14:48:43.344531
2017-09-15T03:47:53
2017-09-15T03:47:53
103,610,838
0
0
null
null
null
null
UTF-8
C++
false
false
3,455
cpp
#include "Evaluador.h" string getPrimerElemento(stack<string> mi_cola); void evaluar() { float nota = 0; int sumar(int a, int b); int restar(int a, int b); int multiplicar(int a, int b); int dividir(int a, int b); int getMayor(int a, int b); int getMenor(int a, int b); int getMayor(int a, int b, int c); void setValor(int arreglo[], int valor, int posicion); int getValor(int arreglo[], int posicion); int getMayor(int arreglo[], int tamano); int getMenor(int arreglo[], int tamano); int getPromedio(int arreglo[], int tamano); cout<<"Ejercicio sumar:\t\t"; if(sumar(5,3)==8 && sumar(2,1)==3 && sumar(1000,1234)==2234) { nota+=0.5; cout<<"Correcto"<<endl; }else { cout<<"Incorrecto"<<endl; } cout<<"Ejercicio restar:\t\t"; if(restar(5,3)==2 && restar(2,1)==1 && restar(5,7)==-2) { nota+=0.5; cout<<"Correcto"<<endl; }else { cout<<"Incorrecto"<<endl; } cout<<"Ejercicio multiplicar:\t\t"; if(multiplicar(5,3)==15 && multiplicar(2,1)==2 && multiplicar(5,-7)==-35) { nota+=0.5; cout<<"Correcto"<<endl; }else { cout<<"Incorrecto"<<endl; } cout<<"Ejercicio dividir:\t\t"; if(dividir(9,3)==3 && dividir(2,1)==2 && dividir(8,2)==4) { nota+=0.5; cout<<"Correcto"<<endl; }else { cout<<"Incorrecto"<<endl; } cout<<"Ejercicio getMayor:\t\t"; if(getMayor(9,3)==9 && getMayor(1,2)==2 && getMayor(8,2)==8 && getMayor(8,16)==16) { nota+=0.5; cout<<"Correcto"<<endl; }else { cout<<"Incorrecto"<<endl; } cout<<"Ejercicio getMenor:\t\t"; if(getMenor(9,3)==3 && getMenor(1,2)==1 && getMenor(8,2)==2 && getMenor(8,16)==8) { nota+=0.5; cout<<"Correcto"<<endl; }else { cout<<"Incorrecto"<<endl; } cout<<"Ejercicio getMayor:\t\t"; if(getMayor(9,3,5)==9 && getMayor(1,3,2)==3 && getMayor(2,8,2)==8 && getMayor(8,5,16)==16) { nota+=0.5; cout<<"Correcto"<<endl; }else { cout<<"Incorrecto"<<endl; } cout<<"Ejercicio setValor:\t\t"; int arr[]={1,2,3}; setValor(arr,4,1); setValor(arr,9,2); int arr2[]={10,20}; setValor(arr2,30,1); if(arr[0]==1 && arr[1]==4 && arr[2]==9 && arr2[0]==10 && arr2[1]==30) { nota+=0.5; cout<<"Correcto"<<endl; }else { cout<<"Incorrecto"<<endl; } cout<<"Ejercicio getValor:\t\t"; int a1[]={3,4,2,1}; int a2[]={10,20,30}; if(getValor(a1,0)==3 && getValor(a1,1)==4 && getValor(a2,0)==10 && getValor(a2,1)==20) { nota+=0.5; cout<<"Correcto"<<endl; }else { cout<<"Incorrecto"<<endl; } cout<<"Ejercicio getMayor:\t\t"; if(getMayor(a1,4)==4 && getMayor(a2,3)==30) { nota+=0.5; cout<<"Correcto"<<endl; }else { cout<<"Incorrecto"<<endl; } cout<<"Ejercicio getMenor:\t\t"; if(getMenor(a1,4)==1 && getMenor(a2,3)==10) { nota+=0.5; cout<<"Correcto"<<endl; }else { cout<<"Incorrecto"<<endl; } cout<<"Ejercicio getPromedio:\t\t"; if(getPromedio && getPromedio(a2,3)==20) { nota+=0.5; cout<<"Correcto"<<endl; }else { cout<<"Incorrecto"<<endl; } cout<<endl<<"Nota: "<<nota<<"/6"<<endl; }
[ "portillowilliam18@gmail.com" ]
portillowilliam18@gmail.com
1266ef40d85d3f7cf35cd310a048ac1a762184ad
680440f5e59eb2157c1ecb41fd891880ac47c459
/XJOI/Level2/XJOI1160 选择排序/choose.cpp
97be7db4466f27cb80a2d318e1b5d19d149fa2cf
[]
no_license
Skywt2003/codes
a705dc3a4f5f79d47450179fc597bd92639f3d93
0e09198dc84e3f6907a11b117a068f5e0f55ca68
refs/heads/master
2020-03-29T09:29:54.014364
2019-11-15T12:39:47
2019-11-15T12:39:47
149,760,952
6
0
null
null
null
null
UTF-8
C++
false
false
545
cpp
#include<cstdio> #include<cstring> #include<iostream> using namespace std; const int maxn=1005; int n,a[maxn]; inline int read(){ int ret=0,f=1;char ch=getchar(); while (ch<'0'||ch>'9') {if (ch=='-') f=-1;ch=getchar();} while (ch>='0'&&ch<='9') ret=ret*10+ch-'0',ch=getchar(); return ret*f; } int main(){ n=read(); for (int i=1;i<=n;i++) a[i]=read(); for (int i=1;i<n;i++) for (int j=i+1;j<=n;j++){ if (a[i]>a[j]) swap(a[i],a[j]); } for (int i=1;i<n;i++) printf("%d ",a[i]); printf("%d\n",a[n]); return 0; }
[ "skywt2003@gmail.com" ]
skywt2003@gmail.com
8c98cf9d6a25309020a6fcb4f0e9cd2359e49e27
e0ccf15621f604f9932de759cce2ee407ae4ece5
/src/MagnumPlugins/GlslangShaderConverter/Test/GlslangConverterTest.cpp
8d2b89531e5592722b730859356d1770e9579842
[ "MIT" ]
permissive
mosra/magnum-plugins
65e722d32f920c9bd9d3684528c2056b5e328fed
6d57e20347d92d5b43dd6c74a8ba2a4f8bf891e2
refs/heads/master
2023-08-17T18:27:44.289631
2023-08-17T16:00:11
2023-08-17T16:03:43
2,982,886
113
77
NOASSERTION
2023-09-04T21:05:59
2011-12-14T20:43:25
C++
UTF-8
C++
false
false
43,270
cpp
/* This file is part of Magnum. Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023 Vladimír Vondruš <mosra@centrum.cz> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include <sstream> #include <unordered_map> #include <Corrade/Containers/Array.h> #include <Corrade/Containers/GrowableArray.h> #include <Corrade/Containers/Optional.h> #include <Corrade/Containers/Pair.h> #include <Corrade/Containers/String.h> #include <Corrade/TestSuite/Tester.h> #include <Corrade/TestSuite/Compare/StringToFile.h> #include <Corrade/TestSuite/Compare/String.h> #include <Corrade/Utility/ConfigurationGroup.h> #include <Corrade/Utility/DebugStl.h> /** @todo remove once Debug is stream-free and file callbacks are <string>-free */ #include <Corrade/Utility/FormatStl.h> #include <Corrade/Utility/Path.h> #include <Magnum/FileCallback.h> #include <Magnum/ShaderTools/AbstractConverter.h> #include <Magnum/ShaderTools/Stage.h> /* Mirrors what's in the plugin source */ #ifdef __has_include #if __has_include(<glslang/build_info.h>) #include <glslang/build_info.h> #else #include <glslang/Include/revision.h> #endif #else #include <glslang/Include/revision.h> #endif #include "configure.h" namespace Magnum { namespace ShaderTools { namespace Test { namespace { struct GlslangConverterTest: TestSuite::Tester { explicit GlslangConverterTest(); void validate(); void validateIncludes(); void validateIncludesCallback(); void validateWrongInputFormat(); void validateWrongInputVersion(); void validateWrongOutputFormat(); void validateWrongOutputVersionTarget(); void validateWrongOutputVersionLanguage(); void validateWrongOutputFormatForGenericOpenGL(); void validateFail(); void validateFailWrongStage(); void validateFailFileWrongStage(); void validateFailOverridenInputVersion(); void validateFailOverridenOutputVersion(); void validateFailOverridenLimit(); void validateFailIncludeNotFound(); /* Just a subset of the cases checked for validate(), verifying only the convert-specific code paths */ void convert(); void convertIncludes(); void convertPreprocessOnlyNotImplemented(); void convertWrongInputFormat(); void convertWrongInputVersion(); void convertWrongOutputFormat(); void convertWrongOutputVersionTarget(); void convertWrongOutputVersionLanguage(); void convertWrongDebugInfoLevel(); void convertFail(); void convertFailWrongStage(); void convertFailFileWrongStage(); void vulkanNoExplicitLayout(); /* Explicitly forbid system-wide plugin dependencies */ PluginManager::Manager<AbstractConverter> _converterManager{"nonexistent"}; }; using namespace Containers::Literals; const struct { const char* name; Stage stage; const char* filename; const char* alias; const char* inputVersion; Format outputFormat; const char* outputVersion; bool spirvShouldBeValidated; } ValidateData[] { /* GCC 4.8 doesn't like using just {} for Stage, Format or const char* */ {"GL shader", Stage{}, "shader.gl.frag", nullptr, "", Format{}, "opengl4.5", false}, {"GL shader, generic version", Stage{}, "shader.gl.frag", nullptr, "", Format{}, "opengl", false}, {"GL shader, SPIR-V output format", Stage{}, "shader.gl.frag", nullptr, "", Format::Spirv, "opengl4.5", true}, {"GL shader, SPIR-V included in output version", Stage{}, "shader.gl.frag", nullptr, "", Format{}, "opengl4.5 spv1.0", true}, {"GL shader, explicit stage", Stage::Fragment, "shader.gl.frag", "shader.glsl", "", Format{}, "opengl4.5", false}, {"GL shader, <stage>.glsl", Stage{}, "shader.gl.frag", "shader.frag.glsl", "", Format{}, "opengl4.5", false}, {"GL 2.1 shader", Stage{}, "shader.oldgl.frag", nullptr, "110", Format{}, "opengl4.5", false}, {"GLES 2.0 shader", Stage{}, "shader.oldgl.frag", nullptr, "100 es", Format{}, "opengl4.5", false}, {"Vulkan shader, default", Stage{}, "shader.vk.frag", nullptr, "", Format{}, "", true}, {"Vulkan shader, SPIR-V target", Stage{}, "shader.vk.frag", nullptr, "", Format::Spirv, "", true}, {"Vulkan 1.0 shader", Stage{}, "shader.vk.frag", nullptr, "", Format{}, "vulkan1.0", true}, {"Vulkan 1.1 shader", Stage{}, "shader.vk.frag", nullptr, "", Format{}, "vulkan1.1", true}, {"Vulkan 1.1 SPIR-V 1.4 shader", Stage{}, "shader.vk.frag", nullptr, "", Format{}, "vulkan1.1 spv1.4", true}, #if defined(GLSLANG_VERSION_MAJOR) || LSLANG_PATCH_LEVEL >= 3743 {"Vulkan 1.2 shader", Stage{}, "shader.vk.frag", nullptr, "", Format{}, "vulkan1.2", true}, #endif }; const struct { const char* name; ConverterFlags flags; Containers::Array<Containers::Pair<Containers::StringView, Containers::StringView>> defines; bool valid; const char* message; } ValidateFailData[] { {"compile warning", {}, {InPlaceInit, { {"RESERVED_IDENTIFIER", ""} }}, true, "WARNING: 0:4: 'reserved__word' : identifiers containing consecutive underscores (\"__\") are reserved"}, {"compile warning, Quiet", ConverterFlag::Quiet, {InPlaceInit, { {"RESERVED_IDENTIFIER", ""} }}, true, ""}, {"compile warning, WarningAsError", ConverterFlag::WarningAsError, {InPlaceInit, { {"RESERVED_IDENTIFIER", ""} }}, false, /* Glslang has no concept of warnings as error so this is the same as the "compile warning" case except that we fail the validation */ "WARNING: 0:4: 'reserved__word' : identifiers containing consecutive underscores (\"__\") are reserved"}, {"link error", {}, {InPlaceInit, { {"NO_MAIN", ""} }}, false, "ERROR: Linking vertex stage: Missing entry point: Each stage requires one entry point"}, {"compile warning + link error", {}, {InPlaceInit, { {"RESERVED_IDENTIFIER", ""}, {"NO_MAIN", ""} }}, false, "WARNING: 0:4: 'reserved__word' : identifiers containing consecutive underscores (\"__\") are reserved\n" "ERROR: Linking vertex stage: Missing entry point: Each stage requires one entry point"}, {"compile warning + link error, Quiet", ConverterFlag::Quiet, {InPlaceInit, { {"RESERVED_IDENTIFIER", ""}, {"NO_MAIN", ""} }}, false, /* Same as the "link error" case */ "ERROR: Linking vertex stage: Missing entry point: Each stage requires one entry point"}, {"compile warning + link error, WarningAsError", ConverterFlag::WarningAsError, {InPlaceInit, { {"RESERVED_IDENTIFIER", ""}, {"NO_MAIN", ""} }}, false, /* Same as the "compile warning, WarningAsError" case -- it should not get to the linking step at all */ "WARNING: 0:4: 'reserved__word' : identifiers containing consecutive underscores (\"__\") are reserved"}, /** @todo link warning? found only one w/ HLSL where it can have no entrypoint */ }; const struct { const char* name; Stage stage; const char* filename; const char* alias; const char* output; const char* outputVersion; const char* debugInfoLevel; } ConvertData[] { /* Just a subset of what's checked for validate(), to verify code paths specific to convert() */ /* GCC 4.8 doesn't like using just {} for Stage or for const char* */ {"GL shader", Stage{}, "shader.gl.frag", nullptr, "shader.gl.spv", "opengl4.5", nullptr}, {"GL shader, explicit stage", Stage::Fragment, "shader.gl.frag", "shader.glsl", "shader.gl.spv", "opengl4.5", nullptr}, {"Vulkan shader, default", Stage{}, "shader.vk.frag", nullptr, "shader.vk.spv", "", nullptr}, /* Vulkan 1.0 target puts OpModuleProcessed into the shader source which looks strange in the disassembly, but that's all */ {"Vulkan 1.1 shader with debug info", Stage{}, "shader.vk.frag", nullptr, #if defined(GLSLANG_VERSION_MAJOR) && GLSLANG_VERSION_MAJOR*1000 + GLSLANG_VERSION_MINOR >= 11011 "shader.vk.debug.spv", /* Versions before 11.11 (11.4 at least) don't emit OpLine %1 34 11 before the main OpFunction */ #elif defined(GLSLANG_VERSION_MAJOR) "shader.vk.debug-glslang11.spv", /* Versions before 10 emit extra OpModuleProcessed "use-storage-buffer" https://github.com/KhronosGroup/glslang/issues/1829 */ #else "shader.vk.debug-glslang8.spv", #endif "vulkan1.1", "1"}, }; const struct { const char* name; ConverterFlags flags; Containers::Array<Containers::Pair<Containers::StringView, Containers::StringView>> defines; bool success; const char* message; } ConvertFailData[] { /* Again just a subset of what's checked for validate(), to verify code paths specific to convert() */ {"compile warning", {}, {InPlaceInit, { {"RESERVED_IDENTIFIER", ""} }}, true, "ShaderTools::GlslangConverter::convertDataToData(): compilation succeeded with the following message:\n" "WARNING: 0:4: 'reserved__word' : identifiers containing consecutive underscores (\"__\") are reserved\n"}, {"compile warning, Quiet", ConverterFlag::Quiet, {InPlaceInit, { {"RESERVED_IDENTIFIER", ""} }}, true, ""}, {"compile warning, WarningAsError", ConverterFlag::WarningAsError, {InPlaceInit, { {"RESERVED_IDENTIFIER", ""} }}, false, /* Glslang has no concept of warnings as error so this is the same as the "compile warning" case except that we fail the validation */ "ShaderTools::GlslangConverter::convertDataToData(): compilation failed:\n" "WARNING: 0:4: 'reserved__word' : identifiers containing consecutive underscores (\"__\") are reserved\n"}, {"link error", {}, {InPlaceInit, { {"NO_MAIN", ""} }}, false, "ShaderTools::GlslangConverter::convertDataToData(): linking failed:\n" "ERROR: Linking vertex stage: Missing entry point: Each stage requires one entry point\n"}, {"compile warning + link error", {}, {InPlaceInit, { {"RESERVED_IDENTIFIER", ""}, {"NO_MAIN", ""} }}, false, "ShaderTools::GlslangConverter::convertDataToData(): compilation succeeded with the following message:\n" "WARNING: 0:4: 'reserved__word' : identifiers containing consecutive underscores (\"__\") are reserved\n" "ShaderTools::GlslangConverter::convertDataToData(): linking failed:\n" "ERROR: Linking vertex stage: Missing entry point: Each stage requires one entry point\n"}, {"compile warning + link error, Quiet", ConverterFlag::Quiet, {InPlaceInit, { {"RESERVED_IDENTIFIER", ""}, {"NO_MAIN", ""} }}, false, "ShaderTools::GlslangConverter::convertDataToData(): linking failed:\n" "ERROR: Linking vertex stage: Missing entry point: Each stage requires one entry point\n"} /** @todo link warning? found only one w/ HLSL where it can have no entrypoint */ }; /* Yes, trailing whitespace. Fuck me. */ const char* VulkanNoExplicitBindingError = "ERROR: 0:28: 'binding' : sampler/texture/image requires layout(binding=X) \n" "ERROR: 1 compilation errors. No code generated."; const char* VulkanNoExplicitLocationError = "ERROR: 0:32: 'location' : SPIR-V requires location for user input/output \n" "ERROR: 1 compilation errors. No code generated."; const struct { const char* name; const char* define; Format outputFormat; const char* error; } VulkanNoExplicitLayoutData[] { /* GCC 4.8 doesn't like using just {} for Format */ {"no layout(binding)", "NO_EXPLICIT_BINDING", Format{}, VulkanNoExplicitBindingError}, {"no layout(binding), SPIR-V output", "NO_EXPLICIT_BINDING", Format::Spirv, VulkanNoExplicitBindingError}, {"no layout(location)", "NO_EXPLICIT_LOCATION", Format{}, VulkanNoExplicitLocationError}, {"no layout(location), SPIR-V output", "NO_EXPLICIT_LOCATION", Format::Spirv, VulkanNoExplicitLocationError}, }; GlslangConverterTest::GlslangConverterTest() { addInstancedTests({&GlslangConverterTest::validate}, Containers::arraySize(ValidateData)); addTests({&GlslangConverterTest::validateIncludes, &GlslangConverterTest::validateIncludesCallback, &GlslangConverterTest::validateWrongInputFormat, &GlslangConverterTest::validateWrongInputVersion, &GlslangConverterTest::validateWrongOutputFormat, &GlslangConverterTest::validateWrongOutputVersionTarget, &GlslangConverterTest::validateWrongOutputVersionLanguage, &GlslangConverterTest::validateWrongOutputFormatForGenericOpenGL}); addInstancedTests({&GlslangConverterTest::validateFail}, Containers::arraySize(ValidateFailData)); addTests({&GlslangConverterTest::validateFailWrongStage, &GlslangConverterTest::validateFailFileWrongStage, &GlslangConverterTest::validateFailOverridenInputVersion, &GlslangConverterTest::validateFailOverridenOutputVersion, &GlslangConverterTest::validateFailOverridenLimit, &GlslangConverterTest::validateFailIncludeNotFound}); addInstancedTests({&GlslangConverterTest::convert}, Containers::arraySize(ConvertData)); addTests({&GlslangConverterTest::convertIncludes, &GlslangConverterTest::convertPreprocessOnlyNotImplemented, &GlslangConverterTest::convertWrongInputFormat, &GlslangConverterTest::convertWrongInputVersion, &GlslangConverterTest::convertWrongOutputFormat, &GlslangConverterTest::convertWrongOutputVersionTarget, &GlslangConverterTest::convertWrongOutputVersionLanguage, &GlslangConverterTest::convertWrongDebugInfoLevel}); addInstancedTests({&GlslangConverterTest::convertFail}, Containers::arraySize(ConvertFailData)); addTests({&GlslangConverterTest::convertFailWrongStage, &GlslangConverterTest::convertFailFileWrongStage}); addInstancedTests({&GlslangConverterTest::vulkanNoExplicitLayout}, Containers::arraySize(VulkanNoExplicitLayoutData)); /* Load the plugin directly from the build tree. Otherwise it's static and already loaded. */ #ifdef GLSLANGSHADERCONVERTER_PLUGIN_FILENAME CORRADE_INTERNAL_ASSERT_OUTPUT(_converterManager.load(GLSLANGSHADERCONVERTER_PLUGIN_FILENAME) & PluginManager::LoadState::Loaded); #endif } void GlslangConverterTest::validate() { auto&& data = ValidateData[testCaseInstanceId()]; setTestCaseDescription(data.name); #if !defined(GLSLANG_VERSION_MAJOR) && GLSLANG_PATCH_LEVEL < 3496 /* GL_ARB_explicit_uniform_location is implemented only since 7.13.3496, https://github.com/KhronosGroup/glslang/pull/1880, earlier versions spit out the following error and the only way to use explicit uniform location is by forcing the version to 430 ERROR: shader.gl.frag:24: '#extension' : extension not supported: GL_ARB_explicit_uniform_location ERROR: shader.gl.frag:27: 'location qualifier on uniform or buffer' : not supported for this version or the enabled extensions */ if(data.filename == "shader.gl.frag"_s && data.spirvShouldBeValidated) CORRADE_SKIP("GL_ARB_explicit_uniform_location only implemented since 7.13.3496."); #endif Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); Containers::Array<Containers::Pair<Containers::StringView, Containers::StringView>> defines{InPlaceInit, { {"A_DEFINE", ""}, {"AN_UNDEFINE", "something awful!!"}, {"AN_UNDEFINE", nullptr}, }}; if(!data.spirvShouldBeValidated) arrayAppend(defines, InPlaceInit, "VALIDATE_NON_SPIRV", ""); converter->setDefinitions(defines); converter->setOutputFormat(data.outputFormat, data.outputVersion); /* Fake the file loading via a callback */ const Containers::Optional<Containers::Array<char>> file = Utility::Path::read(Utility::Path::join(GLSLANGSHADERCONVERTER_TEST_DIR, data.filename)); CORRADE_VERIFY(file); converter->setInputFileCallback([](const std::string&, InputFileCallbackPolicy, const Containers::Array<char>& file) -> Containers::Optional<Containers::ArrayView<const char>> { return arrayView(file); }, *file); CORRADE_COMPARE(converter->validateFile(data.stage, data.alias ? data.alias : data.filename), Containers::pair(true, Containers::String{})); } void GlslangConverterTest::validateIncludes() { Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); CORRADE_COMPARE(converter->validateFile({}, Utility::Path::join(GLSLANGSHADERCONVERTER_TEST_DIR, "includes.vert")), Containers::pair(true, Containers::String{})); } void GlslangConverterTest::validateIncludesCallback() { Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); std::unordered_map<std::string, Containers::Array<char>> files; converter->setInputFileCallback([](const std::string& filename, InputFileCallbackPolicy policy, std::unordered_map<std::string, Containers::Array<char>>& files) -> Containers::Optional<Containers::ArrayView<const char>> { auto found = files.find(filename); /* Discard the loaded file, if not needed anymore */ if(policy == InputFileCallbackPolicy::Close) { Debug{} << "Closing" << filename; if(found != files.end()) files.erase(found); return {}; } Debug{} << "Loading" << filename; /* Extract from an archive if not there yet; fail if not extraction failed */ if(found == files.end()) { Containers::Optional<Containers::Array<char>> file = Utility::Path::read(Utility::Path::join(GLSLANGSHADERCONVERTER_TEST_DIR, filename)); CORRADE_VERIFY(file); found = files.emplace(filename, *std::move(file)).first; } return Containers::ArrayView<const char>{found->second}; }, files); std::ostringstream out; Debug redirectOutput{&out}; CORRADE_COMPARE(converter->validateFile({}, "includes.vert"), Containers::pair(true, Containers::String{})); CORRADE_COMPARE(out.str(), "Loading includes.vert\n" "Loading sub/directory/basics.glsl\n" "Loading sub/directory/definitions.glsl\n" "Closing sub/directory/definitions.glsl\n" "Loading sub/directory/../relative.glsl\n" "Closing sub/directory/../relative.glsl\n" /* Here it's loading & closing basics.glsl again but because it's recursive while it's being in scope, it's not propagated to the callback */ /* Here it's loading & closing relative.glsl again, which is propagated to the callback because at this point the refcount reached 0 and the original file got already released */ "Loading sub/directory/../relative.glsl\n" "Closing sub/directory/../relative.glsl\n" "Closing sub/directory/basics.glsl\n" "Closing includes.vert\n"); } void GlslangConverterTest::validateWrongInputFormat() { Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); converter->setInputFormat(Format::Hlsl); std::ostringstream out; Error redirectError{&out}; CORRADE_COMPARE(converter->validateData({}, {}), Containers::pair(false, Containers::String{})); CORRADE_COMPARE(out.str(), "ShaderTools::GlslangConverter::validateData(): input format should be Glsl or Unspecified but got ShaderTools::Format::Hlsl\n"); } void GlslangConverterTest::validateWrongInputVersion() { Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); converter->setInputFormat(Format::Glsl, "100"); std::ostringstream out; Error redirectError{&out}; CORRADE_COMPARE(converter->validateData({}, {}), Containers::pair(false, Containers::String{})); CORRADE_COMPARE(out.str(), /* Yep, it's silly as 100 is a valid GLSL version. But this way we know it's silly. */ "ShaderTools::GlslangConverter::validateData(): input format version should be one of supported GLSL #version strings but got 100\n"); } void GlslangConverterTest::validateWrongOutputFormat() { Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); converter->setOutputFormat(Format::Glsl); std::ostringstream out; Error redirectError{&out}; CORRADE_COMPARE(converter->validateData({}, {}), Containers::pair(false, Containers::String{})); CORRADE_COMPARE(out.str(), "ShaderTools::GlslangConverter::validateData(): output format should be Spirv or Unspecified but got ShaderTools::Format::Glsl\n"); } void GlslangConverterTest::validateWrongOutputVersionTarget() { Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); converter->setOutputFormat(Format::Unspecified, "vulkan2.0"); std::ostringstream out; Error redirectError{&out}; CORRADE_COMPARE(converter->validateData({}, {}), Containers::pair(false, Containers::String{})); CORRADE_COMPARE(out.str(), /* Yep, it's silly. But this way we know it's silly. */ "ShaderTools::GlslangConverter::validateData(): output format version target should be opengl4.5 or vulkanX.Y but got vulkan2.0\n"); } void GlslangConverterTest::validateWrongOutputVersionLanguage() { Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); converter->setOutputFormat(Format::Unspecified, "vulkan1.1 spv2.1"); std::ostringstream out; Error redirectError{&out}; CORRADE_COMPARE(converter->validateData({}, {}), Containers::pair(false, Containers::String{})); CORRADE_COMPARE(out.str(), /* Yep, it's silly. But this way we know it's silly. */ "ShaderTools::GlslangConverter::validateData(): output format version language should be spvX.Y but got spv2.1\n"); } void GlslangConverterTest::validateWrongOutputFormatForGenericOpenGL() { Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); converter->setOutputFormat(Format::Spirv, "opengl"); std::ostringstream out; Error redirectError{&out}; CORRADE_COMPARE(converter->validateData({}, {}), Containers::pair(false, Containers::String{})); CORRADE_COMPARE(out.str(), "ShaderTools::GlslangConverter::validateData(): generic OpenGL can't be validated with SPIR-V rules\n"); } void GlslangConverterTest::validateFail() { auto&& data = ValidateFailData[testCaseInstanceId()]; setTestCaseDescription(data.name); Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); converter->setFlags(data.flags); converter->setDefinitions(data.defines); Containers::StringView file = R"(#version 330 #ifdef RESERVED_IDENTIFIER const float reserved__word = 2.0; #endif #ifndef NO_MAIN void main() { gl_Position = vec4(0.0); } #endif )"; CORRADE_COMPARE(converter->validateData({}, file), Containers::pair(data.valid, Containers::String{data.message})); } void GlslangConverterTest::validateFailWrongStage() { Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); /* Same source as validate() (so it's guaranteed to be valid), just with wrong stage */ converter->setDefinitions({ {"A_DEFINE", ""} }); /* We're interested in the first error only */ converter->configuration().setValue("cascadingErrors", false); /* Don't specify the stage -- vertex will be assumed, which doesn't have gl_FragCoord */ Containers::Optional<Containers::Array<char>> data = Utility::Path::read(Utility::Path::join(GLSLANGSHADERCONVERTER_TEST_DIR, "shader.vk.frag")); CORRADE_VERIFY(data); CORRADE_COMPARE(converter->validateData(Stage::Unspecified, *data), Containers::pair(false, Containers::String{ /* Yes, trailing whitespace. Fuck me. */ "ERROR: 0:35: 'gl_FragCoord' : undeclared identifier \n" "ERROR: 0:35: '' : compilation terminated \n" "ERROR: 2 compilation errors. No code generated."})); } void GlslangConverterTest::validateFailFileWrongStage() { Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); /* Same source as validate() (so it's guaranteed to be valid), just with wrong stage */ converter->setDefinitions({ {"A_DEFINE", ""} }); /* We're interested in the first error only */ converter->configuration().setValue("cascadingErrors", false); /* Fake the file loading via a callback */ const Containers::Optional<Containers::Array<char>> file = Utility::Path::read(Utility::Path::join(GLSLANGSHADERCONVERTER_TEST_DIR, "shader.vk.frag")); CORRADE_VERIFY(file); converter->setInputFileCallback([](const std::string&, InputFileCallbackPolicy, const Containers::Array<char>& file) -> Containers::Optional<Containers::ArrayView<const char>> { return arrayView(file); }, *file); /* And supply a generic filename to cause the stage to be not detected. The filename should be also shown in the output. */ CORRADE_COMPARE(converter->validateFile(Stage::Unspecified, "shader.glsl"), Containers::pair(false, Containers::String{ /* Yes, trailing whitespace. Fuck me. */ "ERROR: shader.glsl:35: 'gl_FragCoord' : undeclared identifier \n" "ERROR: shader.glsl:35: '' : compilation terminated \n" "ERROR: 2 compilation errors. No code generated."})); } void GlslangConverterTest::validateFailOverridenInputVersion() { Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); converter->setInputFormat({}, "120"); converter->setOutputFormat({}, "opengl4.5"); /* We're interested in the first error only */ converter->configuration().setValue("cascadingErrors", false); /* Using syntax that isn't available in GLSL 1.10 */ const char data[] = R"( in vec4 position; void main() { gl_Position = position; } )"; CORRADE_COMPARE(converter->validateData({}, data), Containers::pair(false, Containers::String{ /* Yes, trailing whitespace. Fuck me. */ "ERROR: 0:2: 'in for stage inputs' : not supported for this version or the enabled extensions \n" "ERROR: 0:2: '' : compilation terminated \n" "ERROR: 2 compilation errors. No code generated."})); } void GlslangConverterTest::validateFailOverridenOutputVersion() { Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); converter->setOutputFormat({}, "opengl4.5"); /* The shader uses Vulkan-specific features, should fail */ Containers::StringView data = R"(#version 450 layout(push_constant) uniform Thing { vec4 position; }; )"; CORRADE_COMPARE(converter->validateData({}, data), Containers::pair(false, Containers::String{ /* Yes, trailing whitespace. Fuck me. */ "ERROR: 0:2: 'push_constant' : only allowed when using GLSL for Vulkan \n" "ERROR: 1 compilation errors. No code generated."})); } void GlslangConverterTest::validateFailOverridenLimit() { Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); converter->setOutputFormat({}, "opengl4.5"); converter->configuration().group("builtins")->setValue("maxCombinedTextureImageUnits", 8); /* We're interested in the first error only */ converter->configuration().setValue("cascadingErrors", false); /* Sampler binding is outside of the limit */ Containers::StringView data = R"(#version 450 layout(binding=8) uniform sampler2D textureData; )"; CORRADE_COMPARE(converter->validateData(Stage::Fragment, data), Containers::pair(false, Containers::String{ /* Yes, trailing whitespace. Fuck me. */ "ERROR: 0:2: 'binding' : sampler binding not less than gl_MaxCombinedTextureImageUnits \n" "ERROR: 1 compilation errors. No code generated."})); } void GlslangConverterTest::validateFailIncludeNotFound() { Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); converter->setDefinitions({{"MAKE_THIS_BROKEN", ""}}); /* We're interested just in the include error. Actually, it's interesting that when I set this to false (which should result in *less* errors), there's an additional error about a missing #endif. Someone inverted the condition in there or what? */ converter->configuration().setValue("cascadingErrors", true); std::ostringstream out; Error redirectError{&out}; CORRADE_COMPARE(converter->validateFile({}, Utility::Path::join(GLSLANGSHADERCONVERTER_TEST_DIR, "includes.vert")), Containers::pair(false, Utility::format( "ERROR: {0}:10: '#include' : Could not process include directive for header name: ../notfound.glsl\n" "ERROR: 1 compilation errors. No code generated.", Utility::Path::join(GLSLANGSHADERCONVERTER_TEST_DIR, "includes.vert")))); /* Verify just the prefix, the actual message is OS-specific */ CORRADE_COMPARE_AS(out.str(), Utility::format("Utility::Path::read(): can't open {}: error ", Utility::Path::join(GLSLANGSHADERCONVERTER_TEST_DIR, "../notfound.glsl")), TestSuite::Compare::StringHasPrefix); } void GlslangConverterTest::convert() { auto&& data = ConvertData[testCaseInstanceId()]; setTestCaseDescription(data.name); #if !defined(GLSLANG_VERSION_MAJOR) && GLSLANG_PATCH_LEVEL < 3496 /* GL_ARB_explicit_uniform_location is implemented only since 7.13.3496, https://github.com/KhronosGroup/glslang/pull/1880, earlier versions spit out the following error and the only way to use explicit uniform location is by forcing the version to 430 ERROR: shader.gl.frag:24: '#extension' : extension not supported: GL_ARB_explicit_uniform_location ERROR: shader.gl.frag:27: 'location qualifier on uniform or buffer' : not supported for this version or the enabled extensions */ if(data.filename == "shader.gl.frag"_s) CORRADE_SKIP("GL_ARB_explicit_uniform_location only implemented since 7.13.3496."); #endif Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); converter->setDefinitions({ {"A_DEFINE", ""}, {"AN_UNDEFINE", "something awful!!"}, {"AN_UNDEFINE", nullptr} }); converter->setOutputFormat({}, data.outputVersion); if(data.debugInfoLevel) converter->setDebugInfoLevel(data.debugInfoLevel); /* Fake the file loading via a callback */ const Containers::Optional<Containers::Array<char>> file = Utility::Path::read(Utility::Path::join(GLSLANGSHADERCONVERTER_TEST_DIR, data.filename)); CORRADE_VERIFY(file); converter->setInputFileCallback([](const std::string&, InputFileCallbackPolicy, const Containers::Array<char>& file) -> Containers::Optional<Containers::ArrayView<const char>> { return arrayView(file); }, *file); Containers::Optional<Containers::Array<char>> output = converter->convertFileToData(data.stage, data.alias ? data.alias : data.filename); CORRADE_VERIFY(output); /* glslang 7.13 / 8.13 differs from 10 only in the generator version, patch that to have the same output */ auto words = Containers::arrayCast<UnsignedInt>(*output); if(words.size() >= 3 && (words[2] == 524295 || words[2] == 524296)) words[2] = 524298; CORRADE_COMPARE_AS(Containers::StringView{*output}, Utility::Path::join(GLSLANGSHADERCONVERTER_TEST_DIR, data.output), TestSuite::Compare::StringToFile); } void GlslangConverterTest::convertIncludes() { Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); /* Checking just that it passed, the rest was verified for validate() already */ CORRADE_VERIFY(converter->convertFileToFile({}, Utility::Path::join(GLSLANGSHADERCONVERTER_TEST_DIR, "includes.vert"), Utility::Path::join(GLSLANGSHADERCONVERTER_TEST_OUTPUT_DIR, "includes.spv"))); } void GlslangConverterTest::convertPreprocessOnlyNotImplemented() { Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); converter->setFlags(ConverterFlag::PreprocessOnly); std::ostringstream out; Error redirectError{&out}; CORRADE_VERIFY(!converter->convertDataToData({}, {})); CORRADE_COMPARE(out.str(), "ShaderTools::GlslangConverter::convertDataToData(): PreprocessOnly is not implemented yet, sorry\n"); } void GlslangConverterTest::convertWrongInputFormat() { Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); converter->setInputFormat(Format::Hlsl); std::ostringstream out; Error redirectError{&out}; CORRADE_VERIFY(!converter->convertDataToData({}, {})); CORRADE_COMPARE(out.str(), "ShaderTools::GlslangConverter::convertDataToData(): input format should be Glsl or Unspecified but got ShaderTools::Format::Hlsl\n"); } void GlslangConverterTest::convertWrongInputVersion() { Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); converter->setInputFormat(Format::Glsl, "100"); std::ostringstream out; Error redirectError{&out}; CORRADE_VERIFY(!converter->convertDataToData({}, {})); CORRADE_COMPARE(out.str(), /* Yep, it's silly as 100 is a valid GLSL version. But this way we know it's silly. */ "ShaderTools::GlslangConverter::convertDataToData(): input format version should be one of supported GLSL #version strings but got 100\n"); } void GlslangConverterTest::convertWrongOutputFormat() { Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); converter->setOutputFormat(Format::Glsl); std::ostringstream out; Error redirectError{&out}; CORRADE_VERIFY(!converter->convertDataToData({}, {})); CORRADE_COMPARE(out.str(), "ShaderTools::GlslangConverter::convertDataToData(): output format should be Spirv or Unspecified but got ShaderTools::Format::Glsl\n"); } void GlslangConverterTest::convertWrongOutputVersionTarget() { Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); converter->setOutputFormat(Format::Unspecified, "opengl"); std::ostringstream out; Error redirectError{&out}; CORRADE_VERIFY(!converter->convertDataToData({}, {})); CORRADE_COMPARE(out.str(), "ShaderTools::GlslangConverter::convertDataToData(): output format version target should be opengl4.5 or vulkanX.Y but got opengl\n"); } void GlslangConverterTest::convertWrongOutputVersionLanguage() { Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); converter->setOutputFormat(Format::Unspecified, "vulkan1.1 spv2.1"); std::ostringstream out; Error redirectError{&out}; CORRADE_VERIFY(!converter->convertDataToData({}, {})); CORRADE_COMPARE(out.str(), /* Yep, it's silly. But this way we know it's silly. */ "ShaderTools::GlslangConverter::convertDataToData(): output format version language should be spvX.Y but got spv2.1\n"); } void GlslangConverterTest::convertWrongDebugInfoLevel() { Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); converter->setDebugInfoLevel("2"); std::ostringstream out; Error redirectError{&out}; CORRADE_VERIFY(!converter->convertDataToData({}, {})); CORRADE_COMPARE(out.str(), "ShaderTools::GlslangConverter::convertDataToData(): debug info level should be 0, 1 or empty but got 2\n"); } void GlslangConverterTest::convertFail() { auto&& data = ConvertFailData[testCaseInstanceId()]; setTestCaseDescription(data.name); Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); converter->setFlags(data.flags); converter->setDefinitions(data.defines); Containers::StringView file = R"(#version 330 #ifdef RESERVED_IDENTIFIER const float reserved__word = 2.0; #endif #ifndef NO_MAIN void main() { gl_Position = vec4(0.0); } #endif )"; std::ostringstream out; Error redirectError{&out}; Warning redirectWarning{&out}; CORRADE_COMPARE(!!converter->convertDataToData({}, file), data.success); CORRADE_COMPARE(out.str(), data.message); } void GlslangConverterTest::convertFailWrongStage() { Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); /* Same source as convert() (so it's guaranteed to be valid), just with wrong stage */ converter->setDefinitions({ {"A_DEFINE", ""} }); /* We're interested in the first error only */ converter->configuration().setValue("cascadingErrors", false); Containers::Optional<Containers::Array<char>> data = Utility::Path::read(Utility::Path::join(GLSLANGSHADERCONVERTER_TEST_DIR, "shader.vk.frag")); /* Don't specify the stage -- vertex will be assumed, which doesn't have gl_FragCoord */ std::ostringstream out; Error redirectError{&out}; CORRADE_VERIFY(!converter->convertDataToData(Stage::Unspecified, *data)); CORRADE_COMPARE(out.str(), /* Yes, trailing whitespace. Fuck me. */ "ShaderTools::GlslangConverter::convertDataToData(): compilation failed:\n" "ERROR: 0:35: 'gl_FragCoord' : undeclared identifier \n" "ERROR: 0:35: '' : compilation terminated \n" "ERROR: 2 compilation errors. No code generated.\n"); } void GlslangConverterTest::convertFailFileWrongStage() { Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); /* Same source as validate() (so it's guaranteed to be valid), just with wrong stage */ converter->setDefinitions({ {"A_DEFINE", ""} }); /* We're interested in the first error only */ converter->configuration().setValue("cascadingErrors", false); /* Fake the file loading via a callback */ const Containers::Optional<Containers::Array<char>> file = Utility::Path::read(Utility::Path::join(GLSLANGSHADERCONVERTER_TEST_DIR, "shader.vk.frag")); CORRADE_VERIFY(file); converter->setInputFileCallback([](const std::string&, InputFileCallbackPolicy, const Containers::Array<char>& file) -> Containers::Optional<Containers::ArrayView<const char>> { return arrayView(file); }, *file); /* And supply a generic filename to cause the stage to be not detected. The filename should be also shown in the output. */ std::ostringstream out; Error redirectError{&out}; CORRADE_VERIFY(!converter->convertFileToFile(Stage::Unspecified, "shader.glsl", "")); CORRADE_COMPARE(out.str(), /* Yes, trailing whitespace. Fuck me. */ "ShaderTools::GlslangConverter::convertDataToData(): compilation failed:\n" "ERROR: shader.glsl:35: 'gl_FragCoord' : undeclared identifier \n" "ERROR: shader.glsl:35: '' : compilation terminated \n" "ERROR: 2 compilation errors. No code generated.\n"); } void GlslangConverterTest::vulkanNoExplicitLayout() { auto&& data = VulkanNoExplicitLayoutData[testCaseInstanceId()]; setTestCaseDescription(data.name); Containers::Pointer<AbstractConverter> converter = _converterManager.instantiate("GlslangShaderConverter"); converter->setDefinitions({ {"A_DEFINE", ""}, {data.define, ""} }); converter->setOutputFormat(data.outputFormat, {}); /* We're interested in the first error only */ converter->configuration().setValue("cascadingErrors", false); Containers::Optional<Containers::Array<char>> file = Utility::Path::read(Utility::Path::join(GLSLANGSHADERCONVERTER_TEST_DIR, "shader.vk.frag")); CORRADE_VERIFY(file); /* Glslang SPIR-V validation rules can be enforced via multiple different settings and each setting affect only a subset of these, so verify that we're consistent in all cases */ Containers::Pair<bool, Containers::String> result = converter->validateData(Stage::Fragment, *file); CORRADE_COMPARE(result, Containers::pair(false, Containers::String{data.error})); /* Conversion should result in exactly the same */ std::ostringstream out; Error redirectError{&out}; CORRADE_VERIFY(!converter->convertDataToData(Stage::Fragment, *file)); CORRADE_COMPARE(out.str(), Utility::formatString("ShaderTools::GlslangConverter::convertDataToData(): compilation failed:\n{}\n", data.error)); } }}}} CORRADE_TEST_MAIN(Magnum::ShaderTools::Test::GlslangConverterTest)
[ "mosra@centrum.cz" ]
mosra@centrum.cz
e458854a6f52c93a289f2f497b4159136c72118f
4f4ddc396fa1dfc874780895ca9b8ee4f7714222
/src/twng/tests/TestJString.cpp
f4a711bd8f1d21333af5abd44497817a91df957c
[]
no_license
UtsavChokshiCNU/GenSym-Test2
3214145186d032a6b5a7486003cef40787786ba0
a48c806df56297019cfcb22862dd64609fdd8711
refs/heads/master
2021-01-23T23:14:03.559378
2017-09-09T14:20:09
2017-09-09T14:20:09
102,960,203
3
5
null
null
null
null
UTF-8
C++
false
false
983
cpp
#include "stdafx.h" #include "TestJString.h" #include "JString.h" CPPUNIT_TEST_SUITE_REGISTRATION(TestJString); void TestJString::Test() { JString str1 = "mwef[m[23-3j-23ej2mfmoewmo fnofnopinfo-n-0320-j23rnf2nfqwdqwmlqw"; JString str2 = str1; CPPUNIT_ASSERT(Equal(str1, str2)); CString strX = _T("mwef[m[23-3j-23ej2mfmoewmo fnofnopinfo-n-0320-j23rnf2nfqwdqwmlqw"); JString str3(strX); CPPUNIT_ASSERT(Equal(str1, str3)); JString str4 = str2; CPPUNIT_ASSERT(Equal(str4, str1)); LPWSTR strY = _T("sad,pfpks sdomvdmopvsdmmk23333333333 l2 l ll l2 l l l l l l2,f]pwe]f]w]fpw=223=krfmrbvnm"); JString str5(strY); JString str6 = str5; CPPUNIT_ASSERT(Equal(str5, str6)); JString str7((long)123456), str8("123456"); CPPUNIT_ASSERT(Equal(str7, str8)); double d = 1.234567; JString str9(d); CPPUNIT_ASSERT(d == atof(str9)); } bool TestJString::Equal(const JString& j1, const JString& j2) const { return 0 == strcmp(j1, j2); }
[ "utsavchokshi@Utsavs-MacBook-Pro.local" ]
utsavchokshi@Utsavs-MacBook-Pro.local
7bd4404f5efe4dcf7a63a25681423a9af9e9c2e7
0f1be23bd2715d1b9e1d4a160f5a177b38323e03
/hw6/curricula.hpp
6e4b43b2b0e740ff64f06e267b956d1431e38122
[]
no_license
usc-csci104-fall2019/homework_grading
9c85ad3a85af1c4b37e3248c004691299e105a5a
b47d0fbcf1e6a3a5bf329a09cb3b3f4dad9846a8
refs/heads/master
2020-08-13T00:41:24.276277
2019-12-19T05:37:16
2019-12-19T05:37:16
214,876,032
2
12
null
null
null
null
UTF-8
C++
false
false
682
hpp
#include <vector> #include <string> #include <functional> #define EXPECT_TRUE(condition) if (!condition) { return 1; } #define EXPECT_FALSE(condition) if (condition) { return 1; } #define EXPECT_EQUAL(left, right) if (left != right) { return 1; } #define EXPECT_UNEQUAL(left, right) if (left == right) { return 1; } #define EXPECT_THROW(statement)\ {\ bool caught = false;\ try { statement; } catch (...) { caught = true; }\ if (!caught) { return 1; }\ } #define TEST(name) if (strcmp(argv[1], "test_" #name) == 0) #define HARNESS_BEGIN \ int main(int argc, char** argv)\ {\ if (argc < 2)\ {\ return 1;\ }\ #define HARNESS_END \ return 1;\ }
[ "noahbkim@gmail.com" ]
noahbkim@gmail.com
a073818797faa46ad7c6635dac72352bb7de15bd
9648a5a603908a5c1c13cf25dd0db50deccfa0ad
/BasicLevel/C(C++)/1020.cpp
7ed8425babecc26112948f097fe8d3212dee032c
[]
no_license
lwxwl/PAT
efae6caa53438adf711e4238f975483558188cbe
ba885fe8e19398a8e958505d9210447d129de70e
refs/heads/master
2021-01-19T11:09:07.478120
2017-09-16T09:05:57
2017-09-16T09:05:57
87,933,153
2
0
null
null
null
null
UTF-8
C++
false
false
945
cpp
#include <iostream> #include <algorithm> using namespace std; struct yueBing { float unitPrice; // 单价 float inventory; // 库存量 float totalPrice; // 总售价 }; bool compare(yueBing a, yueBing b) { return a.unitPrice > b.unitPrice; } int main() { int n, d; cin >> n >> d; yueBing *yueBing1 = new yueBing[n]; for (int i = 0; i < n; i++) { cin >> yueBing1[i].inventory; } for (int i = 0; i < n; i++) { cin >> yueBing1[i].totalPrice; yueBing1[i].unitPrice = yueBing1[i].totalPrice / yueBing1[i].inventory; } sort(yueBing1, yueBing1 + n, compare); float sum = 0; for (int i = 0; i < n; i++) { if (d - yueBing1[i].inventory >= 0) { sum += yueBing1[i].totalPrice; d -= yueBing1[i].inventory; } else { sum += yueBing1[i].unitPrice * d; break; } } printf("%.2f", sum); }
[ "673834671@qq.com" ]
673834671@qq.com
6f94b2332e4d4821111acc1543698e220d9979b8
1505db51031fb3b81cff6f061e050626ebad88e3
/cascadescookbookcpp/src/recipes/colorrecipe.cpp
bc43e02540ca95e8c134c9c2d3ae50798257992d
[ "Apache-2.0" ]
permissive
dvijayak/Cascades-Samples
6070954811891061c054ba5fcb8f56fad5c56ff3
000886fd612691d998a87c7045932d3baf359431
refs/heads/master
2021-01-17T21:31:53.763664
2013-04-23T18:24:31
2013-04-23T18:24:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,149
cpp
/* Copyright (c) 2012 Research In Motion Limited. * * 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 "colorrecipe.h" #include <bb/cascades/Color> #include <bb/cascades/Container> #include <bb/cascades/Label> #include <bb/cascades/StackLayout> #include <bb/cascades/StackLayoutProperties> #include <bb/cascades/SystemDefaults> #include <bb/cascades/TextStyle> using namespace bb::cascades; Container* ColorRecipe::createLabel(bb::cascades::Color myColor, const char* name) { // Create a group Container that we want our controllers to be layed out left to right in. Container *groupContainer = new Container(); groupContainer->setLayout(StackLayout::create().orientation(LayoutOrientation::LeftToRight)); groupContainer->setTopPadding(4); // Add a Label with padding and Color set. Label *label = new Label(); label->setText(name); label->textStyle()->setBase(SystemDefaults::TextStyles::bodyText()); label->textStyle()->setFontWeight(FontWeight::Bold); label->textStyle()->setColor(myColor); label->setVerticalAlignment(VerticalAlignment::Center); // Create the rectangle Container and set the Color by setting the background property. Container *colorContainer = new Container(); colorContainer->setBackground(myColor); colorContainer->setVerticalAlignment(VerticalAlignment::Fill); colorContainer->setLayoutProperties(StackLayoutProperties::create().spaceQuota(1.0)); colorContainer->setLeftMargin(10); // Last, add the created Containers to the groupContainer. groupContainer->add(label); groupContainer->add(colorContainer); return groupContainer; } ColorRecipe::ColorRecipe(Container *parent) : CustomControl(parent) { // Create a Container that stacks our Labels and Containers from top to bottom. Container *recipeContainer = Container::create().left(80); // Call the createLabel function with all our different colors and add them to the recipe. recipeContainer->add(createLabel(Color(Color::Red), "Red")); recipeContainer->add(createLabel(Color(Color::DarkRed), "DarkRed")); recipeContainer->add(createLabel(Color(Color::Magenta), "Magenta")); recipeContainer->add(createLabel(Color(Color::DarkMagenta), "DarkMagenta")); recipeContainer->add(createLabel(Color(Color::Blue), "Blue")); recipeContainer->add(createLabel(Color(Color::DarkBlue), "DarkBlue")); recipeContainer->add(createLabel(Color(Color::Cyan), "Cyan")); recipeContainer->add(createLabel(Color(Color::DarkCyan), "DarkCyan")); recipeContainer->add(createLabel(Color(Color::Green), "Green")); recipeContainer->add(createLabel(Color(Color::DarkGreen), "DarkGreen")); recipeContainer->add(createLabel(Color(Color::Yellow), "Yellow")); recipeContainer->add(createLabel(Color(Color::DarkYellow), "DarkYellow")); recipeContainer->add(createLabel(Color(Color::White), "White")); recipeContainer->add(createLabel(Color(Color::LightGray), "LightGray")); recipeContainer->add(createLabel(Color(Color::Gray), "Gray")); recipeContainer->add(createLabel(Color(Color::DarkGray), "DarkGray")); recipeContainer->add(createLabel(Color(Color::Black), "Black")); recipeContainer->add(createLabel(Color::fromRGBA(0.5f, 0.5f, 0.5f), "Custom")); recipeContainer->add(createLabel(Color::fromARGB(0xffab2025), "Strawberry")); // There is a transparent Color as well, in this case it will of course // not be visible so we leave it out of the UI, see below for syntax. // recipeContainer->add(createLabel(Color(Color::Transparent), "Transparent")); setRoot(recipeContainer); }
[ "jlarsby@rim.com" ]
jlarsby@rim.com
9474deff2af5b3f2f13d27cb94e9cdb9068d0ec9
5b4312ddc24f29538dce0444b7be81e17191c005
/autoware.ai/1.12.0/devel/.private/vector_map_server/include/vector_map_server/GetCrossWalkRequest.h
8b73da7b90d976bc77689964ac0d79908fd28b5f
[ "MIT" ]
permissive
muyangren907/autoware
b842f1aeb2bfe7913fb2be002ea4fc426b4e9be2
5ae70f0cdaf5fc70b91cd727cf5b5f90bc399d38
refs/heads/master
2020-09-22T13:08:14.237380
2019-12-03T07:12:49
2019-12-03T07:12:49
225,167,473
0
0
null
null
null
null
UTF-8
C++
false
false
11,077
h
// Generated by gencpp from file vector_map_server/GetCrossWalkRequest.msg // DO NOT EDIT! #ifndef VECTOR_MAP_SERVER_MESSAGE_GETCROSSWALKREQUEST_H #define VECTOR_MAP_SERVER_MESSAGE_GETCROSSWALKREQUEST_H #include <string> #include <vector> #include <map> #include <ros/types.h> #include <ros/serialization.h> #include <ros/builtin_message_traits.h> #include <ros/message_operations.h> #include <geometry_msgs/PoseStamped.h> #include <autoware_msgs/Lane.h> namespace vector_map_server { template <class ContainerAllocator> struct GetCrossWalkRequest_ { typedef GetCrossWalkRequest_<ContainerAllocator> Type; GetCrossWalkRequest_() : pose() , waypoints() { } GetCrossWalkRequest_(const ContainerAllocator& _alloc) : pose(_alloc) , waypoints(_alloc) { (void)_alloc; } typedef ::geometry_msgs::PoseStamped_<ContainerAllocator> _pose_type; _pose_type pose; typedef ::autoware_msgs::Lane_<ContainerAllocator> _waypoints_type; _waypoints_type waypoints; typedef boost::shared_ptr< ::vector_map_server::GetCrossWalkRequest_<ContainerAllocator> > Ptr; typedef boost::shared_ptr< ::vector_map_server::GetCrossWalkRequest_<ContainerAllocator> const> ConstPtr; }; // struct GetCrossWalkRequest_ typedef ::vector_map_server::GetCrossWalkRequest_<std::allocator<void> > GetCrossWalkRequest; typedef boost::shared_ptr< ::vector_map_server::GetCrossWalkRequest > GetCrossWalkRequestPtr; typedef boost::shared_ptr< ::vector_map_server::GetCrossWalkRequest const> GetCrossWalkRequestConstPtr; // constants requiring out of line definition template<typename ContainerAllocator> std::ostream& operator<<(std::ostream& s, const ::vector_map_server::GetCrossWalkRequest_<ContainerAllocator> & v) { ros::message_operations::Printer< ::vector_map_server::GetCrossWalkRequest_<ContainerAllocator> >::stream(s, "", v); return s; } } // namespace vector_map_server namespace ros { namespace message_traits { // BOOLTRAITS {'IsFixedSize': False, 'IsMessage': True, 'HasHeader': False} // {'sensor_msgs': ['/opt/ros/melodic/share/sensor_msgs/cmake/../msg'], 'pcl_msgs': ['/opt/ros/melodic/share/pcl_msgs/cmake/../msg'], 'std_msgs': ['/opt/ros/melodic/share/std_msgs/cmake/../msg'], 'vector_map_msgs': ['/home/myr907/autoware.ai/src/autoware/messages/vector_map_msgs/msg'], 'jsk_footstep_msgs': ['/opt/ros/melodic/share/jsk_footstep_msgs/cmake/../msg'], 'geometry_msgs': ['/opt/ros/melodic/share/geometry_msgs/cmake/../msg'], 'jsk_recognition_msgs': ['/opt/ros/melodic/share/jsk_recognition_msgs/cmake/../msg'], 'actionlib_msgs': ['/opt/ros/melodic/share/actionlib_msgs/cmake/../msg'], 'autoware_msgs': ['/home/myr907/autoware.ai/src/autoware/messages/autoware_msgs/msg']} // !!!!!!!!!!! ['__class__', '__delattr__', '__dict__', '__doc__', '__eq__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_parsed_fields', 'constants', 'fields', 'full_name', 'has_header', 'header_present', 'names', 'package', 'parsed_fields', 'short_name', 'text', 'types'] template <class ContainerAllocator> struct IsFixedSize< ::vector_map_server::GetCrossWalkRequest_<ContainerAllocator> > : FalseType { }; template <class ContainerAllocator> struct IsFixedSize< ::vector_map_server::GetCrossWalkRequest_<ContainerAllocator> const> : FalseType { }; template <class ContainerAllocator> struct IsMessage< ::vector_map_server::GetCrossWalkRequest_<ContainerAllocator> > : TrueType { }; template <class ContainerAllocator> struct IsMessage< ::vector_map_server::GetCrossWalkRequest_<ContainerAllocator> const> : TrueType { }; template <class ContainerAllocator> struct HasHeader< ::vector_map_server::GetCrossWalkRequest_<ContainerAllocator> > : FalseType { }; template <class ContainerAllocator> struct HasHeader< ::vector_map_server::GetCrossWalkRequest_<ContainerAllocator> const> : FalseType { }; template<class ContainerAllocator> struct MD5Sum< ::vector_map_server::GetCrossWalkRequest_<ContainerAllocator> > { static const char* value() { return "d1f64bdec952e41012fc8c13f57fef77"; } static const char* value(const ::vector_map_server::GetCrossWalkRequest_<ContainerAllocator>&) { return value(); } static const uint64_t static_value1 = 0xd1f64bdec952e410ULL; static const uint64_t static_value2 = 0x12fc8c13f57fef77ULL; }; template<class ContainerAllocator> struct DataType< ::vector_map_server::GetCrossWalkRequest_<ContainerAllocator> > { static const char* value() { return "vector_map_server/GetCrossWalkRequest"; } static const char* value(const ::vector_map_server::GetCrossWalkRequest_<ContainerAllocator>&) { return value(); } }; template<class ContainerAllocator> struct Definition< ::vector_map_server::GetCrossWalkRequest_<ContainerAllocator> > { static const char* value() { return "geometry_msgs/PoseStamped pose\n" "autoware_msgs/Lane waypoints\n" "\n" "================================================================================\n" "MSG: geometry_msgs/PoseStamped\n" "# A Pose with reference coordinate frame and timestamp\n" "Header header\n" "Pose pose\n" "\n" "================================================================================\n" "MSG: std_msgs/Header\n" "# Standard metadata for higher-level stamped data types.\n" "# This is generally used to communicate timestamped data \n" "# in a particular coordinate frame.\n" "# \n" "# sequence ID: consecutively increasing ID \n" "uint32 seq\n" "#Two-integer timestamp that is expressed as:\n" "# * stamp.sec: seconds (stamp_secs) since epoch (in Python the variable is called 'secs')\n" "# * stamp.nsec: nanoseconds since stamp_secs (in Python the variable is called 'nsecs')\n" "# time-handling sugar is provided by the client library\n" "time stamp\n" "#Frame this data is associated with\n" "string frame_id\n" "\n" "================================================================================\n" "MSG: geometry_msgs/Pose\n" "# A representation of pose in free space, composed of position and orientation. \n" "Point position\n" "Quaternion orientation\n" "\n" "================================================================================\n" "MSG: geometry_msgs/Point\n" "# This contains the position of a point in free space\n" "float64 x\n" "float64 y\n" "float64 z\n" "\n" "================================================================================\n" "MSG: geometry_msgs/Quaternion\n" "# This represents an orientation in free space in quaternion form.\n" "\n" "float64 x\n" "float64 y\n" "float64 z\n" "float64 w\n" "\n" "================================================================================\n" "MSG: autoware_msgs/Lane\n" "Header header\n" "int32 increment\n" "int32 lane_id\n" "Waypoint[] waypoints\n" "\n" "uint32 lane_index\n" "float32 cost\n" "float32 closest_object_distance\n" "float32 closest_object_velocity\n" "bool is_blocked\n" "\n" "================================================================================\n" "MSG: autoware_msgs/Waypoint\n" "# global id\n" "int32 gid \n" "# local id\n" "int32 lid\n" "geometry_msgs/PoseStamped pose\n" "geometry_msgs/TwistStamped twist\n" "DTLane dtlane\n" "int32 change_flag\n" "WaypointState wpstate\n" "\n" "uint32 lane_id\n" "uint32 left_lane_id\n" "uint32 right_lane_id\n" "uint32 stop_line_id\n" "float32 cost\n" "float32 time_cost\n" "\n" "# Lane Direction\n" "# FORWARD = 0\n" "# FORWARD_LEFT = 1\n" "# FORWARD_RIGHT = 2\n" "# BACKWARD = 3 \n" "# BACKWARD_LEFT = 4\n" "# BACKWARD_RIGHT = 5\n" "# STANDSTILL = 6\n" "uint32 direction\n" "================================================================================\n" "MSG: geometry_msgs/TwistStamped\n" "# A twist with reference coordinate frame and timestamp\n" "Header header\n" "Twist twist\n" "\n" "================================================================================\n" "MSG: geometry_msgs/Twist\n" "# This expresses velocity in free space broken into its linear and angular parts.\n" "Vector3 linear\n" "Vector3 angular\n" "\n" "================================================================================\n" "MSG: geometry_msgs/Vector3\n" "# This represents a vector in free space. \n" "# It is only meant to represent a direction. Therefore, it does not\n" "# make sense to apply a translation to it (e.g., when applying a \n" "# generic rigid transformation to a Vector3, tf2 will only apply the\n" "# rotation). If you want your data to be translatable too, use the\n" "# geometry_msgs/Point message instead.\n" "\n" "float64 x\n" "float64 y\n" "float64 z\n" "================================================================================\n" "MSG: autoware_msgs/DTLane\n" "float64 dist\n" "float64 dir\n" "float64 apara\n" "float64 r\n" "float64 slope\n" "float64 cant\n" "float64 lw\n" "float64 rw\n" "\n" "================================================================================\n" "MSG: autoware_msgs/WaypointState\n" "int32 aid\n" "uint8 NULLSTATE=0\n" "\n" "# lanechange\n" "uint8 lanechange_state\n" "\n" "# bilinker\n" "uint8 steering_state\n" "uint8 STR_LEFT=1\n" "uint8 STR_RIGHT=2\n" "uint8 STR_STRAIGHT=3\n" "uint8 STR_BACK=4\n" "\n" "uint8 accel_state\n" "\n" "uint8 stop_state\n" "# 1 is stopline, 2 is stop which can only be released manually.\n" "uint8 TYPE_STOPLINE=1\n" "uint8 TYPE_STOP=2\n" "\n" "uint8 event_state\n" "uint8 TYPE_EVENT_NULL = 0\n" "uint8 TYPE_EVENT_GOAL = 1\n" "uint8 TYPE_EVENT_MIDDLE_GOAL = 2\n" "uint8 TYPE_EVENT_POSITION_STOP = 3\n" "uint8 TYPE_EVENT_BUS_STOP = 4\n" "uint8 TYPE_EVENT_PARKING = 5\n" ; } static const char* value(const ::vector_map_server::GetCrossWalkRequest_<ContainerAllocator>&) { return value(); } }; } // namespace message_traits } // namespace ros namespace ros { namespace serialization { template<class ContainerAllocator> struct Serializer< ::vector_map_server::GetCrossWalkRequest_<ContainerAllocator> > { template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m) { stream.next(m.pose); stream.next(m.waypoints); } ROS_DECLARE_ALLINONE_SERIALIZER }; // struct GetCrossWalkRequest_ } // namespace serialization } // namespace ros namespace ros { namespace message_operations { template<class ContainerAllocator> struct Printer< ::vector_map_server::GetCrossWalkRequest_<ContainerAllocator> > { template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::vector_map_server::GetCrossWalkRequest_<ContainerAllocator>& v) { s << indent << "pose: "; s << std::endl; Printer< ::geometry_msgs::PoseStamped_<ContainerAllocator> >::stream(s, indent + " ", v.pose); s << indent << "waypoints: "; s << std::endl; Printer< ::autoware_msgs::Lane_<ContainerAllocator> >::stream(s, indent + " ", v.waypoints); } }; } // namespace message_operations } // namespace ros #endif // VECTOR_MAP_SERVER_MESSAGE_GETCROSSWALKREQUEST_H
[ "907097904@qq.com" ]
907097904@qq.com
ca32d41d6c916727dc1f11d6f51f041e1e6166ab
84cb6172f8afd975707c486b11ac8c812960a8a1
/cf275A.cpp
761a9eab09610aa8bc5a06e1b42bffe583179982
[]
no_license
numan947/Curiously-Bored
d4d761923102831cac83c828e2e6a44daa5d5ac7
7bfffec3989d6cb75697bf7f569da01c3adb1a19
refs/heads/master
2021-07-10T22:01:27.716481
2020-07-02T19:16:16
2020-07-02T19:16:16
152,405,037
2
0
null
null
null
null
UTF-8
C++
false
false
5,922
cpp
#include <bits/stdc++.h> using namespace std; /*Like set but has some more functionality: 1. Find kth smallest minimum 2. Find the index of an element Does these in O(log n) time How to use: ordered_set<type> ss; ss.insert(val); ss.insert(val); ss.insert(val); cout<<ss.ordere_of_key(val)<<endl; // number of elements in ss less than val cout<<*ss.find_by_order(k)<<endl; // prints the kth smallest number in s (0-based) */ /*#include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace __gnu_pbds; template <typename T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>; */ #define ms(s, n) memset(s, n, sizeof(s)) #define FOR(i, a, b) for (int i = (a); i < (b); ++i) #define FORd(i, a, b) for (int i = (a) - 1; i >= (b); --i) #define FORall(it, a) for (__typeof((a).begin()) it = (a).begin(); it != (a).end(); it++) #define mapHas(t, x) (t.find(x) != t.end()) //for map #define vectHas(v,x) (find(v.begin(),v.end(),x)!=v.end()) //for vector #define setHas(t,x) (t.count(x)!=0) #define pb push_back #define pf push_front #define mp make_pair #define fi first #define se second #define prec(n) fixed<<setprecision(n) //bit manipulation #define bit(n, i) (((n) >> (i)) & 1) //check bit #define setBit(n,i) (n|=(1<<i)) //set i'th bit of n #define checkBit(n,i) (n &(1<<i)) //check i'th bit of n #define resetBit(n,i) (n&=~(1<<i)) //reset i'th bit of n #define toggleBit(n,i) (n^=(1<<i)) //toggle i'th bit of n #define lsOnBit(n) (n&(-n)) //get lsb of n that is on #define turnOnAll(n) ((1<<n) - 1) //turn on size of n bits from right (kind of opposite of clear) #define remainder(s,n) (s & (n-1)) //remainder of s when divided by n, where n is power of 2 #define powerOfTwo(s) ((s & (s-1)) == 0) //determine if s is a power of 2 #define turnOffLastSetBit(s) (s=(s&(s-1))) #define turnOnLastZero(s) (s=(s|(s+1))) #define numLeadZero(s) __builtin_clz(s) #define numTrailZero(s) __builtin_ctz(s) #define numOnes(s) __builtin_popcount(s) #define parity(s) __builtin_parity(s) //shorthands typedef long long ll; typedef unsigned long long ull; typedef long double ld; typedef pair<int, int> pii; typedef pair<char, int> pci; typedef pair<int, char> pic; typedef pair<int, string> pis; typedef pair<string, int> psi; typedef pair<string, string> pss; const int MOD = (int) 1e9 + 7; const int FFTMOD = 1007681537; const int INF = (int) 1e9; const ll LINF = (ll) 1e18; const ld PI = acos((ld) -1); const ld EPS = 1e-6; //some common functions // inline ll gcd(ll a, ll b) {ll r; while (b) {r = a % b; a = b; b = r;} return a;} //gcd // inline ll lcm(ll a, ll b) {return a / gcd(a, b) * b;} //lcm // inline ll fpow(ll n, ll k, int p = MOD) {ll r = 1; for (; k; k >>= 1) {if (k & 1) r = r * n % p; n = n * n % p;} return r;} //nth power // inline void addmod(int& a, int val, int p = MOD) {if ((a = (a + val)) >= p) a -= p;} //add mod // inline void submod(int& a, int val, int p = MOD) {if ((a = (a - val)) < 0) a += p;} //sub mod // inline ll isqrt(ll k) {ll r = sqrt(k) + 1; while (r * r > k) r--; return r;} //check sqrt // inline ll icbrt(ll k) {ll r = cbrt(k) + 1; while (r * r * r > k) r--; return r;} //check cbrt //some helper functions for input processing // inline void tokenize(string str,vector<string> &tokens, string delim){ tokens.clear();size_t s = str.find_first_not_of(delim), e=s; while(s!=std::string::npos){e=str.find(delim,s);tokens.push_back(str.substr(s,e-s));s=str.find_first_not_of(delim,e);}} // inline bool isPalindrome(string str){for(int i=0;i<(str.size())/2;i++)if(str[i]!=str[str.size()-1-i])return false;return true;} // inline string customStrip(string in,string delim){string ret = "";for(int i=0;i<in.size();i++){if(delim.find(in[i],0)==std::string::npos)ret+=in[i];}return ret;} // inline string commaSeparate(long long value){string numWithCommas = to_string(value);int insertPosition = numWithCommas.length() - 3;while (insertPosition > 0) {numWithCommas.insert(insertPosition, ",");insertPosition-=3;}return numWithCommas;} // inline string strip(string s){int i=0;while(i<s.size()){if(isspace(s[i]))i++;else break;}s.erase(0,i);i = s.size()-1;while(i>=0){if(isspace(s[i]))i--;else break;}s.erase(i+1,s.size()-i-1);return s;} //errors #define db(x) cerr << #x << " = " << (x) << "\n"; #define endl '\n' /* //double comparisons and ops //d1==d2 inline bool EQ(double d1,double d2){return fabs(d1-d2)<EPS;} //d1>d2 inline bool GT(double d1,double d2){return (d1-d2)>EPS;} //d1<d2 inline bool LT(double d1,double d2){return GT(d2,d1);} //d1>=d2 inline bool GTE(double d1, double d2){return GT(d1,d2)||EQ(d1,d2);} //d1<=d2 inline bool LTE(double d1,double d2){return LT(d1,d2)||EQ(d1,d2);} //numPosAfterDecimal={10,100,1000,10000,....} //Roundoff(3.56985,10000) = 3.5699 inline double Roundoff(double val,int numPosAfterDecimal){return round(val*numPosAfterDecimal)/numPosAfterDecimal;} */ /*//4 directional movement int dx[]={1,0,-1,0}; int dy[]={0,1,0,-1};*/ #define MAX 12 int grid[4][4]; void togglePos(int i, int j) { // cout<<i<<" "<<j<<endl; if(i>=0&&j<3){ grid[i][j]=1-grid[i][j]; } } int main() { /*The standard C++ I/O functions (cin/cout) flush the buffer on every next I/O call which unncecessarily increase I/O time. For enhancing C++ I/O speed,you can either use C’s standard I/O function (scanf/printf) instead of (cin/cout) or you can write the following lines in main function.*/ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); freopen("input.txt", "r", stdin); // freopen("output.txt", "w", stdout); FOR(i,0,3) FOR(j,0,3) grid[i][j]=1; // cout<<grid[0][0]<<endl; int tmp; FOR(i,0,3) FOR(j,0,3){ cin>>tmp; if(tmp%2){ togglePos(i,j); togglePos(i-1,j); togglePos(i,j-1); togglePos(i+1,j); togglePos(i,j+1); } } FOR(i,0,3){ FOR(j,0,3) cout<<grid[i][j]; cout<<endl; } return 0; }
[ "mahmudulhasan947@gmail.com" ]
mahmudulhasan947@gmail.com
859b32fbcca7b7b632fa59f41117f0eb83da016f
4382d8e976816ba2be05621b3566df9d5be9c0a6
/OpenHome/Net/Bindings/Cpp/ControlPoint/Proxies/CpUpnpOrgContentDirectory2Std.cpp
c7308b8a2e53a13476b5032d61c226608331b454
[ "MIT" ]
permissive
openhome/ohNetGenerated
f9e9fc591d52c1a2ed69c676046af4e931c22f7c
05270d36e77f97a2ffd0f9eb44249a908c333d71
refs/heads/master
2020-12-13T18:39:35.802161
2018-07-12T13:09:23
2018-07-12T13:09:23
22,726,722
1
6
null
2016-10-17T12:43:53
2014-08-07T15:38:18
C++
UTF-8
C++
false
false
56,032
cpp
#include "CpUpnpOrgContentDirectory2.h" #include <OpenHome/Net/Core/CpProxy.h> #include <OpenHome/Net/Private/CpiService.h> #include <OpenHome/Private/Thread.h> #include <OpenHome/Net/Private/AsyncPrivate.h> #include <OpenHome/Buffer.h> #include <OpenHome/Net/Cpp/CpDevice.h> #include <OpenHome/Net/Private/CpiDevice.h> #include <string> using namespace OpenHome; using namespace OpenHome::Net; class SyncGetSearchCapabilitiesUpnpOrgContentDirectory2Cpp : public SyncProxyAction { public: SyncGetSearchCapabilitiesUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy, std::string& aSearchCaps); virtual void CompleteRequest(IAsync& aAsync); virtual ~SyncGetSearchCapabilitiesUpnpOrgContentDirectory2Cpp() {} private: CpProxyUpnpOrgContentDirectory2Cpp& iService; std::string& iSearchCaps; }; SyncGetSearchCapabilitiesUpnpOrgContentDirectory2Cpp::SyncGetSearchCapabilitiesUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy, std::string& aSearchCaps) : iService(aProxy) , iSearchCaps(aSearchCaps) { } void SyncGetSearchCapabilitiesUpnpOrgContentDirectory2Cpp::CompleteRequest(IAsync& aAsync) { iService.EndGetSearchCapabilities(aAsync, iSearchCaps); } class SyncGetSortCapabilitiesUpnpOrgContentDirectory2Cpp : public SyncProxyAction { public: SyncGetSortCapabilitiesUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy, std::string& aSortCaps); virtual void CompleteRequest(IAsync& aAsync); virtual ~SyncGetSortCapabilitiesUpnpOrgContentDirectory2Cpp() {} private: CpProxyUpnpOrgContentDirectory2Cpp& iService; std::string& iSortCaps; }; SyncGetSortCapabilitiesUpnpOrgContentDirectory2Cpp::SyncGetSortCapabilitiesUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy, std::string& aSortCaps) : iService(aProxy) , iSortCaps(aSortCaps) { } void SyncGetSortCapabilitiesUpnpOrgContentDirectory2Cpp::CompleteRequest(IAsync& aAsync) { iService.EndGetSortCapabilities(aAsync, iSortCaps); } class SyncGetSortExtensionCapabilitiesUpnpOrgContentDirectory2Cpp : public SyncProxyAction { public: SyncGetSortExtensionCapabilitiesUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy, std::string& aSortExtensionCaps); virtual void CompleteRequest(IAsync& aAsync); virtual ~SyncGetSortExtensionCapabilitiesUpnpOrgContentDirectory2Cpp() {} private: CpProxyUpnpOrgContentDirectory2Cpp& iService; std::string& iSortExtensionCaps; }; SyncGetSortExtensionCapabilitiesUpnpOrgContentDirectory2Cpp::SyncGetSortExtensionCapabilitiesUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy, std::string& aSortExtensionCaps) : iService(aProxy) , iSortExtensionCaps(aSortExtensionCaps) { } void SyncGetSortExtensionCapabilitiesUpnpOrgContentDirectory2Cpp::CompleteRequest(IAsync& aAsync) { iService.EndGetSortExtensionCapabilities(aAsync, iSortExtensionCaps); } class SyncGetFeatureListUpnpOrgContentDirectory2Cpp : public SyncProxyAction { public: SyncGetFeatureListUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy, std::string& aFeatureList); virtual void CompleteRequest(IAsync& aAsync); virtual ~SyncGetFeatureListUpnpOrgContentDirectory2Cpp() {} private: CpProxyUpnpOrgContentDirectory2Cpp& iService; std::string& iFeatureList; }; SyncGetFeatureListUpnpOrgContentDirectory2Cpp::SyncGetFeatureListUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy, std::string& aFeatureList) : iService(aProxy) , iFeatureList(aFeatureList) { } void SyncGetFeatureListUpnpOrgContentDirectory2Cpp::CompleteRequest(IAsync& aAsync) { iService.EndGetFeatureList(aAsync, iFeatureList); } class SyncGetSystemUpdateIDUpnpOrgContentDirectory2Cpp : public SyncProxyAction { public: SyncGetSystemUpdateIDUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy, uint32_t& aId); virtual void CompleteRequest(IAsync& aAsync); virtual ~SyncGetSystemUpdateIDUpnpOrgContentDirectory2Cpp() {} private: CpProxyUpnpOrgContentDirectory2Cpp& iService; uint32_t& iId; }; SyncGetSystemUpdateIDUpnpOrgContentDirectory2Cpp::SyncGetSystemUpdateIDUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy, uint32_t& aId) : iService(aProxy) , iId(aId) { } void SyncGetSystemUpdateIDUpnpOrgContentDirectory2Cpp::CompleteRequest(IAsync& aAsync) { iService.EndGetSystemUpdateID(aAsync, iId); } class SyncBrowseUpnpOrgContentDirectory2Cpp : public SyncProxyAction { public: SyncBrowseUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy, std::string& aResult, uint32_t& aNumberReturned, uint32_t& aTotalMatches, uint32_t& aUpdateID); virtual void CompleteRequest(IAsync& aAsync); virtual ~SyncBrowseUpnpOrgContentDirectory2Cpp() {} private: CpProxyUpnpOrgContentDirectory2Cpp& iService; std::string& iResult; uint32_t& iNumberReturned; uint32_t& iTotalMatches; uint32_t& iUpdateID; }; SyncBrowseUpnpOrgContentDirectory2Cpp::SyncBrowseUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy, std::string& aResult, uint32_t& aNumberReturned, uint32_t& aTotalMatches, uint32_t& aUpdateID) : iService(aProxy) , iResult(aResult) , iNumberReturned(aNumberReturned) , iTotalMatches(aTotalMatches) , iUpdateID(aUpdateID) { } void SyncBrowseUpnpOrgContentDirectory2Cpp::CompleteRequest(IAsync& aAsync) { iService.EndBrowse(aAsync, iResult, iNumberReturned, iTotalMatches, iUpdateID); } class SyncSearchUpnpOrgContentDirectory2Cpp : public SyncProxyAction { public: SyncSearchUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy, std::string& aResult, uint32_t& aNumberReturned, uint32_t& aTotalMatches, uint32_t& aUpdateID); virtual void CompleteRequest(IAsync& aAsync); virtual ~SyncSearchUpnpOrgContentDirectory2Cpp() {} private: CpProxyUpnpOrgContentDirectory2Cpp& iService; std::string& iResult; uint32_t& iNumberReturned; uint32_t& iTotalMatches; uint32_t& iUpdateID; }; SyncSearchUpnpOrgContentDirectory2Cpp::SyncSearchUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy, std::string& aResult, uint32_t& aNumberReturned, uint32_t& aTotalMatches, uint32_t& aUpdateID) : iService(aProxy) , iResult(aResult) , iNumberReturned(aNumberReturned) , iTotalMatches(aTotalMatches) , iUpdateID(aUpdateID) { } void SyncSearchUpnpOrgContentDirectory2Cpp::CompleteRequest(IAsync& aAsync) { iService.EndSearch(aAsync, iResult, iNumberReturned, iTotalMatches, iUpdateID); } class SyncCreateObjectUpnpOrgContentDirectory2Cpp : public SyncProxyAction { public: SyncCreateObjectUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy, std::string& aObjectID, std::string& aResult); virtual void CompleteRequest(IAsync& aAsync); virtual ~SyncCreateObjectUpnpOrgContentDirectory2Cpp() {} private: CpProxyUpnpOrgContentDirectory2Cpp& iService; std::string& iObjectID; std::string& iResult; }; SyncCreateObjectUpnpOrgContentDirectory2Cpp::SyncCreateObjectUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy, std::string& aObjectID, std::string& aResult) : iService(aProxy) , iObjectID(aObjectID) , iResult(aResult) { } void SyncCreateObjectUpnpOrgContentDirectory2Cpp::CompleteRequest(IAsync& aAsync) { iService.EndCreateObject(aAsync, iObjectID, iResult); } class SyncDestroyObjectUpnpOrgContentDirectory2Cpp : public SyncProxyAction { public: SyncDestroyObjectUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy); virtual void CompleteRequest(IAsync& aAsync); virtual ~SyncDestroyObjectUpnpOrgContentDirectory2Cpp() {} private: CpProxyUpnpOrgContentDirectory2Cpp& iService; }; SyncDestroyObjectUpnpOrgContentDirectory2Cpp::SyncDestroyObjectUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy) : iService(aProxy) { } void SyncDestroyObjectUpnpOrgContentDirectory2Cpp::CompleteRequest(IAsync& aAsync) { iService.EndDestroyObject(aAsync); } class SyncUpdateObjectUpnpOrgContentDirectory2Cpp : public SyncProxyAction { public: SyncUpdateObjectUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy); virtual void CompleteRequest(IAsync& aAsync); virtual ~SyncUpdateObjectUpnpOrgContentDirectory2Cpp() {} private: CpProxyUpnpOrgContentDirectory2Cpp& iService; }; SyncUpdateObjectUpnpOrgContentDirectory2Cpp::SyncUpdateObjectUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy) : iService(aProxy) { } void SyncUpdateObjectUpnpOrgContentDirectory2Cpp::CompleteRequest(IAsync& aAsync) { iService.EndUpdateObject(aAsync); } class SyncMoveObjectUpnpOrgContentDirectory2Cpp : public SyncProxyAction { public: SyncMoveObjectUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy, std::string& aNewObjectID); virtual void CompleteRequest(IAsync& aAsync); virtual ~SyncMoveObjectUpnpOrgContentDirectory2Cpp() {} private: CpProxyUpnpOrgContentDirectory2Cpp& iService; std::string& iNewObjectID; }; SyncMoveObjectUpnpOrgContentDirectory2Cpp::SyncMoveObjectUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy, std::string& aNewObjectID) : iService(aProxy) , iNewObjectID(aNewObjectID) { } void SyncMoveObjectUpnpOrgContentDirectory2Cpp::CompleteRequest(IAsync& aAsync) { iService.EndMoveObject(aAsync, iNewObjectID); } class SyncImportResourceUpnpOrgContentDirectory2Cpp : public SyncProxyAction { public: SyncImportResourceUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy, uint32_t& aTransferID); virtual void CompleteRequest(IAsync& aAsync); virtual ~SyncImportResourceUpnpOrgContentDirectory2Cpp() {} private: CpProxyUpnpOrgContentDirectory2Cpp& iService; uint32_t& iTransferID; }; SyncImportResourceUpnpOrgContentDirectory2Cpp::SyncImportResourceUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy, uint32_t& aTransferID) : iService(aProxy) , iTransferID(aTransferID) { } void SyncImportResourceUpnpOrgContentDirectory2Cpp::CompleteRequest(IAsync& aAsync) { iService.EndImportResource(aAsync, iTransferID); } class SyncExportResourceUpnpOrgContentDirectory2Cpp : public SyncProxyAction { public: SyncExportResourceUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy, uint32_t& aTransferID); virtual void CompleteRequest(IAsync& aAsync); virtual ~SyncExportResourceUpnpOrgContentDirectory2Cpp() {} private: CpProxyUpnpOrgContentDirectory2Cpp& iService; uint32_t& iTransferID; }; SyncExportResourceUpnpOrgContentDirectory2Cpp::SyncExportResourceUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy, uint32_t& aTransferID) : iService(aProxy) , iTransferID(aTransferID) { } void SyncExportResourceUpnpOrgContentDirectory2Cpp::CompleteRequest(IAsync& aAsync) { iService.EndExportResource(aAsync, iTransferID); } class SyncDeleteResourceUpnpOrgContentDirectory2Cpp : public SyncProxyAction { public: SyncDeleteResourceUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy); virtual void CompleteRequest(IAsync& aAsync); virtual ~SyncDeleteResourceUpnpOrgContentDirectory2Cpp() {} private: CpProxyUpnpOrgContentDirectory2Cpp& iService; }; SyncDeleteResourceUpnpOrgContentDirectory2Cpp::SyncDeleteResourceUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy) : iService(aProxy) { } void SyncDeleteResourceUpnpOrgContentDirectory2Cpp::CompleteRequest(IAsync& aAsync) { iService.EndDeleteResource(aAsync); } class SyncStopTransferResourceUpnpOrgContentDirectory2Cpp : public SyncProxyAction { public: SyncStopTransferResourceUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy); virtual void CompleteRequest(IAsync& aAsync); virtual ~SyncStopTransferResourceUpnpOrgContentDirectory2Cpp() {} private: CpProxyUpnpOrgContentDirectory2Cpp& iService; }; SyncStopTransferResourceUpnpOrgContentDirectory2Cpp::SyncStopTransferResourceUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy) : iService(aProxy) { } void SyncStopTransferResourceUpnpOrgContentDirectory2Cpp::CompleteRequest(IAsync& aAsync) { iService.EndStopTransferResource(aAsync); } class SyncGetTransferProgressUpnpOrgContentDirectory2Cpp : public SyncProxyAction { public: SyncGetTransferProgressUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy, std::string& aTransferStatus, std::string& aTransferLength, std::string& aTransferTotal); virtual void CompleteRequest(IAsync& aAsync); virtual ~SyncGetTransferProgressUpnpOrgContentDirectory2Cpp() {} private: CpProxyUpnpOrgContentDirectory2Cpp& iService; std::string& iTransferStatus; std::string& iTransferLength; std::string& iTransferTotal; }; SyncGetTransferProgressUpnpOrgContentDirectory2Cpp::SyncGetTransferProgressUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy, std::string& aTransferStatus, std::string& aTransferLength, std::string& aTransferTotal) : iService(aProxy) , iTransferStatus(aTransferStatus) , iTransferLength(aTransferLength) , iTransferTotal(aTransferTotal) { } void SyncGetTransferProgressUpnpOrgContentDirectory2Cpp::CompleteRequest(IAsync& aAsync) { iService.EndGetTransferProgress(aAsync, iTransferStatus, iTransferLength, iTransferTotal); } class SyncCreateReferenceUpnpOrgContentDirectory2Cpp : public SyncProxyAction { public: SyncCreateReferenceUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy, std::string& aNewID); virtual void CompleteRequest(IAsync& aAsync); virtual ~SyncCreateReferenceUpnpOrgContentDirectory2Cpp() {} private: CpProxyUpnpOrgContentDirectory2Cpp& iService; std::string& iNewID; }; SyncCreateReferenceUpnpOrgContentDirectory2Cpp::SyncCreateReferenceUpnpOrgContentDirectory2Cpp(CpProxyUpnpOrgContentDirectory2Cpp& aProxy, std::string& aNewID) : iService(aProxy) , iNewID(aNewID) { } void SyncCreateReferenceUpnpOrgContentDirectory2Cpp::CompleteRequest(IAsync& aAsync) { iService.EndCreateReference(aAsync, iNewID); } CpProxyUpnpOrgContentDirectory2Cpp::CpProxyUpnpOrgContentDirectory2Cpp(CpDeviceCpp& aDevice) : iCpProxy("schemas-upnp-org", "ContentDirectory", 2, aDevice.Device()) { OpenHome::Net::Parameter* param; TChar** allowedValues; TUint index; iActionGetSearchCapabilities = new Action("GetSearchCapabilities"); param = new OpenHome::Net::ParameterString("SearchCaps"); iActionGetSearchCapabilities->AddOutputParameter(param); iActionGetSortCapabilities = new Action("GetSortCapabilities"); param = new OpenHome::Net::ParameterString("SortCaps"); iActionGetSortCapabilities->AddOutputParameter(param); iActionGetSortExtensionCapabilities = new Action("GetSortExtensionCapabilities"); param = new OpenHome::Net::ParameterString("SortExtensionCaps"); iActionGetSortExtensionCapabilities->AddOutputParameter(param); iActionGetFeatureList = new Action("GetFeatureList"); param = new OpenHome::Net::ParameterString("FeatureList"); iActionGetFeatureList->AddOutputParameter(param); iActionGetSystemUpdateID = new Action("GetSystemUpdateID"); param = new OpenHome::Net::ParameterUint("Id"); iActionGetSystemUpdateID->AddOutputParameter(param); iActionBrowse = new Action("Browse"); param = new OpenHome::Net::ParameterString("ObjectID"); iActionBrowse->AddInputParameter(param); index = 0; allowedValues = new TChar*[2]; allowedValues[index++] = (TChar*)"BrowseMetadata"; allowedValues[index++] = (TChar*)"BrowseDirectChildren"; param = new OpenHome::Net::ParameterString("BrowseFlag", allowedValues, 2); iActionBrowse->AddInputParameter(param); delete[] allowedValues; param = new OpenHome::Net::ParameterString("Filter"); iActionBrowse->AddInputParameter(param); param = new OpenHome::Net::ParameterUint("StartingIndex"); iActionBrowse->AddInputParameter(param); param = new OpenHome::Net::ParameterUint("RequestedCount"); iActionBrowse->AddInputParameter(param); param = new OpenHome::Net::ParameterString("SortCriteria"); iActionBrowse->AddInputParameter(param); param = new OpenHome::Net::ParameterString("Result"); iActionBrowse->AddOutputParameter(param); param = new OpenHome::Net::ParameterUint("NumberReturned"); iActionBrowse->AddOutputParameter(param); param = new OpenHome::Net::ParameterUint("TotalMatches"); iActionBrowse->AddOutputParameter(param); param = new OpenHome::Net::ParameterUint("UpdateID"); iActionBrowse->AddOutputParameter(param); iActionSearch = new Action("Search"); param = new OpenHome::Net::ParameterString("ContainerID"); iActionSearch->AddInputParameter(param); param = new OpenHome::Net::ParameterString("SearchCriteria"); iActionSearch->AddInputParameter(param); param = new OpenHome::Net::ParameterString("Filter"); iActionSearch->AddInputParameter(param); param = new OpenHome::Net::ParameterUint("StartingIndex"); iActionSearch->AddInputParameter(param); param = new OpenHome::Net::ParameterUint("RequestedCount"); iActionSearch->AddInputParameter(param); param = new OpenHome::Net::ParameterString("SortCriteria"); iActionSearch->AddInputParameter(param); param = new OpenHome::Net::ParameterString("Result"); iActionSearch->AddOutputParameter(param); param = new OpenHome::Net::ParameterUint("NumberReturned"); iActionSearch->AddOutputParameter(param); param = new OpenHome::Net::ParameterUint("TotalMatches"); iActionSearch->AddOutputParameter(param); param = new OpenHome::Net::ParameterUint("UpdateID"); iActionSearch->AddOutputParameter(param); iActionCreateObject = new Action("CreateObject"); param = new OpenHome::Net::ParameterString("ContainerID"); iActionCreateObject->AddInputParameter(param); param = new OpenHome::Net::ParameterString("Elements"); iActionCreateObject->AddInputParameter(param); param = new OpenHome::Net::ParameterString("ObjectID"); iActionCreateObject->AddOutputParameter(param); param = new OpenHome::Net::ParameterString("Result"); iActionCreateObject->AddOutputParameter(param); iActionDestroyObject = new Action("DestroyObject"); param = new OpenHome::Net::ParameterString("ObjectID"); iActionDestroyObject->AddInputParameter(param); iActionUpdateObject = new Action("UpdateObject"); param = new OpenHome::Net::ParameterString("ObjectID"); iActionUpdateObject->AddInputParameter(param); param = new OpenHome::Net::ParameterString("CurrentTagValue"); iActionUpdateObject->AddInputParameter(param); param = new OpenHome::Net::ParameterString("NewTagValue"); iActionUpdateObject->AddInputParameter(param); iActionMoveObject = new Action("MoveObject"); param = new OpenHome::Net::ParameterString("ObjectID"); iActionMoveObject->AddInputParameter(param); param = new OpenHome::Net::ParameterString("NewParentID"); iActionMoveObject->AddInputParameter(param); param = new OpenHome::Net::ParameterString("NewObjectID"); iActionMoveObject->AddOutputParameter(param); iActionImportResource = new Action("ImportResource"); param = new OpenHome::Net::ParameterString("SourceURI"); iActionImportResource->AddInputParameter(param); param = new OpenHome::Net::ParameterString("DestinationURI"); iActionImportResource->AddInputParameter(param); param = new OpenHome::Net::ParameterUint("TransferID"); iActionImportResource->AddOutputParameter(param); iActionExportResource = new Action("ExportResource"); param = new OpenHome::Net::ParameterString("SourceURI"); iActionExportResource->AddInputParameter(param); param = new OpenHome::Net::ParameterString("DestinationURI"); iActionExportResource->AddInputParameter(param); param = new OpenHome::Net::ParameterUint("TransferID"); iActionExportResource->AddOutputParameter(param); iActionDeleteResource = new Action("DeleteResource"); param = new OpenHome::Net::ParameterString("ResourceURI"); iActionDeleteResource->AddInputParameter(param); iActionStopTransferResource = new Action("StopTransferResource"); param = new OpenHome::Net::ParameterUint("TransferID"); iActionStopTransferResource->AddInputParameter(param); iActionGetTransferProgress = new Action("GetTransferProgress"); param = new OpenHome::Net::ParameterUint("TransferID"); iActionGetTransferProgress->AddInputParameter(param); index = 0; allowedValues = new TChar*[4]; allowedValues[index++] = (TChar*)"COMPLETED"; allowedValues[index++] = (TChar*)"ERROR"; allowedValues[index++] = (TChar*)"IN_PROGRESS"; allowedValues[index++] = (TChar*)"STOPPED"; param = new OpenHome::Net::ParameterString("TransferStatus", allowedValues, 4); iActionGetTransferProgress->AddOutputParameter(param); delete[] allowedValues; param = new OpenHome::Net::ParameterString("TransferLength"); iActionGetTransferProgress->AddOutputParameter(param); param = new OpenHome::Net::ParameterString("TransferTotal"); iActionGetTransferProgress->AddOutputParameter(param); iActionCreateReference = new Action("CreateReference"); param = new OpenHome::Net::ParameterString("ContainerID"); iActionCreateReference->AddInputParameter(param); param = new OpenHome::Net::ParameterString("ObjectID"); iActionCreateReference->AddInputParameter(param); param = new OpenHome::Net::ParameterString("NewID"); iActionCreateReference->AddOutputParameter(param); Functor functor; functor = MakeFunctor(*this, &CpProxyUpnpOrgContentDirectory2Cpp::SystemUpdateIDPropertyChanged); iSystemUpdateID = new PropertyUint("SystemUpdateID", functor); AddProperty(iSystemUpdateID); functor = MakeFunctor(*this, &CpProxyUpnpOrgContentDirectory2Cpp::ContainerUpdateIDsPropertyChanged); iContainerUpdateIDs = new PropertyString("ContainerUpdateIDs", functor); AddProperty(iContainerUpdateIDs); functor = MakeFunctor(*this, &CpProxyUpnpOrgContentDirectory2Cpp::TransferIDsPropertyChanged); iTransferIDs = new PropertyString("TransferIDs", functor); AddProperty(iTransferIDs); } CpProxyUpnpOrgContentDirectory2Cpp::~CpProxyUpnpOrgContentDirectory2Cpp() { DestroyService(); delete iActionGetSearchCapabilities; delete iActionGetSortCapabilities; delete iActionGetSortExtensionCapabilities; delete iActionGetFeatureList; delete iActionGetSystemUpdateID; delete iActionBrowse; delete iActionSearch; delete iActionCreateObject; delete iActionDestroyObject; delete iActionUpdateObject; delete iActionMoveObject; delete iActionImportResource; delete iActionExportResource; delete iActionDeleteResource; delete iActionStopTransferResource; delete iActionGetTransferProgress; delete iActionCreateReference; } void CpProxyUpnpOrgContentDirectory2Cpp::SyncGetSearchCapabilities(std::string& aSearchCaps) { SyncGetSearchCapabilitiesUpnpOrgContentDirectory2Cpp sync(*this, aSearchCaps); BeginGetSearchCapabilities(sync.Functor()); sync.Wait(); } void CpProxyUpnpOrgContentDirectory2Cpp::BeginGetSearchCapabilities(FunctorAsync& aFunctor) { Invocation* invocation = iCpProxy.GetService().Invocation(*iActionGetSearchCapabilities, aFunctor); TUint outIndex = 0; const Action::VectorParameters& outParams = iActionGetSearchCapabilities->OutputParameters(); invocation->AddOutput(new ArgumentString(*outParams[outIndex++])); iCpProxy.GetInvocable().InvokeAction(*invocation); } void CpProxyUpnpOrgContentDirectory2Cpp::EndGetSearchCapabilities(IAsync& aAsync, std::string& aSearchCaps) { ASSERT(((Async&)aAsync).Type() == Async::eInvocation); Invocation& invocation = (Invocation&)aAsync; ASSERT(invocation.Action().Name() == Brn("GetSearchCapabilities")); Error::ELevel level; TUint code; const TChar* ignore; if (invocation.Error(level, code, ignore)) { THROW_PROXYERROR(level, code); } TUint index = 0; { const Brx& val = ((ArgumentString*)invocation.OutputArguments()[index++])->Value(); aSearchCaps.assign((const char*)val.Ptr(), val.Bytes()); } } void CpProxyUpnpOrgContentDirectory2Cpp::SyncGetSortCapabilities(std::string& aSortCaps) { SyncGetSortCapabilitiesUpnpOrgContentDirectory2Cpp sync(*this, aSortCaps); BeginGetSortCapabilities(sync.Functor()); sync.Wait(); } void CpProxyUpnpOrgContentDirectory2Cpp::BeginGetSortCapabilities(FunctorAsync& aFunctor) { Invocation* invocation = iCpProxy.GetService().Invocation(*iActionGetSortCapabilities, aFunctor); TUint outIndex = 0; const Action::VectorParameters& outParams = iActionGetSortCapabilities->OutputParameters(); invocation->AddOutput(new ArgumentString(*outParams[outIndex++])); iCpProxy.GetInvocable().InvokeAction(*invocation); } void CpProxyUpnpOrgContentDirectory2Cpp::EndGetSortCapabilities(IAsync& aAsync, std::string& aSortCaps) { ASSERT(((Async&)aAsync).Type() == Async::eInvocation); Invocation& invocation = (Invocation&)aAsync; ASSERT(invocation.Action().Name() == Brn("GetSortCapabilities")); Error::ELevel level; TUint code; const TChar* ignore; if (invocation.Error(level, code, ignore)) { THROW_PROXYERROR(level, code); } TUint index = 0; { const Brx& val = ((ArgumentString*)invocation.OutputArguments()[index++])->Value(); aSortCaps.assign((const char*)val.Ptr(), val.Bytes()); } } void CpProxyUpnpOrgContentDirectory2Cpp::SyncGetSortExtensionCapabilities(std::string& aSortExtensionCaps) { SyncGetSortExtensionCapabilitiesUpnpOrgContentDirectory2Cpp sync(*this, aSortExtensionCaps); BeginGetSortExtensionCapabilities(sync.Functor()); sync.Wait(); } void CpProxyUpnpOrgContentDirectory2Cpp::BeginGetSortExtensionCapabilities(FunctorAsync& aFunctor) { Invocation* invocation = iCpProxy.GetService().Invocation(*iActionGetSortExtensionCapabilities, aFunctor); TUint outIndex = 0; const Action::VectorParameters& outParams = iActionGetSortExtensionCapabilities->OutputParameters(); invocation->AddOutput(new ArgumentString(*outParams[outIndex++])); iCpProxy.GetInvocable().InvokeAction(*invocation); } void CpProxyUpnpOrgContentDirectory2Cpp::EndGetSortExtensionCapabilities(IAsync& aAsync, std::string& aSortExtensionCaps) { ASSERT(((Async&)aAsync).Type() == Async::eInvocation); Invocation& invocation = (Invocation&)aAsync; ASSERT(invocation.Action().Name() == Brn("GetSortExtensionCapabilities")); Error::ELevel level; TUint code; const TChar* ignore; if (invocation.Error(level, code, ignore)) { THROW_PROXYERROR(level, code); } TUint index = 0; { const Brx& val = ((ArgumentString*)invocation.OutputArguments()[index++])->Value(); aSortExtensionCaps.assign((const char*)val.Ptr(), val.Bytes()); } } void CpProxyUpnpOrgContentDirectory2Cpp::SyncGetFeatureList(std::string& aFeatureList) { SyncGetFeatureListUpnpOrgContentDirectory2Cpp sync(*this, aFeatureList); BeginGetFeatureList(sync.Functor()); sync.Wait(); } void CpProxyUpnpOrgContentDirectory2Cpp::BeginGetFeatureList(FunctorAsync& aFunctor) { Invocation* invocation = iCpProxy.GetService().Invocation(*iActionGetFeatureList, aFunctor); TUint outIndex = 0; const Action::VectorParameters& outParams = iActionGetFeatureList->OutputParameters(); invocation->AddOutput(new ArgumentString(*outParams[outIndex++])); iCpProxy.GetInvocable().InvokeAction(*invocation); } void CpProxyUpnpOrgContentDirectory2Cpp::EndGetFeatureList(IAsync& aAsync, std::string& aFeatureList) { ASSERT(((Async&)aAsync).Type() == Async::eInvocation); Invocation& invocation = (Invocation&)aAsync; ASSERT(invocation.Action().Name() == Brn("GetFeatureList")); Error::ELevel level; TUint code; const TChar* ignore; if (invocation.Error(level, code, ignore)) { THROW_PROXYERROR(level, code); } TUint index = 0; { const Brx& val = ((ArgumentString*)invocation.OutputArguments()[index++])->Value(); aFeatureList.assign((const char*)val.Ptr(), val.Bytes()); } } void CpProxyUpnpOrgContentDirectory2Cpp::SyncGetSystemUpdateID(uint32_t& aId) { SyncGetSystemUpdateIDUpnpOrgContentDirectory2Cpp sync(*this, aId); BeginGetSystemUpdateID(sync.Functor()); sync.Wait(); } void CpProxyUpnpOrgContentDirectory2Cpp::BeginGetSystemUpdateID(FunctorAsync& aFunctor) { Invocation* invocation = iCpProxy.GetService().Invocation(*iActionGetSystemUpdateID, aFunctor); TUint outIndex = 0; const Action::VectorParameters& outParams = iActionGetSystemUpdateID->OutputParameters(); invocation->AddOutput(new ArgumentUint(*outParams[outIndex++])); iCpProxy.GetInvocable().InvokeAction(*invocation); } void CpProxyUpnpOrgContentDirectory2Cpp::EndGetSystemUpdateID(IAsync& aAsync, uint32_t& aId) { ASSERT(((Async&)aAsync).Type() == Async::eInvocation); Invocation& invocation = (Invocation&)aAsync; ASSERT(invocation.Action().Name() == Brn("GetSystemUpdateID")); Error::ELevel level; TUint code; const TChar* ignore; if (invocation.Error(level, code, ignore)) { THROW_PROXYERROR(level, code); } TUint index = 0; aId = ((ArgumentUint*)invocation.OutputArguments()[index++])->Value(); } void CpProxyUpnpOrgContentDirectory2Cpp::SyncBrowse(const std::string& aObjectID, const std::string& aBrowseFlag, const std::string& aFilter, uint32_t aStartingIndex, uint32_t aRequestedCount, const std::string& aSortCriteria, std::string& aResult, uint32_t& aNumberReturned, uint32_t& aTotalMatches, uint32_t& aUpdateID) { SyncBrowseUpnpOrgContentDirectory2Cpp sync(*this, aResult, aNumberReturned, aTotalMatches, aUpdateID); BeginBrowse(aObjectID, aBrowseFlag, aFilter, aStartingIndex, aRequestedCount, aSortCriteria, sync.Functor()); sync.Wait(); } void CpProxyUpnpOrgContentDirectory2Cpp::BeginBrowse(const std::string& aObjectID, const std::string& aBrowseFlag, const std::string& aFilter, uint32_t aStartingIndex, uint32_t aRequestedCount, const std::string& aSortCriteria, FunctorAsync& aFunctor) { Invocation* invocation = iCpProxy.GetService().Invocation(*iActionBrowse, aFunctor); TUint inIndex = 0; const Action::VectorParameters& inParams = iActionBrowse->InputParameters(); { Brn buf((const TByte*)aObjectID.c_str(), (TUint)aObjectID.length()); invocation->AddInput(new ArgumentString(*inParams[inIndex++], buf)); } { Brn buf((const TByte*)aBrowseFlag.c_str(), (TUint)aBrowseFlag.length()); invocation->AddInput(new ArgumentString(*inParams[inIndex++], buf)); } { Brn buf((const TByte*)aFilter.c_str(), (TUint)aFilter.length()); invocation->AddInput(new ArgumentString(*inParams[inIndex++], buf)); } invocation->AddInput(new ArgumentUint(*inParams[inIndex++], aStartingIndex)); invocation->AddInput(new ArgumentUint(*inParams[inIndex++], aRequestedCount)); { Brn buf((const TByte*)aSortCriteria.c_str(), (TUint)aSortCriteria.length()); invocation->AddInput(new ArgumentString(*inParams[inIndex++], buf)); } TUint outIndex = 0; const Action::VectorParameters& outParams = iActionBrowse->OutputParameters(); invocation->AddOutput(new ArgumentString(*outParams[outIndex++])); invocation->AddOutput(new ArgumentUint(*outParams[outIndex++])); invocation->AddOutput(new ArgumentUint(*outParams[outIndex++])); invocation->AddOutput(new ArgumentUint(*outParams[outIndex++])); iCpProxy.GetInvocable().InvokeAction(*invocation); } void CpProxyUpnpOrgContentDirectory2Cpp::EndBrowse(IAsync& aAsync, std::string& aResult, uint32_t& aNumberReturned, uint32_t& aTotalMatches, uint32_t& aUpdateID) { ASSERT(((Async&)aAsync).Type() == Async::eInvocation); Invocation& invocation = (Invocation&)aAsync; ASSERT(invocation.Action().Name() == Brn("Browse")); Error::ELevel level; TUint code; const TChar* ignore; if (invocation.Error(level, code, ignore)) { THROW_PROXYERROR(level, code); } TUint index = 0; { const Brx& val = ((ArgumentString*)invocation.OutputArguments()[index++])->Value(); aResult.assign((const char*)val.Ptr(), val.Bytes()); } aNumberReturned = ((ArgumentUint*)invocation.OutputArguments()[index++])->Value(); aTotalMatches = ((ArgumentUint*)invocation.OutputArguments()[index++])->Value(); aUpdateID = ((ArgumentUint*)invocation.OutputArguments()[index++])->Value(); } void CpProxyUpnpOrgContentDirectory2Cpp::SyncSearch(const std::string& aContainerID, const std::string& aSearchCriteria, const std::string& aFilter, uint32_t aStartingIndex, uint32_t aRequestedCount, const std::string& aSortCriteria, std::string& aResult, uint32_t& aNumberReturned, uint32_t& aTotalMatches, uint32_t& aUpdateID) { SyncSearchUpnpOrgContentDirectory2Cpp sync(*this, aResult, aNumberReturned, aTotalMatches, aUpdateID); BeginSearch(aContainerID, aSearchCriteria, aFilter, aStartingIndex, aRequestedCount, aSortCriteria, sync.Functor()); sync.Wait(); } void CpProxyUpnpOrgContentDirectory2Cpp::BeginSearch(const std::string& aContainerID, const std::string& aSearchCriteria, const std::string& aFilter, uint32_t aStartingIndex, uint32_t aRequestedCount, const std::string& aSortCriteria, FunctorAsync& aFunctor) { Invocation* invocation = iCpProxy.GetService().Invocation(*iActionSearch, aFunctor); TUint inIndex = 0; const Action::VectorParameters& inParams = iActionSearch->InputParameters(); { Brn buf((const TByte*)aContainerID.c_str(), (TUint)aContainerID.length()); invocation->AddInput(new ArgumentString(*inParams[inIndex++], buf)); } { Brn buf((const TByte*)aSearchCriteria.c_str(), (TUint)aSearchCriteria.length()); invocation->AddInput(new ArgumentString(*inParams[inIndex++], buf)); } { Brn buf((const TByte*)aFilter.c_str(), (TUint)aFilter.length()); invocation->AddInput(new ArgumentString(*inParams[inIndex++], buf)); } invocation->AddInput(new ArgumentUint(*inParams[inIndex++], aStartingIndex)); invocation->AddInput(new ArgumentUint(*inParams[inIndex++], aRequestedCount)); { Brn buf((const TByte*)aSortCriteria.c_str(), (TUint)aSortCriteria.length()); invocation->AddInput(new ArgumentString(*inParams[inIndex++], buf)); } TUint outIndex = 0; const Action::VectorParameters& outParams = iActionSearch->OutputParameters(); invocation->AddOutput(new ArgumentString(*outParams[outIndex++])); invocation->AddOutput(new ArgumentUint(*outParams[outIndex++])); invocation->AddOutput(new ArgumentUint(*outParams[outIndex++])); invocation->AddOutput(new ArgumentUint(*outParams[outIndex++])); iCpProxy.GetInvocable().InvokeAction(*invocation); } void CpProxyUpnpOrgContentDirectory2Cpp::EndSearch(IAsync& aAsync, std::string& aResult, uint32_t& aNumberReturned, uint32_t& aTotalMatches, uint32_t& aUpdateID) { ASSERT(((Async&)aAsync).Type() == Async::eInvocation); Invocation& invocation = (Invocation&)aAsync; ASSERT(invocation.Action().Name() == Brn("Search")); Error::ELevel level; TUint code; const TChar* ignore; if (invocation.Error(level, code, ignore)) { THROW_PROXYERROR(level, code); } TUint index = 0; { const Brx& val = ((ArgumentString*)invocation.OutputArguments()[index++])->Value(); aResult.assign((const char*)val.Ptr(), val.Bytes()); } aNumberReturned = ((ArgumentUint*)invocation.OutputArguments()[index++])->Value(); aTotalMatches = ((ArgumentUint*)invocation.OutputArguments()[index++])->Value(); aUpdateID = ((ArgumentUint*)invocation.OutputArguments()[index++])->Value(); } void CpProxyUpnpOrgContentDirectory2Cpp::SyncCreateObject(const std::string& aContainerID, const std::string& aElements, std::string& aObjectID, std::string& aResult) { SyncCreateObjectUpnpOrgContentDirectory2Cpp sync(*this, aObjectID, aResult); BeginCreateObject(aContainerID, aElements, sync.Functor()); sync.Wait(); } void CpProxyUpnpOrgContentDirectory2Cpp::BeginCreateObject(const std::string& aContainerID, const std::string& aElements, FunctorAsync& aFunctor) { Invocation* invocation = iCpProxy.GetService().Invocation(*iActionCreateObject, aFunctor); TUint inIndex = 0; const Action::VectorParameters& inParams = iActionCreateObject->InputParameters(); { Brn buf((const TByte*)aContainerID.c_str(), (TUint)aContainerID.length()); invocation->AddInput(new ArgumentString(*inParams[inIndex++], buf)); } { Brn buf((const TByte*)aElements.c_str(), (TUint)aElements.length()); invocation->AddInput(new ArgumentString(*inParams[inIndex++], buf)); } TUint outIndex = 0; const Action::VectorParameters& outParams = iActionCreateObject->OutputParameters(); invocation->AddOutput(new ArgumentString(*outParams[outIndex++])); invocation->AddOutput(new ArgumentString(*outParams[outIndex++])); iCpProxy.GetInvocable().InvokeAction(*invocation); } void CpProxyUpnpOrgContentDirectory2Cpp::EndCreateObject(IAsync& aAsync, std::string& aObjectID, std::string& aResult) { ASSERT(((Async&)aAsync).Type() == Async::eInvocation); Invocation& invocation = (Invocation&)aAsync; ASSERT(invocation.Action().Name() == Brn("CreateObject")); Error::ELevel level; TUint code; const TChar* ignore; if (invocation.Error(level, code, ignore)) { THROW_PROXYERROR(level, code); } TUint index = 0; { const Brx& val = ((ArgumentString*)invocation.OutputArguments()[index++])->Value(); aObjectID.assign((const char*)val.Ptr(), val.Bytes()); } { const Brx& val = ((ArgumentString*)invocation.OutputArguments()[index++])->Value(); aResult.assign((const char*)val.Ptr(), val.Bytes()); } } void CpProxyUpnpOrgContentDirectory2Cpp::SyncDestroyObject(const std::string& aObjectID) { SyncDestroyObjectUpnpOrgContentDirectory2Cpp sync(*this); BeginDestroyObject(aObjectID, sync.Functor()); sync.Wait(); } void CpProxyUpnpOrgContentDirectory2Cpp::BeginDestroyObject(const std::string& aObjectID, FunctorAsync& aFunctor) { Invocation* invocation = iCpProxy.GetService().Invocation(*iActionDestroyObject, aFunctor); TUint inIndex = 0; const Action::VectorParameters& inParams = iActionDestroyObject->InputParameters(); { Brn buf((const TByte*)aObjectID.c_str(), (TUint)aObjectID.length()); invocation->AddInput(new ArgumentString(*inParams[inIndex++], buf)); } iCpProxy.GetInvocable().InvokeAction(*invocation); } void CpProxyUpnpOrgContentDirectory2Cpp::EndDestroyObject(IAsync& aAsync) { ASSERT(((Async&)aAsync).Type() == Async::eInvocation); Invocation& invocation = (Invocation&)aAsync; ASSERT(invocation.Action().Name() == Brn("DestroyObject")); Error::ELevel level; TUint code; const TChar* ignore; if (invocation.Error(level, code, ignore)) { THROW_PROXYERROR(level, code); } } void CpProxyUpnpOrgContentDirectory2Cpp::SyncUpdateObject(const std::string& aObjectID, const std::string& aCurrentTagValue, const std::string& aNewTagValue) { SyncUpdateObjectUpnpOrgContentDirectory2Cpp sync(*this); BeginUpdateObject(aObjectID, aCurrentTagValue, aNewTagValue, sync.Functor()); sync.Wait(); } void CpProxyUpnpOrgContentDirectory2Cpp::BeginUpdateObject(const std::string& aObjectID, const std::string& aCurrentTagValue, const std::string& aNewTagValue, FunctorAsync& aFunctor) { Invocation* invocation = iCpProxy.GetService().Invocation(*iActionUpdateObject, aFunctor); TUint inIndex = 0; const Action::VectorParameters& inParams = iActionUpdateObject->InputParameters(); { Brn buf((const TByte*)aObjectID.c_str(), (TUint)aObjectID.length()); invocation->AddInput(new ArgumentString(*inParams[inIndex++], buf)); } { Brn buf((const TByte*)aCurrentTagValue.c_str(), (TUint)aCurrentTagValue.length()); invocation->AddInput(new ArgumentString(*inParams[inIndex++], buf)); } { Brn buf((const TByte*)aNewTagValue.c_str(), (TUint)aNewTagValue.length()); invocation->AddInput(new ArgumentString(*inParams[inIndex++], buf)); } iCpProxy.GetInvocable().InvokeAction(*invocation); } void CpProxyUpnpOrgContentDirectory2Cpp::EndUpdateObject(IAsync& aAsync) { ASSERT(((Async&)aAsync).Type() == Async::eInvocation); Invocation& invocation = (Invocation&)aAsync; ASSERT(invocation.Action().Name() == Brn("UpdateObject")); Error::ELevel level; TUint code; const TChar* ignore; if (invocation.Error(level, code, ignore)) { THROW_PROXYERROR(level, code); } } void CpProxyUpnpOrgContentDirectory2Cpp::SyncMoveObject(const std::string& aObjectID, const std::string& aNewParentID, std::string& aNewObjectID) { SyncMoveObjectUpnpOrgContentDirectory2Cpp sync(*this, aNewObjectID); BeginMoveObject(aObjectID, aNewParentID, sync.Functor()); sync.Wait(); } void CpProxyUpnpOrgContentDirectory2Cpp::BeginMoveObject(const std::string& aObjectID, const std::string& aNewParentID, FunctorAsync& aFunctor) { Invocation* invocation = iCpProxy.GetService().Invocation(*iActionMoveObject, aFunctor); TUint inIndex = 0; const Action::VectorParameters& inParams = iActionMoveObject->InputParameters(); { Brn buf((const TByte*)aObjectID.c_str(), (TUint)aObjectID.length()); invocation->AddInput(new ArgumentString(*inParams[inIndex++], buf)); } { Brn buf((const TByte*)aNewParentID.c_str(), (TUint)aNewParentID.length()); invocation->AddInput(new ArgumentString(*inParams[inIndex++], buf)); } TUint outIndex = 0; const Action::VectorParameters& outParams = iActionMoveObject->OutputParameters(); invocation->AddOutput(new ArgumentString(*outParams[outIndex++])); iCpProxy.GetInvocable().InvokeAction(*invocation); } void CpProxyUpnpOrgContentDirectory2Cpp::EndMoveObject(IAsync& aAsync, std::string& aNewObjectID) { ASSERT(((Async&)aAsync).Type() == Async::eInvocation); Invocation& invocation = (Invocation&)aAsync; ASSERT(invocation.Action().Name() == Brn("MoveObject")); Error::ELevel level; TUint code; const TChar* ignore; if (invocation.Error(level, code, ignore)) { THROW_PROXYERROR(level, code); } TUint index = 0; { const Brx& val = ((ArgumentString*)invocation.OutputArguments()[index++])->Value(); aNewObjectID.assign((const char*)val.Ptr(), val.Bytes()); } } void CpProxyUpnpOrgContentDirectory2Cpp::SyncImportResource(const std::string& aSourceURI, const std::string& aDestinationURI, uint32_t& aTransferID) { SyncImportResourceUpnpOrgContentDirectory2Cpp sync(*this, aTransferID); BeginImportResource(aSourceURI, aDestinationURI, sync.Functor()); sync.Wait(); } void CpProxyUpnpOrgContentDirectory2Cpp::BeginImportResource(const std::string& aSourceURI, const std::string& aDestinationURI, FunctorAsync& aFunctor) { Invocation* invocation = iCpProxy.GetService().Invocation(*iActionImportResource, aFunctor); TUint inIndex = 0; const Action::VectorParameters& inParams = iActionImportResource->InputParameters(); { Brn buf((const TByte*)aSourceURI.c_str(), (TUint)aSourceURI.length()); invocation->AddInput(new ArgumentString(*inParams[inIndex++], buf)); } { Brn buf((const TByte*)aDestinationURI.c_str(), (TUint)aDestinationURI.length()); invocation->AddInput(new ArgumentString(*inParams[inIndex++], buf)); } TUint outIndex = 0; const Action::VectorParameters& outParams = iActionImportResource->OutputParameters(); invocation->AddOutput(new ArgumentUint(*outParams[outIndex++])); iCpProxy.GetInvocable().InvokeAction(*invocation); } void CpProxyUpnpOrgContentDirectory2Cpp::EndImportResource(IAsync& aAsync, uint32_t& aTransferID) { ASSERT(((Async&)aAsync).Type() == Async::eInvocation); Invocation& invocation = (Invocation&)aAsync; ASSERT(invocation.Action().Name() == Brn("ImportResource")); Error::ELevel level; TUint code; const TChar* ignore; if (invocation.Error(level, code, ignore)) { THROW_PROXYERROR(level, code); } TUint index = 0; aTransferID = ((ArgumentUint*)invocation.OutputArguments()[index++])->Value(); } void CpProxyUpnpOrgContentDirectory2Cpp::SyncExportResource(const std::string& aSourceURI, const std::string& aDestinationURI, uint32_t& aTransferID) { SyncExportResourceUpnpOrgContentDirectory2Cpp sync(*this, aTransferID); BeginExportResource(aSourceURI, aDestinationURI, sync.Functor()); sync.Wait(); } void CpProxyUpnpOrgContentDirectory2Cpp::BeginExportResource(const std::string& aSourceURI, const std::string& aDestinationURI, FunctorAsync& aFunctor) { Invocation* invocation = iCpProxy.GetService().Invocation(*iActionExportResource, aFunctor); TUint inIndex = 0; const Action::VectorParameters& inParams = iActionExportResource->InputParameters(); { Brn buf((const TByte*)aSourceURI.c_str(), (TUint)aSourceURI.length()); invocation->AddInput(new ArgumentString(*inParams[inIndex++], buf)); } { Brn buf((const TByte*)aDestinationURI.c_str(), (TUint)aDestinationURI.length()); invocation->AddInput(new ArgumentString(*inParams[inIndex++], buf)); } TUint outIndex = 0; const Action::VectorParameters& outParams = iActionExportResource->OutputParameters(); invocation->AddOutput(new ArgumentUint(*outParams[outIndex++])); iCpProxy.GetInvocable().InvokeAction(*invocation); } void CpProxyUpnpOrgContentDirectory2Cpp::EndExportResource(IAsync& aAsync, uint32_t& aTransferID) { ASSERT(((Async&)aAsync).Type() == Async::eInvocation); Invocation& invocation = (Invocation&)aAsync; ASSERT(invocation.Action().Name() == Brn("ExportResource")); Error::ELevel level; TUint code; const TChar* ignore; if (invocation.Error(level, code, ignore)) { THROW_PROXYERROR(level, code); } TUint index = 0; aTransferID = ((ArgumentUint*)invocation.OutputArguments()[index++])->Value(); } void CpProxyUpnpOrgContentDirectory2Cpp::SyncDeleteResource(const std::string& aResourceURI) { SyncDeleteResourceUpnpOrgContentDirectory2Cpp sync(*this); BeginDeleteResource(aResourceURI, sync.Functor()); sync.Wait(); } void CpProxyUpnpOrgContentDirectory2Cpp::BeginDeleteResource(const std::string& aResourceURI, FunctorAsync& aFunctor) { Invocation* invocation = iCpProxy.GetService().Invocation(*iActionDeleteResource, aFunctor); TUint inIndex = 0; const Action::VectorParameters& inParams = iActionDeleteResource->InputParameters(); { Brn buf((const TByte*)aResourceURI.c_str(), (TUint)aResourceURI.length()); invocation->AddInput(new ArgumentString(*inParams[inIndex++], buf)); } iCpProxy.GetInvocable().InvokeAction(*invocation); } void CpProxyUpnpOrgContentDirectory2Cpp::EndDeleteResource(IAsync& aAsync) { ASSERT(((Async&)aAsync).Type() == Async::eInvocation); Invocation& invocation = (Invocation&)aAsync; ASSERT(invocation.Action().Name() == Brn("DeleteResource")); Error::ELevel level; TUint code; const TChar* ignore; if (invocation.Error(level, code, ignore)) { THROW_PROXYERROR(level, code); } } void CpProxyUpnpOrgContentDirectory2Cpp::SyncStopTransferResource(uint32_t aTransferID) { SyncStopTransferResourceUpnpOrgContentDirectory2Cpp sync(*this); BeginStopTransferResource(aTransferID, sync.Functor()); sync.Wait(); } void CpProxyUpnpOrgContentDirectory2Cpp::BeginStopTransferResource(uint32_t aTransferID, FunctorAsync& aFunctor) { Invocation* invocation = iCpProxy.GetService().Invocation(*iActionStopTransferResource, aFunctor); TUint inIndex = 0; const Action::VectorParameters& inParams = iActionStopTransferResource->InputParameters(); invocation->AddInput(new ArgumentUint(*inParams[inIndex++], aTransferID)); iCpProxy.GetInvocable().InvokeAction(*invocation); } void CpProxyUpnpOrgContentDirectory2Cpp::EndStopTransferResource(IAsync& aAsync) { ASSERT(((Async&)aAsync).Type() == Async::eInvocation); Invocation& invocation = (Invocation&)aAsync; ASSERT(invocation.Action().Name() == Brn("StopTransferResource")); Error::ELevel level; TUint code; const TChar* ignore; if (invocation.Error(level, code, ignore)) { THROW_PROXYERROR(level, code); } } void CpProxyUpnpOrgContentDirectory2Cpp::SyncGetTransferProgress(uint32_t aTransferID, std::string& aTransferStatus, std::string& aTransferLength, std::string& aTransferTotal) { SyncGetTransferProgressUpnpOrgContentDirectory2Cpp sync(*this, aTransferStatus, aTransferLength, aTransferTotal); BeginGetTransferProgress(aTransferID, sync.Functor()); sync.Wait(); } void CpProxyUpnpOrgContentDirectory2Cpp::BeginGetTransferProgress(uint32_t aTransferID, FunctorAsync& aFunctor) { Invocation* invocation = iCpProxy.GetService().Invocation(*iActionGetTransferProgress, aFunctor); TUint inIndex = 0; const Action::VectorParameters& inParams = iActionGetTransferProgress->InputParameters(); invocation->AddInput(new ArgumentUint(*inParams[inIndex++], aTransferID)); TUint outIndex = 0; const Action::VectorParameters& outParams = iActionGetTransferProgress->OutputParameters(); invocation->AddOutput(new ArgumentString(*outParams[outIndex++])); invocation->AddOutput(new ArgumentString(*outParams[outIndex++])); invocation->AddOutput(new ArgumentString(*outParams[outIndex++])); iCpProxy.GetInvocable().InvokeAction(*invocation); } void CpProxyUpnpOrgContentDirectory2Cpp::EndGetTransferProgress(IAsync& aAsync, std::string& aTransferStatus, std::string& aTransferLength, std::string& aTransferTotal) { ASSERT(((Async&)aAsync).Type() == Async::eInvocation); Invocation& invocation = (Invocation&)aAsync; ASSERT(invocation.Action().Name() == Brn("GetTransferProgress")); Error::ELevel level; TUint code; const TChar* ignore; if (invocation.Error(level, code, ignore)) { THROW_PROXYERROR(level, code); } TUint index = 0; { const Brx& val = ((ArgumentString*)invocation.OutputArguments()[index++])->Value(); aTransferStatus.assign((const char*)val.Ptr(), val.Bytes()); } { const Brx& val = ((ArgumentString*)invocation.OutputArguments()[index++])->Value(); aTransferLength.assign((const char*)val.Ptr(), val.Bytes()); } { const Brx& val = ((ArgumentString*)invocation.OutputArguments()[index++])->Value(); aTransferTotal.assign((const char*)val.Ptr(), val.Bytes()); } } void CpProxyUpnpOrgContentDirectory2Cpp::SyncCreateReference(const std::string& aContainerID, const std::string& aObjectID, std::string& aNewID) { SyncCreateReferenceUpnpOrgContentDirectory2Cpp sync(*this, aNewID); BeginCreateReference(aContainerID, aObjectID, sync.Functor()); sync.Wait(); } void CpProxyUpnpOrgContentDirectory2Cpp::BeginCreateReference(const std::string& aContainerID, const std::string& aObjectID, FunctorAsync& aFunctor) { Invocation* invocation = iCpProxy.GetService().Invocation(*iActionCreateReference, aFunctor); TUint inIndex = 0; const Action::VectorParameters& inParams = iActionCreateReference->InputParameters(); { Brn buf((const TByte*)aContainerID.c_str(), (TUint)aContainerID.length()); invocation->AddInput(new ArgumentString(*inParams[inIndex++], buf)); } { Brn buf((const TByte*)aObjectID.c_str(), (TUint)aObjectID.length()); invocation->AddInput(new ArgumentString(*inParams[inIndex++], buf)); } TUint outIndex = 0; const Action::VectorParameters& outParams = iActionCreateReference->OutputParameters(); invocation->AddOutput(new ArgumentString(*outParams[outIndex++])); iCpProxy.GetInvocable().InvokeAction(*invocation); } void CpProxyUpnpOrgContentDirectory2Cpp::EndCreateReference(IAsync& aAsync, std::string& aNewID) { ASSERT(((Async&)aAsync).Type() == Async::eInvocation); Invocation& invocation = (Invocation&)aAsync; ASSERT(invocation.Action().Name() == Brn("CreateReference")); Error::ELevel level; TUint code; const TChar* ignore; if (invocation.Error(level, code, ignore)) { THROW_PROXYERROR(level, code); } TUint index = 0; { const Brx& val = ((ArgumentString*)invocation.OutputArguments()[index++])->Value(); aNewID.assign((const char*)val.Ptr(), val.Bytes()); } } void CpProxyUpnpOrgContentDirectory2Cpp::SetPropertySystemUpdateIDChanged(Functor& aFunctor) { iCpProxy.GetLock().Wait(); iSystemUpdateIDChanged = aFunctor; iCpProxy.GetLock().Signal(); } void CpProxyUpnpOrgContentDirectory2Cpp::SetPropertyContainerUpdateIDsChanged(Functor& aFunctor) { iCpProxy.GetLock().Wait(); iContainerUpdateIDsChanged = aFunctor; iCpProxy.GetLock().Signal(); } void CpProxyUpnpOrgContentDirectory2Cpp::SetPropertyTransferIDsChanged(Functor& aFunctor) { iCpProxy.GetLock().Wait(); iTransferIDsChanged = aFunctor; iCpProxy.GetLock().Signal(); } void CpProxyUpnpOrgContentDirectory2Cpp::PropertySystemUpdateID(uint32_t& aSystemUpdateID) const { AutoMutex a(iCpProxy.PropertyReadLock()); if (iCpProxy.GetSubscriptionStatus() != CpProxy::eSubscribed) { THROW(ProxyNotSubscribed); } aSystemUpdateID = iSystemUpdateID->Value(); } void CpProxyUpnpOrgContentDirectory2Cpp::PropertyContainerUpdateIDs(std::string& aContainerUpdateIDs) const { AutoMutex a(iCpProxy.PropertyReadLock()); if (iCpProxy.GetSubscriptionStatus() != CpProxy::eSubscribed) { THROW(ProxyNotSubscribed); } const Brx& val = iContainerUpdateIDs->Value(); aContainerUpdateIDs.assign((const char*)val.Ptr(), val.Bytes()); } void CpProxyUpnpOrgContentDirectory2Cpp::PropertyTransferIDs(std::string& aTransferIDs) const { AutoMutex a(iCpProxy.PropertyReadLock()); if (iCpProxy.GetSubscriptionStatus() != CpProxy::eSubscribed) { THROW(ProxyNotSubscribed); } const Brx& val = iTransferIDs->Value(); aTransferIDs.assign((const char*)val.Ptr(), val.Bytes()); } void CpProxyUpnpOrgContentDirectory2Cpp::SystemUpdateIDPropertyChanged() { ReportEvent(iSystemUpdateIDChanged); } void CpProxyUpnpOrgContentDirectory2Cpp::ContainerUpdateIDsPropertyChanged() { ReportEvent(iContainerUpdateIDsChanged); } void CpProxyUpnpOrgContentDirectory2Cpp::TransferIDsPropertyChanged() { ReportEvent(iTransferIDsChanged); } void CpProxyUpnpOrgContentDirectory2Cpp::Subscribe() { iCpProxy.Subscribe(); } void CpProxyUpnpOrgContentDirectory2Cpp::Unsubscribe() { iCpProxy.Unsubscribe(); } void CpProxyUpnpOrgContentDirectory2Cpp::SetPropertyChanged(Functor& aFunctor) { iCpProxy.SetPropertyChanged(aFunctor); } void CpProxyUpnpOrgContentDirectory2Cpp::SetPropertyInitialEvent(Functor& aFunctor) { iCpProxy.SetPropertyInitialEvent(aFunctor); } void CpProxyUpnpOrgContentDirectory2Cpp::AddProperty(Property* aProperty) { iCpProxy.AddProperty(aProperty); } void CpProxyUpnpOrgContentDirectory2Cpp::DestroyService() { iCpProxy.DestroyService(); } void CpProxyUpnpOrgContentDirectory2Cpp::ReportEvent(Functor aFunctor) { iCpProxy.ReportEvent(aFunctor); } TUint CpProxyUpnpOrgContentDirectory2Cpp::Version() const { return iCpProxy.Version(); }
[ "simon.chisholm@linn.co.uk" ]
simon.chisholm@linn.co.uk