blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 4
201
| content_id
stringlengths 40
40
| detected_licenses
sequencelengths 0
85
| license_type
stringclasses 2
values | repo_name
stringlengths 7
100
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringclasses 260
values | visit_date
timestamp[us] | revision_date
timestamp[us] | committer_date
timestamp[us] | github_id
int64 11.4k
681M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 17
values | gha_event_created_at
timestamp[us] | gha_created_at
timestamp[us] | gha_language
stringclasses 80
values | src_encoding
stringclasses 28
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 8
9.86M
| extension
stringclasses 52
values | content
stringlengths 8
9.86M
| authors
sequencelengths 1
1
| author
stringlengths 0
119
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
403cac0b613956dd11d21201dd0e01fe6f00baaa | a1b98c95fb5361aa9a96ccefbbef3654509c59fd | /Chapter_05/exercise_03.cpp | 578210754fa7c7d0e6ebc3a50fd9bd160167ac7f | [] | no_license | ZoroOP/CppPrimer | 121bcafd6852c583fd773c6c78dccfd5f6952f09 | a28f0b3f2ffb57dc9c38b9a5c173e375f7944db6 | refs/heads/master | 2020-07-17T07:14:57.027588 | 2017-10-13T11:27:25 | 2017-10-13T11:27:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 808 | cpp | // Use the comma operator (§ 4.10, p. 157) to rewrite the while
// loop from § 1.4.1 (p. 11) so that it no longer requires a block.
// Explain whether this rewrite improves or diminishes the readability
// of this code.
#include <iostream>
using std::cout;
using std::endl;
int main()
{
int sum = 0;
int val = 1;
// Original code
// keep executing the while as long as val is less than or equal to 10
// while (val <= 10)
// {
// sum += val; // assigns sum + val to sum
// ++val; // add 1 to val
// }
// cout << "Sum of 1 to 10 inclusive is "
// << sum << endl;
// Rewrite using comma operator
while (val <= 10)
sum += val, ++val;
cout << "Sum of 1 to 10 inclusive is "
<< sum << endl;
return 0;
}
| [
"[email protected]"
] | |
b65609841f18ef284236fe13ee62cebd4008cea8 | bb6ebff7a7f6140903d37905c350954ff6599091 | /third_party/skia/samplecode/SamplePath.cpp | e35eeb6717575ffe2e91c1ca349cc2e1b5c449f5 | [
"BSD-3-Clause",
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0"
] | permissive | PDi-Communication-Systems-Inc/lollipop_external_chromium_org | faa6602bd6bfd9b9b6277ce3cd16df0bd26e7f2f | ccadf4e63dd34be157281f53fe213d09a8c66d2c | refs/heads/master | 2022-12-23T18:07:04.568931 | 2016-04-11T16:03:36 | 2016-04-11T16:03:36 | 53,677,925 | 0 | 1 | BSD-3-Clause | 2022-12-09T23:46:46 | 2016-03-11T15:49:07 | C++ | UTF-8 | C++ | false | false | 6,095 | cpp |
/*
* Copyright 2011 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "SampleCode.h"
#include "SkView.h"
#include "SkCanvas.h"
#include "SkGradientShader.h"
#include "SkGraphics.h"
#include "SkImageDecoder.h"
#include "SkPath.h"
#include "SkRegion.h"
#include "SkShader.h"
#include "SkUtils.h"
#include "SkXfermode.h"
#include "SkColorPriv.h"
#include "SkColorFilter.h"
#include "SkParsePath.h"
#include "SkTime.h"
#include "SkTypeface.h"
#include "SkGeometry.h"
// http://code.google.com/p/skia/issues/detail?id=32
static void test_cubic() {
SkPoint src[4] = {
{ 556.25000f, 523.03003f },
{ 556.23999f, 522.96002f },
{ 556.21997f, 522.89001f },
{ 556.21997f, 522.82001f }
};
SkPoint dst[11];
dst[10].set(42, -42); // one past the end, that we don't clobber these
SkScalar tval[] = { 0.33333334f, 0.99999994f };
SkChopCubicAt(src, dst, tval, 2);
#if 0
for (int i = 0; i < 11; i++) {
SkDebugf("--- %d [%g %g]\n", i, dst[i].fX, dst[i].fY);
}
#endif
}
static void test_cubic2() {
const char* str = "M2242 -590088L-377758 9.94099e+07L-377758 9.94099e+07L2242 -590088Z";
SkPath path;
SkParsePath::FromSVGString(str, &path);
{
#ifdef SK_BUILD_FOR_WIN
// windows doesn't have strtof
float x = (float)strtod("9.94099e+07", NULL);
#else
float x = strtof("9.94099e+07", NULL);
#endif
int ix = (int)x;
int fx = (int)(x * 65536);
int ffx = SkScalarToFixed(x);
SkDebugf("%g %x %x %x\n", x, ix, fx, ffx);
SkRect r = path.getBounds();
SkIRect ir;
r.round(&ir);
SkDebugf("[%g %g %g %g] [%x %x %x %x]\n",
SkScalarToDouble(r.fLeft), SkScalarToDouble(r.fTop),
SkScalarToDouble(r.fRight), SkScalarToDouble(r.fBottom),
ir.fLeft, ir.fTop, ir.fRight, ir.fBottom);
}
SkBitmap bitmap;
bitmap.allocN32Pixels(300, 200);
SkCanvas canvas(bitmap);
SkPaint paint;
paint.setAntiAlias(true);
canvas.drawPath(path, paint);
}
class PathView : public SampleView {
public:
int fDStroke, fStroke, fMinStroke, fMaxStroke;
SkPath fPath[6];
bool fShowHairline;
bool fOnce;
PathView() {
fOnce = false;
}
void init() {
if (fOnce) {
return;
}
fOnce = true;
test_cubic();
test_cubic2();
fShowHairline = false;
fDStroke = 1;
fStroke = 10;
fMinStroke = 10;
fMaxStroke = 180;
const int V = 85;
fPath[0].moveTo(SkIntToScalar(40), SkIntToScalar(70));
fPath[0].lineTo(SkIntToScalar(70), SkIntToScalar(70) + SK_Scalar1/1);
fPath[0].lineTo(SkIntToScalar(110), SkIntToScalar(70));
fPath[1].moveTo(SkIntToScalar(40), SkIntToScalar(70));
fPath[1].lineTo(SkIntToScalar(70), SkIntToScalar(70) - SK_Scalar1/1);
fPath[1].lineTo(SkIntToScalar(110), SkIntToScalar(70));
fPath[2].moveTo(SkIntToScalar(V), SkIntToScalar(V));
fPath[2].lineTo(SkIntToScalar(50), SkIntToScalar(V));
fPath[2].lineTo(SkIntToScalar(50), SkIntToScalar(50));
fPath[3].moveTo(SkIntToScalar(50), SkIntToScalar(50));
fPath[3].lineTo(SkIntToScalar(50), SkIntToScalar(V));
fPath[3].lineTo(SkIntToScalar(V), SkIntToScalar(V));
fPath[4].moveTo(SkIntToScalar(50), SkIntToScalar(50));
fPath[4].lineTo(SkIntToScalar(50), SkIntToScalar(V));
fPath[4].lineTo(SkIntToScalar(52), SkIntToScalar(50));
fPath[5].moveTo(SkIntToScalar(52), SkIntToScalar(50));
fPath[5].lineTo(SkIntToScalar(50), SkIntToScalar(V));
fPath[5].lineTo(SkIntToScalar(50), SkIntToScalar(50));
this->setBGColor(0xFFDDDDDD);
}
void nextStroke() {
fStroke += fDStroke;
if (fStroke > fMaxStroke || fStroke < fMinStroke)
fDStroke = -fDStroke;
}
protected:
// overrides from SkEventSink
virtual bool onQuery(SkEvent* evt) {
if (SampleCode::TitleQ(*evt)) {
SampleCode::TitleR(evt, "Paths");
return true;
}
return this->INHERITED::onQuery(evt);
}
void drawPath(SkCanvas* canvas, const SkPath& path, SkPaint::Join j) {
SkPaint paint;
paint.setAntiAlias(true);
paint.setStyle(SkPaint::kStroke_Style);
paint.setStrokeJoin(j);
paint.setStrokeWidth(SkIntToScalar(fStroke));
if (fShowHairline) {
SkPath fill;
paint.getFillPath(path, &fill);
paint.setStrokeWidth(0);
canvas->drawPath(fill, paint);
} else {
canvas->drawPath(path, paint);
}
paint.setColor(SK_ColorRED);
paint.setStrokeWidth(0);
canvas->drawPath(path, paint);
}
virtual void onDrawContent(SkCanvas* canvas) {
this->init();
canvas->translate(SkIntToScalar(50), SkIntToScalar(50));
static const SkPaint::Join gJoins[] = {
SkPaint::kBevel_Join,
SkPaint::kMiter_Join,
SkPaint::kRound_Join
};
for (size_t i = 0; i < SK_ARRAY_COUNT(gJoins); i++) {
canvas->save();
for (size_t j = 0; j < SK_ARRAY_COUNT(fPath); j++) {
this->drawPath(canvas, fPath[j], gJoins[i]);
canvas->translate(SkIntToScalar(200), 0);
}
canvas->restore();
canvas->translate(0, SkIntToScalar(200));
}
this->nextStroke();
this->inval(NULL);
}
virtual SkView::Click* onFindClickHandler(SkScalar x, SkScalar y, unsigned modi) SK_OVERRIDE {
fShowHairline = !fShowHairline;
this->inval(NULL);
return this->INHERITED::onFindClickHandler(x, y, modi);
}
private:
typedef SampleView INHERITED;
};
//////////////////////////////////////////////////////////////////////////////
static SkView* MyFactory() { return new PathView; }
static SkViewRegister reg(MyFactory);
| [
"[email protected]"
] | |
cbfe38f527c643356cbf05ce29441d0e77c97a5d | 34d44a9ca7e6eb63495247ed2aed146b55f1c7db | /QuestionAns/d6s3/1352.cc | cc908befe893b8e24cd6ced07e5bf1ec9eced8b0 | [] | no_license | sdustlug/OpenJudge | 2419c00824f29144864571e1d25c9de1a09350d2 | a6550441691470df505f6a971bc9661ced1b0773 | refs/heads/master | 2023-09-03T11:48:01.041727 | 2021-10-18T13:47:57 | 2021-10-18T13:47:57 | 418,521,703 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 836 | cc | #include <iostream>
#include <stack>
#include <string>
using namespace std;
int main()
{
char c;
string a;
while (getline(cin, a)) {
stack<char> st;
for (int i = 0; i < a.length(); i++) {
c = a[i];
if (c == '(')
st.push(c);
else if (c == ')' && st.size() == 0) {
st.push(')');
break;
} else
st.pop();
}
if (st.size() != 0)
cout << "NO" << endl;
else
cout << "YES" << endl;
}
return 0;
}
/**************************************************************
Problem: 1352
User: 201901060610
Language: C++
Result: Accepted
Time:0 ms
Memory:1276 kb
****************************************************************/
| [
"[email protected]"
] | |
50d26239df075cb6bdd5bd84a0c417d93695895a | 9dc2c4a8549a4ab2920eafed17caa1b03d846fa9 | /ProjectWarshipbattle/source/FlagShipAI.cpp | 5b2a13207f723ffea6b114db9dee30aadec8b818 | [] | no_license | DingJunyu/WarshipBattleRe | 1d4dcd6ebed0d7e3e12a88d6e3447a5d09246ca6 | 6fd3b17d48f8e45dca18e04c4d802d0d2bba78ed | refs/heads/master | 2020-05-07T22:04:20.520706 | 2019-06-21T01:22:59 | 2019-06-21T01:22:59 | 178,110,286 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 3,916 | cpp | #include "FlagShipAI.h"
FlagShipAI::~FlagShipAI()
{
}
void FlagShipAI::LetUsGo(ShipMain *me, ShipMain *target) {
counter %= nextCounter;
counter++;
SetMyPos(me->ReferCoord2D_d());//自分の位置を設定する
SetNowRadian(me->ReferRadianOnZ());//自分の角度を設定する
targetDistance = Distance2D(target->ReferCoord2D_d(), myPos);//目標との距離を測量する
CalDistance();//前のウェイポイントとの距離を計算する
if (targetDistance > (double)DistanceRange::BATTLE) {
if (targetDistance > (double)DistanceRange::PATROL_RANGE) {
if (distance < needToChange)//前のウェイポイントが使えなくなる時に
SetWayPoint();//新しいウェイポイントを作る
}
if (targetDistance <= (double)DistanceRange::COMING_IN_RANGE) {
if (counter == 1) {
SetWayPoint(target->ReferCoord2D_d(), target->ReferRadianOnZ(),
target->ReferSpeedOnZ());
}
}
CalTargetRadian();
}
else {
DisableWayPoint_MoveWithEnemy(target->ReferRadianOnZ());
}
SetRadianNeeded();//角度を更新
targetSpeedRate = SpeedINeed(target->ReferOutPutRate());
}
void FlagShipAI::SetWayPoint() {
/*ランダムで次のターゲットを探す*/
RandomPoint(&wayPoint, nextPosOnMapX, nextPosOnMapZ, randRange);
int target = rand() % 3;
switch (target) {
case 0:wayPoint.ChangeX(); break;//第四象限に移す
case 1:wayPoint.ChangeZ(); break;//第二象限に移す
case 2:wayPoint.ChangeXandZ(); break;//第三象限に移す
}
}
/*敵の進行方向の前の点をターゲット点に設定する*/
void FlagShipAI::SetWayPoint(Coordinate2D<double> targetPos, double radian, double speed) {
wayPoint = targetPos;
if (speed == 0)
speed = 0.1;
NextPoint(&wayPoint,radian, speed, nextPointFrame);
}
/*敵と近づくと敵の進行方向と同じ方向に進む*/
void FlagShipAI::DisableWayPoint_MoveWithEnemy(double radian) {
targetRadian = radian - nowRadian;
targetRadian = fmod(targetRadian, MathAndPhysics::PI);
}
/*目標との角度を計算する*/
void FlagShipAI::CalTargetRadian() {
targetRadian = CalRadianBetweenPoints(wayPoint, myPos, nowRadian);
}
void FlagShipAI::SetRadianNeeded() {
using namespace MathAndPhysics;
/*範囲から今必要な角度を計算する*/
if (abs(targetRadian) > RadianRange::RANGE_MAX * OneDegreeRadian) {
radianNeededNow = RadianRange::SPEED_MAX * OneDegreeRadian;
}
if (abs(targetRadian) <= RadianRange::RANGE_MAX * OneDegreeRadian&&
abs(targetRadian) > RadianRange::RANGE_1_2 * OneDegreeRadian) {
radianNeededNow = RadianRange::SPEED_1_2 * OneDegreeRadian;
}
if (abs(targetRadian) <= RadianRange::RANGE_1_2 * OneDegreeRadian&&
abs(targetRadian) > RadianRange::RANGE_1_4 * OneDegreeRadian) {
radianNeededNow = RadianRange::SPEED_1_4 * OneDegreeRadian;
}
if (abs(targetRadian) <= RadianRange::RANGE_1_4 * OneDegreeRadian&&
abs(targetRadian) > RadianRange::RANGE_1_8) {
radianNeededNow = RadianRange::SPEED_1_8 * OneDegreeRadian;
}
if (targetRadian == RadianRange::RANGE_1_8) {
radianNeededNow = 0;
}
/*方向を修正する*/
if (targetRadian > 0)
radianNeededNow = -radianNeededNow;
}
/*距離を計算する関数*/
void FlagShipAI::CalDistance() {
distance = Distance2D(wayPoint, myPos);
}
double FlagShipAI::SpeedINeed(double outPutRate) {
/*パトロール時の出力は半分*/
if (targetDistance >= (double)DistanceRange::PATROL_RANGE) {
return outPut_50;
}
/*接近する時は0.75*/
if (targetDistance < (double)DistanceRange::COMING_IN_RANGE&&
targetDistance >= (double)DistanceRange::TAKE_T) {
return outPut_75;
}
/*前の位置を取る時は全速*/
if (targetDistance < (double)DistanceRange::TAKE_T&&
targetDistance >= (double)DistanceRange::BATTLE) {
return outPut_100;
}
/*戦闘の時は敵の速度に合わせる*/
if (targetDistance < (double)DistanceRange::BATTLE) {
return outPutRate;
}
return outPutRate;
} | [
"[email protected]"
] | |
7fe2a16f3001557e83679fc6549eadba6a6710b5 | cef25dbcd8e890ead495df60b0a8dc15a1443d61 | /video_decoder/video_decoder_v3.h | 6a3f3fea679315eecbe49f4cd34617687bad7a28 | [] | no_license | liaoqingfu/virtual_endpoint | 9c5ae8bed13f3df5f04bed5128a72b338111527f | da6070f2d07ad92597245f4b56055d2224a3874e | refs/heads/master | 2021-05-05T08:36:17.394512 | 2016-01-19T15:16:35 | 2016-01-19T15:16:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,054 | h | #ifndef VIDEO_DECODER_V3_H
#define VIDEO_DECODER_V3_H
#ifndef _WIN32
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include "ffmpeg_lib.h"
#include "video_decoder.h"
#include "get_slice_type.h"
#include "../../suyun_sdk/spend_timer_logger.h"
#define LOG_INFO printf
#define LOG_ERROR printf
#define LOG_DEBUG printf
#define LOG_NOTICE printf
#define VIDEO_WIDTH_V2 1920
#define VIDEO_HEIGHT_V2 1080
#pragma pack(1)
//#define DEBUG
class Video_Decoder_Impl_V3:public Video_Decoder
{
public:
Video_Decoder_Impl_V3():
cb(NULL), codec(NULL), context(NULL),
picture(NULL), opts(NULL), first_i_found(false),
yuv(NULL), yuv_len(0)
{
}
virtual ~Video_Decoder_Impl_V3()
{}
public:
bool init(YUV_CB *_cb,int codec_id=CODECID_H264)
{
cb = _cb;
bool fr = codec_init();
yuv = new unsigned char[VIDEO_WIDTH_V2 * VIDEO_HEIGHT_V2 * 2];
if(NULL == yuv)
{
LOG_ERROR("%s : new yuv failed!\n", __FUNCTION__);
//printf("%s: new yuv failed!\n", __FUNCTION__);
return false;
}
ffmpeg_lib::av_init_packet(&av_pkt);
return fr;
}
int release()
{
codec_release();
if(yuv != NULL)
{
delete [] yuv;
yuv = NULL;
}
yuv_len = 0;
delete this;
return 0;
}
bool operator () (unsigned char *nalu, int nalu_len)
{
return decode(nalu,nalu_len);
}
bool decode (unsigned char *nalu, int nalu_len)
{
#ifdef DEBUG
Spend_Timer_Logger timer_log("decode frame",false);
#endif
int len = 0;
int got_picture = 0;
unsigned char i_start[] = {0x00, 0x00, 0x01};
unsigned char i_start1[] = {0x00, 0x00, 0x00, 0x01};
//unsigned char i_sps1[] = {0x00, 0x00, 0x00, 0x01, 0x67};
//unsigned char i_pps2[] = {0x00, 0x00, 0x00, 0x01, 0x68};
//unsigned char i_slice[] = {0x00, 0x00, 0x00, 0x01, 0x65};
uint8_t* nalu_buf = (uint8_t*)nalu;
len = nalu_len;
int v = -1;
unsigned int slice_type = 0;
if ( !first_i_found )
{
if(0 == memcmp(nalu_buf, i_start, 3))
{
v = (*(nalu_buf + 3)) & 0x1F;
if( v == 1)
{
unsigned int index1 = 0;
get_ue_value(nalu_buf + 4, len - 4, index1);
int slice_type = get_ue_value(nalu_buf + 4, len - 4, index1);
//LOG_NOTICE("\nslice_type = %d \n", slice_type);
if( (slice_type == 2) || (slice_type == 4) || (slice_type == 7) || (slice_type == 9)) //
{
first_i_found = true;
LOG_NOTICE("first i found i v = %d slice_type = %u \n", v, slice_type);
}
else
{
return true;
}
}
else if( (v == 7) ) //|| (v == 5)
{
first_i_found = true;
LOG_NOTICE("first i found ii v = %u\n", v);
}
else
return true;
}
else if(0 == memcmp(nalu_buf, i_start1, 4))
{
v = (*(nalu_buf + 4)) & 0x1F;
if( v == 1)
{
//哥伦布解码ue(2)
unsigned int index1 = 0;
get_ue_value(nalu_buf +5, len -5, index1);
slice_type = get_ue_value(nalu_buf +5, len -5, index1);
//LOG_INFO("slice_type = %u \n",slice_type);
if( (slice_type == 4) || (slice_type == 7) || (slice_type == 9) ) //(slice_type == 2) ||
{
first_i_found = true;
LOG_NOTICE("first i found iii v = %d slice_type = %u \n", v, slice_type);
}
else
{
return true;
}
}
else if( (v == 7) )//|| (v == 5)
{
first_i_found = true;
LOG_NOTICE("first i found iiii v = %u\n", v);
}
else
return true;
}
else
return true;
}
{
got_picture = 0;
av_pkt.data = (unsigned char*)nalu;
av_pkt.size = nalu_len;
if(1)
{
while( av_pkt.size > 0)
{
len = ffmpeg_lib::avcodec_decode_video2 ( context, picture, &got_picture, &av_pkt );
if (len < 0)
{
LOG_ERROR("Error while decoding frame \n");
break;
}
#ifdef DEBUG
timer_log.print_elapsed();
#endif
if ( got_picture )
{
// printf("[width %d][height %d][linesize %d %d %d] [pid:%d]", context->width, context->height, picture->linesize[0], picture->linesize[1], picture->linesize[2], getpid());
(*cb)(context->width, context->height, picture->data, picture->linesize);
// static int fd = open("gggg", O_RDWR|O_CREAT|O_TRUNC);
// for(int i=0; i<3; ++i)
// {
// write(fd, picture->data[i], picture->linesize[i]);
// }
// for(int i=0; i<3; ++i)
// {
// write(fd, picture->data[i], picture->linesize[i]);
// }
// for(int i=0; i<3; ++i)
// {
// write(fd, picture->data[i], picture->linesize[i]);
// }
}
av_pkt.size -= len;
av_pkt.data += len;
}
}
}
return true;
}
private:
bool codec_init()
{
char const *dll_name = NULL;
if ( 1 )
{
dll_name = "avcodec-54.dll";
}
if ( !ffmpeg_lib::init ( ) )
{
LOG_ERROR ( "%s ffmpeg_lib : ffmpeg_lib init error!\n", __FUNCTION__ );
//Sleep ( 1000 );
return false;
}
ffmpeg_lib::avcodec_register_all();
//ffmpeg_lib::av_dict_set(&opts, "b", "2.5M", 0);
/* find the h264 video decoder */
codec = ffmpeg_lib::avcodec_find_decoder ( CODEC_ID_H264 );
if ( codec == NULL )
{
LOG_ERROR ( "%s codec : CODEC_ID_H264 not found!\n", __FUNCTION__ );
return false;
}
context = ffmpeg_lib::avcodec_alloc_context3(codec);
if ( context == NULL )
{
LOG_ERROR ( "%s avcodec_alloc_context : alloc context failed!\n", __FUNCTION__ );
return false;
}
context->flags |= ~CODEC_FLAG_GLOBAL_HEADER;
//context->flags |= CODEC_FLAG_QSCALE;
//if(codec->capabilities&CODEC_CAP_TRUNCATED)
//{
// context->flags|= CODEC_FLAG_TRUNCATED; /* we dont send complete frames */
//}
/* open it */
if ( ffmpeg_lib::avcodec_open2 ( context, codec, &opts ) < 0 )
{
LOG_ERROR ( "%s codec : CODEC_ID_H264 open failed!\n", __FUNCTION__ );
return false;
}
picture = ffmpeg_lib::avcodec_alloc_frame();
if ( picture == NULL )
{
LOG_ERROR ( "%s avcodec_alloc_frame : alloc frame failed!\n", __FUNCTION__ );
return false;
}
{
LOG_DEBUG ( "%s", "ffmpeg init success!\n" );
}
return true;
}
void codec_release()
{
//picture如何释放?
//return;
if ( context != NULL )
{
ffmpeg_lib::avcodec_close ( context );
ffmpeg_lib::av_free ( context );
}
if ( picture != NULL )
{
ffmpeg_lib::av_free ( picture );
}
}
bool codec_reinit()
{
codec_release();
return codec_init();
}
private:
Video_Decoder::YUV_CB *cb;
AVCodec *codec;
AVCodecContext *context;
AVFrame *picture;
AVDictionary *opts;
bool first_i_found;
unsigned char *yuv;
int yuv_len;
AVPacket av_pkt;
};
#pragma pack()
#endif
| [
"[email protected]"
] | |
702104d109b27cc958f796170eb500283e6cd274 | 63a54bc72b5860fa51117334b80c4e8e027258dd | /CppPool/cpp_d07m/ex01/Federation.hh | 46c4829e95a99aa3aa45153cefd632abdbd2b2e8 | [
"MIT"
] | permissive | Epitech-Strasbourg-CT/Epitech-Computer-Science-School-Projects | b90e12137b56902e2862f956844a64b85164e724 | 43065b7230534a8ba08793dadbf99ce07ac9af3a | refs/heads/master | 2022-02-11T21:59:20.801001 | 2019-08-07T01:16:48 | 2019-08-07T01:16:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,535 | hh | //
// Federation.hh for in /home/gwendoline/Epitech/Tek2/rendu/Piscine_cpp/piscine_cpp_d07m/ex01
//
// Made by Gwendoline Rodriguez
// Login <[email protected]>
//
// Started on Tue Jan 12 09:32:22 2016 Gwendoline Rodriguez
// Last update Tue Jan 12 16:48:07 2016 Gwendoline Rodriguez
//
#ifndef _FEDERATION_HH_
#define _FEDERATION_HH_
#include <string>
#include <iostream>
#include "Warpsystem.hh"
namespace Federation {
namespace Starfleet {
class Ensign {
std::string _name;
public:
Ensign(std::string name);
~Ensign();
};
class Captain {
std::string _name;
int _age;
public:
Captain(std::string name);
~Captain();
std::string getName();
int getAge();
void setAge(int age);
};
class Ship {
int _length;
int _width;
std::string _name;
short _maxWarp;
WarpSystem::Core *_core;
Captain *_captain;;
public:
Ship(int length, int width, std::string name, short maxWarp);
~Ship();
void setupCore(WarpSystem::Core *core);
void checkCore();
void promote(Federation::Starfleet::Captain *captain);
};
}
class Ship {
int _length;
int _width;
std::string _name;
static const short _maxWarp = 1;
WarpSystem::Core *_core;
public:
Ship(int length, int width, std::string name);
~Ship();
void setupCore(WarpSystem::Core *core);
void checkCore();
};
}
#endif
| [
"*"
] | * |
6f79114844ae0aef9bff315cadc5ae7daabea06a | 18c9d0aa4cc30e047dfec22cdfe83fac0878c205 | /src/iohandlers.h | 334f037c13a667acafb88edfe0acae5161bfb648 | [
"LicenseRef-scancode-warranty-disclaimer",
"BSD-2-Clause"
] | permissive | blohmeier/sockperf_tests1 | 0dd8a295caaf10f82489a0a63cc644495501b216 | b59cffc34bf7327879adf4fc72e44f0616f92288 | refs/heads/main | 2023-01-21T21:57:25.086831 | 2020-12-05T00:49:36 | 2020-12-05T00:49:36 | 318,667,522 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19,988 | h | /*
* Copyright (c) 2011-2020 Mellanox Technologies Ltd.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. Neither the name of the Mellanox Technologies Ltd nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
* SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
* OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
* OF SUCH DAMAGE.
*/
#ifndef IOHANDLERS_H_
#define IOHANDLERS_H_
#include "common.h"
//==============================================================================
class IoHandler {
public:
IoHandler(int _fd_min, int _fd_max, int _fd_num, int _look_start, int _look_end);
virtual ~IoHandler();
inline int get_look_start() const { return m_look_start; }
inline int get_look_end() const { return m_look_end; }
virtual int prepareNetwork() = 0;
void warmup(Message *pMsgRequest) const;
const int m_fd_min, m_fd_max, m_fd_num;
protected:
int m_look_start;
int m_look_end; // non const because of epoll
};
//==============================================================================
class IoRecvfrom : public IoHandler {
public:
IoRecvfrom(int _fd_min, int _fd_max, int _fd_num);
virtual ~IoRecvfrom();
inline void update() {}
inline int waitArrival() { return (m_fd_num); }
inline int analyzeArrival(int ifd) const {
assert(g_fds_array[ifd] && "invalid fd");
int active_fd_count = g_fds_array[ifd]->active_fd_count;
int *active_fd_list = g_fds_array[ifd]->active_fd_list;
assert(active_fd_list && "corrupted fds_data object");
return (active_fd_count ? active_fd_list[0] : ifd);
}
virtual int prepareNetwork();
};
//==============================================================================
/*
* limitations (due to no real iomux):
* 1. client must open sockets and send packets in the same order as the server try to receive them
*(client and server feed files must have the same order).
* 2. no support for multiple clients (parallel/serial) for the same server (except for TCP serial
*clients).
* 3. no support for TCP listen socket to accept more than one connection (e.g. identical two lines
*in feed file).
*
* In order to overcome this limitations we must know the state of each socket at every iteration
*(like real iomux).
* It can be done by loop of non-blocking recvfrom with MSG_PEEK over all sockets at each iteration
*(similar to select internal implementation).
*
* NOTE: currently, IoRecvfromMUX can replace IoRecvfrom, but it is less efficient.
*/
class IoRecvfromMUX : public IoHandler {
public:
IoRecvfromMUX(int _fd_min, int _fd_max, int _fd_num);
virtual ~IoRecvfromMUX();
inline void update() {
m_fd_min_all = m_fd_min;
m_fd_max_all = m_fd_max;
for (int ifd = m_fd_min; ifd <= m_fd_max; ifd++) {
if (g_fds_array[ifd]) {
int i = 0;
int active_fd_count = g_fds_array[ifd]->active_fd_count;
int *active_fd_list = g_fds_array[ifd]->active_fd_list;
assert(active_fd_list && "corrupted fds_data object");
while (active_fd_count) {
/* process active sockets in case TCP (listen sockets are set in
* prepareNetwork()) and
* skip active socket in case UDP (it is the same with set in prepareNetwork())
*/
if (active_fd_list[i] != (int)INVALID_SOCKET) {
if (active_fd_list[i] != ifd) {
m_fd_min_all = _min(m_fd_min_all, active_fd_list[i]);
m_fd_max_all = _max(m_fd_max_all, active_fd_list[i]);
/* it is possible to set the same socket */
errno = 0;
}
active_fd_count--;
}
i++;
assert((i < MAX_ACTIVE_FD_NUM) &&
"maximum number of active connection to the single TCP addr:port");
}
}
}
if (m_look_start > m_fd_max || m_look_start < m_fd_min)
m_look_start = m_fd_max;
else if (m_look_start == m_fd_max)
m_look_start = m_fd_min_all - 1;
}
inline int waitArrival() {
do {
m_look_start++;
if (m_look_start > m_fd_max_all) m_look_start = m_fd_min_all;
} while (!g_fds_array[m_look_start] || g_fds_array[m_look_start]->active_fd_count);
m_look_end = m_look_start + 1;
return 1;
}
inline int analyzeArrival(int ifd) const {
assert(g_fds_array[ifd] && "invalid fd");
int active_fd_count = g_fds_array[ifd]->active_fd_count;
int *active_fd_list = g_fds_array[ifd]->active_fd_list;
assert(active_fd_list && "corrupted fds_data object");
return (active_fd_count ? active_fd_list[0] : ifd);
}
virtual int prepareNetwork();
int m_fd_min_all, m_fd_max_all;
};
//==============================================================================
class IoSelect : public IoHandler {
public:
IoSelect(int _fd_min, int _fd_max, int _fd_num);
virtual ~IoSelect();
//------------------------------------------------------------------------------
inline void update() {
int ifd = 0;
FD_ZERO(&m_save_fds);
m_look_start = m_fd_min;
m_look_end = m_fd_max;
for (ifd = m_fd_min; ifd <= m_fd_max; ifd++) {
if (g_fds_array[ifd]) {
int i = 0;
int active_fd_count = g_fds_array[ifd]->active_fd_count;
int *active_fd_list = g_fds_array[ifd]->active_fd_list;
FD_SET(ifd, &m_save_fds);
assert(active_fd_list && "corrupted fds_data object");
while (active_fd_count) {
/* process active sockets in case TCP (listen sockets are set in
* prepareNetwork()) and
* skip active socket in case UDP (it is the same with set in prepareNetwork())
*/
if (active_fd_list[i] != (int)INVALID_SOCKET) {
if (active_fd_list[i] != ifd) {
FD_SET(active_fd_list[i], &m_save_fds);
m_look_start = _min(m_look_start, active_fd_list[i]);
m_look_end = _max(m_look_end, active_fd_list[i]);
/* it is possible to set the same socket */
errno = 0;
}
active_fd_count--;
}
i++;
assert((i < MAX_ACTIVE_FD_NUM) &&
"maximum number of active connection to the single TCP addr:port");
}
}
}
m_look_end++;
}
//------------------------------------------------------------------------------
inline int waitArrival() {
if (mp_timeout_timeval) {
memcpy(mp_timeout_timeval, g_pApp->m_const_params.select_timeout,
sizeof(struct timeval));
}
memcpy(&m_readfds, &m_save_fds, sizeof(fd_set));
return select(m_look_end, &m_readfds, NULL, NULL, mp_timeout_timeval);
}
//------------------------------------------------------------------------------
inline int analyzeArrival(int ifd) const { return FD_ISSET(ifd, &m_readfds) ? ifd : 0; }
virtual int prepareNetwork();
private:
struct timeval m_timeout_timeval;
struct timeval *const mp_timeout_timeval;
fd_set m_readfds, m_save_fds;
};
#ifndef WIN32
//==============================================================================
class IoPoll : public IoHandler {
public:
IoPoll(int _fd_min, int _fd_max, int _fd_num);
IoPoll(const IoPoll &);
virtual ~IoPoll();
//------------------------------------------------------------------------------
inline void update() {
int ifd = 0;
m_look_start = 0;
m_look_end = m_fd_num;
for (ifd = m_fd_min; ifd <= m_fd_max; ifd++) {
if (g_fds_array[ifd]) {
int i = 0;
int active_fd_count = g_fds_array[ifd]->active_fd_count;
int *active_fd_list = g_fds_array[ifd]->active_fd_list;
assert(active_fd_list && "corrupted fds_data object");
while (active_fd_count) {
/* process active sockets in case TCP (listen sockets are set in
* prepareNetwork()) and
* skip active socket in case UDP (it is the same with set in prepareNetwork())
*/
if (active_fd_list[i] != (int)INVALID_SOCKET) {
if (active_fd_list[i] != ifd) {
mp_poll_fd_arr[m_look_end].fd = active_fd_list[i];
mp_poll_fd_arr[m_look_end].events = POLLIN | POLLPRI;
/* it is possible to set the same socket
* EEXIST error appears in this case but it harmless condition
*/
errno = 0;
m_look_end++;
}
active_fd_count--;
}
i++;
assert((i < MAX_ACTIVE_FD_NUM) &&
"maximum number of active connection to the single TCP addr:port");
}
}
}
}
//------------------------------------------------------------------------------
inline int waitArrival() { return poll(mp_poll_fd_arr, m_look_end, m_timeout_msec); }
//------------------------------------------------------------------------------
inline int analyzeArrival(int ifd) const {
assert((ifd < MAX_FDS_NUM) && "exceeded tool limitation (MAX_FDS_NUM)");
if (mp_poll_fd_arr[ifd].revents & POLLIN || mp_poll_fd_arr[ifd].revents & POLLPRI ||
mp_poll_fd_arr[ifd].revents & POLLERR || mp_poll_fd_arr[ifd].revents & POLLHUP) {
return mp_poll_fd_arr[ifd].fd;
} else {
return 0;
}
}
virtual int prepareNetwork();
private:
const int m_timeout_msec;
struct pollfd *mp_poll_fd_arr;
};
#ifndef __FreeBSD__
//==============================================================================
class IoEpoll : public IoHandler {
public:
IoEpoll(int _fd_min, int _fd_max, int _fd_num);
virtual ~IoEpoll();
//------------------------------------------------------------------------------
inline void update() {
int ifd = 0;
struct epoll_event ev = { 0, { 0 } };
m_look_start = 0;
m_look_end = m_fd_num;
m_max_events = m_fd_num;
for (ifd = m_fd_min; ifd <= m_fd_max; ifd++) {
if (g_fds_array[ifd]) {
int i = 0;
int active_fd_count = g_fds_array[ifd]->active_fd_count;
int *active_fd_list = g_fds_array[ifd]->active_fd_list;
assert(active_fd_list && "corrupted fds_data object");
while (active_fd_count) {
/* process active sockets in case TCP (listen sockets are set in
* prepareNetwork()) and
* skip active socket in case UDP (it is the same with set in prepareNetwork())
*/
if (active_fd_list[i] != (int)INVALID_SOCKET) {
if (active_fd_list[i] != ifd) {
ev.data.fd = active_fd_list[i];
ev.events = EPOLLIN | EPOLLPRI;
epoll_ctl(m_epfd, EPOLL_CTL_ADD, ev.data.fd, &ev);
/* it is possible to set the same socket
* EEXIST error appears in this case but it harmless condition
*/
errno = 0;
m_max_events++;
}
active_fd_count--;
}
i++;
assert((i < MAX_ACTIVE_FD_NUM) &&
"maximum number of active connection to the single TCP addr:port");
assert(m_max_events < MAX_FDS_NUM);
}
}
}
/* It can be omitted */
m_look_end = m_max_events;
}
//------------------------------------------------------------------------------
inline int waitArrival() {
m_look_end = epoll_wait(m_epfd, mp_epoll_events, m_max_events, m_timeout_msec);
return m_look_end;
}
//------------------------------------------------------------------------------
inline int analyzeArrival(int ifd) const {
assert((ifd < MAX_FDS_NUM) && "exceeded tool limitation (MAX_FDS_NUM)");
return mp_epoll_events[ifd].data.fd;
}
virtual int prepareNetwork();
private:
const int m_timeout_msec;
struct epoll_event *mp_epoll_events;
int m_epfd;
int m_max_events;
};
#endif
#ifdef USING_VMA_EXTRA_API
//==============================================================================
class IoSocketxtreme : public IoHandler {
public:
IoSocketxtreme(int _fd_min, int _fd_max, int _fd_num);
virtual ~IoSocketxtreme();
//------------------------------------------------------------------------------
inline void update() {
int ifd = 0;
m_look_start = 0;
m_look_end = m_fd_num;
for (ifd = m_fd_min; ifd <= m_fd_max; ifd++) {
if (g_fds_array[ifd]) {
int i = 0;
int active_fd_count = g_fds_array[ifd]->active_fd_count;
int *active_fd_list = g_fds_array[ifd]->active_fd_list;
assert(active_fd_list && "corrupted fds_data object");
while (active_fd_count) {
/* process active sockets in case TCP (listen sockets are set in
* prepareNetwork()) and
* skip active socket in case UDP (it is the same with set in prepareNetwork())
*/
if (active_fd_list[i] != (int)INVALID_SOCKET) {
active_fd_count--;
}
i++;
assert((i < MAX_ACTIVE_FD_NUM) &&
"maximum number of active connection to the single TCP addr:port");
}
}
}
}
//------------------------------------------------------------------------------
inline int waitArrival() {
m_look_end = 0;
for (m_rings_vma_comps_map_itr = m_rings_vma_comps_map.begin();
m_rings_vma_comps_map_itr != m_rings_vma_comps_map.end();
++m_rings_vma_comps_map_itr) {
int ring_fd = m_rings_vma_comps_map_itr->first;
if (!m_rings_vma_comps_map_itr->second->is_freed) {
for (int i = 0; i < m_rings_vma_comps_map_itr->second->vma_comp_list_size; i++) {
if (m_rings_vma_comps_map_itr->second->vma_comp_list[i].events &
VMA_SOCKETXTREME_PACKET) {
g_vma_api->socketxtreme_free_vma_packets(
&m_rings_vma_comps_map_itr->second->vma_comp_list[i].packet, 1);
}
}
memset(m_rings_vma_comps_map_itr->second->vma_comp_list, 0,
m_rings_vma_comps_map_itr->second->vma_comp_list_size *
sizeof(vma_completion_t));
m_rings_vma_comps_map_itr->second->is_freed = true;
m_rings_vma_comps_map_itr->second->vma_comp_list_size = 0;
}
m_rings_vma_comps_map_itr->second->vma_comp_list_size = g_vma_api->socketxtreme_poll(
ring_fd, (vma_completion_t *)(&m_rings_vma_comps_map_itr->second->vma_comp_list),
MAX_VMA_COMPS, 0);
if (m_rings_vma_comps_map_itr->second->vma_comp_list_size > 0) {
m_vma_comps_queue.push(ring_fd);
m_rings_vma_comps_map_itr->second->is_freed = false;
m_look_end += m_rings_vma_comps_map_itr->second->vma_comp_list_size;
}
}
return m_look_end;
}
//------------------------------------------------------------------------------
inline int analyzeArrival(int ifd) {
assert((ifd < MAX_FDS_NUM) && "exceeded tool limitation (MAX_FDS_NUM)");
int ring_fd = 0;
g_vma_buff = NULL;
if (!m_current_vma_ring_comp) {
ring_fd = m_vma_comps_queue.front();
m_vma_comps_queue.pop();
m_rings_vma_comps_map_itr = m_rings_vma_comps_map.find(ring_fd);
if (m_rings_vma_comps_map_itr != m_rings_vma_comps_map.end()) {
m_current_vma_ring_comp = m_rings_vma_comps_map_itr->second;
m_vma_comp_index = 0;
}
}
g_vma_comps = (vma_completion_t *)&m_current_vma_ring_comp->vma_comp_list[m_vma_comp_index];
if (g_vma_comps->events & VMA_SOCKETXTREME_NEW_CONNECTION_ACCEPTED) {
ifd = g_vma_comps->listen_fd;
} else if (g_vma_comps->events & VMA_SOCKETXTREME_PACKET) {
g_vma_buff = g_vma_comps->packet.buff_lst;
ifd = g_vma_comps->user_data;
} else if (g_vma_comps->events & (EPOLLIN | EPOLLERR | EPOLLHUP | EPOLLRDHUP)) {
ifd = g_vma_comps->user_data;
} else {
ifd = 0;
}
m_vma_comp_index++;
if (m_vma_comp_index == m_current_vma_ring_comp->vma_comp_list_size) {
m_vma_comp_index = 0;
m_current_vma_ring_comp = NULL;
}
return ifd;
}
virtual int prepareNetwork();
private:
int m_vma_comp_index;
vma_ring_comps *m_current_vma_ring_comp;
vma_comps_queue m_vma_comps_queue;
rings_vma_comps_map m_rings_vma_comps_map;
rings_vma_comps_map::iterator m_rings_vma_comps_map_itr;
};
#endif
#endif
#endif /* IOHANDLERS_H_ */
| [
"[email protected]"
] | |
1f617e9d5dd3ce8e75ef19e94e5e72b88aaf550b | 0d3a379e5e4967031fa05cc963b756251d412235 | /Solved Problems/CodeForces/CF 1133E - K Balanced Teams.cpp | 227a9bed322543a664ca357f226e3306990b956a | [] | no_license | iankury/CPP | 79d537f2bd5ed595ff06d4a0452c0368e7051c8e | d77c6f198c1c695d25e4a6453b5e03c339e11888 | refs/heads/master | 2023-03-03T03:43:27.151608 | 2021-02-14T15:10:47 | 2021-02-14T15:10:47 | 291,296,358 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 683 | cpp | #include <bits/stdc++.h>
using namespace std;
void io() { ios_base::sync_with_stdio(0), cin.tie(0); }
typedef long long ll;
typedef vector<int> vi;
int n, k;
vi a;
vector<vi> dp;
int DP(int i, int j) {
if (i >= n || j <= 0)
return 0;
int& ans = dp[i][j];
if (ans == -1) {
int ix = i;
for (; ix < n && a[ix] - a[i] < 6; ix++);
ans = max(ix - i + DP(ix, j - 1), DP(i + 1, j));
}
return ans;
}
void Solve() {
sort(begin(a), end(a));
dp.assign(n, vi(k + 1, -1));
cout << DP(0, k) << "\n";
}
int main() {
io();
while (cin >> n) {
cin >> k;
a.resize(n);
for (int i = 0; i < n; i++)
cin >> a[i];
Solve();
}
return 0;
} | [
"[email protected]"
] | |
a64e7d432459c2ebc9736e78d1e05c6be72ff64b | 228f51f4d967f1fe489eab0c743982092d82cfd9 | /Cpp_BeginnerCode/ex27.cpp | 0fe688b72ad73c4c28d47f77c9bb61d28e1e50db | [] | no_license | btbojko/Learning | 26c8ecf5d315662587f526ba9cd7da248a292d33 | af6247c49c34b0708cd03eba0b3891b65cb9ca5e | refs/heads/master | 2021-01-22T02:17:22.351591 | 2017-05-24T23:49:49 | 2017-05-24T23:49:49 | 92,346,263 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,034 | cpp | #include <iostream>
using namespace std;
class Line {
public:
int getLength(void);
Line(int len); // simple constructor
Line(const Line &obj); // copy constructor
~Line(); // destuctor
private:
int *ptr;
};
//Member function definitions including constructor
Line::Line(int len) {
cout << "Normal constructor allocating ptr" << endl;
// allocate memory for the pointer
ptr = new int;
*ptr = len;
}
Line::Line(const Line &obj){
cout << "Copy constructor allocating ptr." << endl;
ptr = new int;
*ptr = *obj.ptr; // copy the value
}
Line::~Line(void) {
cout << "Freeing memory!" << endl;
delete ptr;
}
int Line::getLength(void){
return *ptr;
}
void display(Line obj){
cout << "Length of line : " << obj.getLength() << endl;
}
// Main function for the program
int main()
{
Line line1(10);
Line line2 = line1; // this also calls copy constructor
display(line1);
display(line2);
return 0;
}
| [
"[email protected]"
] | |
b1f7bc29e5a2f8301327da0a3352fbc89b03066d | bc1c43d7ebb8fbb23d022f1554e1639285f276b2 | /osl/std/osl/misc/filePath.h | c824c879d6db1a52b17cba436ce546e1e99893d2 | [] | no_license | ai5/gpsfish | d1eafdece0c7c203c32603892ff9263a8fbcba59 | b6ed91f77478fdb51b8747e2fcd78042d79271d5 | refs/heads/master | 2020-12-24T06:54:11.062234 | 2016-07-02T20:42:10 | 2016-07-02T20:42:10 | 62,468,733 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 542 | h | /* filePath.h
*/
#ifndef OSL_MISC_CARRAY_H
#define OSL_MISC_CARRAY_H
#ifndef MINIMAL
#include <boost/filesystem/path.hpp>
#include <string>
namespace osl
{
namespace misc
{
// Converts boost::filesystem::path to a string representation.
// This function hides incompatibility among various boost::filesystem
// versions.
std::string file_string(const boost::filesystem::path& path);
}
}
#endif /* MINIMAL */
#endif /* OSL_MISC_CARRAY_H */
// ;;; Local Variables:
// ;;; mode:c++
// ;;; c-basic-offset:2
// ;;; End:
| [
"[email protected]"
] | |
5cad25546b92ae33626f6ef41d5352e50b1c948c | 8a75ac9e79df27e9dcf18fa1cb4122ed5499d185 | /library/Include/IEC_Datatype.h | a6c4ef82b272431542fe07bd43e46b8aecfccec7 | [] | no_license | OpenAutomationTechnologies/openCONFIGURATOR_library | 22a12eb64abe1860c9640bdc48c3c73afcd7b13a | b22f41c2320230de865e209d902628f6274a5bdb | refs/heads/master | 2020-04-12T18:07:28.389622 | 2018-04-03T07:27:13 | 2018-04-03T07:27:13 | 30,296,686 | 11 | 4 | null | 2017-03-20T14:49:51 | 2015-02-04T11:57:37 | C++ | UTF-8 | C++ | false | false | 4,054 | h | /************************************************************************
\file IEC_Datatype.h
\brief Implementation of the Enumeration IEC_Datatype
\author rueckerc, Bernecker+Rainer Industrie Elektronik Ges.m.b.H.
\date 01-May-2015 12:00:00
************************************************************************/
/*------------------------------------------------------------------------------
Copyright (c) 2015, Bernecker+Rainer Industrie-Elektronik Ges.m.b.H. (B&R)
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the copyright holders nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------*/
#if !defined IEC_DATATYPE_H
#define IEC_DATATYPE_H
#include <cstdint>
namespace IndustrialNetwork
{
namespace POWERLINK
{
namespace Core
{
namespace ObjectDictionary
{
/**
\brief Represents an IEC data type.
\author rueckerc, Bernecker+Rainer Industrie Elektronik Ges.m.b.H.
*/
enum class IEC_Datatype : std::int8_t
{
UNDEFINED = -1, //!< Undefined
BITSTRING = 0, //!< Bit string (1 bit)
BOOL, //!< Bool (1 bit)
BYTE, //!< Byte (8 bit)
_CHAR, //!< Char (8 bit)
WORD, //!< Word (16 bit)
DWORD, //!< Dword (32 bit)
LWORD, //!< Lword (64 bit)
SINT, //!< Signed short integer (1 byte)
INT, //!< Signed integer (2 byte)
DINT, //!< Double integer (4 byte)
LINT, //!< Long integer (8 byte)
USINT, //!< Unsigned short integer (1 byte)
UINT, //!< Unsigned integer (2 byte)
UDINT, //!< Unsigned double integer (4 byte)
ULINT, //!< Unsigned long integer (8 byte)
REAL, //!< REAL (4 byte)
LREAL, //!< LREAL (8 byte)
STRING, //!< STRING
WSTRING //!< WSTRING to hold multi byte string
};
/*
static const std::string IECDatatypeValues[] =
{
"BITSTRING",
"BOOL",
"BYTE",
"CHAR",
"WORD",
"DWORD",
"LWORD",
"SINT",
"INT",
"DINT",
"LINT",
"USINT",
"UINT",
"UDINT",
"ULINT",
"REAL",
"LREAL",
"STRING",
"WSTRING"
};
*/
//To be downwardly compatiblel with the old openCONFIGURATOR
static const std::string IECDatatypeValues[] =
{
"BITSTRING",
"BOOL",
"BYTE",
"CHAR",
"WORD",
"DWORD",
"LWORD",
"Integer8",
"Integer16",
"Integer32",
"Integer64",
"Unsigned8",
"Unsigned16",
"Unsigned32",
"Unsigned64",
"REAL",
"LREAL",
"STRING",
"WSTRING"
};
}
}
}
}
#endif
| [
"[email protected]"
] | |
2dc7ce911bc896ed39f2e8a90b086e99438abc9d | 63047f50b83f93d9ae96c222bd3f4d6910cf943f | /src/daemons/db_file_transfer.cpp | 1b6b22888a431f279d16bf5405579658695885d3 | [
"MIT"
] | permissive | jshack02/Core | 1073f84d89049c56c878b77d631790ca068a2dbf | 6b2dbb87995604f8f63d9a95d5cd89b171c12205 | refs/heads/master | 2021-01-21T07:21:07.736883 | 2014-12-01T22:01:27 | 2014-12-01T22:01:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,147 | cpp | // citation: send,recv file
// from http://stackoverflow.com/questions/25634483/send-binary-file-over-tcp-ip-connection
#include "global.h"
#include "state.h"
#include "src/util/socket-util.h"
#include "src/partition/partition.db"
#include "db_file_transfer.h"
static bool senddata(int sock, void *buf, int buflen)
{
unsigned char *pbuf = (unsigned char *) buf;
while (buflen > 0)
{
int num = send(sock, pbuf, buflen, 0);
if (num == SOCKET_ERROR)
{
return false;
}
pbuf += num;
buflen -= num;
}
return true;
}
static bool sendlong(int sock, long value)
{
value = htonl(value);
return senddata(sock, &value, sizeof(value));
}
static bool sendfile(int sock, long partition_id, FILE *f)
{
fseek(f, 0, SEEK_END);
long filesize = ftell(f);
rewind(f);
if (filesize == EOF)
return false;
if (!sendlong(sock, filesize))
return false;
if (!sendlong(sock, filesize))
return false;
if (filesize > 0)
{
char buffer[1024];
do
{
size_t num = min(filesize, sizeof(buffer));
num = fread(buffer, 1, num, f);
if (num < 1)
return false;
if (!senddata(sock, buffer, num, 0))
return false;
filesize -= num;
}
while (filesize > 0);
}
return true;
}
static bool readdata(int sock, void *buf, int buflen)
{
unsigned char *pbuf = (unsigned char *) buf;
while (buflen > 0)
{
int num = recv(sock, pbuf, buflen, 0);
if (num == SOCKET_ERROR)
{
return false;
}
else if (num == 0)
return false;
pbuf += num;
buflen -= num;
}
return true;
}
static bool readlong(int sock, long *value)
{
if (!readdata(sock, value, sizeof(value)))
return false;
*value = ntohl(*value);
return true;
}
static const long kReadFileFailure = -1;
static long readfile(int sock,FILE *f)
{
int partition_id;
if (!sendLong(sock, partition_id))
return kReadFileFailure;
long filesize;
if (!readlong(sock, &filesize))
return kReadFileFailure;
if (filesize > 0)
{
char buffer[1024];
do
{
int num = min(filesize, sizeof(buffer));
if (!readdata(sock, buffer, num))
return kReadFileFailure;
int offset = 0;
do
{
size_t written = fwrite(&buffer[offset], 1, num-offset, f);
if (written < 1)
return kReadFileFailure;
offset += written;
}
while (offset < num);
filesize -= num;
}
while (filesize > 0);
}
return partition_id;
}
bool ReceiveDBFile(int sockfd)
{
std::string tmp_file = "db_transfer.tmp";
FILE *fh = fopen(filename.c_str(), "wb");
long partition_id_long = readfile(sockfd);
fclose(fh);
if (partition_id_long == kReadFileFailure)
{
return false;
}
partition_t partition_id = (partition_t) partition_id_long;
std::string partition_filename = GetPartitionDBFilename(partition_id);
g_current_node_state.partition_map_lock.acquireWRLock(); // 1
assert(g_current_node_state.partition_map.find(partition_id)
!= g_current_node_state.partition_map.end());
PartitionMetadata pm = g_current_node_state.partition_map[partition_id];
if (pm.state == RECEIVING)
{
rename(tmp_file.c_str(), partition_filename);
pm.db = new PartitionDB(partition_filename);
g_current_node_state.state = RECEIVED;
g_current_node_state.partition_map[partition_id] = pm;
g_current_node_state.savePartitionState[g_owned_partition_state_filename];
}
g_current_node_state.partition_map_lock.releaseWRLock(); // 1
return true;
}
bool SendDBFile(int sockfd, std::string &hostname, std::string &filename, partition_t partition_id)
{
long partition_id_long = partition_id;
FILE *fh = fopen(filename.c_str(), "rb");
if (!fh)
{
throw "could not open db file for transfer";
}
return sendfile(sockfd, partition_id, fh);
} | [
"jhong93"
] | jhong93 |
df318fd326a844d7d8707489eab54554c762b8b9 | 30af35119e9af091dce84c50be966fbbce7eab9b | /oldboy/oldboy/RMchildJudgeMessage.cpp | 6106f615aec060b2e9a43d33a6f28266eac177dd | [] | no_license | blastingzone/oldboy | 2e0d41a4b566345dec9de21b2567f19ca2fe9c7f | a935b0c226dd74740c69797f3b7ca555d2586728 | refs/heads/master | 2021-01-17T14:42:32.106393 | 2013-12-24T06:42:20 | 2013-12-24T06:42:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 843 | cpp | #include "stdafx.h"
#include "RMchildJudgeMessage.h"
#include "RMmainLoop.h"
#include "RMjudgeManager.h"
CRMchildJudgeMessage::CRMchildJudgeMessage(void)
{
}
CRMchildJudgeMessage::~CRMchildJudgeMessage(void)
{
}
void CRMchildJudgeMessage::Update()
{
SetVisibleByScene();
if ( m_Scene != CRMmainLoop::GetInstance()->GetNowScene() )
{
CRMjudgeManager::GetInstance()->InitializeJudgeType();
m_WidgetType = WIDGET_PLAY_JUDGE_NONE;
return;
}
JudgeType judgeType = CRMjudgeManager::GetInstance()->GetJudgeType( m_PlayerNumber );
switch ( judgeType )
{
case JUDGE_PERFECT:
m_WidgetType = WIDGET_PLAY_JUDGE_PERFECT;
break;
case JUDGE_GOOD:
m_WidgetType = WIDGET_PLAY_JUDGE_GOOD;
break;
case JUDGE_MISS:
m_WidgetType = WIDGET_PLAY_JUDGE_MISS;
break;
default:
m_WidgetType = WIDGET_PLAY_JUDGE_NONE;
break;
}
} | [
"[email protected]"
] | |
3a0f2596685cb7069629a90585e397ddbde167a4 | a607d0aec8e923a7ef6a970f0313d79da7606097 | /Project/Online.cpp | 9254629135e51adb92f5829226df5690cda413a6 | [] | no_license | sulaimantok/Struct | 32e43cf891419631e513038d503f9bd44b0763d1 | c88108f9bdf275fab2b41a0592d5acce1ceacb02 | refs/heads/master | 2020-08-30T17:24:03.339429 | 2019-11-30T04:49:44 | 2019-11-30T04:49:44 | 218,443,465 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,612 | cpp | #include "Online.h"
Online::pembayaran() {
}
Online::~pembayaran() {
};
LinkedList Online::XMLToLinkedList() {
OperationFile File2("pembayaran.xml");
string isifile = File2.getFile();
LinkedList LinkedList1;
vector<string> jenis = File2.getData(isifile, "jenis");
vector<string> harga = File2.getData(isifile, "harga");
vector<string> tanggal = File2.getData(isifile, "tanggal");
vector<string> waktu = File2.getData(isifile, "waktu");
vector<string> info = File2.getData(isifile, "info");
vector<string> metode = File2.getData(isifile, "metode");
vector<linkedlist> data;
for (int i = 0; i < jenis.size(); i++) {
data.push_back(linkedlist());
data[i].jenis = jenis[i];
data[i].harga = harga[i];
data[i].tanggal = tanggal[i];
data[i].waktu = waktu[i];
data[i].info = info[i];
data[i].metode = metode[i];
LinkedList1.AddLast(data[i].jenis, data[i].harga, data[i].tanggal, data[i].waktu, data[i].info,data[i].metode);
}
return LinkedList1;
}
void Online::SaveToXML(string jenis, string harga, string tanggal, string waktu, string info,string metode) {
OperationFile File2("/home/sulaiman/ngoding/c++_C/Struktur/Project/pembayaran.xml");
string isiFile = File2.getFile();
size_t location=isiFile.find("</trasaksi>");
string input = "\n\t<jenis>" + jenis + "</jenis>\n\t<Harga>" + harga + "</Harga>\n\t<tanggal>" + tanggal + "</tanggal>\n\t<waktu>" + waktu + "</waktu>\n\t<info>" + info + "</info>\n\t<metode>" + metode + "</metode>";
if(location!=string::npos) isiFile.insert(location - 1, input);
else cout << "</trasaksi> tidak Ditemukan\n";
File2.OverwriteToFile(isiFile);
} | [
"[email protected]"
] | |
271cccd5a131e65bff07af273a2b70313feb0941 | 3224a2791c71895235e33c3e4c4319ab6139d0f6 | /07-irtree-build/symbol_table/ScopeLayerTree.cpp | 68aaeee7b6c262a58b88edd25e6ca72e1d9cc099 | [] | no_license | akhtyamovpavel/CompilersCourse | de681e0734a33d0f95d1094b9a39b95d2b2943ee | 8475bcb9c49e25996758f04524a11c5800163170 | refs/heads/master | 2023-04-13T07:03:11.191364 | 2022-11-19T17:04:09 | 2022-11-19T17:04:09 | 241,050,653 | 45 | 32 | null | 2021-04-17T22:20:09 | 2020-02-17T08:00:14 | C++ | UTF-8 | C++ | false | false | 956 | cpp | #include "ScopeLayerTree.h"
ScopeLayerTree::ScopeLayerTree(ScopeLayer* root) : root_(root) {}
ScopeLayerTree::~ScopeLayerTree() {
}
void ScopeLayerTree::PrintTree(const std::string& filename) {
stream_ = std::ofstream(filename);
root_->PrintLayer(stream_, 0);
stream_.close();
}
ScopeLayerTree::ScopeLayerTree(const ScopeLayerTree &other) {
root_ = other.root_;
layer_mapping_ = other.layer_mapping_;
}
void ScopeLayerTree::AddMapping(Symbol name, ScopeLayer *layer) {
if (layer_mapping_.find(name) != layer_mapping_.end()) {
throw std::runtime_error("Function has already been declared");
}
layer_mapping_[name] = layer;
}
ScopeLayer *ScopeLayerTree::GetFunctionScopeByName(Symbol name) {
if (layer_mapping_.find(name) == layer_mapping_.end()) {
throw std::runtime_error("No such function");
}
return layer_mapping_[name];
}
std::shared_ptr<Type> ScopeLayerTree::Get(Symbol symbol) {
return root_->Get(symbol);
}
| [
"[email protected]"
] | |
b4c7277f121ef929997eeb43a7a970bcdd98bacb | 7a8ba610ac92c458e77ac533020e59547c8c06da | /xerces/xerces-c-3.2.0/src/xercesc/internal/XSerializable.hpp | 5e3a33c0289f0536ccb4294bf0c86fde3313ced0 | [
"BSD-3-Clause",
"Apache-2.0"
] | permissive | DolbyLaboratories/pmd_tool | b29dc50400024f7da3ba651675ced360c7d4b91c | 4c6d27df5f531d488a627f96f489cf213cbf121a | refs/heads/master | 2022-10-23T19:45:29.418814 | 2021-08-13T03:13:47 | 2021-08-13T03:13:47 | 160,738,449 | 16 | 0 | BSD-3-Clause | 2021-08-13T03:13:48 | 2018-12-06T22:07:14 | C++ | UTF-8 | C++ | false | false | 3,730 | hpp | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
/*
* $Id: XSerializable.hpp 527149 2007-04-10 14:56:39Z amassari $
*/
#if !defined(XERCESC_INCLUDE_GUARD_XSERIALIZABLE_HPP)
#define XERCESC_INCLUDE_GUARD_XSERIALIZABLE_HPP
#include <xercesc/internal/XSerializeEngine.hpp>
#include <xercesc/internal/XProtoType.hpp>
XERCES_CPP_NAMESPACE_BEGIN
class XMLUTIL_EXPORT XSerializable
{
public :
// -----------------------------------------------------------------------
// Constructors and Destructor
// -----------------------------------------------------------------------
virtual ~XSerializable() {} ;
// -----------------------------------------------------------------------
// Serialization Interface
// -----------------------------------------------------------------------
virtual bool isSerializable() const = 0;
virtual void serialize(XSerializeEngine& ) = 0;
virtual XProtoType* getProtoType() const = 0;
protected:
XSerializable() {}
XSerializable(const XSerializable& ) {}
private:
// -----------------------------------------------------------------------
// Unimplemented assignment operator
// -----------------------------------------------------------------------
XSerializable& operator=(const XSerializable&);
};
inline void XSerializable::serialize(XSerializeEngine& )
{
}
/***
* Macro to be included in XSerializable derivatives'
* declaration's public section
***/
#define DECL_XSERIALIZABLE(class_name) \
public: \
\
DECL_XPROTOTYPE(class_name) \
\
virtual bool isSerializable() const ; \
virtual XProtoType* getProtoType() const; \
virtual void serialize(XSerializeEngine&); \
\
inline friend XSerializeEngine& operator>>(XSerializeEngine& serEng \
, class_name*& objPtr) \
{objPtr = (class_name*) serEng.read(XPROTOTYPE_CLASS(class_name)); \
return serEng; \
};
/***
* Macro to be included in the implementation file
* of XSerializable derivatives' which is instantiable
***/
#define IMPL_XSERIALIZABLE_TOCREATE(class_name) \
IMPL_XPROTOTYPE_TOCREATE(class_name) \
IMPL_XSERIAL(class_name)
/***
* Macro to be included in the implementation file
* of XSerializable derivatives' which is UN-instantiable
***/
#define IMPL_XSERIALIZABLE_NOCREATE(class_name) \
IMPL_XPROTOTYPE_NOCREATE(class_name) \
IMPL_XSERIAL(class_name)
/***
* Helper Macro
***/
#define IMPL_XSERIAL(class_name) \
bool class_name::isSerializable() const \
{return true; } \
XProtoType* class_name::getProtoType() const \
{return XPROTOTYPE_CLASS(class_name); }
#define IS_EQUIVALENT(lptr, rptr) \
if (lptr == rptr) \
return true; \
if (( lptr && !rptr) || (!lptr && rptr)) \
return false;
XERCES_CPP_NAMESPACE_END
#endif
| [
"[email protected]"
] | |
2801d62c819aec697d15f1e32510293956656bfe | 5db65f1f69865c5fb1a56fddcf760456a48308ba | /LearningClimbingMovementsSourceFile/src/mKDTree.h | 5aaa86214c77e0421ea97a92399aeedd318bd3ba | [] | no_license | KooroshNaderi/LearningClimbingMovements | 91b3b15e1674b5b2fc4dac9aaebb9e550f405d09 | 024b4f196e848b5b4b7d8fd3aec1fbc355dad8fc | refs/heads/master | 2020-05-02T15:58:52.590718 | 2019-03-28T13:36:27 | 2019-03-28T13:36:27 | 178,056,925 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 18,298 | h | #include <vector>
/// <summary>
/// This class implements a <code>PriorityQueue</code>. This class
/// is implemented in such a way that objects are added using an
/// <code>add</code> function. The <code>add</code> function takes
/// two parameters an object and a long.
/// <p>
/// The object represents an item in the queue, the long indicates
/// its priority in the queue. The remove function in this class
/// returns the object first in the queue and that object is removed
/// from the queue permanently.
///
/// @author Simon Levy
/// Translation by Marco A. Alvarez
/// </summary>
template <typename T>
class PriorityQueue
{
private:
/**
* The maximum priority possible in this priority queue.
*/
double maxPriority;
/**
* This contains the list of objects in the queue.
*/
std::vector<T*> data;
/**
* This contains the list of prioritys in the queue.
*/
std::vector<double> value;
/**
* Holds the number of elements currently in the queue.
*/
int count;
/**
* This holds the number elements this queue can have.
*/
int capacity;
/**
* This is an initializer for the object. It basically initializes
* an array of long called value to represent the prioritys of
* the objects, it also creates an array of objects to be used
* in parallel with the array of longs, to represent the objects
* entered, these can be used to sequence the data.
*
* @param size the initial capacity of the queue, it can be
* resized
*/
void init(int size)
{
maxPriority = DBL_MAX;
count = 0;
capacity = size;
data = std::vector<T*>(capacity + 1);
value = std::vector<double>(capacity + 1);
value[0] = maxPriority;
data[0] = nullptr;
}
/**
* Bubble down is used to put the element at subscript 'pos' into
* it's rightful place in the heap (i.e heap is another name
* for <code>PriorityQueue</code>). If the priority of an element
* at subscript 'pos' is less than it's children then it must
* be put under one of these children, i.e the ones with the
* maximum priority must come first.
*
* @param pos is the position within the arrays of the element
* and priority
*/
void bubbleDown(int pos)
{
T* element = data[pos];
double priority = value[pos];
int child;
/* hole is position '1' */
for (; pos * 2 <= count; pos = child)
{
child = pos * 2;
/* if 'child' equals 'count' then there
is only one leaf for this parent */
if (child != count)
/* left_child > right_child */
if (value[child] < value[child + 1])
child++; /* choose the biggest child */
/* percolate down the data at 'pos', one level
i.e biggest child becomes the parent */
if (priority < value[child])
{
value[pos] = value[child];
data[pos] = data[child];
}
else
{
break;
}
}
value[pos] = priority;
data[pos] = element;
}
/**
* Bubble up is used to place an element relatively low in the
* queue to it's rightful place higher in the queue, but only
* if it's priority allows it to do so, similar to bubbleDown
* only in the other direction this swaps out its parents.
*
* @param pos the position in the arrays of the object
* to be bubbled up
*/
void bubbleUp(int pos)
{
T* element = data[pos];
double priority = value[pos];
/* when the parent is not less than the child, end*/
while (value[pos / 2] < priority)
{
/* overwrite the child with the parent */
value[pos] = value[pos / 2];
data[pos] = data[pos / 2];
pos /= 2;
}
value[pos] = priority;
data[pos] = element;
}
/**
* This ensures that there is enough space to keep adding elements
* to the priority queue. It is however advised to make the capacity
* of the queue large enough so that this will not be used as it is
* an expensive method. This will copy across from 0 as 'off' equals
* 0 is contains some important data.
*/
void expandCapacity()
{
capacity = count * 2;
std::vector<T*> elements = std::vector<T*>(count + 1);
std::vector<double> prioritys = std::vector<double>(count + 1);
data.insert(data.end(), elements.begin(), elements.end());
value.insert(value.end(), prioritys.begin(), prioritys.end());
}
public:
/**
* Creates a new <code>PriorityQueue</code> object. The
* <code>PriorityQueue</code> object allows objects to be
* entered into the queue and to leave in the order of
* priority i.e the highest priority get's to leave first.
*/
PriorityQueue()
{
init(20);
}
/**
* Creates a new <code>PriorityQueue</code> object. The
* <code>PriorityQueue</code> object allows objects to
* be entered into the queue an to leave in the order of
* priority i.e the highest priority get's to leave first.
*
* @param capacity the initial capacity of the queue before
* a resize
*/
PriorityQueue(int capacity)
{
init(capacity);
}
/**
* Creates a new <code>PriorityQueue</code> object. The
* <code>PriorityQueue</code> object allows objects to
* be entered into the queue an to leave in the order of
* priority i.e the highest priority get's to leave first.
*
* @param capacity the initial capacity of the queue before
* a resize
* @param maxPriority is the maximum possible priority for
* an object
*/
PriorityQueue(int capacity, double maxPriority)
{
init(capacity);
this->maxPriority = maxPriority;
}
/**
* This function adds the given object into the <code>PriorityQueue</code>,
* its priority is the long priority. The way in which priority can be
* associated with the elements of the queue is by keeping the priority
* and the elements array entrys parallel.
*
* @param element is the object that is to be entered into this
* <code>PriorityQueue</code>
* @param priority this is the priority that the object holds in the
* <code>PriorityQueue</code>
*/
void add(T* element, double priority)
{
if (count++ >= capacity)
{
expandCapacity();
}
/* put this as the last element */
value[count] = priority;
data[count] = element;
bubbleUp(count);
}
/**
* Remove is a function to remove the element in the queue with the
* maximum priority. Once the element is removed then it can never be
* recovered from the queue with further calls. The lowest priority
* object will leave last.
*
* @return the object with the highest priority or if it's empty
* null
*/
T* remove()
{
if (count == 0)
return nullptr;
T* element = data[1];
/* swap the last element into the first */
data[1] = data[count];
value[1] = value[count];
/* let the GC clean up */
data[count] = nullptr;
value[count] = 0L;
count--;
bubbleDown(1);
return element;
}
T* front()
{
return data[1];
}
double getMaxPriority()
{
return value[1];
}
/**
* This method will empty the queue. This also helps garbage
* collection by releasing any reference it has to the elements
* in the queue. This starts from offset 1 as off equals 0
* for the elements array.
*/
void clear()
{
for (int i = 1; i < count; i++)
{
data[i] = nullptr; /* help gc */
}
count = 0;
}
/**
* The number of elements in the queue. The length
* indicates the number of elements that are currently
* in the queue.
*
* @return the number of elements in the queue
*/
int length()
{
return count;
}
};
template <typename T>
class NearestNeighborList
{
public:
int REMOVE_HIGHEST;
int REMOVE_LOWEST;
PriorityQueue<T> m_Queue;
int m_Capacity;
// constructor
NearestNeighborList(int capacity)
{
REMOVE_HIGHEST = 1;
REMOVE_LOWEST = 2;
m_Capacity = capacity;
m_Queue = PriorityQueue<T>(m_Capacity, DBL_MAX);
}
double getMaxPriority()
{
if (m_Queue.length() == 0)
{
return DBL_MAX;
}
return m_Queue.getMaxPriority();
}
bool insert(T* _object, double priority)
{
if (m_Queue.length() < m_Capacity)
{
// capacity not reached
m_Queue.add(_object, priority);
return true;
}
if (priority > m_Queue.getMaxPriority())
{
// do not insert - all elements in queue have lower priority
return false;
}
// remove object with highest priority
m_Queue.remove();
// add new object
m_Queue.add(_object, priority);
return true;
}
bool isCapacityReached()
{
return m_Queue.length() >= m_Capacity;
}
T* getHighest()
{
return m_Queue.front();
}
bool isEmpty()
{
return m_Queue.length() == 0;
}
int getSize()
{
return m_Queue.length();
}
T* removeHighest()
{
// remove object with highest priority
return m_Queue.remove();
}
};
class HRect
{
public:
std::vector<double> min;
std::vector<double> max;
HRect()
{
}
HRect(int ndims)
{
min = std::vector<double>(ndims);
max = std::vector<double>(ndims);
}
HRect(std::vector<double> vmin, std::vector<double> vmax)
{
min = vmin;
max = vmax;
}
HRect clone()
{
return HRect(min, max);
}
std::vector<double> closest(std::vector<double> t)
{
std::vector<double> p = std::vector<double>(t.size());
for (unsigned int i = 0; i < t.size(); ++i)
{
if (t[i] <= min[i])
{
p[i] = min[i];
}
else if (t[i] >= max[i])
{
p[i] = max[i];
}
else
{
p[i] = t[i];
}
}
return p;
}
static HRect infiniteHRect(int d)
{
std::vector<double> vmin = std::vector<double>(d);
std::vector<double> vmax = std::vector<double>(d);
for (int i = 0; i < d; ++i)
{
vmin[i] = -DBL_MAX;
vmax[i] = DBL_MAX;
}
return HRect(vmin, vmax);
}
};
template <typename L>
class KDNode
{
public:
std::vector<double> _k;
L _v;
KDNode* _left, *_right;
bool _deleted;
// constructor is used only by class; other methods are static
KDNode(std::vector<double> key, L val)
{
_k = key;
_v = val;
_left = nullptr;
_right = nullptr;
_deleted = false;
}
static bool equals(std::vector<double> k1, std::vector<double> k2)
{
for (unsigned int i = 0; i < k1.size(); ++i)
if (k1[i] != k2[i])
return false;
return true;
}
static double sqrdist(std::vector<double> x, std::vector<double> y)
{
double dist = 0;
for (unsigned int i = 0; i < x.size(); ++i)
{
double diff = (x[i] - y[i]);
dist += (diff * diff);
}
return dist;
}
static double eucdist(std::vector<double> x, std::vector<double> y)
{
return std::sqrt(sqrdist(x, y));
}
// Method insert
static KDNode* ins(std::vector<double> key, L val, KDNode *t, int lev, int K)
{
if (t == nullptr)
{
t = new KDNode(key, val);
}
else if (equals(key, t->_k))
{
// "re-insert"
if (t->_deleted)
{
t->_deleted = false;
t->_v = val;
}
//else
//{
// //return nullptr;//throw (new KeyDuplicateException());
//}
}
else if (key[lev] > t->_k[lev])
{
t->_right = ins(key, val, t->_right, (lev + 1) % K, K);
}
else
{
t->_left = ins(key, val, t->_left, (lev + 1) % K, K);
}
return t;
}
static KDNode* NodeDelete(std::vector<double> key, KDNode* t, int lev, int K, bool& deleted) {
if (t == nullptr)
return nullptr;
if (!t->_deleted && equals(key, t->_k))
{
t->_deleted = true;
deleted = true;
delete t->_v;
t->_v = nullptr;
}
else if (key[lev] > t->_k[lev])
{
t->_right = NodeDelete(key, t->_right, (lev + 1) % K, K, deleted);
}
else
{
t->_left = NodeDelete(key, t->_left, (lev + 1) % K, K, deleted);
}
if (!t->_deleted || t->_left != nullptr || t->_right != nullptr)
{
return t;
}
else
{
return nullptr;
}
}
static void deleteNodes(KDNode *t)
{
if (t == nullptr)
{
return;
}
else
{
delete t->_v;
deleteNodes(t->_right);
deleteNodes(t->_left);
}
return;
}
// Method Nearest Neighbor from Andrew Moore's thesis. Numbered
// comments are direct quotes from there. Step "SDL" is added to
// make the algorithm work correctly. NearestNeighborList solution
// courtesy of Bjoern Heckel.
static void nnbr(KDNode* kd, std::vector<double>* target, HRect* hr,
double max_dist_sqd, int lev, int K,
NearestNeighborList<KDNode>* nnl)
{
// 1. if kd is empty then set dist-sqd to infinity and exit.
if (kd == nullptr)
{
return;
}
// 2. s := split field of kd
int s = lev % K;
// 3. pivot := dom-elt field of kd
std::vector<double> pivot = kd->_k;
double pivot_to_target = sqrdist(pivot, *target);
// 4. Cut hr into to sub-hyperrectangles left-hr and right-hr.
// The cut plane is through pivot and perpendicular to the s
// dimension.
HRect left_hr = *hr; // optimize by not cloning
HRect right_hr = hr->clone();
left_hr.max[s] = pivot[s];
right_hr.min[s] = pivot[s];
// 5. target-in-left := target_s <= pivot_s
bool target_in_left = (*target)[s] < pivot[s];
KDNode* nearer_kd;
HRect nearer_hr;
KDNode* further_kd;
HRect further_hr;
// 6. if target-in-left then
// 6.1. nearer-kd := left field of kd and nearer-hr := left-hr
// 6.2. further-kd := right field of kd and further-hr := right-hr
if (target_in_left)
{
nearer_kd = kd->_left;
nearer_hr = left_hr;
further_kd = kd->_right;
further_hr = right_hr;
}
//
// 7. if not target-in-left then
// 7.1. nearer-kd := right field of kd and nearer-hr := right-hr
// 7.2. further-kd := left field of kd and further-hr := left-hr
else
{
nearer_kd = kd->_right;
nearer_hr = right_hr;
further_kd = kd->_left;
further_hr = left_hr;
}
// 8. Recursively call Nearest Neighbor with paramters
// (nearer-kd, target, nearer-hr, max-dist-sqd), storing the
// results in nearest and dist-sqd
nnbr(nearer_kd, target, &nearer_hr, max_dist_sqd, lev + 1, K, nnl);
KDNode* nearest = (KDNode*)nnl->getHighest();
double dist_sqd;
if (!nnl->isCapacityReached())
{
dist_sqd = DBL_MAX;
}
else
{
dist_sqd = nnl->getMaxPriority();
}
// 9. max-dist-sqd := minimum of max-dist-sqd and dist-sqd
max_dist_sqd = std::min(max_dist_sqd, dist_sqd);
// 10. A nearer point could only lie in further-kd if there were some
// part of further-hr within distance sqrt(max-dist-sqd) of
// target. If this is the case then
std::vector<double> closest = further_hr.closest(*target);
if (eucdist(closest, *target) < std::sqrt(max_dist_sqd))
{
// 10.1 if (pivot-target)^2 < dist-sqd then
if (pivot_to_target < dist_sqd)
{
// 10.1.1 nearest := (pivot, range-elt field of kd)
nearest = kd;
// 10.1.2 dist-sqd = (pivot-target)^2
dist_sqd = pivot_to_target;
// add to nnl
if (!kd->_deleted)
{
nnl->insert(kd, dist_sqd);
}
// 10.1.3 max-dist-sqd = dist-sqd
// max_dist_sqd = dist_sqd;
if (nnl->isCapacityReached())
{
max_dist_sqd = nnl->getMaxPriority();
}
else
{
max_dist_sqd = DBL_MAX;
}
}
// 10.2 Recursively call Nearest Neighbor with parameters
// (further-kd, target, further-hr, max-dist_sqd),
// storing results in temp-nearest and temp-dist-sqd
nnbr(further_kd, target, &further_hr, max_dist_sqd, lev + 1, K, nnl);
KDNode* temp_nearest = (KDNode*)nnl->getHighest();
double temp_dist_sqd = nnl->getMaxPriority();
// 10.3 If tmp-dist-sqd < dist-sqd then
if (temp_dist_sqd < dist_sqd)
{
// 10.3.1 nearest := temp_nearest and dist_sqd := temp_dist_sqd
nearest = temp_nearest;
dist_sqd = temp_dist_sqd;
}
}
// SDL: otherwise, current point is nearest
else if (pivot_to_target < max_dist_sqd)
{
nearest = kd;
dist_sqd = pivot_to_target;
}
}
};
template <typename L>
class KDTree
{
public:
KDTree(int k)
{
m_K = k;
m_root = nullptr;
m_count = 0;
}
/**
* Find KD-tree node whose key is nearest neighbor to
* key. Implements the Nearest Neighbor algorithm (Table 6.4) of
*
* @param key key for KD-tree node
*
* @return object at node nearest to key, or null on failure
*
* @throws KeySizeException if key.length mismatches K
*/
L nearest(std::vector<double> key)//, std::vector<double>& ks)
{
//std::vector<std::vector<double>> Ks;
std::vector<L> nbrs = nearest(key, 1);//, Ks);
if (nbrs.size() == 0)
{
// ks = std::vector<double>();
return -1;
}
// ks = Ks[0];
return nbrs[0];
}
/**
* Find KD-tree nodes whose keys are <I>n</I> nearest neighbors to
* key. Uses algorithm above. Neighbors are returned in ascending
* order of distance to key.
*
* @param key key for KD-tree node
* @param n how many neighbors to find
*
* @return objects at node nearest to key, or null on failure
*
* @throws KeySizeException if key.length mismatches K
* @throws IllegalArgumentException if <I>n</I> is negative or
* exceeds tree size
*/
std::vector<L> nearest(std::vector<double> key, int n)//, std::vector<std::vector<double>>& Ks)
{
if (n < 0)
{
return std::vector<L>();// throw new ArgumentException("Number of neighbors cannot be negative or greater than number of nodes");
}
if (n > m_count)
{
n = m_count;
}
if (n == 0)
{
return std::vector<L>();
}
if (key.size() != m_K)
{
return std::vector<L>(); //throw new KeySizeException();
}
std::vector<L> nbrs = std::vector<L>();
NearestNeighborList<KDNode<L>> nnl(n);
// initial call is with infinite hyper-rectangle and max distance
HRect hr = HRect::infiniteHRect(key.size());
double max_dist_sqd = DBL_MAX;
KDNode<L>::nnbr(m_root, &key, &hr, max_dist_sqd, 0, m_K, &nnl);
for (int i = 0; i < n; ++i)
{
KDNode<L>* kd = (KDNode<L>*)nnl.removeHighest();
nbrs.push_back(kd->_v);
// Ks.push_back(kd->_k);
}
return nbrs;
}
/**
* Insert a node in a KD-tree.
*
* @param key key for KD-tree node
* @param value value at that key
*
* @throws KeySizeException if key.length mismatches K
* @throws KeyDuplicateException if key already in tree
*/
void insert(std::vector<double> key, L value)
{
if (key.size() != m_K)
{
return;
}
else
{
m_root = KDNode<L>::ins(key, value, m_root, 0, m_K);
}
m_count++;
}
bool deleteNode(std::vector<double> key)
{
if (key.size() != m_K)
{
return false;
}
else
{
bool deleted = false;
m_root = KDNode<L>::NodeDelete(key, m_root, 0, m_K, deleted);
if (deleted == false)
{
return false; // throw new KeyMissingException();
}
m_count--;
}
return true;
}
void clear()
{
KDNode<L>::deleteNodes(m_root);
}
private:
// K = number of dimensions
int m_K;
// root of KD-tree
KDNode<L>* m_root;
// count of nodes
int m_count;
}; | [
"[email protected]"
] | |
07208c5bd562d2b84f6d22ce21762f2b00607903 | c976078bf8dde5baf96416d60dd3bb06c72111ad | /src/cpp/rtps/flowcontrol/FlowController.hpp | 934e31aaea5e682a2983342f51a6b40e2071122c | [
"Apache-2.0"
] | permissive | eProsima/Fast-DDS | 21f3fecacca5a285ad9950b7683456c6f9930a4d | 107ea8d64942102696840cd7d3e4cf93fa7a143e | refs/heads/master | 2023-08-31T14:56:45.942016 | 2023-08-11T11:40:25 | 2023-08-11T11:40:25 | 20,296,703 | 1,225 | 463 | Apache-2.0 | 2023-09-14T11:33:09 | 2014-05-29T14:36:15 | C++ | UTF-8 | C++ | false | false | 3,391 | hpp | #ifndef _RTPS_FLOWCONTROL_FLOWCONTROLLER_HPP_
#define _RTPS_FLOWCONTROL_FLOWCONTROLLER_HPP_
#include <chrono>
namespace eprosima {
namespace fastrtps {
namespace rtps {
class RTPSWriter;
struct CacheChange_t;
} // namespace rtps
} // namespace fastrtps
namespace fastdds {
namespace rtps {
/*!
* Interface used by writers to control the usage of network bandwidth.
*/
class FlowController
{
public:
virtual ~FlowController()
{
}
/*!
* Initializes the flow controller.
*/
virtual void init() = 0;
/*!
* Registers a writer.
* This object will only manage a CacheChange_t if the corresponding writer was previously registered with this method.
*
* @param writer Pointer to the writer to be registered. Cannot be nullptr.
*/
virtual void register_writer(
fastrtps::rtps::RTPSWriter* writer) = 0;
/*!
* Unregister a writer.
*
* @pre Writer must have removed all its CacheChange_t from this object.
* @param writer Pointer to the writer to be unregistered. Cannot be nullptr.
*/
virtual void unregister_writer(
fastrtps::rtps::RTPSWriter* writer) = 0;
/*!
* Adds a CacheChange_t to be managed by this object.
* The CacheChange_t has to be a new one, that is, it should have just been added to the writer's history before this call.
* This method should be called by RTPSWriter::unsent_change_added_to_history().
*
* @param Pointer to the writer that owns the added CacheChange_t. Cannot be nullptr.
* @param change Pointer to the new CacheChange_t to be managed by this object. Cannot be nullptr.
* @param max_blocking_time Maximum time this method has to complete the task.
* @return true if the sample could be added. false otherwise.
*/
virtual bool add_new_sample(
fastrtps::rtps::RTPSWriter* writer,
fastrtps::rtps::CacheChange_t* change,
const std::chrono::time_point<std::chrono::steady_clock>& max_blocking_time) = 0;
/*!
* Adds a CacheChange_t to be managed by this object.
* The CacheChange_t has to be an old one, that is, it was already in the writer's history and for some reason has to
* be sent again.
*
* @param Pointer to the writer that owns the added change. Cannot be nullptr.
* @param change Pointer to the old change to be managed by this object. Cannot be nullptr.
* @return true if the sample could be added. false otherwise.
*/
virtual bool add_old_sample(
fastrtps::rtps::RTPSWriter* writer,
fastrtps::rtps::CacheChange_t* change) = 0;
/*!
* If the CacheChange_t is currently managed by this object, remove it.
* This method should be called whenever a CacheChange_t is removed from the writer's history.
*
* @param Pointer to the change which should be removed if it is currently managed by this object.
*/
virtual void remove_change(
fastrtps::rtps::CacheChange_t* change) = 0;
/*!
* Return the maximum number of bytes can be used by the flow controller to generate a RTPS message.
*
* @return Maximum number of bytes of a RTPS message.
*/
virtual uint32_t get_max_payload() = 0;
};
} // namespace rtps
} // namespace fastdds
} // namespace eprosima
#endif // _RTPS_FLOWCONTROL_FLOWCONTROLLER_HPP_
| [
"[email protected]"
] | |
f8902899665f2cd63649829cd4c259dc40cdd622 | 42c3d3c838226cb393571c68b3ad49d0f9118da0 | /build-TicTacToe-Desktop_Qt_5_5_0_GCC_64bit-Debug/ui_mainwindow.h | af7262b16f258fafb131c1635e367cb9745114f4 | [] | no_license | bing1100/tictactoe | 58bb73daaf17f7a3fc0fac259668e4cdc97d103a | 9f911f5a5fcce3327d7168b7809d46d1dc00c1e7 | refs/heads/master | 2021-01-10T14:09:51.271839 | 2015-09-29T20:46:57 | 2015-09-29T20:46:57 | 43,335,987 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,571 | h | /********************************************************************************
** Form generated from reading UI file 'mainwindow.ui'
**
** Created by: Qt User Interface Compiler version 5.5.0
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_MAINWINDOW_H
#define UI_MAINWINDOW_H
#include <QtCore/QVariant>
#include <QtWidgets/QAction>
#include <QtWidgets/QApplication>
#include <QtWidgets/QButtonGroup>
#include <QtWidgets/QFrame>
#include <QtWidgets/QHeaderView>
#include <QtWidgets/QMainWindow>
#include <QtWidgets/QMenu>
#include <QtWidgets/QMenuBar>
#include <QtWidgets/QStatusBar>
#include <QtWidgets/QToolBar>
#include <QtWidgets/QWidget>
QT_BEGIN_NAMESPACE
class Ui_TicTacToe
{
public:
QWidget *centralWidget;
QFrame *line;
QFrame *line_2;
QFrame *line_3;
QFrame *line_4;
QMenuBar *menuBar;
QMenu *menuTicTacToe;
QToolBar *mainToolBar;
QStatusBar *statusBar;
void setupUi(QMainWindow *TicTacToe)
{
if (TicTacToe->objectName().isEmpty())
TicTacToe->setObjectName(QStringLiteral("TicTacToe"));
TicTacToe->resize(400, 300);
centralWidget = new QWidget(TicTacToe);
centralWidget->setObjectName(QStringLiteral("centralWidget"));
line = new QFrame(centralWidget);
line->setObjectName(QStringLiteral("line"));
line->setGeometry(QRect(25, 25, 150, 2));
line->setFrameShape(QFrame::HLine);
line->setFrameShadow(QFrame::Sunken);
line_2 = new QFrame(centralWidget);
line_2->setObjectName(QStringLiteral("line_2"));
line_2->setGeometry(QRect(25, 75, 150, 2));
line_2->setFrameShape(QFrame::HLine);
line_2->setFrameShadow(QFrame::Sunken);
line_3 = new QFrame(centralWidget);
line_3->setObjectName(QStringLiteral("line_3"));
line_3->setGeometry(QRect(25, 125, 150, 2));
line_3->setFrameShape(QFrame::HLine);
line_3->setFrameShadow(QFrame::Sunken);
line_4 = new QFrame(centralWidget);
line_4->setObjectName(QStringLiteral("line_4"));
line_4->setGeometry(QRect(25, 175, 150, 2));
line_4->setFrameShape(QFrame::HLine);
line_4->setFrameShadow(QFrame::Sunken);
TicTacToe->setCentralWidget(centralWidget);
menuBar = new QMenuBar(TicTacToe);
menuBar->setObjectName(QStringLiteral("menuBar"));
menuBar->setGeometry(QRect(0, 0, 400, 27));
menuTicTacToe = new QMenu(menuBar);
menuTicTacToe->setObjectName(QStringLiteral("menuTicTacToe"));
TicTacToe->setMenuBar(menuBar);
mainToolBar = new QToolBar(TicTacToe);
mainToolBar->setObjectName(QStringLiteral("mainToolBar"));
TicTacToe->addToolBar(Qt::TopToolBarArea, mainToolBar);
statusBar = new QStatusBar(TicTacToe);
statusBar->setObjectName(QStringLiteral("statusBar"));
TicTacToe->setStatusBar(statusBar);
menuBar->addAction(menuTicTacToe->menuAction());
retranslateUi(TicTacToe);
QMetaObject::connectSlotsByName(TicTacToe);
} // setupUi
void retranslateUi(QMainWindow *TicTacToe)
{
TicTacToe->setWindowTitle(QApplication::translate("TicTacToe", "MainWindow", 0));
menuTicTacToe->setTitle(QApplication::translate("TicTacToe", "TicTacToe", 0));
} // retranslateUi
};
namespace Ui {
class TicTacToe: public Ui_TicTacToe {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_MAINWINDOW_H
| [
"[email protected]"
] | |
97d05e496e85bb24eef5708fe8058ac8f1936972 | 2175edcd66cd08674197b3570055cb8b49d1756b | /game_backend/Camera.h | a4761c056b6323865179bd3b05f4d1cc39394861 | [] | no_license | 2DGameEngine/Game_backend | d025eb01ad350bfd605052f04aa13574d8d35020 | 05678ac1a0698d4b09302af5de54a3ec47ac0671 | refs/heads/master | 2020-04-10T19:07:59.681208 | 2015-05-18T01:47:35 | 2015-05-18T01:47:35 | 31,513,456 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 530 | h | #ifndef _CAMERA_
#define _CAMERA_
#include "SDL.h"
class Camera{
public:
Camera(float width,float height,Vector2D position,std::string type,std::string linkedObject,Vector2D offset);
float width;
float height;
Vector2D position;
Vector2D offset;
std::string type;
std::string linkedObject;
void setWidth(float new_width);
void setHeight(float new_height);
void setPosition(Vector2D new_postion);
void setType(std::string new_type);
void setLinkedObject(std::string new_linkedObject);
Vector2D getPosition();
};
#endif | [
"[email protected]"
] | |
09bef68aff864708d36272c97c8a19d85877fa1a | 85176a12dd3b414641745218364d0ed57ad6d0d1 | /Prototypy/Prototyp/Enemy1.cpp | a66ab144f5a5dcf0c6031cc8471f21752c3873bb | [] | no_license | Piter37PL/Piotr_Krupa_Projekt_C | f5644d9666be4e3e062edcfc201fb1255814659a | 73090d945445ec4a5c7b8618478b12a1cda29c2b | refs/heads/master | 2020-03-31T20:32:24.718225 | 2019-01-24T17:53:50 | 2019-01-24T17:53:50 | 152,544,935 | 0 | 0 | null | 2018-10-18T17:07:23 | 2018-10-11T06:52:13 | null | UTF-8 | C++ | false | false | 533 | cpp | #include "Enemy1.h"
Enemy1::Enemy1(float xpos, float ypos)
{
float xr = xpos+100;
float xl = xpos-100;
float xmove = 0.5f;
this->xr = xr;
this->xl = xl;
this->xpos = xpos;
this->ypos = ypos;
this->xmove = xmove;
}
Enemy1::~Enemy1()
{
}
void Enemy1::update()
{
xpos += xmove;
if(xpos >= xr)
{ xmove = -0.5;}
if(xpos <= xl)
{ xmove = 0.5;}
/*
std::cout<<"xpos.E = "<<xpos<<std::endl;
std::cout<<"ypos.E = "<<ypos<<std::endl;
std::cout<<"xr.E = "<<xr<<std::endl;
std::cout<<"xl.E = "<<xl<<std::endl;
*/
}
| [
"[email protected]"
] | |
83f2cb3abca0a26c9eeb4279bc95320130d8d142 | 1d29befec52a551552ad31bdfe6111b545d988fe | /praktika/900-Praktika/prak06/Loesung/A3/crcTest.cpp | f0a3d4e03c8a7166cc7ac7f8f28006f09a9ff793 | [] | no_license | HSR-Stud/EmbSW2 | 6c020d5181b481777295b8ca12a94ca721df30df | 13f1a25896401a2512de95e8dd164f56d3552bcd | refs/heads/master | 2021-09-24T06:11:03.907179 | 2021-09-13T08:47:59 | 2021-09-13T08:47:59 | 11,474,836 | 0 | 3 | null | 2020-08-04T16:20:32 | 2013-07-17T11:53:37 | TeX | UTF-8 | C++ | false | false | 2,370 | cpp | /*
* crcTest.h
*
* Created on: 25.03.2019
* Author: Reto Bonderer
*/
#include <iostream>
#include <fstream>
#include <iomanip>
#include "Crc.h"
using namespace std;
int main(int argc, char* argv[])
{
// Predefined data will be used if no file name has been passed.
const uint8_t data[] = {0xd9, 0x51, 0x61};
Crc crc(0x07); // use CRC-8 CCITT
CrcType crcValue;
cout << "CRC-8 CCITT Bit um Bit, einfach aber ineffizient" << endl << endl;
if (argc > 1)
{
// compute CRC of the passed file (argv[1])
ifstream f;
uint8_t* buf;
unsigned int len;
try
{
f.open(argv[1], ios::in | ios::binary);
// determine file size
f.seekg(0, ios::end);
len = f.tellg();
f.seekg(0, ios::beg);
// read file content into byte buffer
buf = new uint8_t[len];
f.read((char*)buf, len);
f.close();
cout << "Datei: " << argv[1] << endl;
cout << "Anzahl Datenbytes: " << len << endl;
// calculate CRC of the whole byte buffer
crcValue = crc.getCrc(buf, len);
cout << "CRC-8 CCITT: " << setfill('0') << hex << showbase << internal
<< setw(4) << (int)crcValue << endl;
// free allocated memory
delete[] buf;
}
catch (const exception& ex)
{
cerr << "Unable to read file '" << argv[1] << "'!" << endl;
}
}
else
{
cout << "CRC-8 CCITT der einzelnen Datenbytes:" << endl;
for (unsigned int i = 0; i < sizeof(data)/sizeof(data[0]); ++i)
{
// compute CRC of the individual data bytes
crcValue = crc.getCrc(&data[i], 1);
cout << "Byte " << dec << setfill('0') << setw(2) << i
<< ": crc(" << showbase << hex << internal << setw(4) << (int)data[i]
<< ") = " << setw(4) << (int)crcValue << endl;
}
// compute CRC of all data bytes
crcValue = crc.getCrc(data, sizeof(data)/sizeof(data[0]));
cout << "CRC-8 CCITT von allen Datenbytes:" << endl;
cout << "crc(" << setfill('0') << showbase << hex << internal << setw(4);
for (unsigned int i = 0; i < sizeof(data)/sizeof(data[0]); ++i)
{
cout << (int)data[i] << noshowbase << setw(2);
}
cout << ") = " << showbase << setw(4) << (int)crcValue << endl << endl;
}
return 0;
}
| [
"[email protected]"
] | |
eacc89a8874fa0f0f7cb47a633f955618bd860ed | 4352b5c9e6719d762e6a80e7a7799630d819bca3 | /tutorials/oldd/eulerVortex.twitch/eulerVortex.cyclic.twitch/1.3/p | d7ec7b3c26d31e8605f328515df4beec55146b18 | [] | no_license | dashqua/epicProject | d6214b57c545110d08ad053e68bc095f1d4dc725 | 54afca50a61c20c541ef43e3d96408ef72f0bcbc | refs/heads/master | 2022-02-28T17:20:20.291864 | 2019-10-28T13:33:16 | 2019-10-28T13:33:16 | 184,294,390 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 42,419 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "1.3";
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [1 -1 -2 0 0 0 0];
internalField nonuniform List<scalar>
10000
(
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999999
0.999999
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999999
0.999999
0.999999
0.999999
0.999999
0.999999
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999999
0.999999
0.999998
0.999998
0.999998
0.999998
0.999998
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999999
0.999998
0.999998
0.999997
0.999996
0.999996
0.999996
0.999996
0.999996
0.999998
0.999998
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999999
0.999998
0.999997
0.999996
0.999995
0.999993
0.999993
0.999992
0.999993
0.999994
0.999995
0.999997
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999999
0.999998
0.999997
0.999995
0.999993
0.999991
0.99999
0.999988
0.999988
0.999988
0.99999
0.999992
0.999996
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999998
0.999998
0.999996
0.999994
0.999991
0.999989
0.999986
0.999984
0.999981
0.99998
0.999981
0.999983
0.999987
0.999993
0.999999
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999998
0.999996
0.999994
0.999991
0.999987
0.999983
0.999978
0.999974
0.99997
0.999969
0.99997
0.999974
0.999981
0.99999
0.999999
1.00001
1.00002
1.00002
1.00003
1.00003
1.00003
1.00003
1.00002
1.00002
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999997
0.999995
0.999991
0.999987
0.99998
0.999973
0.999966
0.999959
0.999955
0.999953
0.999955
0.999961
0.999971
0.999984
1
1.00001
1.00003
1.00004
1.00005
1.00005
1.00005
1.00004
1.00004
1.00003
1.00002
1.00002
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999998
0.999996
0.999993
0.999987
0.99998
0.999971
0.99996
0.999949
0.999939
0.999932
0.999929
0.999933
0.999942
0.999957
0.999978
1
1.00002
1.00004
1.00006
1.00007
1.00007
1.00007
1.00006
1.00006
1.00004
1.00003
1.00002
1.00002
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999998
0.999995
0.99999
0.999982
0.999971
0.999957
0.999942
0.999926
0.999912
0.999901
0.999898
0.999903
0.999917
0.999941
0.999971
1.00001
1.00004
1.00007
1.00009
1.00011
1.00011
1.00011
1.0001
1.00008
1.00007
1.00005
1.00004
1.00002
1.00002
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999998
0.999993
0.999987
0.999975
0.99996
0.99994
0.999918
0.999895
0.999875
0.999861
0.999857
0.999866
0.999888
0.999922
0.999967
1.00002
1.00007
1.00011
1.00014
1.00016
1.00016
1.00016
1.00014
1.00012
1.00009
1.00007
1.00005
1.00003
1.00002
1.00001
1.00001
1
1
1
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999998
0.999992
0.999983
0.999967
0.999945
0.999918
0.999887
0.999856
0.99983
0.999812
0.999808
0.999823
0.999856
0.999908
0.999972
1.00004
1.00011
1.00017
1.00021
1.00024
1.00024
1.00023
1.0002
1.00017
1.00013
1.0001
1.00007
1.00005
1.00003
1.00002
1.00001
1
1
0.999999
0.999999
0.999999
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999992
0.999979
0.999958
0.999929
0.999893
0.999851
0.99981
0.999777
0.999756
0.999756
0.999781
0.999833
0.999907
0.999999
1.0001
1.00019
1.00027
1.00032
1.00035
1.00035
1.00033
1.00029
1.00024
1.00019
1.00014
1.0001
1.00006
1.00004
1.00002
1.00001
1
0.999998
0.999997
0.999997
0.999998
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1
0.999994
0.999977
0.99995
0.999912
0.999864
0.999812
0.999761
0.999721
0.999701
0.999711
0.999756
0.999835
0.999945
1.00007
1.00021
1.00033
1.00043
1.0005
1.00052
1.00051
1.00047
1.00041
1.00033
1.00026
1.00019
1.00013
1.00008
1.00004
1.00002
1.00001
0.999999
0.999995
0.999994
0.999995
0.999996
0.999997
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
0.999999
0.999978
0.999944
0.999896
0.999838
0.999775
0.999716
0.999676
0.999666
0.999697
0.999775
0.999899
1.00006
1.00024
1.00042
1.00058
1.0007
1.00077
1.00079
1.00075
1.00068
1.00058
1.00046
1.00035
1.00025
1.00017
1.0001
1.00005
1.00002
1
0.999993
0.99999
0.99999
0.999992
0.999994
0.999995
0.999997
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00001
0.999985
0.999944
0.999888
0.99982
0.99975
0.999692
0.999663
0.999679
0.999753
0.999889
1.00008
1.00031
1.00056
1.0008
1.001
1.00114
1.0012
1.00119
1.00111
1.00098
1.00081
1.00064
1.00048
1.00033
1.00021
1.00012
1.00006
1.00002
0.999996
0.999985
0.999982
0.999983
0.999986
0.99999
0.999993
0.999995
0.999997
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00002
1.00003
1.00004
1.00004
1.00004
1.00003
1
0.999955
0.999894
0.999822
0.999756
0.999714
0.999719
0.999792
0.999943
1.00017
1.00047
1.00081
1.00115
1.00147
1.00171
1.00186
1.00189
1.00182
1.00165
1.00142
1.00115
1.00089
1.00065
1.00044
1.00027
1.00015
1.00007
1.00001
0.999985
0.999972
0.99997
0.999973
0.999979
0.999985
0.999989
0.999993
0.999996
0.999997
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00002
1.00003
1.00004
1.00005
1.00006
1.00007
1.00006
1.00003
0.999985
0.999925
0.999863
0.99982
0.999824
0.999903
1.00008
1.00036
1.00075
1.0012
1.00169
1.00216
1.00257
1.00285
1.00299
1.00296
1.00277
1.00246
1.00207
1.00165
1.00125
1.00089
1.00058
1.00035
1.00018
1.00007
1
0.999966
0.999953
0.999953
0.999959
0.999968
0.999977
0.999984
0.99999
0.999994
0.999996
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00002
1.00003
1.00004
1.00006
1.00008
1.0001
1.0001
1.0001
1.00008
1.00005
1
0.999971
0.999985
1.00008
1.0003
1.00065
1.00114
1.00175
1.00244
1.00313
1.00377
1.00429
1.00462
1.00472
1.00458
1.00422
1.00368
1.00305
1.00239
1.00177
1.00123
1.00079
1.00046
1.00023
1.00007
0.999985
0.999941
0.999926
0.999929
0.99994
0.999954
0.999967
0.999977
0.999985
0.999991
0.999995
0.999997
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00002
1.00004
1.00006
1.00008
1.00011
1.00014
1.00016
1.00017
1.00016
1.00015
1.00015
1.00018
1.00031
1.00057
1.00101
1.00164
1.00244
1.00338
1.00436
1.00532
1.00617
1.00682
1.0072
1.00725
1.00694
1.00632
1.00546
1.00447
1.00346
1.00252
1.00172
1.00109
1.00062
1.00029
1.00008
0.999962
0.999906
0.999891
0.999898
0.999915
0.999935
0.999953
0.999968
0.99998
0.999987
0.999993
0.999996
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00002
1.00003
1.00005
1.00008
1.00011
1.00015
1.0002
1.00023
1.00026
1.00029
1.00032
1.00039
1.00056
1.00087
1.0014
1.00219
1.00322
1.00445
1.00579
1.00715
1.00841
1.00949
1.01029
1.01072
1.01071
1.01021
1.00926
1.00797
1.00649
1.00499
1.00361
1.00244
1.00152
1.00085
1.00039
1.0001
0.999939
0.999865
0.999846
0.999858
0.999882
0.999911
0.999937
0.999957
0.999973
0.999983
0.99999
0.999994
0.999997
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00002
1.00004
1.00007
1.0001
1.00015
1.00021
1.00027
1.00033
1.00039
1.00047
1.00058
1.00078
1.00115
1.00177
1.0027
1.00397
1.00553
1.00728
1.00909
1.01082
1.01237
1.01366
1.0146
1.0151
1.01507
1.01441
1.01313
1.01134
1.00926
1.00712
1.00514
1.00347
1.00215
1.00119
1.00054
1.00014
0.999919
0.999818
0.999794
0.99981
0.999844
0.999881
0.999916
0.999943
0.999964
0.999978
0.999987
0.999992
0.999996
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00002
1.00003
1.00005
1.00009
1.00013
1.0002
1.00027
1.00036
1.00046
1.00057
1.00072
1.00096
1.00137
1.00205
1.00311
1.0046
1.0065
1.00869
1.01099
1.01319
1.01515
1.01682
1.01817
1.0192
1.01983
1.0199
1.01924
1.01777
1.01554
1.01282
1.00994
1.00722
1.00489
1.00304
1.00169
1.00079
1.00022
0.999914
0.999773
0.999736
0.999754
0.999798
0.999847
0.999891
0.999927
0.999953
0.999971
0.999983
0.99999
0.999995
0.999997
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00002
1.00004
1.00007
1.00011
1.00017
1.00025
1.00035
1.00047
1.00061
1.0008
1.00107
1.0015
1.00221
1.00333
1.00499
1.00719
1.00983
1.01264
1.01532
1.0176
1.01938
1.02073
1.02181
1.02276
1.02358
1.02405
1.02383
1.02259
1.02025
1.01706
1.01345
1.0099
1.00677
1.00426
1.00241
1.00115
1.00037
0.999937
0.999736
0.999677
0.999695
0.999748
0.999808
0.999863
0.999908
0.999941
0.999964
0.999979
0.999988
0.999993
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00002
1.00003
1.00005
1.00008
1.00014
1.00021
1.00031
1.00043
1.0006
1.0008
1.00109
1.00152
1.00222
1.00335
1.00507
1.00749
1.01053
1.01388
1.01709
1.01964
1.02126
1.02197
1.02214
1.02227
1.0228
1.0239
1.02531
1.02636
1.02629
1.02465
1.02153
1.01747
1.01315
1.00916
1.00586
1.00339
1.00168
1.00061
1.00001
0.999719
0.999625
0.999635
0.999694
0.999766
0.999833
0.999887
0.999927
0.999955
0.999973
0.999985
0.999992
0.999996
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00002
1.00003
1.00006
1.0001
1.00016
1.00025
1.00037
1.00053
1.00074
1.00103
1.00145
1.0021
1.00316
1.00484
1.00732
1.01063
1.0145
1.01834
1.02131
1.02272
1.02229
1.0204
1.01791
1.01595
1.01547
1.01697
1.02014
1.02386
1.0266
1.02717
1.02529
1.02149
1.01674
1.01198
1.00785
1.00465
1.0024
1.00096
1.00014
0.999733
0.999586
0.999581
0.999642
0.999724
0.999801
0.999865
0.999913
0.999946
0.999968
0.999982
0.99999
0.999995
0.999997
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00002
1.00004
1.00007
1.00012
1.00019
1.00029
1.00044
1.00064
1.00091
1.00129
1.00188
1.00282
1.00435
1.0067
1.01007
1.01432
1.01884
1.02254
1.02412
1.02262
1.01796
1.01112
1.00383
0.998125
0.995777
0.997784
1.00387
1.01226
1.02027
1.0255
1.02684
1.02466
1.02025
1.01505
1.01017
1.00621
1.00334
1.00146
1.00036
0.999796
0.999573
0.999539
0.999595
0.999683
0.999771
0.999844
0.999899
0.999938
0.999963
0.999979
0.999988
0.999994
0.999997
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00002
1.00004
1.00008
1.00013
1.00022
1.00034
1.00051
1.00074
1.00108
1.00159
1.00239
1.00369
1.00577
1.00893
1.01326
1.01835
1.02304
1.0255
1.0238
1.01681
1.00491
0.99006
0.975281
0.963861
0.958623
0.961233
0.971523
0.987023
1.00351
1.01672
1.02417
1.02573
1.02297
1.01803
1.01267
1.00801
1.00448
1.00211
1.00068
0.999919
0.999593
0.999516
0.999559
0.999649
0.999744
0.999825
0.999886
0.999929
0.999958
0.999976
0.999987
0.999993
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
1
1
1
1
1
1.00001
1.00001
1.00003
1.00005
1.00009
1.00015
1.00024
1.00037
1.00057
1.00085
1.00126
1.00191
1.00296
1.00469
1.00742
1.01146
1.01672
1.02236
1.02638
1.02593
1.01838
1.0026
0.979863
0.953647
0.928645
0.90963
0.900545
0.903797
0.919476
0.944496
0.972893
0.997981
1.01515
1.02327
1.02406
1.02044
1.01513
1.00996
1.00581
1.0029
1.0011
1.00011
0.999657
0.999519
0.999539
0.999624
0.999722
0.999808
0.999875
0.999922
0.999954
0.999974
0.999986
0.999993
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00003
1.00005
1.00009
1.00016
1.00026
1.0004
1.00062
1.00094
1.00144
1.00225
1.00359
1.0058
1.00924
1.01417
1.02024
1.02589
1.02801
1.02249
1.00601
0.977841
0.940765
0.900295
0.863061
0.835245
0.821706
0.825535
0.847259
0.883512
0.926709
0.967383
0.998087
1.016
1.02264
1.02178
1.01726
1.01191
1.00725
1.00383
1.00162
1.00037
0.999771
0.999555
0.999541
0.999613
0.999709
0.999797
0.999867
0.999917
0.999951
0.999972
0.999985
0.999992
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00003
1.00005
1.00009
1.00016
1.00027
1.00042
1.00066
1.00103
1.00162
1.0026
1.00425
1.00697
1.01115
1.01691
1.0235
1.02843
1.02715
1.01417
0.985665
0.941928
0.88794
0.831693
0.781668
0.745005
0.726997
0.731203
0.758781
0.806611
0.866049
0.924911
0.972384
1.00318
1.0181
1.02159
1.01879
1.01372
1.00873
1.00484
1.00224
1.00071
0.999939
0.999627
0.999566
0.999619
0.999707
0.999794
0.999864
0.999915
0.999949
0.999971
0.999984
0.999991
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00002
1.00003
1.00005
1.00009
1.00016
1.00027
1.00043
1.00068
1.00109
1.00177
1.00293
1.00491
1.00815
1.01304
1.0195
1.02622
1.02959
1.02339
1.00073
0.957718
0.896412
0.824656
0.75304
0.691421
0.647167
0.625368
0.629681
0.66197
0.720023
0.795077
0.872842
0.938964
0.984985
1.01028
1.01966
1.01953
1.01523
1.01016
1.0059
1.00292
1.00111
1.00016
0.999738
0.99962
0.999643
0.999718
0.999798
0.999865
0.999915
0.999949
0.999971
0.999984
0.999991
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00002
1.00003
1.00005
1.00009
1.00016
1.00026
1.00042
1.00068
1.00112
1.00189
1.00322
1.00552
1.00928
1.0148
1.02176
1.02818
1.02918
1.01682
0.982955
0.924164
0.845001
0.756587
0.671851
0.601296
0.551734
0.527395
0.531541
0.566683
0.632138
0.720165
0.815395
0.900232
0.962566
0.999627
1.01607
1.01941
1.01638
1.01146
1.00695
1.00364
1.00156
1.00042
0.999887
0.999702
0.999688
0.999742
0.999812
0.999872
0.999919
0.999951
0.999972
0.999985
0.999992
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00003
1.00005
1.00008
1.00014
1.00024
1.0004
1.00066
1.00112
1.00196
1.00346
1.00606
1.01027
1.01634
1.02358
1.0293
1.02737
1.00819
0.96264
0.888307
0.792736
0.690351
0.59587
0.519708
0.467503
0.442082
0.445827
0.481751
0.551115
0.648205
0.757746
0.859587
0.937875
0.987104
1.01122
1.01855
1.01715
1.01261
1.00795
1.00437
1.00204
1.00072
1.00007
0.999809
0.999752
0.999781
0.999835
0.999887
0.999928
0.999956
0.999975
0.999986
0.999993
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00002
1.00004
1.00007
1.00012
1.00021
1.00036
1.00062
1.00109
1.00198
1.00362
1.00647
1.01107
1.01757
1.0249
1.02966
1.02459
0.998705
0.942218
0.854025
0.74478
0.631875
0.531174
0.452461
0.39988
0.374575
0.377778
0.412793
0.482903
0.58501
0.704895
0.820747
0.913297
0.974048
1.00576
1.01722
1.0176
1.01357
1.00887
1.00508
1.00253
1.00104
1.00027
0.999939
0.999834
0.999832
0.999867
0.999906
0.999939
0.999963
0.999979
0.999988
0.999994
0.999997
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00002
1.00003
1.00006
1.0001
1.00017
1.0003
1.00054
1.00102
1.00194
1.00369
1.00674
1.01164
1.01844
1.02573
1.02945
1.02147
0.989783
0.924205
0.824941
0.705419
0.585393
0.481333
0.402167
0.350557
0.326039
0.32869
0.36188
0.430623
0.534479
0.660862
0.787132
0.89127
0.961939
1.00047
1.01575
1.01785
1.01437
1.00969
1.00573
1.00301
1.00137
1.00049
1.00009
0.999931
0.999895
0.999907
0.999931
0.999954
0.999972
0.999984
0.999991
0.999995
0.999997
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
1
1
1
1
1
1
1.00001
1.00001
1.00002
1.00004
1.00007
1.00012
1.00023
1.00045
1.00091
1.00184
1.00365
1.00684
1.01194
1.01895
1.02616
1.02897
1.01867
0.982709
0.910709
0.803856
0.677599
0.553325
0.44777
0.369106
0.318837
0.295258
0.297493
0.328768
0.39527
0.498772
0.628458
0.761513
0.873973
0.952189
0.996112
1.0145
1.01803
1.01502
1.01038
1.00631
1.00345
1.00168
1.00072
1.00024
1.00004
0.999966
0.999953
0.99996
0.999972
0.999982
0.999989
0.999994
0.999997
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00002
1.00003
1.00007
1.00015
1.00034
1.00076
1.00168
1.00351
1.00676
1.01196
1.01908
1.02625
1.02848
1.01674
0.978417
0.903128
0.792491
0.66295
0.536734
0.430692
0.35261
0.303365
0.280538
0.282604
0.3125
0.376905
0.479009
0.609512
0.745907
0.86313
0.945982
0.993356
1.01378
1.01825
1.01556
1.01094
1.00679
1.00383
1.00198
1.00093
1.0004
1.00015
1.00004
1
0.999991
0.999991
0.999994
0.999996
0.999997
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999998
0.999996
0.999995
0.999997
1.00001
1.00006
1.00021
1.0006
1.00147
1.00326
1.00651
1.01171
1.01886
1.02607
1.02819
1.01608
0.97741
0.902038
0.791459
0.661968
0.5358
0.429852
0.352009
0.303186
0.280811
0.283025
0.312404
0.375464
0.475831
0.60517
0.741611
0.859885
0.944126
0.992661
1.01379
1.01858
1.01598
1.01135
1.00715
1.00413
1.00223
1.00113
1.00055
1.00026
1.00012
1.00005
1.00002
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999998
0.999996
0.999991
0.999985
0.999974
0.999961
0.999953
0.999972
1.00008
1.00041
1.00121
1.00292
1.00609
1.01122
1.0183
1.02563
1.02815
1.01682
0.97978
0.9073
0.800383
0.674172
0.550057
0.44485
0.36697
0.31803
0.295861
0.298578
0.328336
0.390943
0.4895
0.61592
0.749174
0.864705
0.946943
0.994197
1.01459
1.01902
1.01626
1.01158
1.00737
1.00435
1.00242
1.0013
1.00068
1.00036
1.00019
1.0001
1.00006
1.00003
1.00002
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999996
0.999993
0.999985
0.999974
0.999955
0.999927
0.999898
0.999887
0.999951
1.00022
1.00093
1.00251
1.00552
1.01048
1.01745
1.02492
1.02828
1.01884
0.985265
0.91826
0.81816
0.698294
0.578439
0.475058
0.397345
0.348126
0.326134
0.329713
0.360522
0.423244
0.5197
0.641394
0.768241
0.877277
0.954187
0.99779
1.01608
1.01949
1.01636
1.0116
1.00744
1.00445
1.00255
1.00143
1.0008
1.00045
1.00025
1.00015
1.00008
1.00005
1.00003
1.00002
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999998
0.999995
0.99999
0.99998
0.999964
0.999938
0.999898
0.999851
0.99981
0.999831
1.00003
1.00064
1.00206
1.00484
1.00955
1.01631
1.02392
1.02837
1.02173
0.993237
0.933914
0.843272
0.732535
0.619362
0.519484
0.442881
0.393856
0.372361
0.377111
0.409203
0.471914
0.565335
0.680167
0.797416
0.896447
0.965035
1.00293
1.01796
1.01987
1.01621
1.01141
1.00733
1.00445
1.00261
1.00151
1.00088
1.00052
1.00031
1.00018
1.00011
1.00006
1.00004
1.00002
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999997
0.999994
0.999988
0.999976
0.999956
0.999923
0.999875
0.99981
0.999747
0.999726
0.999858
1.00035
1.00158
1.00409
1.00843
1.0149
1.02259
1.0282
1.02485
1.00267
0.952857
0.873924
0.774816
0.670851
0.576698
0.502912
0.455261
0.434934
0.441013
0.474009
0.535686
0.624269
0.729657
0.834224
0.920248
0.978148
1.00883
1.01985
1.01997
1.01577
1.01097
1.00705
1.00433
1.00259
1.00155
1.00093
1.00057
1.00035
1.00021
1.00013
1.00008
1.00004
1.00002
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999998
0.999997
0.999993
0.999987
0.999973
0.99995
0.999914
0.999857
0.999782
0.999697
0.99964
0.99971
1.00009
1.00112
1.0033
1.00721
1.01324
1.02088
1.02753
1.02754
1.01226
0.973225
0.907833
0.822644
0.730448
0.644604
0.575944
0.531369
0.512999
0.520219
0.553038
0.611795
0.693007
0.786104
0.875272
0.946098
0.991854
1.01457
1.02131
1.01964
1.01499
1.01028
1.00661
1.0041
1.00251
1.00154
1.00095
1.0006
1.00037
1.00023
1.00014
1.00009
1.00005
1.00003
1.00002
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999997
0.999992
0.999986
0.999971
0.999948
0.999908
0.999847
0.999764
0.999662
0.99958
0.999593
0.999866
1.00069
1.00253
1.00594
1.0114
1.01877
1.02618
1.02922
1.0207
0.992848
0.942117
0.872702
0.794709
0.719898
0.658932
0.619221
0.603377
0.611094
0.642082
0.69548
0.766512
0.844723
0.916583
0.97115
1.00442
1.01924
1.02196
1.01876
1.01386
1.00938
1.00604
1.00378
1.00236
1.00148
1.00094
1.0006
1.00038
1.00024
1.00015
1.00009
1.00005
1.00003
1.00002
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999997
0.999993
0.999985
0.999971
0.999947
0.999906
0.999844
0.999756
0.999647
0.999543
0.999509
0.999685
1.00032
1.00182
1.0047
1.00948
1.01632
1.02406
1.02949
1.02693
1.00964
0.973607
0.920881
0.858893
0.797466
0.746466
0.71302
0.699888
0.707193
0.734541
0.780178
0.838626
0.900239
0.954159
0.992781
1.01437
1.02219
1.02158
1.01731
1.01241
1.00831
1.00536
1.0034
1.00216
1.00139
1.0009
1.00059
1.00038
1.00024
1.00015
1.00009
1.00005
1.00003
1.00002
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999998
0.999998
0.999992
0.999986
0.999971
0.999948
0.999909
0.999845
0.999759
0.999647
0.999528
0.999462
0.999557
1.00002
1.0012
1.00355
1.0076
1.01367
1.02124
1.02817
1.03028
1.02205
0.999468
0.962977
0.917496
0.870701
0.830951
0.804466
0.793985
0.800081
0.822352
0.85852
0.903073
0.947819
0.984719
1.00909
1.02082
1.02311
1.02015
1.01536
1.01075
1.00714
1.00462
1.00297
1.00193
1.00127
1.00084
1.00056
1.00036
1.00023
1.00015
1.00009
1.00005
1.00003
1.00002
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999998
0.999997
0.999994
0.999986
0.999974
0.99995
0.999914
0.999854
0.999769
0.99966
0.999535
0.999447
0.999479
0.999797
1.00069
1.00255
1.00586
1.01102
1.01795
1.02542
1.03062
1.02931
1.01787
0.995683
0.965575
0.933022
0.904445
0.884884
0.876915
0.881387
0.897884
0.92401
0.954863
0.984115
1.0064
1.01929
1.02361
1.02211
1.01785
1.01307
1.00897
1.00593
1.00387
1.00253
1.00168
1.00113
1.00076
1.00051
1.00034
1.00022
1.00014
1.00008
1.00005
1.00003
1.00002
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
0.999999
0.999998
0.999994
0.999988
0.999976
0.999955
0.99992
0.999866
0.999787
0.999683
0.999562
0.99946
0.999445
0.99965
1.0003
1.00173
1.00434
1.00855
1.01452
1.02171
1.02838
1.03159
1.02835
1.01743
1.00011
0.979858
0.961211
0.947952
0.942269
0.945045
0.955883
0.972647
0.99148
1.008
1.01906
1.02375
1.02324
1.01964
1.015
1.01065
1.00722
1.00477
1.00314
1.0021
1.00142
1.00098
1.00067
1.00046
1.00031
1.0002
1.00013
1.00008
1.00004
1.00003
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999997
0.999995
0.99999
0.999979
0.99996
0.999929
0.99988
0.99981
0.999714
0.999602
0.999498
0.999451
0.999571
1.00003
1.00108
1.00308
1.00639
1.01128
1.01759
1.02444
1.02991
1.0318
1.02868
1.02078
1.01002
0.999315
0.99124
0.987447
0.98869
0.994682
1.00379
1.01332
1.02061
1.02409
1.02374
1.02065
1.01632
1.01196
1.00831
1.00558
1.00371
1.00248
1.00169
1.00118
1.00083
1.00058
1.0004
1.00027
1.00018
1.00011
1.00007
1.00004
1.00002
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999998
0.999995
0.999991
0.999981
0.999966
0.999939
0.999896
0.999835
0.99975
0.999649
0.99955
0.999487
0.999548
0.999859
1.00062
1.0021
1.00461
1.00844
1.01362
1.01977
1.02579
1.03015
1.03159
1.02973
1.02547
1.02041
1.0161
1.01369
1.01378
1.0162
1.01985
1.02311
1.0246
1.02374
1.02088
1.0169
1.01273
1.00905
1.00619
1.00414
1.00278
1.0019
1.00133
1.00095
1.00068
1.00049
1.00034
1.00023
1.00015
1.0001
1.00006
1.00003
1.00002
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999998
0.999996
0.999992
0.999985
0.999971
0.999948
0.999913
0.999859
0.99979
0.9997
0.999609
0.999547
0.999564
0.999769
1.0003
1.00137
1.00323
1.0061
1.01013
1.01518
1.02067
1.02565
1.0291
1.0305
1.03005
1.02845
1.02654
1.02507
1.02447
1.02465
1.02499
1.02467
1.02313
1.02033
1.0167
1.01286
1.00935
1.00649
1.00439
1.00295
1.00201
1.00141
1.00102
1.00075
1.00055
1.0004
1.00028
1.00019
1.00013
1.00008
1.00005
1.00003
1.00002
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999999
0.999997
0.999994
0.999987
0.999976
0.999958
0.999928
0.999885
0.999825
0.999752
0.999675
0.999613
0.999612
0.999744
1.00011
1.00087
1.0022
1.0043
1.00729
1.01118
1.01566
1.02018
1.02403
1.02668
1.02799
1.02817
1.02762
1.02675
1.02585
1.02489
1.02359
1.02164
1.01897
1.01574
1.01233
1.00914
1.00645
1.0044
1.00295
1.002
1.0014
1.00101
1.00076
1.00057
1.00043
1.00032
1.00023
1.00016
1.0001
1.00007
1.00004
1.00002
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999999
0.999998
0.999994
0.99999
0.999981
0.999967
0.999943
0.999908
0.999861
0.9998
0.999737
0.999685
0.999673
0.999758
1.00001
1.00054
1.00148
1.00297
1.00512
1.00795
1.01136
1.01499
1.01838
1.0211
1.02292
1.02379
1.02386
1.02334
1.02238
1.021
1.01916
1.01681
1.01408
1.0112
1.00844
1.00605
1.00416
1.00278
1.00186
1.00128
1.00093
1.0007
1.00055
1.00043
1.00033
1.00025
1.00018
1.00012
1.00008
1.00005
1.00003
1.00002
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999998
0.999996
0.999992
0.999985
0.999974
0.999955
0.999929
0.99989
0.999845
0.999795
0.999751
0.99974
0.999793
0.999969
1.00034
1.00099
1.00203
1.00353
1.00554
1.00798
1.01067
1.0133
1.01557
1.01723
1.01819
1.01845
1.01809
1.0172
1.01583
1.01403
1.0119
1.00961
1.00736
1.00535
1.0037
1.00246
1.00162
1.00108
1.00076
1.00058
1.00047
1.00038
1.00031
1.00025
1.00019
1.00014
1.00009
1.00006
1.00004
1.00002
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999997
0.999994
0.999989
0.99998
0.999967
0.999945
0.999918
0.999882
0.999844
0.999813
0.999801
0.999839
0.999964
1.00022
1.00068
1.00139
1.00242
1.0038
1.00548
1.00736
1.00925
1.01092
1.0122
1.01298
1.0132
1.01291
1.01213
1.01095
1.00945
1.00776
1.00603
1.00443
1.00308
1.00203
1.00129
1.00082
1.00055
1.00041
1.00034
1.00029
1.00026
1.00022
1.00018
1.00014
1.0001
1.00007
1.00005
1.00003
1.00002
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999999
0.999998
0.999996
0.999992
0.999986
0.999975
0.99996
0.999938
0.999913
0.999887
0.999862
0.999859
0.999886
0.999976
1.00016
1.00048
1.00097
1.00167
1.0026
1.00372
1.00498
1.00625
1.00739
1.00827
1.00878
1.0089
1.00862
1.00797
1.00703
1.00588
1.00465
1.00345
1.00239
1.00154
1.00092
1.00053
1.00031
1.00021
1.00018
1.00017
1.00017
1.00017
1.00015
1.00012
1.0001
1.00007
1.00005
1.00003
1.00002
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999997
0.999994
0.999989
0.999982
0.999971
0.999956
0.999938
0.999919
0.999904
0.999901
0.999926
0.999994
1.00013
1.00035
1.00069
1.00117
1.00179
1.00253
1.00334
1.00416
1.00488
1.00542
1.00571
1.00572
1.00545
1.00492
1.00421
1.00338
1.00252
1.00173
1.00107
1.00058
1.00025
1.00007
1.00001
1
1.00003
1.00007
1.00009
1.0001
1.0001
1.00008
1.00007
1.00005
1.00004
1.00002
1.00002
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999998
0.999998
0.999996
0.999993
0.999987
0.99998
0.999969
0.999957
0.999944
0.999935
0.999937
0.999957
1.00001
1.00011
1.00027
1.00051
1.00083
1.00125
1.00172
1.00224
1.00275
1.00318
1.00348
1.0036
1.00353
1.00328
1.00286
1.00233
1.00175
1.00118
1.00068
1.0003
1.00003
0.999885
0.999835
0.99985
0.999898
0.999955
1
1.00004
1.00006
1.00006
1.00005
1.00005
1.00004
1.00003
1.00002
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999998
0.999997
0.999995
0.999991
0.999986
0.999978
0.999972
0.999963
0.999958
0.999962
0.99998
1.00002
1.0001
1.00021
1.00038
1.00061
1.00088
1.00119
1.00152
1.00182
1.00206
1.0022
1.00223
1.00212
1.00189
1.00156
1.00117
1.00077
1.0004
1.0001
0.999884
0.99976
0.999716
0.999733
0.999786
0.999853
0.999918
0.99997
1.00001
1.00003
1.00003
1.00003
1.00003
1.00002
1.00002
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999998
0.999997
0.999994
0.999991
0.999987
0.999981
0.999977
0.999975
0.999979
0.999995
1.00003
1.00008
1.00017
1.00029
1.00045
1.00063
1.00083
1.00104
1.00121
1.00134
1.00139
1.00136
1.00124
1.00104
1.00079
1.00051
1.00024
1
0.99982
0.999707
0.99966
0.999667
0.999712
0.999777
0.999846
0.999907
0.999955
0.999988
1.00001
1.00002
1.00002
1.00002
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999998
0.999996
0.999994
0.999991
0.999988
0.999985
0.999986
0.99999
1
1.00003
1.00007
1.00013
1.00022
1.00033
1.00046
1.00059
1.00072
1.00082
1.00088
1.00089
1.00083
1.00072
1.00056
1.00036
1.00016
0.999976
0.999822
0.999716
0.999662
0.999654
0.999682
0.999735
0.999797
0.999858
0.999911
0.999952
0.99998
0.999999
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999999
0.999999
0.999997
0.999996
0.999994
0.999993
0.999992
0.999992
0.999997
1.00001
1.00003
1.00006
1.00011
1.00017
1.00025
1.00033
1.00042
1.0005
1.00056
1.00058
1.00057
1.00051
1.00042
1.00029
1.00014
0.999998
0.999872
0.999774
0.999712
0.999687
0.999695
0.999729
0.999776
0.999829
0.99988
0.999923
0.999956
0.999979
0.999993
1
1.00001
1.00001
1.00001
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999997
0.999997
0.999996
0.999996
0.999996
1
1.00001
1.00002
1.00005
1.00008
1.00013
1.00018
1.00024
1.0003
1.00035
1.00038
1.00039
1.00037
1.00032
1.00024
1.00015
1.00004
0.999937
0.999849
0.999785
0.999748
0.999738
0.999752
0.999782
0.999822
0.999865
0.999904
0.999937
0.999962
0.99998
0.999992
0.999998
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
0.999999
0.999999
0.999998
0.999998
0.999998
0.999999
1
1.00001
1.00002
1.00004
1.00006
1.00009
1.00013
1.00017
1.00021
1.00024
1.00026
1.00026
1.00024
1.0002
1.00014
1.00007
0.999996
0.999924
0.999865
0.999823
0.999801
0.999798
0.999811
0.999835
0.999866
0.999898
0.999927
0.999951
0.99997
0.999983
0.999993
0.999997
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999999
0.999999
1
1
1.00001
1.00002
1.00003
1.00005
1.00007
1.00009
1.00012
1.00015
1.00017
1.00018
1.00018
1.00016
1.00013
1.00009
1.00004
0.999982
0.999932
0.999892
0.999864
0.99985
0.99985
0.999861
0.99988
0.999902
0.999924
0.999945
0.999963
0.999977
0.999987
0.999993
0.999997
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
1
1
1
1.00001
1.00001
1.00002
1.00003
1.00005
1.00006
1.00008
1.0001
1.00011
1.00012
1.00012
1.00011
1.00008
1.00005
1.00002
0.999981
0.999947
0.99992
0.999903
0.999894
0.999894
0.999902
0.999915
0.999931
0.999947
0.999962
0.999974
0.999983
0.99999
0.999995
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00002
1.00003
1.00004
1.00006
1.00007
1.00008
1.00008
1.00008
1.00007
1.00005
1.00003
1.00001
0.999984
0.999962
0.999944
0.999932
0.999926
0.999927
0.999933
0.999942
0.999953
0.999963
0.999974
0.999982
0.999988
0.999993
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00002
1.00003
1.00004
1.00004
1.00005
1.00005
1.00005
1.00004
1.00003
1.00002
1
0.999989
0.999974
0.999962
0.999954
0.999952
0.999952
0.999955
0.999962
0.999969
0.999976
0.999983
0.999988
0.999992
0.999995
0.999997
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00002
1.00002
1.00003
1.00003
1.00003
1.00003
1.00003
1.00002
1.00001
1
0.999993
0.999983
0.999976
0.99997
0.999968
0.999969
0.999972
0.999975
0.99998
0.999984
0.999989
0.999992
0.999995
0.999997
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00002
1.00002
1.00002
1.00002
1.00002
1.00001
1.00001
1
0.999995
0.999989
0.999984
0.999981
0.99998
0.99998
0.999982
0.999984
0.999987
0.99999
0.999993
0.999995
0.999996
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
0.999996
0.999993
0.99999
0.999989
0.999988
0.999988
0.999989
0.999991
0.999992
0.999994
0.999996
0.999997
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1.00001
1.00001
1.00001
1.00001
1.00001
1.00001
1
1
1
0.999999
0.999996
0.999994
0.999993
0.999993
0.999993
0.999993
0.999994
0.999995
0.999996
0.999997
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999997
0.999997
0.999996
0.999996
0.999995
0.999996
0.999997
0.999997
0.999998
0.999998
0.999999
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999998
0.999998
0.999997
0.999998
0.999998
0.999998
0.999998
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999999
0.999999
0.999999
0.999999
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
)
;
boundaryField
{
emptyPatches_empt
{
type empty;
}
top_cyc
{
type cyclic;
}
bottom_cyc
{
type cyclic;
}
inlet_cyc
{
type cyclic;
}
outlet_cyc
{
type cyclic;
}
}
// ************************************************************************* //
| [
"tdg@debian"
] | tdg@debian |
|
a064248013c3e5546dccd4ada4dd628b328b99a3 | 0b88a1ba134088045b743b96b770fdcae1b0cf94 | /common/tracing/Trace.cc | eeba383e4c8fab0e461cb1c2ec41f0ccdf2bfd35 | [
"BSD-2-Clause"
] | permissive | nncm/claire | 93095dcf9c4a60c30f17c2e1b63154532b156e21 | 859992d6281a434409dcf7efadec84ce0d86db8a | refs/heads/master | 2021-05-15T07:30:12.024301 | 2017-01-20T15:31:03 | 2017-01-20T15:31:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,274 | cc | // Copyright (c) 2013 The claire-common Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. See the AUTHORS file for names of contributors.
#include <claire/common/tracing/Trace.h>
#include <boost/random/mersenne_twister.hpp>
#include <boost/random/uniform_int_distribution.hpp>
#include <claire/common/tracing/Tracing.h>
#include <claire/common/logging/Logging.h>
namespace claire {
namespace {
int64_t UniqueId()
{
// thread safe
static boost::random::mt19937 generator;
static boost::random::uniform_int_distribution<int64_t> distribution(1, 2L<<56);
return distribution(generator);
}
} // namespace
//static
Trace* Trace::FactoryGet(const std::string& name)
{
return FactoryGet(name, UniqueId(), UniqueId(), 0);
}
Trace* Trace::FactoryGet(const std::string& name,
int64_t trace_id,
int64_t span_id)
{
return FactoryGet(name, trace_id, span_id, 0);
}
Trace* Trace::FactoryGet(const std::string& name,
int64_t trace_id,
int64_t span_id,
int64_t parent_span_id)
{
auto trace = new Trace(name, trace_id, span_id, parent_span_id);
return TraceRecorder::instance()->RegisterOrDeleteDuplicate(trace);
}
Trace::Trace(const std::string& name__,
int64_t trace_id__,
int64_t span_id__,
int64_t parent_span_id__)
: name_(name__),
trace_id_(trace_id__),
span_id_(span_id__),
parent_span_id_(parent_span_id__)
{}
void Trace::Record(const Annotation& annotation)
{
LOG(DEBUG) << "Trace " << trace_id_ << ", " << span_id_ << " " << annotation.value << " at " << annotation.timestamp.MicroSecondsSinceEpoch()
<< " for " << host_.service_name;
OutputTrace(*this, annotation);
}
void Trace::Record(const BinaryAnnotation& annotation)
{
LOG(DEBUG) << "Trace " << trace_id_ << ", " << span_id_ << " " << annotation.value
<< " for " << host_.service_name;
OutputTrace(*this, annotation);
}
Trace* Trace::MakeChild(const std::string& name__)
{
return FactoryGet(name__, trace_id_, span_id_+1, span_id_);
}
} // namespace claire
| [
"[email protected]"
] | |
a9da1ca95fcd83696fce02e826c803a6f112b9b4 | d1f785d72261450262d9e0491df303e1becbaa6e | /dlp.h | 917eec2e3fdbc69f849de880baaf26b84b1ac1cd | [] | no_license | amitkrkc/DLP | c1ebfed43e6e98d58df9253f15d52bed947b835e | cd8f5c2378a9098dde171d787643b26dd1f75e3c | refs/heads/master | 2021-01-19T08:59:56.469258 | 2016-05-06T22:37:59 | 2016-05-06T22:37:59 | 58,237,036 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,123 | h | #ifndef DLP_H
#define DLP_H
#include "graph.h"
#include "redcell.h"
class DLP
{
private:
Redcell redcells;
Graph g;
void compute_gt_label(double *Y_gt, const options& opts);
public:
DLP(){}
DLP(double *edgelist, int *nuclei, double *score, int *lut_data, const options& opts):g(edgelist, nuclei, score, opts), redcells(lut_data, opts){}
void perform_label_propagation(vector_double& energy_evo, const options& opts);
void get_labels(double *Y);
};
///////////////////////////////////////////////////////
void DLP::get_labels(double *Y)
{
g.get_labels(Y);
}
///////////////////////////////////////////////////////
void DLP::perform_label_propagation(vector_double& fevo, const options& opts)
{
if(opts.verbose)
{
OUTPUT<<"Inside DLP::perform_label_propagation function"<<std::endl;
opts.display();
}
struct timeval t_begin, t_end; // for measuring time taken by different steps
// schedule nodes
std::vector<vertex_vector> J_all;
const int num_proc=opts.use_parallel_processing?opts.num_processors:1;
if(opts.verbose>1)
{
OUTPUT<<"Scheduling the "<<opts.num_nodes<<" nodes on "<<num_proc<<" parallel processors"<<std::endl;
}
gettimeofday(&t_begin,NULL);
g.schedule_nodes(J_all, num_proc);
gettimeofday(&t_end,NULL);
if(opts.verbose>1)
{
double elapsed_ms=(t_end.tv_sec-t_begin.tv_sec)*1000.0+(t_end.tv_usec-t_begin.tv_usec)/1000.0;
OUTPUT<<"Scheduling took "<< elapsed_ms<<" milliseconds"<<std::endl;
}
double *Y_gt=new double[opts.num_nodes*(opts.label_vector_size+1)];
vertex_iterator vi, vi_end;
double max_change=-100000000000; //initialized to a very small number
double fun_change=100000000; //initialized to a very big number
// main loop
int iter=0;
fevo.clear();
while(1)
{
iter++;
gettimeofday(&t_begin,NULL);
compute_gt_label(Y_gt, opts); // compute the gt label using red cell and current labels
gettimeofday(&t_end,NULL);
double elapsed_ms=(t_end.tv_sec-t_begin.tv_sec)*1000.0+(t_end.tv_usec-t_begin.tv_usec)/1000.0;
if(opts.verbose>1)
OUTPUT<<"\t compute_gt_labels took "<<elapsed_ms<< " milliseconds"<<std::endl;
gettimeofday(&t_begin,NULL);
for(std::vector<vertex_vector>::iterator it=J_all.begin(); it!=J_all.end(); ++it)
{
for(vertex_vector::iterator it1=it->begin(); it1!=it->end(); ++it1)
{
vertex_descriptor p=*it1;
vector_double y_gt(opts.label_vector_size, 0.0); //default is zero
if(opts.is_train_phase)
get_row(y_gt, static_cast<int>(p), Y_gt, opts);
vector_double z_p=g.solve_dc_nodewise(p, y_gt, opts);
max_change=std::max<double>(max_change, g.compute_label_difference(p,z_p));
g.set_label(p, z_p);
}
}
gettimeofday(&t_end,NULL);
elapsed_ms=(t_end.tv_sec-t_begin.tv_sec)*1000.0+(t_end.tv_usec-t_begin.tv_usec)/1000.0;
double eval=g.compute_energy();
if(fevo.size()>1)
fun_change=fabs(eval-*fevo.rbegin());
fevo.push_back(eval);
if(opts.verbose>0)
OUTPUT<<"iteration:"<<iter<<"\tgraph energy:"<<eval<<"\t max change:"<<max_change<<"\t fun change:"<<fun_change<<"\ttime taken:"<<elapsed_ms<<std::endl;
if(iter>opts.maxIter || fun_change<opts.tol || max_change<opts.tol)
break;
}
// free the memory
delete[] Y_gt;
if(opts.verbose>0)
OUTPUT<<"returning from perform_label_propagation"<<std::endl;
}
////////////////////////////////////////////
void DLP::compute_gt_label(double *Y_gt, const options& opts)
{
//pre-computing some factors
const int num_red_cells=opts.num_nodes-redcells.not_red_cells.size();
const int num_not_red_cells=redcells.not_red_cells.size();
const double factor_red_cells=-0.25/num_red_cells;
const double factor_not_red_cells=1.0/num_red_cells/num_not_red_cells;
const int label_vector_size=1+opts.label_vector_size; //+1 because of the false positive label
// copy Y_gt to zero initially
// later, each row of Y_gt will be modified depending on whether the super-pixel belongs to the red-cell or not
// we use memset because we will modify only few columns of the superpixels that belong to the red-cell
memset(Y_gt, 0.0, sizeof(double)*opts.num_nodes*label_vector_size);
std::vector<int> max_labels; // required later for not-red-cell superpixels
// initially make all labels available
// note that i is initialized to 1 to exclude the false positive label (0)
std::set<int> available_labels;
for(int i=1;i<=label_vector_size;++i)
available_labels.insert(i);
// for each red cell (which is sorted based on the area)
for(std::vector<CELL>::iterator it=redcells.redcells.begin(); it!=redcells.redcells.end(); ++it)
{
// traverse the (sorted) superpixel-area vector
int maxid=-1;
for(std::vector< PAIR >::iterator it1=it->first.begin(); it1!=it->first.end(); ++it1)
{
// compute the argmax of the label of the superpixel it1->first
maxid=g.argmax(it1->first);
if(opts.verbose>1)
OUTPUT<<"\t superpixel:"<<it1->first<<"\t area:"<<it1->second<<"\t maxid:"<<maxid<<std::endl;
// check if maxid is available
std::set<int>::iterator it_av=available_labels.find(maxid);
if(it_av!=available_labels.end())
{
if(opts.verbose>1)
OUTPUT<<"\t label:"<<maxid<<" is available...breaking..."<<std::endl;
break;
}
}
// if maxid is not -1
if(maxid!=-1) //sanity check
{
max_labels.push_back(maxid);
// set all the red pixels to a vector with -1/4R at the maxid-th index and zero
// everywhere where R is the number of superpixels in the red cells
for(std::vector< PAIR >::iterator it1=it->first.begin(); it1!=it->first.end(); ++it1)
{
int sp=it1->first;
if(opts.verbose>1)
OUTPUT<<"\t setting "<<sp<<" row to e-vector at "<<maxid<<std::endl;
*(Y_gt+maxid*opts.num_nodes+sp)=factor_red_cells; // we put factor_red_cells instead of 1 because of the way the loss function is defined
// loss function is defined as \frac{1}{|R|} \sum_{i in R} y_gt_i^\top y_i
}
}
}
// for the superpixels that are not in the red-cells
for(std::set<int>::iterator it=redcells.not_red_cells.begin(); it!=redcells.not_red_cells.end(); ++it)
{
int not_sp=*it;
for(uint j=0;j<max_labels.size();j++)
{
int lbl=max_labels[j];
Y_gt[not_sp+opts.num_nodes*lbl]=factor_not_red_cells;
}
}
}
#endif
| [
"[email protected]"
] | |
63859ddece5356eda1b053e19fa2b44d49fca820 | a44f11087f686ed6c10950c0309808663122390a | /acm_comeon/a/a.cpp | ffebd907fe6db58834cb5adc633924238282434f | [] | no_license | smallt-TAO/Reply-Deep-Learning | 8ad4a572b5c2ea18f30d4114cb0533e9d99cbb29 | a002018941b34a5f08b77e70a48c11e5b37aa3cb | refs/heads/master | 2021-09-12T17:54:14.321637 | 2018-04-19T14:02:37 | 2018-04-19T14:02:37 | 76,787,650 | 1 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 297 | cpp | #include <iostream>
using namespace std;
int fibonace(int a) {
if (a == 0 || a == 1) {
return 1;
}
else {
return fibonace(a - 1) + fibonace(a - 2);
}
}
int main() {
int n;
while (true) {
cin >> n;
cout << fibonace(n) << endl;
}
return 0;
}
| [
"[email protected]"
] | |
a9518f349080f33d422a7dffa122ee3fcf37daab | cb7b1d3ffbf4941063aafbb89d5155df9106db4d | /LibreSTR/server/GameServer.h | 40d4a25089c05672ccb87378082a767619c2834c | [
"MIT"
] | permissive | jordsti/LibreSTR | 153cd44fac93612691399a4fac1b2018c597fba6 | f3ad913d333663211aa55379494aac6c898e079e | refs/heads/master | 2020-06-05T00:54:11.197107 | 2015-05-15T20:49:46 | 2015-05-15T20:49:46 | 24,216,449 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,049 | h | #ifndef GAMESERVER_H
#define GAMESERVER_H
#include <MessageDispatcher.h>
#include <MessageHandler.h>
#include <UdpSocket.h>
#include "AssetManager.h"
#include "PlayerConnection.h"
enum ServerState {
SS_Lobby
};
class GameServer :
public StiGame::Net::MessageHandler
{
public:
static const int DEFAULT_GAME_SERVER_PORT = 6870;
GameServer(std::string m_gameName);
GameServer(std::string m_gameName, int m_port);
virtual ~GameServer();
void readPacket(StiGame::Net::UdpPacket *packet);
void start(void);
void stop(void);
void setMaxPlayers(int m_maxPlayers);
ServerState getState(void);
void setState(ServerState m_state);
private:
void loadAssets(void);
ServerState state;
AssetManager *assets;
std::string gameName;
int maxPlayers;
int port;
int masterChannel;
int matchId;
int currentPlayerId;
StiGame::Net::UdpSocket masterSocket;
StiGame::Net::MessageDispatcher dispatcher;
std::list<PlayerConnection*> players;
};
#endif // GAMESERVER_H
| [
"[email protected]"
] | |
1fa7be0236342ddc8883bab1be417d8277f681e5 | f1fc349f2d4e876a070561a4c4d71c5e95fd33a4 | /ch07/7_31_xy.cpp | a8af4d7dd786d0c9077ad5cfd6d3f1a0fca8a23c | [] | no_license | sytu/cpp_primer | 9daccddd815fc0968008aa97e6bcfb36bbccd83d | 6cfb14370932e93c796290f40c70c153cc15db44 | refs/heads/master | 2021-01-17T19:03:48.738381 | 2017-04-13T10:35:43 | 2017-04-13T10:35:43 | 71,568,597 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 175 | cpp | #include <iostream>
using std::cout; using std::cin; using std::endl; using std::string;
class Y;
class X {
Y * py = nullptr;
};
class Y {
X ox;
};
int main(void) {
} | [
"[email protected]"
] | |
20b0862c075bed18bf4da3e8d79b85f2f3e73516 | 6887ae9cae51dc646e0e51ef81a8fec6a7addbc0 | /cl/cl.h | 4e04faa4a34d97f8dfe425a5e52ef7b9790e5ed9 | [
"MIT"
] | permissive | JoeAndrew/OpenSkyStacker | d93c6131aeea10c47eeb6ae2bb3c2dd4a2282510 | d55b4b5bbfdffa893410f3ddc594848847f6d0e5 | refs/heads/master | 2022-11-05T04:54:19.776152 | 2020-06-20T16:40:42 | 2020-06-20T16:40:42 | 273,366,286 | 0 | 0 | MIT | 2020-06-19T00:15:36 | 2020-06-19T00:15:35 | null | UTF-8 | C++ | false | false | 690 | h | #ifndef OSS_CL_H
#define OSS_CL_H
#include <libstacker/imagestacker.h>
#include <QtCore>
using namespace openskystacker;
class OSS : public QObject
{
Q_OBJECT
ImageStacker *stacker;
QThread *workerThread;
int progressBarWidth;
int maxMessageLength = 0;
QString outputFileName;
public:
OSS(QObject *parent = 0);
~OSS();
public slots:
void printProgressBar(QString message, int percentage);
void stackingFinished(cv::Mat, QString);
void starDetectionFinished(int stars);
void stackingError(QString);
void run();
signals:
void stackImages(int, int);
void detectStars(QString, int);
void finished();
};
#endif // OSS_CL_H
| [
"[email protected]"
] | |
d55c20bb0b4da3486bf42de30ea41fb9e857c37c | c2f274cc70f79955cf593eccd3cab00d4b6e71f6 | /About2/About2/about2.cpp | d2d5f679affec79e67c0f7befc1cb0e27fac7c93 | [] | no_license | konalo-X/Win32Pro | cc980703c54bf38c1f2d08d82a4b96177ac3277a | 1db3021a046dbedae45bdc087c5991d12da181d2 | refs/heads/master | 2021-01-19T10:29:55.497438 | 2019-04-17T13:52:46 | 2019-04-17T13:52:46 | 82,184,713 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,049 | cpp | #include <windows.h>
#include "resource.h"
LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
INT_PTR CALLBACK DialogProc(HWND ,UINT ,WPARAM ,LPARAM );
void PaintWindow(HWND, int, int);
void PaintBlock(HWND, int, int);
TCHAR szAppName[] = TEXT("About2");
int iCurrentColor = IDC_RADIO1;
int iCurrentFigure = IDC_RADIO9;
int WINAPI WinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance, _In_ LPSTR lpCmdLine, _In_ int nShowCmd)
{
HWND hwnd;
MSG msg;
WNDCLASS wndclass;
wndclass.cbClsExtra = 0;
wndclass.cbWndExtra = 0;
wndclass.hbrBackground = (HBRUSH)GetStockObject(WHITE_BRUSH);
wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
wndclass.hIcon = LoadIcon(hInstance, szAppName);
wndclass.hInstance = hInstance;
wndclass.lpfnWndProc = WndProc;
wndclass.lpszClassName = szAppName;
wndclass.lpszMenuName = szAppName;
wndclass.style = CS_HREDRAW | CS_VREDRAW;
if (!RegisterClass(&wndclass))
{
MessageBox(NULL, TEXT("The Program Requires Winodws NT!"), szAppName, MB_ICONERROR);
return 0;
}
hwnd = CreateWindow(szAppName, TEXT("About2 Program Demo "), WS_OVERLAPPEDWINDOW,
CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
NULL, NULL, hInstance, NULL);
ShowWindow(hwnd, nShowCmd);
UpdateWindow(hwnd);
while (GetMessage(&msg,NULL,0,0))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
return msg.wParam;
}
void PaintWindow(HWND hwnd, int iColor, int iFigure)
{
static COLORREF iColors[] = {
RGB(0,0,0),RGB(0,0,255),
RGB(0,255,0),RGB(0,255,255),
RGB(255,0,0),RGB(255,0,255),
RGB(255,255,0),RGB(255,255,255)
};
HBRUSH hBrush;
RECT rect;
HDC hdc;
hBrush = CreateSolidBrush(iColors[iColor - IDC_RADIO1]);
hdc = GetDC(hwnd);
GetClientRect(hwnd, &rect);
hBrush = (HBRUSH)SelectObject(hdc, hBrush);
if (iFigure==IDC_RADIO9)
{
Rectangle(hdc, rect.left, rect.top, rect.right, rect.bottom);
}
else
Ellipse(hdc, rect.left, rect.top, rect.right, rect.bottom);
DeleteObject(SelectObject(hdc, hBrush));
ReleaseDC(hwnd, hdc);
}
void PaintBlock(HWND hwnd, int iColor, int iFigure)
{
InvalidateRect(hwnd, NULL, TRUE);
UpdateWindow(hwnd);
PaintWindow(hwnd, iColor, iFigure);
}
LRESULT CALLBACK WndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
static HINSTANCE hinst;
PAINTSTRUCT ps;
switch (uMsg)
{
case WM_CREATE:
hinst = ((LPCREATESTRUCT)lParam)->hInstance;
return 0;
case WM_COMMAND:
switch (LOWORD(wParam))
{
case ID_HELP_ABOUT:
if(DialogBox(hinst, TEXT("About2"), hwnd, DialogProc))
InvalidateRect(hwnd,NULL,TRUE);
default:
break;
}
case WM_PAINT:
BeginPaint(hwnd,&ps);
PaintWindow(hwnd, iCurrentColor,iCurrentFigure);
EndPaint(hwnd, &ps);
return 0;
case WM_DESTROY:
PostQuitMessage(0);
return 0;
}
return DefWindowProc(hwnd, uMsg, wParam, lParam);
}
BOOL CALLBACK DialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
static int iColor, iFigure;
static HWND hCtrlBlock;
switch (uMsg)
{
case WM_INITDIALOG:
CheckRadioButton(hwndDlg, IDC_RADIO1, IDC_RADIO8, iCurrentColor);
CheckRadioButton(hwndDlg, IDC_RADIO9, IDC_RADIO10, iCurrentFigure);
hCtrlBlock = GetDlgItem(hwndDlg, IDC_BLOCK);
SetFocus(GetDlgItem(hwndDlg, IDC_BLOCK));
return FALSE;
case WM_COMMAND:
switch (LOWORD(wParam))
{
case IDOK:
iCurrentColor = iColor;
iCurrentFigure = iFigure;
EndDialog(hwndDlg, TRUE);
return TRUE;
case IDCANCEL:
EndDialog(hwndDlg, FALSE);
return TRUE;
case IDC_RADIO1:
case IDC_RADIO2:
case IDC_RADIO3:
case IDC_RADIO4:
case IDC_RADIO5:
case IDC_RADIO6:
case IDC_RADIO7:
case IDC_RADIO8:
iColor = LOWORD(wParam);
CheckRadioButton(hwndDlg, IDC_RADIO1, IDC_RADIO8, iColor);
PaintBlock(hCtrlBlock, iColor, iFigure);
return TRUE;
case IDC_RADIO9:
case IDC_RADIO10:
iFigure = LOWORD(wParam);
CheckRadioButton(hwndDlg, IDC_RADIO9, IDC_RADIO10, iFigure);
PaintBlock(hCtrlBlock, iColor, iFigure);
return TRUE;
}
break;
case WM_PAINT:
PaintBlock(hCtrlBlock, iColor, iFigure);
break;
}
return FALSE;
} | [
"[email protected]"
] | |
120cab063de853158b25395b983e24a7e06b43ca | cc567dab5deddfb2fb8f826b2789dc5ea967c489 | /statesystem.hpp | 6f0c099b39178a611f957c45a2b95b74044eece1 | [] | no_license | swomack/gl_cadscene_rendertechniques | d4f90fdf6e35e3334b83bf97b218ad11d1844883 | faaeb73d41b9ab23dac0499d900b669d0deea774 | refs/heads/master | 2021-03-30T20:26:15.689043 | 2017-12-11T11:29:24 | 2017-12-11T11:29:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,599 | hpp | /*-----------------------------------------------------------------------
Copyright (c) 2014, NVIDIA. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Neither the name of its contributors may be used to endorse
or promote products derived from this software without specific
prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-----------------------------------------------------------------------*/
/* Contact [email protected] (Christoph Kubisch) for feedback */
#ifndef STATESYSTEM_H__
#define STATESYSTEM_H__
#include <GL/glew.h>
#include <vector>
class StateSystem {
public:
static inline bool isBitSet(GLbitfield bits, GLuint key)
{
return (bits & (1<<key)) ? true : false;
}
static inline void setBit(GLbitfield& bits, GLuint key)
{
bits |= (1<<key);
}
static GLbitfield getBit(GLuint key)
{
return (1<<key);
}
static inline GLboolean setBitState(GLbitfield& bits, GLuint key, GLboolean state)
{
if (state) bits |= (1<<key);
else bits &= ~(1<<key);
return state;
}
static const GLuint MAX_DRAWBUFFERS = 8;
static const GLuint MAX_CLIPPLANES = 8;
static const GLuint MAX_VIEWPORTS = 16;
static const GLuint MAX_VERTEXATTRIBS = 16;
static const GLuint MAX_VERTEXBINDINGS = 16;
static const GLuint MAX_COLORS = 4;
enum StateBits {
BLEND,
COLOR_LOGIC_OP,
CULL_FACE,
DEPTH_CLAMP,
DEPTH_TEST,
DITHER,
FRAMEBUFFER_SRGB,
LINE_SMOOTH,
MULTISAMPLE,
POLYGON_OFFSET_FILL,
POLYGON_OFFSET_LINE,
POLYGON_OFFSET_POINT,
POLYGON_SMOOTH,
PRIMITIVE_RESTART,
PRIMITIVE_RESTART_FIXED_INDEX,
RASTERIZER_DISCARD,
SAMPLE_ALPHA_TO_COVERAGE,
SAMPLE_ALPHA_TO_ONE,
SAMPLE_COVERAGE,
SAMPLE_SHADING,
SAMPLE_MASK,
STENCIL_TEST,
SCISSOR_TEST,
TEXTURE_CUBE_MAP_SEAMLESS,
PROGRAM_POINT_SIZE,
NUM_STATEBITS,
};
enum StateBitsDepr {
DEPR_ALPHA_TEST,
DEPR_LINE_STIPPLE,
DEPR_POINT_SMOOTH,
DEPR_POINT_SPRITE,
DEPR_POLYGON_STIPPLE,
NUM_STATEBITSDEPR,
};
enum Faces {
FACE_FRONT,
FACE_BACK,
MAX_FACES,
};
//////////////////////////////////////////////////////////////////////////
struct ClipDistanceState {
GLbitfield enabled;
ClipDistanceState()
{
enabled = 0;
}
void applyGL() const;
void getGL();
};
//////////////////////////////////////////////////////////////////////////
struct AlphaStateDepr {
GLenum mode;
GLfloat refvalue;
AlphaStateDepr()
{
mode = GL_ALWAYS;
refvalue = 1.0;
}
void applyGL() const;
void getGL();
};
//////////////////////////////////////////////////////////////////////////
struct StencilOp
{
GLenum fail;
GLenum zfail;
GLenum zpass;
};
struct StencilFunc
{
GLenum func;
GLuint refvalue;
GLuint mask;
};
struct StencilState{
StencilFunc funcs[MAX_FACES];
StencilOp ops[MAX_FACES];
StencilState()
{
for (GLuint i = 0; i < MAX_FACES; i++){
funcs[i].func = GL_ALWAYS;
funcs[i].refvalue = 0;
funcs[i].mask = ~0;
}
}
void applyGL() const;
void getGL();
};
//////////////////////////////////////////////////////////////////////////
struct BlendMode{
GLenum srcw;
GLenum dstw;
GLenum equ;
};
struct BlendStage{
BlendMode rgb;
BlendMode alpha;
};
struct BlendState{
GLbitfield separateEnable; // only set this if you want per draw enable
//GLfloat color[4];
GLuint useSeparate; // if set uses per draw, otherwise first
BlendStage blends[MAX_DRAWBUFFERS];
BlendState() {
separateEnable = 0;
useSeparate = GL_FALSE;
for (GLuint i = 0; i < MAX_DRAWBUFFERS; i++){
blends[i].alpha.srcw = GL_ONE;
blends[i].alpha.dstw = GL_ZERO;
blends[i].alpha.equ = GL_FUNC_ADD;
blends[i].rgb = blends[i].alpha;
}
}
void applyGL() const;
void getGL();
};
//////////////////////////////////////////////////////////////////////////
struct DepthState {
GLenum func;
// depth bounds for NV?
DepthState() {
func = GL_LESS;
}
void applyGL() const;
void getGL();
};
//////////////////////////////////////////////////////////////////////////
struct LogicState {
GLenum op;
LogicState() {
op = GL_COPY;
}
void applyGL() const;
void getGL();
};
//////////////////////////////////////////////////////////////////////////
struct RasterState {
//GLenum frontFace;
GLenum cullFace;
//GLfloat polyOffsetFactor;
//GLfloat polyOffsetUnits;
GLenum polyMode; // front and back, no separate support
//GLfloat lineWidth;
GLfloat pointSize;
GLfloat pointFade;
GLenum pointSpriteOrigin;
RasterState() {
//frontFace = GL_CCW;
cullFace = GL_BACK;
//polyOffsetFactor = 0;
//polyOffsetUnits = 0;
polyMode = GL_FILL;
//lineWidth = 1.0f;
pointSize = 1.0f;
pointFade = 1.0f;
pointSpriteOrigin = GL_UPPER_LEFT;
}
void applyGL() const;
void getGL();
};
struct RasterStateDepr {
GLint lineStippleFactor;
GLushort lineStipplePattern;
GLenum shadeModel;
// ignore polygonStipple
RasterStateDepr() {
lineStippleFactor = 1;
lineStipplePattern = ~0;
shadeModel = GL_SMOOTH;
}
void applyGL() const;
void getGL();
};
//////////////////////////////////////////////////////////////////////////
struct PrimitiveState {
GLuint restartIndex;
GLint patchVertices;
GLenum provokingVertex;
PrimitiveState() {
restartIndex = ~0;
patchVertices = 3;
provokingVertex = GL_LAST_VERTEX_CONVENTION;
}
void applyGL() const;
void getGL();
};
//////////////////////////////////////////////////////////////////////////
struct SampleState {
GLfloat coverage;
GLboolean invert;
GLuint mask;
SampleState() {
coverage = 1.0;
invert = GL_FALSE;
mask = ~0;
}
void applyGL() const;
void getGL();
};
//////////////////////////////////////////////////////////////////////////
struct Viewport {
float x;
float y;
float width;
float height;
};
struct DepthRange {
double nearPlane;
double farPlane;
};
struct Scissor {
GLint x;
GLint y;
GLsizei width;
GLsizei height;
};
/*
struct ViewportState {
GLuint useSeparate; // if set uses per view, otherwise first
Viewport viewports[MAX_VIEWPORTS];
ViewportState() {
useSeparate = GL_FALSE;
for (GLuint i = 0; i < MAX_VIEWPORTS; i++){
viewports[i].x = 0;
viewports[i].y = 0;
viewports[i].width = 0;
viewports[i].height = 0;
}
}
void applyGL() const;
void getGL();
};
*/
struct DepthRangeState {
GLuint useSeparate; // if set uses per view, otherwise first
DepthRange depths[MAX_VIEWPORTS];
DepthRangeState() {
useSeparate = GL_FALSE;
for (GLuint i = 0; i < MAX_VIEWPORTS; i++){
depths[i].nearPlane = 0;
depths[i].farPlane = 1;
}
}
void applyGL() const;
void getGL();
};
/*
struct ScissorState {
GLuint useSeparate; // if set uses per draw, otherwise first
Scissor scissor[MAX_VIEWPORTS];
ScissorState() {
useSeparate = GL_FALSE;
for (GLuint i = 0; i < MAX_VIEWPORTS; i++){
scissor[i].x = 0;
scissor[i].y = 0;
scissor[i].width = 0;
scissor[i].height = 0;
}
}
void applyGL() const;
void getGL();
};
*/
struct ScissorEnableState {
GLbitfield separateEnable; // only set this if you want per view enable
ScissorEnableState() {
separateEnable = 0;
}
void applyGL() const;
void getGL();
};
//////////////////////////////////////////////////////////////////////////
struct MaskState {
GLuint colormaskUseSeparate;
GLboolean colormask[MAX_DRAWBUFFERS][MAX_COLORS];
GLboolean depth;
GLuint stencil[MAX_FACES];
MaskState() {
colormaskUseSeparate = GL_FALSE;
depth = GL_TRUE;
stencil[FACE_FRONT] = ~0;
stencil[FACE_BACK] = ~0;
for (GLuint i = 0; i < MAX_DRAWBUFFERS; i++){
for (GLuint c = 0; c < MAX_COLORS; c++){
colormask[i][c] = GL_TRUE;
}
}
}
void applyGL() const;
void getGL();
};
//////////////////////////////////////////////////////////////////////////
struct FBOState {
GLuint fboDraw;
GLuint fboRead;
GLenum readBuffer;
GLenum drawBuffers[MAX_DRAWBUFFERS];
GLuint numBuffers;
FBOState() {
fboDraw = 0;
fboRead = 0;
readBuffer = GL_BACK;
for (GLuint i = 0; i < MAX_DRAWBUFFERS; i++){
drawBuffers[i] = GL_NONE;
}
drawBuffers[0] = GL_BACK;
numBuffers = 1;
}
void setFbo(GLuint fbo){
fboDraw = fbo;
fboRead = fbo;
readBuffer = GL_COLOR_ATTACHMENT0;
drawBuffers[0] = GL_COLOR_ATTACHMENT0;
numBuffers = 1;
}
void applyGL(bool noBind=false) const;
void getGL();
};
//////////////////////////////////////////////////////////////////////////
struct VertexEnableState {
GLbitfield enabled;
VertexEnableState() {
enabled = 0;
}
void applyGL(GLbitfield changed=~0) const;
void getGL();
};
enum VertexModeType {
VERTEXMODE_FLOAT,
VERTEXMODE_INT,
VERTEXMODE_UINT,
// ignore double and int64 for now
};
struct VertexFormat {
VertexModeType mode;
GLboolean normalized;
GLuint size;
GLenum type;
GLsizei relativeoffset;
GLuint binding;
};
struct VertexBinding {
GLsizei divisor;
GLsizei stride;
};
struct VertexFormatState {
VertexFormat formats[MAX_VERTEXATTRIBS];
VertexBinding bindings[MAX_VERTEXBINDINGS];
VertexFormatState() {
for (GLuint i = 0; i < MAX_VERTEXATTRIBS; i++){
formats[i].mode = VERTEXMODE_FLOAT;
formats[i].size = 4;
formats[i].type = GL_FLOAT;
formats[i].normalized = GL_FALSE;
formats[i].relativeoffset = 0;
formats[i].binding = i;
}
for (GLuint i = 0; i < MAX_VERTEXATTRIBS; i++){
bindings[i].divisor = 0;
bindings[i].stride = 0;
}
}
void applyGL(GLbitfield changedFormat = ~0,GLbitfield changedBinding = ~0) const;
void getGL();
};
struct VertexData {
VertexModeType mode;
union {
float floats[4];
int ints[4];
unsigned int uints[4];
};
};
struct VertexImmediateState {
VertexData data[MAX_VERTEXATTRIBS];
VertexImmediateState() {
for (GLuint i = 0; i < MAX_VERTEXATTRIBS; i++){
data[i].mode = VERTEXMODE_FLOAT;
data[i].floats[0] = 0;
data[i].floats[1] = 0;
data[i].floats[2] = 0;
data[i].floats[3] = 1;
}
}
void applyGL(GLbitfield changed = ~0) const;
void getGL(); // ensure proper mode, otherwise will get garbage
};
//////////////////////////////////////////////////////////////////////////
struct ProgramState {
// for sake of simplicity this mechanism only support programs
// and not program pipelines, nor use of subroutines
GLuint program;
ProgramState() {
program = 0;
}
void applyGL() const;
void getGL();
};
//////////////////////////////////////////////////////////////////////////
struct EnableState {
GLbitfield stateBits;
EnableState() {
stateBits = 0;
}
void applyGL(GLbitfield changed = ~0) const;
void getGL();
};
struct EnableStateDepr {
GLbitfield stateBitsDepr;
EnableStateDepr() {
stateBitsDepr = 0;
}
void applyGL(GLbitfield changed = ~0) const;
void getGL();
};
//////////////////////////////////////////////////////////////////////////
struct State {
EnableState enable;
EnableStateDepr enableDepr;
ProgramState program;
ClipDistanceState clip;
AlphaStateDepr alpha;
BlendState blend;
DepthState depth;
StencilState stencil;
LogicState logic;
PrimitiveState primitive;
SampleState sample;
RasterState raster;
RasterStateDepr rasterDepr;
//ViewportState viewport;
DepthRangeState depthrange;
//ScissorState scissor;
ScissorEnableState scissorenable;
MaskState mask;
FBOState fbo;
VertexEnableState vertexenable;
VertexFormatState vertexformat;
VertexImmediateState verteximm;
// This value only exists to ease compatibility with NV_command_list
// and is unaffected by apply or get operations, its value
// is set during StateSystem::set
GLenum basePrimitiveMode;
State()
: basePrimitiveMode(GL_TRIANGLES)
{
}
void applyGL(bool coreonly=false, bool skipFboBinding=false) const;
void getGL(bool coreonly=false);
};
typedef unsigned int StateID;
static const StateID INVALID_ID = ~0;
void init(bool coreonly=false);
void deinit();
void generate(GLuint num, StateID* objects);
void destroy( GLuint num, const StateID* objects );
void set(StateID id, const State& state, GLenum basePrimitiveMode);
const State& get(StateID id) const;
void applyGL(StateID id, bool skipFboBinding) const; // brute force sets everything
void applyGL(StateID id, StateID prev,bool skipFboBinding); // tries to avoid redundant, can pass INVALID_ID as previous
void prepareTransition(StateID id, StateID prev); // can speed up state apply
private:
static const int MAX_DIFFS = 16;
struct StateDiffKey{
StateID state;
GLuint incarnation;
};
struct StateDiff {
enum ContentBits {
ENABLE,
ENABLE_DEPR,
PROGRAM,
CLIP,
ALPHA_DEPR,
BLEND,
DEPTH,
STENCIL,
LOGIC,
PRIMITIVE,
RASTER,
RASTER_DEPR,
//VIEWPORT,
DEPTHRANGE,
//SCISSOR,
SCISSORENABLE,
MASK,
FBO,
VERTEXENABLE,
VERTEXFORMAT,
VERTEXIMMEDIATE,
};
GLbitfield changedContentBits;
GLbitfield changedStateBits;
GLbitfield changedStateDeprBits;
GLbitfield changedVertexEnable;
GLbitfield changedVertexImm;
GLbitfield changedVertexFormat;
GLbitfield changedVertexBinding;
GLuint pad;
};
struct StateInternal {
State state;
GLuint incarnation;
int usedDiff;
StateDiffKey others[MAX_DIFFS];
StateDiff diffs[MAX_DIFFS];
StateInternal() {
incarnation = 0;
}
};
bool m_coreonly;
std::vector<StateInternal> m_states;
std::vector<StateID> m_freeIDs;
void makeDiff(StateDiff& diff, const StateInternal &fromInternal, const StateInternal &toInternal);
void applyDiffGL(const StateDiff& diff, const State &to, bool skipFboBinding);
int prepareTransitionCache(StateID prev, StateInternal& to );
};
#endif | [
"[email protected]"
] | |
5847cca3bb4fbc2b6d11a23b38538cbdc7ae053d | 2a227eef64b4914c7aefddc4ca89791839406164 | /tutorials/tutorial15/src/ClientSession.cpp | 1d4cad3c2cff8f259ae60e77218f8003ef910b20 | [] | no_license | Vkd4U2NtVkZOVg/cc_tutorial | a305295d2f27c1f4bd5fe9ab56cf55e4f4efdc3f | 82ae9a68e2cb2ecfcd09c1fdf71183519f9fc414 | refs/heads/master | 2022-11-30T18:25:42.470611 | 2020-07-23T23:04:27 | 2020-07-23T23:04:27 | 286,372,368 | 1 | 0 | null | 2020-08-10T04:06:11 | 2020-08-10T04:06:10 | null | UTF-8 | C++ | false | false | 4,211 | cpp | #include "ClientSession.h"
#include <cassert>
#include <iterator>
#include <iomanip>
#include "comms/process.h"
#include "comms/iterator.h"
namespace cc_tutorial
{
void ClientSession::handle(Msg2& msg)
{
std::cout << "Received message \"" << msg.doName() << "\" with ID=" << (unsigned)msg.doGetId() << '\n';
std::cout << std::endl;
if (m_currentStage != CommsStage_Msg1Msg2) {
std::cerr << "ERROR: Unexpected stage" << std::endl;
return;
}
doNextStage();
}
void ClientSession::handle(Msg3& msg)
{
std::cout << "Received message \"" << msg.doName() << "\" with ID=" << (unsigned)msg.doGetId() << '\n';
std::cout << std::endl;
if (m_currentStage != CommsStage_Msg3) {
std::cerr << "ERROR: Unexpected stage" << std::endl;
return;
}
doNextStage();
}
void ClientSession::handle(Message& msg)
{
std::cerr << "ERROR: Received unexpected message \"" << msg.name() << " with ID=" << (unsigned)msg.getId() << std::endl;
}
bool ClientSession::startImpl()
{
doNextStage();
return true;
}
std::size_t ClientSession::processInputImpl(const std::uint8_t* buf, std::size_t bufLen)
{
std::cout << "Processing input: " << std::hex;
std::copy_n(buf, bufLen, std::ostream_iterator<unsigned>(std::cout, " "));
std::cout << std::dec << std::endl;
// Process reported input, create relevant message objects and
// dispatch all the created messages
// to this object for handling (appropriate handle() member function will be called)
return comms::processAllWithDispatch(buf, bufLen, m_frame, *this);
}
void ClientSession::sendMessage(const Message& msg)
{
// The statement below uses polymorphic message name and ID retrievals.
std::vector<std::uint8_t> output;
// Use polymorphic serialization length calculation to reserve
// needed capacity
output.reserve(m_frame.length(msg));
// Serialize message into the buffer (including framing)
// The serialization uses polymorphic write functionality.
auto writeIter = std::back_inserter(output);
// The frame will use polymorphic message ID retrieval to
// prefix message payload with message ID
auto es = m_frame.write(msg, writeIter, output.max_size());
if (es == comms::ErrorStatus::UpdateRequired) {
auto updateIter = &output[0];
es = m_frame.update(updateIter, output.size());
}
if (es != comms::ErrorStatus::Success) {
assert(!"Write operation failed unexpectedly");
return;
}
// Send serialized message back
sendOutput(&output[0], output.size());
std::cout << "Sending message \"" << msg.name() << "\" with ID=" << (unsigned)msg.getId() << ": " << std::hex;
std::copy(output.begin(), output.end(), std::ostream_iterator<unsigned>(std::cout, " "));
std::cout << std::dec << std::endl;
}
void ClientSession::doNextStage()
{
do {
if (CommsStage_NumOfValues <= m_currentStage) {
// Happens in first cycle
m_currentStage = static_cast<decltype(m_currentStage)>(0);
break;
}
m_currentStage =
static_cast<decltype(m_currentStage)>(
static_cast<unsigned>(m_currentStage) + 1);
if (m_currentStage < CommsStage_NumOfValues) {
break;
}
// Client execution is complete
getIo().stop();
return;
} while (false);
using NextSendFunc = void (ClientSession::*)();
static const NextSendFunc Map[] = {
/* CommsStage_Msg1Msg2 */ &ClientSession::sendMsg1Msg2,
/* CommsStage_Msg3 */ &ClientSession::sendMsg3,
};
static const std::size_t MapSize = std::extent<decltype(Map)>::value;
static_assert(MapSize == CommsStage_NumOfValues, "Invalid Map");
auto func = Map[m_currentStage];
(this->*func)(); // Call appropriate sending function
}
void ClientSession::sendMsg1Msg2()
{
Msg1 msg1;
sendMessage(msg1);
Msg2 msg2;
sendMessage(msg2);
}
void ClientSession::sendMsg3()
{
Msg3 msg;
sendMessage(msg);
}
SessionPtr Session::createClient(boost_wrap::io& io)
{
return SessionPtr(new ClientSession(io));
}
} // namespace cc_tutorial
| [
"[email protected]"
] | |
d092c13c000f220e7060568a7664c2e4abaaa7ff | 37251aeeec224175f66efda2158843859e755f16 | /InsertionSortHaker.cpp | 476eac30aa733d6ead9f609b3c0104e5abeefe50 | [] | no_license | DelowarHossen45/Algorithm | 17062e603e3cb78b3acd0c47c7a74376796ba3ea | 22be5e0db8a4f9cf142f087a9e123eb4a8de4829 | refs/heads/master | 2020-03-30T10:29:00.235806 | 2018-12-05T02:16:47 | 2018-12-05T02:16:47 | 151,121,884 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 757 | cpp |
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
#include <assert.h>
void insertionSort(int size, int * ar) {
int i,t,v;
i = size-2;
v = ar[size-1];
while(i>=0){
if (v<ar[i]) {
ar[i+1]=ar[i];
}
else {
ar[i+1]=v;
break;
}
i--;
for(t=0;t<=size-1;t++)
printf("%d ",ar[t]);
printf("\n");
}
if(i==-1){
ar[i+1]=v;
}
for(t=0;t<=size-1;t++)
printf("%d ",ar[t]);
}
int main(void) {
int size;
scanf("%d", &size);
int ar[size], i;
for(i = 0; i < size; i++) {
scanf("%d", &ar[i]);
}
insertionSort(size, ar);
return 0;
}
| [
"[email protected]"
] | |
408877cc2e2f1228291641a1dae27fe75a5a546e | b13a1888e37977255f9fd428ab620f744ac9601e | /Day_3/src/Day3.cpp | b9454c61f9d1bbbb0af9ce0ddc25b60309bc58e2 | [] | no_license | anastasia-spb/AdventOfCode | 17aa7f049f4ea34e3383d4775f4b254936d3f66a | 7e68e0a90425db6c19b62647db98737713bf7344 | refs/heads/master | 2020-05-18T06:56:42.788889 | 2019-04-30T09:25:44 | 2019-04-30T09:25:44 | 184,249,727 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,473 | cpp | #include <iostream>
#include <fstream>
#include <vector>
#include <string>
#include <set>
#include <map>
#include <math.h>
class Carrier{
private:
std::map <char,unsigned int> directionMap;
std::map <char,unsigned int> opositeDirectionMap;
std::vector<unsigned int> direction; //^>v<
public:
Carrier(){
directionMap = {{ '^', 0 }, { '>', 1 },
{ 'v', 2 }, { '<', 3 }};
opositeDirectionMap = {{ 'v', 0 }, { '<', 1 },
{ '^', 2 }, { '>', 3 }};
direction.resize(directionMap.size());
};
int move(char c);
unsigned int returnDirectionKey();
};
int Carrier::move(char c){
if(direction[opositeDirectionMap.at(c)] > 0){
direction[opositeDirectionMap.at(c)]--;
} else {
direction[directionMap.at(c)]++;
}
return 0;
}
unsigned int Carrier::returnDirectionKey(){
unsigned int key = 0;
//we suppose, that maximum distance to one direction is 1000
for (unsigned int i = 0; i < direction.size(); i++){
key += direction[i]*pow(1000, i);
}
std::cout << key << std::endl;
return key;
}
int main() {
std::set<unsigned int> directionsSet;
std::vector<Carrier> carrier(2); //0 - Santa, 1 - Robot
directionsSet.insert(0); //insert initial position
std::ifstream is("Day3In.txt"); // open file
char c; int ii = 0;
while (is.get(c)) {
carrier[ii % carrier.size()].move(c);
directionsSet.insert(carrier[ii % carrier.size()].returnDirectionKey());
ii++;
}
std::cout << directionsSet.size();
return 0;
}
| [
"[email protected]"
] | |
c91ee088c222f68eed38d3adc6b3100d99c240ab | da0e478aa133828b46cd9cdce321440806d6f5df | /IbeoSDK6.0.4/sdk/source/sdk/src/datablocks/measurementlist/MeasurementList2821Importer2821.cpp | c534cf2b23befd72f2acdeff8a6413dd8ee8698b | [] | no_license | mak6gulati/IBEO_sdk_check | 1a911fe1b5bd92bab2800fa40e4dfa219a10cd5b | 1114cbb88fa1a95e00b912a501582b3a42544379 | refs/heads/master | 2022-12-30T17:27:45.848079 | 2020-10-20T07:59:07 | 2020-10-20T07:59:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,530 | cpp | //==============================================================================
//! \file
//!
//!$$IBEO_LICENSE_BEGIN$$
//!Copyright (c) Ibeo Automotive Systems GmbH 2010-2019
//!All Rights Reserved.
//!
//!For more details, please refer to the accompanying file
//!IbeoLicense.txt.
//!$$IBEO_LICENSE_END$$
//!
//!\date Jan 13, 2018
//------------------------------------------------------------------------------
//==============================================================================
#include <ibeo/common/sdk/misc/WinCompatibility.hpp>
#include <ibeo/common/sdk/ContainerBufferAndImporterProvider.hpp>
#include <ibeo/common/sdk/datablocks/measurementlist/MeasurementList2821Importer2821.hpp>
//==============================================================================
namespace {
using C = ibeo::common::sdk::MeasurementList2821;
using R = ibeo::common::sdk::RegisteredImporter<C, ibeo::common::sdk::DataTypeId::DataType_MeasurementList2821>;
using Id = ibeo::common::sdk::ImporterBase::ImporterRegisterId;
} // namespace
//==============================================================================
//==============================================================================
namespace ibeo {
namespace common {
namespace sdk {
//==============================================================================
// Specializations for RegisteredImporter
//==============================================================================
//generate link between data-type-id/importer and importer create function <dtid, ImpHash> ==> Imp::create
template<>
const Id R::registeredImporterInitial
= Id(std::make_pair(R::getDataTypeStatic(), C::getClassIdHashStatic()), R::create);
//registering ... (create map)
//add all device that can receive any datatype that can be imported to GeneralDataTypeContainer
class IdcFile;
class IbeoEcu;
class IbeoScala;
// basically R::registeredImporter = R::registeredImporterInitial
// but on its way it will be added to all mentioned RegisteredImporterGlobal maps
// through which registerImporter method it has been piped through.
// RegisteredImporterGlobal is a singleton for each device.
template<>
const Id R::registeredImporter = ContainerBufferAndImporterProviderGlobal<IdcFile>::getInstance().registerImporter(
ContainerBufferAndImporterProviderGlobal<IbeoEcu>::getInstance().registerImporter(
ContainerBufferAndImporterProviderGlobal<IbeoScala>::getInstance().registerImporter(
registeredImporterInitial)));
//==============================================================================
//==============================================================================
std::streamsize
Importer<C, DataTypeId::DataType_MeasurementList2821>::getSerializedSize(const DataContainerBase& c) const
{
const C* container{nullptr};
try
{
container = &dynamic_cast<const C&>(c);
}
catch (const std::bad_cast&)
{
throw ContainerMismatch();
}
return std::streamsize(4 + sizeof(NTPTime)) + std::streamsize(container->m_listName.size() + 1)
+ std::streamsize(container->m_groupName.size() + 1) + container->m_mList.getSerializedSize();
}
//==============================================================================
bool Importer<C, DataTypeId::DataType_MeasurementList2821>::deserialize(std::istream& is,
DataContainerBase& c,
const IbeoDataHeader& dh) const
{
C* container{nullptr};
try
{
container = &dynamic_cast<C&>(c);
}
catch (const std::bad_cast&)
{
throw ContainerMismatch();
}
container->setDataHeader(dh);
const int64_t startPos = streamposToInt64(is.tellg());
ibeo::common::sdk::readBE(is, container->m_microseconds); // 4
ibeo::common::sdk::readBE(is, container->m_timestamp); // 8
getline(is, container->m_listName, std::string::value_type(0));
getline(is, container->m_groupName, std::string::value_type(0));
container->m_mList.deserialize(is);
return !is.fail() && ((streamposToInt64(is.tellg()) - startPos) == this->getSerializedSize(c))
&& this->getSerializedSize(c) == dh.getMessageSize();
}
//==============================================================================
} // namespace sdk
} // namespace common
} // namespace ibeo
//==============================================================================
| [
"[email protected]"
] | |
c782966ee36affc57d04fff816b1f2962630d1d3 | ae65068d61b44ee49c472097f3f273d9bc68fc4e | /cpp_d10/ex04/IAsteroid.hh | 135e416dfa2709aa29e7e71e6abe7d26a8139d91 | [] | no_license | wrandy44/cpp_exercises | 9d1c6bd8b3ab8cd24fc90bfafa0b1bcd9cec13bf | 32dcae55ec8751313583cb52f4bb4e70008c5838 | refs/heads/master | 2021-04-09T11:12:28.175030 | 2018-03-17T03:05:53 | 2018-03-17T03:05:53 | 125,591,971 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 691 | hh | //
// IAsteroid.hh for azd in /home/debrau_c/cours/piscine/cpp_d10/ex04
//
// Made by Carl DEBRAUWERE
// Login <[email protected]>
//
// Started on Sat Jan 14 01:18:23 2017 Carl DEBRAUWERE
// Last update Sat Jan 14 03:23:57 2017 Carl DEBRAUWERE
//
#ifndef IASTEROID_HH
# define IASTEROID_HH
# include <string>
class IAsteroid;
class DeepCoreMiner;
class StripMiner;
# include "IMiningLaser.hh"
class IAsteroid{
public:
virtual ~IAsteroid(){};
virtual std::string beMined(IMiningLaser *) const = 0;
virtual std::string beMined(DeepCoreMiner *) const = 0;
virtual std::string beMined(StripMiner *)const = 0;
virtual std::string getName() const = 0;
};
#endif /** **/
| [
"[email protected]"
] | |
536bfe59cecfbf88f7396edce04b59df46953aba | 5d10a5ee1dadcb724b64854afcf9e090c1eac64f | /src/midi2trigger/ui.h | 2f749388e9291092d8db54a9784ede8dda1bd251 | [] | no_license | kvitekp/midi2trigger | 20cc518d91289fb15f333124e8d96313a98fa8dd | 21e7f9d0c82e2eea815d8abc2e7dc93d89d6f477 | refs/heads/master | 2020-12-31T21:57:47.205350 | 2020-10-05T03:41:04 | 2020-10-05T03:41:04 | 239,043,093 | 3 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 2,134 | h | // Copyright 2015 Peter Kvitek.
//
// Author: Peter Kvitek ([email protected])
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
// -----------------------------------------------------------------------------
#ifndef MIDI2TRIGGER_UI_H_
#define MIDI2TRIGGER_UI_H_
#include "midi2trigger/midi2trigger.h"
#include "avrlib/ui/event_queue.h"
namespace midi2trigger {
using namespace avrlib;
enum ControlTypeEx {
CONTROL_REQUEST = 10,
};
enum RequestControlId {
REQUEST_UPDATE = 1,
//REQUEST_SETSTROBEWIDTH,
//REQUEST_SETDRUMNOTES,
};
class Ui {
public:
static void Init();
static void Poll() {
PollSwitches();
}
static void AddRequest(uint8_t id = 0, uint8_t value = 0) {
queue_.AddEvent(CONTROL_REQUEST, id, value);
}
static void TouchQueue() {
queue_.Touch();
}
static void DisableLearnSwitchReset() {
disable_learn_switch_reset_ = 1;
}
static uint8_t LearnSwitchLow() {
return learn_switch_.low();
}
static void RequestDevSave() {
request_dev_save_ = 1;
}
static void DoEvents();
private:
static uint8_t learn_switch_reset_count_;
static uint8_t disable_learn_switch_reset_;
static uint8_t request_dev_save_;
static LearnSwitch learn_switch_;
static TriggerSwitches trigger_switches_;
static avrlib::EventQueue<8> queue_;
static void PollSwitches();
static void HandleEvent(const Event& e);
static void HandleRequestEvent(const Event& e);
static void OnIdle();
};
extern Ui ui;
} // namespace midi2trigger
#endif // MIDI2TRIGGER_UI_H_
| [
"[email protected]"
] | |
d9d5f35526331b803c834813dac07ca18767351e | 558d65df03675d79432c0eeebc286845faeb4427 | /Library/Il2cppBuildCache/Android/armeabi-v7a/il2cppOutput/UnityEngine.UIModule.cpp | 0ca04a24bf4f3b51dc9faaf7389bd27df4f4c6cb | [
"MIT"
] | permissive | engincandanabas/Box_Tower | 691338787942c2d7c103736289482677910bc194 | 24360bd611c17f2b5db0fbf106bbf8005e2900ae | refs/heads/main | 2023-04-15T08:11:56.874608 | 2021-05-01T20:58:36 | 2021-05-01T20:58:36 | 363,504,282 | 7 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 210,205 | cpp | #include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.h>
struct VirtActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
struct GenericVirtActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
struct InterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
struct GenericInterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
// System.Collections.Generic.List`1<UnityEngine.Color32>
struct List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5;
// System.Collections.Generic.List`1<System.Int32>
struct List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7;
// System.Collections.Generic.List`1<UnityEngine.UIVertex>
struct List_1_t8907FD137E854241E2657BF53E6CEFF7370FAC5F;
// System.Collections.Generic.List`1<UnityEngine.Vector3>
struct List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181;
// System.Collections.Generic.List`1<UnityEngine.Vector4>
struct List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A;
// System.Char[]
struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
// UnityEngine.Color32[]
struct Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2;
// System.Delegate[]
struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8;
// System.Int32[]
struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32;
// UnityEngine.UIVertex[]
struct UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A;
// UnityEngine.Vector3[]
struct Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4;
// UnityEngine.Vector4[]
struct Vector4U5BU5D_tCE72D928AA6FF1852BAC5E4396F6F0131ED11871;
// System.AsyncCallback
struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA;
// UnityEngine.Behaviour
struct Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9;
// UnityEngine.Camera
struct Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C;
// UnityEngine.Canvas
struct Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA;
// UnityEngine.CanvasGroup
struct CanvasGroup_t6912220105AB4A288A2FD882D163D7218EAA577F;
// UnityEngine.CanvasRenderer
struct CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288;
// System.IAsyncResult
struct IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370;
// UnityEngine.Material
struct Material_t8927C00353A72755313F046D0CE85178AE8218EE;
// UnityEngine.Mesh
struct Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// UnityEngine.Object
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A;
// UnityEngine.RectTransform
struct RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072;
// System.String
struct String_t;
// UnityEngine.Texture
struct Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE;
// UnityEngine.Transform
struct Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1;
// System.Void
struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5;
// UnityEngine.Camera/CameraCallback
struct CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D;
// UnityEngine.Canvas/WillRenderCanvases
struct WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958;
// UnityEngine.RectTransform/ReapplyDrivenProperties
struct ReapplyDrivenProperties_t1441259DADA8FE33A95334AC24C017DFA3DEB4CE;
IL2CPP_EXTERN_C RuntimeClass* Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RectTransformUtility_t829C94C0D38759683C2BED9FCE244D5EA9842396_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958_il2cpp_TypeInfo_var;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8;
struct Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4;
IL2CPP_EXTERN_C_BEGIN
IL2CPP_EXTERN_C_END
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <Module>
struct U3CModuleU3E_t63B6B48305101546DF11B47878CCA7AEAAAC0934
{
public:
public:
};
// System.Object
// System.Collections.Generic.List`1<UnityEngine.Color32>
struct List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5, ____items_1)); }
inline Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* get__items_1() const { return ____items_1; }
inline Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5_StaticFields, ____emptyArray_5)); }
inline Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* get__emptyArray_5() const { return ____emptyArray_5; }
inline Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Int32>
struct List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7, ____items_1)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__items_1() const { return ____items_1; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7_StaticFields, ____emptyArray_5)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__emptyArray_5() const { return ____emptyArray_5; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.UIVertex>
struct List_1_t8907FD137E854241E2657BF53E6CEFF7370FAC5F : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t8907FD137E854241E2657BF53E6CEFF7370FAC5F, ____items_1)); }
inline UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A* get__items_1() const { return ____items_1; }
inline UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t8907FD137E854241E2657BF53E6CEFF7370FAC5F, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t8907FD137E854241E2657BF53E6CEFF7370FAC5F, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t8907FD137E854241E2657BF53E6CEFF7370FAC5F, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t8907FD137E854241E2657BF53E6CEFF7370FAC5F_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t8907FD137E854241E2657BF53E6CEFF7370FAC5F_StaticFields, ____emptyArray_5)); }
inline UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A* get__emptyArray_5() const { return ____emptyArray_5; }
inline UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.Vector3>
struct List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181, ____items_1)); }
inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* get__items_1() const { return ____items_1; }
inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181_StaticFields, ____emptyArray_5)); }
inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* get__emptyArray_5() const { return ____emptyArray_5; }
inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.Vector4>
struct List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Vector4U5BU5D_tCE72D928AA6FF1852BAC5E4396F6F0131ED11871* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A, ____items_1)); }
inline Vector4U5BU5D_tCE72D928AA6FF1852BAC5E4396F6F0131ED11871* get__items_1() const { return ____items_1; }
inline Vector4U5BU5D_tCE72D928AA6FF1852BAC5E4396F6F0131ED11871** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Vector4U5BU5D_tCE72D928AA6FF1852BAC5E4396F6F0131ED11871* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Vector4U5BU5D_tCE72D928AA6FF1852BAC5E4396F6F0131ED11871* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A_StaticFields, ____emptyArray_5)); }
inline Vector4U5BU5D_tCE72D928AA6FF1852BAC5E4396F6F0131ED11871* get__emptyArray_5() const { return ____emptyArray_5; }
inline Vector4U5BU5D_tCE72D928AA6FF1852BAC5E4396F6F0131ED11871** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Vector4U5BU5D_tCE72D928AA6FF1852BAC5E4396F6F0131ED11871* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
struct Il2CppArrayBounds;
// System.Array
// UnityEngine.RectTransformUtility
struct RectTransformUtility_t829C94C0D38759683C2BED9FCE244D5EA9842396 : public RuntimeObject
{
public:
public:
};
struct RectTransformUtility_t829C94C0D38759683C2BED9FCE244D5EA9842396_StaticFields
{
public:
// UnityEngine.Vector3[] UnityEngine.RectTransformUtility::s_Corners
Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* ___s_Corners_0;
public:
inline static int32_t get_offset_of_s_Corners_0() { return static_cast<int32_t>(offsetof(RectTransformUtility_t829C94C0D38759683C2BED9FCE244D5EA9842396_StaticFields, ___s_Corners_0)); }
inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* get_s_Corners_0() const { return ___s_Corners_0; }
inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4** get_address_of_s_Corners_0() { return &___s_Corners_0; }
inline void set_s_Corners_0(Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* value)
{
___s_Corners_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Corners_0), (void*)value);
}
};
// System.String
struct String_t : public RuntimeObject
{
public:
// System.Int32 System.String::m_stringLength
int32_t ___m_stringLength_0;
// System.Char System.String::m_firstChar
Il2CppChar ___m_firstChar_1;
public:
inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
inline void set_m_stringLength_0(int32_t value)
{
___m_stringLength_0 = value;
}
inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
inline void set_m_firstChar_1(Il2CppChar value)
{
___m_firstChar_1 = value;
}
};
struct String_t_StaticFields
{
public:
// System.String System.String::Empty
String_t* ___Empty_5;
public:
inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
inline String_t* get_Empty_5() const { return ___Empty_5; }
inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
inline void set_Empty_5(String_t* value)
{
___Empty_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
}
};
// UnityEngine.UISystemProfilerApi
struct UISystemProfilerApi_t642D38AFC1B80CA673E5BB3235E14C831E630EAB : public RuntimeObject
{
public:
public:
};
// System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com
{
};
// System.Boolean
struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37
{
public:
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); }
inline bool get_m_value_0() const { return ___m_value_0; }
inline bool* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(bool value)
{
___m_value_0 = value;
}
};
struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields
{
public:
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
public:
inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); }
inline String_t* get_TrueString_5() const { return ___TrueString_5; }
inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
inline void set_TrueString_5(String_t* value)
{
___TrueString_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
}
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); }
inline String_t* get_FalseString_6() const { return ___FalseString_6; }
inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
inline void set_FalseString_6(String_t* value)
{
___FalseString_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
}
};
// UnityEngine.Color
struct Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659
{
public:
// System.Single UnityEngine.Color::r
float ___r_0;
// System.Single UnityEngine.Color::g
float ___g_1;
// System.Single UnityEngine.Color::b
float ___b_2;
// System.Single UnityEngine.Color::a
float ___a_3;
public:
inline static int32_t get_offset_of_r_0() { return static_cast<int32_t>(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___r_0)); }
inline float get_r_0() const { return ___r_0; }
inline float* get_address_of_r_0() { return &___r_0; }
inline void set_r_0(float value)
{
___r_0 = value;
}
inline static int32_t get_offset_of_g_1() { return static_cast<int32_t>(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___g_1)); }
inline float get_g_1() const { return ___g_1; }
inline float* get_address_of_g_1() { return &___g_1; }
inline void set_g_1(float value)
{
___g_1 = value;
}
inline static int32_t get_offset_of_b_2() { return static_cast<int32_t>(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___b_2)); }
inline float get_b_2() const { return ___b_2; }
inline float* get_address_of_b_2() { return &___b_2; }
inline void set_b_2(float value)
{
___b_2 = value;
}
inline static int32_t get_offset_of_a_3() { return static_cast<int32_t>(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___a_3)); }
inline float get_a_3() const { return ___a_3; }
inline float* get_address_of_a_3() { return &___a_3; }
inline void set_a_3(float value)
{
___a_3 = value;
}
};
// System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52
{
public:
public:
};
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com
{
};
// System.Int32
struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046
{
public:
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___m_value_0)); }
inline int32_t get_m_value_0() const { return ___m_value_0; }
inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int32_t value)
{
___m_value_0 = value;
}
};
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
// UnityEngine.Quaternion
struct Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4
{
public:
// System.Single UnityEngine.Quaternion::x
float ___x_0;
// System.Single UnityEngine.Quaternion::y
float ___y_1;
// System.Single UnityEngine.Quaternion::z
float ___z_2;
// System.Single UnityEngine.Quaternion::w
float ___w_3;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___x_0)); }
inline float get_x_0() const { return ___x_0; }
inline float* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(float value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___y_1)); }
inline float get_y_1() const { return ___y_1; }
inline float* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(float value)
{
___y_1 = value;
}
inline static int32_t get_offset_of_z_2() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___z_2)); }
inline float get_z_2() const { return ___z_2; }
inline float* get_address_of_z_2() { return &___z_2; }
inline void set_z_2(float value)
{
___z_2 = value;
}
inline static int32_t get_offset_of_w_3() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___w_3)); }
inline float get_w_3() const { return ___w_3; }
inline float* get_address_of_w_3() { return &___w_3; }
inline void set_w_3(float value)
{
___w_3 = value;
}
};
struct Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_StaticFields
{
public:
// UnityEngine.Quaternion UnityEngine.Quaternion::identityQuaternion
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___identityQuaternion_4;
public:
inline static int32_t get_offset_of_identityQuaternion_4() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_StaticFields, ___identityQuaternion_4)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_identityQuaternion_4() const { return ___identityQuaternion_4; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_identityQuaternion_4() { return &___identityQuaternion_4; }
inline void set_identityQuaternion_4(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___identityQuaternion_4 = value;
}
};
// UnityEngine.Rect
struct Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878
{
public:
// System.Single UnityEngine.Rect::m_XMin
float ___m_XMin_0;
// System.Single UnityEngine.Rect::m_YMin
float ___m_YMin_1;
// System.Single UnityEngine.Rect::m_Width
float ___m_Width_2;
// System.Single UnityEngine.Rect::m_Height
float ___m_Height_3;
public:
inline static int32_t get_offset_of_m_XMin_0() { return static_cast<int32_t>(offsetof(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878, ___m_XMin_0)); }
inline float get_m_XMin_0() const { return ___m_XMin_0; }
inline float* get_address_of_m_XMin_0() { return &___m_XMin_0; }
inline void set_m_XMin_0(float value)
{
___m_XMin_0 = value;
}
inline static int32_t get_offset_of_m_YMin_1() { return static_cast<int32_t>(offsetof(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878, ___m_YMin_1)); }
inline float get_m_YMin_1() const { return ___m_YMin_1; }
inline float* get_address_of_m_YMin_1() { return &___m_YMin_1; }
inline void set_m_YMin_1(float value)
{
___m_YMin_1 = value;
}
inline static int32_t get_offset_of_m_Width_2() { return static_cast<int32_t>(offsetof(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878, ___m_Width_2)); }
inline float get_m_Width_2() const { return ___m_Width_2; }
inline float* get_address_of_m_Width_2() { return &___m_Width_2; }
inline void set_m_Width_2(float value)
{
___m_Width_2 = value;
}
inline static int32_t get_offset_of_m_Height_3() { return static_cast<int32_t>(offsetof(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878, ___m_Height_3)); }
inline float get_m_Height_3() const { return ___m_Height_3; }
inline float* get_address_of_m_Height_3() { return &___m_Height_3; }
inline void set_m_Height_3(float value)
{
___m_Height_3 = value;
}
};
// System.Single
struct Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E
{
public:
// System.Single System.Single::m_value
float ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E, ___m_value_0)); }
inline float get_m_value_0() const { return ___m_value_0; }
inline float* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(float value)
{
___m_value_0 = value;
}
};
// UnityEngine.Vector2
struct Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9
{
public:
// System.Single UnityEngine.Vector2::x
float ___x_0;
// System.Single UnityEngine.Vector2::y
float ___y_1;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9, ___x_0)); }
inline float get_x_0() const { return ___x_0; }
inline float* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(float value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9, ___y_1)); }
inline float get_y_1() const { return ___y_1; }
inline float* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(float value)
{
___y_1 = value;
}
};
struct Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields
{
public:
// UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___zeroVector_2;
// UnityEngine.Vector2 UnityEngine.Vector2::oneVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___oneVector_3;
// UnityEngine.Vector2 UnityEngine.Vector2::upVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___upVector_4;
// UnityEngine.Vector2 UnityEngine.Vector2::downVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___downVector_5;
// UnityEngine.Vector2 UnityEngine.Vector2::leftVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___leftVector_6;
// UnityEngine.Vector2 UnityEngine.Vector2::rightVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___rightVector_7;
// UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___positiveInfinityVector_8;
// UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___negativeInfinityVector_9;
public:
inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___zeroVector_2)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_zeroVector_2() const { return ___zeroVector_2; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_zeroVector_2() { return &___zeroVector_2; }
inline void set_zeroVector_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___zeroVector_2 = value;
}
inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___oneVector_3)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_oneVector_3() const { return ___oneVector_3; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_oneVector_3() { return &___oneVector_3; }
inline void set_oneVector_3(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___oneVector_3 = value;
}
inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___upVector_4)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_upVector_4() const { return ___upVector_4; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_upVector_4() { return &___upVector_4; }
inline void set_upVector_4(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___upVector_4 = value;
}
inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___downVector_5)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_downVector_5() const { return ___downVector_5; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_downVector_5() { return &___downVector_5; }
inline void set_downVector_5(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___downVector_5 = value;
}
inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___leftVector_6)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_leftVector_6() const { return ___leftVector_6; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_leftVector_6() { return &___leftVector_6; }
inline void set_leftVector_6(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___leftVector_6 = value;
}
inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___rightVector_7)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_rightVector_7() const { return ___rightVector_7; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_rightVector_7() { return &___rightVector_7; }
inline void set_rightVector_7(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___rightVector_7 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___positiveInfinityVector_8)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; }
inline void set_positiveInfinityVector_8(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___positiveInfinityVector_8 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___negativeInfinityVector_9)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; }
inline void set_negativeInfinityVector_9(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___negativeInfinityVector_9 = value;
}
};
// UnityEngine.Vector3
struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E
{
public:
// System.Single UnityEngine.Vector3::x
float ___x_2;
// System.Single UnityEngine.Vector3::y
float ___y_3;
// System.Single UnityEngine.Vector3::z
float ___z_4;
public:
inline static int32_t get_offset_of_x_2() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___x_2)); }
inline float get_x_2() const { return ___x_2; }
inline float* get_address_of_x_2() { return &___x_2; }
inline void set_x_2(float value)
{
___x_2 = value;
}
inline static int32_t get_offset_of_y_3() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___y_3)); }
inline float get_y_3() const { return ___y_3; }
inline float* get_address_of_y_3() { return &___y_3; }
inline void set_y_3(float value)
{
___y_3 = value;
}
inline static int32_t get_offset_of_z_4() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___z_4)); }
inline float get_z_4() const { return ___z_4; }
inline float* get_address_of_z_4() { return &___z_4; }
inline void set_z_4(float value)
{
___z_4 = value;
}
};
struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields
{
public:
// UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___zeroVector_5;
// UnityEngine.Vector3 UnityEngine.Vector3::oneVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___oneVector_6;
// UnityEngine.Vector3 UnityEngine.Vector3::upVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___upVector_7;
// UnityEngine.Vector3 UnityEngine.Vector3::downVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___downVector_8;
// UnityEngine.Vector3 UnityEngine.Vector3::leftVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___leftVector_9;
// UnityEngine.Vector3 UnityEngine.Vector3::rightVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___rightVector_10;
// UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___forwardVector_11;
// UnityEngine.Vector3 UnityEngine.Vector3::backVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___backVector_12;
// UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___positiveInfinityVector_13;
// UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___negativeInfinityVector_14;
public:
inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___zeroVector_5)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_zeroVector_5() const { return ___zeroVector_5; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_zeroVector_5() { return &___zeroVector_5; }
inline void set_zeroVector_5(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___zeroVector_5 = value;
}
inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___oneVector_6)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_oneVector_6() const { return ___oneVector_6; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_oneVector_6() { return &___oneVector_6; }
inline void set_oneVector_6(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___oneVector_6 = value;
}
inline static int32_t get_offset_of_upVector_7() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___upVector_7)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_upVector_7() const { return ___upVector_7; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_upVector_7() { return &___upVector_7; }
inline void set_upVector_7(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___upVector_7 = value;
}
inline static int32_t get_offset_of_downVector_8() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___downVector_8)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_downVector_8() const { return ___downVector_8; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_downVector_8() { return &___downVector_8; }
inline void set_downVector_8(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___downVector_8 = value;
}
inline static int32_t get_offset_of_leftVector_9() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___leftVector_9)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_leftVector_9() const { return ___leftVector_9; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_leftVector_9() { return &___leftVector_9; }
inline void set_leftVector_9(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___leftVector_9 = value;
}
inline static int32_t get_offset_of_rightVector_10() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___rightVector_10)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_rightVector_10() const { return ___rightVector_10; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_rightVector_10() { return &___rightVector_10; }
inline void set_rightVector_10(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___rightVector_10 = value;
}
inline static int32_t get_offset_of_forwardVector_11() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___forwardVector_11)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_forwardVector_11() const { return ___forwardVector_11; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_forwardVector_11() { return &___forwardVector_11; }
inline void set_forwardVector_11(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___forwardVector_11 = value;
}
inline static int32_t get_offset_of_backVector_12() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___backVector_12)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_backVector_12() const { return ___backVector_12; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_backVector_12() { return &___backVector_12; }
inline void set_backVector_12(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___backVector_12 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___positiveInfinityVector_13)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; }
inline void set_positiveInfinityVector_13(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___positiveInfinityVector_13 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___negativeInfinityVector_14)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; }
inline void set_negativeInfinityVector_14(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___negativeInfinityVector_14 = value;
}
};
// UnityEngine.Vector4
struct Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7
{
public:
// System.Single UnityEngine.Vector4::x
float ___x_1;
// System.Single UnityEngine.Vector4::y
float ___y_2;
// System.Single UnityEngine.Vector4::z
float ___z_3;
// System.Single UnityEngine.Vector4::w
float ___w_4;
public:
inline static int32_t get_offset_of_x_1() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___x_1)); }
inline float get_x_1() const { return ___x_1; }
inline float* get_address_of_x_1() { return &___x_1; }
inline void set_x_1(float value)
{
___x_1 = value;
}
inline static int32_t get_offset_of_y_2() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___y_2)); }
inline float get_y_2() const { return ___y_2; }
inline float* get_address_of_y_2() { return &___y_2; }
inline void set_y_2(float value)
{
___y_2 = value;
}
inline static int32_t get_offset_of_z_3() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___z_3)); }
inline float get_z_3() const { return ___z_3; }
inline float* get_address_of_z_3() { return &___z_3; }
inline void set_z_3(float value)
{
___z_3 = value;
}
inline static int32_t get_offset_of_w_4() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___w_4)); }
inline float get_w_4() const { return ___w_4; }
inline float* get_address_of_w_4() { return &___w_4; }
inline void set_w_4(float value)
{
___w_4 = value;
}
};
struct Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields
{
public:
// UnityEngine.Vector4 UnityEngine.Vector4::zeroVector
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___zeroVector_5;
// UnityEngine.Vector4 UnityEngine.Vector4::oneVector
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___oneVector_6;
// UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___positiveInfinityVector_7;
// UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___negativeInfinityVector_8;
public:
inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___zeroVector_5)); }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_zeroVector_5() const { return ___zeroVector_5; }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_zeroVector_5() { return &___zeroVector_5; }
inline void set_zeroVector_5(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
___zeroVector_5 = value;
}
inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___oneVector_6)); }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_oneVector_6() const { return ___oneVector_6; }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_oneVector_6() { return &___oneVector_6; }
inline void set_oneVector_6(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
___oneVector_6 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_7() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___positiveInfinityVector_7)); }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_positiveInfinityVector_7() const { return ___positiveInfinityVector_7; }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_positiveInfinityVector_7() { return &___positiveInfinityVector_7; }
inline void set_positiveInfinityVector_7(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
___positiveInfinityVector_7 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___negativeInfinityVector_8)); }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_negativeInfinityVector_8() const { return ___negativeInfinityVector_8; }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_negativeInfinityVector_8() { return &___negativeInfinityVector_8; }
inline void set_negativeInfinityVector_8(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
___negativeInfinityVector_8 = value;
}
};
// System.Void
struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5
{
public:
union
{
struct
{
};
uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1];
};
public:
};
// System.Delegate
struct Delegate_t : public RuntimeObject
{
public:
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject * ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::extra_arg
intptr_t ___extra_arg_5;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_6;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t * ___method_info_7;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t * ___original_method_info_8;
// System.DelegateData System.Delegate::data
DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_10;
public:
inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); }
inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
inline void set_method_ptr_0(Il2CppMethodPointer value)
{
___method_ptr_0 = value;
}
inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); }
inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
inline void set_invoke_impl_1(intptr_t value)
{
___invoke_impl_1 = value;
}
inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); }
inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
inline void set_m_target_2(RuntimeObject * value)
{
___m_target_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value);
}
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); }
inline intptr_t get_method_3() const { return ___method_3; }
inline intptr_t* get_address_of_method_3() { return &___method_3; }
inline void set_method_3(intptr_t value)
{
___method_3 = value;
}
inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); }
inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
inline void set_delegate_trampoline_4(intptr_t value)
{
___delegate_trampoline_4 = value;
}
inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); }
inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; }
inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; }
inline void set_extra_arg_5(intptr_t value)
{
___extra_arg_5 = value;
}
inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); }
inline intptr_t get_method_code_6() const { return ___method_code_6; }
inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; }
inline void set_method_code_6(intptr_t value)
{
___method_code_6 = value;
}
inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); }
inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; }
inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; }
inline void set_method_info_7(MethodInfo_t * value)
{
___method_info_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value);
}
inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); }
inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; }
inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; }
inline void set_original_method_info_8(MethodInfo_t * value)
{
___original_method_info_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value);
}
inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); }
inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * get_data_9() const { return ___data_9; }
inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 ** get_address_of_data_9() { return &___data_9; }
inline void set_data_9(DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * value)
{
___data_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value);
}
inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); }
inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; }
inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; }
inline void set_method_is_virtual_10(bool value)
{
___method_is_virtual_10 = value;
}
};
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t_marshaled_pinvoke
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9;
int32_t ___method_is_virtual_10;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t_marshaled_com
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9;
int32_t ___method_is_virtual_10;
};
// UnityEngine.Object
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Object::m_CachedPtr
intptr_t ___m_CachedPtr_0;
public:
inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A, ___m_CachedPtr_0)); }
inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; }
inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; }
inline void set_m_CachedPtr_0(intptr_t value)
{
___m_CachedPtr_0 = value;
}
};
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_StaticFields
{
public:
// System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
public:
inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); }
inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value)
{
___OffsetOfInstanceIDInCPlusPlusObject_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Object
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_pinvoke
{
intptr_t ___m_CachedPtr_0;
};
// Native definition for COM marshalling of UnityEngine.Object
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_com
{
intptr_t ___m_CachedPtr_0;
};
// UnityEngine.Plane
struct Plane_t80844BF2332EAFC1DDEDD616A950242031A115C7
{
public:
// UnityEngine.Vector3 UnityEngine.Plane::m_Normal
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Normal_1;
// System.Single UnityEngine.Plane::m_Distance
float ___m_Distance_2;
public:
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(Plane_t80844BF2332EAFC1DDEDD616A950242031A115C7, ___m_Normal_1)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Normal_1() const { return ___m_Normal_1; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Normal_1 = value;
}
inline static int32_t get_offset_of_m_Distance_2() { return static_cast<int32_t>(offsetof(Plane_t80844BF2332EAFC1DDEDD616A950242031A115C7, ___m_Distance_2)); }
inline float get_m_Distance_2() const { return ___m_Distance_2; }
inline float* get_address_of_m_Distance_2() { return &___m_Distance_2; }
inline void set_m_Distance_2(float value)
{
___m_Distance_2 = value;
}
};
// UnityEngine.Ray
struct Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6
{
public:
// UnityEngine.Vector3 UnityEngine.Ray::m_Origin
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Origin_0;
// UnityEngine.Vector3 UnityEngine.Ray::m_Direction
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Direction_1;
public:
inline static int32_t get_offset_of_m_Origin_0() { return static_cast<int32_t>(offsetof(Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6, ___m_Origin_0)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Origin_0() const { return ___m_Origin_0; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Origin_0() { return &___m_Origin_0; }
inline void set_m_Origin_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Origin_0 = value;
}
inline static int32_t get_offset_of_m_Direction_1() { return static_cast<int32_t>(offsetof(Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6, ___m_Direction_1)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Direction_1() const { return ___m_Direction_1; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Direction_1() { return &___m_Direction_1; }
inline void set_m_Direction_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Direction_1 = value;
}
};
// UnityEngine.RenderMode
struct RenderMode_tFF8E9ABC771ACEBD5ACC2D9DFB02264E0EA6CDBF
{
public:
// System.Int32 UnityEngine.RenderMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RenderMode_tFF8E9ABC771ACEBD5ACC2D9DFB02264E0EA6CDBF, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UISystemProfilerApi/SampleType
struct SampleType_t7700FC306F2734DE18BEF3F782C4BE834FA3F304
{
public:
// System.Int32 UnityEngine.UISystemProfilerApi/SampleType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SampleType_t7700FC306F2734DE18BEF3F782C4BE834FA3F304, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Component
struct Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A
{
public:
public:
};
// UnityEngine.Material
struct Material_t8927C00353A72755313F046D0CE85178AE8218EE : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A
{
public:
public:
};
// UnityEngine.Mesh
struct Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A
{
public:
public:
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
public:
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* ___delegates_11;
public:
inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* get_delegates_11() const { return ___delegates_11; }
inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8** get_address_of_delegates_11() { return &___delegates_11; }
inline void set_delegates_11(DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* value)
{
___delegates_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_11;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_11;
};
// UnityEngine.Texture
struct Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A
{
public:
public:
};
struct Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE_StaticFields
{
public:
// System.Int32 UnityEngine.Texture::GenerateAllMips
int32_t ___GenerateAllMips_4;
public:
inline static int32_t get_offset_of_GenerateAllMips_4() { return static_cast<int32_t>(offsetof(Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE_StaticFields, ___GenerateAllMips_4)); }
inline int32_t get_GenerateAllMips_4() const { return ___GenerateAllMips_4; }
inline int32_t* get_address_of_GenerateAllMips_4() { return &___GenerateAllMips_4; }
inline void set_GenerateAllMips_4(int32_t value)
{
___GenerateAllMips_4 = value;
}
};
// System.AsyncCallback
struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Behaviour
struct Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684
{
public:
public:
};
// UnityEngine.CanvasRenderer
struct CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684
{
public:
// System.Boolean UnityEngine.CanvasRenderer::<isMask>k__BackingField
bool ___U3CisMaskU3Ek__BackingField_4;
public:
inline static int32_t get_offset_of_U3CisMaskU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E, ___U3CisMaskU3Ek__BackingField_4)); }
inline bool get_U3CisMaskU3Ek__BackingField_4() const { return ___U3CisMaskU3Ek__BackingField_4; }
inline bool* get_address_of_U3CisMaskU3Ek__BackingField_4() { return &___U3CisMaskU3Ek__BackingField_4; }
inline void set_U3CisMaskU3Ek__BackingField_4(bool value)
{
___U3CisMaskU3Ek__BackingField_4 = value;
}
};
// UnityEngine.Transform
struct Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684
{
public:
public:
};
// UnityEngine.Canvas/WillRenderCanvases
struct WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Camera
struct Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9
{
public:
public:
};
struct Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C_StaticFields
{
public:
// UnityEngine.Camera/CameraCallback UnityEngine.Camera::onPreCull
CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D * ___onPreCull_4;
// UnityEngine.Camera/CameraCallback UnityEngine.Camera::onPreRender
CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D * ___onPreRender_5;
// UnityEngine.Camera/CameraCallback UnityEngine.Camera::onPostRender
CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D * ___onPostRender_6;
public:
inline static int32_t get_offset_of_onPreCull_4() { return static_cast<int32_t>(offsetof(Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C_StaticFields, ___onPreCull_4)); }
inline CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D * get_onPreCull_4() const { return ___onPreCull_4; }
inline CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D ** get_address_of_onPreCull_4() { return &___onPreCull_4; }
inline void set_onPreCull_4(CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D * value)
{
___onPreCull_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onPreCull_4), (void*)value);
}
inline static int32_t get_offset_of_onPreRender_5() { return static_cast<int32_t>(offsetof(Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C_StaticFields, ___onPreRender_5)); }
inline CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D * get_onPreRender_5() const { return ___onPreRender_5; }
inline CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D ** get_address_of_onPreRender_5() { return &___onPreRender_5; }
inline void set_onPreRender_5(CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D * value)
{
___onPreRender_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onPreRender_5), (void*)value);
}
inline static int32_t get_offset_of_onPostRender_6() { return static_cast<int32_t>(offsetof(Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C_StaticFields, ___onPostRender_6)); }
inline CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D * get_onPostRender_6() const { return ___onPostRender_6; }
inline CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D ** get_address_of_onPostRender_6() { return &___onPostRender_6; }
inline void set_onPostRender_6(CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D * value)
{
___onPostRender_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___onPostRender_6), (void*)value);
}
};
// UnityEngine.Canvas
struct Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9
{
public:
public:
};
struct Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA_StaticFields
{
public:
// UnityEngine.Canvas/WillRenderCanvases UnityEngine.Canvas::willRenderCanvases
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * ___willRenderCanvases_4;
public:
inline static int32_t get_offset_of_willRenderCanvases_4() { return static_cast<int32_t>(offsetof(Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA_StaticFields, ___willRenderCanvases_4)); }
inline WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * get_willRenderCanvases_4() const { return ___willRenderCanvases_4; }
inline WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 ** get_address_of_willRenderCanvases_4() { return &___willRenderCanvases_4; }
inline void set_willRenderCanvases_4(WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * value)
{
___willRenderCanvases_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___willRenderCanvases_4), (void*)value);
}
};
// UnityEngine.CanvasGroup
struct CanvasGroup_t6912220105AB4A288A2FD882D163D7218EAA577F : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9
{
public:
public:
};
// UnityEngine.RectTransform
struct RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 : public Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1
{
public:
public:
};
struct RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072_StaticFields
{
public:
// UnityEngine.RectTransform/ReapplyDrivenProperties UnityEngine.RectTransform::reapplyDrivenProperties
ReapplyDrivenProperties_t1441259DADA8FE33A95334AC24C017DFA3DEB4CE * ___reapplyDrivenProperties_4;
public:
inline static int32_t get_offset_of_reapplyDrivenProperties_4() { return static_cast<int32_t>(offsetof(RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072_StaticFields, ___reapplyDrivenProperties_4)); }
inline ReapplyDrivenProperties_t1441259DADA8FE33A95334AC24C017DFA3DEB4CE * get_reapplyDrivenProperties_4() const { return ___reapplyDrivenProperties_4; }
inline ReapplyDrivenProperties_t1441259DADA8FE33A95334AC24C017DFA3DEB4CE ** get_address_of_reapplyDrivenProperties_4() { return &___reapplyDrivenProperties_4; }
inline void set_reapplyDrivenProperties_4(ReapplyDrivenProperties_t1441259DADA8FE33A95334AC24C017DFA3DEB4CE * value)
{
___reapplyDrivenProperties_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___reapplyDrivenProperties_4), (void*)value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// UnityEngine.Vector3[]
struct Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E m_Items[1];
public:
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
m_Items[index] = value;
}
};
// System.Delegate[]
struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Delegate_t * m_Items[1];
public:
inline Delegate_t * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Delegate_t ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Delegate_t * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Delegate_t * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Delegate_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Delegate System.Delegate::Combine(System.Delegate,System.Delegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_Combine_m631D10D6CFF81AB4F237B9D549B235A54F45FA55 (Delegate_t * ___a0, Delegate_t * ___b1, const RuntimeMethod* method);
// System.Delegate System.Delegate::Remove(System.Delegate,System.Delegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_Remove_m8B4AD17254118B2904720D55C9B34FB3DCCBD7D4 (Delegate_t * ___source0, Delegate_t * ___value1, const RuntimeMethod* method);
// System.Void UnityEngine.Canvas::SendWillRenderCanvases()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Canvas_SendWillRenderCanvases_m10EFBC3C2F8BBC2629A9CCC3AFCF3ECF226108C2 (const RuntimeMethod* method);
// System.Void UnityEngine.Canvas/WillRenderCanvases::Invoke()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WillRenderCanvases_Invoke_mFCD97A3223FD31C109A2B6283ECE7FE307E89282 (WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Behaviour::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Behaviour__ctor_mCACD3614226521EA607B0F3640C0FAC7EACCBCE0 (Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.CanvasGroup::get_blocksRaycasts()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CanvasGroup_get_blocksRaycasts_m54BEB93C34E4B4ADB35A33679B0D475A0094F3B4 (CanvasGroup_t6912220105AB4A288A2FD882D163D7218EAA577F * __this, const RuntimeMethod* method);
// System.Void UnityEngine.CanvasRenderer::SetColor_Injected(UnityEngine.Color&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_SetColor_Injected_m18315753FF6B5E9711C522331517ED21D5FD5F58 (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * ___color0, const RuntimeMethod* method);
// System.Void UnityEngine.CanvasRenderer::GetColor_Injected(UnityEngine.Color&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_GetColor_Injected_mA46BD781F57174120BA58E9E569AC6AB1C3131E3 (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * ___ret0, const RuntimeMethod* method);
// System.Void UnityEngine.CanvasRenderer::EnableRectClipping_Injected(UnityEngine.Rect&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_EnableRectClipping_Injected_m61118840C9AD8B28949DE0ABF3F5BDBBC5D1AAE0 (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 * ___rect0, const RuntimeMethod* method);
// System.Void UnityEngine.CanvasRenderer::set_clippingSoftness_Injected(UnityEngine.Vector2&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_set_clippingSoftness_Injected_mCA346C58AF7E78D8C2AC2B39710A019E77A909BA (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * ___value0, const RuntimeMethod* method);
// System.Int32 UnityEngine.CanvasRenderer::get_materialCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CanvasRenderer_get_materialCount_mF29C9816FEC6D8189DDC7AB16B40EC56FAB59488 (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, const RuntimeMethod* method);
// System.Int32 System.Math::Max(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Max_mD8AA27386BF012C65303FCDEA041B0CC65056E7B (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method);
// System.Void UnityEngine.CanvasRenderer::set_materialCount(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_set_materialCount_m00FE6113ACA7FE9AD51DA0A9A0B013D7C811E5DB (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.CanvasRenderer::SetMaterial(UnityEngine.Material,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_SetMaterial_m1D7A8BD75D5DEFC5F0A27FFBA2A2A84755EE421F (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___material0, int32_t ___index1, const RuntimeMethod* method);
// System.Void UnityEngine.CanvasRenderer::SetTexture(UnityEngine.Texture)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_SetTexture_m390FCD8FBC6E992F4AAC9967EBFA3F32A2BD93C1 (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * ___texture0, const RuntimeMethod* method);
// System.Void UnityEngine.CanvasRenderer::SplitUIVertexStreamsInternal(System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_SplitUIVertexStreamsInternal_m58B7D2C67B2C9350C9D2B593A47BB028542B2862 (RuntimeObject * ___verts0, RuntimeObject * ___positions1, RuntimeObject * ___colors2, RuntimeObject * ___uv0S3, RuntimeObject * ___uv1S4, RuntimeObject * ___uv2S5, RuntimeObject * ___uv3S6, RuntimeObject * ___normals7, RuntimeObject * ___tangents8, const RuntimeMethod* method);
// System.Void UnityEngine.CanvasRenderer::SplitIndicesStreamsInternal(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_SplitIndicesStreamsInternal_m2EF9AFF37774AA93C1AA01EB5A9B972AC2056013 (RuntimeObject * ___verts0, RuntimeObject * ___indices1, const RuntimeMethod* method);
// System.Void UnityEngine.CanvasRenderer::CreateUIVertexStreamInternal(System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_CreateUIVertexStreamInternal_m809780CAFF35093E35419CE591554F82D98B608D (RuntimeObject * ___verts0, RuntimeObject * ___positions1, RuntimeObject * ___colors2, RuntimeObject * ___uv0S3, RuntimeObject * ___uv1S4, RuntimeObject * ___uv2S5, RuntimeObject * ___uv3S6, RuntimeObject * ___normals7, RuntimeObject * ___tangents8, RuntimeObject * ___indices9, const RuntimeMethod* method);
// System.Void UnityEngine.RectTransformUtility::PixelAdjustPoint_Injected(UnityEngine.Vector2&,UnityEngine.Transform,UnityEngine.Canvas,UnityEngine.Vector2&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransformUtility_PixelAdjustPoint_Injected_m6F11766952FDCB987CF606EA944CD2A3BA320ECD (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * ___point0, Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___elementTransform1, Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * ___canvas2, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * ___ret3, const RuntimeMethod* method);
// System.Void UnityEngine.RectTransformUtility::PixelAdjustRect_Injected(UnityEngine.RectTransform,UnityEngine.Canvas,UnityEngine.Rect&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransformUtility_PixelAdjustRect_Injected_mDC8127484DA371142BBA3D969AC1F02057D7D8FA (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___rectTransform0, Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * ___canvas1, Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 * ___ret2, const RuntimeMethod* method);
// System.Boolean UnityEngine.RectTransformUtility::PointInRectangle_Injected(UnityEngine.Vector2&,UnityEngine.RectTransform,UnityEngine.Camera,UnityEngine.Vector4&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RectTransformUtility_PointInRectangle_Injected_m57A75F7499F95A60BA3095C450507BDFC15614C8 (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * ___screenPoint0, RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___rect1, Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * ___cam2, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * ___offset3, const RuntimeMethod* method);
// UnityEngine.Vector4 UnityEngine.Vector4::get_zero()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 Vector4_get_zero_m9E807FEBC8B638914DF4A0BA87C0BD95A19F5200 (const RuntimeMethod* method);
// System.Boolean UnityEngine.RectTransformUtility::RectangleContainsScreenPoint(UnityEngine.RectTransform,UnityEngine.Vector2,UnityEngine.Camera,UnityEngine.Vector4)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RectTransformUtility_RectangleContainsScreenPoint_m0B9168E9AC92FE5B79AF3BB24D4B107194C19743 (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___rect0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___screenPoint1, Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * ___cam2, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___offset3, const RuntimeMethod* method);
// System.Boolean UnityEngine.RectTransformUtility::PointInRectangle(UnityEngine.Vector2,UnityEngine.RectTransform,UnityEngine.Camera,UnityEngine.Vector4)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RectTransformUtility_PointInRectangle_m225C8A900DB682113F932EF132FA01A0EC8411EE (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___screenPoint0, RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___rect1, Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * ___cam2, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___offset3, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.Vector2::get_zero()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 Vector2_get_zero_m621041B9DF5FAE86C1EF4CB28C224FEA089CB828 (const RuntimeMethod* method);
// UnityEngine.Vector3 UnityEngine.Vector2::op_Implicit(UnityEngine.Vector2)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector2_op_Implicit_m4FA146E613DBFE6C1C4B0E9B461D622E6F2FC294_inline (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___v0, const RuntimeMethod* method);
// UnityEngine.Ray UnityEngine.RectTransformUtility::ScreenPointToRay(UnityEngine.Camera,UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 RectTransformUtility_ScreenPointToRay_m90048F9120E0F859D8ED12C6590E0793F0602641 (Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * ___cam0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___screenPos1, const RuntimeMethod* method);
// UnityEngine.Quaternion UnityEngine.Transform::get_rotation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 Transform_get_rotation_m4AA3858C00DF4C9614B80352558C4C37D08D2200 (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, const RuntimeMethod* method);
// UnityEngine.Vector3 UnityEngine.Vector3::get_back()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_get_back_mD521DF1A2C26E145578E07D618E1E4D08A1C6220 (const RuntimeMethod* method);
// UnityEngine.Vector3 UnityEngine.Quaternion::op_Multiply(UnityEngine.Quaternion,UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Quaternion_op_Multiply_mDC5F913E6B21FEC72AB2CF737D34CC6C7A69803D (Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___rotation0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___point1, const RuntimeMethod* method);
// UnityEngine.Vector3 UnityEngine.Transform::get_position()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341 (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Plane::.ctor(UnityEngine.Vector3,UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Plane__ctor_m5B830C0E99AA5A47EF0D15767828D6E859867E67 (Plane_t80844BF2332EAFC1DDEDD616A950242031A115C7 * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___inNormal0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___inPoint1, const RuntimeMethod* method);
// System.Boolean UnityEngine.Plane::Raycast(UnityEngine.Ray,System.Single&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Plane_Raycast_m8E3B0EF5B22DF336430373D4997155B647E99A24 (Plane_t80844BF2332EAFC1DDEDD616A950242031A115C7 * __this, Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 ___ray0, float* ___enter1, const RuntimeMethod* method);
// UnityEngine.Vector3 UnityEngine.Ray::GetPoint(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Ray_GetPoint_mC92464E32E42603B7B3444938E8BB8ADA43AB240 (Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 * __this, float ___distance0, const RuntimeMethod* method);
// System.Boolean UnityEngine.RectTransformUtility::ScreenPointToWorldPointInRectangle(UnityEngine.RectTransform,UnityEngine.Vector2,UnityEngine.Camera,UnityEngine.Vector3&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RectTransformUtility_ScreenPointToWorldPointInRectangle_m76B10B1F8517DE72753AF7F61AE6E85722BF63E8 (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___rect0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___screenPoint1, Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * ___cam2, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * ___worldPoint3, const RuntimeMethod* method);
// UnityEngine.Vector3 UnityEngine.Transform::InverseTransformPoint(UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Transform_InverseTransformPoint_m476ABC8F3F14824D7D82FE2C54CEE5A151A669B8 (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___position0, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.Vector2::op_Implicit(UnityEngine.Vector3)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 Vector2_op_Implicit_mE407CAF7446E342E059B00AA9EDB301AEC5B7B1A_inline (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___v0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Object::op_Inequality(UnityEngine.Object,UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Inequality_mE1F187520BD83FB7D86A6D850710C4D42B864E90 (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___x0, Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___y1, const RuntimeMethod* method);
// UnityEngine.Ray UnityEngine.Camera::ScreenPointToRay(UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 Camera_ScreenPointToRay_mD385213935A81030EDC604A39FD64761077CFBAB (Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___pos0, const RuntimeMethod* method);
// UnityEngine.Vector3 UnityEngine.Vector3::get_forward()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_get_forward_m3082920F8A24AA02E4F542B6771EB0B63A91AC90 (const RuntimeMethod* method);
// System.Void UnityEngine.Ray::.ctor(UnityEngine.Vector3,UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ray__ctor_m75B1F651FF47EE6B887105101B7DA61CBF41F83C (Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___origin0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___direction1, const RuntimeMethod* method);
// System.Boolean UnityEngine.Object::op_Equality(UnityEngine.Object,UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54 (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___x0, Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___y1, const RuntimeMethod* method);
// System.Void UnityEngine.Vector2::.ctor(System.Single,System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2__ctor_m9F1F2D5EB5D1FF7091BB527AC8A72CBB309D115E_inline (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * __this, float ___x0, float ___y1, const RuntimeMethod* method);
// UnityEngine.Vector3 UnityEngine.Camera::WorldToScreenPoint(UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Camera_WorldToScreenPoint_m44710195E7736CE9DE5A9B05E32059A9A950F95C (Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___position0, const RuntimeMethod* method);
// UnityEngine.Transform UnityEngine.Transform::GetChild(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * Transform_GetChild_mA7D94BEFF0144F76561D9B8FED61C5C939EC1F1C (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Void UnityEngine.RectTransformUtility::FlipLayoutOnAxis(UnityEngine.RectTransform,System.Int32,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransformUtility_FlipLayoutOnAxis_mB076A21D845C5463FB83DAB1AAB631DBF0783E63 (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___rect0, int32_t ___axis1, bool ___keepPositioning2, bool ___recursive3, const RuntimeMethod* method);
// System.Int32 UnityEngine.Transform::get_childCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Transform_get_childCount_mCBED4F6D3F6A7386C4D97C2C3FD25C383A0BCD05 (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.RectTransform::get_pivot()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 RectTransform_get_pivot_m146F0BB5D3873FCEF3606DAFB8994BFA978095EE (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * __this, const RuntimeMethod* method);
// System.Single UnityEngine.Vector2::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Vector2_get_Item_m0F685FCCDE8FEFF108591D73A6D9F048CCEC5926 (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Void UnityEngine.Vector2::set_Item(System.Int32,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vector2_set_Item_m817FDD0709F52F09ECBB949C29DEE88E73889CAD (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * __this, int32_t ___index0, float ___value1, const RuntimeMethod* method);
// System.Void UnityEngine.RectTransform::set_pivot(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransform_set_pivot_m94F32EF88DC4EC9CA96721F8EDD8BFBC4FD07335 (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___value0, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.RectTransform::get_anchoredPosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 RectTransform_get_anchoredPosition_mFDC4F160F99634B2FBC73FE5FB1F4F4127CDD975 (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.RectTransform::set_anchoredPosition(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransform_set_anchoredPosition_m8143009B7D2B786DF8309D1D319F2212EFD24905 (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___value0, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.RectTransform::get_anchorMin()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 RectTransform_get_anchorMin_m5CBB2E649A3D4234A7A5A16B1BBAADAC9C033319 (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * __this, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.RectTransform::get_anchorMax()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 RectTransform_get_anchorMax_mC1577047A20870209C9A6801B75FE6930AE56F1E (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.RectTransform::set_anchorMin(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransform_set_anchorMin_mD9E6E95890B701A5190C12F5AE42E622246AF798 (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.RectTransform::set_anchorMax(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransform_set_anchorMax_m67E04F54B5122804E32019D5FAE50C21CC67651D (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.RectTransformUtility::FlipLayoutAxes(UnityEngine.RectTransform,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransformUtility_FlipLayoutAxes_m9012C00D121D81002247DAAB9577FCEF1FF8E974 (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___rect0, bool ___keepPositioning1, bool ___recursive2, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.RectTransformUtility::GetTransposed(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 RectTransformUtility_GetTransposed_mC20ACA85E11C96107096F93B04618DA9CCE65A75 (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___input0, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.RectTransform::get_sizeDelta()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 RectTransform_get_sizeDelta_mCFAE8C916280C173AB79BE32B910376E310D1C50 (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.RectTransform::set_sizeDelta(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransform_set_sizeDelta_m61943618442E31C6FF0556CDFC70940AE7AD04D0 (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Vector3::.ctor(System.Single,System.Single,System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * __this, float ___x0, float ___y1, float ___z2, const RuntimeMethod* method);
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Canvas::add_willRenderCanvases(UnityEngine.Canvas/WillRenderCanvases)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Canvas_add_willRenderCanvases_m00E391FCCE9839EEB6D7A729DCBF6B841FDF02B7 (WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * V_0 = NULL;
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * V_1 = NULL;
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * V_2 = NULL;
{
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * L_0 = ((Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA_StaticFields*)il2cpp_codegen_static_fields_for(Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA_il2cpp_TypeInfo_var))->get_willRenderCanvases_4();
V_0 = L_0;
}
IL_0006:
{
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * L_1 = V_0;
V_1 = L_1;
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * L_2 = V_1;
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * L_3 = ___value0;
Delegate_t * L_4;
L_4 = Delegate_Combine_m631D10D6CFF81AB4F237B9D549B235A54F45FA55(L_2, L_3, /*hidden argument*/NULL);
V_2 = ((WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 *)CastclassSealed((RuntimeObject*)L_4, WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958_il2cpp_TypeInfo_var));
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * L_5 = V_2;
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * L_6 = V_1;
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * L_7;
L_7 = InterlockedCompareExchangeImpl<WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 *>((WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 **)(((Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA_StaticFields*)il2cpp_codegen_static_fields_for(Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA_il2cpp_TypeInfo_var))->get_address_of_willRenderCanvases_4()), L_5, L_6);
V_0 = L_7;
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * L_8 = V_0;
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * L_9 = V_1;
if ((!(((RuntimeObject*)(WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 *)L_8) == ((RuntimeObject*)(WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 *)L_9))))
{
goto IL_0006;
}
}
{
return;
}
}
// System.Void UnityEngine.Canvas::remove_willRenderCanvases(UnityEngine.Canvas/WillRenderCanvases)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Canvas_remove_willRenderCanvases_m4A631D84D6DBB6035620ED9496542E43F19D0EF9 (WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * V_0 = NULL;
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * V_1 = NULL;
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * V_2 = NULL;
{
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * L_0 = ((Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA_StaticFields*)il2cpp_codegen_static_fields_for(Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA_il2cpp_TypeInfo_var))->get_willRenderCanvases_4();
V_0 = L_0;
}
IL_0006:
{
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * L_1 = V_0;
V_1 = L_1;
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * L_2 = V_1;
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * L_3 = ___value0;
Delegate_t * L_4;
L_4 = Delegate_Remove_m8B4AD17254118B2904720D55C9B34FB3DCCBD7D4(L_2, L_3, /*hidden argument*/NULL);
V_2 = ((WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 *)CastclassSealed((RuntimeObject*)L_4, WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958_il2cpp_TypeInfo_var));
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * L_5 = V_2;
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * L_6 = V_1;
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * L_7;
L_7 = InterlockedCompareExchangeImpl<WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 *>((WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 **)(((Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA_StaticFields*)il2cpp_codegen_static_fields_for(Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA_il2cpp_TypeInfo_var))->get_address_of_willRenderCanvases_4()), L_5, L_6);
V_0 = L_7;
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * L_8 = V_0;
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * L_9 = V_1;
if ((!(((RuntimeObject*)(WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 *)L_8) == ((RuntimeObject*)(WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 *)L_9))))
{
goto IL_0006;
}
}
{
return;
}
}
// UnityEngine.RenderMode UnityEngine.Canvas::get_renderMode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Canvas_get_renderMode_mAEC8A341577CC74EC89D5890E6D6E4A82B03574D (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * __this, const RuntimeMethod* method)
{
typedef int32_t (*Canvas_get_renderMode_mAEC8A341577CC74EC89D5890E6D6E4A82B03574D_ftn) (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA *);
static Canvas_get_renderMode_mAEC8A341577CC74EC89D5890E6D6E4A82B03574D_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Canvas_get_renderMode_mAEC8A341577CC74EC89D5890E6D6E4A82B03574D_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Canvas::get_renderMode()");
int32_t icallRetVal = _il2cpp_icall_func(__this);
return icallRetVal;
}
// System.Boolean UnityEngine.Canvas::get_isRootCanvas()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Canvas_get_isRootCanvas_mCAA9356718F8FEFB235F6F55347A26764B642FBF (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * __this, const RuntimeMethod* method)
{
typedef bool (*Canvas_get_isRootCanvas_mCAA9356718F8FEFB235F6F55347A26764B642FBF_ftn) (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA *);
static Canvas_get_isRootCanvas_mCAA9356718F8FEFB235F6F55347A26764B642FBF_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Canvas_get_isRootCanvas_mCAA9356718F8FEFB235F6F55347A26764B642FBF_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Canvas::get_isRootCanvas()");
bool icallRetVal = _il2cpp_icall_func(__this);
return icallRetVal;
}
// System.Single UnityEngine.Canvas::get_scaleFactor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Canvas_get_scaleFactor_m3F0D7E3B97B0493F4E98B2BBCA7A57BC1E1CB710 (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * __this, const RuntimeMethod* method)
{
typedef float (*Canvas_get_scaleFactor_m3F0D7E3B97B0493F4E98B2BBCA7A57BC1E1CB710_ftn) (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA *);
static Canvas_get_scaleFactor_m3F0D7E3B97B0493F4E98B2BBCA7A57BC1E1CB710_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Canvas_get_scaleFactor_m3F0D7E3B97B0493F4E98B2BBCA7A57BC1E1CB710_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Canvas::get_scaleFactor()");
float icallRetVal = _il2cpp_icall_func(__this);
return icallRetVal;
}
// System.Void UnityEngine.Canvas::set_scaleFactor(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Canvas_set_scaleFactor_m707F18DB5EB8E34BC55B584426E4037CA0E78667 (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * __this, float ___value0, const RuntimeMethod* method)
{
typedef void (*Canvas_set_scaleFactor_m707F18DB5EB8E34BC55B584426E4037CA0E78667_ftn) (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA *, float);
static Canvas_set_scaleFactor_m707F18DB5EB8E34BC55B584426E4037CA0E78667_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Canvas_set_scaleFactor_m707F18DB5EB8E34BC55B584426E4037CA0E78667_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Canvas::set_scaleFactor(System.Single)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Single UnityEngine.Canvas::get_referencePixelsPerUnit()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Canvas_get_referencePixelsPerUnit_m001FE1F0C8D84A3539DBB772416D05E93233395E (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * __this, const RuntimeMethod* method)
{
typedef float (*Canvas_get_referencePixelsPerUnit_m001FE1F0C8D84A3539DBB772416D05E93233395E_ftn) (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA *);
static Canvas_get_referencePixelsPerUnit_m001FE1F0C8D84A3539DBB772416D05E93233395E_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Canvas_get_referencePixelsPerUnit_m001FE1F0C8D84A3539DBB772416D05E93233395E_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Canvas::get_referencePixelsPerUnit()");
float icallRetVal = _il2cpp_icall_func(__this);
return icallRetVal;
}
// System.Void UnityEngine.Canvas::set_referencePixelsPerUnit(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Canvas_set_referencePixelsPerUnit_mF07A80422A4C2F7A0C8CD0CD5C39A9F335571F0E (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * __this, float ___value0, const RuntimeMethod* method)
{
typedef void (*Canvas_set_referencePixelsPerUnit_mF07A80422A4C2F7A0C8CD0CD5C39A9F335571F0E_ftn) (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA *, float);
static Canvas_set_referencePixelsPerUnit_mF07A80422A4C2F7A0C8CD0CD5C39A9F335571F0E_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Canvas_set_referencePixelsPerUnit_mF07A80422A4C2F7A0C8CD0CD5C39A9F335571F0E_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Canvas::set_referencePixelsPerUnit(System.Single)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Boolean UnityEngine.Canvas::get_pixelPerfect()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Canvas_get_pixelPerfect_mCAC921FAC61E9B0E42656EB8EC511AF21EC99A77 (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * __this, const RuntimeMethod* method)
{
typedef bool (*Canvas_get_pixelPerfect_mCAC921FAC61E9B0E42656EB8EC511AF21EC99A77_ftn) (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA *);
static Canvas_get_pixelPerfect_mCAC921FAC61E9B0E42656EB8EC511AF21EC99A77_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Canvas_get_pixelPerfect_mCAC921FAC61E9B0E42656EB8EC511AF21EC99A77_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Canvas::get_pixelPerfect()");
bool icallRetVal = _il2cpp_icall_func(__this);
return icallRetVal;
}
// System.Int32 UnityEngine.Canvas::get_renderOrder()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Canvas_get_renderOrder_m6EA8415A6C65D304F973FF07C10E6FA41345B06B (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * __this, const RuntimeMethod* method)
{
typedef int32_t (*Canvas_get_renderOrder_m6EA8415A6C65D304F973FF07C10E6FA41345B06B_ftn) (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA *);
static Canvas_get_renderOrder_m6EA8415A6C65D304F973FF07C10E6FA41345B06B_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Canvas_get_renderOrder_m6EA8415A6C65D304F973FF07C10E6FA41345B06B_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Canvas::get_renderOrder()");
int32_t icallRetVal = _il2cpp_icall_func(__this);
return icallRetVal;
}
// System.Boolean UnityEngine.Canvas::get_overrideSorting()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Canvas_get_overrideSorting_m2A3D1772DD606F717F8F4B861411A19D1444DE90 (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * __this, const RuntimeMethod* method)
{
typedef bool (*Canvas_get_overrideSorting_m2A3D1772DD606F717F8F4B861411A19D1444DE90_ftn) (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA *);
static Canvas_get_overrideSorting_m2A3D1772DD606F717F8F4B861411A19D1444DE90_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Canvas_get_overrideSorting_m2A3D1772DD606F717F8F4B861411A19D1444DE90_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Canvas::get_overrideSorting()");
bool icallRetVal = _il2cpp_icall_func(__this);
return icallRetVal;
}
// System.Void UnityEngine.Canvas::set_overrideSorting(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Canvas_set_overrideSorting_m47944AC440D44131ED379071C4F81C166C941045 (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * __this, bool ___value0, const RuntimeMethod* method)
{
typedef void (*Canvas_set_overrideSorting_m47944AC440D44131ED379071C4F81C166C941045_ftn) (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA *, bool);
static Canvas_set_overrideSorting_m47944AC440D44131ED379071C4F81C166C941045_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Canvas_set_overrideSorting_m47944AC440D44131ED379071C4F81C166C941045_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Canvas::set_overrideSorting(System.Boolean)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Int32 UnityEngine.Canvas::get_sortingOrder()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Canvas_get_sortingOrder_m2024155C98059AE97E268327C71E33F1444F8FC4 (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * __this, const RuntimeMethod* method)
{
typedef int32_t (*Canvas_get_sortingOrder_m2024155C98059AE97E268327C71E33F1444F8FC4_ftn) (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA *);
static Canvas_get_sortingOrder_m2024155C98059AE97E268327C71E33F1444F8FC4_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Canvas_get_sortingOrder_m2024155C98059AE97E268327C71E33F1444F8FC4_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Canvas::get_sortingOrder()");
int32_t icallRetVal = _il2cpp_icall_func(__this);
return icallRetVal;
}
// System.Void UnityEngine.Canvas::set_sortingOrder(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Canvas_set_sortingOrder_m217F79CAFA4654335E6FF70D1BAF4420EE46482A (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * __this, int32_t ___value0, const RuntimeMethod* method)
{
typedef void (*Canvas_set_sortingOrder_m217F79CAFA4654335E6FF70D1BAF4420EE46482A_ftn) (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA *, int32_t);
static Canvas_set_sortingOrder_m217F79CAFA4654335E6FF70D1BAF4420EE46482A_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Canvas_set_sortingOrder_m217F79CAFA4654335E6FF70D1BAF4420EE46482A_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Canvas::set_sortingOrder(System.Int32)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Int32 UnityEngine.Canvas::get_targetDisplay()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Canvas_get_targetDisplay_m4EE59F02963F99EDCAA3FCD00F4BE5168951C10F (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * __this, const RuntimeMethod* method)
{
typedef int32_t (*Canvas_get_targetDisplay_m4EE59F02963F99EDCAA3FCD00F4BE5168951C10F_ftn) (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA *);
static Canvas_get_targetDisplay_m4EE59F02963F99EDCAA3FCD00F4BE5168951C10F_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Canvas_get_targetDisplay_m4EE59F02963F99EDCAA3FCD00F4BE5168951C10F_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Canvas::get_targetDisplay()");
int32_t icallRetVal = _il2cpp_icall_func(__this);
return icallRetVal;
}
// System.Int32 UnityEngine.Canvas::get_sortingLayerID()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Canvas_get_sortingLayerID_mA0AB0BB70E4E6072EEC3340FE552BE4A78C48064 (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * __this, const RuntimeMethod* method)
{
typedef int32_t (*Canvas_get_sortingLayerID_mA0AB0BB70E4E6072EEC3340FE552BE4A78C48064_ftn) (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA *);
static Canvas_get_sortingLayerID_mA0AB0BB70E4E6072EEC3340FE552BE4A78C48064_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Canvas_get_sortingLayerID_mA0AB0BB70E4E6072EEC3340FE552BE4A78C48064_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Canvas::get_sortingLayerID()");
int32_t icallRetVal = _il2cpp_icall_func(__this);
return icallRetVal;
}
// System.Void UnityEngine.Canvas::set_sortingLayerID(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Canvas_set_sortingLayerID_m3BE132868D12C0DEA8EF5A45842948DBFACF6C6D (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * __this, int32_t ___value0, const RuntimeMethod* method)
{
typedef void (*Canvas_set_sortingLayerID_m3BE132868D12C0DEA8EF5A45842948DBFACF6C6D_ftn) (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA *, int32_t);
static Canvas_set_sortingLayerID_m3BE132868D12C0DEA8EF5A45842948DBFACF6C6D_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Canvas_set_sortingLayerID_m3BE132868D12C0DEA8EF5A45842948DBFACF6C6D_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Canvas::set_sortingLayerID(System.Int32)");
_il2cpp_icall_func(__this, ___value0);
}
// UnityEngine.Canvas UnityEngine.Canvas::get_rootCanvas()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * Canvas_get_rootCanvas_mB1C93410A4AA793D88130FD08C05D71327641DC5 (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * __this, const RuntimeMethod* method)
{
typedef Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * (*Canvas_get_rootCanvas_mB1C93410A4AA793D88130FD08C05D71327641DC5_ftn) (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA *);
static Canvas_get_rootCanvas_mB1C93410A4AA793D88130FD08C05D71327641DC5_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Canvas_get_rootCanvas_mB1C93410A4AA793D88130FD08C05D71327641DC5_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Canvas::get_rootCanvas()");
Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * icallRetVal = _il2cpp_icall_func(__this);
return icallRetVal;
}
// UnityEngine.Camera UnityEngine.Canvas::get_worldCamera()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * Canvas_get_worldCamera_mFE4C9FDA7996FE20AC5CA3CB45B4190C40122D51 (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * __this, const RuntimeMethod* method)
{
typedef Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * (*Canvas_get_worldCamera_mFE4C9FDA7996FE20AC5CA3CB45B4190C40122D51_ftn) (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA *);
static Canvas_get_worldCamera_mFE4C9FDA7996FE20AC5CA3CB45B4190C40122D51_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Canvas_get_worldCamera_mFE4C9FDA7996FE20AC5CA3CB45B4190C40122D51_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Canvas::get_worldCamera()");
Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * icallRetVal = _il2cpp_icall_func(__this);
return icallRetVal;
}
// UnityEngine.Material UnityEngine.Canvas::GetDefaultCanvasMaterial()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Material_t8927C00353A72755313F046D0CE85178AE8218EE * Canvas_GetDefaultCanvasMaterial_mDC0AEDDC12EBC11F089168A32C0D9C955DCF1080 (const RuntimeMethod* method)
{
typedef Material_t8927C00353A72755313F046D0CE85178AE8218EE * (*Canvas_GetDefaultCanvasMaterial_mDC0AEDDC12EBC11F089168A32C0D9C955DCF1080_ftn) ();
static Canvas_GetDefaultCanvasMaterial_mDC0AEDDC12EBC11F089168A32C0D9C955DCF1080_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Canvas_GetDefaultCanvasMaterial_mDC0AEDDC12EBC11F089168A32C0D9C955DCF1080_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Canvas::GetDefaultCanvasMaterial()");
Material_t8927C00353A72755313F046D0CE85178AE8218EE * icallRetVal = _il2cpp_icall_func();
return icallRetVal;
}
// UnityEngine.Material UnityEngine.Canvas::GetETC1SupportedCanvasMaterial()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Material_t8927C00353A72755313F046D0CE85178AE8218EE * Canvas_GetETC1SupportedCanvasMaterial_mF0A0E16782086A761F308802861D1061DB874972 (const RuntimeMethod* method)
{
typedef Material_t8927C00353A72755313F046D0CE85178AE8218EE * (*Canvas_GetETC1SupportedCanvasMaterial_mF0A0E16782086A761F308802861D1061DB874972_ftn) ();
static Canvas_GetETC1SupportedCanvasMaterial_mF0A0E16782086A761F308802861D1061DB874972_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Canvas_GetETC1SupportedCanvasMaterial_mF0A0E16782086A761F308802861D1061DB874972_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Canvas::GetETC1SupportedCanvasMaterial()");
Material_t8927C00353A72755313F046D0CE85178AE8218EE * icallRetVal = _il2cpp_icall_func();
return icallRetVal;
}
// System.Void UnityEngine.Canvas::ForceUpdateCanvases()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Canvas_ForceUpdateCanvases_m0D46827299273BBA96CE6FA6B8A12B8989B52ECE (const RuntimeMethod* method)
{
{
Canvas_SendWillRenderCanvases_m10EFBC3C2F8BBC2629A9CCC3AFCF3ECF226108C2(/*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Canvas::SendWillRenderCanvases()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Canvas_SendWillRenderCanvases_m10EFBC3C2F8BBC2629A9CCC3AFCF3ECF226108C2 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * G_B2_0 = NULL;
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * G_B1_0 = NULL;
{
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * L_0 = ((Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA_StaticFields*)il2cpp_codegen_static_fields_for(Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA_il2cpp_TypeInfo_var))->get_willRenderCanvases_4();
WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * L_1 = L_0;
G_B1_0 = L_1;
if (L_1)
{
G_B2_0 = L_1;
goto IL_000c;
}
}
{
goto IL_0012;
}
IL_000c:
{
NullCheck(G_B2_0);
WillRenderCanvases_Invoke_mFCD97A3223FD31C109A2B6283ECE7FE307E89282(G_B2_0, /*hidden argument*/NULL);
}
IL_0012:
{
return;
}
}
// System.Void UnityEngine.Canvas::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Canvas__ctor_m618D74C51703A5E69A0AE7CCA9746870ECDF26F8 (Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * __this, const RuntimeMethod* method)
{
{
Behaviour__ctor_mCACD3614226521EA607B0F3640C0FAC7EACCBCE0(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Single UnityEngine.CanvasGroup::get_alpha()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float CanvasGroup_get_alpha_m38E292E68116A55A99F222F4E1F31CBE189690D9 (CanvasGroup_t6912220105AB4A288A2FD882D163D7218EAA577F * __this, const RuntimeMethod* method)
{
typedef float (*CanvasGroup_get_alpha_m38E292E68116A55A99F222F4E1F31CBE189690D9_ftn) (CanvasGroup_t6912220105AB4A288A2FD882D163D7218EAA577F *);
static CanvasGroup_get_alpha_m38E292E68116A55A99F222F4E1F31CBE189690D9_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (CanvasGroup_get_alpha_m38E292E68116A55A99F222F4E1F31CBE189690D9_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.CanvasGroup::get_alpha()");
float icallRetVal = _il2cpp_icall_func(__this);
return icallRetVal;
}
// System.Void UnityEngine.CanvasGroup::set_alpha(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasGroup_set_alpha_m522B58BDF64D87252B0D43D254FF3A4D5993DC53 (CanvasGroup_t6912220105AB4A288A2FD882D163D7218EAA577F * __this, float ___value0, const RuntimeMethod* method)
{
typedef void (*CanvasGroup_set_alpha_m522B58BDF64D87252B0D43D254FF3A4D5993DC53_ftn) (CanvasGroup_t6912220105AB4A288A2FD882D163D7218EAA577F *, float);
static CanvasGroup_set_alpha_m522B58BDF64D87252B0D43D254FF3A4D5993DC53_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (CanvasGroup_set_alpha_m522B58BDF64D87252B0D43D254FF3A4D5993DC53_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.CanvasGroup::set_alpha(System.Single)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Boolean UnityEngine.CanvasGroup::get_interactable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CanvasGroup_get_interactable_m643399D4E2F8F483C031ADAEEBDCC4A6A4708DA1 (CanvasGroup_t6912220105AB4A288A2FD882D163D7218EAA577F * __this, const RuntimeMethod* method)
{
typedef bool (*CanvasGroup_get_interactable_m643399D4E2F8F483C031ADAEEBDCC4A6A4708DA1_ftn) (CanvasGroup_t6912220105AB4A288A2FD882D163D7218EAA577F *);
static CanvasGroup_get_interactable_m643399D4E2F8F483C031ADAEEBDCC4A6A4708DA1_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (CanvasGroup_get_interactable_m643399D4E2F8F483C031ADAEEBDCC4A6A4708DA1_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.CanvasGroup::get_interactable()");
bool icallRetVal = _il2cpp_icall_func(__this);
return icallRetVal;
}
// System.Boolean UnityEngine.CanvasGroup::get_blocksRaycasts()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CanvasGroup_get_blocksRaycasts_m54BEB93C34E4B4ADB35A33679B0D475A0094F3B4 (CanvasGroup_t6912220105AB4A288A2FD882D163D7218EAA577F * __this, const RuntimeMethod* method)
{
typedef bool (*CanvasGroup_get_blocksRaycasts_m54BEB93C34E4B4ADB35A33679B0D475A0094F3B4_ftn) (CanvasGroup_t6912220105AB4A288A2FD882D163D7218EAA577F *);
static CanvasGroup_get_blocksRaycasts_m54BEB93C34E4B4ADB35A33679B0D475A0094F3B4_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (CanvasGroup_get_blocksRaycasts_m54BEB93C34E4B4ADB35A33679B0D475A0094F3B4_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.CanvasGroup::get_blocksRaycasts()");
bool icallRetVal = _il2cpp_icall_func(__this);
return icallRetVal;
}
// System.Boolean UnityEngine.CanvasGroup::get_ignoreParentGroups()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CanvasGroup_get_ignoreParentGroups_m191E84D6A34F34A69767B396DFB6E69C8BE33A81 (CanvasGroup_t6912220105AB4A288A2FD882D163D7218EAA577F * __this, const RuntimeMethod* method)
{
typedef bool (*CanvasGroup_get_ignoreParentGroups_m191E84D6A34F34A69767B396DFB6E69C8BE33A81_ftn) (CanvasGroup_t6912220105AB4A288A2FD882D163D7218EAA577F *);
static CanvasGroup_get_ignoreParentGroups_m191E84D6A34F34A69767B396DFB6E69C8BE33A81_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (CanvasGroup_get_ignoreParentGroups_m191E84D6A34F34A69767B396DFB6E69C8BE33A81_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.CanvasGroup::get_ignoreParentGroups()");
bool icallRetVal = _il2cpp_icall_func(__this);
return icallRetVal;
}
// System.Boolean UnityEngine.CanvasGroup::IsRaycastLocationValid(UnityEngine.Vector2,UnityEngine.Camera)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CanvasGroup_IsRaycastLocationValid_mBEEEFF19F0813F16B005D4A3021B48671F9EB124 (CanvasGroup_t6912220105AB4A288A2FD882D163D7218EAA577F * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___sp0, Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * ___eventCamera1, const RuntimeMethod* method)
{
bool V_0 = false;
{
bool L_0;
L_0 = CanvasGroup_get_blocksRaycasts_m54BEB93C34E4B4ADB35A33679B0D475A0094F3B4(__this, /*hidden argument*/NULL);
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
bool L_1 = V_0;
return L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.CanvasRenderer::set_hasPopInstruction(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_set_hasPopInstruction_mA80C720999AE5965E56F873FE29B54471B8C6329 (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, bool ___value0, const RuntimeMethod* method)
{
typedef void (*CanvasRenderer_set_hasPopInstruction_mA80C720999AE5965E56F873FE29B54471B8C6329_ftn) (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E *, bool);
static CanvasRenderer_set_hasPopInstruction_mA80C720999AE5965E56F873FE29B54471B8C6329_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (CanvasRenderer_set_hasPopInstruction_mA80C720999AE5965E56F873FE29B54471B8C6329_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.CanvasRenderer::set_hasPopInstruction(System.Boolean)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Int32 UnityEngine.CanvasRenderer::get_materialCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CanvasRenderer_get_materialCount_mF29C9816FEC6D8189DDC7AB16B40EC56FAB59488 (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, const RuntimeMethod* method)
{
typedef int32_t (*CanvasRenderer_get_materialCount_mF29C9816FEC6D8189DDC7AB16B40EC56FAB59488_ftn) (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E *);
static CanvasRenderer_get_materialCount_mF29C9816FEC6D8189DDC7AB16B40EC56FAB59488_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (CanvasRenderer_get_materialCount_mF29C9816FEC6D8189DDC7AB16B40EC56FAB59488_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.CanvasRenderer::get_materialCount()");
int32_t icallRetVal = _il2cpp_icall_func(__this);
return icallRetVal;
}
// System.Void UnityEngine.CanvasRenderer::set_materialCount(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_set_materialCount_m00FE6113ACA7FE9AD51DA0A9A0B013D7C811E5DB (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, int32_t ___value0, const RuntimeMethod* method)
{
typedef void (*CanvasRenderer_set_materialCount_m00FE6113ACA7FE9AD51DA0A9A0B013D7C811E5DB_ftn) (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E *, int32_t);
static CanvasRenderer_set_materialCount_m00FE6113ACA7FE9AD51DA0A9A0B013D7C811E5DB_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (CanvasRenderer_set_materialCount_m00FE6113ACA7FE9AD51DA0A9A0B013D7C811E5DB_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.CanvasRenderer::set_materialCount(System.Int32)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.CanvasRenderer::set_popMaterialCount(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_set_popMaterialCount_mA35E4F9676B3FDA7E9E88EC1EBC711F2936CD973 (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, int32_t ___value0, const RuntimeMethod* method)
{
typedef void (*CanvasRenderer_set_popMaterialCount_mA35E4F9676B3FDA7E9E88EC1EBC711F2936CD973_ftn) (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E *, int32_t);
static CanvasRenderer_set_popMaterialCount_mA35E4F9676B3FDA7E9E88EC1EBC711F2936CD973_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (CanvasRenderer_set_popMaterialCount_mA35E4F9676B3FDA7E9E88EC1EBC711F2936CD973_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.CanvasRenderer::set_popMaterialCount(System.Int32)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Int32 UnityEngine.CanvasRenderer::get_absoluteDepth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CanvasRenderer_get_absoluteDepth_m66093A08853DE029E61146E5A271AD775B2B4330 (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, const RuntimeMethod* method)
{
typedef int32_t (*CanvasRenderer_get_absoluteDepth_m66093A08853DE029E61146E5A271AD775B2B4330_ftn) (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E *);
static CanvasRenderer_get_absoluteDepth_m66093A08853DE029E61146E5A271AD775B2B4330_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (CanvasRenderer_get_absoluteDepth_m66093A08853DE029E61146E5A271AD775B2B4330_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.CanvasRenderer::get_absoluteDepth()");
int32_t icallRetVal = _il2cpp_icall_func(__this);
return icallRetVal;
}
// System.Boolean UnityEngine.CanvasRenderer::get_hasMoved()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CanvasRenderer_get_hasMoved_m7CF5BF1CD654A0CB0DAC1C4E4EF8C83AD9DED82A (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, const RuntimeMethod* method)
{
typedef bool (*CanvasRenderer_get_hasMoved_m7CF5BF1CD654A0CB0DAC1C4E4EF8C83AD9DED82A_ftn) (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E *);
static CanvasRenderer_get_hasMoved_m7CF5BF1CD654A0CB0DAC1C4E4EF8C83AD9DED82A_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (CanvasRenderer_get_hasMoved_m7CF5BF1CD654A0CB0DAC1C4E4EF8C83AD9DED82A_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.CanvasRenderer::get_hasMoved()");
bool icallRetVal = _il2cpp_icall_func(__this);
return icallRetVal;
}
// System.Boolean UnityEngine.CanvasRenderer::get_cull()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CanvasRenderer_get_cull_m214173F051F22A3377BD4C91F91422CB9EEC7581 (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, const RuntimeMethod* method)
{
typedef bool (*CanvasRenderer_get_cull_m214173F051F22A3377BD4C91F91422CB9EEC7581_ftn) (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E *);
static CanvasRenderer_get_cull_m214173F051F22A3377BD4C91F91422CB9EEC7581_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (CanvasRenderer_get_cull_m214173F051F22A3377BD4C91F91422CB9EEC7581_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.CanvasRenderer::get_cull()");
bool icallRetVal = _il2cpp_icall_func(__this);
return icallRetVal;
}
// System.Void UnityEngine.CanvasRenderer::set_cull(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_set_cull_m8DCF5D7E70A6904457B66669661B1D5ABE1FCF94 (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, bool ___value0, const RuntimeMethod* method)
{
typedef void (*CanvasRenderer_set_cull_m8DCF5D7E70A6904457B66669661B1D5ABE1FCF94_ftn) (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E *, bool);
static CanvasRenderer_set_cull_m8DCF5D7E70A6904457B66669661B1D5ABE1FCF94_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (CanvasRenderer_set_cull_m8DCF5D7E70A6904457B66669661B1D5ABE1FCF94_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.CanvasRenderer::set_cull(System.Boolean)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.CanvasRenderer::SetColor(UnityEngine.Color)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_SetColor_mF9B22FEEB69F8577BB2952217F75E877885841F7 (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___color0, const RuntimeMethod* method)
{
{
CanvasRenderer_SetColor_Injected_m18315753FF6B5E9711C522331517ED21D5FD5F58(__this, (Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 *)(&___color0), /*hidden argument*/NULL);
return;
}
}
// UnityEngine.Color UnityEngine.CanvasRenderer::GetColor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 CanvasRenderer_GetColor_mEE82D01DA3B43136DAEBEC212A38AABC16D20931 (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, const RuntimeMethod* method)
{
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 V_0;
memset((&V_0), 0, sizeof(V_0));
{
CanvasRenderer_GetColor_Injected_mA46BD781F57174120BA58E9E569AC6AB1C3131E3(__this, (Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 *)(&V_0), /*hidden argument*/NULL);
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_0 = V_0;
return L_0;
}
}
// System.Void UnityEngine.CanvasRenderer::EnableRectClipping(UnityEngine.Rect)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_EnableRectClipping_mF39FD2754A2E6E4370597F1FBC7889A6170E31F1 (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 ___rect0, const RuntimeMethod* method)
{
{
CanvasRenderer_EnableRectClipping_Injected_m61118840C9AD8B28949DE0ABF3F5BDBBC5D1AAE0(__this, (Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 *)(&___rect0), /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.CanvasRenderer::set_clippingSoftness(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_set_clippingSoftness_m0B99BD07E0C28E3B12D2F0944B2C0D0F63EAA5AE (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___value0, const RuntimeMethod* method)
{
{
CanvasRenderer_set_clippingSoftness_Injected_mCA346C58AF7E78D8C2AC2B39710A019E77A909BA(__this, (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)(&___value0), /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.CanvasRenderer::DisableRectClipping()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_DisableRectClipping_m736771B6C7040BE07B47181CEDA705325849E95A (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, const RuntimeMethod* method)
{
typedef void (*CanvasRenderer_DisableRectClipping_m736771B6C7040BE07B47181CEDA705325849E95A_ftn) (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E *);
static CanvasRenderer_DisableRectClipping_m736771B6C7040BE07B47181CEDA705325849E95A_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (CanvasRenderer_DisableRectClipping_m736771B6C7040BE07B47181CEDA705325849E95A_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.CanvasRenderer::DisableRectClipping()");
_il2cpp_icall_func(__this);
}
// System.Void UnityEngine.CanvasRenderer::SetMaterial(UnityEngine.Material,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_SetMaterial_m1D7A8BD75D5DEFC5F0A27FFBA2A2A84755EE421F (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___material0, int32_t ___index1, const RuntimeMethod* method)
{
typedef void (*CanvasRenderer_SetMaterial_m1D7A8BD75D5DEFC5F0A27FFBA2A2A84755EE421F_ftn) (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E *, Material_t8927C00353A72755313F046D0CE85178AE8218EE *, int32_t);
static CanvasRenderer_SetMaterial_m1D7A8BD75D5DEFC5F0A27FFBA2A2A84755EE421F_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (CanvasRenderer_SetMaterial_m1D7A8BD75D5DEFC5F0A27FFBA2A2A84755EE421F_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.CanvasRenderer::SetMaterial(UnityEngine.Material,System.Int32)");
_il2cpp_icall_func(__this, ___material0, ___index1);
}
// System.Void UnityEngine.CanvasRenderer::SetPopMaterial(UnityEngine.Material,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_SetPopMaterial_m2E9BBCA625FAD591DF3480287B318BFCC38A1E49 (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___material0, int32_t ___index1, const RuntimeMethod* method)
{
typedef void (*CanvasRenderer_SetPopMaterial_m2E9BBCA625FAD591DF3480287B318BFCC38A1E49_ftn) (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E *, Material_t8927C00353A72755313F046D0CE85178AE8218EE *, int32_t);
static CanvasRenderer_SetPopMaterial_m2E9BBCA625FAD591DF3480287B318BFCC38A1E49_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (CanvasRenderer_SetPopMaterial_m2E9BBCA625FAD591DF3480287B318BFCC38A1E49_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.CanvasRenderer::SetPopMaterial(UnityEngine.Material,System.Int32)");
_il2cpp_icall_func(__this, ___material0, ___index1);
}
// System.Void UnityEngine.CanvasRenderer::SetTexture(UnityEngine.Texture)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_SetTexture_m390FCD8FBC6E992F4AAC9967EBFA3F32A2BD93C1 (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * ___texture0, const RuntimeMethod* method)
{
typedef void (*CanvasRenderer_SetTexture_m390FCD8FBC6E992F4AAC9967EBFA3F32A2BD93C1_ftn) (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E *, Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE *);
static CanvasRenderer_SetTexture_m390FCD8FBC6E992F4AAC9967EBFA3F32A2BD93C1_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (CanvasRenderer_SetTexture_m390FCD8FBC6E992F4AAC9967EBFA3F32A2BD93C1_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.CanvasRenderer::SetTexture(UnityEngine.Texture)");
_il2cpp_icall_func(__this, ___texture0);
}
// System.Void UnityEngine.CanvasRenderer::SetAlphaTexture(UnityEngine.Texture)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_SetAlphaTexture_m0A867B30B6475B1D72CE28117AABED84D4A1C006 (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * ___texture0, const RuntimeMethod* method)
{
typedef void (*CanvasRenderer_SetAlphaTexture_m0A867B30B6475B1D72CE28117AABED84D4A1C006_ftn) (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E *, Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE *);
static CanvasRenderer_SetAlphaTexture_m0A867B30B6475B1D72CE28117AABED84D4A1C006_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (CanvasRenderer_SetAlphaTexture_m0A867B30B6475B1D72CE28117AABED84D4A1C006_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.CanvasRenderer::SetAlphaTexture(UnityEngine.Texture)");
_il2cpp_icall_func(__this, ___texture0);
}
// System.Void UnityEngine.CanvasRenderer::SetMesh(UnityEngine.Mesh)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_SetMesh_mB506682F318E5D8D8FE3888BF50E40DC34B726DF (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * ___mesh0, const RuntimeMethod* method)
{
typedef void (*CanvasRenderer_SetMesh_mB506682F318E5D8D8FE3888BF50E40DC34B726DF_ftn) (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E *, Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 *);
static CanvasRenderer_SetMesh_mB506682F318E5D8D8FE3888BF50E40DC34B726DF_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (CanvasRenderer_SetMesh_mB506682F318E5D8D8FE3888BF50E40DC34B726DF_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.CanvasRenderer::SetMesh(UnityEngine.Mesh)");
_il2cpp_icall_func(__this, ___mesh0);
}
// System.Void UnityEngine.CanvasRenderer::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_Clear_m8793B46F28365E540BB2B2ADBA439D255E350CC4 (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, const RuntimeMethod* method)
{
typedef void (*CanvasRenderer_Clear_m8793B46F28365E540BB2B2ADBA439D255E350CC4_ftn) (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E *);
static CanvasRenderer_Clear_m8793B46F28365E540BB2B2ADBA439D255E350CC4_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (CanvasRenderer_Clear_m8793B46F28365E540BB2B2ADBA439D255E350CC4_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.CanvasRenderer::Clear()");
_il2cpp_icall_func(__this);
}
// System.Void UnityEngine.CanvasRenderer::SetMaterial(UnityEngine.Material,UnityEngine.Texture)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_SetMaterial_mDCF29309742914F21D88D129C1E8C25F2E8A14FA (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___material0, Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * ___texture1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0;
L_0 = CanvasRenderer_get_materialCount_mF29C9816FEC6D8189DDC7AB16B40EC56FAB59488(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var);
int32_t L_1;
L_1 = Math_Max_mD8AA27386BF012C65303FCDEA041B0CC65056E7B(1, L_0, /*hidden argument*/NULL);
CanvasRenderer_set_materialCount_m00FE6113ACA7FE9AD51DA0A9A0B013D7C811E5DB(__this, L_1, /*hidden argument*/NULL);
Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_2 = ___material0;
CanvasRenderer_SetMaterial_m1D7A8BD75D5DEFC5F0A27FFBA2A2A84755EE421F(__this, L_2, 0, /*hidden argument*/NULL);
Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * L_3 = ___texture1;
CanvasRenderer_SetTexture_m390FCD8FBC6E992F4AAC9967EBFA3F32A2BD93C1(__this, L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.CanvasRenderer::SplitUIVertexStreams(System.Collections.Generic.List`1<UnityEngine.UIVertex>,System.Collections.Generic.List`1<UnityEngine.Vector3>,System.Collections.Generic.List`1<UnityEngine.Color32>,System.Collections.Generic.List`1<UnityEngine.Vector4>,System.Collections.Generic.List`1<UnityEngine.Vector4>,System.Collections.Generic.List`1<UnityEngine.Vector4>,System.Collections.Generic.List`1<UnityEngine.Vector4>,System.Collections.Generic.List`1<UnityEngine.Vector3>,System.Collections.Generic.List`1<UnityEngine.Vector4>,System.Collections.Generic.List`1<System.Int32>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_SplitUIVertexStreams_m5C6173A24593B7CCF544611CAED2EFD594CE1912 (List_1_t8907FD137E854241E2657BF53E6CEFF7370FAC5F * ___verts0, List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181 * ___positions1, List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 * ___colors2, List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * ___uv0S3, List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * ___uv1S4, List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * ___uv2S5, List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * ___uv3S6, List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181 * ___normals7, List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * ___tangents8, List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * ___indices9, const RuntimeMethod* method)
{
{
List_1_t8907FD137E854241E2657BF53E6CEFF7370FAC5F * L_0 = ___verts0;
List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181 * L_1 = ___positions1;
List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 * L_2 = ___colors2;
List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * L_3 = ___uv0S3;
List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * L_4 = ___uv1S4;
List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * L_5 = ___uv2S5;
List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * L_6 = ___uv3S6;
List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181 * L_7 = ___normals7;
List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * L_8 = ___tangents8;
CanvasRenderer_SplitUIVertexStreamsInternal_m58B7D2C67B2C9350C9D2B593A47BB028542B2862(L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_7, L_8, /*hidden argument*/NULL);
List_1_t8907FD137E854241E2657BF53E6CEFF7370FAC5F * L_9 = ___verts0;
List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * L_10 = ___indices9;
CanvasRenderer_SplitIndicesStreamsInternal_m2EF9AFF37774AA93C1AA01EB5A9B972AC2056013(L_9, L_10, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.CanvasRenderer::CreateUIVertexStream(System.Collections.Generic.List`1<UnityEngine.UIVertex>,System.Collections.Generic.List`1<UnityEngine.Vector3>,System.Collections.Generic.List`1<UnityEngine.Color32>,System.Collections.Generic.List`1<UnityEngine.Vector4>,System.Collections.Generic.List`1<UnityEngine.Vector4>,System.Collections.Generic.List`1<UnityEngine.Vector4>,System.Collections.Generic.List`1<UnityEngine.Vector4>,System.Collections.Generic.List`1<UnityEngine.Vector3>,System.Collections.Generic.List`1<UnityEngine.Vector4>,System.Collections.Generic.List`1<System.Int32>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_CreateUIVertexStream_mE53F102DD8CACFF7CE3159BF90328C0D0A2AAFCD (List_1_t8907FD137E854241E2657BF53E6CEFF7370FAC5F * ___verts0, List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181 * ___positions1, List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 * ___colors2, List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * ___uv0S3, List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * ___uv1S4, List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * ___uv2S5, List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * ___uv3S6, List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181 * ___normals7, List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * ___tangents8, List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * ___indices9, const RuntimeMethod* method)
{
{
List_1_t8907FD137E854241E2657BF53E6CEFF7370FAC5F * L_0 = ___verts0;
List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181 * L_1 = ___positions1;
List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 * L_2 = ___colors2;
List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * L_3 = ___uv0S3;
List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * L_4 = ___uv1S4;
List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * L_5 = ___uv2S5;
List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * L_6 = ___uv3S6;
List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181 * L_7 = ___normals7;
List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * L_8 = ___tangents8;
List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * L_9 = ___indices9;
CanvasRenderer_CreateUIVertexStreamInternal_m809780CAFF35093E35419CE591554F82D98B608D(L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_7, L_8, L_9, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.CanvasRenderer::AddUIVertexStream(System.Collections.Generic.List`1<UnityEngine.UIVertex>,System.Collections.Generic.List`1<UnityEngine.Vector3>,System.Collections.Generic.List`1<UnityEngine.Color32>,System.Collections.Generic.List`1<UnityEngine.Vector4>,System.Collections.Generic.List`1<UnityEngine.Vector4>,System.Collections.Generic.List`1<UnityEngine.Vector4>,System.Collections.Generic.List`1<UnityEngine.Vector4>,System.Collections.Generic.List`1<UnityEngine.Vector3>,System.Collections.Generic.List`1<UnityEngine.Vector4>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_AddUIVertexStream_mB8DD7B70CA8C35C724BF72B467E87309B9F12B9E (List_1_t8907FD137E854241E2657BF53E6CEFF7370FAC5F * ___verts0, List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181 * ___positions1, List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 * ___colors2, List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * ___uv0S3, List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * ___uv1S4, List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * ___uv2S5, List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * ___uv3S6, List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181 * ___normals7, List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * ___tangents8, const RuntimeMethod* method)
{
{
List_1_t8907FD137E854241E2657BF53E6CEFF7370FAC5F * L_0 = ___verts0;
List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181 * L_1 = ___positions1;
List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 * L_2 = ___colors2;
List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * L_3 = ___uv0S3;
List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * L_4 = ___uv1S4;
List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * L_5 = ___uv2S5;
List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * L_6 = ___uv3S6;
List_1_t577D28CFF6DFE3F6A8D4409F7A21CBF513C04181 * L_7 = ___normals7;
List_1_t14D5F8426BD7087A7AEB49D4DE3DEF404C8BE65A * L_8 = ___tangents8;
CanvasRenderer_SplitUIVertexStreamsInternal_m58B7D2C67B2C9350C9D2B593A47BB028542B2862(L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_7, L_8, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.CanvasRenderer::SplitIndicesStreamsInternal(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_SplitIndicesStreamsInternal_m2EF9AFF37774AA93C1AA01EB5A9B972AC2056013 (RuntimeObject * ___verts0, RuntimeObject * ___indices1, const RuntimeMethod* method)
{
typedef void (*CanvasRenderer_SplitIndicesStreamsInternal_m2EF9AFF37774AA93C1AA01EB5A9B972AC2056013_ftn) (RuntimeObject *, RuntimeObject *);
static CanvasRenderer_SplitIndicesStreamsInternal_m2EF9AFF37774AA93C1AA01EB5A9B972AC2056013_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (CanvasRenderer_SplitIndicesStreamsInternal_m2EF9AFF37774AA93C1AA01EB5A9B972AC2056013_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.CanvasRenderer::SplitIndicesStreamsInternal(System.Object,System.Object)");
_il2cpp_icall_func(___verts0, ___indices1);
}
// System.Void UnityEngine.CanvasRenderer::SplitUIVertexStreamsInternal(System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_SplitUIVertexStreamsInternal_m58B7D2C67B2C9350C9D2B593A47BB028542B2862 (RuntimeObject * ___verts0, RuntimeObject * ___positions1, RuntimeObject * ___colors2, RuntimeObject * ___uv0S3, RuntimeObject * ___uv1S4, RuntimeObject * ___uv2S5, RuntimeObject * ___uv3S6, RuntimeObject * ___normals7, RuntimeObject * ___tangents8, const RuntimeMethod* method)
{
typedef void (*CanvasRenderer_SplitUIVertexStreamsInternal_m58B7D2C67B2C9350C9D2B593A47BB028542B2862_ftn) (RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *);
static CanvasRenderer_SplitUIVertexStreamsInternal_m58B7D2C67B2C9350C9D2B593A47BB028542B2862_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (CanvasRenderer_SplitUIVertexStreamsInternal_m58B7D2C67B2C9350C9D2B593A47BB028542B2862_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.CanvasRenderer::SplitUIVertexStreamsInternal(System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object)");
_il2cpp_icall_func(___verts0, ___positions1, ___colors2, ___uv0S3, ___uv1S4, ___uv2S5, ___uv3S6, ___normals7, ___tangents8);
}
// System.Void UnityEngine.CanvasRenderer::CreateUIVertexStreamInternal(System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_CreateUIVertexStreamInternal_m809780CAFF35093E35419CE591554F82D98B608D (RuntimeObject * ___verts0, RuntimeObject * ___positions1, RuntimeObject * ___colors2, RuntimeObject * ___uv0S3, RuntimeObject * ___uv1S4, RuntimeObject * ___uv2S5, RuntimeObject * ___uv3S6, RuntimeObject * ___normals7, RuntimeObject * ___tangents8, RuntimeObject * ___indices9, const RuntimeMethod* method)
{
typedef void (*CanvasRenderer_CreateUIVertexStreamInternal_m809780CAFF35093E35419CE591554F82D98B608D_ftn) (RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *, RuntimeObject *);
static CanvasRenderer_CreateUIVertexStreamInternal_m809780CAFF35093E35419CE591554F82D98B608D_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (CanvasRenderer_CreateUIVertexStreamInternal_m809780CAFF35093E35419CE591554F82D98B608D_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.CanvasRenderer::CreateUIVertexStreamInternal(System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object)");
_il2cpp_icall_func(___verts0, ___positions1, ___colors2, ___uv0S3, ___uv1S4, ___uv2S5, ___uv3S6, ___normals7, ___tangents8, ___indices9);
}
// System.Void UnityEngine.CanvasRenderer::SetColor_Injected(UnityEngine.Color&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_SetColor_Injected_m18315753FF6B5E9711C522331517ED21D5FD5F58 (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * ___color0, const RuntimeMethod* method)
{
typedef void (*CanvasRenderer_SetColor_Injected_m18315753FF6B5E9711C522331517ED21D5FD5F58_ftn) (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E *, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 *);
static CanvasRenderer_SetColor_Injected_m18315753FF6B5E9711C522331517ED21D5FD5F58_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (CanvasRenderer_SetColor_Injected_m18315753FF6B5E9711C522331517ED21D5FD5F58_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.CanvasRenderer::SetColor_Injected(UnityEngine.Color&)");
_il2cpp_icall_func(__this, ___color0);
}
// System.Void UnityEngine.CanvasRenderer::GetColor_Injected(UnityEngine.Color&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_GetColor_Injected_mA46BD781F57174120BA58E9E569AC6AB1C3131E3 (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * ___ret0, const RuntimeMethod* method)
{
typedef void (*CanvasRenderer_GetColor_Injected_mA46BD781F57174120BA58E9E569AC6AB1C3131E3_ftn) (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E *, Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 *);
static CanvasRenderer_GetColor_Injected_mA46BD781F57174120BA58E9E569AC6AB1C3131E3_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (CanvasRenderer_GetColor_Injected_mA46BD781F57174120BA58E9E569AC6AB1C3131E3_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.CanvasRenderer::GetColor_Injected(UnityEngine.Color&)");
_il2cpp_icall_func(__this, ___ret0);
}
// System.Void UnityEngine.CanvasRenderer::EnableRectClipping_Injected(UnityEngine.Rect&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_EnableRectClipping_Injected_m61118840C9AD8B28949DE0ABF3F5BDBBC5D1AAE0 (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 * ___rect0, const RuntimeMethod* method)
{
typedef void (*CanvasRenderer_EnableRectClipping_Injected_m61118840C9AD8B28949DE0ABF3F5BDBBC5D1AAE0_ftn) (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E *, Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 *);
static CanvasRenderer_EnableRectClipping_Injected_m61118840C9AD8B28949DE0ABF3F5BDBBC5D1AAE0_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (CanvasRenderer_EnableRectClipping_Injected_m61118840C9AD8B28949DE0ABF3F5BDBBC5D1AAE0_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.CanvasRenderer::EnableRectClipping_Injected(UnityEngine.Rect&)");
_il2cpp_icall_func(__this, ___rect0);
}
// System.Void UnityEngine.CanvasRenderer::set_clippingSoftness_Injected(UnityEngine.Vector2&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasRenderer_set_clippingSoftness_Injected_mCA346C58AF7E78D8C2AC2B39710A019E77A909BA (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * ___value0, const RuntimeMethod* method)
{
typedef void (*CanvasRenderer_set_clippingSoftness_Injected_mCA346C58AF7E78D8C2AC2B39710A019E77A909BA_ftn) (CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E *, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *);
static CanvasRenderer_set_clippingSoftness_Injected_mCA346C58AF7E78D8C2AC2B39710A019E77A909BA_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (CanvasRenderer_set_clippingSoftness_Injected_mCA346C58AF7E78D8C2AC2B39710A019E77A909BA_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.CanvasRenderer::set_clippingSoftness_Injected(UnityEngine.Vector2&)");
_il2cpp_icall_func(__this, ___value0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Vector2 UnityEngine.RectTransformUtility::PixelAdjustPoint(UnityEngine.Vector2,UnityEngine.Transform,UnityEngine.Canvas)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 RectTransformUtility_PixelAdjustPoint_mF9D7B0C0E6E01F9831AC1DA0105E43CA02BAC6E7 (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___point0, Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___elementTransform1, Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * ___canvas2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectTransformUtility_t829C94C0D38759683C2BED9FCE244D5EA9842396_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_0 = ___elementTransform1;
Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * L_1 = ___canvas2;
IL2CPP_RUNTIME_CLASS_INIT(RectTransformUtility_t829C94C0D38759683C2BED9FCE244D5EA9842396_il2cpp_TypeInfo_var);
RectTransformUtility_PixelAdjustPoint_Injected_m6F11766952FDCB987CF606EA944CD2A3BA320ECD((Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)(&___point0), L_0, L_1, (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)(&V_0), /*hidden argument*/NULL);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_2 = V_0;
return L_2;
}
}
// UnityEngine.Rect UnityEngine.RectTransformUtility::PixelAdjustRect(UnityEngine.RectTransform,UnityEngine.Canvas)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 RectTransformUtility_PixelAdjustRect_m43A2579174A1A296F44C4E6F9E3A647967DDB0FC (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___rectTransform0, Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * ___canvas1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectTransformUtility_t829C94C0D38759683C2BED9FCE244D5EA9842396_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 V_0;
memset((&V_0), 0, sizeof(V_0));
{
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_0 = ___rectTransform0;
Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * L_1 = ___canvas1;
IL2CPP_RUNTIME_CLASS_INIT(RectTransformUtility_t829C94C0D38759683C2BED9FCE244D5EA9842396_il2cpp_TypeInfo_var);
RectTransformUtility_PixelAdjustRect_Injected_mDC8127484DA371142BBA3D969AC1F02057D7D8FA(L_0, L_1, (Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 *)(&V_0), /*hidden argument*/NULL);
Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 L_2 = V_0;
return L_2;
}
}
// System.Boolean UnityEngine.RectTransformUtility::PointInRectangle(UnityEngine.Vector2,UnityEngine.RectTransform,UnityEngine.Camera,UnityEngine.Vector4)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RectTransformUtility_PointInRectangle_m225C8A900DB682113F932EF132FA01A0EC8411EE (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___screenPoint0, RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___rect1, Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * ___cam2, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___offset3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectTransformUtility_t829C94C0D38759683C2BED9FCE244D5EA9842396_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_0 = ___rect1;
Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_1 = ___cam2;
IL2CPP_RUNTIME_CLASS_INIT(RectTransformUtility_t829C94C0D38759683C2BED9FCE244D5EA9842396_il2cpp_TypeInfo_var);
bool L_2;
L_2 = RectTransformUtility_PointInRectangle_Injected_m57A75F7499F95A60BA3095C450507BDFC15614C8((Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)(&___screenPoint0), L_0, L_1, (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *)(&___offset3), /*hidden argument*/NULL);
return L_2;
}
}
// System.Boolean UnityEngine.RectTransformUtility::RectangleContainsScreenPoint(UnityEngine.RectTransform,UnityEngine.Vector2,UnityEngine.Camera)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RectTransformUtility_RectangleContainsScreenPoint_m7D92A04D6DA6F4C7CC72439221C2EE46034A0595 (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___rect0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___screenPoint1, Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * ___cam2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectTransformUtility_t829C94C0D38759683C2BED9FCE244D5EA9842396_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_0 = ___rect0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_1 = ___screenPoint1;
Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_2 = ___cam2;
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_3;
L_3 = Vector4_get_zero_m9E807FEBC8B638914DF4A0BA87C0BD95A19F5200(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(RectTransformUtility_t829C94C0D38759683C2BED9FCE244D5EA9842396_il2cpp_TypeInfo_var);
bool L_4;
L_4 = RectTransformUtility_RectangleContainsScreenPoint_m0B9168E9AC92FE5B79AF3BB24D4B107194C19743(L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
V_0 = L_4;
goto IL_0011;
}
IL_0011:
{
bool L_5 = V_0;
return L_5;
}
}
// System.Boolean UnityEngine.RectTransformUtility::RectangleContainsScreenPoint(UnityEngine.RectTransform,UnityEngine.Vector2,UnityEngine.Camera,UnityEngine.Vector4)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RectTransformUtility_RectangleContainsScreenPoint_m0B9168E9AC92FE5B79AF3BB24D4B107194C19743 (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___rect0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___screenPoint1, Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * ___cam2, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___offset3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectTransformUtility_t829C94C0D38759683C2BED9FCE244D5EA9842396_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_0 = ___screenPoint1;
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_1 = ___rect0;
Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_2 = ___cam2;
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_3 = ___offset3;
IL2CPP_RUNTIME_CLASS_INIT(RectTransformUtility_t829C94C0D38759683C2BED9FCE244D5EA9842396_il2cpp_TypeInfo_var);
bool L_4;
L_4 = RectTransformUtility_PointInRectangle_m225C8A900DB682113F932EF132FA01A0EC8411EE(L_0, L_1, L_2, L_3, /*hidden argument*/NULL);
V_0 = L_4;
goto IL_000d;
}
IL_000d:
{
bool L_5 = V_0;
return L_5;
}
}
// System.Boolean UnityEngine.RectTransformUtility::ScreenPointToWorldPointInRectangle(UnityEngine.RectTransform,UnityEngine.Vector2,UnityEngine.Camera,UnityEngine.Vector3&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RectTransformUtility_ScreenPointToWorldPointInRectangle_m76B10B1F8517DE72753AF7F61AE6E85722BF63E8 (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___rect0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___screenPoint1, Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * ___cam2, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * ___worldPoint3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectTransformUtility_t829C94C0D38759683C2BED9FCE244D5EA9842396_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 V_0;
memset((&V_0), 0, sizeof(V_0));
Plane_t80844BF2332EAFC1DDEDD616A950242031A115C7 V_1;
memset((&V_1), 0, sizeof(V_1));
float V_2 = 0.0f;
bool V_3 = false;
bool V_4 = false;
{
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * L_0 = ___worldPoint3;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_1;
L_1 = Vector2_get_zero_m621041B9DF5FAE86C1EF4CB28C224FEA089CB828(/*hidden argument*/NULL);
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_2;
L_2 = Vector2_op_Implicit_m4FA146E613DBFE6C1C4B0E9B461D622E6F2FC294_inline(L_1, /*hidden argument*/NULL);
*(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)L_0 = L_2;
Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_3 = ___cam2;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_4 = ___screenPoint1;
IL2CPP_RUNTIME_CLASS_INIT(RectTransformUtility_t829C94C0D38759683C2BED9FCE244D5EA9842396_il2cpp_TypeInfo_var);
Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 L_5;
L_5 = RectTransformUtility_ScreenPointToRay_m90048F9120E0F859D8ED12C6590E0793F0602641(L_3, L_4, /*hidden argument*/NULL);
V_0 = L_5;
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_6 = ___rect0;
NullCheck(L_6);
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_7;
L_7 = Transform_get_rotation_m4AA3858C00DF4C9614B80352558C4C37D08D2200(L_6, /*hidden argument*/NULL);
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_8;
L_8 = Vector3_get_back_mD521DF1A2C26E145578E07D618E1E4D08A1C6220(/*hidden argument*/NULL);
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_9;
L_9 = Quaternion_op_Multiply_mDC5F913E6B21FEC72AB2CF737D34CC6C7A69803D(L_7, L_8, /*hidden argument*/NULL);
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_10 = ___rect0;
NullCheck(L_10);
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_11;
L_11 = Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341(L_10, /*hidden argument*/NULL);
Plane__ctor_m5B830C0E99AA5A47EF0D15767828D6E859867E67((Plane_t80844BF2332EAFC1DDEDD616A950242031A115C7 *)(&V_1), L_9, L_11, /*hidden argument*/NULL);
Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 L_12 = V_0;
bool L_13;
L_13 = Plane_Raycast_m8E3B0EF5B22DF336430373D4997155B647E99A24((Plane_t80844BF2332EAFC1DDEDD616A950242031A115C7 *)(&V_1), L_12, (float*)(&V_2), /*hidden argument*/NULL);
V_3 = (bool)((((int32_t)L_13) == ((int32_t)0))? 1 : 0);
bool L_14 = V_3;
if (!L_14)
{
goto IL_004c;
}
}
{
V_4 = (bool)0;
goto IL_005f;
}
IL_004c:
{
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * L_15 = ___worldPoint3;
float L_16 = V_2;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_17;
L_17 = Ray_GetPoint_mC92464E32E42603B7B3444938E8BB8ADA43AB240((Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 *)(&V_0), L_16, /*hidden argument*/NULL);
*(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)L_15 = L_17;
V_4 = (bool)1;
goto IL_005f;
}
IL_005f:
{
bool L_18 = V_4;
return L_18;
}
}
// System.Boolean UnityEngine.RectTransformUtility::ScreenPointToLocalPointInRectangle(UnityEngine.RectTransform,UnityEngine.Vector2,UnityEngine.Camera,UnityEngine.Vector2&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RectTransformUtility_ScreenPointToLocalPointInRectangle_m9A7DB8DE3636CE91CDF6CE088A21B5DDF2678F03 (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___rect0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___screenPoint1, Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * ___cam2, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * ___localPoint3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectTransformUtility_t829C94C0D38759683C2BED9FCE244D5EA9842396_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_0;
memset((&V_0), 0, sizeof(V_0));
bool V_1 = false;
bool V_2 = false;
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * L_0 = ___localPoint3;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_1;
L_1 = Vector2_get_zero_m621041B9DF5FAE86C1EF4CB28C224FEA089CB828(/*hidden argument*/NULL);
*(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)L_0 = L_1;
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_2 = ___rect0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_3 = ___screenPoint1;
Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_4 = ___cam2;
IL2CPP_RUNTIME_CLASS_INIT(RectTransformUtility_t829C94C0D38759683C2BED9FCE244D5EA9842396_il2cpp_TypeInfo_var);
bool L_5;
L_5 = RectTransformUtility_ScreenPointToWorldPointInRectangle_m76B10B1F8517DE72753AF7F61AE6E85722BF63E8(L_2, L_3, L_4, (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)(&V_0), /*hidden argument*/NULL);
V_1 = L_5;
bool L_6 = V_1;
if (!L_6)
{
goto IL_0031;
}
}
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * L_7 = ___localPoint3;
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_8 = ___rect0;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_9 = V_0;
NullCheck(L_8);
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_10;
L_10 = Transform_InverseTransformPoint_m476ABC8F3F14824D7D82FE2C54CEE5A151A669B8(L_8, L_9, /*hidden argument*/NULL);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_11;
L_11 = Vector2_op_Implicit_mE407CAF7446E342E059B00AA9EDB301AEC5B7B1A_inline(L_10, /*hidden argument*/NULL);
*(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)L_7 = L_11;
V_2 = (bool)1;
goto IL_0035;
}
IL_0031:
{
V_2 = (bool)0;
goto IL_0035;
}
IL_0035:
{
bool L_12 = V_2;
return L_12;
}
}
// UnityEngine.Ray UnityEngine.RectTransformUtility::ScreenPointToRay(UnityEngine.Camera,UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 RectTransformUtility_ScreenPointToRay_m90048F9120E0F859D8ED12C6590E0793F0602641 (Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * ___cam0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___screenPos1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_0;
memset((&V_0), 0, sizeof(V_0));
bool V_1 = false;
Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 V_2;
memset((&V_2), 0, sizeof(V_2));
{
Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_0 = ___cam0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Inequality_mE1F187520BD83FB7D86A6D850710C4D42B864E90(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL);
V_1 = L_1;
bool L_2 = V_1;
if (!L_2)
{
goto IL_001b;
}
}
{
Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_3 = ___cam0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_4 = ___screenPos1;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_5;
L_5 = Vector2_op_Implicit_m4FA146E613DBFE6C1C4B0E9B461D622E6F2FC294_inline(L_4, /*hidden argument*/NULL);
NullCheck(L_3);
Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 L_6;
L_6 = Camera_ScreenPointToRay_mD385213935A81030EDC604A39FD64761077CFBAB(L_3, L_5, /*hidden argument*/NULL);
V_2 = L_6;
goto IL_0040;
}
IL_001b:
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_7 = ___screenPos1;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_8;
L_8 = Vector2_op_Implicit_m4FA146E613DBFE6C1C4B0E9B461D622E6F2FC294_inline(L_7, /*hidden argument*/NULL);
V_0 = L_8;
float* L_9 = (&V_0)->get_address_of_z_4();
float* L_10 = L_9;
float L_11 = *((float*)L_10);
*((float*)L_10) = (float)((float)il2cpp_codegen_subtract((float)L_11, (float)(100.0f)));
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_12 = V_0;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_13;
L_13 = Vector3_get_forward_m3082920F8A24AA02E4F542B6771EB0B63A91AC90(/*hidden argument*/NULL);
Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 L_14;
memset((&L_14), 0, sizeof(L_14));
Ray__ctor_m75B1F651FF47EE6B887105101B7DA61CBF41F83C((&L_14), L_12, L_13, /*hidden argument*/NULL);
V_2 = L_14;
goto IL_0040;
}
IL_0040:
{
Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 L_15 = V_2;
return L_15;
}
}
// UnityEngine.Vector2 UnityEngine.RectTransformUtility::WorldToScreenPoint(UnityEngine.Camera,UnityEngine.Vector3)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 RectTransformUtility_WorldToScreenPoint_m92E801861EE14D73219C34A6175847C4A46105E1 (Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * ___cam0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldPoint1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 V_1;
memset((&V_1), 0, sizeof(V_1));
{
Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_0 = ___cam0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL);
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_0020;
}
}
{
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_3 = ___worldPoint1;
float L_4 = L_3.get_x_2();
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_5 = ___worldPoint1;
float L_6 = L_5.get_y_3();
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_7;
memset((&L_7), 0, sizeof(L_7));
Vector2__ctor_m9F1F2D5EB5D1FF7091BB527AC8A72CBB309D115E_inline((&L_7), L_4, L_6, /*hidden argument*/NULL);
V_1 = L_7;
goto IL_002f;
}
IL_0020:
{
Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_8 = ___cam0;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_9 = ___worldPoint1;
NullCheck(L_8);
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_10;
L_10 = Camera_WorldToScreenPoint_m44710195E7736CE9DE5A9B05E32059A9A950F95C(L_8, L_9, /*hidden argument*/NULL);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_11;
L_11 = Vector2_op_Implicit_mE407CAF7446E342E059B00AA9EDB301AEC5B7B1A_inline(L_10, /*hidden argument*/NULL);
V_1 = L_11;
goto IL_002f;
}
IL_002f:
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_12 = V_1;
return L_12;
}
}
// System.Void UnityEngine.RectTransformUtility::FlipLayoutOnAxis(UnityEngine.RectTransform,System.Int32,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransformUtility_FlipLayoutOnAxis_mB076A21D845C5463FB83DAB1AAB631DBF0783E63 (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___rect0, int32_t ___axis1, bool ___keepPositioning2, bool ___recursive3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectTransformUtility_t829C94C0D38759683C2BED9FCE244D5EA9842396_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 V_0;
memset((&V_0), 0, sizeof(V_0));
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 V_1;
memset((&V_1), 0, sizeof(V_1));
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 V_2;
memset((&V_2), 0, sizeof(V_2));
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 V_3;
memset((&V_3), 0, sizeof(V_3));
float V_4 = 0.0f;
bool V_5 = false;
bool V_6 = false;
int32_t V_7 = 0;
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * V_8 = NULL;
bool V_9 = false;
bool V_10 = false;
bool V_11 = false;
{
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_0 = ___rect0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL);
V_5 = L_1;
bool L_2 = V_5;
if (!L_2)
{
goto IL_0013;
}
}
{
goto IL_0101;
}
IL_0013:
{
bool L_3 = ___recursive3;
V_6 = L_3;
bool L_4 = V_6;
if (!L_4)
{
goto IL_0061;
}
}
{
V_7 = 0;
goto IL_0050;
}
IL_0020:
{
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_5 = ___rect0;
int32_t L_6 = V_7;
NullCheck(L_5);
Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_7;
L_7 = Transform_GetChild_mA7D94BEFF0144F76561D9B8FED61C5C939EC1F1C(L_5, L_6, /*hidden argument*/NULL);
V_8 = ((RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 *)IsInstSealed((RuntimeObject*)L_7, RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072_il2cpp_TypeInfo_var));
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_8 = V_8;
IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
bool L_9;
L_9 = Object_op_Inequality_mE1F187520BD83FB7D86A6D850710C4D42B864E90(L_8, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL);
V_9 = L_9;
bool L_10 = V_9;
if (!L_10)
{
goto IL_0049;
}
}
{
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_11 = V_8;
int32_t L_12 = ___axis1;
IL2CPP_RUNTIME_CLASS_INIT(RectTransformUtility_t829C94C0D38759683C2BED9FCE244D5EA9842396_il2cpp_TypeInfo_var);
RectTransformUtility_FlipLayoutOnAxis_mB076A21D845C5463FB83DAB1AAB631DBF0783E63(L_11, L_12, (bool)0, (bool)1, /*hidden argument*/NULL);
}
IL_0049:
{
int32_t L_13 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1));
}
IL_0050:
{
int32_t L_14 = V_7;
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_15 = ___rect0;
NullCheck(L_15);
int32_t L_16;
L_16 = Transform_get_childCount_mCBED4F6D3F6A7386C4D97C2C3FD25C383A0BCD05(L_15, /*hidden argument*/NULL);
V_10 = (bool)((((int32_t)L_14) < ((int32_t)L_16))? 1 : 0);
bool L_17 = V_10;
if (L_17)
{
goto IL_0020;
}
}
{
}
IL_0061:
{
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_18 = ___rect0;
NullCheck(L_18);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_19;
L_19 = RectTransform_get_pivot_m146F0BB5D3873FCEF3606DAFB8994BFA978095EE(L_18, /*hidden argument*/NULL);
V_0 = L_19;
int32_t L_20 = ___axis1;
int32_t L_21 = ___axis1;
float L_22;
L_22 = Vector2_get_Item_m0F685FCCDE8FEFF108591D73A6D9F048CCEC5926((Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)(&V_0), L_21, /*hidden argument*/NULL);
Vector2_set_Item_m817FDD0709F52F09ECBB949C29DEE88E73889CAD((Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)(&V_0), L_20, ((float)il2cpp_codegen_subtract((float)(1.0f), (float)L_22)), /*hidden argument*/NULL);
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_23 = ___rect0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_24 = V_0;
NullCheck(L_23);
RectTransform_set_pivot_m94F32EF88DC4EC9CA96721F8EDD8BFBC4FD07335(L_23, L_24, /*hidden argument*/NULL);
bool L_25 = ___keepPositioning2;
V_11 = L_25;
bool L_26 = V_11;
if (!L_26)
{
goto IL_0090;
}
}
{
goto IL_0101;
}
IL_0090:
{
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_27 = ___rect0;
NullCheck(L_27);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_28;
L_28 = RectTransform_get_anchoredPosition_mFDC4F160F99634B2FBC73FE5FB1F4F4127CDD975(L_27, /*hidden argument*/NULL);
V_1 = L_28;
int32_t L_29 = ___axis1;
int32_t L_30 = ___axis1;
float L_31;
L_31 = Vector2_get_Item_m0F685FCCDE8FEFF108591D73A6D9F048CCEC5926((Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)(&V_1), L_30, /*hidden argument*/NULL);
Vector2_set_Item_m817FDD0709F52F09ECBB949C29DEE88E73889CAD((Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)(&V_1), L_29, ((-L_31)), /*hidden argument*/NULL);
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_32 = ___rect0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_33 = V_1;
NullCheck(L_32);
RectTransform_set_anchoredPosition_m8143009B7D2B786DF8309D1D319F2212EFD24905(L_32, L_33, /*hidden argument*/NULL);
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_34 = ___rect0;
NullCheck(L_34);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_35;
L_35 = RectTransform_get_anchorMin_m5CBB2E649A3D4234A7A5A16B1BBAADAC9C033319(L_34, /*hidden argument*/NULL);
V_2 = L_35;
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_36 = ___rect0;
NullCheck(L_36);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_37;
L_37 = RectTransform_get_anchorMax_mC1577047A20870209C9A6801B75FE6930AE56F1E(L_36, /*hidden argument*/NULL);
V_3 = L_37;
int32_t L_38 = ___axis1;
float L_39;
L_39 = Vector2_get_Item_m0F685FCCDE8FEFF108591D73A6D9F048CCEC5926((Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)(&V_2), L_38, /*hidden argument*/NULL);
V_4 = L_39;
int32_t L_40 = ___axis1;
int32_t L_41 = ___axis1;
float L_42;
L_42 = Vector2_get_Item_m0F685FCCDE8FEFF108591D73A6D9F048CCEC5926((Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)(&V_3), L_41, /*hidden argument*/NULL);
Vector2_set_Item_m817FDD0709F52F09ECBB949C29DEE88E73889CAD((Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)(&V_2), L_40, ((float)il2cpp_codegen_subtract((float)(1.0f), (float)L_42)), /*hidden argument*/NULL);
int32_t L_43 = ___axis1;
float L_44 = V_4;
Vector2_set_Item_m817FDD0709F52F09ECBB949C29DEE88E73889CAD((Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)(&V_3), L_43, ((float)il2cpp_codegen_subtract((float)(1.0f), (float)L_44)), /*hidden argument*/NULL);
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_45 = ___rect0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_46 = V_2;
NullCheck(L_45);
RectTransform_set_anchorMin_mD9E6E95890B701A5190C12F5AE42E622246AF798(L_45, L_46, /*hidden argument*/NULL);
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_47 = ___rect0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_48 = V_3;
NullCheck(L_47);
RectTransform_set_anchorMax_m67E04F54B5122804E32019D5FAE50C21CC67651D(L_47, L_48, /*hidden argument*/NULL);
}
IL_0101:
{
return;
}
}
// System.Void UnityEngine.RectTransformUtility::FlipLayoutAxes(UnityEngine.RectTransform,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransformUtility_FlipLayoutAxes_m9012C00D121D81002247DAAB9577FCEF1FF8E974 (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___rect0, bool ___keepPositioning1, bool ___recursive2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectTransformUtility_t829C94C0D38759683C2BED9FCE244D5EA9842396_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
int32_t V_2 = 0;
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * V_3 = NULL;
bool V_4 = false;
bool V_5 = false;
bool V_6 = false;
{
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_0 = ___rect0;
IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL);
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_0011;
}
}
{
goto IL_00b7;
}
IL_0011:
{
bool L_3 = ___recursive2;
V_1 = L_3;
bool L_4 = V_1;
if (!L_4)
{
goto IL_0054;
}
}
{
V_2 = 0;
goto IL_0044;
}
IL_001b:
{
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_5 = ___rect0;
int32_t L_6 = V_2;
NullCheck(L_5);
Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_7;
L_7 = Transform_GetChild_mA7D94BEFF0144F76561D9B8FED61C5C939EC1F1C(L_5, L_6, /*hidden argument*/NULL);
V_3 = ((RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 *)IsInstSealed((RuntimeObject*)L_7, RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072_il2cpp_TypeInfo_var));
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_8 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
bool L_9;
L_9 = Object_op_Inequality_mE1F187520BD83FB7D86A6D850710C4D42B864E90(L_8, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL);
V_4 = L_9;
bool L_10 = V_4;
if (!L_10)
{
goto IL_003f;
}
}
{
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_11 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(RectTransformUtility_t829C94C0D38759683C2BED9FCE244D5EA9842396_il2cpp_TypeInfo_var);
RectTransformUtility_FlipLayoutAxes_m9012C00D121D81002247DAAB9577FCEF1FF8E974(L_11, (bool)0, (bool)1, /*hidden argument*/NULL);
}
IL_003f:
{
int32_t L_12 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
}
IL_0044:
{
int32_t L_13 = V_2;
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_14 = ___rect0;
NullCheck(L_14);
int32_t L_15;
L_15 = Transform_get_childCount_mCBED4F6D3F6A7386C4D97C2C3FD25C383A0BCD05(L_14, /*hidden argument*/NULL);
V_5 = (bool)((((int32_t)L_13) < ((int32_t)L_15))? 1 : 0);
bool L_16 = V_5;
if (L_16)
{
goto IL_001b;
}
}
{
}
IL_0054:
{
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_17 = ___rect0;
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_18 = ___rect0;
NullCheck(L_18);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_19;
L_19 = RectTransform_get_pivot_m146F0BB5D3873FCEF3606DAFB8994BFA978095EE(L_18, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(RectTransformUtility_t829C94C0D38759683C2BED9FCE244D5EA9842396_il2cpp_TypeInfo_var);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_20;
L_20 = RectTransformUtility_GetTransposed_mC20ACA85E11C96107096F93B04618DA9CCE65A75(L_19, /*hidden argument*/NULL);
NullCheck(L_17);
RectTransform_set_pivot_m94F32EF88DC4EC9CA96721F8EDD8BFBC4FD07335(L_17, L_20, /*hidden argument*/NULL);
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_21 = ___rect0;
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_22 = ___rect0;
NullCheck(L_22);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_23;
L_23 = RectTransform_get_sizeDelta_mCFAE8C916280C173AB79BE32B910376E310D1C50(L_22, /*hidden argument*/NULL);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_24;
L_24 = RectTransformUtility_GetTransposed_mC20ACA85E11C96107096F93B04618DA9CCE65A75(L_23, /*hidden argument*/NULL);
NullCheck(L_21);
RectTransform_set_sizeDelta_m61943618442E31C6FF0556CDFC70940AE7AD04D0(L_21, L_24, /*hidden argument*/NULL);
bool L_25 = ___keepPositioning1;
V_6 = L_25;
bool L_26 = V_6;
if (!L_26)
{
goto IL_0081;
}
}
{
goto IL_00b7;
}
IL_0081:
{
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_27 = ___rect0;
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_28 = ___rect0;
NullCheck(L_28);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_29;
L_29 = RectTransform_get_anchoredPosition_mFDC4F160F99634B2FBC73FE5FB1F4F4127CDD975(L_28, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(RectTransformUtility_t829C94C0D38759683C2BED9FCE244D5EA9842396_il2cpp_TypeInfo_var);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_30;
L_30 = RectTransformUtility_GetTransposed_mC20ACA85E11C96107096F93B04618DA9CCE65A75(L_29, /*hidden argument*/NULL);
NullCheck(L_27);
RectTransform_set_anchoredPosition_m8143009B7D2B786DF8309D1D319F2212EFD24905(L_27, L_30, /*hidden argument*/NULL);
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_31 = ___rect0;
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_32 = ___rect0;
NullCheck(L_32);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_33;
L_33 = RectTransform_get_anchorMin_m5CBB2E649A3D4234A7A5A16B1BBAADAC9C033319(L_32, /*hidden argument*/NULL);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_34;
L_34 = RectTransformUtility_GetTransposed_mC20ACA85E11C96107096F93B04618DA9CCE65A75(L_33, /*hidden argument*/NULL);
NullCheck(L_31);
RectTransform_set_anchorMin_mD9E6E95890B701A5190C12F5AE42E622246AF798(L_31, L_34, /*hidden argument*/NULL);
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_35 = ___rect0;
RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * L_36 = ___rect0;
NullCheck(L_36);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_37;
L_37 = RectTransform_get_anchorMax_mC1577047A20870209C9A6801B75FE6930AE56F1E(L_36, /*hidden argument*/NULL);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_38;
L_38 = RectTransformUtility_GetTransposed_mC20ACA85E11C96107096F93B04618DA9CCE65A75(L_37, /*hidden argument*/NULL);
NullCheck(L_35);
RectTransform_set_anchorMax_m67E04F54B5122804E32019D5FAE50C21CC67651D(L_35, L_38, /*hidden argument*/NULL);
}
IL_00b7:
{
return;
}
}
// UnityEngine.Vector2 UnityEngine.RectTransformUtility::GetTransposed(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 RectTransformUtility_GetTransposed_mC20ACA85E11C96107096F93B04618DA9CCE65A75 (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___input0, const RuntimeMethod* method)
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_0 = ___input0;
float L_1 = L_0.get_y_1();
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_2 = ___input0;
float L_3 = L_2.get_x_0();
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_4;
memset((&L_4), 0, sizeof(L_4));
Vector2__ctor_m9F1F2D5EB5D1FF7091BB527AC8A72CBB309D115E_inline((&L_4), L_1, L_3, /*hidden argument*/NULL);
V_0 = L_4;
goto IL_0015;
}
IL_0015:
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_5 = V_0;
return L_5;
}
}
// System.Void UnityEngine.RectTransformUtility::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransformUtility__cctor_m9529A5E87A8D8E461F95BC2B188E7FA8BDDEE297 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectTransformUtility_t829C94C0D38759683C2BED9FCE244D5EA9842396_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* L_0 = (Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4*)(Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4*)SZArrayNew(Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4_il2cpp_TypeInfo_var, (uint32_t)4);
((RectTransformUtility_t829C94C0D38759683C2BED9FCE244D5EA9842396_StaticFields*)il2cpp_codegen_static_fields_for(RectTransformUtility_t829C94C0D38759683C2BED9FCE244D5EA9842396_il2cpp_TypeInfo_var))->set_s_Corners_0(L_0);
return;
}
}
// System.Void UnityEngine.RectTransformUtility::PixelAdjustPoint_Injected(UnityEngine.Vector2&,UnityEngine.Transform,UnityEngine.Canvas,UnityEngine.Vector2&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransformUtility_PixelAdjustPoint_Injected_m6F11766952FDCB987CF606EA944CD2A3BA320ECD (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * ___point0, Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___elementTransform1, Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * ___canvas2, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * ___ret3, const RuntimeMethod* method)
{
typedef void (*RectTransformUtility_PixelAdjustPoint_Injected_m6F11766952FDCB987CF606EA944CD2A3BA320ECD_ftn) (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *, Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 *, Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA *, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *);
static RectTransformUtility_PixelAdjustPoint_Injected_m6F11766952FDCB987CF606EA944CD2A3BA320ECD_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (RectTransformUtility_PixelAdjustPoint_Injected_m6F11766952FDCB987CF606EA944CD2A3BA320ECD_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.RectTransformUtility::PixelAdjustPoint_Injected(UnityEngine.Vector2&,UnityEngine.Transform,UnityEngine.Canvas,UnityEngine.Vector2&)");
_il2cpp_icall_func(___point0, ___elementTransform1, ___canvas2, ___ret3);
}
// System.Void UnityEngine.RectTransformUtility::PixelAdjustRect_Injected(UnityEngine.RectTransform,UnityEngine.Canvas,UnityEngine.Rect&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransformUtility_PixelAdjustRect_Injected_mDC8127484DA371142BBA3D969AC1F02057D7D8FA (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___rectTransform0, Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * ___canvas1, Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 * ___ret2, const RuntimeMethod* method)
{
typedef void (*RectTransformUtility_PixelAdjustRect_Injected_mDC8127484DA371142BBA3D969AC1F02057D7D8FA_ftn) (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 *, Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA *, Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 *);
static RectTransformUtility_PixelAdjustRect_Injected_mDC8127484DA371142BBA3D969AC1F02057D7D8FA_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (RectTransformUtility_PixelAdjustRect_Injected_mDC8127484DA371142BBA3D969AC1F02057D7D8FA_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.RectTransformUtility::PixelAdjustRect_Injected(UnityEngine.RectTransform,UnityEngine.Canvas,UnityEngine.Rect&)");
_il2cpp_icall_func(___rectTransform0, ___canvas1, ___ret2);
}
// System.Boolean UnityEngine.RectTransformUtility::PointInRectangle_Injected(UnityEngine.Vector2&,UnityEngine.RectTransform,UnityEngine.Camera,UnityEngine.Vector4&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RectTransformUtility_PointInRectangle_Injected_m57A75F7499F95A60BA3095C450507BDFC15614C8 (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * ___screenPoint0, RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___rect1, Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * ___cam2, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * ___offset3, const RuntimeMethod* method)
{
typedef bool (*RectTransformUtility_PointInRectangle_Injected_m57A75F7499F95A60BA3095C450507BDFC15614C8_ftn) (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *, RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 *, Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C *, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *);
static RectTransformUtility_PointInRectangle_Injected_m57A75F7499F95A60BA3095C450507BDFC15614C8_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (RectTransformUtility_PointInRectangle_Injected_m57A75F7499F95A60BA3095C450507BDFC15614C8_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.RectTransformUtility::PointInRectangle_Injected(UnityEngine.Vector2&,UnityEngine.RectTransform,UnityEngine.Camera,UnityEngine.Vector4&)");
bool icallRetVal = _il2cpp_icall_func(___screenPoint0, ___rect1, ___cam2, ___offset3);
return icallRetVal;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.UISystemProfilerApi::BeginSample(UnityEngine.UISystemProfilerApi/SampleType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UISystemProfilerApi_BeginSample_mFF2FFBD62073D2B185933639D21CE0F0B1FF1322 (int32_t ___type0, const RuntimeMethod* method)
{
typedef void (*UISystemProfilerApi_BeginSample_mFF2FFBD62073D2B185933639D21CE0F0B1FF1322_ftn) (int32_t);
static UISystemProfilerApi_BeginSample_mFF2FFBD62073D2B185933639D21CE0F0B1FF1322_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (UISystemProfilerApi_BeginSample_mFF2FFBD62073D2B185933639D21CE0F0B1FF1322_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.UISystemProfilerApi::BeginSample(UnityEngine.UISystemProfilerApi/SampleType)");
_il2cpp_icall_func(___type0);
}
// System.Void UnityEngine.UISystemProfilerApi::EndSample(UnityEngine.UISystemProfilerApi/SampleType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UISystemProfilerApi_EndSample_mFBD0B75B91D57DD909E11F9AC19227D3B7447B68 (int32_t ___type0, const RuntimeMethod* method)
{
typedef void (*UISystemProfilerApi_EndSample_mFBD0B75B91D57DD909E11F9AC19227D3B7447B68_ftn) (int32_t);
static UISystemProfilerApi_EndSample_mFBD0B75B91D57DD909E11F9AC19227D3B7447B68_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (UISystemProfilerApi_EndSample_mFBD0B75B91D57DD909E11F9AC19227D3B7447B68_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.UISystemProfilerApi::EndSample(UnityEngine.UISystemProfilerApi/SampleType)");
_il2cpp_icall_func(___type0);
}
// System.Void UnityEngine.UISystemProfilerApi::AddMarker(System.String,UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UISystemProfilerApi_AddMarker_m790D574DA2B26355FAFE8FA0F2EDDA86B3E8D333 (String_t* ___name0, Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___obj1, const RuntimeMethod* method)
{
typedef void (*UISystemProfilerApi_AddMarker_m790D574DA2B26355FAFE8FA0F2EDDA86B3E8D333_ftn) (String_t*, Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *);
static UISystemProfilerApi_AddMarker_m790D574DA2B26355FAFE8FA0F2EDDA86B3E8D333_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (UISystemProfilerApi_AddMarker_m790D574DA2B26355FAFE8FA0F2EDDA86B3E8D333_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.UISystemProfilerApi::AddMarker(System.String,UnityEngine.Object)");
_il2cpp_icall_func(___name0, ___obj1);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
IL2CPP_EXTERN_C void DelegatePInvokeWrapper_WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 (WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * __this, const RuntimeMethod* method)
{
typedef void (DEFAULT_CALL *PInvokeFunc)();
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
il2cppPInvokeFunc();
}
// System.Void UnityEngine.Canvas/WillRenderCanvases::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WillRenderCanvases__ctor_m8A46E9A5DED6B54DC2A8A3137AE3637081EADFB6 (WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
__this->set_method_3(___method1);
__this->set_m_target_2(___object0);
}
// System.Void UnityEngine.Canvas/WillRenderCanvases::Invoke()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WillRenderCanvases_Invoke_mFCD97A3223FD31C109A2B6283ECE7FE307E89282 (WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * __this, const RuntimeMethod* method)
{
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 0)
{
// open
typedef void (*FunctionPointerType) (const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker0::Invoke(targetMethod, targetThis);
else
GenericVirtActionInvoker0::Invoke(targetMethod, targetThis);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis);
else
VirtActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis);
}
}
else
{
typedef void (*FunctionPointerType) (void*, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod);
}
}
}
}
// System.IAsyncResult UnityEngine.Canvas/WillRenderCanvases::BeginInvoke(System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WillRenderCanvases_BeginInvoke_mE22191890AD77883774E1C96019195E74427BA23 (WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * __this, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback0, RuntimeObject * ___object1, const RuntimeMethod* method)
{
void *__d_args[1] = {0};
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback0, (RuntimeObject*)___object1);;
}
// System.Void UnityEngine.Canvas/WillRenderCanvases::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WillRenderCanvases_EndInvoke_m351019B596E70CF9F5AB1317DEFBAD0D85B87813 (WillRenderCanvases_t459621B4F3FA2571DE0ED6B4DEF0752F2E9EE958 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector2_op_Implicit_m4FA146E613DBFE6C1C4B0E9B461D622E6F2FC294_inline (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___v0, const RuntimeMethod* method)
{
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_0;
memset((&V_0), 0, sizeof(V_0));
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_0 = ___v0;
float L_1 = L_0.get_x_0();
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_2 = ___v0;
float L_3 = L_2.get_y_1();
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_4;
memset((&L_4), 0, sizeof(L_4));
Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((&L_4), L_1, L_3, (0.0f), /*hidden argument*/NULL);
V_0 = L_4;
goto IL_001a;
}
IL_001a:
{
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_5 = V_0;
return L_5;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 Vector2_op_Implicit_mE407CAF7446E342E059B00AA9EDB301AEC5B7B1A_inline (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___v0, const RuntimeMethod* method)
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0 = ___v0;
float L_1 = L_0.get_x_2();
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_2 = ___v0;
float L_3 = L_2.get_y_3();
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_4;
memset((&L_4), 0, sizeof(L_4));
Vector2__ctor_m9F1F2D5EB5D1FF7091BB527AC8A72CBB309D115E_inline((&L_4), L_1, L_3, /*hidden argument*/NULL);
V_0 = L_4;
goto IL_0015;
}
IL_0015:
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_5 = V_0;
return L_5;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2__ctor_m9F1F2D5EB5D1FF7091BB527AC8A72CBB309D115E_inline (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * __this, float ___x0, float ___y1, const RuntimeMethod* method)
{
{
float L_0 = ___x0;
__this->set_x_0(L_0);
float L_1 = ___y1;
__this->set_y_1(L_1);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * __this, float ___x0, float ___y1, float ___z2, const RuntimeMethod* method)
{
{
float L_0 = ___x0;
__this->set_x_2(L_0);
float L_1 = ___y1;
__this->set_y_3(L_1);
float L_2 = ___z2;
__this->set_z_4(L_2);
return;
}
}
| [
"[email protected]"
] | |
5bcd183b1d987fb691719fc3d4bd9142b1c28720 | 4512a24742a8e860b6a482dcb57201ebc782e81c | /Class_Lab/EtoXWithTwoFunction/main.cpp | 23d63a3ebcab8d4e5ac6c06a7e86494717a59872 | [] | no_license | yehaolan/CSC-5 | 1e99c85a342700cb80749d59ba5d8298fa0c1a48 | a24da1ae8e2de9a6690870fb85274c579dc4486d | refs/heads/master | 2021-05-29T04:24:41.417318 | 2015-02-12T16:57:07 | 2015-02-12T16:57:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,455 | cpp | /*
* File: main.cpp
* Author: Haolan Ye(Benjamin)
* Created on January 21, 2015, 9:05 AM
*/
//System Libraries
#include <iostream>
#include <cmath>
using namespace std;
//User Libraries
//Global Constants
//Function Prototypes
int nFactrl(int);//Note: with all
int nFactr1(int);//Note: with one
float approxEx(float x);
//Execution begins here
int main(int argc, char** argv) {
//declare variables
float x;
//Prompt the user for the power of e^x
cout<<"What x in e^x would you like to use to"<<endl;
cin>>x;
cout<<"Approximate e^x = "<<approxEx(x)<<endl;
cout<<"Exact e^x = "<<exp(x)<<endl;
return 0;
}
int nFactrl(int n) {
//Declare variables
//Note:function only works for value 0 to 13
int nFactrl=1;
if(n==0||n==1) return nFactrl;
else if(n<=13) {
for(int i=2;i<=n;i++){
nFactrl*=i;
}
return nFactrl;
}
else {
return -1;
}
}
int nFactr1(int n) {
//Declare variables
//Note:function only works for value 0 to 13
int nFactrl=1;
if(n==0||n==1) nFactrl=1;
else if(n<=13) {
for(int i=2;i<=n;i++){
nFactrl*=i;
}
}
else {
nFactrl= -1;
}
return nFactrl;
}
float approxEx(float x) {
//declare variables
float etox=1;
//calculate e^x
for(int n=1;n<=13;n++){
etox+=(pow(x,n)/nFactr1(n));
}
return etox;
} | [
"[email protected]"
] | |
46ec6d175814e58369a7b844db0a46e6d4f66e6f | b478c4aeec11383d2088fa4e6ad0fd5b88b8628b | /src/transaction/tx/Transaction.cpp | aa443d655ab08fb0e8d324baf3dd2710fb2d13e4 | [] | no_license | 286010056/jingtum-core | 659a28796b9dd604c70de16e35297ac2356ffb4f | 05d989b16526a4012b1438a68fcc0cac23bc8b2e | refs/heads/master | 2021-01-13T21:03:30.983346 | 2018-12-24T09:01:25 | 2018-12-24T09:01:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,333 | cpp | //------------------------------------------------------------------------------
/*
This file is part of skywelld: https://github.com/skywell/skywelld
Copyright (c) 2012, 2013 Skywell Labs Inc.
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
//==============================================================================
#include <BeastConfig.h>
#include <transaction/tx/Transaction.h>
#include <common/base/Log.h>
#include <data/database/DatabaseCon.h>
#include <ledger/LedgerMaster.h>
#include <main/Application.h>
#include <protocol/JsonFields.h>
#include <boost/optional.hpp>
namespace skywell {
Transaction::Transaction(STTx::ref sit, Validate validate, std::string& reason)
noexcept
: mInLedger(0),
mStatus(INVALID),
mResult(temUNCERTAIN),
mTransaction(sit)
{
try
{
mFromPubKey.setAccountPublic(mTransaction->getSigningPubKey());
mTransactionID = mTransaction->getTransactionID();
mAccountFrom = mTransaction->getOperationAccount();
}
catch (std::exception& e)
{
reason = e.what();
return;
}
catch (...)
{
reason = "Unexpected exception";
return;
}
if (validate == Validate::NO ||
(passesLocalChecks(*mTransaction, reason) && checkSign(reason)))
{
mStatus = NEW;
}
}
Transaction::pointer Transaction::sharedTransaction(
Blob const& vucTransaction, Validate validate)
{
try
{
Serializer s(vucTransaction);
SerialIter sit(s);
std::string reason;
return std::make_shared<Transaction>(std::make_shared<STTx>(sit),
validate, reason);
}
catch (std::exception& e)
{
WriteLog(lsWARNING, Ledger) << "Exception constructing transaction" <<
e.what();
}
catch (...)
{
WriteLog(lsWARNING, Ledger) << "Exception constructing transaction";
}
return std::shared_ptr<Transaction>();
}
//
// Misc.
//
bool Transaction::checkSign(std::string& reason) const
{
if (!mFromPubKey.isValid())
reason = "Transaction has bad source public key";
else if (!mTransaction->checkSign())
reason = "Transaction has bad signature";
else
return true;
WriteLog(lsWARNING, Ledger) << reason;
return false;
}
void Transaction::setStatus(TransStatus ts, std::uint32_t lseq)
{
mStatus = ts;
mInLedger = lseq;
}
TransStatus Transaction::sqlTransactionStatus(
boost::optional<std::string> const& status)
{
char const c = (status) ? (*status)[0] : TXN_SQL_UNKNOWN;
switch (c)
{
case TXN_SQL_NEW: return NEW;
case TXN_SQL_CONFLICT: return CONFLICTED;
case TXN_SQL_HELD: return HELD;
case TXN_SQL_VALIDATED: return COMMITTED;
case TXN_SQL_INCLUDED: return INCLUDED;
}
assert(c == TXN_SQL_UNKNOWN);
return INVALID;
}
Transaction::pointer Transaction::transactionFromSQL(
boost::optional<std::uint64_t> const& ledgerSeq,
boost::optional<std::string> const& status,
std::string const& rawTxn,
Validate validate)
{
std::uint32_t const inLedger =
rangeCheckedCast<std::uint32_t>(ledgerSeq.value_or(0));
SerialIter it(rawTxn);
auto txn = std::make_shared<STTx>(it);
std::string reason;
auto tr = std::make_shared<Transaction>(txn, validate, reason);
tr->setStatus(sqlTransactionStatus(status));
tr->setLedger(inLedger);
return tr;
}
Transaction::pointer Transaction::load(uint256 const& id)
{
std::string sql = "SELECT LedgerSeq,Status,RawTxn "
"FROM Transactions WHERE TransID='";
sql.append(to_string(id));
sql.append("';");
boost::optional<std::uint64_t> ledgerSeq;
boost::optional<std::string> status;
std::string rawTxn;
{
auto db = getApp().getTxnDB ().checkoutDb ();
boost::optional<std::string> sociRawTxnBlob;
soci::indicator rti;
*db << sql, soci::into(ledgerSeq), soci::into(status),
soci::into(sociRawTxnBlob, rti);
if (!db->got_data() || rti != soci::i_ok)
return{};
//convert(sociRawTxnBlob, rawTxn);
rawTxn = *sociRawTxnBlob;
}
return Transaction::transactionFromSQL(
ledgerSeq, status, rawTxn, Validate::YES);
}
// options 1 to include the date of the transaction
Json::Value Transaction::getJson(int options, bool binary) const
{
Json::Value ret(mTransaction->getJson(0, binary));
if (mInLedger)
{
ret[jss::inLedger] = mInLedger; // Deprecated.
ret[jss::ledger_index] = mInLedger;
if (options == 1)
{
auto ledger = getApp().getLedgerMaster().
getLedgerBySeq(mInLedger);
if (ledger)
ret[jss::date] = ledger->getCloseTimeNC();
}
}
return ret;
}
} // skywell
| [
"[email protected]"
] | |
d90e2183b26bb160da39b72b6b04c50009acbc07 | 4909489caa5f8c81123d1b8419fa185d62f16a97 | /src/robot/commands/match_alliance_underglow.hpp | b58f235dc153720eb2b605cf924da191c668ced2 | [
"MIT"
] | permissive | Lukanite/FRC-14 | 25f7217940557a02689c69efe5aace6c62508b97 | 0f0193c254ce3c05903aa7e59008a0bf6e76dfa0 | refs/heads/master | 2021-01-24T19:50:04.175210 | 2014-11-05T23:19:18 | 2014-11-05T23:19:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 409 | hpp | #ifndef MATCH_ALLIANCE_UNDERGLOW_HPP
#define MATCH_ALLIANCE_UNDERGLOW_HPP
#include "../subsystems/underglow.hpp"
#include <WPILib.h>
// Make underglow color match the alliance.
class Match_Alliance_Underglow : public Command {
public:
Match_Alliance_Underglow();
void Initialize();
void Execute() {};
bool IsFinished();
void End() {};
void Interrupted() {};
};
#endif // MATCH_ALLIANCE_UNDERGLOW_HPP
| [
"[email protected]"
] | |
87f0d47efa906d110f3c71390d5b89760e80e926 | ae8d58a19825659e7deeb1450d53896a1b14fdee | /hydro/dbinterface.cpp | 7b2fb8f92a1b1e66e57fe6b7ba87c93c9cb77c9e | [] | no_license | datalurkur/SpicyPeanut | b5ac06a2bf831eb62f79473257a846127be0277f | 09476cee4e607d8cf288563abaaa311b42253c70 | refs/heads/master | 2020-03-27T21:10:48.778972 | 2019-03-21T02:25:41 | 2019-03-21T02:25:41 | 147,121,476 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,172 | cpp | #include "dbinterface.h"
#include "log.h"
#include <fstream>
std::shared_ptr<DBInterface> DBInterface::Instance = nullptr;
void DBInterface::Init()
{
if (Instance != nullptr) { return; }
Instance = std::make_shared<DBInterface>();
}
DBInterface::DBInterface(): _connectionString(""), _session(nullptr)
{
readConnectionString();
connect();
}
DBInterface::~DBInterface()
{
if (_session != nullptr)
{
_session->close();
}
}
void DBInterface::readConnectionString()
{
std::ifstream cStrInput(kConnectionStringPath, std::ios::in);
if (!cStrInput.is_open())
{
LogError("Failed to open " << kConnectionStringPath << ", no data will be logged");
return;
}
cStrInput.seekg(0, std::ios::end);
_connectionString.reserve((int)cStrInput.tellg());
cStrInput.seekg(0, std::ios::beg);
_connectionString.assign((std::istreambuf_iterator<char>(cStrInput)), std::istreambuf_iterator<char>());
if (_connectionString.length() == 0)
{
LogError("Failed to read connection string data, no samples will be logged");
}
}
bool DBInterface::connect()
{
if (_connectionString.length() == 0) { return false; }
try
{
if (_session != nullptr)
{
_session->close();
}
LogInfo("Attemping to connect with connection string " << _connectionString);
_session = std::make_shared<soci::session>(soci::odbc, _connectionString);
}
catch (std::exception const & e)
{
LogError("Failed to connect to database: " << e.what());
return false;
}
return true;
}
void DBInterface::logSample(DBInterface::SampleType type, double measurement)
{
for (int i = 0; i < kRetries; ++i)
{
try
{
(*_session) << "insert into sample (typeid, sampledata) values (:tp, :mm)", soci::use((int)type, "tp"), soci::use(measurement, "mm");
break;
}
catch (std::exception const & e)
{
LogError("Failed to log data - " << e.what());
}
LogInfo("Attempting to reconnect and log (retry " << (i+1) << ")");
connect();
}
}
| [
"[email protected]"
] | |
a78096cd40dcccca8065de10e6a6835fc3a12fe3 | 346c0cc2f8244605b7276803cdcddb939fc6b63a | /extlibs/boost-1.65.1/include/boost/process/async_pipe.hpp | 97af165859209756231c14ee06797db79417f2b3 | [
"MIT"
] | permissive | aiwc/test_world | 4beb6a20e19fa1e31a0070a4686def6a2084744d | 37312a93a5a9d4ba19b0fa1ec1db03a80efca111 | refs/heads/master | 2021-06-15T18:22:34.630709 | 2019-08-06T08:03:10 | 2019-08-06T08:03:10 | 108,369,014 | 13 | 17 | MIT | 2019-08-08T09:44:07 | 2017-10-26T06:09:39 | C++ | UTF-8 | C++ | false | false | 7,630 | hpp | // Copyright (c) 2006, 2007 Julio M. Merino Vidal
// Copyright (c) 2008 Ilya Sokolov, Boris Schaeling
// Copyright (c) 2009 Boris Schaeling
// Copyright (c) 2010 Felipe Tanus, Boris Schaeling
// Copyright (c) 2011, 2012 Jeff Flinn, Boris Schaeling
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#ifndef BOOST_PROCESS_ASYNC_PIPE_HPP
#define BOOST_PROCESS_ASYNC_PIPE_HPP
#include <boost/config.hpp>
#include <boost/process/detail/config.hpp>
#if defined(BOOST_POSIX_API)
#include <boost/process/detail/posix/async_pipe.hpp>
#elif defined(BOOST_WINDOWS_API)
#include <boost/process/detail/windows/async_pipe.hpp>
#endif
namespace boost { namespace process {
#if defined(BOOST_PROCESS_DOXYGEN)
/** Class implementing and asnychronous I/O-Object for use with boost.asio.
* It is based on the corresponding I/O Object, that is either boost::asio::windows::stream_handle or
* boost::asio::posix::stream_descriptor.
*
* It can be used directly with boost::asio::async_read or async_write.
*
* \note The object is copyable, but that does invoke a handle duplicate.
*/
class async_pipe
{
public:
/** Typedef for the native handle representation.
* \note This is the handle on the system, not the boost.asio class.
*
*/
typedef platform_specific native_handle_type;
/** Typedef for the handle representation of boost.asio.
*
*/
typedef platform_specific handle_type;
/** Construct a new async_pipe, does automatically open the pipe.
* Initializes source and sink with the same io_service.
* @note Windows creates a named pipe here, where the name is automatically generated.
*/
inline async_pipe(boost::asio::io_service & ios);
/** Construct a new async_pipe, does automatically open the pipe.
* @note Windows creates a named pipe here, where the name is automatically generated.
*/
inline async_pipe(boost::asio::io_service & ios_source,
boost::asio::io_service & ios_sink);
/** Construct a new async_pipe, does automatically open.
* Initializes source and sink with the same io_service.
*
* @note Windows restricts possible names.
*/
inline async_pipe(boost::asio::io_service & ios, const std::string & name);
/** Construct a new async_pipe, does automatically open.
*
* @note Windows restricts possible names.
*/
inline async_pipe(boost::asio::io_service & ios_source,
boost::asio::io_service & ios_sink, const std::string & name);
/** Copy-Constructor of the async pipe.
* @note Windows requires a named pipe for this, if a the wrong type is used an exception is thrown.
*
*/
async_pipe(const async_pipe& lhs);
/** Move-Constructor of the async pipe.
*/
async_pipe(async_pipe&& lhs);
/** Construct the async-pipe from a pipe.
* @note Windows requires a named pipe for this, if a the wrong type is used an exception is thrown.
*
*/
template<class CharT, class Traits = std::char_traits<CharT>>
explicit async_pipe(boost::asio::io_service & ios, const basic_pipe<CharT, Traits> & p);
/** Construct the async-pipe from a pipe, with two different io_service objects.
* @note Windows requires a named pipe for this, if a the wrong type is used an exception is thrown.
*
*/
template<class CharT, class Traits = std::char_traits<CharT>>
explicit async_pipe(boost::asio::io_service & ios_source,
boost::asio::io_service & ios_sink,
const basic_pipe<CharT, Traits> & p);
/** Assign a basic_pipe.
* @note Windows requires a named pipe for this, if a the wrong type is used an exception is thrown.
*
*/
template<class CharT, class Traits = std::char_traits<CharT>>
inline async_pipe& operator=(const basic_pipe<CharT, Traits>& p);
/** Copy Assign a pipe.
* @note Duplicates the handles.
*/
async_pipe& operator=(const async_pipe& lhs);
/** Move assign a pipe */
async_pipe& operator=(async_pipe&& lhs);
/** Destructor. Closes the pipe handles. */
~async_pipe();
/** Explicit cast to basic_pipe. */
template<class CharT, class Traits = std::char_traits<CharT>>
inline explicit operator basic_pipe<CharT, Traits>() const;
/** Cancel the current asynchronous operations. */
void cancel();
/** Close the pipe handles. */
void close();
/** Close the pipe handles. While passing an error_code
*
*/
void close(std::error_code & ec);
/** Check if the pipes are open. */
bool is_open() const;
/** Async close, i.e. close after current operation is completed.
*
* \note There is no guarantee that this will indeed read the entire pipe-buffer
*/
void async_close();
/** Read some data from the handle.
* See the boost.asio documentation for more details.
*/
template<typename MutableBufferSequence>
std::size_t read_some(const MutableBufferSequence & buffers);
/** Write some data to the handle.
* See the boost.asio documentation for more details.
*/
template<typename MutableBufferSequence>
std::size_t write_some(const MutableBufferSequence & buffers);
/** Get the native handle of the source. */
native_handle native_source() const {return const_cast<boost::asio::windows::stream_handle&>(_source).native();}
/** Get the native handle of the sink. */
native_handle native_sink () const {return const_cast<boost::asio::windows::stream_handle&>(_sink ).native();}
/** Start an asynchronous read.
*
* See the [boost.asio documentation](http://www.boost.org/doc/libs/1_60_0/doc/html/boost_asio/reference/AsyncReadStream.html) for more details.
*/
template<typename MutableBufferSequence,
typename ReadHandler>
detail::dummy async_read_some(
const MutableBufferSequence & buffers,
ReadHandler &&handler);
/** Start an asynchronous write.
* See the [boost.asio documentation](http://www.boost.org/doc/libs/1_60_0/doc/html/boost_asio/reference/AsyncWriteStream.html) for more details.
*/
template<typename ConstBufferSequence,
typename WriteHandler>
detail::dummy async_write_some(
const ConstBufferSequence & buffers,
WriteHandler && handler);
///Get the asio handle of the pipe sink.
const handle_type & sink () const &;
///Get the asio handle of the pipe source.
const handle_type & source() const &;
///Get the asio handle of the pipe sink. Qualified as rvalue
handle_type && sink () &&;
///Get the asio handle of the pipe source. Qualified as rvalue
handle_type && source() &&;
/// Move the source out of this class and change the io_service. Qualified as rvalue. \attention Will always move.
handle_type source(::boost::asio::io_service& ios) &&;
/// Move the sink out of this class and change the io_service. Qualified as rvalue. \attention Will always move
handle_type sink (::boost::asio::io_service& ios) &&;
/// Copy the source out of this class and change the io_service. \attention Will always copy.
handle_type source(::boost::asio::io_service& ios) const &;
/// Copy the sink out of this class and change the io_service. \attention Will always copy
handle_type sink (::boost::asio::io_service& ios) const &;
};
#else
using ::boost::process::detail::api::async_pipe;
#endif
}}
#endif
| [
"[email protected]"
] | |
d419a59e981fce93d6807605a795a2c1b8f0c720 | 746ab0d22f2b25eb8613d1cfae2dcd3cd734144e | /calclib/VPerLine.h | bafcac20c8cd1317f88190a0482eaf33de54470d | [] | no_license | imzhukov/video_3.0.0 | 1b41232f3429de81d7148eca3fcea8916623cdd5 | a02dafbe9ec1b943d0a36cf3e5630f6c9c88adec | refs/heads/master | 2021-01-10T09:43:14.029174 | 2016-03-27T10:05:05 | 2016-03-27T10:05:05 | 45,790,575 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 360 | h | #pragma once
#include "VDataSet.h"
#include "VParameter.h"
class VDataSet;
struct VPerLine
{
public:
float abscoord;
float dLength;
float speed1;
float speed2;
int dNorma;
float dMaxValue;
float dMidValue;
};
class VPerLineList : public VIndexList<VPerLine>
{
public:
/// Загрузка
bool Load(VDataSet & ds);
}; | [
"[email protected]"
] | |
f25b4d56e0ba984806cb8058a757d64e0f4c6baa | 164cf5d4c0aa37ea61f58186312bf4e710a2efa9 | /Plugins/NDIIOPlugin/Source/Core/Classes/Services/NDIFinderService.cpp | 793d49bb317303b0c015ff0f23b549363baa09d1 | [] | no_license | Alinccc/InCameraVFX_November | 868a621e308b6786d26ba7adc89e81b9d035956b | aedf691111136b5b40f7aa6ee62811555de4bb5d | refs/heads/main | 2023-01-23T21:41:43.486441 | 2020-12-13T13:02:10 | 2020-12-13T13:02:10 | 426,122,302 | 1 | 0 | null | 2021-11-09T06:53:07 | 2021-11-09T06:53:07 | null | UTF-8 | C++ | false | false | 6,578 | cpp | /*
All rights reserved. Copyright(c) 2018-2020, NewTek Inc.
This file and it's use within a Product is bound by the terms of NDI SDK license that was provided
as part of the NDI SDK. For more information, please review the license and the NDI SDK documentation.
*/
#include <Services/NDIFinderService.h>
#include <Async/Async.h>
#include <NDIIOPluginAPI.h>
/** Define Global Accessors */
static void* NDI_FIND_INSTANCE = nullptr;
static FCriticalSection NDI_FIND_SYNC_CONTEXT;
FNDIFinderService::FNDISourceCollectionChangedEvent FNDIFinderService::EventOnNDISourceCollectionChanged;
TArray<FNDIConnectionInformation> FNDIFinderService::NetworkSourceCollection = TArray<FNDIConnectionInformation>();
/** ************************ **/
FNDIFinderService::FNDIFinderService()
{
if (NDI_FIND_INSTANCE == nullptr)
{
FScopeLock Lock(&NDI_FIND_SYNC_CONTEXT);
NDI_FIND_INSTANCE = NDIlib_find_create_v2(nullptr);
}
}
// Begin the service
bool FNDIFinderService::Start()
{
if (!bIsThreadRunning && p_RunnableThread == nullptr)
{
if (NDI_FIND_INSTANCE != nullptr)
{
this->bIsThreadRunning = true;
p_RunnableThread = FRunnableThread::Create(this, TEXT("FNDIFinderService_Tick"), 0, TPri_BelowNormal);
return bIsThreadRunning = p_RunnableThread != nullptr;
}
}
return false;
}
/** FRunnable Interface implementation for 'Init' */
bool FNDIFinderService::Init() { return NDI_FIND_INSTANCE != nullptr; }
/** FRunnable Interface implementation for 'Stop' */
uint32 FNDIFinderService::Run()
{
static const uint32 find_wait_time = 500;
if (NDI_FIND_INSTANCE == nullptr)
return 0;
// Only update when we are suppose to run
while (bIsThreadRunning)
{
// Wait up to 'find_wait_time' (in milliseconds) to determine whether new sources have been added
if (!NDIlib_find_wait_for_sources(NDI_FIND_INSTANCE, find_wait_time))
{
// alright the source collection has stopped updating, did we change the network source collection?
if (UpdateNetworkSourceCollection())
{
// Broadcast the even on the game thread for thread safety purposes
AsyncTask(ENamedThreads::GameThread, []() {
if (FNDIFinderService::EventOnNDISourceCollectionChanged.IsBound())
FNDIFinderService::EventOnNDISourceCollectionChanged.Broadcast();
});
}
}
}
// return success
return 1;
}
/** FRunnable Interface implementation for 'Run' */
void FNDIFinderService::Shutdown()
{
if (p_RunnableThread != nullptr)
{
this->bIsThreadRunning = false;
p_RunnableThread->WaitForCompletion();
p_RunnableThread = nullptr;
}
// Ensure we unload the finder instance
if (NDI_FIND_INSTANCE != nullptr)
NDIlib_find_destroy(NDI_FIND_INSTANCE);
}
// Stop the service
void FNDIFinderService::Stop() { Shutdown(); }
bool FNDIFinderService::UpdateNetworkSourceCollection()
{
uint32 no_sources = 0;
bool bHasCollectionChanged = false;
if (NDI_FIND_INSTANCE != nullptr)
{
const NDIlib_source_t* p_sources = NDIlib_find_get_current_sources(NDI_FIND_INSTANCE, &no_sources);
// Change Scope
{
FScopeLock lock(&NDI_FIND_SYNC_CONTEXT);
bHasCollectionChanged = FNDIFinderService::NetworkSourceCollection.Num() != no_sources;
if (no_sources > 0 && p_sources != nullptr)
{
uint32 CurrentSourceCount = NetworkSourceCollection.Num();
for (uint32 iter = 0; iter < no_sources; iter++)
{
if (iter >= CurrentSourceCount)
{
NetworkSourceCollection.Add(FNDIConnectionInformation());
}
const NDIlib_source_t* SourceInformation = &p_sources[iter];
FNDIConnectionInformation* CollectionSource = &NetworkSourceCollection[iter];
bHasCollectionChanged |= SourceInformation->p_url_address != CollectionSource->Url;
CollectionSource->Url = SourceInformation->p_url_address;
CollectionSource->SourceName = SourceInformation->p_ndi_name;
CollectionSource->SourceName.Split(TEXT(" "), &CollectionSource->MachineName, &CollectionSource->StreamName);
// Now that the MachineName and StreamName have been split, cleanup the stream name
CollectionSource->StreamName.RemoveFromStart("(");
CollectionSource->StreamName.RemoveFromEnd(")");
}
if (CurrentSourceCount > no_sources)
{
NetworkSourceCollection.RemoveAt(no_sources, CurrentSourceCount - no_sources, true);
bHasCollectionChanged = true;
}
}
else if (NetworkSourceCollection.Num() > 0)
{
NetworkSourceCollection.Empty();
bHasCollectionChanged = true;
}
bHasCollectionChanged |= NetworkSourceCollection.Num() != no_sources;
}
}
return bHasCollectionChanged;
}
/** Call to update an existing collection of network sources to match the current collection */
bool FNDIFinderService::UpdateSourceCollection(TArray<FNDIConnectionInformation>& InSourceCollection)
{
bool bHasCollectionChanged = false;
{
FScopeLock Lock(&NDI_FIND_SYNC_CONTEXT);
const uint32& no_sources = NetworkSourceCollection.Num();
bHasCollectionChanged = InSourceCollection.Num() != no_sources;
if (no_sources > 0)
{
uint32 CurrentSourceCount = InSourceCollection.Num();
for (uint32 iter = 0; iter < no_sources; iter++)
{
if (iter >= CurrentSourceCount)
{
InSourceCollection.Add(FNDIConnectionInformation());
CurrentSourceCount = InSourceCollection.Num();
}
FNDIConnectionInformation* CollectionSource = &InSourceCollection[iter];
const FNDIConnectionInformation* SourceInformation = &NetworkSourceCollection[iter];
bHasCollectionChanged |= SourceInformation->Url != CollectionSource->Url;
CollectionSource->Url = SourceInformation->Url;
CollectionSource->SourceName = SourceInformation->SourceName;
CollectionSource->MachineName = SourceInformation->MachineName;
CollectionSource->StreamName = SourceInformation->StreamName;
}
if (CurrentSourceCount > no_sources)
{
InSourceCollection.RemoveAt(no_sources, CurrentSourceCount - no_sources, true);
bHasCollectionChanged = true;
}
}
else if (InSourceCollection.Num() > 0)
{
InSourceCollection.Empty();
bHasCollectionChanged = true;
}
}
return bHasCollectionChanged;
}
/** Get the available sources on the network */
const TArray<FNDIConnectionInformation> FNDIFinderService::GetNetworkSourceCollection()
{
FScopeLock Lock(&NDI_FIND_SYNC_CONTEXT);
return FNDIFinderService::NetworkSourceCollection;
}
| [
"[email protected]"
] | |
7b7b2f151fa40423d819c46260fcdc93e922542a | b773cd36ed1da0202331f17979c6f3747ec26cf9 | /src/halfEdgeMesh.h | 4aa3a0803a4d06ed5e48d5be2f63e8d719c45113 | [] | no_license | cs248-spring-2018/Cardinal3D | 4b0fac153b7073e748dcea840135e1689194fa68 | c817585f320154e470bf3bf303e8505bbe77c25c | refs/heads/master | 2020-03-12T03:14:24.979606 | 2018-05-03T20:09:06 | 2018-05-03T20:09:06 | 130,420,385 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 34,137 | h | /*
* HalfedgeMesh.h
*
*/
/**
* A HalfedgeMesh is a data structure that makes it easy to iterate over (and
* modify) a polygonal mesh. The basic idea is that each edge of the mesh
* gets associated with two "halfedges," one on either side, that point in
* opposite directions. These halfedges essentially serve as the "glue"
* between different mesh elements (vertices, edges, and faces). A half edge
* mesh has the same basic flavor as a tree or linked list data structure:
* each node has pointers that reference other nodes. In particular, each
* half edge points to:
*
* -its root vertex,
* -its associated edge,
* -the face it sits on,
* -its "twin", i.e., the halfedge on the other side of the edge,
* -and the next halfedge in cyclic order around the face.
*
* Vertices, edges, and faces each point to just one of their incident
* halfedges. For instance, an edge will point arbitrarily to either
* its "left" or "right" halfedge. Each vertex will point to one of
* many halfedges leaving that vertex. Each face will point to one of
* many halfedges going around that face. The fact that these choices
* are arbitrary does not at all affect the practical use of this data
* structure: they merely provide a starting point for iterating over
* the local region (e.g., walking around a face, or visiting the
* neighbors of a vertex). A practical example of iterating around a
* face might look like:
*
* HalfEdgeIter h = myFace->halfedge();
* do
* {
* // do something interesting with h
* h = h->next();
* }
* while( h != myFace->halfEdge() );
*
* At each iteration we walk to the "next" halfedge, until we return
* to the original starting point. A slightly more interesting
* example is iterating around a vertex:
*
* HalfEdgeIter h = myVertex->halfedge();
* do
* {
* // do something interesting with h
* h = h->twin()->next();
* }
* while( h != myVertex->halfedge() );
*
* (Can you draw a picture that explains this iteration?) A very
* different kind of iteration is when we want to iterate over, say,
* *all* the edges of a mesh:
*
* for( EdgeIter e = mesh.edges.begin(); e != mesh.edges.end(); e++ )
* {
* // do something interesting with e
* }
*
* A very important consequence of the halfedge representation is that
* ---by design---it can only represent manifold, orientable triangle
* meshes. I.e., every point should have a neighborhood that looks disk-
* like, and you should be able to assign to each polygon a normal
* direction such that all these normals "point the same way" as you walk
* around the surface.
*
* At a high level, that's all there is to know about the half edge
* data structure. But it's worth making a few comments about how this
* particular implementation works---especially how things like boundaries
* are handled. First and foremost, the "pointers" used in this
* implementation are actually STL iterators. STL stands for the "standard
* template library," and is a basic part of C++ that provides some very
* convenient and powerful data structures and algorithms---if you've never
* looked at STL before, now would be a great time to get familiar! At
* a high level, STL iterators behave a lot like pointers: they don't store
* data, but rather reference some data that is allocated elsewhere. And
* the syntax is also very similar; for instance, if p is an iterator, then
* *p yields the value referred to by p. (As for the rest, Google is a
* terrific resource! :-))
*
* Rather than accessing raw iterators, the HalfedgeMesh encapsulates these
* pointers using methods like Halfedge::twin(), Halfedge::next(), etc. The
* reason for this encapsulation (as in most object-oriented programming)
* is that it allows the user to make changes to the internal representation
* later down the line. For instance, if you know that the connectivity of
* the mesh is never going to change, you might be able to improve performance
* by (internally) replacing the linked lists with fixed-length arrays,
* without breaking any code that might have been written using the abstract
* interface. (There are deeper reasons for this kind of encapsulation
* when working with polygon meshes, but that's a story for another time!)
*
* Finally, some surfaces have "boundary loops," e.g., a pair of pants has
* three boundaries: one at the waist, and two at the ankles. These boundaries
* are represented by special faces in our halfedge mesh---in fact, rather than
* being stored in the usual list of faces (HalfedgeMesh::faces), they are
* stored in a separae list of boundary loops (HalfedgeMesh::boundaries). Each
* face (boundary or regular) also stored a flag Face::_isBoundary that
* indicates whether or not it is a boundary. This value can be queried via the
* public method Face::isBoundary() (again: encapsulation!) So for instance, if
* I wanted to know the area of all polygons that touch a given vertex, I might
* write some code like this:
*
* double totalArea = 0.;
* HalfEdgeIter h = myVertex->halfedge();
* do
* {
* // don't add the area of boundary faces!
* if( !h->face()->isBoundary() )
* {
* totalArea != h->face()->area();
* }
* h = h->twin()->next();
* }
* while( h != myVertex->halfedge() );
*
* In other words, whenever I'm processing a face, I should stop and ask: is
* this really a geometric face in my mesh? Or is it just a "virtual" face
* that represents a boundary loop? Finally, for convenience, the halfedge
* associated with a boundary vertex is the first halfedge on the boundary.
* In other words, if we want to iterate over, say, all faces touching a
* boundary vertex, we could write
*
* HalfEdgeIter h = myBoundaryVertex->halfedge();
* do
* {
* // do something interesting with h
* h = h->twin()->next();
* }
* while( !h->isBoundary() );
*
* (Notice that this loop will never terminate for an interior vertex!)
*
* More documentation can be found in the inline comments below.
*/
#ifndef CS248_HALFEDGEMESH_H
#define CS248_HALFEDGEMESH_H
#include <iostream>
#include <list>
#include <map>
#include <set>
#include <utility>
#include <vector>
#include "CS248/CS248.h" // Standard 462 Vectors, etc.
#include "bbox.h"
#include "collada/polymesh_info.h"
typedef std::vector<std::string> Info;
using namespace std;
using namespace CS248;
// For code clarity, we often want to distinguish between
// an integer that encodes an index (an "ordinal" number)
// from an integer that encodes a size (a "cardinal" number).
typedef size_t Index;
typedef size_t Size;
namespace CS248 {
/*
* A HalfedgeMesh is comprised of four atomic element types:
* vertices, edges, faces, and halfedges.
*/
class Vertex;
class Edge;
class Face;
class Halfedge;
/*
* Rather than using raw pointers to mesh elements, we store references
* as STL::iterators---for convenience, we give shorter names to these
* iterators (e.g., EdgeIter instead of list<Edge>::iterator).
*/
typedef list<Vertex>::iterator VertexIter;
typedef list<Edge>::iterator EdgeIter;
typedef list<Face>::iterator FaceIter;
typedef list<Halfedge>::iterator HalfedgeIter;
/*
* We also need "const" iterator types, for situations where a method takes
* a constant reference or pointer to a HalfedgeMesh. Since these types are
* used so frequently, we will use "CIter" as a shorthand abbreviation for
* "constant iterator."
*/
typedef list<Vertex>::const_iterator VertexCIter;
typedef list<Edge>::const_iterator EdgeCIter;
typedef list<Face>::const_iterator FaceCIter;
typedef list<Halfedge>::const_iterator HalfedgeCIter;
/*
* Some algorithms need to know how to compare two iterators (which comes
* first?)
* Here we just say that one iterator comes before another if the address of the
* object it points to is smaller. (You should not have to worry about this!)
*/
inline bool operator<(const HalfedgeIter& i, const HalfedgeIter& j) {
return &*i < &*j;
}
inline bool operator<(const VertexIter& i, const VertexIter& j) {
return &*i < &*j;
}
inline bool operator<(const EdgeIter& i, const EdgeIter& j) {
return &*i < &*j;
}
inline bool operator<(const FaceIter& i, const FaceIter& j) {
return &*i < &*j;
}
// We also need to know how to compare const iterators.
inline bool operator<(const HalfedgeCIter& i, const HalfedgeCIter& j) {
return &*i < &*j;
}
inline bool operator<(const VertexCIter& i, const VertexCIter& j) {
return &*i < &*j;
}
inline bool operator<(const EdgeCIter& i, const EdgeCIter& j) {
return &*i < &*j;
}
inline bool operator<(const FaceCIter& i, const FaceCIter& j) {
return &*i < &*j;
}
/**
* The elementAddress() function is defined only for convenience (and
* readability), and returns the actual memory address associated with
* a mesh element referred to by the given iterator. (This is especially
* helpful for things like debugging, where we want to check that one
* element is properly pointing to another.)
*/
inline Halfedge* elementAddress(HalfedgeIter h) { return &(*h); }
inline Vertex* elementAddress(VertexIter v) { return &(*v); }
inline Edge* elementAddress(EdgeIter e) { return &(*e); }
inline Face* elementAddress(FaceIter f) { return &(*f); }
/**
* Same thing, just for constant references.
*/
inline Halfedge const* elementAddress(HalfedgeCIter h) { return &(*h); }
inline Vertex const* elementAddress(VertexCIter v) { return &(*v); }
inline Edge const* elementAddress(EdgeCIter e) { return &(*e); }
inline Face const* elementAddress(FaceCIter f) { return &(*f); }
class EdgeRecord {
public:
EdgeRecord() {}
EdgeRecord(EdgeIter& _edge);
EdgeIter edge;
Vector3D optimalPoint;
double score;
};
inline bool operator<(const EdgeRecord& r1, const EdgeRecord& r2) {
if (r1.score != r2.score) {
return (r1.score < r2.score);
}
EdgeIter e1 = r1.edge;
EdgeIter e2 = r2.edge;
return &*e1 < &*e2;
}
/**
* HalfedgeElement is the base type for all mesh elements (halfedges,
* vertices, edges, and faces). This type is used whenever we want
* a pointer to a generic element (i.e., we don't know if it's a vertex
* edge, face, or halfedge). It is mainly used for debugging and
* visualization, and should probably not be used for most actual mesh
* processing tasks.
*/
class HalfedgeElement {
public:
/**
* Check if the element is a halfEdge.
* \return pointer to the half edge structure if the element is a half edge,
* NULL otherwise.
*/
Halfedge* getHalfedge();
/**
* Check if the element is a vertex.
* \return pointer to the vertex structure if the element is a half edge, NULL
* otherwise.
*/
Vertex* getVertex();
/**
* Check if the element is an edge.
* \return pointer to the edge structure if the element is an edge, NULL
* otherwise.
*/
Edge* getEdge();
/**
* Check if the element is a face.
* \return pointer to the face structure if the element is a face, NULL
* otherwise.
*/
Face* getFace();
/**
* Return geometric centroid.
*/
virtual Vector3D centroid() const = 0;
/**
* Return a bounding box around the element.
*/
virtual BBox bounds() const = 0;
/**
* Return principal axes for the element.
*/
virtual void getAxes(vector<Vector3D>& axes) const = 0;
/**
* Gather metadata about this element.
*/
virtual Info getInfo() = 0;
/**
* Translate this element by a specified vector u.
*/
virtual void translate(double dx, double dy,
const Matrix4x4& modelViewProj) = 0;
/**
* Destructor.
*/
virtual ~HalfedgeElement() {}
protected:
/**
* Helper function for translating a point in space given a desired change in
* screen space.
*/
void translatePoint(Vector3D& p, double dx, double dy,
const Matrix4x4& modelViewProj);
};
/**
* A Halfedge is the basic "glue" between mesh elements, pointing to
* its associated vertex, edge, and face, as will as its twin and next
* halfedges.
*/
class Halfedge : public HalfedgeElement {
public:
HalfedgeIter& twin() { return _twin; } ///< access the twin half edge
HalfedgeIter& next() { return _next; } ///< access the next half edge
VertexIter& vertex() {
return _vertex;
} ///< access the vertex in the half edge
EdgeIter& edge() { return _edge; } ///< access the edge the half edge is on
FaceIter& face() { return _face; } ///< access the face the half edge is on
HalfedgeCIter twin() const {
return _twin;
} ///< access the twin half edge (const iterator)
HalfedgeCIter next() const {
return _next;
} ///< access the next half edge (comst iterator)
VertexCIter vertex() const {
return _vertex;
} ///< access the vertex in the half edge (const iterator)
EdgeCIter edge() const {
return _edge;
} ///< access the edge the half edge is on (const iterator)
FaceCIter face() const {
return _face;
} ///< access the face the half edge is on (const iterator)
/**
* Check if the edge is a boundary edge.
* \return true if yes, false otherwise
*/
bool isBoundary();
/**
* Gather metadata about this element.
*/
virtual Info getInfo();
/**
* For convenience, this method sets all of the
* neighbors of this halfedge to the given values.
*/
void setNeighbors(HalfedgeIter next, HalfedgeIter twin, VertexIter vertex,
EdgeIter edge, FaceIter face) {
_next = next;
_twin = twin;
_vertex = vertex;
_edge = edge;
_face = face;
}
/**
* Return average of edge endpoints.
*/
virtual Vector3D centroid() const;
/**
* Return the bounding box of the parent edge.
*/
virtual BBox bounds() const;
/**
* Translate this halfedge by a specified vector u.
*/
virtual void translate(double dx, double dy, const Matrix4x4& modelViewProj);
/**
* Return axes of the parent edge.
*/
virtual void getAxes(vector<Vector3D>& axes) const;
void getPickPoints(Vector3D& a, Vector3D& b, Vector3D& p, Vector3D& q,
Vector3D& r) const;
protected:
HalfedgeIter _twin; ///< halfedge on the "other side" of the edge
HalfedgeIter _next; ///< next halfedge around the current face
VertexIter _vertex; ///< vertex at the "base" or "root" of this halfedge
EdgeIter _edge; ///< associated edge
FaceIter _face; ///< face containing this halfedge
};
/**
* A Face is a single polygon in the mesh.
*/
class Face : public HalfedgeElement {
public:
/**
* initializes the face, possibly setting its boundary flag
* (by default, a Face does not encode a boundary loop)
*/
Face(bool isBoundary = false) : _isBoundary(isBoundary) {}
/**
* Returns a reference to some halfedge of this face
*/
HalfedgeIter& halfedge() { return _halfedge; }
/**
* Returns some halfedge of this face
*/
HalfedgeCIter halfedge() const { return _halfedge; }
/**
* returns the number of edges (or equivalently, vertices) of this face
*/
Size degree() const {
Size d = 0; // degree
// walk around the face
HalfedgeIter h = _halfedge;
do {
d++; // increment the degree
h = h->next();
} while (h != _halfedge); // done walking around the face
return d;
}
/**
* returns the mean vertex position
*/
virtual Vector3D centroid() const;
/**
* Return a bounding box containing all the vertices of this face.
*/
virtual BBox bounds() const;
/**
* Gather metadata about this element.
*/
virtual Info getInfo();
/**
* Translate this face by a specified vector u.
*/
virtual void translate(double dx, double dy, const Matrix4x4& modelViewProj);
/**
* Return orthogonal axes, where the third (Z) direction is parallel
* to the normal of the face.
*/
virtual void getAxes(vector<Vector3D>& axes) const;
/**
* check if this face represents a boundary loop
* \returns true if and only if this face represents a boundary loop, false
* otherwise
*/
bool isBoundary() const { return _isBoundary; }
/**
* Get a unit face normal (computed via the area vector).
* \returns a unit face normal (computed via the area vector).
*/
Vector3D normal() const;
/* For subdivision, we need to assign each vertex, edge, and face
* of the original mesh a unique index that will become the index
* of some vertex in the new (subdivided) mesh.
*/
Index index;
/**
* For subdivision, this will be the position for the face center
*/
Vector3D newPosition;
Matrix4x4 quadric;
protected:
HalfedgeIter _halfedge; ///< one of the halfedges of this face
bool _isBoundary; ///< boundary flag
};
/**
* A Vertex encodes one of the mesh vertices
*/
class Vertex : public HalfedgeElement {
public:
/**
* returns some halfedge rooted at this vertex (reference)
*/
HalfedgeIter& halfedge() { return _halfedge; }
/**
* returns some halfedge rooted at this vertex
*/
HalfedgeCIter halfedge() const { return _halfedge; }
Vector3D position; ///< vertex position
/**
* For linear blend skinning, this will be the original vertex position
* without any transformations applied.
*/
Vector3D bindPosition;
/**
* For subdivision, this will be the updated position of the vertex
*/
Vector3D newPosition;
/* For subdivision, we need to assign each vertex, edge, and face
* of the original mesh a unique index that will become the index
* of some vertex in the new (subdivided) mesh.
*/
Index index;
/**
* For Loop subdivision, this flag should be true if and only if this
* vertex is a new vertex created by subdivision (i.e., if it corresponds
* to a vertex of the original mesh)
*/
bool isNew;
/**
* Translate this vertex by a specified vector u.
*/
virtual void translate(double dx, double dy, const Matrix4x4& modelViewProj);
/**
* Return a bounding box containing all the faces incident on this vertex.
*/
virtual BBox bounds() const;
/**
* Gather metadata about this element.
*/
virtual Info getInfo();
/**
* Get all vertices that are at most depth away from this vertex, storing in
* seen.
*/
void getNeighborhood(map<HalfedgeIter, double>& seen, int depth = 1);
/**
* Do a gaussian blur on the offsets of neighbors of the vertex.
*/
void smoothNeighborhood(double diff, map<HalfedgeIter, double>& seen,
int depth = 1);
/**
* Return principal axes, where the third (Z) direction is parallel
* to the normal of the vertex and the other two directions are
* arbitrary (but orthogonal).
*/
virtual void getAxes(vector<Vector3D>& axes) const;
/**
* Just returns the vertex position itself (which is the center of
* mass of the vertex!)
*/
virtual Vector3D centroid() const;
/**
* Computes the average of the neighboring vertex positions.
*/
Vector3D neighborhoodCentroid() const;
/**
* Compute vertex normal
* Compute the approximate unit normal at this vertex and store it in
* Vertex::normal. The normal is computed by taking the area-weighted
* average of the normals of neighboring triangles, then normalizing.
*/
Vector3D normal() const {
Vector3D N(0., 0., 0.);
Vector3D pi = position;
// Iterate over neighbors.
HalfedgeCIter h = halfedge();
if (isBoundary()) {
do {
Vector3D pj = h->next()->vertex()->position;
Vector3D pk = h->next()->next()->vertex()->position;
N += cross(pj - pi, pk - pi);
h = h->next()->twin();
} while (h != halfedge());
} else {
do {
Vector3D pj = h->next()->vertex()->position;
Vector3D pk = h->next()->next()->vertex()->position;
N += cross(pj - pi, pk - pi);
h = h->twin()->next();
} while (h != halfedge());
}
N.normalize();
return N;
}
// TODO : add texcoord support
// Complex texcoord; ///< vertex texture coordinate
float offset;
float velocity;
float laplacian() const;
/**
* Check if if this vertex is on the boundary of the surface
* \return true if and only if this vertex is on the boundary
* of the surface, false otherwise
*/
bool isBoundary() const {
// iterate over the halfedges incident on this vertex
HalfedgeIter h = _halfedge;
do {
// check if the current halfedge is on the boundary
if (h->isBoundary()) {
return true;
}
// move to the next halfedge around the vertex
h = h->twin()->next();
} while (h != _halfedge); // done iterating over halfedges
return false;
}
/**
* returns the number of edges (or equivalently, polygons) touching this
* vertex
*/
Size degree() const {
Size d = 0; // degree
// iterate over halfedges incident on this vertex
HalfedgeIter h = _halfedge;
do {
// don't count boundary loops
if (!h->face()->isBoundary()) {
d++; // increment degree
}
// move to the next halfedge around the vertex
h = h->twin()->next();
} while (h != _halfedge); // done iterating over halfedges
return d;
}
Matrix4x4 quadric;
protected:
/**
* one of the halfedges "rooted" or "based" at this vertex
*/
HalfedgeIter _halfedge;
};
class Edge : public HalfedgeElement {
public:
/**
* returns one of the two halfedges of this vertex (reference)
*/
HalfedgeIter& halfedge() { return _halfedge; }
/**
* returns one of the two halfedges of this vertex
*/
HalfedgeCIter halfedge() const { return _halfedge; }
bool isBoundary();
double length() const {
Vector3D p0 = halfedge()->vertex()->position;
Vector3D p1 = halfedge()->twin()->vertex()->position;
return (p1 - p0).norm();
}
/**
* Return average of edge endpoints.
*/
virtual Vector3D centroid() const;
/**
* Return a bounding box containing the two faces
* incident on this edge (or one, for boundary edges).
*/
virtual BBox bounds() const;
/**
* Gather metadata about this element.
*/
virtual Info getInfo();
/**
* Translate this edge by a specified vector u.
*/
virtual void translate(double dx, double dy, const Matrix4x4& modelViewProj);
/**
* Return principal axes, where the third (Z) direction is parallel
* to the average normal of the two incident faces (or one, for
* boundary edges), the first (X) direction is parallel to the edge,
* and the second (Y) direction is orthogonal to X and Z.
*/
virtual void getAxes(vector<Vector3D>& axes) const;
/**
* For subdivision, this will be the position for the edge midpoint
*/
Vector3D newPosition;
/* For subdivision, we need to assign each vertex, edge, and face
* of the original mesh a unique index that will become the index
* of some vertex in the new (subdivided) mesh.
*/
Index index;
/**
* For Loop subdivision, this flag should be true if and only if this edge
* is a new edge created by subdivision (i.e., if it cuts across a triangle
* in the original mesh)
*/
bool isNew;
EdgeRecord record;
protected:
/**
* One of the two halfedges associated with this edge
*/
HalfedgeIter _halfedge;
};
class HalfedgeMesh {
public:
/**
* Constructor.
*/
HalfedgeMesh() {}
/**
* The assignment operator does a "deep" copy of the halfedge mesh data
* structure; in other words, it makes new instances of each mesh element,
* and ensures that pointers in the copy point to the newly allocated elements
* rather than elements in the original mesh. This behavior is especially
* important for making assignments, since the mesh on the right-hand side of
* an assignment may be temporary (hence any pointers to elements in this mesh
* will become invalid as soon as it is released.)
*/
const HalfedgeMesh& operator=(const HalfedgeMesh& mesh);
/**
* The copy constructor likewise does a "deep" copy of the mesh (via the
* assignment operator).
*/
HalfedgeMesh(const HalfedgeMesh& mesh);
/**
* This method initializes the halfedge data structure from a raw list of
* polygons, where each input polygon is specified as a list of (0-based)
* vertex indices. The input must describe a manifold, oriented surface,
* where the orientation of a polygon is determined by the order of vertices
* in the list.
*/
void build(const vector<vector<Index>>& polygons,
const vector<Vector3D>& vertexPositions);
/**
* This method does the same thing as HalfedgeMesh::build(), but also
* clears any existing halfedge data beforehand.
*
* WARNING: Any pointers to existing mesh elements will be invalidated
* by this call.
*/
void rebuild(const vector<vector<Index>>& polygons,
const vector<Vector3D>& vertexPositions);
// These methods return the total number of elements of each type.
Size nHalfedges() const {
return halfedges.size();
} ///< get the number of halfedges
Size nVertices() const {
return vertices.size();
} ///< get the number of vertices
Size nEdges() const { return edges.size(); } ///< get the number of edges
Size nFaces() const { return faces.size(); } ///< get the number of faces
Size nBoundaries() const {
return boundaries.size();
} ///< get the number of boundaries
/*
* These methods return iterators to the beginning and end of the lists of
* each type of mesh element. For instance, to iterate over all vertices
* one can write
*
* for( VertexIter v = mesh.verticesBegin(); v != mesh.verticesEnd(); v++ )
* {
* // do something interesting with v
* }
*
* Note that we have both const and non-const versions of these functions;
*when
* a mesh is passed as a constant reference, we would instead write
*
* for( VertexCIter v = ... )
*
* rather than VertexIter.
*/
HalfedgeIter halfedgesBegin() { return halfedges.begin(); }
HalfedgeCIter halfedgesBegin() const { return halfedges.begin(); }
HalfedgeIter halfedgesEnd() { return halfedges.end(); }
HalfedgeCIter halfedgesEnd() const { return halfedges.end(); }
VertexIter verticesBegin() { return vertices.begin(); }
VertexCIter verticesBegin() const { return vertices.begin(); }
VertexIter verticesEnd() { return vertices.end(); }
VertexCIter verticesEnd() const { return vertices.end(); }
EdgeIter edgesBegin() { return edges.begin(); }
EdgeCIter edgesBegin() const { return edges.begin(); }
EdgeIter edgesEnd() { return edges.end(); }
EdgeCIter edgesEnd() const { return edges.end(); }
FaceIter facesBegin() { return faces.begin(); }
FaceCIter facesBegin() const { return faces.begin(); }
FaceIter facesEnd() { return faces.end(); }
FaceCIter facesEnd() const { return faces.end(); }
FaceIter boundariesBegin() { return boundaries.begin(); }
FaceCIter boundariesBegin() const { return boundaries.begin(); }
FaceIter boundariesEnd() { return boundaries.end(); }
FaceCIter boundariesEnd() const { return boundaries.end(); }
/*
* These methods allocate new mesh elements, returning a pointer (i.e.,
* iterator) to the new element.
* (These methods cannot have const versions, because they modify the mesh!)
*/
HalfedgeIter newHalfedge() {
return halfedges.insert(halfedges.end(), Halfedge());
}
VertexIter newVertex() { return vertices.insert(vertices.end(), Vertex()); }
EdgeIter newEdge() { return edges.insert(edges.end(), Edge()); }
FaceIter newFace() { return faces.insert(faces.end(), Face(false)); }
FaceIter newBoundary() {
return boundaries.insert(boundaries.end(), Face(true));
}
/*
* These methods delete a specified mesh element. One should think very, very
* carefully about
* exactly when and how to delete mesh elements, since other elements will
* often still point
* to the element that is being deleted, and accessing a deleted element will
* cause your
* program to crash (or worse!). A good exercise to think about is: suppose
* you're iterating
* over a linked list, and want to delete some of the elements as you go. How
* do you do this
* without causing any problems? For instance, if you delete the current
* element, will you be
* able to iterate to the next element? Etc.
*/
void deleteHalfedge(HalfedgeIter h) { halfedges.erase(h); }
void deleteVertex(VertexIter v) { vertices.erase(v); }
void deleteEdge(EdgeIter e) { edges.erase(e); }
void deleteFace(FaceIter f) { faces.erase(f); }
void deleteBoundary(FaceIter b) { boundaries.erase(b); }
/* For a triangle mesh, you will implement the following
* basic edge operations. (Can you generalize to other
* polygonal meshes?)
*/
/**
* Flip an edge, returning a pointer to the flipped edge
*/
EdgeIter flipEdge(EdgeIter e);
/**
* Merge the two faces containing the given edge, returning a
* pointer to the merged face.
*/
FaceIter mergeFaces(EdgeIter e);
/**
* Split an edge, returning a pointer to the inserted midpoint vertex; the
* halfedge of this vertex should refer to one of the edges in the original
* mesh
*/
VertexIter splitEdge(EdgeIter e);
/**
* Collapse an edge, returning a pointer to the collapsed vertex
*/
VertexIter collapseEdge(EdgeIter e);
/**
* Collapse a face, returning a pointer to the collapsed vertex
*/
VertexIter collapseFace(FaceIter f);
/**
* Merge all faces incident on a given vertex, returning a
* pointer to the merged face.
*/
FaceIter eraseVertex(VertexIter v);
/**
* Merge the two faces on either side of an edge, returning a
* pointer to the merged face.
*/
FaceIter eraseEdge(EdgeIter e);
/**
* Splits all non-triangular faces into triangles.
*/
void triangulate();
/**
* Split all faces into quads by inserting a vertex at their
* centroid (possibly using Catmull-Clark rules to compute
* new vertex positions).
*/
void subdivideQuad(bool useCatmullClark = false);
/**
* Compute new vertex positions for a mesh that splits each polygon
* into quads (by inserting a vertex at the face midpoint and each
* of the edge midpoints). The new vertex positions will be stored
* in the members Vertex::newPosition, Edge::newPosition, and
* Face::newPosition. The values of the positions are based on
* simple linear interpolation, e.g., the edge midpoints and face
* centroids.
*/
void computeLinearSubdivisionPositions();
/**
* Compute new vertex positions for a mesh that splits each polygon
* into quads (by inserting a vertex at the face midpoint and each
* of the edge midpoints). The new vertex positions will be stored
* in the members Vertex::newPosition, Edge::newPosition, and
* Face::newPosition. The values of the positions are based on
* the Catmull-Clark rules for subdivision.
*/
void computeCatmullClarkPositions();
/**
* Assign a unique integer index to each vertex, edge, and face in
* the mesh, starting at 0 and incrementing by 1 for each element.
* These indices will be used as the vertex indices for a mesh
* subdivided using Catmull-Clark (or linear) subdivision.
*/
void assignSubdivisionIndices();
/**
* Build a flat list containing all the quads in a Catmull-Clark
* (or linear) subdivision of this mesh. Each quad is specified
* by a vector of four indices (i,j,k,l), which come from the
* members Vertex::index, Edge::index, and Face::index. Note that
* the ordering of these indices is important because it determines
* the orientation of the new quads; it is also important to avoid
* "bowties." For instance, (l,k,j,i) has the opposite orientation
* of (i,j,k,l), and if (i,j,k,l) is a proper quad, then (i,k,j,l)
* will look like a bowtie.
*/
void buildSubdivisionFaceList(vector<vector<Index>>& subDFaces);
/**
* Build a flat list containing all the vertex positions for a
* Catmull-Clark (or linear) subdivison of this mesh. The order of
* vertex positions in this list must be identical to the order
* of indices assigned to Vertex::newPosition, Edge::newPosition,
* and Face::newPosition.
*/
void buildSubdivisionVertexList(vector<Vector3D>& subDVertices);
FaceIter bevelVertex(VertexIter v);
FaceIter bevelEdge(EdgeIter e);
FaceIter bevelFace(FaceIter f);
void bevelVertexComputeNewPositions(Vector3D originalVertexPosition,
vector<HalfedgeIter>& halfedges,
double tangentialInset);
void bevelFaceComputeNewPositions(vector<Vector3D>& originalVertexPositions,
vector<HalfedgeIter>& halfedges,
double normalShift, double tangentialInset);
void bevelEdgeComputeNewPositions(vector<Vector3D>& originalVertexPositions,
vector<HalfedgeIter>& halfedges,
double tangentialInset);
void splitPolygon(FaceIter f);
void splitPolygons(vector<FaceIter>& fcs);
protected:
/*
* Here's where the mesh elements are actually stored---this is the one
* and only place we have actual data (rather than pointers/iterators).
*/
list<Halfedge> halfedges;
list<Vertex> vertices;
list<Edge> edges;
list<Face> faces;
list<Face> boundaries;
}; // class HalfedgeMesh
inline Halfedge* HalfedgeElement::getHalfedge() {
return dynamic_cast<Halfedge*>(this);
}
inline Vertex* HalfedgeElement::getVertex() {
return dynamic_cast<Vertex*>(this);
}
inline Edge* HalfedgeElement::getEdge() { return dynamic_cast<Edge*>(this); }
inline Face* HalfedgeElement::getFace() { return dynamic_cast<Face*>(this); }
} // End of CS248 namespace.
#endif // CS248_HALFEDGEMESH_H
| [
"[email protected]"
] | |
0ea77326a2896962e09572c0caf4f2b7c203690b | a2107a8d6b34b9388befd29b5670789e50bbef78 | /qB.cpp | f46691ef3e74684975161a8250e83f887516c7c6 | [] | no_license | ms0598759/lab1 | b0cb3404e91b003d7f2e266d68e45d397f94319e | 05d6191fe7131c2018378beb4b933709f81f1cf9 | refs/heads/master | 2016-09-05T15:59:52.765574 | 2015-03-16T16:17:34 | 2015-03-16T16:17:34 | 32,226,178 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 359 | cpp | #include <iostream>
#include <cstdlib>
#include "qB.h"
qB::qB(int qBB){
n = qBB;
while(1)
{
if(n==1)break;
int a = 0;
a = n%2;
if(a == 1)
n = 3*n + 1;
else
n = n/2;
cout << n <<endl;
}
}
| [
"F74006080@2015cpp.(none)"
] | F74006080@2015cpp.(none) |
7eaa410577019c3190110ba2294dc25d997c868e | e12b8b1f73c23697f776728979fcda882f215120 | /render-only-sample/roscompiler/roscompiler.cpp | ef7478192b0ec277809921b51aea8d4f5fdb22a1 | [
"MIT"
] | permissive | NathanAUS/graphics-driver-samples | 4de862810140276e8900c4e29bfb352917613bf4 | b5f24b6266865ded5a99b48ebb206ac9ca04c400 | refs/heads/master | 2021-01-21T20:01:40.279979 | 2015-10-28T00:19:41 | 2015-10-28T00:19:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,726 | cpp | #include "roscompiler.h"
void __stdcall InitInstructionInfo();
void __stdcall VC4_InitializeName();
void __stdcall InitializeShaderCompilerLibrary()
{
InitInstructionInfo();
#if VC4
VC4_InitializeName();
#endif //
}
RosCompiler* RosCompilerCreate(UINT *pCode,
UINT numInputSignatureEntries,
D3D11_1DDIARG_SIGNATURE_ENTRY *pInputSignatureEntries,
UINT numOutputSignatureEntries,
D3D11_1DDIARG_SIGNATURE_ENTRY *pOutputSignatureEntries,
UINT numPatchConstantSignatureEntries,
D3D11_1DDIARG_SIGNATURE_ENTRY *pPatchConstantSignatureEntries)
{
return new RosCompiler(pCode,
numInputSignatureEntries,
pInputSignatureEntries,
numOutputSignatureEntries,
pOutputSignatureEntries,
numPatchConstantSignatureEntries,
pPatchConstantSignatureEntries);
}
RosCompiler::RosCompiler(UINT *pCode,
UINT numInputSignatureEntries,
D3D11_1DDIARG_SIGNATURE_ENTRY *pInputSignatureEntries,
UINT numOutputSignatureEntries,
D3D11_1DDIARG_SIGNATURE_ENTRY *pOutputSignatureEntries,
UINT numPatchConstantSignatureEntries,
D3D11_1DDIARG_SIGNATURE_ENTRY *pPatchConstantSignatureEntries) :
m_pCode(pCode),
m_numInputSignatureEntries(numInputSignatureEntries),
m_pInputSignatureEntries(pInputSignatureEntries),
m_numOutputSignatureEntries(numOutputSignatureEntries),
m_pOutputSignatureEntries(pOutputSignatureEntries),
m_numPatchConstantSignatureEntries(numPatchConstantSignatureEntries),
m_pPatchConstantSignatureEntries(pPatchConstantSignatureEntries),
m_pHwCode(NULL),
m_HwCodeSize(0)
{
}
RosCompiler::~RosCompiler()
{
delete[] m_pHwCode;
}
BOOLEAN RosCompiler::Compile(UINT * puiShaderCodeSize)
{
assert(puiShaderCodeSize);
*puiShaderCodeSize = 0;
Disassemble_HLSL();
UINT versionToken = m_pCode[0];
UINT programType = (versionToken & D3D10_SB_TOKENIZED_PROGRAM_TYPE_MASK) >> D3D10_SB_TOKENIZED_PROGRAM_TYPE_SHIFT;
if (D3D10_SB_VERTEX_SHADER == programType)
{
// Implement vertex shader compiling
__debugbreak();
}
else if (D3D10_SB_PIXEL_SHADER == programType)
{
#if VC4
m_HwCodeSize = 9 * sizeof(VC4_QPU_INSTRUCTION);
m_pHwCode = new BYTE[m_HwCodeSize];
//
// TODO: Before shader compiler is online, use a hard-coded shader for testing
//
UINT * pShaderCode = (UINT *)m_pHwCode;
*pShaderCode++ = 0x958e0dbf;
*pShaderCode++ = 0xd1724823; // mov r0, vary; mov r3.8d, 1.0
*pShaderCode++ = 0x818e7176;
*pShaderCode++ = 0x40024821; // fadd r0, r0, r5; mov r1, vary
*pShaderCode++ = 0x818e7376;
*pShaderCode++ = 0x10024862; // fadd r1, r1, r5; mov r2, vary
*pShaderCode++ = 0x819e7540;
*pShaderCode++ = 0x114248a3; // fadd r2, r2, r5; mov r3.8a, r0
*pShaderCode++ = 0x809e7009;
*pShaderCode++ = 0x115049e3; // nop; mov r3.8b, r1
*pShaderCode++ = 0x809e7012;
*pShaderCode++ = 0x116049e3; // nop; mov r3.8c, r2
*pShaderCode++ = 0x159e76c0;
*pShaderCode++ = 0x30020ba7; // mov tlbc, r3; nop; thrend
*pShaderCode++ = 0x009e7000;
*pShaderCode++ = 0x100009e7; // nop; nop; nop
*pShaderCode++ = 0x009e7000;
*pShaderCode++ = 0x500009e7; // nop; nop; sbdone
Disassemble_HW();
*puiShaderCodeSize = PAGE_SIZE;
return TRUE;
#else
__debugbreak();
#endif
}
return FALSE;
}
BYTE * RosCompiler::GetShaderCode()
{
return m_pHwCode;
}
| [
"[email protected]"
] | |
3556a09888c00f5382e7543e91405dc08dac5e3f | 52556aa2db14dae209b37050bc1bbfabba50585c | /libs/log4cplus-1.2.0/src/fileappender.cxx | f953166105c404487b9daf07ba79d041874ad6d9 | [
"Apache-2.0",
"BSD-2-Clause"
] | permissive | tian780127/chilli | 94aa1c8574d6cd0decd811d53e178b87a51a838d | c44df21a4d3069e63c910c670d0afb75b76cc25b | refs/heads/master | 2021-08-24T05:55:47.276950 | 2017-12-08T08:59:48 | 2017-12-08T08:59:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 40,866 | cxx | // Module: Log4CPLUS
// File: fileappender.cxx
// Created: 6/2001
// Author: Tad E. Smith
//
//
// Copyright 2001-2015 Tad E. Smith
//
// 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 <log4cplus/fileappender.h>
#include <log4cplus/layout.h>
#include <log4cplus/streams.h>
#include <log4cplus/helpers/loglog.h>
#include <log4cplus/helpers/stringhelper.h>
#include <log4cplus/helpers/timehelper.h>
#include <log4cplus/helpers/property.h>
#include <log4cplus/helpers/fileinfo.h>
#include <log4cplus/spi/loggingevent.h>
#include <log4cplus/spi/factory.h>
#include <log4cplus/thread/syncprims-pub-impl.h>
#include <log4cplus/internal/internal.h>
#include <log4cplus/internal/env.h>
#include <algorithm>
#include <sstream>
#include <cstdio>
#include <cmath>
#include <stdexcept>
#include <cmath> // std::fmod
#if defined (__BORLANDC__)
// For _wrename() and _wremove() on Windows.
# include <stdio.h>
#endif
#include <cerrno>
#ifdef LOG4CPLUS_HAVE_ERRNO_H
#include <errno.h>
#endif
namespace log4cplus
{
using helpers::Properties;
using helpers::Time;
const long DEFAULT_ROLLING_LOG_SIZE = 10 * 1024 * 1024L;
const long MINIMUM_ROLLING_LOG_SIZE = 200*1024L;
///////////////////////////////////////////////////////////////////////////////
// File LOCAL definitions
///////////////////////////////////////////////////////////////////////////////
namespace
{
long const LOG4CPLUS_FILE_NOT_FOUND = ENOENT;
static
long
file_rename (tstring const & src, tstring const & target)
{
#if defined (UNICODE) && defined (_WIN32)
if (_wrename (src.c_str (), target.c_str ()) == 0)
return 0;
else
return errno;
#else
if (std::rename (LOG4CPLUS_TSTRING_TO_STRING (src).c_str (),
LOG4CPLUS_TSTRING_TO_STRING (target).c_str ()) == 0)
return 0;
else
return errno;
#endif
}
static
long
file_remove (tstring const & src)
{
#if defined (UNICODE) && defined (_WIN32)
if (_wremove (src.c_str ()) == 0)
return 0;
else
return errno;
#else
if (std::remove (LOG4CPLUS_TSTRING_TO_STRING (src).c_str ()) == 0)
return 0;
else
return errno;
#endif
}
static
void
loglog_renaming_result (helpers::LogLog & loglog, tstring const & src,
tstring const & target, long ret)
{
if (ret == 0)
{
loglog.debug (
LOG4CPLUS_TEXT("Renamed file ")
+ src
+ LOG4CPLUS_TEXT(" to ")
+ target);
}
else if (ret != LOG4CPLUS_FILE_NOT_FOUND)
{
tostringstream oss;
oss << LOG4CPLUS_TEXT("Failed to rename file from ")
<< src
<< LOG4CPLUS_TEXT(" to ")
<< target
<< LOG4CPLUS_TEXT("; error ")
<< ret;
loglog.error (oss.str ());
}
}
static
void
loglog_opening_result (helpers::LogLog & loglog,
log4cplus::tostream const & os, tstring const & filename)
{
if (! os)
{
loglog.error (
LOG4CPLUS_TEXT("Failed to open file ")
+ filename);
}
}
static
void
rolloverFiles(const tstring& filename, unsigned int maxBackupIndex)
{
helpers::LogLog * loglog = helpers::LogLog::getLogLog();
// Delete the oldest file
tostringstream buffer;
buffer << filename << LOG4CPLUS_TEXT(".") << maxBackupIndex;
long ret = file_remove (buffer.str ());
tostringstream source_oss;
tostringstream target_oss;
// Map {(maxBackupIndex - 1), ..., 2, 1} to {maxBackupIndex, ..., 3, 2}
for (int i = maxBackupIndex - 1; i >= 1; --i)
{
source_oss.str(LOG4CPLUS_TEXT(""));
target_oss.str(LOG4CPLUS_TEXT(""));
source_oss << filename << LOG4CPLUS_TEXT(".") << i;
target_oss << filename << LOG4CPLUS_TEXT(".") << (i+1);
tstring const source (source_oss.str ());
tstring const target (target_oss.str ());
#if defined (_WIN32)
// Try to remove the target first. It seems it is not
// possible to rename over existing file.
ret = file_remove (target);
#endif
ret = file_rename (source, target);
loglog_renaming_result (*loglog, source, target, ret);
}
} // end rolloverFiles()
static
std::locale
get_locale_by_name (tstring const & locale_name)
{try
{
spi::LocaleFactoryRegistry & reg = spi::getLocaleFactoryRegistry ();
spi::LocaleFactory * fact = reg.get (locale_name);
if (fact)
{
helpers::Properties props;
props.setProperty (LOG4CPLUS_TEXT ("Locale"), locale_name);
return fact->createObject (props);
}
else
return std::locale (LOG4CPLUS_TSTRING_TO_STRING (locale_name).c_str ());
}
catch (std::runtime_error const &)
{
helpers::getLogLog ().error (
LOG4CPLUS_TEXT ("Failed to create locale " + locale_name));
return std::locale ();
}}
} // namespace
///////////////////////////////////////////////////////////////////////////////
// FileAppenderBase ctors and dtor
///////////////////////////////////////////////////////////////////////////////
FileAppenderBase::FileAppenderBase(const tstring& filename_,
std::ios_base::openmode mode_, bool immediateFlush_, bool createDirs_)
: immediateFlush(immediateFlush_)
, createDirs (createDirs_)
, reopenDelay(1)
, bufferSize (0)
, buffer (0)
, filename(filename_)
, localeName (LOG4CPLUS_TEXT ("DEFAULT"))
, fileOpenMode(mode_)
{ }
FileAppenderBase::FileAppenderBase(const Properties& props,
std::ios_base::openmode mode_)
: Appender(props)
, immediateFlush(true)
, createDirs (false)
, reopenDelay(1)
, bufferSize (0)
, buffer (0)
{
filename = props.getProperty(LOG4CPLUS_TEXT("File"));
lockFileName = props.getProperty (LOG4CPLUS_TEXT ("LockFile"));
localeName = props.getProperty (LOG4CPLUS_TEXT ("Locale"), LOG4CPLUS_TEXT ("DEFAULT"));
props.getBool (immediateFlush, LOG4CPLUS_TEXT("ImmediateFlush"));
props.getBool (createDirs, LOG4CPLUS_TEXT("CreateDirs"));
props.getInt (reopenDelay, LOG4CPLUS_TEXT("ReopenDelay"));
props.getULong (bufferSize, LOG4CPLUS_TEXT("BufferSize"));
bool app = (mode_ & (std::ios_base::app | std::ios_base::ate)) != 0;
props.getBool (app, LOG4CPLUS_TEXT("Append"));
bool binary = false;
props.getBool(binary, LOG4CPLUS_TEXT("Binary"));
fileOpenMode = app ? std::ios::app : std::ios::trunc;
if (binary){
fileOpenMode = fileOpenMode | std::ios::binary;
}
}
void
FileAppenderBase::init()
{
if (useLockFile && lockFileName.empty ())
{
if (filename.empty())
{
getErrorHandler()->error(LOG4CPLUS_TEXT
("UseLockFile is true but neither LockFile nor File are specified"));
return;
}
lockFileName = filename;
lockFileName += LOG4CPLUS_TEXT(".lock");
}
if (bufferSize != 0)
{
delete[] buffer;
buffer = new tchar[bufferSize];
out.rdbuf ()->pubsetbuf (buffer, bufferSize);
}
helpers::LockFileGuard guard;
if (useLockFile && ! lockFile.get ())
{
if (createDirs)
internal::make_dirs (lockFileName);
try
{
lockFile.reset (new helpers::LockFile (lockFileName));
guard.attach_and_lock (*lockFile);
}
catch (std::runtime_error const &)
{
// We do not need to do any logging here as the internals
// of LockFile already use LogLog to report the failure.
return;
}
}
open(fileOpenMode);
imbue (get_locale_by_name (localeName));
}
///////////////////////////////////////////////////////////////////////////////
// FileAppenderBase public methods
///////////////////////////////////////////////////////////////////////////////
void
FileAppenderBase::close()
{
thread::MutexGuard guard (access_mutex);
out.close();
delete[] buffer;
buffer = 0;
closed = true;
}
std::locale
FileAppenderBase::imbue(std::locale const& loc)
{
return out.imbue (loc);
}
std::locale
FileAppenderBase::getloc () const
{
return out.getloc ();
}
///////////////////////////////////////////////////////////////////////////////
// FileAppenderBase protected methods
///////////////////////////////////////////////////////////////////////////////
// This method does not need to be locked since it is called by
// doAppend() which performs the locking
void
FileAppenderBase::append(const spi::InternalLoggingEvent& event)
{
if(!out.good()) {
if(!reopen()) {
getErrorHandler()->error( LOG4CPLUS_TEXT("file is not open: ")
+ filename);
return;
}
// Resets the error handler to make it
// ready to handle a future append error.
else
getErrorHandler()->reset();
}
if (useLockFile)
out.seekp (0, std::ios_base::end);
layout->formatAndAppend(out, event);
if(immediateFlush || useLockFile)
out.flush();
}
void
FileAppenderBase::open(std::ios_base::openmode mode)
{
if (createDirs)
internal::make_dirs (filename);
out.open(LOG4CPLUS_FSTREAM_PREFERED_FILE_NAME(filename).c_str(), mode);
if(!out.good()) {
getErrorHandler()->error(LOG4CPLUS_TEXT("Unable to open file: ") + filename);
return;
}
helpers::getLogLog().debug(LOG4CPLUS_TEXT("Just opened file: ") + filename);
}
bool
FileAppenderBase::reopen()
{
// When append never failed and the file re-open attempt must
// be delayed, set the time when reopen should take place.
if (reopen_time == log4cplus::helpers::Time () && reopenDelay != 0)
reopen_time = log4cplus::helpers::Time::gettimeofday()
+ log4cplus::helpers::Time(reopenDelay);
else
{
// Otherwise, check for end of the delay (or absence of delay)
// to re-open the file.
if (reopen_time <= log4cplus::helpers::Time::gettimeofday()
|| reopenDelay == 0)
{
// Close the current file
out.close();
// reset flags since the C++ standard specified that all
// the flags should remain unchanged on a close
out.clear();
// Re-open the file.
open(std::ios_base::out | std::ios_base::ate | std::ios_base::app);
// Reset last fail time.
reopen_time = log4cplus::helpers::Time ();
// Succeed if no errors are found.
if(out.good())
return true;
}
}
return false;
}
///////////////////////////////////////////////////////////////////////////////
// FileAppender ctors and dtor
///////////////////////////////////////////////////////////////////////////////
FileAppender::FileAppender(
const tstring& filename_,
std::ios_base::openmode mode_,
bool immediateFlush_,
bool createDirs_)
: FileAppenderBase(filename_, mode_, immediateFlush_, createDirs_)
{
init();
}
FileAppender::FileAppender(
const Properties& props,
std::ios_base::openmode mode_)
: FileAppenderBase(props, mode_)
{
init();
}
FileAppender::~FileAppender()
{
destructorImpl();
}
///////////////////////////////////////////////////////////////////////////////
// FileAppender protected methods
///////////////////////////////////////////////////////////////////////////////
void
FileAppender::init()
{
if (filename.empty())
{
getErrorHandler()->error( LOG4CPLUS_TEXT("Invalid filename") );
return;
}
FileAppenderBase::init();
}
///////////////////////////////////////////////////////////////////////////////
// RollingFileAppender ctors and dtor
///////////////////////////////////////////////////////////////////////////////
RollingFileAppender::RollingFileAppender(const tstring& filename_,
long maxFileSize_, int maxBackupIndex_, bool immediateFlush_,
bool createDirs_)
: FileAppender(filename_, std::ios_base::app, immediateFlush_, createDirs_)
{
init(maxFileSize_, maxBackupIndex_);
}
RollingFileAppender::RollingFileAppender(const Properties& properties)
: FileAppender(properties, std::ios_base::app)
{
long tmpMaxFileSize = DEFAULT_ROLLING_LOG_SIZE;
int tmpMaxBackupIndex = 1;
tstring tmp (
helpers::toUpper (
properties.getProperty (LOG4CPLUS_TEXT ("MaxFileSize"))));
if (! tmp.empty ())
{
tmpMaxFileSize = std::atoi(LOG4CPLUS_TSTRING_TO_STRING(tmp).c_str());
if (tmpMaxFileSize != 0)
{
tstring::size_type const len = tmp.length();
if (len > 2
&& tmp.compare (len - 2, 2, LOG4CPLUS_TEXT("MB")) == 0)
tmpMaxFileSize *= (1024 * 1024); // convert to megabytes
else if (len > 2
&& tmp.compare (len - 2, 2, LOG4CPLUS_TEXT("KB")) == 0)
tmpMaxFileSize *= 1024; // convert to kilobytes
}
}
properties.getInt (tmpMaxBackupIndex, LOG4CPLUS_TEXT("MaxBackupIndex"));
init(tmpMaxFileSize, tmpMaxBackupIndex);
}
void
RollingFileAppender::init(long maxFileSize_, int maxBackupIndex_)
{
if (maxFileSize_ < MINIMUM_ROLLING_LOG_SIZE)
{
tostringstream oss;
oss << LOG4CPLUS_TEXT ("RollingFileAppender: MaxFileSize property")
LOG4CPLUS_TEXT (" value is too small. Resetting to ")
<< MINIMUM_ROLLING_LOG_SIZE << ".";
helpers::getLogLog ().warn (oss.str ());
maxFileSize_ = MINIMUM_ROLLING_LOG_SIZE;
}
maxFileSize = maxFileSize_;
maxBackupIndex = (std::max)(maxBackupIndex_, 1);
}
RollingFileAppender::~RollingFileAppender()
{
destructorImpl();
}
///////////////////////////////////////////////////////////////////////////////
// RollingFileAppender protected methods
///////////////////////////////////////////////////////////////////////////////
// This method does not need to be locked since it is called by
// doAppend() which performs the locking
void
RollingFileAppender::append(const spi::InternalLoggingEvent& event)
{
// Seek to the end of log file so that tellp() below returns the
// right size.
if (useLockFile)
out.seekp (0, std::ios_base::end);
// Rotate log file if needed before appending to it.
if (out.tellp() > maxFileSize)
rollover(true);
FileAppender::append(event);
// Rotate log file if needed after appending to it.
if (out.tellp() > maxFileSize)
rollover(true);
}
void
RollingFileAppender::rollover(bool alreadyLocked)
{
helpers::LogLog & loglog = helpers::getLogLog();
helpers::LockFileGuard guard;
// Close the current file
out.close();
// Reset flags since the C++ standard specified that all the flags
// should remain unchanged on a close.
out.clear();
if (useLockFile)
{
if (! alreadyLocked)
{
try
{
guard.attach_and_lock (*lockFile);
}
catch (std::runtime_error const &)
{
return;
}
}
// Recheck the condition as there is a window where another
// process can rollover the file before us.
helpers::FileInfo fi;
if (getFileInfo (&fi, filename) == -1
|| fi.size < maxFileSize)
{
// The file has already been rolled by another
// process. Just reopen with the new file.
// Open it up again.
open (std::ios_base::out | std::ios_base::ate | std::ios_base::app);
loglog_opening_result (loglog, out, filename);
return;
}
}
// If maxBackups <= 0, then there is no file renaming to be done.
if (maxBackupIndex > 0)
{
rolloverFiles(filename, maxBackupIndex);
// Rename fileName to fileName.1
tstring target = filename + LOG4CPLUS_TEXT(".1");
long ret;
#if defined (_WIN32)
// Try to remove the target first. It seems it is not
// possible to rename over existing file.
ret = file_remove (target);
#endif
loglog.debug (
LOG4CPLUS_TEXT("Renaming file ")
+ filename
+ LOG4CPLUS_TEXT(" to ")
+ target);
ret = file_rename (filename, target);
loglog_renaming_result (loglog, filename, target, ret);
}
else
{
loglog.debug (filename + LOG4CPLUS_TEXT(" has no backups specified"));
}
// Open it up again in truncation mode
open(std::ios::out | std::ios::trunc);
loglog_opening_result (loglog, out, filename);
}
///////////////////////////////////////////////////////////////////////////////
// DailyRollingFileAppender ctors and dtor
///////////////////////////////////////////////////////////////////////////////
DailyRollingFileAppender::DailyRollingFileAppender(
const tstring& filename_, std::ios_base::openmode mode,
DailyRollingFileSchedule schedule_,
bool immediateFlush_, long maxFileSize_, int maxBackupIndex_, bool createDirs_,
bool rollOnClose_, const tstring& datePattern_)
: FileAppenderBase(filename_, mode, immediateFlush_, createDirs_)
, maxFileSize(maxFileSize_), maxBackupIndex(maxBackupIndex_), rollOnClose(rollOnClose_)
, datePattern(datePattern_)
{
init(schedule_);
}
DailyRollingFileAppender::DailyRollingFileAppender(
const Properties& properties)
: FileAppenderBase(properties, std::ios_base::app)
, maxFileSize(10 * 1024 * 1024) //10MB
, maxBackupIndex(1024)
, rollOnClose(true)
{
DailyRollingFileSchedule theSchedule = DAILY;
tstring scheduleStr (helpers::toUpper (
properties.getProperty (LOG4CPLUS_TEXT ("Schedule"))));
if(scheduleStr == LOG4CPLUS_TEXT("MONTHLY"))
theSchedule = MONTHLY;
else if(scheduleStr == LOG4CPLUS_TEXT("WEEKLY"))
theSchedule = WEEKLY;
else if(scheduleStr == LOG4CPLUS_TEXT("DAILY"))
theSchedule = DAILY;
else if(scheduleStr == LOG4CPLUS_TEXT("TWICE_DAILY"))
theSchedule = TWICE_DAILY;
else if(scheduleStr == LOG4CPLUS_TEXT("HOURLY"))
theSchedule = HOURLY;
else if(scheduleStr == LOG4CPLUS_TEXT("MINUTELY"))
theSchedule = MINUTELY;
else {
helpers::getLogLog().warn(
LOG4CPLUS_TEXT("DailyRollingFileAppender::ctor()")
LOG4CPLUS_TEXT("- \"Schedule\" not valid: ")
+ properties.getProperty(LOG4CPLUS_TEXT("Schedule")));
theSchedule = DAILY;
}
long tmpMaxFileSize = DEFAULT_ROLLING_LOG_SIZE;
tstring tmp(
helpers::toUpper(
properties.getProperty(LOG4CPLUS_TEXT("MaxFileSize"))));
if (!tmp.empty())
{
tmpMaxFileSize = std::atoi(LOG4CPLUS_TSTRING_TO_STRING(tmp).c_str());
if (tmpMaxFileSize != 0)
{
tstring::size_type const len = tmp.length();
if (len > 2
&& tmp.compare(len - 2, 2, LOG4CPLUS_TEXT("MB")) == 0)
tmpMaxFileSize *= (1024 * 1024); // convert to megabytes
else if (len > 2
&& tmp.compare(len - 2, 2, LOG4CPLUS_TEXT("KB")) == 0)
tmpMaxFileSize *= 1024; // convert to kilobytes
}
}
maxFileSize = std::max(tmpMaxFileSize, MINIMUM_ROLLING_LOG_SIZE);
properties.getBool (rollOnClose, LOG4CPLUS_TEXT("RollOnClose"));
properties.getString (datePattern, LOG4CPLUS_TEXT("DatePattern"));
properties.getInt (maxBackupIndex, LOG4CPLUS_TEXT("MaxBackupIndex"));
maxBackupIndex = std::max(maxBackupIndex, 1);
init(theSchedule);
}
namespace
{
static
Time
round_time (Time const & t, time_t seconds)
{
tm gmt_time;
tm local_time;
t.localtime(&local_time);
t.gmtime(&gmt_time);
return Time(
t.getTime()
- std::fmod((long double)t.getTime() + (local_time.tm_hour - gmt_time.tm_hour) * 3600, (long double)seconds));
}
static
Time
round_time_and_add (Time const & t, Time const & seconds)
{
return round_time (t, seconds.sec ()) + seconds;
}
} // namespace
void
DailyRollingFileAppender::init(DailyRollingFileSchedule sch)
{
this->schedule = sch;
Time now = Time::gettimeofday();
now.usec(0);
struct tm time;
now.localtime(&time);
time.tm_sec = 0;
switch (schedule)
{
case MONTHLY:
time.tm_mday = 1;
time.tm_hour = 0;
time.tm_min = 0;
break;
case WEEKLY:
time.tm_mday -= (time.tm_wday % 7);
time.tm_hour = 0;
time.tm_min = 0;
break;
case DAILY:
time.tm_hour = 0;
time.tm_min = 0;
break;
case TWICE_DAILY:
if(time.tm_hour >= 12) {
time.tm_hour = 12;
}
else {
time.tm_hour = 0;
}
time.tm_min = 0;
break;
case HOURLY:
time.tm_min = 0;
break;
case MINUTELY:
break;
};
now.setTime(&time);
scheduledFilename = getFilename(now);
nextRolloverTime = calculateNextRolloverTime(now);
FileAppenderBase::init();
}
DailyRollingFileAppender::~DailyRollingFileAppender()
{
destructorImpl();
}
///////////////////////////////////////////////////////////////////////////////
// DailyRollingFileAppender public methods
///////////////////////////////////////////////////////////////////////////////
void
DailyRollingFileAppender::close()
{
if (rollOnClose)
rollover();
FileAppenderBase::close();
}
///////////////////////////////////////////////////////////////////////////////
// DailyRollingFileAppender protected methods
///////////////////////////////////////////////////////////////////////////////
// This method does not need to be locked since it is called by
// doAppend() which performs the locking
void
DailyRollingFileAppender::append(const spi::InternalLoggingEvent& event)
{
if (event.getTimestamp() >= nextRolloverTime || out.tellp() > maxFileSize) {
rollover(true);
}
FileAppenderBase::append(event);
}
void
DailyRollingFileAppender::rollover(bool alreadyLocked)
{
helpers::LockFileGuard guard;
if (useLockFile && ! alreadyLocked)
{
try
{
guard.attach_and_lock (*lockFile);
}
catch (std::runtime_error const &)
{
return;
}
}
// Close the current file
out.close();
// reset flags since the C++ standard specified that all the flags
// should remain unchanged on a close
out.clear();
// If we've already rolled over this time period, we'll make sure that we
// don't overwrite any of those previous files.
// E.g. if "log.2009-11-07.1" already exists we rename it
// to "log.2009-11-07.2", etc.
rolloverFiles(scheduledFilename, maxBackupIndex);
// Do not overwriet the newest file either, e.g. if "log.2009-11-07"
// already exists rename it to "log.2009-11-07.1"
tostringstream backup_target_oss;
backup_target_oss << scheduledFilename << LOG4CPLUS_TEXT(".") << 1;
tstring backupTarget = backup_target_oss.str();
helpers::LogLog & loglog = helpers::getLogLog();
long ret;
#if defined (_WIN32)
// Try to remove the target first. It seems it is not
// possible to rename over existing file, e.g. "log.2009-11-07.1".
ret = file_remove (backupTarget);
#endif
// Rename e.g. "log.2009-11-07" to "log.2009-11-07.1".
ret = file_rename (scheduledFilename, backupTarget);
loglog_renaming_result (loglog, scheduledFilename, backupTarget, ret);
#if defined (_WIN32)
// Try to remove the target first. It seems it is not
// possible to rename over existing file, e.g. "log.2009-11-07".
ret = file_remove (scheduledFilename);
#endif
// Rename filename to scheduledFilename,
// e.g. rename "log" to "log.2009-11-07".
loglog.debug(
LOG4CPLUS_TEXT("Renaming file ")
+ filename
+ LOG4CPLUS_TEXT(" to ")
+ scheduledFilename);
ret = file_rename (filename, scheduledFilename);
loglog_renaming_result (loglog, filename, scheduledFilename, ret);
// Open a new file, e.g. "log".
open(fileOpenMode);
loglog_opening_result (loglog, out, filename);
// Calculate the next rollover time
log4cplus::helpers::Time now = Time::gettimeofday();
if (now >= nextRolloverTime)
{
scheduledFilename = getFilename(now);
nextRolloverTime = calculateNextRolloverTime(now);
}
}
int
DailyRollingFileAppender::getRolloverPeriodDuration() const
{
switch (schedule)
{
case MONTHLY:
return 31 * 24 * 3600;
case WEEKLY:
return 7 * 24 * 3600;
case DAILY:
return 24 * 3600;
case HOURLY:
return 3600;
case MINUTELY:
return 60;
default:
helpers::getLogLog().error(
LOG4CPLUS_TEXT("DailyRollingFileAppender::getRolloverPeriodDuration()-")
LOG4CPLUS_TEXT(" invalid schedule value"));
// Fall through.
return 3600;
}
}
Time
DailyRollingFileAppender::calculateNextRolloverTime(const Time& t) const
{
Time result;
struct tm next;
switch (schedule)
{
case MONTHLY:
t.localtime(&next);
next.tm_mon += 1;
next.tm_mday = 0; // Round up to next month start
next.tm_hour = 0;
next.tm_min = 0;
next.tm_sec = 0;
next.tm_isdst = 0;
if (result.setTime(&next) == -1) {
result = t + Time(getRolloverPeriodDuration());
}
break;
case WEEKLY:
t.localtime(&next);
next.tm_mday += (7 - next.tm_wday + 1); // Round up to next week
next.tm_hour = 0; // Round up to next week start
next.tm_min = 0;
next.tm_sec = 0;
next.tm_isdst = 0;
if (result.setTime(&next) == -1) {
result = t + Time(getRolloverPeriodDuration());
}
break;
case DAILY:
case HOURLY:
case MINUTELY:
{
int periodDuration = getRolloverPeriodDuration();
result = round_time_and_add(t, Time(periodDuration));
break;
}
default:
helpers::getLogLog().error(
LOG4CPLUS_TEXT("DailyRollingFileAppender::calculateNextRolloverTime()-")
LOG4CPLUS_TEXT(" invalid schedule value"));
};
result.usec(0);
return result;
}
tstring
DailyRollingFileAppender::getFilename(const Time& t) const
{
tchar const * pattern = 0;
if (datePattern.empty())
{
switch (schedule)
{
case MONTHLY:
pattern = LOG4CPLUS_TEXT("%Y-%m");
break;
case WEEKLY:
pattern = LOG4CPLUS_TEXT("%Y-%W");
break;
default:
helpers::getLogLog ().error (
LOG4CPLUS_TEXT ("DailyRollingFileAppender::getFilename()-")
LOG4CPLUS_TEXT (" invalid schedule value"));
// Fall through.
case DAILY:
pattern = LOG4CPLUS_TEXT("%Y-%m-%d");
break;
case TWICE_DAILY:
pattern = LOG4CPLUS_TEXT("%Y-%m-%d-%p");
break;
case HOURLY:
pattern = LOG4CPLUS_TEXT("%Y-%m-%d-%H");
break;
case MINUTELY:
pattern = LOG4CPLUS_TEXT("%Y-%m-%d-%H-%M");
break;
};
}
else
pattern = datePattern.c_str();
tstring result (filename);
result += LOG4CPLUS_TEXT(".");
result += t.getFormattedTime(pattern, false);
return result;
}
///////////////////////////////////////////////////////////////////////////////
// TimeBasedRollingFileAppender utility functions
///////////////////////////////////////////////////////////////////////////////
static tstring
preprocessDateTimePattern(const tstring& pattern, DailyRollingFileSchedule& schedule)
{
// Example: "yyyy-MM-dd HH:mm:ss,aux"
// Patterns from java.text.SimpleDateFormat not implemented here: Y, F, k, K, S, X
tostringstream result;
bool auxilary = (pattern.find(LOG4CPLUS_TEXT(",aux")) == pattern.length()-4);
bool has_week = false, has_day = false, has_hour = false, has_minute = false;
for (size_t i = 0; i < pattern.length(); )
{
tchar c = pattern[i];
size_t end_pos = pattern.find_first_not_of(c, i);
int len = (end_pos == tstring::npos ? pattern.length() : end_pos) - i;
switch (c)
{
case LOG4CPLUS_TEXT('y'): // Year number
if (len == 2)
result << LOG4CPLUS_TEXT("%y");
else if (len == 4)
result << LOG4CPLUS_TEXT("%Y");
break;
case LOG4CPLUS_TEXT('Y'): // Week year
if (len == 2)
result << LOG4CPLUS_TEXT("%g");
else if (len == 4)
result << LOG4CPLUS_TEXT("%G");
break;
case LOG4CPLUS_TEXT('M'): // Month in year
if (len == 2)
result << LOG4CPLUS_TEXT("%m");
else if (len == 3)
result << LOG4CPLUS_TEXT("%b");
else if (len > 3)
result << LOG4CPLUS_TEXT("%B");
break;
case LOG4CPLUS_TEXT('w'): // Week in year
if (len == 2) {
result << LOG4CPLUS_TEXT("%W");
has_week = true;
}
break;
case LOG4CPLUS_TEXT('D'): // Day in year
if (len == 3) {
result << LOG4CPLUS_TEXT("%j");
has_day = true;
}
break;
case LOG4CPLUS_TEXT('d'): // Day in month
if (len == 2) {
result << LOG4CPLUS_TEXT("%d");
has_day = true;
}
break;
case LOG4CPLUS_TEXT('E'): // Day name in week
if (len == 3) {
result << LOG4CPLUS_TEXT("%a");
has_day = true;
} else if (len > 3) {
result << LOG4CPLUS_TEXT("%A");
has_day = true;
}
break;
case LOG4CPLUS_TEXT('u'): // Day number of week
if (len == 1) {
result << LOG4CPLUS_TEXT("%u");
has_day = true;
}
break;
case LOG4CPLUS_TEXT('a'): // AM/PM marker
if (len == 2)
result << LOG4CPLUS_TEXT("%p");
break;
case LOG4CPLUS_TEXT('H'): // Hour in day
if (len == 2) {
result << LOG4CPLUS_TEXT("%H");
has_hour = true;
}
break;
case LOG4CPLUS_TEXT('h'): // Hour in am/pm (01-12)
if (len == 2) {
result << LOG4CPLUS_TEXT("%I");
has_hour = true;
}
break;
case LOG4CPLUS_TEXT('m'): // Minute in hour
if (len == 2) {
result << LOG4CPLUS_TEXT("%M");
has_minute = true;
}
break;
case LOG4CPLUS_TEXT('s'): // Second in minute
if (len == 2)
result << LOG4CPLUS_TEXT("%S");
break;
case LOG4CPLUS_TEXT('z'): // Time zone name
if (len == 1)
result << LOG4CPLUS_TEXT("%Z");
break;
case LOG4CPLUS_TEXT('Z'): // Time zone offset
if (len == 1)
result << LOG4CPLUS_TEXT("%z");
break;
default:
result << c;
}
i += len;
}
if (!auxilary)
{
if (has_minute)
schedule = MINUTELY;
else if (has_hour)
schedule = HOURLY;
else if (has_day)
schedule = DAILY;
else if (has_week)
schedule = WEEKLY;
else
schedule = MONTHLY;
}
return result.str();
}
static tstring
preprocessFilenamePattern(const tstring& pattern, DailyRollingFileSchedule& schedule)
{
tostringstream result;
for (size_t i = 0; i < pattern.length(); )
{
tchar c = pattern[i];
if (c == LOG4CPLUS_TEXT('%') &&
i < pattern.length()-1 &&
pattern[i+1] == LOG4CPLUS_TEXT('d'))
{
if (i < pattern.length()-2 && pattern[i+2] == LOG4CPLUS_TEXT('{'))
{
size_t closingBracketPos = pattern.find(LOG4CPLUS_TEXT("}"), i+2);
if (closingBracketPos == std::string::npos)
{
break; // Malformed conversion specifier
}
else
{
result << preprocessDateTimePattern(pattern.substr(i+3, closingBracketPos-(i+3)), schedule);
i = closingBracketPos + 1;
}
}
else
{
// Default conversion specifier
result << preprocessDateTimePattern(LOG4CPLUS_TEXT("yyyy-MM-dd"), schedule);
i += 2;
}
}
else
{
result << c;
i += 1;
}
}
return result.str();
}
///////////////////////////////////////////////////////////////////////////////
// TimeBasedRollingFileAppender ctors and dtor
///////////////////////////////////////////////////////////////////////////////
TimeBasedRollingFileAppender::TimeBasedRollingFileAppender(
const tstring& filename_,
DailyRollingFileSchedule schedule_,
const tstring& filenamePattern_,
int maxHistory_,
std::ios_base::openmode mode_,
bool cleanHistoryOnStart_,
bool immediateFlush_,
bool createDirs_,
bool rollOnClose_)
: FileAppenderBase(filename_, mode_, immediateFlush_, createDirs_)
, filenamePattern(filenamePattern_)
, schedule(schedule_)
, maxHistory(maxHistory_)
, cleanHistoryOnStart(cleanHistoryOnStart_)
{
init();
}
TimeBasedRollingFileAppender::TimeBasedRollingFileAppender(
const log4cplus::helpers::Properties& properties)
: FileAppenderBase(properties, std::ios_base::app)
, filenamePattern(LOG4CPLUS_TEXT("%d.log"))
, schedule(DAILY)
, maxHistory(10)
, cleanHistoryOnStart(false)
{
filenamePattern = properties.getProperty(LOG4CPLUS_TEXT("FilenamePattern"));
properties.getInt(maxHistory, LOG4CPLUS_TEXT("MaxHistory"));
properties.getBool(cleanHistoryOnStart, LOG4CPLUS_TEXT("CleanHistoryOnStart"));
filenamePattern = preprocessFilenamePattern(filenamePattern, schedule);
DailyRollingFileSchedule theSchedule = DAILY;
tstring scheduleStr(helpers::toUpper(
properties.getProperty(LOG4CPLUS_TEXT("Schedule"))));
if (scheduleStr == LOG4CPLUS_TEXT("MONTHLY"))
theSchedule = MONTHLY;
else if (scheduleStr == LOG4CPLUS_TEXT("WEEKLY"))
theSchedule = WEEKLY;
else if (scheduleStr == LOG4CPLUS_TEXT("DAILY"))
theSchedule = DAILY;
else if (scheduleStr == LOG4CPLUS_TEXT("TWICE_DAILY"))
theSchedule = TWICE_DAILY;
else if (scheduleStr == LOG4CPLUS_TEXT("HOURLY"))
theSchedule = HOURLY;
else if (scheduleStr == LOG4CPLUS_TEXT("MINUTELY"))
theSchedule = MINUTELY;
else {
helpers::getLogLog().warn(
LOG4CPLUS_TEXT("DailyRollingFileAppender::ctor()")
LOG4CPLUS_TEXT("- \"Schedule\" not valid: ")
+ properties.getProperty(LOG4CPLUS_TEXT("Schedule")));
theSchedule = DAILY;
}
this->schedule = theSchedule;
init();
}
TimeBasedRollingFileAppender::~TimeBasedRollingFileAppender()
{
destructorImpl();
}
///////////////////////////////////////////////////////////////////////////////
// TimeBasedRollingFileAppender protected methods
///////////////////////////////////////////////////////////////////////////////
void
TimeBasedRollingFileAppender::init()
{
if (filenamePattern.empty())
{
getErrorHandler()->error( LOG4CPLUS_TEXT("Invalid filename/filenamePattern values") );
return;
}
FileAppenderBase::init();
Time now = Time::gettimeofday();
nextRolloverTime = calculateNextRolloverTime(now);
if (cleanHistoryOnStart)
{
clean(now);
}
}
void
TimeBasedRollingFileAppender::append(const spi::InternalLoggingEvent& event)
{
if(event.getTimestamp() >= nextRolloverTime) {
rollover(true);
}
FileAppenderBase::append(event);
}
void
TimeBasedRollingFileAppender::open(std::ios_base::openmode mode)
{
tstring scheduledFilename = Time::gettimeofday().getFormattedTime(filenamePattern, false);
tstring currentFilename = filename + LOG4CPLUS_TEXT(".") + scheduledFilename;
if (createDirs)
internal::make_dirs (currentFilename);
out.open(LOG4CPLUS_FSTREAM_PREFERED_FILE_NAME(currentFilename).c_str(), mode);
if(!out.good())
{
getErrorHandler()->error(LOG4CPLUS_TEXT("Unable to open file: ") + currentFilename);
return;
}
helpers::getLogLog().debug(LOG4CPLUS_TEXT("Just opened file: ") + currentFilename);
}
void
TimeBasedRollingFileAppender::close()
{
FileAppenderBase::close();
}
void
TimeBasedRollingFileAppender::rollover(bool alreadyLocked)
{
helpers::LockFileGuard guard;
if (useLockFile && ! alreadyLocked)
{
try
{
guard.attach_and_lock (*lockFile);
}
catch (std::runtime_error const &)
{
return;
}
}
// Close the current file
out.close();
// reset flags since the C++ standard specified that all the flags
// should remain unchanged on a close
out.clear();
Time now = Time::gettimeofday();
clean(now);
open(fileOpenMode);
nextRolloverTime = calculateNextRolloverTime(now);
}
void
TimeBasedRollingFileAppender::clean(Time time)
{
helpers::LogLog & loglog = helpers::getLogLog();
unsigned int rmIntervel = maxHistory;
int errTimes = 0;
while (true)
{
struct tm rmnext;
switch (schedule)
{
case MONTHLY:
time.localtime(&rmnext);
rmnext.tm_mon -= rmIntervel;
if (time.setTime(&rmnext) == -1) {
time = time - Time(getRolloverPeriodDuration()*rmIntervel);
}
break;
case WEEKLY:
time.localtime(&rmnext);
rmnext.tm_mday -= (7 - rmnext.tm_wday + 1)*rmIntervel; // Round up to next week
if (time.setTime(&rmnext) == -1) {
time = time - Time(getRolloverPeriodDuration()*rmIntervel);
}
break;
case DAILY:
case HOURLY:
case MINUTELY:
{
int periodDuration = getRolloverPeriodDuration() * rmIntervel;
time = time - Time(periodDuration);
break;
}
default:
helpers::getLogLog().error(
LOG4CPLUS_TEXT("TimeBasedRollingFileAppender::getRolloverPeriodDuration()-")
LOG4CPLUS_TEXT(" invalid schedule value"));
// Fall through.
}
Time timeToRemove = time;
if (time.sec()<0){
break;
}
tstring filenameToRemove = filename + LOG4CPLUS_TEXT(".") + timeToRemove.getFormattedTime(filenamePattern, false);
loglog.debug(LOG4CPLUS_TEXT("Removing file ") + filenameToRemove);
if (file_remove(filenameToRemove) != 0){
rmIntervel *= 2;
if (errTimes++ < 10)
continue;
else
break;
}
else
rmIntervel = 1;
}
}
int
TimeBasedRollingFileAppender::getRolloverPeriodDuration() const
{
switch (schedule)
{
case MONTHLY:
return 31*24*3600;
case WEEKLY:
return 7*24*3600;
case DAILY:
return 24*3600;
case HOURLY:
return 3600;
case MINUTELY:
return 60;
default:
helpers::getLogLog().error(
LOG4CPLUS_TEXT("TimeBasedRollingFileAppender::getRolloverPeriodDuration()-")
LOG4CPLUS_TEXT(" invalid schedule value"));
// Fall through.
return 3600;
}
}
Time
TimeBasedRollingFileAppender::calculateNextRolloverTime(const Time& t) const
{
Time result;
struct tm next;
switch(schedule)
{
case MONTHLY:
t.localtime(&next);
next.tm_mon += 1;
next.tm_mday = 0; // Round up to next month start
next.tm_hour = 0;
next.tm_min = 0;
next.tm_sec = 0;
next.tm_isdst = 0;
if (result.setTime(&next) == -1) {
result = t + Time(getRolloverPeriodDuration());
}
break;
case WEEKLY:
t.localtime(&next);
next.tm_mday += (7 - next.tm_wday + 1); // Round up to next week
next.tm_hour = 0; // Round up to next week start
next.tm_min = 0;
next.tm_sec = 0;
next.tm_isdst = 0;
if (result.setTime(&next) == -1) {
result = t + Time(getRolloverPeriodDuration());
}
break;
case DAILY:
case HOURLY:
case MINUTELY:
{
int periodDuration = getRolloverPeriodDuration();
result = round_time_and_add(t, Time(periodDuration));
break;
}
default:
helpers::getLogLog().error(
LOG4CPLUS_TEXT("TimeBasedRollingFileAppender::calculateNextRolloverTime()-")
LOG4CPLUS_TEXT(" invalid schedule value"));
};
result.usec(0);
return result;
}
} // namespace log4cplus
| [
"[email protected]"
] | |
ca0e233ca0b47f9c561c9204a1d76c9ea4af515c | 948d555823c2d123601ff6c149869be377521282 | /SDK/SOT_wld_palm_cluster_02_b_classes.hpp | c73006649571c57687eb2e7ca8092cc77ab1d0f2 | [] | no_license | besimbicer89/SoT-SDK | 2acf79303c65edab01107ab4511e9b9af8ab9743 | 3a4c6f3b77c1045b7ef0cddd064350056ef7d252 | refs/heads/master | 2022-04-24T01:03:37.163407 | 2020-04-27T12:45:47 | 2020-04-27T12:45:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,061 | hpp | #pragma once
// SeaOfThieves (1.6.4) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
namespace SDK
{
//---------------------------------------------------------------------------
//Classes
//---------------------------------------------------------------------------
// BlueprintGeneratedClass wld_palm_cluster_02_b.wld_palm_cluster_02_b_C
// 0x0010 (0x0460 - 0x0450)
class Awld_palm_cluster_02_b_C : public ABP_Placement_HeightDrop_C
{
public:
class UNonVagueNonUniqueLandmarkComponent* NonVagueNonUniqueLandmark; // 0x0450(0x0008) (BlueprintVisible, ZeroConstructor, IsPlainOldData)
class UStaticMeshComponent* StaticMesh2; // 0x0458(0x0008) (BlueprintVisible, ZeroConstructor, IsPlainOldData)
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("BlueprintGeneratedClass wld_palm_cluster_02_b.wld_palm_cluster_02_b_C");
return ptr;
}
void UserConstructionScript();
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"[email protected]"
] | |
d93edc6285c0e8d51c1fa1e6ec0102219d309ea1 | 0eb84ec824fb34c18a87a4b50292d6cb41d15511 | /ComponentWebotsMpsDocking/opcua-backend/src-gen/ComponentWebotsMpsDockingOpcUaBackendPortFactory.hh | 984fb89ada60e78e132a208c6492431c941d330a | [] | no_license | SiChiTong/ComponentRepository | 1a75ef4b61e37be63b6c5ec217bfb39587eecb80 | 19b79ae0112c65dddabcc1209f64c813c68b90d6 | refs/heads/master | 2023-07-12T13:01:10.615767 | 2021-08-25T09:59:28 | 2021-08-25T09:59:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,765 | hh | //--------------------------------------------------------------------------
// Code generated by the SmartSoft MDSD Toolchain
// The SmartSoft Toolchain has been developed by:
//
// Service Robotics Research Center
// University of Applied Sciences Ulm
// Prittwitzstr. 10
// 89075 Ulm (Germany)
//
// Information about the SmartSoft MDSD Toolchain is available at:
// www.servicerobotik-ulm.de
//
// Please do not modify this file. It will be re-generated
// running the code generator.
//--------------------------------------------------------------------------
#ifndef COMPONENTWEBOTSMPSDOCKING_OPC_UA_BACKEND_PORTFACTORY_HH_
#define COMPONENTWEBOTSMPSDOCKING_OPC_UA_BACKEND_PORTFACTORY_HH_
// include the main component-definition class
#include "ComponentWebotsMpsDockingPortFactoryInterface.hh"
#include <thread>
#include <chrono>
// include SeRoNetSDK library
#include <SeRoNetSDK/SeRoNet/Utils/Task.hpp>
#include <SeRoNetSDK/SeRoNet/Utils/Component.hpp>
class ComponentWebotsMpsDockingOpcUaBackendPortFactory: public ComponentWebotsMpsDockingPortFactoryInterface
{
private:
// internal component instance
SeRoNet::Utils::Component *componentImpl;
// component thread
std::thread component_thread;
// internal component thread method
int task_execution();
public:
ComponentWebotsMpsDockingOpcUaBackendPortFactory();
virtual ~ComponentWebotsMpsDockingOpcUaBackendPortFactory();
virtual void initialize(ComponentWebotsMpsDocking *component, int argc, char* argv[]) override;
virtual int onStartup() override;
virtual Smart::IPushClientPattern<CommBasicObjects::CommBaseState> * createBaseStateServiceIn() override;
virtual Smart::IPushClientPattern<CommBasicObjects::CommMobileLaserScan> * createLaserServiceIn() override;
virtual Smart::ISendClientPattern<CommBasicObjects::CommNavigationVelocity> * createNavigationVelocityServiceOut() override;
virtual Smart::IEventServerPattern<CommRobotinoObjects::CommRobotinoDockingEventParameter, CommRobotinoObjects::CommRobotinoDockingEventResult, CommRobotinoObjects::RobotinoDockingEventState> * createRobotDockingEventServiceOut(const std::string &serviceName, std::shared_ptr<Smart::IEventTestHandler<CommRobotinoObjects::CommRobotinoDockingEventParameter, CommRobotinoObjects::CommRobotinoDockingEventResult, CommRobotinoObjects::RobotinoDockingEventState>> robotDockingEventServiceOutEventTestHandler) override;
virtual Smart::IPushServerPattern<CommBasicObjects::CommTrafficLights> * createTrafficLightsServiceOut(const std::string &serviceName) override;
virtual int onShutdown(const std::chrono::steady_clock::duration &timeoutTime=std::chrono::seconds(2)) override;
virtual void destroy() override;
};
#endif /* COMPONENTWEBOTSMPSDOCKING_SERONET_SDK_PORTFACTORY_HH_ */
| [
"[email protected]"
] | |
22c3a21b60c0206950cf34b57174f205e5661fd2 | 836a40007747c9589fa742bde5d62b37680b94fc | /其他/C语言实践2016小学期/day1/ex5.cpp | dc80d1e13fc18717d4dfc22b8ede85250adaea3c | [] | no_license | TOKdawn/C_Language_learning | f2a4e860eb2fa313d714aa0bdb50be673693347f | 06085dc1e27cf2373b57421ae12b6adfe6cc0a5e | refs/heads/master | 2020-04-06T07:01:40.137605 | 2018-05-30T07:39:50 | 2018-05-30T07:39:50 | 55,934,806 | 1 | 0 | null | 2016-05-26T11:26:29 | 2016-04-11T02:16:19 | C | UTF-8 | C++ | false | false | 360 | cpp | #include <stdio.h>
#include <stdlib.h>
#include <iostream>
using namespace std;
#ifndef EXIT_SUCCESS
#define EXIT_SUCCESS 0
#endif
int main(int argc, char *argv[]) {
int n;
while(cin>>n){
int max=1;
for(int i=1;i<n;i++){
max=++max*2;
}
cout<<max<<endl;
}
system("pause");
return EXIT_SUCCESS;
} | [
"[email protected]"
] | |
6313de18e1f2d05b9745f874d14f36a25c38c7e5 | 9fa2502e98b9779e16be62c65cca060ee4282061 | /test/source/poker_msgs/MsgRequestFriendStatus.cpp | f98c53fa82719d6cd7efb5cd592c0f9a2a0789ff | [] | no_license | zjhlogo/spank_old | 558d617c44e3f6b53bb4e26167f55d8cb7f5098c | 8030f21d98ac743baf0681bbb626e76c489d8711 | refs/heads/master | 2021-01-23T13:48:16.189834 | 2012-12-16T03:45:40 | 2012-12-16T03:45:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 584 | cpp | /*!
* \file MsgRequestFriendStatus.cpp
* \date unknown
*
*
* \author Auto Generate by MsgGen
*/
#include "MsgRequestFriendStatus.h"
MsgRequestFriendStatus::MsgRequestFriendStatus()
:PokerMsgBase(MSG_TYPE, MSG_SIZE)
{
// TODO:
}
MsgRequestFriendStatus::~MsgRequestFriendStatus()
{
// TODO:
}
bool MsgRequestFriendStatus::Unpack(StreamReader* pReader)
{
if (!pReader->Read(&nUserId, sizeof(nUserId))) return false;
return true;
}
bool MsgRequestFriendStatus::Pack(StreamWriter* pWriter)
{
if (!pWriter->Write(&nUserId, sizeof(nUserId))) return false;
return true;
}
| [
"zjhlogo@181a2263-6311-9be6-e15f-e484ee8db88e"
] | zjhlogo@181a2263-6311-9be6-e15f-e484ee8db88e |
1c775fb2a4407642538a8f4c8032c52c49c44483 | 98779770ea59dfef0716f06b97a030456b6bb953 | /include/taussig/detail/iterators.h++ | 0cbe78fb2876735815bee0a0a9baf89a9514129b | [
"CC0-1.0"
] | permissive | rmartinho/taussig | af26656801e400270af01f024c3809782f3d8f57 | 896903e7cf47e943eba1253d2448cf193c61e97b | HEAD | 2016-09-05T16:23:36.894730 | 2013-11-28T01:36:01 | 2013-11-28T01:36:01 | 9,547,267 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,850 | // Taussig
//
// Written in 2013 by Martinho Fernandes <[email protected]>
//
// To the extent possible under law, the author(s) have dedicated all copyright and related
// and neighboring rights to this software to the public domain worldwide. This software is
// distributed without any warranty.
//
// You should have received a copy of the CC0 Public Domain Dedication along with this software.
// If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
// Additional iterator-related traits
#ifndef TAUSSIG_DETAIL_ITERATOR_HPP
#define TAUSSIG_DETAIL_ITERATOR_HPP
#include <wheels/meta/all.h++>
#include <wheels/meta/trait_of.h++>
#include <wheels/meta/unqual.h++>
#include <iterator>
#include <tuple>
#include <type_traits>
#include <utility>
namespace seq {
namespace detail {
//! {metafunction}
//! *Requires*: `T` is an Iterator [soft].
//! *Returns*: the iterator category of `T`.
template <typename T>
using IteratorCategory = typename std::iterator_traits<T>::iterator_category;
template <typename T>
using IteratorValueType = typename std::iterator_traits<T>::value_type;
template <typename T>
using IteratorReferenceType = typename std::iterator_traits<T>::reference;
struct is_iterator_test {
template <typename T, typename Cat>
std::is_base_of<Cat, IteratorCategory<T>> static test(int);
template <typename...>
std::false_type static test(...);
};
//! {trait}
//! *Returns*: `true` if `T` is an Iterator with category `Cat`;
// `false` otherwise.
template <typename T, typename Cat = std::input_iterator_tag>
struct is_iterator : wheels::meta::TraitOf<is_iterator_test, T, Cat> {};
// TODO ADL begin end
namespace result_of {
template <typename T>
using begin = decltype(std::begin(std::declval<T>()));
template <typename T>
using end = decltype(std::end(std::declval<T>()));
} // namespace result_of
struct has_begin_end_test {
template <typename T, typename Cat>
wheels::meta::All<
std::is_same<result_of::begin<T>, result_of::end<T>>,
is_iterator<result_of::begin<T>, Cat>
> static test(int);
template <typename...>
std::false_type static test(...);
};
//! {trait}
//! *Returns*: `true` if `T` has `begin()` and `end()` member functions
// that return the same type of Iterator with category `Cat`;
// `false` otherwise.
template <typename T, typename Cat = std::input_iterator_tag>
struct has_begin_end : wheels::meta::TraitOf<has_begin_end_test, T, Cat> {};
template <typename T, typename Cat>
struct is_iterator_pair_impl : std::false_type {};
template <typename I, typename Cat>
struct is_iterator_pair_impl<std::pair<I, I>, Cat> : is_iterator<I, Cat> {};
template <typename T, typename Cat = std::input_iterator_tag>
struct is_iterator_pair : is_iterator_pair_impl<wheels::meta::Unqual<T>, Cat> {};
//! {metafunction}
//! *Requires*: `std::begin` can be called with `T&` [soft].
//! *Returns*: the type returned by calling `std::begin` with `T&`.
template <typename T>
using IteratorOf = result_of::begin<T&>;
//! {metafunction}
//! *Requires*: `std::begin` can be called with `T const&` [soft].
//! *Returns*: the type returned by calling `std::begin` with `T const&`.
template <typename T>
using ConstIteratorOf = IteratorOf<T const&>;
} // namespace detail
} // namespace seq
#endif // TAUSSIG_DETAIL_ITERATOR_HPP
| [
"[email protected]"
] | ||
703113d9acae622de17d96cf7a459992044ff473 | 5a6724f8eeb7528e50a7d03c6866a3e0dee4a1d9 | /src/main.cpp | d4b282008f2bb6ea16f88733a06004888cd81746 | [] | no_license | kochcodes/ESP32_BLE_CyclingPowerMeter | 9377d1b560ef556d8a6a93945dd1be7e3b835e36 | 97fa101483db1ed4d06ebf579b3572f9d6da92c0 | refs/heads/main | 2023-01-04T06:29:07.075065 | 2020-11-04T13:39:45 | 2020-11-04T13:39:45 | 310,010,363 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,560 | cpp | #include <Arduino.h>
#include <BLEDevice.h>
#include <BLEUtils.h>
#include <BLEServer.h>
#include <BLE2902.h>
byte flags = 0b0000000000010;
int measurement;
byte watt[13] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0};
byte pmLoc[1] = {2};
bool _BLEClientConnected = false;
#define POWER_SERVICE_UUID BLEUUID((uint16_t)0x1818)
BLECharacteristic CyclingPowerFeature(BLEUUID((uint16_t)0x2A65), BLECharacteristic::PROPERTY_READ);
BLECharacteristic CyclingPowerMeasurement(BLEUUID((uint16_t)0x2A63), BLECharacteristic::PROPERTY_NOTIFY);
BLECharacteristic SensorLocation(BLEUUID((uint16_t)0x2A5D), BLECharacteristic::PROPERTY_READ);
BLEDescriptor PowerFeatureDescriptor(BLEUUID((uint16_t)0x2901));
BLEDescriptor PowerMeasurementDescriptor(BLEUUID((uint16_t)0x2901));
BLEDescriptor SensorPositionDescriptor(BLEUUID((uint16_t)0x2901));
class MyServerCallbacks : public BLEServerCallbacks
{
void onConnect(BLEServer *pServer)
{
_BLEClientConnected = true;
};
void onDisconnect(BLEServer *pServer)
{
_BLEClientConnected = false;
}
};
void InitBLE()
{
BLEDevice::init("Zwifterino");
BLEServer *pServer = BLEDevice::createServer();
pServer->setCallbacks(new MyServerCallbacks());
BLEService *powerMeter = pServer->createService(POWER_SERVICE_UUID);
powerMeter->addCharacteristic(&CyclingPowerFeature);
PowerFeatureDescriptor.setValue("Cycling Power Feature");
CyclingPowerFeature.addDescriptor(&PowerFeatureDescriptor);
CyclingPowerFeature.addDescriptor(new BLE2902());
powerMeter->addCharacteristic(&CyclingPowerMeasurement);
PowerMeasurementDescriptor.setValue("Cycling Power Measurement");
CyclingPowerMeasurement.addDescriptor(&PowerMeasurementDescriptor);
CyclingPowerMeasurement.addDescriptor(new BLE2902());
powerMeter->addCharacteristic(&SensorLocation);
SensorPositionDescriptor.setValue("Sensor Location");
SensorLocation.addDescriptor(&SensorPositionDescriptor);
SensorLocation.addDescriptor(new BLE2902());
pServer->getAdvertising()->addServiceUUID(POWER_SERVICE_UUID);
powerMeter->start();
pServer->getAdvertising()->start();
}
void setup()
{
Serial.begin(115200);
InitBLE();
delay(500);
Serial.println("PowerMeter running...");
}
long t = 0;
void loop()
{
if (millis() > t)
{
t = millis() + 1000;
measurement = 120; /* your measurement here */
watt[1] = 0;
watt[2] = (measurement)&0xFF;
watt[3] = (measurement >> 8) & 0xFF;
CyclingPowerMeasurement.setValue(watt, 8);
CyclingPowerFeature.setValue(watt, 8);
CyclingPowerMeasurement.notify();
}
} | [
"[email protected]"
] | |
d13a3ac1fad69cbf15e7cb5514537c9c73fff9c4 | 00dbe4fd5f00fab51f959fdf32ddb185daa8de30 | /P11498.cpp | 7630cb1c622f8c36af2e86d0ccb2e1fe2b894804 | [] | no_license | LasseD/uva | c02b21c37700bd6f43ec91e788b2787152bfb09b | 14b62742d3dfd8fb55948b2682458aae676e7c14 | refs/heads/master | 2023-01-29T14:51:42.426459 | 2023-01-15T09:29:47 | 2023-01-15T09:29:47 | 17,707,082 | 3 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 532 | cpp | #include <iostream>
#include <stdio.h>
int main() {
int K, N, M, X, Y;
while(true) {
std::cin >> K;
if(K == 0)
return 0;
std::cin >> N >> M;
for(int i = 0; i < K; ++i) {
std::cin >> X >> Y;
if(X == N || Y == M)
std::cout << "divisa" << std::endl;
else if(X < N && Y < M)
std::cout << "SO" << std::endl;
else if(X < N && Y > M)
std::cout << "NO" << std::endl;
else if(X > N && Y > M)
std::cout << "NE" << std::endl;
else
std::cout << "SE" << std::endl;
}
}
}
| [
"[email protected]"
] | |
ccd437ce9cd849e4676ebe5b9d59d621ff2635bc | d2190cbb5ea5463410eb84ec8b4c6a660e4b3d0e | /old_hydra/hydra/tags/apr07a/trigger/htriggerparrootfileio.h | a0f59a53a78684a66dbe20e76264dfbfaf9f1fa6 | [] | no_license | wesmail/hydra | 6c681572ff6db2c60c9e36ec864a3c0e83e6aa6a | ab934d4c7eff335cc2d25f212034121f050aadf1 | refs/heads/master | 2021-07-05T17:04:53.402387 | 2020-08-12T08:54:11 | 2020-08-12T08:54:11 | 149,625,232 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,181 | h | //*-- Author: Ilse Koenig
//*-- Modified: Joern Wuestenfeld 07/14/2005
//*-- Version: $Id: htriggerparrootfileio.h,v 1.4 2005-07-15 09:00:25 wuestenf Exp $
#ifndef HTRIGGERPARROOTFILEIO_H
#define HTRIGGERPARROOTFILEIO_H
#include "hdetparrootfileio.h"
#include "TFile.h"
#include "TArrayI.h"
class HParRootFile;
class HParSet;
class HTriggerParMuLep;
class HTriggerParMuDilep;
class HTriggerParMomMap;
class HTriggerParShowerMap;
class HTriggerParRichMap;
class HRichIPUParPattern;
class HRichIPUParThresholds;
class HRichIPUParLocMax;
class HTriggerParRootFileIo : public HDetParRootFileIo {
public:
HTriggerParRootFileIo(HParRootFile* f);
~HTriggerParRootFileIo();
Bool_t init(HParSet*,Int_t*);
Bool_t read(HTriggerParMuLep*,Int_t*);
Bool_t read(HTriggerParMuDilep*,Int_t*);
Bool_t read(HTriggerParMomMap*,Int_t*);
Bool_t read(HTriggerParShowerMap*,Int_t*);
Bool_t read(HTriggerParRichMap*,Int_t*);
Bool_t read(HRichIPUParPattern*,Int_t*);
Bool_t read(HRichIPUParThresholds*,Int_t*);
Bool_t read(HRichIPUParLocMax*,Int_t*);
ClassDef(HTriggerParRootFileIo,0) // Class for TRIGGER parameter I/O from ROOT file
};
#endif /*!HTRIGGERPARROOTFILEIO_H*/
| [
"[email protected]"
] | |
fd4da2bc10e8baa8303c4833051d45f32b6b1082 | 612325535126eaddebc230d8c27af095c8e5cc2f | /src/net/proxy/proxy_resolver_v8_unittest.cc | a9c92b51ef0db64449e9aa38f1f6d058c77c8a44 | [
"BSD-3-Clause"
] | permissive | TrellixVulnTeam/proto-quic_1V94 | 1a3a03ac7a08a494b3d4e9857b24bb8f2c2cd673 | feee14d96ee95313f236e0f0e3ff7719246c84f7 | refs/heads/master | 2023-04-01T14:36:53.888576 | 2019-10-17T02:23:04 | 2019-10-17T02:23:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19,760 | cc | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/compiler_specific.h"
#include "base/files/file_util.h"
#include "base/path_service.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"
#include "net/base/completion_callback.h"
#include "net/base/net_errors.h"
#include "net/proxy/proxy_info.h"
#include "net/proxy/proxy_resolver_script_data.h"
#include "net/proxy/proxy_resolver_v8.h"
#include "net/test/gtest_util.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
using net::test::IsError;
using net::test::IsOk;
namespace net {
namespace {
// Javascript bindings for ProxyResolverV8, which returns mock values.
// Each time one of the bindings is called into, we push the input into a
// list, for later verification.
class MockJSBindings : public ProxyResolverV8::JSBindings {
public:
MockJSBindings()
: my_ip_address_count(0),
my_ip_address_ex_count(0),
should_terminate(false) {}
void Alert(const base::string16& message) override {
VLOG(1) << "PAC-alert: " << message; // Helpful when debugging.
alerts.push_back(base::UTF16ToUTF8(message));
}
bool ResolveDns(const std::string& host,
ResolveDnsOperation op,
std::string* output,
bool* terminate) override {
*terminate = should_terminate;
if (op == MY_IP_ADDRESS) {
my_ip_address_count++;
*output = my_ip_address_result;
return !my_ip_address_result.empty();
}
if (op == MY_IP_ADDRESS_EX) {
my_ip_address_ex_count++;
*output = my_ip_address_ex_result;
return !my_ip_address_ex_result.empty();
}
if (op == DNS_RESOLVE) {
dns_resolves.push_back(host);
*output = dns_resolve_result;
return !dns_resolve_result.empty();
}
if (op == DNS_RESOLVE_EX) {
dns_resolves_ex.push_back(host);
*output = dns_resolve_ex_result;
return !dns_resolve_ex_result.empty();
}
CHECK(false);
return false;
}
void OnError(int line_number, const base::string16& message) override {
// Helpful when debugging.
VLOG(1) << "PAC-error: [" << line_number << "] " << message;
errors.push_back(base::UTF16ToUTF8(message));
errors_line_number.push_back(line_number);
}
// Mock values to return.
std::string my_ip_address_result;
std::string my_ip_address_ex_result;
std::string dns_resolve_result;
std::string dns_resolve_ex_result;
// Inputs we got called with.
std::vector<std::string> alerts;
std::vector<std::string> errors;
std::vector<int> errors_line_number;
std::vector<std::string> dns_resolves;
std::vector<std::string> dns_resolves_ex;
int my_ip_address_count;
int my_ip_address_ex_count;
// Whether ResolveDns() should terminate script execution.
bool should_terminate;
};
class ProxyResolverV8Test : public testing::Test {
public:
// Creates a ProxyResolverV8 using the PAC script contained in |filename|. If
// called more than once, the previous ProxyResolverV8 is deleted.
int CreateResolver(const char* filename) {
base::FilePath path;
PathService::Get(base::DIR_SOURCE_ROOT, &path);
path = path.AppendASCII("net");
path = path.AppendASCII("data");
path = path.AppendASCII("proxy_resolver_v8_unittest");
path = path.AppendASCII(filename);
// Try to read the file from disk.
std::string file_contents;
bool ok = base::ReadFileToString(path, &file_contents);
// If we can't load the file from disk, something is misconfigured.
if (!ok) {
LOG(ERROR) << "Failed to read file: " << path.value();
return ERR_FAILED;
}
// Create the ProxyResolver using the PAC script.
return ProxyResolverV8::Create(
ProxyResolverScriptData::FromUTF8(file_contents), bindings(),
&resolver_);
}
ProxyResolverV8& resolver() {
DCHECK(resolver_);
return *resolver_;
}
MockJSBindings* bindings() { return &js_bindings_; }
private:
MockJSBindings js_bindings_;
std::unique_ptr<ProxyResolverV8> resolver_;
};
// Doesn't really matter what these values are for many of the tests.
const GURL kQueryUrl("http://www.google.com");
const GURL kPacUrl;
TEST_F(ProxyResolverV8Test, Direct) {
ASSERT_THAT(CreateResolver("direct.js"), IsOk());
ProxyInfo proxy_info;
int result = resolver().GetProxyForURL(kQueryUrl, &proxy_info, bindings());
EXPECT_THAT(result, IsOk());
EXPECT_TRUE(proxy_info.is_direct());
EXPECT_EQ(0U, bindings()->alerts.size());
EXPECT_EQ(0U, bindings()->errors.size());
}
TEST_F(ProxyResolverV8Test, ReturnEmptyString) {
ASSERT_THAT(CreateResolver("return_empty_string.js"), IsOk());
ProxyInfo proxy_info;
int result = resolver().GetProxyForURL(kQueryUrl, &proxy_info, bindings());
EXPECT_THAT(result, IsOk());
EXPECT_TRUE(proxy_info.is_direct());
EXPECT_EQ(0U, bindings()->alerts.size());
EXPECT_EQ(0U, bindings()->errors.size());
}
TEST_F(ProxyResolverV8Test, Basic) {
ASSERT_THAT(CreateResolver("passthrough.js"), IsOk());
// The "FindProxyForURL" of this PAC script simply concatenates all of the
// arguments into a pseudo-host. The purpose of this test is to verify that
// the correct arguments are being passed to FindProxyForURL().
{
ProxyInfo proxy_info;
int result = resolver().GetProxyForURL(GURL("http://query.com/path"),
&proxy_info, bindings());
EXPECT_THAT(result, IsOk());
EXPECT_EQ("http.query.com.path.query.com:80",
proxy_info.proxy_server().ToURI());
}
{
ProxyInfo proxy_info;
int result = resolver().GetProxyForURL(GURL("ftp://query.com:90/path"),
&proxy_info, bindings());
EXPECT_THAT(result, IsOk());
// Note that FindProxyForURL(url, host) does not expect |host| to contain
// the port number.
EXPECT_EQ("ftp.query.com.90.path.query.com:80",
proxy_info.proxy_server().ToURI());
EXPECT_EQ(0U, bindings()->alerts.size());
EXPECT_EQ(0U, bindings()->errors.size());
}
}
TEST_F(ProxyResolverV8Test, BadReturnType) {
// These are the filenames of PAC scripts which each return a non-string
// types for FindProxyForURL(). They should all fail with
// ERR_PAC_SCRIPT_FAILED.
static const char* const filenames[] = {
"return_undefined.js",
"return_integer.js",
"return_function.js",
"return_object.js",
// TODO(eroman): Should 'null' be considered equivalent to "DIRECT" ?
"return_null.js"};
for (size_t i = 0; i < arraysize(filenames); ++i) {
ASSERT_THAT(CreateResolver(filenames[i]), IsOk());
MockJSBindings bindings;
ProxyInfo proxy_info;
int result = resolver().GetProxyForURL(kQueryUrl, &proxy_info, &bindings);
EXPECT_THAT(result, IsError(ERR_PAC_SCRIPT_FAILED));
EXPECT_EQ(0U, bindings.alerts.size());
ASSERT_EQ(1U, bindings.errors.size());
EXPECT_EQ("FindProxyForURL() did not return a string.", bindings.errors[0]);
EXPECT_EQ(-1, bindings.errors_line_number[0]);
}
}
// Try using a PAC script which defines no "FindProxyForURL" function.
TEST_F(ProxyResolverV8Test, NoEntryPoint) {
EXPECT_THAT(CreateResolver("no_entrypoint.js"),
IsError(ERR_PAC_SCRIPT_FAILED));
ASSERT_EQ(1U, bindings()->errors.size());
EXPECT_EQ("FindProxyForURL is undefined or not a function.",
bindings()->errors[0]);
EXPECT_EQ(-1, bindings()->errors_line_number[0]);
}
// Try loading a malformed PAC script.
TEST_F(ProxyResolverV8Test, ParseError) {
EXPECT_THAT(CreateResolver("missing_close_brace.js"),
IsError(ERR_PAC_SCRIPT_FAILED));
EXPECT_EQ(0U, bindings()->alerts.size());
// We get one error during compilation.
ASSERT_EQ(1U, bindings()->errors.size());
EXPECT_EQ("Uncaught SyntaxError: Unexpected end of input",
bindings()->errors[0]);
EXPECT_EQ(5, bindings()->errors_line_number[0]);
}
// Run a PAC script several times, which has side-effects.
TEST_F(ProxyResolverV8Test, SideEffects) {
ASSERT_THAT(CreateResolver("side_effects.js"), IsOk());
// The PAC script increments a counter each time we invoke it.
for (int i = 0; i < 3; ++i) {
ProxyInfo proxy_info;
int result = resolver().GetProxyForURL(kQueryUrl, &proxy_info, bindings());
EXPECT_THAT(result, IsOk());
EXPECT_EQ(base::StringPrintf("sideffect_%d:80", i),
proxy_info.proxy_server().ToURI());
}
// Reload the script -- the javascript environment should be reset, hence
// the counter starts over.
ASSERT_THAT(CreateResolver("side_effects.js"), IsOk());
for (int i = 0; i < 3; ++i) {
ProxyInfo proxy_info;
int result = resolver().GetProxyForURL(kQueryUrl, &proxy_info, bindings());
EXPECT_THAT(result, IsOk());
EXPECT_EQ(base::StringPrintf("sideffect_%d:80", i),
proxy_info.proxy_server().ToURI());
}
}
// Execute a PAC script which throws an exception in FindProxyForURL.
TEST_F(ProxyResolverV8Test, UnhandledException) {
ASSERT_THAT(CreateResolver("unhandled_exception.js"), IsOk());
ProxyInfo proxy_info;
int result = resolver().GetProxyForURL(kQueryUrl, &proxy_info, bindings());
EXPECT_THAT(result, IsError(ERR_PAC_SCRIPT_FAILED));
EXPECT_EQ(0U, bindings()->alerts.size());
ASSERT_EQ(1U, bindings()->errors.size());
EXPECT_EQ("Uncaught ReferenceError: undefined_variable is not defined",
bindings()->errors[0]);
EXPECT_EQ(3, bindings()->errors_line_number[0]);
}
// Execute a PAC script which throws an exception when first accessing
// FindProxyForURL
TEST_F(ProxyResolverV8Test, ExceptionAccessingFindProxyForURLDuringInit) {
EXPECT_EQ(ERR_PAC_SCRIPT_FAILED,
CreateResolver("exception_findproxyforurl_during_init.js"));
ASSERT_EQ(2U, bindings()->errors.size());
EXPECT_EQ("Uncaught crash!", bindings()->errors[0]);
EXPECT_EQ(9, bindings()->errors_line_number[0]);
EXPECT_EQ("Accessing FindProxyForURL threw an exception.",
bindings()->errors[1]);
EXPECT_EQ(-1, bindings()->errors_line_number[1]);
}
// Execute a PAC script which throws an exception during the second access to
// FindProxyForURL
TEST_F(ProxyResolverV8Test, ExceptionAccessingFindProxyForURLDuringResolve) {
ASSERT_THAT(CreateResolver("exception_findproxyforurl_during_resolve.js"),
IsOk());
ProxyInfo proxy_info;
int result = resolver().GetProxyForURL(kQueryUrl, &proxy_info, bindings());
EXPECT_THAT(result, IsError(ERR_PAC_SCRIPT_FAILED));
ASSERT_EQ(2U, bindings()->errors.size());
EXPECT_EQ("Uncaught crash!", bindings()->errors[0]);
EXPECT_EQ(17, bindings()->errors_line_number[0]);
EXPECT_EQ("Accessing FindProxyForURL threw an exception.",
bindings()->errors[1]);
EXPECT_EQ(-1, bindings()->errors_line_number[1]);
}
TEST_F(ProxyResolverV8Test, ReturnUnicode) {
ASSERT_THAT(CreateResolver("return_unicode.js"), IsOk());
ProxyInfo proxy_info;
int result = resolver().GetProxyForURL(kQueryUrl, &proxy_info, bindings());
// The result from this resolve was unparseable, because it
// wasn't ASCII.
EXPECT_THAT(result, IsError(ERR_PAC_SCRIPT_FAILED));
}
// Test the PAC library functions that we expose in the JS environment.
TEST_F(ProxyResolverV8Test, JavascriptLibrary) {
ASSERT_THAT(CreateResolver("pac_library_unittest.js"), IsOk());
ProxyInfo proxy_info;
int result = resolver().GetProxyForURL(kQueryUrl, &proxy_info, bindings());
// If the javascript side of this unit-test fails, it will throw a javascript
// exception. Otherwise it will return "PROXY success:80".
EXPECT_THAT(result, IsOk());
EXPECT_EQ("success:80", proxy_info.proxy_server().ToURI());
EXPECT_EQ(0U, bindings()->alerts.size());
EXPECT_EQ(0U, bindings()->errors.size());
}
// Test marshalling/un-marshalling of values between C++/V8.
TEST_F(ProxyResolverV8Test, V8Bindings) {
ASSERT_THAT(CreateResolver("bindings.js"), IsOk());
bindings()->dns_resolve_result = "127.0.0.1";
ProxyInfo proxy_info;
int result = resolver().GetProxyForURL(kQueryUrl, &proxy_info, bindings());
EXPECT_THAT(result, IsOk());
EXPECT_TRUE(proxy_info.is_direct());
EXPECT_EQ(0U, bindings()->errors.size());
// Alert was called 5 times.
ASSERT_EQ(5U, bindings()->alerts.size());
EXPECT_EQ("undefined", bindings()->alerts[0]);
EXPECT_EQ("null", bindings()->alerts[1]);
EXPECT_EQ("undefined", bindings()->alerts[2]);
EXPECT_EQ("[object Object]", bindings()->alerts[3]);
EXPECT_EQ("exception from calling toString()", bindings()->alerts[4]);
// DnsResolve was called 8 times, however only 2 of those were string
// parameters. (so 6 of them failed immediately).
ASSERT_EQ(2U, bindings()->dns_resolves.size());
EXPECT_EQ("", bindings()->dns_resolves[0]);
EXPECT_EQ("arg1", bindings()->dns_resolves[1]);
// MyIpAddress was called two times.
EXPECT_EQ(2, bindings()->my_ip_address_count);
// MyIpAddressEx was called once.
EXPECT_EQ(1, bindings()->my_ip_address_ex_count);
// DnsResolveEx was called 2 times.
ASSERT_EQ(2U, bindings()->dns_resolves_ex.size());
EXPECT_EQ("is_resolvable", bindings()->dns_resolves_ex[0]);
EXPECT_EQ("foobar", bindings()->dns_resolves_ex[1]);
}
// Test calling a binding (myIpAddress()) from the script's global scope.
// http://crbug.com/40026
TEST_F(ProxyResolverV8Test, BindingCalledDuringInitialization) {
ASSERT_THAT(CreateResolver("binding_from_global.js"), IsOk());
// myIpAddress() got called during initialization of the script.
EXPECT_EQ(1, bindings()->my_ip_address_count);
ProxyInfo proxy_info;
int result = resolver().GetProxyForURL(kQueryUrl, &proxy_info, bindings());
EXPECT_THAT(result, IsOk());
EXPECT_FALSE(proxy_info.is_direct());
EXPECT_EQ("127.0.0.1:80", proxy_info.proxy_server().ToURI());
// Check that no other bindings were called.
EXPECT_EQ(0U, bindings()->errors.size());
ASSERT_EQ(0U, bindings()->alerts.size());
ASSERT_EQ(0U, bindings()->dns_resolves.size());
EXPECT_EQ(0, bindings()->my_ip_address_ex_count);
ASSERT_EQ(0U, bindings()->dns_resolves_ex.size());
}
// Try loading a PAC script that ends with a comment and has no terminal
// newline. This should not cause problems with the PAC utility functions
// that we add to the script's environment.
// http://crbug.com/22864
TEST_F(ProxyResolverV8Test, EndsWithCommentNoNewline) {
ASSERT_THAT(CreateResolver("ends_with_comment.js"), IsOk());
ProxyInfo proxy_info;
int result = resolver().GetProxyForURL(kQueryUrl, &proxy_info, bindings());
EXPECT_THAT(result, IsOk());
EXPECT_FALSE(proxy_info.is_direct());
EXPECT_EQ("success:80", proxy_info.proxy_server().ToURI());
}
// Try loading a PAC script that ends with a statement and has no terminal
// newline. This should not cause problems with the PAC utility functions
// that we add to the script's environment.
// http://crbug.com/22864
TEST_F(ProxyResolverV8Test, EndsWithStatementNoNewline) {
ASSERT_THAT(CreateResolver("ends_with_statement_no_semicolon.js"), IsOk());
ProxyInfo proxy_info;
int result = resolver().GetProxyForURL(kQueryUrl, &proxy_info, bindings());
EXPECT_THAT(result, IsOk());
EXPECT_FALSE(proxy_info.is_direct());
EXPECT_EQ("success:3", proxy_info.proxy_server().ToURI());
}
// Test the return values from myIpAddress(), myIpAddressEx(), dnsResolve(),
// dnsResolveEx(), isResolvable(), isResolvableEx(), when the the binding
// returns empty string (failure). This simulates the return values from
// those functions when the underlying DNS resolution fails.
TEST_F(ProxyResolverV8Test, DNSResolutionFailure) {
ASSERT_THAT(CreateResolver("dns_fail.js"), IsOk());
ProxyInfo proxy_info;
int result = resolver().GetProxyForURL(kQueryUrl, &proxy_info, bindings());
EXPECT_THAT(result, IsOk());
EXPECT_FALSE(proxy_info.is_direct());
EXPECT_EQ("success:80", proxy_info.proxy_server().ToURI());
}
TEST_F(ProxyResolverV8Test, DNSResolutionOfInternationDomainName) {
ASSERT_THAT(CreateResolver("international_domain_names.js"), IsOk());
// Execute FindProxyForURL().
ProxyInfo proxy_info;
int result = resolver().GetProxyForURL(kQueryUrl, &proxy_info, bindings());
EXPECT_THAT(result, IsOk());
EXPECT_TRUE(proxy_info.is_direct());
// Check that the international domain name was converted to punycode
// before passing it onto the bindings layer.
ASSERT_EQ(1u, bindings()->dns_resolves.size());
EXPECT_EQ("xn--bcher-kva.ch", bindings()->dns_resolves[0]);
ASSERT_EQ(1u, bindings()->dns_resolves_ex.size());
EXPECT_EQ("xn--bcher-kva.ch", bindings()->dns_resolves_ex[0]);
}
// Test that when resolving a URL which contains an IPv6 string literal, the
// brackets are removed from the host before passing it down to the PAC script.
// If we don't do this, then subsequent calls to dnsResolveEx(host) will be
// doomed to fail since it won't correspond with a valid name.
TEST_F(ProxyResolverV8Test, IPv6HostnamesNotBracketed) {
ASSERT_THAT(CreateResolver("resolve_host.js"), IsOk());
ProxyInfo proxy_info;
int result = resolver().GetProxyForURL(
GURL("http://[abcd::efff]:99/watsupdawg"), &proxy_info, bindings());
EXPECT_THAT(result, IsOk());
EXPECT_TRUE(proxy_info.is_direct());
// We called dnsResolveEx() exactly once, by passing through the "host"
// argument to FindProxyForURL(). The brackets should have been stripped.
ASSERT_EQ(1U, bindings()->dns_resolves_ex.size());
EXPECT_EQ("abcd::efff", bindings()->dns_resolves_ex[0]);
}
// Test that terminating a script within DnsResolve() leads to eventual
// termination of the script. Also test that repeatedly calling terminate is
// safe, and running the script again after termination still works.
TEST_F(ProxyResolverV8Test, Terminate) {
ASSERT_THAT(CreateResolver("terminate.js"), IsOk());
// Terminate script execution upon reaching dnsResolve(). Note that
// termination may not take effect right away (so the subsequent dnsResolve()
// and alert() may be run).
bindings()->should_terminate = true;
ProxyInfo proxy_info;
int result =
resolver().GetProxyForURL(GURL("http://hang/"), &proxy_info, bindings());
// The script execution was terminated.
EXPECT_THAT(result, IsError(ERR_PAC_SCRIPT_FAILED));
EXPECT_EQ(1U, bindings()->dns_resolves.size());
EXPECT_GE(2U, bindings()->dns_resolves_ex.size());
EXPECT_GE(1U, bindings()->alerts.size());
EXPECT_EQ(1U, bindings()->errors.size());
// Termination shows up as an uncaught exception without any message.
EXPECT_EQ("", bindings()->errors[0]);
bindings()->errors.clear();
// Try running the script again, this time with a different input which won't
// cause a termination+hang.
result = resolver().GetProxyForURL(GURL("http://kittens/"), &proxy_info,
bindings());
EXPECT_THAT(result, IsOk());
EXPECT_EQ(0u, bindings()->errors.size());
EXPECT_EQ("kittens:88", proxy_info.proxy_server().ToURI());
}
} // namespace
} // namespace net
| [
"[email protected]"
] | |
37464571f5be658eb5d987b805e6ebd333202a99 | c5508ea1335dda4ebb0d070502853f8d5744282d | /src/RIOT.h | 74728d8063281b860391e8ceafb2557b7fcbcc19 | [] | no_license | mikeakohn/cloudtari | c233c24b5d352fa6454005ff7c8c50d311ba59e9 | a6c5aa02f95c604162c958b106998431764aacf3 | refs/heads/master | 2023-06-29T19:28:26.318520 | 2021-07-23T00:02:08 | 2021-07-23T00:02:08 | 382,676,392 | 15 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,259 | h | /**
* Cloudtari
* Author: Michael Kohn
* Email: [email protected]
* Web: http://www.mikekohn.net/
* License: GPLv3
*
* Copyright 2021 by Michael Kohn
*
* The RIOT chip (MOS 6532) has 128 bytes of RAM (address 0x80 to 0xff),
* I/O for the select / reset etc buttons, and a countdown timer.
*
*/
#ifndef RIOT_H
#define RIOT_H
#include <stdint.h>
class RIOT
{
public:
RIOT();
~RIOT();
void reset();
uint8_t read_memory(int address);
void write_memory(int address, uint8_t value);
void clock(int ticks);
void set_switch_reset() { riot[SWCHB & 0x7] &= 0xfe; }
void set_switch_select() { riot[SWCHB & 0x7] &= 0xfd; }
void clear_switch_reset() { riot[SWCHB & 0x7] |= 0x01; }
void clear_switch_select() { riot[SWCHB & 0x7] |= 0x02; }
void clear_joystick_0_right() { riot[SWCHA & 0x7] |= 0x80; }
void clear_joystick_0_left() { riot[SWCHA & 0x7] |= 0x40; }
void clear_joystick_0_down() { riot[SWCHA & 0x7] |= 0x20; }
void clear_joystick_0_up() { riot[SWCHA & 0x7] |= 0x10; }
void clear_joystick_1_right() { riot[SWCHA & 0x7] |= 0x08; }
void clear_joystick_1_left() { riot[SWCHA & 0x7] |= 0x04; }
void clear_joystick_1_down() { riot[SWCHA & 0x7] |= 0x02; }
void clear_joystick_1_up() { riot[SWCHA & 0x7] |= 0x01; }
void set_joystick_0_right() { riot[SWCHA & 0x7] &= 0x7f; }
void set_joystick_0_left() { riot[SWCHA & 0x7] &= 0xbf; }
void set_joystick_0_down() { riot[SWCHA & 0x7] &= 0xdf; }
void set_joystick_0_up() { riot[SWCHA & 0x7] &= 0xef; }
void set_joystick_1_right() { riot[SWCHA & 0x7] &= 0xf7; }
void set_joystick_1_left() { riot[SWCHA & 0x7] &= 0xfb; }
void set_joystick_1_down() { riot[SWCHA & 0x7] &= 0xfd; }
void set_joystick_1_up() { riot[SWCHA & 0x7] &= 0xfe; }
private:
const int TIM1T = 1;
const int TIM8T = 8;
const int TIM64T = 64;
const int T1024T = 1024;
const int TIM1T_SHIFT = 0;
const int TIM8T_SHIFT = 3;
const int TIM64T_SHIFT = 6;
const int T1024T_SHIFT = 10;
const int SWCHA = 0x280;
const int SWACNT = 0x281;
const int SWCHB = 0x282;
//const int SWBCNT = 0x281;
//const int INTIM = 0x284;
int prescale;
int prescale_shift;
int interrupt_timer = 255;
uint8_t riot[8];
uint8_t ram[256];
};
#endif
| [
"[email protected]"
] | |
08936bab1f3a1cb9a92601c0233f7974a56daaf6 | d67f747bbccde6dd7973878a1c54b76dc6c86ba6 | /include/stl2/detail/concepts/object.hpp | 014226f3919304bf6cc69900f6cc5e6c3b182655 | [
"NCSA",
"MIT",
"BSL-1.0",
"LicenseRef-scancode-mit-old-style",
"LicenseRef-scancode-other-permissive"
] | permissive | tahonermann/cmcstl2 | 45e9ad52ec2c28bda35b1865bd74479fe02b7a45 | a9481b26f43e912555159e70db2254e79af11d2e | refs/heads/master | 2020-06-12T15:38:43.838898 | 2017-01-24T16:11:35 | 2017-01-24T16:11:35 | 75,798,065 | 0 | 0 | null | 2016-12-07T04:05:26 | 2016-12-07T04:05:25 | null | UTF-8 | C++ | false | false | 3,396 | hpp | // cmcstl2 - A concept-enabled C++ standard library
//
// Copyright Casey Carter 2015
// Copyright Eric Niebler 2015
//
// Use, modification and distribution is subject to the
// Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
// Project home: https://github.com/caseycarter/cmcstl2
//
#ifndef STL2_DETAIL_CONCEPTS_OBJECT_HPP
#define STL2_DETAIL_CONCEPTS_OBJECT_HPP
#include <stl2/detail/fwd.hpp>
#include <stl2/detail/meta.hpp>
#include <stl2/detail/concepts/core.hpp>
#include <stl2/detail/concepts/object/assignable.hpp>
#include <stl2/detail/concepts/object/regular.hpp>
STL2_OPEN_NAMESPACE {
///////////////////////////////////////////////////////////////////////////
// __f [Implementation detail, at least for now]
//
// Utility alias that simplifies the specification of forwarding functions
// whose target will eventually accept a parameter by value. E.g., the
// range overload of find:
//
// template <InputRange Rng, class T, class Proj = identity>
// requires IndirectCallableRelation<equal_to<>,
// projected<iterator_t<Rng>, Proj>, const T*>()
// safe_iterator_t<Rng>
// find(Rng&& rng, const T& value, Proj proj = Proj{});
//
// can be implemented to perfect-forward to the iterator overload as:
//
// template <InputRange Rng, class T, class Proj = identity>
// requires IndirectCallableRelation<equal_to<>,
// projected<iterator_t<Rng>, __f<Proj>>, // NW: __f<Proj>
// const T*>()
// safe_iterator_t<Rng>
// find(Rng&& rng, const T& value, Proj&& proj = Proj{}) {
// return find(begin(rng), end(rng), value, forward<Proj>(proj));
// }
//
// __f<Proj> is an alias for the decayed type that will eventually
// be used in the target function, and its constraints ensure that
// the decayed type can in fact be constructed from the actual type.
//
template <class T>
requires models::Constructible<decay_t<T>, T>
using __f = decay_t<T>;
namespace ext {
///////////////////////////////////////////////////////////////////////////
// TriviallyFoo concepts
//
template <class T>
concept bool TriviallyDestructible() {
return Destructible<T>() &&
_Is<T, is_trivially_destructible>;
}
template <class T, class...Args>
concept bool TriviallyConstructible() {
return Constructible<T, Args...>() &&
_Is<T, is_trivially_constructible, Args...>;
}
template <class T>
concept bool TriviallyDefaultConstructible() {
return DefaultConstructible<T>() &&
_Is<T, is_trivially_default_constructible>;
}
template <class T>
concept bool TriviallyMoveConstructible() {
return MoveConstructible<T>() &&
_Is<T, is_trivially_move_constructible>;
}
template <class T>
concept bool TriviallyCopyConstructible() {
return CopyConstructible<T>() &&
TriviallyMoveConstructible<T>() &&
_Is<T, is_trivially_copy_constructible>;
}
template <class T>
concept bool TriviallyMovable() {
return Movable<T>() &&
TriviallyMoveConstructible<T>() &&
_Is<T, is_trivially_move_assignable>;
}
template <class T>
concept bool TriviallyCopyable() {
return Copyable<T>() &&
TriviallyMovable<T>() &&
TriviallyCopyConstructible<T>() &&
_Is<T, is_trivially_copy_assignable>;
}
}
} STL2_CLOSE_NAMESPACE
#endif
| [
"[email protected]"
] | |
ab48bfb2e747dec7376bb41bdc6eacfc5ab1ec16 | 389541f1c17f36e4be3ce15cf0455f0d7f2c259f | /Pongpol.cpp | 082d0731dcbb9167224782c276fe3dc0802d314d | [] | no_license | prumb2015/Pongpol-IT | e5e60cd2d4ca937a49f8751b2c3ffdffeb658f66 | 729015b3f76443333f4deb2f076724b5dba1027c | refs/heads/master | 2020-06-10T20:44:11.938393 | 2019-09-24T17:17:29 | 2019-09-24T17:17:29 | 193,740,927 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 274 | cpp | #include <iostream>
using namespace std;
int main()
{
int Cel,Fah;
cout << "Enter Celsius temperature:";
cin >> Cel;
cout <<"Fahrenheit = " <<1.8*Cel+32<<endl;
Fah=1.8*Cel+32;
cout << "Now weather in Thailand is ";
cout << ((Fah > 70)==0?"Cool":"Hot"<<endl;
} | [
"[email protected]"
] | |
56543629371149a12fce7a3cb7d43a18170ac0dd | 3f2a6b37008aedf900eab6cfaa39bca061526ffe | /Visual Studio 2015/Backup Files/ShortestPath/~AutoRecover.main.cpp | dde2cf22274579b62f08842cc703ee8e62bb3d7f | [] | no_license | stalcker23/Course | b823c3b8b7c6272cec7a1e83f4ae8446b27afa3b | 4dddcba4f2bdb99ccc06ff5da545c6e2b25797c8 | refs/heads/master | 2021-01-01T05:15:59.758990 | 2016-05-25T22:30:44 | 2016-05-25T22:30:44 | 57,152,054 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 2,179 | cpp | #include <stdio.h>
#include <conio.h>
#include <stdlib.h>
#include <time.h>
#include "windows.h"
#include <string>
#include "routine.cpp"
#include "FloydWarshall.h"
#include <omp.h>
#pragma comment(linker, "/STACK:500000")
using namespace std;
double LiToDouble (LARGE_INTEGER x) {
double result = ((double)x.HighPart) * 4.294967296E9 + (double)((x).LowPart);
return result;
}
double GetTime() {
LARGE_INTEGER lpFrequency, lpPerfomanceCount;
QueryPerformanceFrequency (&lpFrequency);
QueryPerformanceCounter (&lpPerfomanceCount);
return LiToDouble(lpPerfomanceCount)/LiToDouble(lpFrequency);
}
void Way(int *up, int i, int j, int Size)
{
int k = up[i * Size + j];
if (k != i) // путь существует
{
// и состоит более чем из двух вершин и проходит через вершину k, поэтому
Way(up, i, k, Size); // рекурсивно восстанавливаем путь между вершинами i и k
printf("%d ", k); // выводим вершину k
Way(up, k, j, Size); // и рекурсивно восстанавливаем путь между k и j
}
}
int main()
{
GraphMatrix *gr;
int *dist;
int *up;
double Start, Finish, Duration;
bool printOutput = true;
ParseGraph("rome99.txt", &gr);
dist = new int[gr->sizeV * gr->sizeV];
up = new int[gr->sizeV * gr->sizeV];
Start = GetTime();
FloydWarshall(gr, up, dist);
Finish = GetTime();
Way(up, 1, 2, 3353);
Duration = Finish - Start;
printf("Floyd-Warshall time: %f\n", Duration);
if (printOutput)
{
FILE *distFile = fopen("distFile.txt", "w");
FILE *pFile = fopen("pFile.txt", "w");
for (int i = 0; i < gr->sizeV; i++)
{
for (int j = 0; j < gr->sizeV; j++)
{
fprintf(distFile, "%d ", dist[i * gr->sizeV + j]);
fprintf(pFile, "%d", up[i * gr->sizeV + j]);
}
fprintf(distFile, "\n");
fprintf(pFile, "\n");
}
printf("File %s.txt written.\nFile %s.txt written.\n", "distFile", "pFile");
fclose(distFile);
fclose(pFile);
}
delete[] gr->column;
delete[] gr->pointerB;
delete[] gr->value;
delete gr;
delete [] dist;
delete [] up;
_getch();
return 0;
} | [
"[email protected]"
] | |
cfb1fb341b033fb0caf2dc0cb7ea4fc323e771f5 | 0c2d0bc0cd708cf89d1d717d5f2b8c1ddd7b9a9e | /LOTTO101.cpp | 1d1d7a8644dde9ffe222008a2c8331d769746043 | [] | no_license | axledg/BSIT302_PlatformTech_M1 | 997b60ff02d100681052a0d8af04eee0769d10db | 356e1e398fb447e1316448002fa54b14c0b4fdc9 | refs/heads/master | 2020-07-29T11:35:26.220583 | 2019-09-20T12:36:47 | 2019-09-20T12:36:47 | 209,784,805 | 0 | 0 | null | 2019-09-20T12:24:04 | 2019-09-20T12:24:04 | null | UTF-8 | C++ | false | false | 1,450 | cpp | #include <iostream>
#include <thread>
#include <atomic>
using namespace std;
atomic<bool> ready1(false);
atomic<bool> ready2(false);
atomic<bool> ready3(false);
atomic<int> counter1 (0);
atomic<int> counter2 (0);
atomic<int> counter3 (0);
void lotto1(int id) {
while (!ready1) {
this_thread::yield();
}
for (volatile int i=1; i<55; ++i) {
++counter1;
if(counter1 <= 6) {
cout << id;
}
}
}
void lotto2(int id) {
while (!ready2) {
this_thread::yield();
}
for (volatile int i=1; i<55; ++i) {
++counter2;
if(counter2 <= 6) {
cout << id;
}
}
}
void lotto3(int id) {
while (!ready3) {
this_thread::yield();
}
for (volatile int i=1; i<55; ++i) {
++counter3;
if(counter3 <= 6) {
cout << id;
}
}
}
int main ()
{
int i = 1;
thread threads1[55];
thread threads2[55];
thread threads3[55];
cout << "Lotto Winners!\n";
for (int i=1; i<7; ++i) threads1[i]=std::thread(lotto1,i);
cout << "\nFirst Winner: ";
ready1 = true;
threads1[i].join();
for (int i=1; i<7; ++i) threads2[i]=std::thread(lotto2,i);
cout << "\nSecond Winner: ";
ready2 = true;
threads2[i].join();
for (int i=1; i<7; ++i) threads3[i]=std::thread(lotto3,i);
cout << "\nThird Winner: ";
ready3 = true;
threads3[i].join();
cout << "\nCongratulations!!";
return 0;
}
| [
"[email protected]"
] | |
a86388054bc679be3544da7e61d1709eca221906 | c935886a521f76fe936b3323f16be43700b71fe4 | /src/mem/ruby/network/garnet/flexible-pipeline/GarnetNetwork.py.cc | efac6923496905e44e66dab103e502cebe00d4c2 | [] | no_license | oliverxyy/gem5-source-code-learning | 4dc9c81d08ff29b557570aeb72654f4d8a8fe47e | 6438cf07bd86942d0ed118035d398de254dac412 | refs/heads/master | 2020-04-06T06:56:18.547114 | 2016-09-06T07:22:49 | 2016-09-06T07:22:49 | 65,285,514 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,492 | cc | #include "sim/init.hh"
namespace {
const uint8_t data_m5_objects_GarnetNetwork[] = {
120,156,197,85,75,111,211,64,16,30,231,253,104,105,16,106,
15,92,240,1,164,168,18,49,162,170,196,91,168,84,66,92,
10,114,225,64,46,150,99,143,227,77,253,136,188,155,144,112,
45,39,254,52,204,172,237,52,105,43,65,37,68,227,120,52,
251,237,99,94,223,142,61,40,126,85,122,223,154,0,242,39,
41,62,253,13,136,0,62,23,154,145,107,21,136,42,16,87,
96,88,1,131,199,85,136,170,16,87,97,88,205,199,53,136,
106,16,215,96,88,163,113,29,176,10,129,1,126,3,126,0,
156,3,124,29,214,193,111,2,214,52,218,90,161,13,240,219,
128,21,141,118,86,104,19,252,46,156,246,183,200,29,241,139,
126,125,131,52,197,98,63,87,239,146,56,114,37,190,119,179,
4,213,9,170,111,105,118,150,79,117,243,41,225,217,233,76,
97,150,131,219,36,222,69,169,119,134,254,199,209,4,61,165,
248,236,124,119,190,206,91,79,198,17,39,227,152,20,4,24,
26,156,18,138,154,114,65,177,82,30,40,66,172,195,164,1,
216,132,73,139,51,113,78,96,107,13,108,115,58,24,236,128,
125,218,175,211,65,118,141,221,104,176,166,205,201,3,82,99,
140,173,108,54,90,90,73,30,128,53,214,14,89,65,132,11,
49,138,240,241,84,76,49,18,9,90,249,166,65,24,202,135,
180,111,46,50,53,115,35,211,11,221,36,193,72,154,83,204,
204,18,44,206,146,247,105,97,50,139,71,52,149,6,87,102,
251,156,38,213,34,225,56,137,27,163,227,168,142,30,196,169,
63,139,120,168,29,94,78,81,181,73,241,22,11,199,139,92,
41,245,42,30,133,232,250,152,41,142,237,147,155,185,177,226,
188,125,72,148,142,145,16,76,242,28,207,61,233,144,123,206,
156,44,171,11,159,156,52,112,10,159,156,210,39,109,137,65,
70,100,159,139,113,33,228,136,132,21,166,49,90,105,36,230,
152,45,150,75,107,154,165,99,178,109,141,49,62,124,44,149,
75,57,179,100,230,89,127,159,216,13,2,13,166,75,93,167,
71,108,239,14,137,134,145,63,91,70,155,94,181,183,226,76,
177,129,226,197,44,112,61,188,202,158,211,63,178,135,121,67,
96,179,228,77,107,141,55,237,53,176,3,116,157,24,236,50,
153,52,133,152,254,170,71,226,178,31,242,245,141,104,117,121,
59,19,108,159,235,120,108,138,196,204,48,114,149,72,19,83,
165,102,170,66,34,82,113,32,77,150,246,254,25,31,153,43,
182,14,174,201,130,153,105,51,31,108,38,156,221,45,111,207,
23,242,245,224,169,170,112,103,240,109,190,214,54,23,202,222,
97,209,219,96,204,127,165,13,87,100,192,246,122,23,180,169,
236,148,196,217,190,76,156,171,124,121,118,45,95,168,95,78,
234,204,154,162,201,52,74,164,86,146,162,185,34,197,46,155,
127,113,163,250,111,134,17,134,66,167,140,91,147,143,129,59,
139,148,57,154,5,1,85,76,138,239,248,210,124,66,133,247,
133,231,42,148,164,5,34,17,10,139,21,34,25,11,190,58,
146,239,72,166,187,149,89,154,49,41,197,99,148,253,214,53,
37,94,85,215,190,87,54,239,252,64,135,77,170,221,141,134,
193,7,58,197,97,183,83,102,246,231,57,219,235,172,202,220,
166,231,68,199,166,251,87,124,56,152,114,63,148,186,185,242,
40,75,23,75,155,191,66,54,179,214,174,150,95,3,205,25,
125,226,237,4,163,29,124,149,247,251,55,15,202,150,215,49,
58,70,143,159,202,94,123,175,251,27,163,85,11,207,
};
EmbeddedPython embedded_m5_objects_GarnetNetwork(
"m5/objects/GarnetNetwork.py",
"/home/oliverxyy/program/gem5-stable/src/mem/ruby/network/garnet/flexible-pipeline/GarnetNetwork.py",
"m5.objects.GarnetNetwork",
data_m5_objects_GarnetNetwork,
798,
2083);
} // anonymous namespace
| [
"[email protected]"
] | |
394b693d206d75ea9da541497bd38258a51c5e36 | e422060f5e4217fbca9fb7aa7c27e8cfc56382bf | /Vitis-AI-Library/libsrc/libdpfacelandmark/src/facelandmark_imp.hpp | a1b4a799883a489c83f4222c0a6f8c84c8776c69 | [
"Apache-2.0"
] | permissive | wangxd-xlnx/Vitis-AI | 44f65ed0f30cd39809b0bfbfe235a35257cf160c | 735838d395b163cdb75498d6d1697f5472ba0a67 | refs/heads/master | 2023-01-27T13:27:04.886094 | 2020-10-31T16:20:49 | 2020-10-31T16:20:49 | 237,871,092 | 0 | 0 | Apache-2.0 | 2020-02-03T02:35:16 | 2020-02-03T02:35:15 | null | UTF-8 | C++ | false | false | 1,185 | hpp | /*
* Copyright 2019 Xilinx Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include <xilinx/ai/configurable_dpu_task.hpp>
#include "xilinx/ai/facelandmark.hpp"
namespace xilinx {
namespace ai {
/// \brief class for evaluate the quality of a face
///
class FaceLandmarkImp : public xilinx::ai::TConfigurableDpuTask<FaceLandmark> {
public:
/// Destructor
explicit FaceLandmarkImp(const std::string &model_name, bool need_preprocess);
virtual ~FaceLandmarkImp();
/// Set an image and get running results of the network
/// @param input_image
virtual FaceLandmarkResult run(const cv::Mat &input_image) override;
};
/*!@} */
}
}
| [
"[email protected]"
] | |
d7ea9fbd043d5a23d7bc2a9613d50142e72d0e7d | cab8002d93435007e3854a83d1d64c33c47136de | /Bank C++/Konto.cpp | 804940d4b399f03ce27ca9f29b317c030031b946 | [] | no_license | mgluszkowska/Object-OrientedProgrammingBank | 664a80bcc6b9b445d286e24dacbd8c1331f61539 | 510bea1f509b6b069403af5d1bddab72088ca39a | refs/heads/master | 2022-01-31T23:36:15.441240 | 2019-07-22T14:38:49 | 2019-07-22T14:38:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 826 | cpp | #include <iostream>
#include <sstream>
#include <vector>
#include <string>
#include <algorithm>
#include <cstdlib>
#include "Konto.hpp"
using namespace std;
class Klient;
class Bank;
Konto::Konto(Bank* b, Klient* k)
{
saldo = 0;
wsk_na_bank = b;
wsk_na_klienta = k;
}
Konto::~Konto() {};
Konto::Klient* zwrocWskKlienta()
{
return wsk_na_klienta;
}
int Konto::zwrocNumerKonta()
{
return numer_konta;
}
float Konto::zwrocSaldo()
{
return saldo;
}
Konto::Bank* zwrocBank()
{
return wsk_na_bank;
}
void Konto::wplata(float m)
{
saldo = saldo + m;
cout.precision(2);
cout << fixed;
cout << endl << "Kwota " << m << " zl";
cout << " zostala wplacona na konto." << endl;
cout << "Stan konta po wplacie: " << saldo << " zl" << endl;
wsk_na_bank->dodajDoBudzetu(m);
}
};
| [
"[email protected]"
] | |
17b84383e3c881c38a3bd8490252d55c6687d73a | 3e24b7c5a8c5ed4a2d24c96029aa61a6feeb9d4d | /scoreboard.cpp | e18af584218775ba558e3350c57907fac7d5943b | [] | no_license | NathanielNavarrette/Pop-Game | f433926bd066438a00abffae74f518d65c4db2f7 | ebc3789f6d6081c2bbeca656a0be3f997c3e53bc | refs/heads/master | 2020-03-17T09:02:12.759207 | 2018-05-18T02:50:50 | 2018-05-18T02:50:50 | 133,458,783 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 967 | cpp | #include "scoreboard.h"
ScoreBoard::ScoreBoard(QWidget *parent) : QLCDNumber(parent)
{
connect(this->parent()->parent(), SIGNAL(mousepressing(int)), this, SLOT(addScore(int)));
connect(this->parent()->parent(), SIGNAL(resettingGame(bool)), this, SLOT(resetScore(bool)));
setSegmentStyle(Filled);
showScore();
setWindowTitle(tr("Score Board:"));
resize(150, 60);
}
void ScoreBoard::showScore()
{
QString text = QString::number(m_current_score);
display(text);
}
void ScoreBoard::addScore(int added_score)
{
m_current_score += added_score;
QString text = QString::number(m_current_score);
display(text);
//qDebug() << "Added score" << added_score;
}
void ScoreBoard::resetScore(bool check)
{
//qDebug() << "Reset score, scoreboard";
if(!check)
{
//qDebug() << "reset if inside";
this->m_current_score = 0;
}
QString text = QString::number(m_current_score);
display(text);
}
| [
"[email protected]"
] | |
3f704f3aa7c8c617fdaeb58ea8a670520a2c2c4c | ffa83215d4a44581f44173100331bda1900b24fe | /build/iOS/Preview/include/Fuse.Controls.TimePicker.h | b8e52925e342fe5ce174c3709378d959d5321fda | [] | no_license | imkimbosung/ARkit_fuse | 167d1c77ee497d5b626e69af16e0e84b13c54457 | 3b378d6408551d6867f2e5b3d7d8b6f5114e7f69 | refs/heads/master | 2020-04-19T02:34:33.970273 | 2019-02-04T08:26:54 | 2019-02-04T08:26:54 | 167,907,696 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,652 | h | // This file was generated based on /usr/local/share/uno/Packages/Fuse.Controls.TimePicker/1.10.0-rc1/TimePicker.Docs.uno.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Fuse.Animations.IResize.h>
#include <Fuse.Binding.h>
#include <Fuse.Controls.TimePickerBase.h>
#include <Fuse.Drawing.ISurfaceDrawable.h>
#include <Fuse.IActualPlacement.h>
#include <Fuse.INotifyUnrooted.h>
#include <Fuse.IProperties.h>
#include <Fuse.ISourceLocation.h>
#include <Fuse.ITemplateSource.h>
#include <Fuse.Node.h>
#include <Fuse.Scripting.IScriptObject.h>
#include <Fuse.Triggers.Actions.ICollapse.h>
#include <Fuse.Triggers.Actions.IHide.h>
#include <Fuse.Triggers.Actions.IShow.h>
#include <Fuse.Visual.h>
#include <Uno.Collections.ICollection-1.h>
#include <Uno.Collections.IEnumerable-1.h>
#include <Uno.Collections.IList-1.h>
#include <Uno.UX.IPropertyListener.h>
namespace g{namespace Fuse{namespace Controls{struct TimePicker;}}}
namespace g{namespace Uno{namespace UX{struct Selector;}}}
namespace g{
namespace Fuse{
namespace Controls{
// public partial sealed class TimePicker :57
// {
::g::Fuse::Controls::Panel_type* TimePicker_typeof();
void TimePicker__ctor_8_fn(TimePicker* __this);
void TimePicker__InitializeUX_fn(TimePicker* __this);
void TimePicker__New4_fn(TimePicker** __retval);
struct TimePicker : ::g::Fuse::Controls::TimePickerBase
{
static ::g::Uno::UX::Selector __selector0_;
static ::g::Uno::UX::Selector& __selector0() { return TimePicker_typeof()->Init(), __selector0_; }
void ctor_8();
void InitializeUX();
static TimePicker* New4();
};
// }
}}} // ::g::Fuse::Controls
| [
"[email protected]"
] | |
8903befc808e1330f4f0b1575eedfcbc647599a1 | bf9690816a258c889359fac4757f5603c8963091 | /FuSeBMC_instrument/external_include/cpp9/utility | c687c1d86974cc21a5c67f9e5927e26103485cbb | [
"MIT",
"GPL-2.0-only"
] | permissive | kaled-alshmrany/FuSeBMC | 4234b9c812b8cf520a4fdb8b6adc1fb2d30c0501 | 8b269e25ab51c2a9ef600b8291f9e1ac43cbcfe8 | refs/heads/master | 2023-05-12T01:40:26.574645 | 2023-05-01T11:50:16 | 2023-05-01T11:50:16 | 257,922,621 | 40 | 7 | MIT | 2021-11-19T10:23:23 | 2020-04-22T14:17:42 | Python | UTF-8 | C++ | false | false | 12,528 | // <utility> -*- C++ -*-
// Copyright (C) 2001-2019 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the
// Free Software Foundation; either version 3, or (at your option)
// any later version.
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// Under Section 7 of GPL version 3, you are granted additional
// permissions described in the GCC Runtime Library Exception, version
// 3.1, as published by the Free Software Foundation.
// You should have received a copy of the GNU General Public License and
// a copy of the GCC Runtime Library Exception along with this program;
// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
// <http://www.gnu.org/licenses/>.
/*
*
* Copyright (c) 1994
* Hewlett-Packard Company
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby granted without fee,
* provided that the above copyright notice appear in all copies and
* that both that copyright notice and this permission notice appear
* in supporting documentation. Hewlett-Packard Company makes no
* representations about the suitability of this software for any
* purpose. It is provided "as is" without express or implied warranty.
*
*
* Copyright (c) 1996,1997
* Silicon Graphics Computer Systems, Inc.
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby granted without fee,
* provided that the above copyright notice appear in all copies and
* that both that copyright notice and this permission notice appear
* in supporting documentation. Silicon Graphics makes no
* representations about the suitability of this software for any
* purpose. It is provided "as is" without express or implied warranty.
*/
/** @file include/utility
* This is a Standard C++ Library header.
*/
#ifndef _GLIBCXX_UTILITY
#define _GLIBCXX_UTILITY 1
#pragma GCC system_header
/**
* @defgroup utilities Utilities
*
* Components deemed generally useful. Includes pair, tuple,
* forward/move helpers, ratio, function object, metaprogramming and
* type traits, time, date, and memory functions.
*/
#include <bits/c++config.h>
#include <bits/stl_relops.h>
#include <bits/stl_pair.h>
#if __cplusplus >= 201103L
#include <type_traits>
#include <bits/move.h>
#include <initializer_list>
namespace std _GLIBCXX_VISIBILITY(default)
{
_GLIBCXX_BEGIN_NAMESPACE_VERSION
/// Finds the size of a given tuple type.
template<typename _Tp>
struct tuple_size;
// _GLIBCXX_RESOLVE_LIB_DEFECTS
// 2313. tuple_size should always derive from integral_constant<size_t, N>
// 2770. tuple_size<const T> specialization is not SFINAE compatible
template<typename _Tp,
typename _Up = typename remove_cv<_Tp>::type,
typename = typename enable_if<is_same<_Tp, _Up>::value>::type,
size_t = tuple_size<_Tp>::value>
using __enable_if_has_tuple_size = _Tp;
template<typename _Tp>
struct tuple_size<const __enable_if_has_tuple_size<_Tp>>
: public tuple_size<_Tp> { };
template<typename _Tp>
struct tuple_size<volatile __enable_if_has_tuple_size<_Tp>>
: public tuple_size<_Tp> { };
template<typename _Tp>
struct tuple_size<const volatile __enable_if_has_tuple_size<_Tp>>
: public tuple_size<_Tp> { };
/// Gives the type of the ith element of a given tuple type.
template<std::size_t __i, typename _Tp>
struct tuple_element;
// Duplicate of C++14's tuple_element_t for internal use in C++11 mode
template<std::size_t __i, typename _Tp>
using __tuple_element_t = typename tuple_element<__i, _Tp>::type;
template<std::size_t __i, typename _Tp>
struct tuple_element<__i, const _Tp>
{
typedef typename add_const<__tuple_element_t<__i, _Tp>>::type type;
};
template<std::size_t __i, typename _Tp>
struct tuple_element<__i, volatile _Tp>
{
typedef typename add_volatile<__tuple_element_t<__i, _Tp>>::type type;
};
template<std::size_t __i, typename _Tp>
struct tuple_element<__i, const volatile _Tp>
{
typedef typename add_cv<__tuple_element_t<__i, _Tp>>::type type;
};
#if __cplusplus >= 201402L
// The standard says this macro and alias template should be in <tuple>
// but we define them here, to be available when the partial specializations
// of tuple_element<pair<T,U>> and tuple_element<array<T,N>> are defined.
#define __cpp_lib_tuple_element_t 201402L
template<std::size_t __i, typename _Tp>
using tuple_element_t = typename tuple_element<__i, _Tp>::type;
#endif
// Various functions which give std::pair a tuple-like interface.
/// Partial specialization for std::pair
template<typename _T1, typename _T2>
struct __is_tuple_like_impl<std::pair<_T1, _T2>> : true_type
{ };
/// Partial specialization for std::pair
template<class _Tp1, class _Tp2>
struct tuple_size<std::pair<_Tp1, _Tp2>>
: public integral_constant<std::size_t, 2> { };
/// Partial specialization for std::pair
template<class _Tp1, class _Tp2>
struct tuple_element<0, std::pair<_Tp1, _Tp2>>
{ typedef _Tp1 type; };
/// Partial specialization for std::pair
template<class _Tp1, class _Tp2>
struct tuple_element<1, std::pair<_Tp1, _Tp2>>
{ typedef _Tp2 type; };
template<std::size_t _Int>
struct __pair_get;
template<>
struct __pair_get<0>
{
template<typename _Tp1, typename _Tp2>
static constexpr _Tp1&
__get(std::pair<_Tp1, _Tp2>& __pair) noexcept
{ return __pair.first; }
template<typename _Tp1, typename _Tp2>
static constexpr _Tp1&&
__move_get(std::pair<_Tp1, _Tp2>&& __pair) noexcept
{ return std::forward<_Tp1>(__pair.first); }
template<typename _Tp1, typename _Tp2>
static constexpr const _Tp1&
__const_get(const std::pair<_Tp1, _Tp2>& __pair) noexcept
{ return __pair.first; }
template<typename _Tp1, typename _Tp2>
static constexpr const _Tp1&&
__const_move_get(const std::pair<_Tp1, _Tp2>&& __pair) noexcept
{ return std::forward<const _Tp1>(__pair.first); }
};
template<>
struct __pair_get<1>
{
template<typename _Tp1, typename _Tp2>
static constexpr _Tp2&
__get(std::pair<_Tp1, _Tp2>& __pair) noexcept
{ return __pair.second; }
template<typename _Tp1, typename _Tp2>
static constexpr _Tp2&&
__move_get(std::pair<_Tp1, _Tp2>&& __pair) noexcept
{ return std::forward<_Tp2>(__pair.second); }
template<typename _Tp1, typename _Tp2>
static constexpr const _Tp2&
__const_get(const std::pair<_Tp1, _Tp2>& __pair) noexcept
{ return __pair.second; }
template<typename _Tp1, typename _Tp2>
static constexpr const _Tp2&&
__const_move_get(const std::pair<_Tp1, _Tp2>&& __pair) noexcept
{ return std::forward<const _Tp2>(__pair.second); }
};
template<std::size_t _Int, class _Tp1, class _Tp2>
constexpr typename tuple_element<_Int, std::pair<_Tp1, _Tp2>>::type&
get(std::pair<_Tp1, _Tp2>& __in) noexcept
{ return __pair_get<_Int>::__get(__in); }
template<std::size_t _Int, class _Tp1, class _Tp2>
constexpr typename tuple_element<_Int, std::pair<_Tp1, _Tp2>>::type&&
get(std::pair<_Tp1, _Tp2>&& __in) noexcept
{ return __pair_get<_Int>::__move_get(std::move(__in)); }
template<std::size_t _Int, class _Tp1, class _Tp2>
constexpr const typename tuple_element<_Int, std::pair<_Tp1, _Tp2>>::type&
get(const std::pair<_Tp1, _Tp2>& __in) noexcept
{ return __pair_get<_Int>::__const_get(__in); }
template<std::size_t _Int, class _Tp1, class _Tp2>
constexpr const typename tuple_element<_Int, std::pair<_Tp1, _Tp2>>::type&&
get(const std::pair<_Tp1, _Tp2>&& __in) noexcept
{ return __pair_get<_Int>::__const_move_get(std::move(__in)); }
#if __cplusplus > 201103L
#define __cpp_lib_tuples_by_type 201304
template <typename _Tp, typename _Up>
constexpr _Tp&
get(pair<_Tp, _Up>& __p) noexcept
{ return __p.first; }
template <typename _Tp, typename _Up>
constexpr const _Tp&
get(const pair<_Tp, _Up>& __p) noexcept
{ return __p.first; }
template <typename _Tp, typename _Up>
constexpr _Tp&&
get(pair<_Tp, _Up>&& __p) noexcept
{ return std::move(__p.first); }
template <typename _Tp, typename _Up>
constexpr const _Tp&&
get(const pair<_Tp, _Up>&& __p) noexcept
{ return std::move(__p.first); }
template <typename _Tp, typename _Up>
constexpr _Tp&
get(pair<_Up, _Tp>& __p) noexcept
{ return __p.second; }
template <typename _Tp, typename _Up>
constexpr const _Tp&
get(const pair<_Up, _Tp>& __p) noexcept
{ return __p.second; }
template <typename _Tp, typename _Up>
constexpr _Tp&&
get(pair<_Up, _Tp>&& __p) noexcept
{ return std::move(__p.second); }
template <typename _Tp, typename _Up>
constexpr const _Tp&&
get(const pair<_Up, _Tp>&& __p) noexcept
{ return std::move(__p.second); }
#define __cpp_lib_exchange_function 201304
/// Assign @p __new_val to @p __obj and return its previous value.
template <typename _Tp, typename _Up = _Tp>
inline _Tp
exchange(_Tp& __obj, _Up&& __new_val)
{ return std::__exchange(__obj, std::forward<_Up>(__new_val)); }
#endif
// Stores a tuple of indices. Used by tuple and pair, and by bind() to
// extract the elements in a tuple.
template<size_t... _Indexes> struct _Index_tuple { };
#ifdef __has_builtin
# if __has_builtin(__make_integer_seq)
# define _GLIBCXX_USE_MAKE_INTEGER_SEQ 1
# endif
#endif
// Builds an _Index_tuple<0, 1, 2, ..., _Num-1>.
template<size_t _Num>
struct _Build_index_tuple
{
#if _GLIBCXX_USE_MAKE_INTEGER_SEQ
template<typename, size_t... _Indices>
using _IdxTuple = _Index_tuple<_Indices...>;
using __type = __make_integer_seq<_IdxTuple, size_t, _Num>;
#else
using __type = _Index_tuple<__integer_pack(_Num)...>;
#endif
};
#if __cplusplus > 201103L
#define __cpp_lib_integer_sequence 201304
/// Class template integer_sequence
template<typename _Tp, _Tp... _Idx>
struct integer_sequence
{
typedef _Tp value_type;
static constexpr size_t size() noexcept { return sizeof...(_Idx); }
};
/// Alias template make_integer_sequence
template<typename _Tp, _Tp _Num>
using make_integer_sequence
#if _GLIBCXX_USE_MAKE_INTEGER_SEQ
= __make_integer_seq<integer_sequence, _Tp, _Num>;
#else
= integer_sequence<_Tp, __integer_pack(_Num)...>;
#endif
#undef _GLIBCXX_USE_MAKE_INTEGER_SEQ
/// Alias template index_sequence
template<size_t... _Idx>
using index_sequence = integer_sequence<size_t, _Idx...>;
/// Alias template make_index_sequence
template<size_t _Num>
using make_index_sequence = make_integer_sequence<size_t, _Num>;
/// Alias template index_sequence_for
template<typename... _Types>
using index_sequence_for = make_index_sequence<sizeof...(_Types)>;
#endif
#if __cplusplus > 201402L
struct in_place_t {
explicit in_place_t() = default;
};
inline constexpr in_place_t in_place{};
template<typename _Tp> struct in_place_type_t
{
explicit in_place_type_t() = default;
};
template<typename _Tp>
inline constexpr in_place_type_t<_Tp> in_place_type{};
template<size_t _Idx> struct in_place_index_t
{
explicit in_place_index_t() = default;
};
template<size_t _Idx>
inline constexpr in_place_index_t<_Idx> in_place_index{};
template<typename>
struct __is_in_place_type_impl : false_type
{ };
template<typename _Tp>
struct __is_in_place_type_impl<in_place_type_t<_Tp>> : true_type
{ };
template<typename _Tp>
struct __is_in_place_type
: public __is_in_place_type_impl<_Tp>
{ };
#define __cpp_lib_as_const 201510
template<typename _Tp>
constexpr add_const_t<_Tp>& as_const(_Tp& __t) noexcept { return __t; }
template<typename _Tp>
void as_const(const _Tp&&) = delete;
#endif // C++17
_GLIBCXX_END_NAMESPACE_VERSION
} // namespace
#endif
#endif /* _GLIBCXX_UTILITY */
| [
"[email protected]"
] | ||
49b296076d600336c3f46cd5db2fb0a2da989863 | b3ee4b3c63efdc6bc87adae7ca02da89bc6141dd | /ppmp/PPMP/Mangling/LeetSpeakChar.hpp | c52f436ff103e6f2fa5102c89de7c4702da7aefa | [] | no_license | el-bart/dictools | 1cfefac79c6729d806968f4a47fcf3eef40483bb | 620ef0a30de3b5b297db9c222c3d8714e97ad9d7 | refs/heads/master | 2021-01-20T10:35:48.739709 | 2012-08-08T12:04:46 | 2012-08-08T12:04:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,102 | hpp | /*
* LeetSpeakChar.hpp
*
*/
#ifndef INCLUDE_PPMP_MANGLING_LEETSPEAKCHAR_HPP_FILE
#define INCLUDE_PPMP_MANGLING_LEETSPEAKCHAR_HPP_FILE
#include <boost/mpl/for_each.hpp>
#include <boost/mpl/vector_c.hpp>
#include <boost/noncopyable.hpp>
#include <cassert>
namespace PPMP
{
namespace Mangling
{
/** \brief createor of objects' call chain.
*/
struct CallForwarder: private boost::noncopyable
{
/** \brief ensure polymorphic deallocation.
*/
virtual ~CallForwarder(void)
{
}
/** \brief forwards to next caller.
*/
virtual void processNext(void) = 0;
}; // struct CallForwarder
/** \brief proxy for updating LUT table entries.
*/
struct LUTUpdater: private boost::noncopyable
{
/** \brief ensure polymorphic deallocation.
*/
virtual ~LUTUpdater(void)
{
}
/** \brief update entry in LUT table.
* \param from char to be translated.
* \param to char to tranlsate to.
*/
virtual void updateLUT(char from, char to) = 0;
}; // struct LUTupdater
/** \brief converts given char to most common leet-speak equivalents.
*/
template<char C, typename TVectorC>
class LeetSpeakChar: public CallForwarder
{
public:
/** \brief create processor.
* \param next forward to next element in chain.
* \param lutUpdt proxy object for LUT updating.
*/
LeetSpeakChar(CallForwarder &next, LUTUpdater &lutUpdt):
f_(next, lutUpdt)
{
}
/** \brief entry point for processing.
*/
virtual void processNext(void)
{
boost::mpl::for_each<TVectorC>(f_);
}
private:
// helpoer object to do work in each call
struct FuncObj
{
FuncObj(CallForwarder &next, LUTUpdater &lutUpdt):
next_(&next),
lutUpdt_(&lutUpdt)
{
}
void operator()(const char t)
{
assert(lutUpdt_!=NULL);
assert(next_ !=NULL);
lutUpdt_->updateLUT(C, t); // overwite previous entry
next_->processNext(); // continue execution
}
CallForwarder *next_;
LUTUpdater *lutUpdt_;
}; // struct FuncObj
FuncObj f_;
}; // class LeetSpeakChar
} // namespace Mangling
} // namespace PPMP
#endif
| [
"el-bart@tweety"
] | el-bart@tweety |
8fbe46c54797e46fb3332c72bbe42e855bab8357 | 641fa8341d8c436ad24945bcbf8e7d7d1dd7dbb2 | /ash/common/system/chromeos/network/vpn_list_unittest.cc | 1da37228b64e5021623b7748e2831767f1170b13 | [
"BSD-3-Clause"
] | permissive | massnetwork/mass-browser | 7de0dfc541cbac00ffa7308541394bac1e945b76 | 67526da9358734698c067b7775be491423884339 | refs/heads/master | 2022-12-07T09:01:31.027715 | 2017-01-19T14:29:18 | 2017-01-19T14:29:18 | 73,799,690 | 4 | 4 | BSD-3-Clause | 2022-11-26T11:53:23 | 2016-11-15T09:49:29 | null | UTF-8 | C++ | false | false | 3,139 | cc | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/common/system/chromeos/network/vpn_list.h"
#include <algorithm>
#include <vector>
#include "ash/public/interfaces/vpn_list.mojom.h"
#include "base/macros.h"
#include "testing/gtest/include/gtest/gtest.h"
using ash::mojom::ThirdPartyVpnProvider;
using ash::mojom::ThirdPartyVpnProviderPtr;
namespace ash {
namespace {
class TestVpnListObserver : public VpnList::Observer {
public:
TestVpnListObserver() {}
~TestVpnListObserver() override {}
// VpnList::Observer:
void OnVPNProvidersChanged() override { change_count_++; }
int change_count_ = 0;
};
} // namespace
using VpnListTest = testing::Test;
TEST_F(VpnListTest, BuiltInProvider) {
VpnList vpn_list;
// The VPN list should only contain the built-in provider.
ASSERT_EQ(1u, vpn_list.vpn_providers().size());
VPNProvider provider = vpn_list.vpn_providers()[0];
EXPECT_FALSE(provider.third_party);
EXPECT_TRUE(provider.extension_id.empty());
}
TEST_F(VpnListTest, ThirdPartyProviders) {
VpnList vpn_list;
// The VPN list should only contain the built-in provider.
EXPECT_EQ(1u, vpn_list.vpn_providers().size());
// Add some third party (extension-backed) providers.
std::vector<ThirdPartyVpnProviderPtr> third_party_providers;
ThirdPartyVpnProviderPtr third_party1 = ThirdPartyVpnProvider::New();
third_party1->name = "name1";
third_party1->extension_id = "extension_id1";
third_party_providers.push_back(std::move(third_party1));
ThirdPartyVpnProviderPtr third_party2 = ThirdPartyVpnProvider::New();
third_party2->name = "name2";
third_party2->extension_id = "extension_id2";
third_party_providers.push_back(std::move(third_party2));
vpn_list.SetThirdPartyVpnProviders(std::move(third_party_providers));
// Mojo types will be converted to internal ash types.
VPNProvider provider1("extension_id1", "name1");
VPNProvider provider2("extension_id2", "name2");
// List contains the extension-backed providers. Order doesn't matter.
std::vector<VPNProvider> providers = vpn_list.vpn_providers();
EXPECT_EQ(3u, providers.size());
EXPECT_EQ(1u, std::count(providers.begin(), providers.end(), provider1));
EXPECT_EQ(1u, std::count(providers.begin(), providers.end(), provider2));
}
TEST_F(VpnListTest, Observers) {
VpnList vpn_list;
// Observers are not notified when they are added.
TestVpnListObserver observer;
vpn_list.AddObserver(&observer);
EXPECT_EQ(0, observer.change_count_);
// Add a third party (extension-backed) provider.
std::vector<ThirdPartyVpnProviderPtr> third_party_providers;
ThirdPartyVpnProviderPtr third_party1 = ThirdPartyVpnProvider::New();
third_party1->name = "name1";
third_party1->extension_id = "extension_id1";
third_party_providers.push_back(std::move(third_party1));
vpn_list.SetThirdPartyVpnProviders(std::move(third_party_providers));
// Observer was notified.
EXPECT_EQ(1, observer.change_count_);
vpn_list.RemoveObserver(&observer);
}
} // namespace ash
| [
"[email protected]"
] | |
6b85aed82161a3ae436d9a502934c858343df4ec | 974cc0cada56513c02cd214351fbeee742fb9f86 | /src/Tests2.h | c104a655739019e7a984c5afc36e20027c76aab9 | [] | no_license | ravik0/CS2303-Homework-4 | eafb2e70971f6e7699aa3bd3050dac681669ff3e | 83fa7f20917dc393aa60af43823a29b3b276df15 | refs/heads/master | 2020-04-24T16:29:43.119869 | 2019-02-27T14:31:46 | 2019-02-27T14:31:46 | 172,109,223 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 360 | h | /*
* Tests2.h
*
* Created on: Feb 7, 2019
* Author: student
*/
#ifndef TESTS2_H_
#define TESTS2_H_
class Tests2 {
public:
Tests2();
bool doTests();
bool testCounting();
bool testDoodlebugMove();
bool testDoodlebugBreed();
bool testDoodlebugStarve();
bool testAntMove();
bool testAntBreed();
virtual ~Tests2();
};
#endif /* TESTS2_H_ */
| [
"[email protected]"
] | |
736c9efaa05eb06342a77a300c6c6ad9e977e0eb | 2c23a5aa38d441d3426a63637ea03c0e6dd9c2aa | /utils/nao_shopping_list/src/nao_shopping_list_client.cpp | e7f09270645e348b6e069ff4883ea99f934ec442 | [] | no_license | bmw111/NAO-UPC | 5fa6e701c6d037d401ae34c2d28e7101465881a2 | 3aefc8857ff32d8898ccbd1348b2db037f0594b3 | refs/heads/master | 2021-05-09T03:29:36.258272 | 2015-03-04T22:20:27 | 2015-03-04T22:20:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 710 | cpp | // ROS
#include "ros/ros.h"
// CURRENT PROJECT
#include "shopping_list/checkObjects.h"
#include <cstdlib>
int main(int argc, char **argv)
{
ros::init(argc, argv, "shopping_list_checkObjects_client");
ros::NodeHandle nh;
ros::ServiceClient client = nh.serviceClient<shopping_list::checkObjects>("/shopping_list/checkObjects");
shopping_list::checkObjects srv;
if (client.call(srv))
{
int num_objects = srv.response.num_objects;
ROS_INFO("Found: %d objects", num_objects);
for (int i = 0; i < num_objects; ++i)
ROS_INFO("Object with ID %d", srv.response.shopping_list[i]);
}
else
{
ROS_ERROR("Failed to call service checkObjects");
return 1;
}
return 0;
}
| [
"[email protected]"
] | |
e6e011fa1cb01be1276af408f065d458485299a2 | 20ddc4f37798a759113743b5f69003fcc0600bc1 | /Bellman-Ford/Negative Cycle detection.cpp | 391c85fd461cedc15c925a18a337e172a724e782 | [] | no_license | Leodicap99/Graphs- | 013c7857c7b166e608e4e012491093fe9d5bb716 | d645ab84dc38df223d10ae9062e39f959b40c50c | refs/heads/master | 2022-07-21T21:38:31.105172 | 2020-05-20T14:58:54 | 2020-05-20T14:58:54 | 264,908,302 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 996 | cpp | void solve()
{
vector<int> d (n, INF);
d[v] = 0;
vector<int> p (n - 1);
int x;
for (int i=0; i<n; ++i)
{
x = -1;
for (int j=0; j<m; ++j)
if (d[e[j].a] < INF)
if (d[e[j].b] > d[e[j].a] + e[j].cost)
{
d[e[j].b] = max (-INF, d[e[j].a] + e[j].cost);
p[e[j].b] = e[j].a;
x = e[j].b;
}
}
if (x == -1)
cout << "No negative cycle from " << v;
else
{
int y = x;
for (int i=0; i<n; ++i)
y = p[y];
vector<int> path;
for (int cur=y; ; cur=p[cur])
{
path.push_back (cur);
if (cur == y && path.size() > 1)
break;
}
reverse (path.begin(), path.end());
cout << "Negative cycle: ";
for (size_t i=0; i<path.size(); ++i)
cout << path[i] << ' ';
}
} | [
"[email protected]"
] | |
abdc4d9571134d622710c2dc94929a446e08836a | 79aa1dbf1f1d1c2773852963f6ceaea8ce4d25af | /peeler-multimap.cpp | 4cc3b33e94797225ab6d5aa1519522b6f8790e9c | [] | no_license | hawkrives/peeler | 72c0a044d7e06f85bdf045edbf3bdc5eefb1be6a | ce0f55f304157764ee37dddc3b7d3c5b9d245d5e | refs/heads/master | 2016-09-06T06:10:02.068005 | 2015-03-05T06:20:48 | 2015-03-05T06:20:48 | 31,687,975 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,404 | cpp | #include <iostream>
#include <fstream>
#include <vector>
#include <algorithm>
#include <unordered_map>
#include <map>
#include <cstdlib>
#include "peeler-common.h"
using namespace std;
int hash_string(string input) {
size_t len = input.size();
size_t quadtrant = len / 4;
if (len < 4)
return asciiify(input);
string str1 = input.substr(quadtrant*0, quadtrant);
string str2 = input.substr(quadtrant*1, quadtrant);
string str3 = input.substr(quadtrant*2, quadtrant);
string str4 = input.substr(quadtrant*3, len);
int hash1 = asciiify(str1) * seeds[0];
int hash2 = asciiify(str2) * seeds[1];
int hash3 = asciiify(str3) * seeds[2];
int hash4 = asciiify(str4) * seeds[3];
int hash_sum = hash1 + hash2 + hash3 + hash4;
return hash_sum % nextPrime;
}
struct Dictionary {
vector<string> wordArray; // store the data
unordered_multimap<int, string> hashTable;
Dictionary(const char *filename); // constructor
bool inWordArray(string &s); // single query
void check(const char *filename); // multiple queries
};
void getWords(const char *filename, vector<string> &vec, unordered_multimap<int, string> &m) {
ifstream f(filename);
if ( !f.good() ) {
cerr << "Error: unable to open " << filename << endl;
exit(-1);
}
string s;
cerr << "reading/hashing file" << endl;
while ( f >> s ) {
vec.push_back(s);
int hash = hash_string(s);
m.insert(make_pair(hash, s));
}
cerr << "done with file; " << m.size() << endl;
}
Dictionary::Dictionary( const char *filename ) {
getWords(filename, wordArray, hashTable);
}
bool Dictionary::inWordArray(string &s) {
int hash = hash_string(s);
auto range = hashTable.equal_range(hash);
for (auto it = range.first; it != range.second; it++)
if (s == it->second)
return true;
return false;
}
void Dictionary::check( const char *filename ) {
vector<string> query;
getWords(filename, query);
cerr << "checking " << filename << endl;
start_timer(); // from elapsed_time.h
int counter = 0, n = query.size();
for ( int i = 0; i < n; ++i ) {
if ( !inWordArray(query[i]) ) {
++counter;
}
}
cerr << "Misspelled " << counter << " words." << endl;
double cycles = elapsed_time();
cerr << "Total cycles: " << cycles << endl;
}
int main(int argc, char **argv) {
if ( argc != 3 ) {
cerr << "Usage: spellCheck dictionaryFile inputFile" << endl;
exit(0);
}
Dictionary d(argv[1]);
d.check(argv[2]);
}
| [
"[email protected]"
] | |
d94d7cb2f24b073f2a6e74f9aa3702f6fe833e42 | 173a899ed4627fb7fd6313a0baeba438d3e6735e | /TransitionSlideBounce.h | 13df1074dde37d231b1f1a0c9399d0503b7af2a9 | [] | no_license | JinwooYang/ColorSlide | fc10df7b68ddf40d436d3e09dd7dd3fe7ff3029a | 941230852ee0a28ee283fc9e573c865572dea437 | refs/heads/master | 2021-05-30T05:23:33.358700 | 2015-08-05T11:10:05 | 2015-08-05T11:10:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,978 | h | #pragma once
#include "cocos2d.h"
class TransitionSlideBounceL
: public cocos2d::TransitionSlideInL
{
public:
TransitionSlideBounceL() {};
~TransitionSlideBounceL() {};
static TransitionSlideBounceL* create(float t, cocos2d::Scene* scene)
{
TransitionSlideBounceL* newScene = new (std::nothrow) TransitionSlideBounceL();
if (newScene && newScene->initWithDuration(t, scene))
{
newScene->autorelease();
return newScene;
}
CC_SAFE_DELETE(newScene);
return nullptr;
}
virtual cocos2d::ActionInterval* easeActionWithAction(cocos2d::ActionInterval* action) override
{
return cocos2d::EaseBounceOut::create(cocos2d::EaseInOut::create(action, 4.0f));
}
};
class TransitionSlideBounceR
: public cocos2d::TransitionSlideInR
{
public:
TransitionSlideBounceR() {};
~TransitionSlideBounceR() {};
static TransitionSlideBounceR* create(float t, cocos2d::Scene* scene)
{
TransitionSlideBounceR* newScene = new (std::nothrow) TransitionSlideBounceR();
if (newScene && newScene->initWithDuration(t, scene))
{
newScene->autorelease();
return newScene;
}
CC_SAFE_DELETE(newScene);
return nullptr;
}
virtual cocos2d::ActionInterval* easeActionWithAction(cocos2d::ActionInterval* action) override
{
return cocos2d::EaseBounceOut::create(cocos2d::EaseInOut::create(action, 4.0f));
}
};
class TransitionSlideBounceB
: public cocos2d::TransitionSlideInB
{
public:
TransitionSlideBounceB() {};
~TransitionSlideBounceB() {};
static TransitionSlideBounceB* create(float t, cocos2d::Scene* scene)
{
TransitionSlideBounceB* newScene = new (std::nothrow) TransitionSlideBounceB();
if (newScene && newScene->initWithDuration(t, scene))
{
newScene->autorelease();
return newScene;
}
CC_SAFE_DELETE(newScene);
return nullptr;
}
virtual cocos2d::ActionInterval* easeActionWithAction(cocos2d::ActionInterval* action) override
{
return cocos2d::EaseBounceOut::create(cocos2d::EaseInOut::create(action, 4.0f));
}
};
| [
"[email protected]"
] | |
b682693f77ef30e9bd5598978a12a9820c0afc7f | f77a2f9cf98e3697deaefa99c24e35ffb6689db8 | /toonz/sources/stdfx/igs_hsv_add.h | 3b884ed0c7c97dd735a75d3b0384f1077db4bec0 | [
"BSD-3-Clause"
] | permissive | Emasoft/opentoonz | 0adca8dbf43205549248adc9ebaa5ac63d407c03 | 663ee2ab9ef8fadc2f25b70535cb2e0a65250862 | refs/heads/master | 2021-01-17T14:19:51.163186 | 2016-04-21T10:04:28 | 2016-04-21T10:04:28 | 56,930,005 | 1 | 0 | null | 2016-04-23T16:46:07 | 2016-04-23T16:46:07 | null | UTF-8 | C++ | false | false | 1,537 | h | #ifndef igs_hsv_add_h
#define igs_hsv_add_h
#ifndef IGS_HSV_ADD_EXPORT
#define IGS_HSV_ADD_EXPORT
#endif
namespace igs
{
namespace hsv_add
{
IGS_HSV_ADD_EXPORT void change(
unsigned char *image_array, const int height, const int width, const int channels, const int bits
,
const unsigned char *noi_image_array, const int noi_height, const int noi_width, const int noi_channels, const int noi_bits
,
const unsigned char *ref /* 求める画像と同じ高、幅、channels数 */
,
const int ref_bits /* refがゼロのときはここもゼロ */
,
const int ref_mode /* 0=R,1=G,2=B,3=A,4=Luminance,5=Nothing */
,
const int xoffset /* 0 INT_MIN ... INT_MAX */
,
const int yoffset /* 0 INT_MIN ... INT_MAX */
,
const int from_rgba /* 0 0(R),1(G),2(B),3(A) */
,
const double offset /* 0.5 -1.0 ... 1.0 */
,
const double hue_scale /* 0.0 -1.0 ... 1.0 */
,
const double sat_scale /* 0.0 -1.0 ... 1.0 */
,
const double val_scale /* 1.0 -1.0 ... 1.0 */
,
const double alp_scale /* 0.0 -1.0 ... 1.0 */
,
const bool add_blend_sw
/* 効果(変化量)をアルファブレンドするか否かのスイッチ
add_blend_sw == true
アルファ値によりRGBの変化量を調整する
合成方法が
合成画 = 下絵 * (1 - alpha) + 上絵
の場合こちらを使う
add_blend_sw == false
アルファ値に関係なくRGBが変化する
合成方法が
合成画 = 下絵 * (1 - alpha) + 上絵 * alpha
の場合こちらを使う
*/
);
}
}
#endif /* !igs_hsv_add_h */
| [
"[email protected]"
] | |
3c11e50f14b592f38b710926a21b649350ea129d | a7ec9bc79b337a77875b7202bfb5f01c3fb79f9a | /Test_Ballistic/RPG7.h | aaf096cdef2e5a63d2e1b3e74f5404aa09b78899 | [] | no_license | ugrrelaise/TrajectoryInterface | 70760fe1fe2a6f8d73e38c9b47b53ec312e7f63b | 8619fa87ad665e86d55ec30860fef0327d26652f | refs/heads/master | 2020-12-23T00:27:54.990822 | 2020-01-29T13:56:11 | 2020-01-29T13:56:11 | 236,975,813 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 750 | h | #ifndef RPG7_H
#define RPG7_H
#include "Gun.h"
class LIB_BALLISTIC_EXPORT RPG7 :public Gun
{
public:
RPG7()
{
gun_dragfunction = "GL";
gun_muzzle_velocity = 115.0;
gun_balcoefficient = 1.6;
gun_heightofsight = 0.0;
gun_gunelevation1 = 0.00;
gun_airtemperature = 15.0;
gun_airpressure = 760.0;
gun_humidity = 60.0;
gun_altitude = 0;
gun_headwindspeed = 0.0;
gun_crosswindspeed = 0.0;
gun_grapXend = 900;
gun_step = 100;
gun_traj_range = 800;
gun_range2 = 400;
gun_wall = 25;
gun_scalingat45deg = 2773.08;
}
};
#endif // RPG7_H
| [
"[email protected]"
] | |
c49ae39e5258882c12be6e574c39d98fb071ac18 | 38b9daafe39f937b39eefc30501939fd47f7e668 | /tutorials/2WayCouplingOceanWave3D/basicTutorialwtProbesResultsWtPhiCoupled/8.6/alphaPhi | 4b39e079b2fa7a6b0c371347897b25d6ef0f7a4d | [] | no_license | rubynuaa/2-way-coupling | 3a292840d9f56255f38c5e31c6b30fcb52d9e1cf | a820b57dd2cac1170b937f8411bc861392d8fbaa | refs/heads/master | 2020-04-08T18:49:53.047796 | 2018-08-29T14:22:18 | 2018-08-29T14:22:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 526,557 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 3.0.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class surfaceScalarField;
location "8.6";
object alphaPhi;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 3 -1 0 0 0 0];
internalField nonuniform List<scalar>
42423
(
0.000206415
6.86471e-06
0.000197777
8.6382e-06
0.000187043
1.07333e-05
0.000174298
1.27456e-05
0.00016004
1.42578e-05
0.000144253
1.5787e-05
0.000127328
1.6925e-05
0.000109461
1.78668e-05
9.08979e-05
1.85631e-05
7.19793e-05
1.89185e-05
5.29061e-05
1.90732e-05
3.38959e-05
1.90103e-05
1.52528e-05
1.86431e-05
-2.87414e-06
1.81269e-05
-2.03474e-05
1.74733e-05
-3.70929e-05
1.67454e-05
-5.29701e-05
1.58772e-05
-6.78914e-05
1.49214e-05
-8.18548e-05
1.39633e-05
-9.48061e-05
1.29513e-05
-0.000106749
1.19431e-05
-0.000117722
1.09726e-05
-0.000127718
9.99614e-06
-0.000136792
9.07445e-06
-0.000144984
8.19136e-06
-0.000152325
7.34133e-06
-0.000158867
6.54194e-06
-0.000164642
5.77475e-06
-0.000169674
5.03265e-06
-0.000173988
4.31376e-06
-0.000177576
3.58801e-06
-0.000180438
2.86169e-06
-0.000182578
2.13977e-06
-0.000183981
1.40354e-06
-0.000184657
6.76161e-07
-0.000184547
-1.10272e-07
-0.000183526
-1.02133e-06
-0.000181673
-1.85297e-06
-0.000178973
-2.69929e-06
-0.000175342
-3.63198e-06
-0.000170858
-4.48326e-06
-0.000165375
-5.48291e-06
-0.000159041
-6.3344e-06
-0.000151846
-7.19513e-06
-0.00014362
-8.22577e-06
-0.000134523
-9.0974e-06
-0.000124581
-9.94171e-06
-0.000113632
-1.09494e-05
-0.000101687
-1.19446e-05
-8.89659e-05
-1.27213e-05
-7.52144e-05
-1.37516e-05
-6.08325e-05
-1.43819e-05
-4.56472e-05
-1.51854e-05
-2.9732e-05
-1.59153e-05
-1.33901e-05
-1.6342e-05
3.46928e-06
-1.68594e-05
2.07409e-05
-1.72718e-05
3.80625e-05
-1.73216e-05
5.55059e-05
-1.74436e-05
7.28195e-05
-1.73136e-05
8.99171e-05
-1.70978e-05
0.000106678
-1.67606e-05
0.000122778
-1.61005e-05
0.000138192
-1.54139e-05
0.00015277
-1.45786e-05
0.000166202
-1.3432e-05
0.000178422
-1.22201e-05
0.000189192
-1.07703e-05
0.000198389
-9.19638e-06
0.000205828
-7.43902e-06
0.000211286
-5.45792e-06
0.000214625
-3.33915e-06
0.000215744
-1.11918e-06
0.000214546
1.19793e-06
0.000210924
3.6222e-06
0.000204901
6.02213e-06
0.000196546
8.35516e-06
0.000185955
1.05913e-05
0.000173281
1.26742e-05
0.000158772
1.45087e-05
0.000142664
1.61075e-05
0.000125262
1.74025e-05
0.000106913
1.83492e-05
8.79143e-05
1.89983e-05
6.86378e-05
1.92765e-05
4.93588e-05
1.9279e-05
3.03859e-05
1.89729e-05
1.19928e-05
1.83931e-05
-5.63094e-06
1.76238e-05
-2.22862e-05
1.66553e-05
-3.78421e-05
1.55559e-05
-5.21865e-05
1.43444e-05
-6.52827e-05
1.30962e-05
-7.71258e-05
1.18431e-05
-8.76302e-05
1.05044e-05
-9.69041e-05
9.27393e-06
-0.000104935
8.03134e-06
-0.000111808
6.87279e-06
-0.000117608
5.79949e-06
-0.000122406
4.79851e-06
-0.000126282
3.87594e-06
-0.000129315
3.03323e-06
-0.000131569
2.25315e-06
-0.000133144
1.57536e-06
-0.000134076
9.31612e-07
-0.00013442
3.44671e-07
-0.000134202
-2.18634e-07
-0.000133447
-7.54771e-07
-0.000132172
-1.2743e-06
-0.000130384
-1.78878e-06
-0.000128124
-2.25997e-06
-0.000125341
-2.78258e-06
-0.000122031
-3.31055e-06
-0.000118221
-3.80971e-06
-0.000113867
-4.35344e-06
-0.000108968
-4.89904e-06
-0.000103507
-5.46119e-06
-9.74724e-05
-6.03489e-06
-9.08515e-05
-6.62092e-06
-8.36414e-05
-7.21017e-06
-7.58347e-05
-7.80666e-06
-6.74458e-05
-8.38893e-06
-5.8463e-05
-8.9828e-06
-4.89232e-05
-9.53984e-06
-3.88582e-05
-1.00651e-05
-2.828e-05
-1.05782e-05
-1.72572e-05
-1.10228e-05
-5.83285e-06
-1.14244e-05
5.91077e-06
-1.17437e-05
1.78977e-05
-1.1987e-05
3.00235e-05
-1.21259e-05
4.21853e-05
-1.21618e-05
5.42594e-05
-1.20742e-05
6.61512e-05
-1.18919e-05
7.76491e-05
-1.1498e-05
8.87e-05
-1.10509e-05
9.91453e-05
-1.04453e-05
0.000108833
-9.68794e-06
0.000117662
-8.82848e-06
0.000125496
-7.83414e-06
0.000132238
-6.74266e-06
0.000137792
-5.55393e-06
0.000142074
-4.28173e-06
0.000145054
-2.98042e-06
0.000146618
-1.56405e-06
0.000146843
-2.25108e-07
0.000145709
1.13432e-06
0.000143223
2.48601e-06
0.000139456
3.76679e-06
0.000134485
4.97121e-06
0.000128404
6.08078e-06
0.000121317
7.08711e-06
0.000113354
7.9624e-06
0.000104644
8.71047e-06
9.53388e-05
9.30514e-06
8.56038e-05
9.73491e-06
7.55264e-05
1.00774e-05
6.52728e-05
1.02535e-05
5.4994e-05
1.02788e-05
4.48133e-05
1.01807e-05
3.48399e-05
9.97331e-06
2.51779e-05
9.66201e-06
1.59128e-05
9.2651e-06
7.12075e-06
8.79204e-06
-1.13911e-06
8.25986e-06
-8.82027e-06
7.68115e-06
-1.58898e-05
7.06954e-06
-2.23181e-05
6.42824e-06
-2.80961e-05
5.77804e-06
-3.32039e-05
5.10781e-06
-3.76579e-05
4.45401e-06
-4.14598e-05
3.80187e-06
-4.46212e-05
3.16141e-06
-4.71661e-05
2.54487e-06
-4.91117e-05
1.94556e-06
-5.04805e-05
1.36886e-06
-5.13086e-05
8.28083e-07
-5.16225e-05
3.13902e-07
-5.14488e-05
-1.73713e-07
-5.08159e-05
-6.32886e-07
-4.97616e-05
-1.05431e-06
-4.83125e-05
-1.44911e-06
-4.64999e-05
-1.81258e-06
-4.43543e-05
-2.1456e-06
-4.19059e-05
-2.44847e-06
-3.91892e-05
-2.7167e-06
-3.62303e-05
-2.95889e-06
-3.30598e-05
-3.17044e-06
-2.97106e-05
-3.34928e-06
-2.62096e-05
-3.50094e-06
-2.25864e-05
-3.62318e-06
-1.88689e-05
-3.71757e-06
-1.5089e-05
-3.77988e-06
-1.1271e-05
-3.81803e-06
-7.44519e-06
-3.82578e-06
-3.63553e-06
-3.80965e-06
1.32771e-07
-3.76831e-06
3.83184e-06
-3.69907e-06
7.4419e-06
-3.61005e-06
1.0943e-05
-3.50111e-06
1.4307e-05
-3.36394e-06
1.75212e-05
-3.21426e-06
2.057e-05
-3.04883e-06
2.34327e-05
-2.86264e-06
2.60999e-05
-2.66721e-06
2.856e-05
-2.46009e-06
3.08059e-05
-2.24589e-06
3.28254e-05
-2.01947e-06
3.46167e-05
-1.79133e-06
3.61801e-05
-1.56339e-06
3.75069e-05
-1.32684e-06
3.86044e-05
-1.09745e-06
3.94741e-05
-8.69697e-07
4.0122e-05
-6.47941e-07
4.05528e-05
-4.30814e-07
4.07738e-05
-2.2096e-07
4.07977e-05
-2.39259e-08
4.06335e-05
1.64192e-07
4.02921e-05
3.41431e-07
3.97859e-05
5.06143e-07
3.91291e-05
6.56873e-07
3.83301e-05
7.98962e-07
3.74059e-05
9.24241e-07
3.63699e-05
1.03599e-06
3.52355e-05
1.1344e-06
3.40185e-05
1.217e-06
3.27269e-05
1.29158e-06
3.13782e-05
1.3487e-06
2.99857e-05
1.39246e-06
2.85583e-05
1.42744e-06
2.71097e-05
1.44864e-06
2.56503e-05
1.45936e-06
2.41914e-05
1.45884e-06
2.27391e-05
1.45236e-06
2.13054e-05
1.43373e-06
1.98941e-05
1.41123e-06
1.85145e-05
1.37959e-06
1.71735e-05
1.34109e-06
1.5873e-05
1.3005e-06
1.46195e-05
1.25349e-06
1.3417e-05
1.20246e-06
1.22663e-05
1.1507e-06
1.11726e-05
1.09366e-06
1.01329e-05
1.03971e-06
9.15306e-06
9.79877e-07
8.22966e-06
9.23397e-07
7.36488e-06
8.64781e-07
6.55897e-06
8.05911e-07
5.80856e-06
7.50411e-07
5.11567e-06
6.92882e-07
4.47524e-06
6.40438e-07
3.88916e-06
5.86076e-07
3.35254e-06
5.36621e-07
2.86595e-06
4.86587e-07
2.42495e-06
4.40997e-07
2.02867e-06
3.96278e-07
1.67487e-06
3.53802e-07
1.36014e-06
3.14736e-07
1.08403e-06
2.76104e-07
8.40405e-07
2.43626e-07
6.30098e-07
2.10307e-07
4.50148e-07
1.79949e-07
2.97125e-07
1.53023e-07
1.70324e-07
1.26801e-07
6.57025e-08
1.04621e-07
-1.79256e-08
8.36278e-08
-8.26053e-08
6.46795e-08
-1.30287e-07
4.76818e-08
-1.62814e-07
3.25268e-08
-1.81951e-07
1.9137e-08
-1.89356e-07
7.40481e-09
-1.86548e-07
-2.80886e-09
-1.74997e-07
-1.1551e-08
-1.55894e-07
-1.91036e-08
-1.30685e-07
-2.52083e-08
-1.00209e-07
-3.04766e-08
-6.57998e-08
-3.44091e-08
-2.82583e-08
-3.75416e-08
1.1855e-08
-4.01134e-08
5.34816e-08
-4.16266e-08
9.59931e-08
-4.25115e-08
1.38829e-07
-4.28358e-08
1.81473e-07
-4.26447e-08
2.23468e-07
-4.19946e-08
2.64421e-07
-4.09529e-08
3.03994e-07
-3.9573e-08
3.41897e-07
-3.79037e-08
3.77905e-07
-3.60075e-08
4.11828e-07
-3.39227e-08
4.43517e-07
-3.16899e-08
4.72862e-07
-2.93447e-08
4.99781e-07
-2.69193e-08
5.24224e-07
-2.44425e-08
5.46164e-07
-2.19404e-08
5.65601e-07
-1.9437e-08
5.82556e-07
-1.69552e-08
5.97075e-07
-1.45185e-08
6.09209e-07
-1.21336e-08
6.19027e-07
-9.81875e-09
6.26615e-07
-7.58723e-09
6.32065e-07
-5.45028e-09
6.35482e-07
-3.41728e-09
6.36979e-07
-1.49723e-09
6.36723e-07
2.56776e-10
6.34796e-07
1.92665e-09
6.3129e-07
3.50573e-09
6.26309e-07
4.98135e-09
6.19957e-07
6.35137e-09
6.12343e-07
7.61487e-09
6.0357e-07
8.7724e-09
5.93746e-07
9.82453e-09
5.82973e-07
1.07725e-08
5.71355e-07
1.16186e-08
5.58989e-07
1.23657e-08
5.45972e-07
1.30169e-08
5.32396e-07
1.35763e-08
5.18348e-07
1.40475e-08
5.03913e-07
1.4435e-08
4.8917e-07
1.47431e-08
4.74194e-07
1.49762e-08
4.59055e-07
1.51393e-08
4.43817e-07
1.52371e-08
4.28543e-07
1.52743e-08
4.13287e-07
1.52559e-08
3.98101e-07
1.51862e-08
3.83031e-07
1.507e-08
3.68119e-07
1.49116e-08
3.53404e-07
1.4715e-08
3.3892e-07
1.44844e-08
3.24696e-07
1.42237e-08
3.1076e-07
1.39365e-08
2.97133e-07
1.36266e-08
2.83836e-07
1.32972e-08
2.70885e-07
1.29513e-08
2.58293e-07
1.2592e-08
2.46071e-07
1.22218e-08
2.34228e-07
1.18433e-08
2.22769e-07
1.1459e-08
2.11698e-07
1.10709e-08
2.01017e-07
1.06812e-08
1.90725e-07
1.02917e-08
1.80821e-07
9.90415e-09
1.71301e-07
9.52011e-09
1.6216e-07
9.14093e-09
1.53392e-07
8.76789e-09
1.4499e-07
8.40214e-09
1.36945e-07
8.04468e-09
1.29248e-07
7.69649e-09
1.2189e-07
7.35842e-09
1.14859e-07
7.0314e-09
1.08143e-07
6.71602e-09
1.01731e-07
6.41125e-09
9.5616e-08
6.11527e-09
8.97893e-08
5.82672e-09
8.4244e-08
5.54532e-09
7.89727e-08
5.27125e-09
5.00509e-09
0.000206504
1.37305e-05
0.000197864
1.72787e-05
0.000187126
2.14714e-05
0.000174373
2.54982e-05
0.000160107
2.85236e-05
0.000144311
3.15838e-05
0.000127375
3.38609e-05
0.000109496
3.57452e-05
9.09214e-05
3.7138e-05
7.19915e-05
3.78485e-05
5.2903e-05
3.81617e-05
3.38849e-05
3.80283e-05
1.52336e-05
3.72945e-05
-2.89627e-06
3.62568e-05
-2.03771e-05
3.49541e-05
-3.71286e-05
3.3497e-05
-5.30086e-05
3.17572e-05
-6.79328e-05
2.98456e-05
-8.18989e-05
2.79294e-05
-9.48524e-05
2.59049e-05
-0.000106797
2.38876e-05
-0.000117771
2.19467e-05
-0.000127769
1.99947e-05
-0.000136843
1.81477e-05
-0.000145034
1.63828e-05
-0.000152378
1.46848e-05
-0.000158929
1.30933e-05
-0.00016472
1.15653e-05
-0.000169756
1.00693e-05
-0.000174056
8.6133e-06
-0.000177634
7.16613e-06
-0.000180496
5.72434e-06
-0.000182638
4.28154e-06
-0.000184051
2.81627e-06
-0.000184739
1.36426e-06
-0.000184624
-2.25249e-07
-0.000183599
-2.04646e-06
-0.000181744
-3.70825e-06
-0.000179045
-5.39781e-06
-0.000175414
-7.26297e-06
-0.000170933
-8.96502e-06
-0.000165453
-1.09627e-05
-0.000159115
-1.2672e-05
-0.000151918
-1.43923e-05
-0.00014369
-1.64543e-05
-0.000134589
-1.81979e-05
-0.000124646
-1.98853e-05
-0.000113691
-2.19046e-05
-0.000101752
-2.38831e-05
-8.90302e-05
-2.54437e-05
-7.52804e-05
-2.75015e-05
-6.08873e-05
-2.87751e-05
-4.56971e-05
-3.03758e-05
-2.97753e-05
-3.18372e-05
-1.34275e-05
-3.269e-05
3.44415e-06
-3.37312e-05
2.0728e-05
-3.45558e-05
3.80556e-05
-3.46494e-05
5.55008e-05
-3.4889e-05
7.2827e-05
-3.464e-05
8.99419e-05
-3.42128e-05
0.000106715
-3.35335e-05
0.000122822
-3.22082e-05
0.000138244
-3.08365e-05
0.000152834
-2.91679e-05
0.000166275
-2.68738e-05
0.000178508
-2.44527e-05
0.000189286
-2.15486e-05
0.000198491
-1.84013e-05
0.000205941
-1.48893e-05
0.000211395
-1.09122e-05
0.000214747
-6.69085e-06
0.000215884
-2.25648e-06
0.000214672
2.40975e-06
0.00021105
7.24403e-06
0.000205029
1.20432e-05
0.000196663
1.67213e-05
0.000186065
2.11887e-05
0.000173376
2.53637e-05
0.000158847
2.90377e-05
0.00014272
3.22335e-05
0.000125305
3.4818e-05
0.000106938
3.67162e-05
8.79177e-05
3.80187e-05
6.86213e-05
3.85728e-05
4.93293e-05
3.8571e-05
3.03429e-05
3.79593e-05
1.19388e-05
3.67972e-05
-5.69386e-06
3.52565e-05
-2.23618e-05
3.33232e-05
-3.79183e-05
3.11124e-05
-5.22711e-05
2.86972e-05
-6.53714e-05
2.61966e-05
-7.72106e-05
2.36823e-05
-8.77206e-05
2.10144e-05
-9.69883e-05
1.85416e-05
-0.000105015
1.60585e-05
-0.000111892
1.37494e-05
-0.000117686
1.15932e-05
-0.000122472
9.58488e-06
-0.000126346
7.74957e-06
-0.00012938
6.06771e-06
-0.000131629
4.50156e-06
-0.000133203
3.14956e-06
-0.000134131
1.85966e-06
-0.000134472
6.85985e-07
-0.00013425
-4.4075e-07
-0.000133493
-1.51143e-06
-0.000132221
-2.54685e-06
-0.000130425
-3.58452e-06
-0.000128165
-4.52037e-06
-0.000125384
-5.56323e-06
-0.00012207
-6.62502e-06
-0.000118261
-7.6186e-06
-0.000113907
-8.70753e-06
-0.000109006
-9.79977e-06
-0.000103547
-1.09205e-05
-9.75064e-05
-1.20752e-05
-9.08809e-05
-1.32464e-05
-8.36726e-05
-1.44185e-05
-7.58642e-05
-1.56151e-05
-6.74732e-05
-1.67799e-05
-5.84883e-05
-1.79678e-05
-4.8944e-05
-1.90842e-05
-3.88784e-05
-2.01308e-05
-2.82931e-05
-2.11636e-05
-1.72623e-05
-2.20537e-05
-5.83163e-06
-2.28551e-05
5.91686e-06
-2.34922e-05
1.79089e-05
-2.39791e-05
3.004e-05
-2.42571e-05
4.22072e-05
-2.43291e-05
5.42887e-05
-2.41557e-05
6.61805e-05
-2.37837e-05
7.76909e-05
-2.30085e-05
8.87496e-05
-2.21097e-05
9.92006e-05
-2.08964e-05
0.000108899
-1.93868e-05
0.000117737
-1.76665e-05
0.000125574
-1.5671e-05
0.000132316
-1.34849e-05
0.000137873
-1.11112e-05
0.000142157
-8.5659e-06
0.000145143
-5.96631e-06
0.000146707
-3.12789e-06
0.000146929
-4.47721e-07
0.00014579
2.27387e-06
0.000143302
4.97411e-06
0.000139531
7.53758e-06
0.000134554
9.94798e-06
0.000128468
1.21671e-05
0.000121374
1.41809e-05
0.000113404
1.5932e-05
0.000104686
1.74281e-05
9.53736e-05
1.8618e-05
8.5631e-05
1.94774e-05
7.55405e-05
2.01679e-05
6.52826e-05
2.05114e-05
5.49975e-05
2.05638e-05
4.48108e-05
2.03675e-05
3.48316e-05
1.99525e-05
2.51643e-05
1.93292e-05
1.58952e-05
1.85342e-05
7.09874e-06
1.75885e-05
-1.16442e-06
1.6523e-05
-8.84716e-06
1.53639e-05
-1.59193e-05
1.41417e-05
-2.23486e-05
1.28575e-05
-2.81297e-05
1.15591e-05
-3.32385e-05
1.02166e-05
-3.76925e-05
8.90805e-06
-4.14933e-05
7.60267e-06
-4.46542e-05
6.32227e-06
-4.71985e-05
5.08922e-06
-4.91432e-05
3.89023e-06
-5.05113e-05
2.73696e-06
-5.13383e-05
1.65502e-06
-5.16505e-05
6.26071e-07
-5.14755e-05
-3.48677e-07
-5.0841e-05
-1.26736e-06
-4.97853e-05
-2.11005e-06
-4.83346e-05
-2.89977e-06
-4.65204e-05
-3.62681e-06
-4.43731e-05
-4.29287e-06
-4.19229e-05
-4.89872e-06
-3.92044e-05
-5.43523e-06
-3.62436e-05
-5.91967e-06
-3.30715e-05
-6.34254e-06
-2.97206e-05
-6.70014e-06
-2.62176e-05
-7.00398e-06
-2.25927e-05
-7.24802e-06
-1.88735e-05
-7.43679e-06
-1.50917e-05
-7.5617e-06
-1.12721e-05
-7.63765e-06
-7.44452e-06
-7.65335e-06
-3.63621e-06
-7.61797e-06
1.36106e-07
-7.54062e-06
3.83741e-06
-7.40038e-06
7.44905e-06
-7.22169e-06
1.09514e-05
-7.00351e-06
1.43167e-05
-6.72923e-06
1.75323e-05
-6.42981e-06
2.05823e-05
-6.09887e-06
2.34458e-05
-5.7261e-06
2.61139e-05
-5.3353e-06
2.85747e-05
-4.92098e-06
3.08214e-05
-4.49257e-06
3.28412e-05
-4.03925e-06
3.4633e-05
-3.58311e-06
3.61968e-05
-3.12719e-06
3.75236e-05
-2.65363e-06
3.8621e-05
-2.19493e-06
3.94907e-05
-1.73937e-06
4.01392e-05
-1.29645e-06
4.0569e-05
-8.60557e-07
4.07898e-05
-4.41837e-07
4.08131e-05
-4.72104e-08
4.06481e-05
3.29225e-07
4.03061e-05
6.83375e-07
3.97996e-05
1.01266e-06
3.91419e-05
1.31457e-06
3.8342e-05
1.5989e-06
3.74171e-05
1.84914e-06
3.63803e-05
2.07274e-06
3.52452e-05
2.26956e-06
3.40275e-05
2.43467e-06
3.2735e-05
2.58408e-06
3.13856e-05
2.69808e-06
2.99922e-05
2.78589e-06
2.85642e-05
2.85546e-06
2.71149e-05
2.89795e-06
2.56549e-05
2.91929e-06
2.41952e-05
2.91862e-06
2.27424e-05
2.90515e-06
2.13082e-05
2.86793e-06
1.98963e-05
2.82307e-06
1.85163e-05
2.7596e-06
1.71746e-05
2.6828e-06
1.58738e-05
2.60126e-06
1.46201e-05
2.50723e-06
1.34171e-05
2.40543e-06
1.22662e-05
2.30162e-06
1.11724e-05
2.18749e-06
1.01324e-05
2.07974e-06
9.15236e-06
1.95987e-06
8.22874e-06
1.84701e-06
7.36389e-06
1.72963e-06
6.55767e-06
1.61214e-06
5.80732e-06
1.50076e-06
5.11444e-06
1.38576e-06
4.47388e-06
1.281e-06
3.88785e-06
1.17211e-06
3.35115e-06
1.07332e-06
2.86476e-06
9.72975e-07
2.4236e-06
8.82155e-07
2.02756e-06
7.9232e-07
1.67356e-06
7.07796e-07
1.35891e-06
6.29388e-07
1.08268e-06
5.52329e-07
8.3927e-07
4.8704e-07
6.29236e-07
4.2034e-07
4.49077e-07
3.60108e-07
2.9618e-07
3.05919e-07
1.69582e-07
2.53399e-07
6.48266e-08
2.09376e-07
-1.86721e-08
1.67126e-07
-8.32837e-08
1.29291e-07
-1.30901e-07
9.52987e-08
-1.63365e-07
6.49902e-08
-1.82441e-07
3.82125e-08
-1.89788e-07
1.47517e-08
-1.86924e-07
-5.67321e-09
-1.75322e-07
-2.31535e-08
-1.5617e-07
-3.82554e-08
-1.30915e-07
-5.04639e-08
-1.0039e-07
-6.10014e-08
-6.59489e-08
-6.88506e-08
-2.8364e-08
-7.51267e-08
1.1773e-08
-8.02507e-08
5.34231e-08
-8.32768e-08
9.5958e-08
-8.50467e-08
1.38814e-07
-8.56921e-08
1.81477e-07
-8.53081e-08
2.23488e-07
-8.40055e-08
2.64455e-07
-8.192e-08
3.04041e-07
-7.91586e-08
3.41955e-07
-7.58181e-08
3.77971e-07
-7.20238e-08
4.11902e-07
-6.7853e-08
4.43597e-07
-6.33857e-08
4.72947e-07
-5.86944e-08
4.9987e-07
-5.38425e-08
5.24316e-07
-4.8888e-08
5.46258e-07
-4.3883e-08
5.65697e-07
-3.88755e-08
5.82653e-07
-3.39113e-08
5.97172e-07
-2.90373e-08
6.09305e-07
-2.42666e-08
6.19122e-07
-1.96365e-08
6.26708e-07
-1.51732e-08
6.32157e-07
-1.08989e-08
6.35572e-07
-6.83254e-09
6.37067e-07
-2.99219e-09
6.36808e-07
5.15737e-10
6.34879e-07
3.8557e-09
6.31371e-07
7.01405e-09
6.26387e-07
9.96549e-09
6.20032e-07
1.27057e-08
6.12414e-07
1.52328e-08
6.03639e-07
1.7548e-08
5.93811e-07
1.96524e-08
5.83035e-07
2.15483e-08
5.71413e-07
2.32407e-08
5.59044e-07
2.47349e-08
5.46023e-07
2.60373e-08
5.32444e-07
2.7156e-08
5.18393e-07
2.80984e-08
5.03954e-07
2.88734e-08
4.89208e-07
2.94895e-08
4.74229e-07
2.99556e-08
4.59086e-07
3.02818e-08
4.43846e-07
3.04773e-08
4.28569e-07
3.05516e-08
4.1331e-07
3.05145e-08
3.98121e-07
3.03751e-08
3.83049e-07
3.01426e-08
3.68135e-07
2.98255e-08
3.53417e-07
2.94322e-08
3.38931e-07
2.89709e-08
3.24705e-07
2.84493e-08
3.10767e-07
2.78748e-08
2.97139e-07
2.72548e-08
2.8384e-07
2.65958e-08
2.70887e-07
2.5904e-08
2.58294e-07
2.51852e-08
2.46071e-07
2.44447e-08
2.34227e-07
2.36877e-08
2.22767e-07
2.29189e-08
2.11695e-07
2.21426e-08
2.01013e-07
2.13631e-08
1.90721e-07
2.05841e-08
1.80816e-07
1.98089e-08
1.71295e-07
1.90407e-08
1.62154e-07
1.82823e-08
1.53386e-07
1.75362e-08
1.44983e-07
1.68046e-08
1.36938e-07
1.60897e-08
1.29241e-07
1.53933e-08
1.21883e-07
1.47171e-08
1.14851e-07
1.40631e-08
1.08135e-07
1.34323e-08
1.01723e-07
1.28228e-08
9.56074e-08
1.22308e-08
8.97804e-08
1.16537e-08
8.42348e-08
1.10909e-08
7.89632e-08
1.05428e-08
1.00107e-08
0.000206676
2.06059e-05
0.000198023
2.59312e-05
0.000187271
3.22242e-05
0.000174501
3.82681e-05
0.000160216
4.2808e-05
0.0001444
4.74004e-05
0.000127443
5.08178e-05
0.000109544
5.36445e-05
9.09485e-05
5.5733e-05
7.19993e-05
5.67977e-05
5.28845e-05
5.72766e-05
3.38546e-05
5.70582e-05
1.51901e-05
5.5959e-05
-2.94875e-06
5.43956e-05
-2.04413e-05
5.24467e-05
-3.72045e-05
5.02601e-05
-5.30951e-05
4.76478e-05
-6.80276e-05
4.47781e-05
-8.19996e-05
4.19014e-05
-9.49554e-05
3.88606e-05
-0.0001069
3.5832e-05
-0.000117874
3.29207e-05
-0.000127876
2.99971e-05
-0.000136946
2.72179e-05
-0.000145138
2.45742e-05
-0.000152482
2.20288e-05
-0.000159027
1.96386e-05
-0.000164806
1.73441e-05
-0.000169837
1.51007e-05
-0.000174141
1.29175e-05
-0.000177727
1.07516e-05
-0.000180601
8.59836e-06
-0.000182755
6.43604e-06
-0.000184169
4.22996e-06
-0.000184831
2.02606e-06
-0.000184698
-3.57697e-07
-0.000183678
-3.06638e-06
-0.000181821
-5.56536e-06
-0.000179123
-8.09643e-06
-0.000175492
-1.08936e-05
-0.000171012
-1.34455e-05
-0.000165536
-1.64386e-05
-0.000159195
-1.90131e-05
-0.000151994
-2.15928e-05
-0.000143764
-2.46848e-05
-0.000134662
-2.72994e-05
-0.000124717
-2.9831e-05
-0.000113757
-3.28644e-05
-0.000101826
-3.58143e-05
-8.91013e-05
-3.81685e-05
-7.53521e-05
-4.12508e-05
-6.0947e-05
-4.31803e-05
-4.57517e-05
-4.55713e-05
-2.98212e-05
-4.77679e-05
-1.34674e-05
-4.9044e-05
3.40908e-06
-5.06079e-05
2.06985e-05
-5.18453e-05
3.80336e-05
-5.19847e-05
5.54908e-05
-5.23464e-05
7.2825e-05
-5.19744e-05
8.99482e-05
-5.13361e-05
0.000106737
-5.03227e-05
0.000122856
-4.83274e-05
0.000138295
-4.62754e-05
0.000152903
-4.37761e-05
0.000166358
-4.03291e-05
0.000178606
-3.67005e-05
0.0001894
-3.23431e-05
0.000198619
-2.76205e-05
0.000206084
-2.23547e-05
0.000211555
-1.63833e-05
0.000214918
-1.00536e-05
0.000216073
-3.41117e-06
0.00021485
3.63254e-06
0.000211227
1.0867e-05
0.000205211
1.80591e-05
0.000196842
2.509e-05
0.000186231
3.17995e-05
0.000173521
3.80737e-05
0.000158967
4.35921e-05
0.000142818
4.8382e-05
0.000125374
5.22626e-05
0.000106981
5.51084e-05
8.79427e-05
5.70574e-05
6.8618e-05
5.78976e-05
4.92991e-05
5.78898e-05
3.0291e-05
5.69674e-05
1.18776e-05
5.52105e-05
-5.77441e-06
5.29086e-05
-2.24622e-05
5.0011e-05
-3.80123e-05
4.66625e-05
-5.23746e-05
4.30595e-05
-6.54827e-05
3.93048e-05
-7.7321e-05
3.55205e-05
-8.78268e-05
3.15202e-05
-9.70837e-05
2.77985e-05
-0.000105102
2.40767e-05
-0.000111979
2.06269e-05
-0.000117762
1.73757e-05
-0.000122545
1.43682e-05
-0.000126417
1.16214e-05
-0.000129448
9.09873e-06
-0.000131684
6.7378e-06
-0.000133253
4.7185e-06
-0.000134176
2.78255e-06
-0.000134513
1.02267e-06
-0.000134289
-6.64226e-07
-0.000133534
-2.26673e-06
-0.00013226
-3.82069e-06
-0.000130462
-5.38234e-06
-0.000128206
-6.77623e-06
-0.000125425
-8.34518e-06
-0.000122108
-9.94167e-06
-0.000118304
-1.14227e-05
-0.000113949
-1.30623e-05
-0.000109052
-1.46972e-05
-0.00010359
-1.63823e-05
-9.75489e-05
-1.81161e-05
-9.09291e-05
-1.98663e-05
-8.37187e-05
-2.1629e-05
-7.59098e-05
-2.3424e-05
-6.75175e-05
-2.51722e-05
-5.85336e-05
-2.69518e-05
-4.89772e-05
-2.86406e-05
-3.89162e-05
-3.01918e-05
-2.83293e-05
-3.17505e-05
-1.72935e-05
-3.30896e-05
-5.85736e-06
-3.42913e-05
5.89978e-06
-3.52494e-05
1.79014e-05
-3.59808e-05
3.00422e-05
-3.63979e-05
4.22184e-05
-3.65053e-05
5.43133e-05
-3.62507e-05
6.62059e-05
-3.56765e-05
7.77353e-05
-3.45379e-05
8.88058e-05
-3.31803e-05
9.92633e-05
-3.1354e-05
0.000108976
-2.90993e-05
0.000117818
-2.65086e-05
0.000125667
-2.35198e-05
0.00013242
-2.0238e-05
0.000137983
-1.66747e-05
0.000142269
-1.28521e-05
0.000145247
-8.94398e-06
0.000146826
-4.70723e-06
0.000147042
-6.64156e-07
0.000145893
3.42362e-06
0.000143401
7.46532e-06
0.000139626
1.13126e-05
0.000134641
1.49328e-05
0.000128546
1.82629e-05
0.000121442
2.12844e-05
0.000113463
2.39112e-05
0.000104734
2.61568e-05
9.54111e-05
2.79408e-05
8.56578e-05
2.92307e-05
7.55476e-05
3.02781e-05
6.52816e-05
3.07774e-05
5.4988e-05
3.08574e-05
4.47932e-05
3.05622e-05
3.48057e-05
2.994e-05
2.51315e-05
2.90034e-05
1.58576e-05
2.78081e-05
7.05546e-06
2.63906e-05
-1.2111e-06
2.47895e-05
-8.89645e-06
2.30492e-05
-1.59711e-05
2.12164e-05
-2.24013e-05
1.92876e-05
-2.81809e-05
1.73387e-05
-3.32909e-05
1.53267e-05
-3.77442e-05
1.33612e-05
-4.15442e-05
1.14027e-05
-4.47034e-05
9.48152e-06
-4.72466e-05
7.63235e-06
-4.91894e-05
5.83305e-06
-5.05557e-05
4.10329e-06
-5.1381e-05
2.48032e-06
-5.16893e-05
9.34326e-07
-5.15111e-05
-5.26909e-07
-5.08742e-05
-1.90425e-06
-4.98162e-05
-3.16807e-06
-4.8363e-05
-4.35296e-06
-4.65462e-05
-5.44362e-06
-4.43968e-05
-6.44227e-06
-4.19442e-05
-7.35131e-06
-3.9223e-05
-8.15638e-06
-3.62601e-05
-8.88263e-06
-3.30849e-05
-9.51774e-06
-2.97323e-05
-1.00527e-05
-2.6227e-05
-1.05093e-05
-2.25998e-05
-1.08752e-05
-1.88786e-05
-1.1158e-05
-1.50943e-05
-1.1346e-05
-1.12726e-05
-1.14594e-05
-7.44291e-06
-1.1483e-05
-3.63295e-06
-1.14279e-05
1.40754e-07
-1.13143e-05
3.84465e-06
-1.11043e-05
7.45819e-06
-1.08352e-05
1.09609e-05
-1.05062e-05
1.43288e-05
-1.00972e-05
1.75459e-05
-9.64688e-06
2.05973e-05
-9.15023e-06
2.34616e-05
-8.59041e-06
2.61306e-05
-8.00431e-06
2.85922e-05
-7.3826e-06
3.08396e-05
-6.73999e-06
3.28594e-05
-6.05905e-06
3.46515e-05
-5.37522e-06
3.62143e-05
-4.68999e-06
3.7542e-05
-3.98126e-06
3.86393e-05
-3.29223e-06
3.95086e-05
-2.60874e-06
4.01566e-05
-1.94444e-06
4.05851e-05
-1.28909e-06
4.08056e-05
-6.6233e-07
4.08281e-05
-6.96325e-08
4.0662e-05
4.9529e-07
4.03192e-05
1.02614e-06
3.98125e-05
1.51935e-06
3.91531e-05
1.97399e-06
3.83517e-05
2.40032e-06
3.74259e-05
2.77494e-06
3.63881e-05
3.11053e-06
3.52519e-05
3.40575e-06
3.40328e-05
3.65373e-06
3.27396e-05
3.87734e-06
3.13894e-05
4.04823e-06
2.99946e-05
4.18074e-06
2.85659e-05
4.28416e-06
2.71158e-05
4.34805e-06
2.56554e-05
4.37966e-06
2.41943e-05
4.37978e-06
2.2741e-05
4.35838e-06
2.13064e-05
4.30259e-06
1.98938e-05
4.2356e-06
1.85135e-05
4.13991e-06
1.71711e-05
4.02526e-06
1.58702e-05
3.90217e-06
1.46165e-05
3.76093e-06
1.34128e-05
3.60905e-06
1.22619e-05
3.45258e-06
1.1167e-05
3.28234e-06
1.01278e-05
3.11897e-06
9.14785e-06
2.9398e-06
8.22414e-06
2.77072e-06
7.3595e-06
2.59426e-06
6.55297e-06
2.41867e-06
5.80289e-06
2.25084e-06
5.11025e-06
2.0784e-06
4.46968e-06
1.92157e-06
3.8839e-06
1.75789e-06
3.34724e-06
1.60998e-06
2.86114e-06
1.45908e-06
2.42008e-06
1.32321e-06
2.02495e-06
1.18745e-06
1.67039e-06
1.06235e-06
1.35603e-06
9.43756e-07
1.07933e-06
8.29027e-07
8.36711e-07
7.29657e-07
6.2766e-07
6.2939e-07
4.46808e-07
5.40959e-07
2.94181e-07
4.58545e-07
1.67816e-07
3.79763e-07
6.30636e-08
3.14128e-07
-2.01721e-08
2.50361e-07
-8.46253e-08
1.93744e-07
-1.32096e-07
1.42769e-07
-1.6442e-07
9.73142e-08
-1.83365e-07
5.71576e-08
-1.90591e-07
2.19772e-08
-1.87616e-07
-8.64909e-09
-1.75911e-07
-3.48582e-08
-1.56667e-07
-5.75002e-08
-1.31321e-07
-7.58102e-08
-1.00706e-07
-9.16165e-08
-6.62015e-08
-1.03355e-07
-2.85419e-08
-1.12786e-07
1.16521e-08
-1.20445e-07
5.33518e-08
-1.24977e-07
9.59337e-08
-1.27629e-07
1.38829e-07
-1.28588e-07
1.81527e-07
-1.28006e-07
2.23568e-07
-1.26047e-07
2.64561e-07
-1.22913e-07
3.04168e-07
-1.18766e-07
3.42101e-07
-1.13751e-07
3.78132e-07
-1.08055e-07
4.12074e-07
-1.01795e-07
4.43778e-07
-9.50897e-08
4.73133e-07
-8.80499e-08
5.00061e-07
-8.07697e-08
5.24508e-07
-7.33357e-08
5.46451e-07
-6.58259e-08
5.65888e-07
-5.83126e-08
5.82842e-07
-5.08649e-08
5.97357e-07
-4.35525e-08
6.09485e-07
-3.63944e-08
6.19296e-07
-2.9448e-08
6.26875e-07
-2.27521e-08
6.32316e-07
-1.63398e-08
6.35723e-07
-1.02394e-08
6.37209e-07
-4.47856e-09
6.36942e-07
7.829e-10
6.35005e-07
5.79309e-09
6.31488e-07
1.05309e-08
6.26495e-07
1.49582e-08
6.20132e-07
1.90685e-08
6.12506e-07
2.28592e-08
6.03722e-07
2.6332e-08
5.93886e-07
2.94884e-08
5.83102e-07
3.23322e-08
5.71472e-07
3.48706e-08
5.59095e-07
3.71116e-08
5.46068e-07
3.9065e-08
5.32481e-07
4.07427e-08
5.18423e-07
4.21559e-08
5.03979e-07
4.3318e-08
4.89226e-07
4.42418e-08
4.74241e-07
4.49406e-08
4.59094e-07
4.54294e-08
4.43849e-07
4.57222e-08
4.28567e-07
4.58332e-08
4.13305e-07
4.57772e-08
3.98112e-07
4.55676e-08
3.83036e-07
4.52185e-08
3.68119e-07
4.47425e-08
3.53399e-07
4.4152e-08
3.3891e-07
4.34597e-08
3.24683e-07
4.2677e-08
3.10743e-07
4.1815e-08
2.97113e-07
4.08846e-08
2.83813e-07
3.98958e-08
2.70859e-07
3.88577e-08
2.58265e-07
3.77793e-08
2.46041e-07
3.66683e-08
2.34197e-07
3.55326e-08
2.22736e-07
3.43791e-08
2.11664e-07
3.32145e-08
2.00982e-07
3.2045e-08
1.9069e-07
3.08763e-08
1.80786e-07
2.97134e-08
1.71266e-07
2.8561e-08
1.62125e-07
2.74232e-08
1.53357e-07
2.63039e-08
1.44955e-07
2.52065e-08
1.36911e-07
2.4134e-08
1.29215e-07
2.30893e-08
1.21857e-07
2.20751e-08
1.14826e-07
2.10939e-08
1.0811e-07
2.01478e-08
1.01699e-07
1.92336e-08
9.55845e-08
1.83457e-08
8.97582e-08
1.748e-08
8.42133e-08
1.66358e-08
7.89424e-08
1.58137e-08
1.50156e-08
0.000206933
2.74958e-05
0.000198263
3.46018e-05
0.000187488
4.29991e-05
0.000174692
5.10639e-05
0.00016038
5.71202e-05
0.000144534
6.32468e-05
0.000127545
6.78063e-05
0.000109614
7.15752e-05
9.09891e-05
7.43583e-05
7.20109e-05
7.57759e-05
5.28584e-05
7.64291e-05
3.38099e-05
7.61066e-05
1.51255e-05
7.46435e-05
-3.02904e-06
7.25501e-05
-2.05409e-05
6.99586e-05
-3.73192e-05
6.70384e-05
-5.3221e-05
6.35496e-05
-6.81614e-05
5.97185e-05
-8.21397e-05
5.58798e-05
-9.50984e-05
5.18193e-05
-0.000107046
4.77792e-05
-0.000118021
4.38959e-05
-0.000128021
3.99977e-05
-0.000137092
3.62888e-05
-0.000145279
3.27614e-05
-0.000152622
2.93712e-05
-0.00015917
2.6187e-05
-0.000164954
2.31281e-05
-0.000169991
2.01378e-05
-0.000174302
1.72277e-05
-0.000177891
1.43407e-05
-0.000180769
1.1477e-05
-0.000182924
8.59112e-06
-0.000184327
5.63251e-06
-0.000184954
2.65301e-06
-0.000184803
-5.08595e-07
-0.000183783
-4.0864e-06
-0.000181941
-7.40756e-06
-0.000179241
-1.07961e-05
-0.000175611
-1.45241e-05
-0.000171132
-1.79245e-05
-0.000165664
-2.19067e-05
-0.000159316
-2.53612e-05
-0.000152109
-2.87992e-05
-0.000143876
-3.29179e-05
-0.000134773
-3.64026e-05
-0.000124824
-3.97799e-05
-0.000113859
-4.38302e-05
-0.000101937
-4.77361e-05
-8.92088e-05
-5.08969e-05
-7.54628e-05
-5.4997e-05
-6.10384e-05
-5.76048e-05
-4.58352e-05
-6.07746e-05
-2.98909e-05
-6.37122e-05
-1.3528e-05
-6.5407e-05
3.35926e-06
-6.74953e-05
2.0661e-05
-6.91472e-05
3.80057e-05
-6.93296e-05
5.54728e-05
-6.98137e-05
7.28234e-05
-6.93251e-05
8.99662e-05
-6.84791e-05
0.000106779
-6.71355e-05
0.000122914
-6.44631e-05
0.000138368
-6.17295e-05
0.000152996
-5.8404e-05
0.000166469
-5.38026e-05
0.00017874
-4.89715e-05
0.000189556
-4.31594e-05
0.000198803
-3.68672e-05
0.000206293
-2.98448e-05
0.000211786
-2.18763e-05
0.00021517
-1.3438e-05
0.000216346
-4.58716e-06
0.00021512
4.85827e-06
0.000211501
1.44862e-05
0.000205486
2.40743e-05
0.000197106
3.34699e-05
0.000186476
4.24291e-05
0.000173746
5.08044e-05
0.000159149
5.81882e-05
0.000142965
6.45663e-05
0.000125481
6.97464e-05
0.000107049
7.3541e-05
8.79765e-05
7.61297e-05
6.86088e-05
7.72652e-05
4.92566e-05
7.7242e-05
3.02193e-05
7.60047e-05
1.17983e-05
7.36315e-05
-5.89692e-06
7.06038e-05
-2.26023e-05
6.67164e-05
-3.81519e-05
6.22121e-05
-5.254e-05
5.74476e-05
-6.56489e-05
5.24137e-05
-7.74841e-05
4.73557e-05
-8.79857e-05
4.20218e-05
-9.72298e-05
3.70426e-05
-0.00010524
3.2087e-05
-0.00011211
2.7497e-05
-0.000117883
2.31486e-05
-0.000122662
1.9147e-05
-0.000126516
1.54756e-05
-0.000129541
1.21238e-05
-0.000131769
8.96531e-06
-0.000133331
6.28092e-06
-0.00013425
3.70167e-06
-0.000134579
1.35155e-06
-0.000134348
-8.9473e-07
-0.000133593
-3.02249e-06
-0.000132319
-5.09439e-06
-0.000130531
-7.17042e-06
-0.000128267
-9.04058e-06
-0.000125484
-1.11274e-05
-0.00012218
-1.32457e-05
-0.000118368
-1.52351e-05
-0.000114012
-1.7418e-05
-0.000109117
-1.9593e-05
-0.000103657
-2.18415e-05
-9.76173e-05
-2.41563e-05
-9.09981e-05
-2.64855e-05
-8.37849e-05
-2.88421e-05
-7.59779e-05
-3.12311e-05
-6.75833e-05
-3.35668e-05
-5.85988e-05
-3.59364e-05
-4.90374e-05
-3.82021e-05
-3.89744e-05
-4.02548e-05
-2.83824e-05
-4.23425e-05
-1.73374e-05
-4.41347e-05
-5.89069e-06
-4.5738e-05
5.87604e-06
-4.70162e-05
1.78904e-05
-4.79953e-05
3.00441e-05
-4.85517e-05
4.22331e-05
-4.86944e-05
5.43443e-05
-4.8362e-05
6.62455e-05
-4.75777e-05
7.77969e-05
-4.60895e-05
8.8887e-05
-4.42704e-05
9.93602e-05
-4.18272e-05
0.000109106
-3.88455e-05
0.000117945
-3.53476e-05
0.000125805
-3.13797e-05
0.000132568
-2.70012e-05
0.00013814
-2.22466e-05
0.000142435
-1.71468e-05
0.000145406
-1.19151e-05
0.000147023
-6.32476e-06
0.000147217
-8.58097e-07
0.000146049
4.59115e-06
0.000143552
9.96273e-06
0.000139768
1.50966e-05
0.000134771
1.99292e-05
0.000128663
2.43713e-05
0.000121544
2.84029e-05
0.000113549
3.1906e-05
0.000104805
3.49015e-05
9.54707e-05
3.72747e-05
8.56971e-05
3.90042e-05
7.55603e-05
4.04148e-05
6.52812e-05
4.10565e-05
5.49742e-05
4.11644e-05
4.4767e-05
4.07693e-05
3.47671e-05
3.99399e-05
2.50828e-05
3.86877e-05
1.58001e-05
3.70907e-05
6.99074e-06
3.51999e-05
-1.28102e-06
3.30613e-05
-8.97068e-06
3.07389e-05
-1.60483e-05
2.8294e-05
-2.24798e-05
2.5719e-05
-2.82586e-05
2.31175e-05
-3.33703e-05
2.04384e-05
-3.78228e-05
1.78137e-05
-4.16214e-05
1.52013e-05
-4.47784e-05
1.26385e-05
-4.73191e-05
1.01731e-05
-4.92588e-05
7.77272e-06
-5.06224e-05
5.46692e-06
-5.14449e-05
3.30275e-06
-5.1748e-05
1.23741e-06
-5.15645e-05
-7.10365e-07
-5.09243e-05
-2.54446e-06
-4.98625e-05
-4.22986e-06
-4.84057e-05
-5.80983e-06
-4.65851e-05
-7.26415e-06
-4.44321e-05
-8.59527e-06
-4.19773e-05
-9.80616e-06
-3.92514e-05
-1.08823e-05
-3.62847e-05
-1.18493e-05
-3.3105e-05
-1.26974e-05
-2.975e-05
-1.34077e-05
-2.62411e-05
-1.40183e-05
-2.26102e-05
-1.4506e-05
-1.8886e-05
-1.48822e-05
-1.50982e-05
-1.51338e-05
-1.12735e-05
-1.52841e-05
-7.44067e-06
-1.53158e-05
-3.62838e-06
-1.52402e-05
1.48566e-07
-1.50913e-05
3.85568e-06
-1.48114e-05
7.4721e-06
-1.44516e-05
1.09763e-05
-1.40104e-05
1.4347e-05
-1.34679e-05
1.75664e-05
-1.28663e-05
2.06196e-05
-1.22034e-05
2.3485e-05
-1.14559e-05
2.61554e-05
-1.06747e-05
2.86183e-05
-9.84547e-06
3.08652e-05
-8.98696e-06
3.28868e-05
-8.08058e-06
3.46796e-05
-7.16802e-06
3.62413e-05
-6.25172e-06
3.75697e-05
-5.30967e-06
3.86668e-05
-4.3893e-06
3.95358e-05
-3.47779e-06
4.01829e-05
-2.59151e-06
4.06099e-05
-1.71607e-06
4.08295e-05
-8.8195e-07
4.08505e-05
-9.06092e-08
4.06828e-05
6.62963e-07
4.03388e-05
1.37011e-06
3.98317e-05
2.02651e-06
3.91679e-05
2.63776e-06
3.83663e-05
3.20193e-06
3.7439e-05
3.7022e-06
3.63997e-05
4.1499e-06
3.5262e-05
4.54346e-06
3.404e-05
4.87569e-06
3.27464e-05
5.17097e-06
3.13954e-05
5.39921e-06
2.99983e-05
5.57786e-06
2.85684e-05
5.71401e-06
2.71171e-05
5.79933e-06
2.5657e-05
5.83981e-06
2.4193e-05
5.84371e-06
2.2739e-05
5.81241e-06
2.13036e-05
5.73795e-06
1.98901e-05
5.64914e-06
1.85095e-05
5.5205e-06
1.71659e-05
5.36887e-06
1.58646e-05
5.20343e-06
1.46116e-05
5.01399e-06
1.34065e-05
4.81418e-06
1.22554e-05
4.60364e-06
1.11598e-05
4.37796e-06
1.01209e-05
4.15783e-06
9.14108e-06
3.91963e-06
8.21724e-06
3.69457e-06
7.35317e-06
3.45832e-06
6.54607e-06
3.22577e-06
5.79627e-06
3.00063e-06
5.10281e-06
2.77186e-06
4.46338e-06
2.561e-06
3.87798e-06
2.34329e-06
3.34139e-06
2.14657e-06
2.85571e-06
1.94475e-06
2.41479e-06
1.76414e-06
2.02031e-06
1.58193e-06
1.66567e-06
1.41699e-06
1.35181e-06
1.25761e-06
1.07488e-06
1.10596e-06
8.32872e-07
9.71661e-07
6.24236e-07
8.38026e-07
4.4346e-07
7.21734e-07
2.91212e-07
6.10793e-07
1.6518e-07
5.05795e-07
6.04719e-08
4.18836e-07
-2.24193e-08
3.33252e-07
-8.66393e-08
2.57963e-07
-1.33889e-07
1.90019e-07
-1.66005e-07
1.29429e-07
-1.84754e-07
7.59068e-08
-1.91798e-07
2.90205e-08
-1.88655e-07
-1.17922e-08
-1.76797e-07
-4.67166e-08
-1.57413e-07
-7.68848e-08
-1.31931e-07
-1.01292e-07
-1.01179e-07
-1.22368e-07
-6.65809e-08
-1.37954e-07
-2.88055e-08
-1.50562e-07
1.14697e-08
-1.6072e-07
5.32437e-08
-1.66751e-07
9.5896e-08
-1.70281e-07
1.38851e-07
-1.71543e-07
1.81601e-07
-1.70757e-07
2.23688e-07
-1.68133e-07
2.64719e-07
-1.63944e-07
3.04359e-07
-1.58407e-07
3.4232e-07
-1.51712e-07
3.78373e-07
-1.44108e-07
4.12332e-07
-1.35754e-07
4.44048e-07
-1.26806e-07
4.73413e-07
-1.17415e-07
5.00346e-07
-1.07703e-07
5.24797e-07
-9.77864e-08
5.4674e-07
-8.77691e-08
5.66175e-07
-7.77476e-08
5.83125e-07
-6.7815e-08
5.97634e-07
-5.8062e-08
6.09754e-07
-4.85144e-08
6.19557e-07
-3.92503e-08
6.27125e-07
-3.03206e-08
6.32554e-07
-2.17692e-08
6.35949e-07
-1.36339e-08
6.37422e-07
-5.95207e-09
6.37143e-07
1.06231e-09
6.35193e-07
7.74303e-09
6.31663e-07
1.40605e-08
6.26658e-07
1.99638e-08
6.20282e-07
2.54441e-08
6.12643e-07
3.04983e-08
6.03847e-07
3.51285e-08
5.93998e-07
3.93369e-08
5.83202e-07
4.31282e-08
5.7156e-07
4.65123e-08
5.59172e-07
4.94997e-08
5.46134e-07
5.21036e-08
5.32537e-07
5.43398e-08
5.18469e-07
5.62234e-08
5.04015e-07
5.77721e-08
4.89254e-07
5.90029e-08
4.74261e-07
5.99339e-08
4.59105e-07
6.05847e-08
4.43853e-07
6.09742e-08
4.28565e-07
6.11214e-08
4.13296e-07
6.10459e-08
3.98098e-07
6.07657e-08
3.83017e-07
6.02993e-08
3.68096e-07
5.96639e-08
3.53372e-07
5.88759e-08
3.3888e-07
5.79521e-08
3.24649e-07
5.69078e-08
3.10706e-07
5.57578e-08
2.97074e-07
5.45167e-08
2.83772e-07
5.31977e-08
2.70817e-07
5.18131e-08
2.58221e-07
5.03746e-08
2.45997e-07
4.88928e-08
2.34151e-07
4.73781e-08
2.2269e-07
4.58397e-08
2.11618e-07
4.42865e-08
2.00937e-07
4.27269e-08
1.90645e-07
4.11683e-08
1.8074e-07
3.96174e-08
1.71221e-07
3.80807e-08
1.6208e-07
3.65634e-08
1.53314e-07
3.50708e-08
1.44913e-07
3.36074e-08
1.36869e-07
3.21773e-08
1.29174e-07
3.07843e-08
1.21818e-07
2.94318e-08
1.14788e-07
2.81236e-08
1.08074e-07
2.68621e-08
1.01664e-07
2.56431e-08
9.55502e-08
2.44594e-08
8.9725e-08
2.33053e-08
8.41811e-08
2.21796e-08
7.89112e-08
2.10836e-08
2.00195e-08
0.000207277
3.44049e-05
0.000198582
4.32965e-05
0.000187778
5.38034e-05
0.000174948
6.38941e-05
0.000160598
7.14697e-05
0.000144712
7.91332e-05
0.000127681
8.48371e-05
0.000109709
8.95479e-05
9.10428e-05
9.30241e-05
7.20261e-05
9.47926e-05
5.28262e-05
9.56291e-05
3.3752e-05
9.51808e-05
1.50404e-05
9.3355e-05
-3.13259e-06
9.07231e-05
-2.06672e-05
8.74932e-05
-3.74639e-05
8.38351e-05
-5.33774e-05
7.94631e-05
-6.83283e-05
7.46694e-05
-8.23138e-05
6.98653e-05
-9.52739e-05
6.47793e-05
-0.000107221
5.97264e-05
-0.000118194
5.48686e-05
-0.00012819
4.99939e-05
-0.00013726
4.53585e-05
-0.000145439
4.09412e-05
-0.000152778
3.67099e-05
-0.000159324
3.27325e-05
-0.000165106
2.89105e-05
-0.000170143
2.51748e-05
-0.000174455
2.15393e-05
-0.000178047
1.7933e-05
-0.000180932
1.43622e-05
-0.000183093
1.07519e-05
-0.000184493
7.03295e-06
-0.000185103
3.26264e-06
-0.000184941
-6.70762e-07
-0.000183922
-5.10522e-06
-0.000182097
-9.23302e-06
-0.000179404
-1.34892e-05
-0.000175772
-1.81554e-05
-0.000171294
-2.24024e-05
-0.000165841
-2.73603e-05
-0.00015948
-3.17218e-05
-0.000152264
-3.60158e-05
-0.000144027
-4.11547e-05
-0.000134922
-4.55081e-05
-0.000124969
-4.97326e-05
-0.000113997
-5.48021e-05
-0.000102086
-5.96472e-05
-8.93525e-05
-6.36306e-05
-7.56162e-05
-6.87334e-05
-6.11604e-05
-7.20608e-05
-4.59457e-05
-7.59894e-05
-2.99842e-05
-7.96739e-05
-1.36081e-05
-8.17832e-05
3.2984e-06
-8.44019e-05
2.06155e-05
-8.64645e-05
3.7977e-05
-8.66913e-05
5.54617e-05
-8.72985e-05
7.28331e-05
-8.66967e-05
9.00028e-05
-8.5649e-05
0.000106846
-8.39786e-05
0.000123011
-8.06285e-05
0.000138489
-7.72074e-05
0.000153144
-7.30591e-05
0.00016664
-6.72991e-05
0.000178942
-6.1274e-05
0.000189785
-5.40019e-05
0.000199063
-4.61459e-05
0.000206582
-3.7364e-05
0.0002121
-2.73944e-05
0.00021551
-1.6848e-05
0.000216703
-5.78038e-06
0.000215484
6.07705e-06
0.000211868
1.81021e-05
0.00020585
3.00926e-05
0.000197454
4.18662e-05
0.000186799
5.30843e-05
0.000174056
6.35464e-05
0.000159393
7.28518e-05
0.000143159
8.08005e-05
0.000125623
8.72823e-05
0.000107139
9.20242e-05
8.80341e-05
9.5235e-05
6.85994e-05
9.67e-05
4.92041e-05
9.66373e-05
3.01292e-05
9.50796e-05
1.17138e-05
9.20469e-05
-6.05917e-06
8.83768e-05
-2.27861e-05
8.34433e-05
-3.83481e-05
7.77742e-05
-5.27665e-05
7.18659e-05
-6.58667e-05
6.55139e-05
-7.76935e-05
5.91825e-05
-8.81962e-05
5.25245e-05
-9.7411e-05
4.62574e-05
-0.000105426
4.01024e-05
-0.000112274
3.4345e-05
-0.000118044
2.89178e-05
-0.000122809
2.39121e-05
-0.000126652
1.93187e-05
-0.000129664
1.5136e-05
-0.000131882
1.11837e-05
-0.000133439
7.8377e-06
-0.000134348
4.61024e-06
-0.00013467
1.67389e-06
-0.000134434
-1.13113e-06
-0.000133675
-3.78165e-06
-0.000132402
-6.36735e-06
-0.000130616
-8.95575e-06
-0.000128346
-1.13111e-05
-0.000125566
-1.39075e-05
-0.000122271
-1.65404e-05
-0.000118456
-1.90504e-05
-0.000114093
-2.17809e-05
-0.000109207
-2.44792e-05
-0.00010375
-2.72984e-05
-9.77111e-05
-3.01948e-05
-9.10945e-05
-3.31021e-05
-8.38794e-05
-3.60572e-05
-7.6073e-05
-3.90376e-05
-6.7669e-05
-4.19707e-05
-5.86873e-05
-4.49182e-05
-4.91223e-05
-4.77671e-05
-3.90559e-05
-5.03214e-05
-2.84557e-05
-5.29428e-05
-1.74019e-05
-5.51884e-05
-5.94157e-06
-5.71985e-05
5.83769e-06
-5.87955e-05
1.78694e-05
-6.00271e-05
3.00399e-05
-6.07222e-05
4.22472e-05
-6.09017e-05
5.43802e-05
-6.04951e-05
6.62971e-05
-5.94947e-05
7.78767e-05
-5.76692e-05
8.89874e-05
-5.53812e-05
9.94793e-05
-5.23192e-05
0.000109262
-4.86287e-05
0.000118105
-4.419e-05
0.000125983
-3.92583e-05
0.00013276
-3.37782e-05
0.000138343
-2.78299e-05
0.000142646
-2.145e-05
0.000145615
-1.48837e-05
0.000147255
-7.96443e-06
0.000147459
-1.06302e-06
0.000146265
5.78502e-06
0.000143756
1.24722e-05
0.000139959
1.88935e-05
0.000134946
2.49421e-05
0.00012882
3.04973e-05
0.000121682
3.55412e-05
0.000113666
3.99214e-05
0.000104901
4.36665e-05
9.55731e-05
4.66026e-05
8.57192e-05
4.88581e-05
7.55798e-05
5.05542e-05
6.52817e-05
5.13546e-05
5.49564e-05
5.14897e-05
4.47316e-05
5.09941e-05
3.47161e-05
4.99554e-05
2.50182e-05
4.83856e-05
1.57239e-05
4.6385e-05
6.90486e-06
4.4019e-05
-1.37351e-06
4.13396e-05
-9.06872e-06
3.84341e-05
-1.61506e-05
3.53759e-05
-2.25839e-05
3.21524e-05
-2.83626e-05
2.88961e-05
-3.34755e-05
2.55513e-05
-3.79266e-05
2.22648e-05
-4.1723e-05
1.89977e-05
-4.48772e-05
1.57927e-05
-4.74146e-05
1.27105e-05
-4.93501e-05
9.70821e-06
-5.07118e-05
6.82864e-06
-5.1528e-05
4.11896e-06
-5.18254e-05
1.53481e-06
-5.16357e-05
-9.0007e-07
-5.09928e-05
-3.18737e-06
-4.99246e-05
-5.29807e-06
-4.84628e-05
-7.27162e-06
-4.66372e-05
-9.08978e-06
-4.44797e-05
-1.07528e-05
-4.20205e-05
-1.22653e-05
-3.92893e-05
-1.36135e-05
-3.63177e-05
-1.48209e-05
-3.31334e-05
-1.58817e-05
-2.97737e-05
-1.67674e-05
-2.62601e-05
-1.75319e-05
-2.26244e-05
-1.81417e-05
-1.88963e-05
-1.86103e-05
-1.51036e-05
-1.89265e-05
-1.12749e-05
-1.91128e-05
-7.43775e-06
-1.9153e-05
-3.62247e-06
-1.90555e-05
1.59061e-07
-1.88728e-05
3.86998e-06
-1.85223e-05
7.49049e-06
-1.80722e-05
1.09969e-05
-1.75168e-05
1.43708e-05
-1.68418e-05
1.75934e-05
-1.60889e-05
2.06469e-05
-1.52569e-05
2.3516e-05
-1.4325e-05
2.61882e-05
-1.33469e-05
2.86528e-05
-1.23101e-05
3.08997e-05
-1.12339e-05
3.29228e-05
-1.01037e-05
3.47167e-05
-8.9619e-06
3.62776e-05
-7.81264e-06
3.76063e-05
-6.63831e-06
3.8703e-05
-5.48606e-06
3.95722e-05
-4.34699e-06
4.02171e-05
-3.23643e-06
4.06426e-05
-2.14154e-06
4.0861e-05
-1.10031e-06
4.08802e-05
-1.09833e-07
4.07107e-05
8.32434e-07
4.03652e-05
1.7156e-06
3.98556e-05
2.53611e-06
3.91891e-05
3.30431e-06
3.83859e-05
4.00516e-06
3.74566e-05
4.63146e-06
3.64151e-05
5.19136e-06
3.52756e-05
5.68302e-06
3.40507e-05
6.10056e-06
3.27555e-05
6.46619e-06
3.14043e-05
6.75034e-06
3.00033e-05
6.97889e-06
2.85718e-05
7.14554e-06
2.7119e-05
7.25216e-06
2.56574e-05
7.3014e-06
2.41915e-05
7.30954e-06
2.27363e-05
7.26762e-06
2.12986e-05
7.17565e-06
1.98851e-05
7.06265e-06
1.85053e-05
6.90032e-06
1.71591e-05
6.71504e-06
1.58573e-05
6.50524e-06
1.46042e-05
6.26706e-06
1.3398e-05
6.0204e-06
1.22469e-05
5.75473e-06
1.11506e-05
5.4743e-06
1.01118e-05
5.19657e-06
9.13133e-06
4.90014e-06
8.20805e-06
4.61785e-06
7.34522e-06
4.32115e-06
6.53699e-06
4.034e-06
5.78754e-06
3.75008e-06
5.09383e-06
3.46557e-06
4.45504e-06
3.19979e-06
3.869e-06
2.92933e-06
3.33366e-06
2.68191e-06
2.84794e-06
2.43047e-06
2.40776e-06
2.20432e-06
2.01374e-06
1.97595e-06
1.6594e-06
1.77133e-06
1.34675e-06
1.57027e-06
1.06924e-06
1.38347e-06
8.27794e-07
1.21311e-06
6.19582e-07
1.04624e-06
4.39059e-07
9.02257e-07
2.87383e-07
7.62469e-07
1.60981e-07
6.32197e-07
5.70799e-08
5.22736e-07
-2.54077e-08
4.15739e-07
-8.93233e-08
3.21878e-07
-1.3628e-07
2.36975e-07
-1.68116e-07
1.61265e-07
-1.86605e-07
9.43948e-08
-1.93405e-07
3.58208e-08
-1.90039e-07
-1.51585e-08
-1.77976e-07
-5.87798e-08
-1.58405e-07
-9.64565e-08
-1.32743e-07
-1.26954e-07
-1.01809e-07
-1.53303e-07
-6.70847e-08
-1.72678e-07
-2.91468e-08
-1.885e-07
1.12271e-08
-2.01094e-07
5.30999e-08
-2.08624e-07
9.58463e-08
-2.13028e-07
1.3888e-07
-2.14576e-07
1.81701e-07
-2.13578e-07
2.23848e-07
-2.1028e-07
2.6493e-07
-2.05026e-07
3.04614e-07
-1.98091e-07
3.42612e-07
-1.8971e-07
3.78694e-07
-1.80189e-07
4.12676e-07
-1.69735e-07
4.44409e-07
-1.5854e-07
4.73786e-07
-1.46792e-07
5.00727e-07
-1.34644e-07
5.25182e-07
-1.22241e-07
5.47125e-07
-1.09713e-07
5.66558e-07
-9.71797e-08
5.83503e-07
-8.47607e-08
5.98005e-07
-7.25637e-08
6.10114e-07
-6.06238e-08
6.19904e-07
-4.90402e-08
6.27459e-07
-3.78751e-08
6.32873e-07
-2.71832e-08
6.36251e-07
-1.70118e-08
6.37707e-07
-7.40822e-09
6.37411e-07
1.35823e-09
6.35444e-07
9.70984e-09
6.31897e-07
1.76072e-08
6.26875e-07
2.49864e-08
6.20482e-07
3.18368e-08
6.12826e-07
3.81544e-08
6.04013e-07
4.39418e-08
5.94148e-07
4.92018e-08
5.83335e-07
5.39404e-08
5.71678e-07
5.81696e-08
5.59275e-07
6.1903e-08
5.46222e-07
6.51567e-08
5.32611e-07
6.79509e-08
5.1853e-07
7.03041e-08
5.04063e-07
7.22387e-08
4.8929e-07
7.37759e-08
4.74286e-07
7.49381e-08
4.59121e-07
7.57503e-08
4.43859e-07
7.62358e-08
4.28562e-07
7.64184e-08
4.13285e-07
7.63226e-08
3.9808e-07
7.5971e-08
3.82992e-07
7.53868e-08
3.68065e-07
7.45913e-08
3.53336e-07
7.36051e-08
3.38839e-07
7.24492e-08
3.24604e-07
7.11427e-08
3.10657e-07
6.97042e-08
2.97022e-07
6.81518e-08
2.83718e-07
6.65022e-08
2.7076e-07
6.47705e-08
2.58163e-07
6.29717e-08
2.45937e-07
6.11187e-08
2.34091e-07
5.92246e-08
2.22629e-07
5.7301e-08
2.11557e-07
5.53588e-08
2.00875e-07
5.34087e-08
1.90584e-07
5.14599e-08
1.8068e-07
4.9521e-08
1.71161e-07
4.75996e-08
1.62022e-07
4.57027e-08
1.53256e-07
4.38366e-08
1.44856e-07
4.20071e-08
1.36814e-07
4.02192e-08
1.29121e-07
3.84778e-08
1.21766e-07
3.67871e-08
1.14737e-07
3.51517e-08
1.08025e-07
3.35748e-08
1.01617e-07
3.20512e-08
9.55044e-08
3.05716e-08
8.96806e-08
2.91291e-08
8.41381e-08
2.77221e-08
7.88697e-08
2.6352e-08
2.50219e-08
0.000207707
4.13381e-05
0.000198982
5.20215e-05
0.000188141
6.46446e-05
0.000175268
7.67677e-05
0.000160872
8.58658e-05
0.000144935
9.50695e-05
0.000127852
0.000101921
0.000109826
0.000107573
9.11096e-05
0.000111741
7.20446e-05
0.000113858
5.27895e-05
0.000114884
3.36817e-05
0.000114289
1.4936e-05
0.000112101
-3.25956e-06
0.000108919
-2.082e-05
0.000105054
-3.76377e-05
0.000100653
-5.35629e-05
9.53883e-05
-6.85247e-05
8.96312e-05
-8.25171e-05
8.38577e-05
-9.54765e-05
7.77388e-05
-0.000107422
7.16719e-05
-0.000118389
6.58351e-05
-0.000128377
5.99826e-05
-0.000137444
5.4425e-05
-0.00014561
4.91078e-05
-0.000152943
4.40422e-05
-0.000159482
3.92722e-05
-0.000165261
3.46887e-05
-0.000170295
3.02093e-05
-0.000174606
2.58506e-05
-0.000178199
2.15262e-05
-0.000181087
1.72496e-05
-0.000183251
1.2916e-05
-0.000184658
8.43962e-06
-0.000185275
3.87947e-06
-0.000185111
-8.33797e-07
-0.000184095
-6.12182e-06
-0.00018227
-1.10579e-05
-0.000179602
-1.61578e-05
-0.000175982
-2.17748e-05
-0.000171503
-2.68817e-05
-0.000166051
-3.28124e-05
-0.000159692
-3.80803e-05
-0.000152458
-4.32504e-05
-0.000144215
-4.93973e-05
-0.000135107
-5.4616e-05
-0.00012515
-5.96897e-05
-0.000114173
-6.578e-05
-0.000102274
-7.1546e-05
-8.95323e-05
-7.63722e-05
-7.58198e-05
-8.2446e-05
-6.13152e-05
-8.65655e-05
-4.60835e-05
-9.12213e-05
-3.01011e-05
-9.56565e-05
-1.37069e-05
-9.81776e-05
3.2284e-06
-0.000101337
2.05673e-05
-0.000103804
3.79551e-05
-0.000104079
5.54664e-05
-0.00010481
7.28656e-05
-0.000104096
9.00652e-05
-0.000102849
0.000106942
-0.000100856
0.000123159
-9.68452e-05
0.000138657
-9.27056e-05
0.000153342
-8.77445e-05
0.000166868
-8.08251e-05
0.000179208
-7.3614e-05
0.000190083
-6.48778e-05
0.000199399
-5.54618e-05
0.000206951
-4.49158e-05
0.000212501
-3.29446e-05
0.000215941
-2.02887e-05
0.000217148
-6.98678e-06
0.000215946
7.279e-06
0.000212332
2.17156e-05
0.000206302
3.61222e-05
0.000197886
5.02822e-05
0.000187196
6.37745e-05
0.00017438
7.63623e-05
0.000159694
8.75378e-05
0.000143401
9.70931e-05
0.000125803
0.000104881
0.000107253
0.000110575
8.80903e-05
0.000114397
6.85872e-05
0.000116203
4.91405e-05
0.000116084
3.00287e-05
0.000114191
1.15461e-05
0.000110529
-6.26328e-06
0.000106186
-2.30137e-05
0.000100194
-3.85946e-05
9.33551e-05
-5.3035e-05
8.63063e-05
-6.61375e-05
7.86164e-05
-7.79385e-05
7.09835e-05
-8.84556e-05
6.30417e-05
-9.76506e-05
5.54523e-05
-0.00010566
4.81117e-05
-0.000112504
4.11889e-05
-0.000118249
3.46631e-05
-0.000123002
2.86653e-05
-0.000126826
2.31427e-05
-0.00012982
1.81294e-05
-0.000132028
1.33918e-05
-0.000133575
9.38524e-06
-0.000134472
5.50727e-06
-0.000134788
1.98924e-06
-0.000134546
-1.37331e-06
-0.000133783
-4.54412e-06
-0.000132505
-7.64554e-06
-0.000130717
-1.07433e-05
-0.000128431
-1.3597e-05
-0.000125664
-1.66752e-05
-0.000122379
-1.9825e-05
-0.000118566
-2.28632e-05
-0.000114207
-2.61403e-05
-0.000109319
-2.93673e-05
-0.000103868
-3.2749e-05
-9.78332e-05
-3.62299e-05
-9.12179e-05
-3.97174e-05
-8.40013e-05
-4.32739e-05
-7.61968e-05
-4.68421e-05
-6.7764e-05
-5.04036e-05
-5.88011e-05
-5.38811e-05
-4.92323e-05
-5.7336e-05
-3.91616e-05
-6.03921e-05
-2.8552e-05
-6.35524e-05
-1.74875e-05
-6.62531e-05
-6.01097e-06
-6.8675e-05
5.78553e-06
-7.05921e-05
1.78366e-05
-7.20783e-05
3.0028e-05
-7.29136e-05
4.22589e-05
-7.31327e-05
5.44177e-05
-7.2654e-05
6.63568e-05
-7.14338e-05
7.79796e-05
-6.9292e-05
8.91057e-05
-6.65074e-05
9.96223e-05
-6.28358e-05
0.000109434
-5.84402e-05
0.000118296
-5.30525e-05
0.0001262
-4.71618e-05
0.000132993
-4.05714e-05
0.00013859
-3.34271e-05
0.000142904
-2.57643e-05
0.000145876
-1.78556e-05
0.000147521
-9.61002e-06
0.000147741
-1.2831e-06
0.000146567
6.95943e-06
0.000144019
1.50196e-05
0.000140202
2.27114e-05
0.000135166
2.99773e-05
0.000129017
3.66468e-05
0.000121855
4.27034e-05
0.000113812
4.79639e-05
0.000105025
5.24531e-05
9.56681e-05
5.596e-05
8.57627e-05
5.87634e-05
7.56066e-05
6.07103e-05
6.52837e-05
6.16774e-05
5.4935e-05
6.18383e-05
4.4688e-05
6.12411e-05
3.46531e-05
5.99903e-05
2.49381e-05
5.81006e-05
1.56287e-05
5.56943e-05
6.79807e-06
5.28497e-05
-1.48844e-06
4.96261e-05
-9.19191e-06
4.61375e-05
-1.62776e-05
4.24616e-05
-2.27152e-05
3.85899e-05
-2.84929e-05
3.46738e-05
-3.36063e-05
3.06647e-05
-3.80558e-05
2.67143e-05
-4.18493e-05
2.27913e-05
-4.50024e-05
1.89458e-05
-4.75331e-05
1.52411e-05
-4.94631e-05
1.16382e-05
-5.08209e-05
8.1864e-06
-5.16303e-05
4.92839e-06
-5.19216e-05
1.82606e-06
-5.17236e-05
-1.098e-06
-5.10773e-05
-3.83374e-06
-5.00024e-05
-6.37293e-06
-4.85344e-05
-8.73964e-06
-4.6702e-05
-1.09222e-05
-4.45393e-05
-1.29154e-05
-4.20743e-05
-1.47304e-05
-3.9337e-05
-1.63508e-05
-3.6359e-05
-1.77989e-05
-3.31699e-05
-1.90708e-05
-2.98036e-05
-2.01337e-05
-2.62842e-05
-2.10513e-05
-2.26419e-05
-2.17841e-05
-1.89093e-05
-2.23429e-05
-1.51099e-05
-2.27259e-05
-1.12769e-05
-2.29458e-05
-7.43407e-06
-2.29959e-05
-3.61134e-06
-2.28782e-05
1.72307e-07
-2.26565e-05
3.88769e-06
-2.22377e-05
7.51521e-06
-2.16997e-05
1.10228e-05
-2.10244e-05
1.44004e-05
-2.02194e-05
1.7628e-05
-1.93165e-05
2.0682e-05
-1.83109e-05
2.35545e-05
-1.71975e-05
2.62289e-05
-1.60213e-05
2.86962e-05
-1.47773e-05
3.09434e-05
-1.3481e-05
3.29677e-05
-1.2128e-05
3.47643e-05
-1.07585e-05
3.63231e-05
-9.37148e-06
3.76517e-05
-7.96691e-06
3.87482e-05
-6.58248e-06
3.9618e-05
-5.21686e-06
4.02577e-05
-3.87608e-06
4.06834e-05
-2.56722e-06
4.09001e-05
-1.31702e-06
4.09173e-05
-1.27023e-07
4.07458e-05
1.00387e-06
4.03999e-05
2.0615e-06
3.98845e-05
3.0515e-06
3.92161e-05
3.97269e-06
3.84104e-05
4.81089e-06
3.74786e-05
5.5633e-06
3.64345e-05
6.23541e-06
3.52935e-05
6.82404e-06
3.40645e-05
7.32956e-06
3.27668e-05
7.76383e-06
3.14132e-05
8.10395e-06
3.00097e-05
8.3824e-06
2.8576e-05
8.57924e-06
2.71214e-05
8.70673e-06
2.56576e-05
8.76527e-06
2.41898e-05
8.77737e-06
2.27332e-05
8.72417e-06
2.12931e-05
8.61576e-06
1.98789e-05
8.47684e-06
1.84981e-05
8.28113e-06
1.71507e-05
8.06239e-06
1.58482e-05
7.80777e-06
1.45944e-05
7.52082e-06
1.33875e-05
7.22728e-06
1.22371e-05
6.90514e-06
1.11393e-05
6.57212e-06
1.01006e-05
6.23527e-06
9.119e-06
5.88176e-06
8.19658e-06
5.54026e-06
7.33383e-06
5.1839e-06
6.52573e-06
4.84211e-06
5.77688e-06
4.49893e-06
5.08297e-06
4.15948e-06
4.44477e-06
3.83799e-06
3.85852e-06
3.51558e-06
3.32412e-06
3.2163e-06
2.83791e-06
2.91668e-06
2.39903e-06
2.6432e-06
2.00449e-06
2.37049e-06
1.6516e-06
2.12422e-06
1.34002e-06
1.88185e-06
1.06236e-06
1.66112e-06
8.2161e-07
1.45386e-06
6.12668e-07
1.25518e-06
4.33618e-07
1.08131e-06
2.83384e-07
9.12703e-07
1.55747e-07
7.59833e-07
5.29324e-08
6.2555e-07
-2.91314e-08
4.97803e-07
-9.26768e-08
3.85423e-07
-1.39267e-07
2.83565e-07
-1.70755e-07
1.92752e-07
-1.88917e-07
1.12557e-07
-1.95413e-07
4.23168e-08
-1.91768e-07
-1.88037e-08
-1.79449e-07
-7.10991e-08
-1.59643e-07
-1.16263e-07
-1.33758e-07
-1.52839e-07
-1.02593e-07
-1.84468e-07
-6.77116e-08
-2.07559e-07
-2.95529e-08
-2.26659e-07
1.09246e-08
-2.41572e-07
5.29208e-08
-2.5062e-07
9.57851e-08
-2.55892e-07
1.38918e-07
-2.57709e-07
1.81826e-07
-2.56486e-07
2.24048e-07
-2.52502e-07
2.65195e-07
-2.46173e-07
3.04933e-07
-2.37829e-07
3.42978e-07
-2.27755e-07
3.79096e-07
-2.16308e-07
4.13106e-07
-2.03746e-07
4.44861e-07
-1.90295e-07
4.74254e-07
-1.76184e-07
5.01204e-07
-1.61595e-07
5.25664e-07
-1.46701e-07
5.47608e-07
-1.31657e-07
5.67037e-07
-1.16608e-07
5.83978e-07
-1.01701e-07
5.98469e-07
-8.70549e-08
6.10565e-07
-7.272e-08
6.20339e-07
-5.88147e-08
6.27877e-07
-4.54123e-08
6.33271e-07
-3.2578e-08
6.36628e-07
-2.03688e-08
6.38063e-07
-8.84246e-09
6.37746e-07
1.67487e-09
6.35758e-07
1.16979e-08
6.3219e-07
2.11753e-08
6.27146e-07
3.00305e-08
6.20732e-07
3.82509e-08
6.13054e-07
4.58316e-08
6.0422e-07
5.27761e-08
5.94335e-07
5.90874e-08
5.83502e-07
6.47727e-08
5.71825e-07
6.98466e-08
5.59403e-07
7.43251e-08
5.46332e-07
7.8228e-08
5.32703e-07
8.15793e-08
5.18606e-07
8.44013e-08
5.04124e-07
8.67209e-08
4.89336e-07
8.85635e-08
4.74318e-07
8.99562e-08
4.5914e-07
9.09287e-08
4.43866e-07
9.15093e-08
4.28558e-07
9.17263e-08
4.13271e-07
9.16094e-08
3.98057e-07
9.11855e-08
3.82961e-07
9.04826e-08
3.68026e-07
8.95262e-08
3.5329e-07
8.8341e-08
3.38787e-07
8.69522e-08
3.24547e-07
8.53829e-08
3.10596e-07
8.36551e-08
2.96957e-07
8.17908e-08
2.83649e-07
7.98099e-08
2.70689e-07
7.77306e-08
2.5809e-07
7.55709e-08
2.45863e-07
7.33462e-08
2.34015e-07
7.10722e-08
2.22553e-07
6.8763e-08
2.1148e-07
6.64315e-08
2.00799e-07
6.40905e-08
1.90507e-07
6.17513e-08
1.80604e-07
5.94238e-08
1.71086e-07
5.71176e-08
1.61948e-07
5.48408e-08
1.53184e-07
5.2601e-08
1.44786e-07
5.04052e-08
1.36745e-07
4.82594e-08
1.29054e-07
4.61694e-08
1.21701e-07
4.41404e-08
1.14674e-07
4.21778e-08
1.07964e-07
4.02855e-08
1.01558e-07
3.84573e-08
9.54472e-08
3.6682e-08
8.96252e-08
3.49511e-08
8.40844e-08
3.32628e-08
7.88177e-08
3.16188e-08
3.00225e-08
0.000208224
4.83004e-05
0.000199463
6.07827e-05
0.000188577
7.55301e-05
0.000175652
8.96932e-05
0.0001612
0.000100318
0.000145203
0.000111066
0.000128056
0.000119068
0.000109967
0.000125662
9.11891e-05
0.000130519
7.20484e-05
0.000132998
5.27497e-05
0.000134183
3.36004e-05
0.000133438
1.48131e-05
0.000130888
-3.41116e-06
0.000127143
-2.10026e-05
0.000122645
-3.78449e-05
0.000117495
-5.37843e-05
0.000111328
-6.87578e-05
0.000104605
-8.27583e-05
9.78581e-05
-9.57161e-05
9.06966e-05
-0.000107659
8.36152e-05
-0.000118618
7.67937e-05
-0.000128597
6.99614e-05
-0.000137645
6.34736e-05
-0.000145809
5.72716e-05
-0.000153133
5.1366e-05
-0.000159665
4.58044e-05
-0.000165439
4.04626e-05
-0.000170469
3.52399e-05
-0.00017478
3.01611e-05
-0.000178374
2.51204e-05
-0.000181263
2.0138e-05
-0.000183429
1.50824e-05
-0.000184843
9.85386e-06
-0.000185479
4.51537e-06
-0.000185315
-9.98068e-07
-0.000184301
-7.13531e-06
-0.000182479
-1.28806e-05
-0.000179813
-1.88234e-05
-0.000176207
-2.53807e-05
-0.000171756
-3.13334e-05
-0.000166276
-3.8292e-05
-0.000159962
-4.43942e-05
-0.000152694
-5.05187e-05
-0.000144442
-5.76497e-05
-0.000135331
-6.37263e-05
-0.000125369
-6.96521e-05
-0.000114385
-7.67643e-05
-0.0001025
-8.34307e-05
-8.97478e-05
-8.91248e-05
-7.60241e-05
-9.61698e-05
-6.15043e-05
-0.000101085
-4.62494e-05
-0.000106476
-3.02415e-05
-0.000111665
-1.38238e-05
-0.000114595
3.14225e-06
-0.000118304
2.05144e-05
-0.000121176
3.79352e-05
-0.0001215
5.54829e-05
-0.000122358
7.29126e-05
-0.000121526
9.01457e-05
-0.000120082
0.000107068
-0.000117778
0.000123369
-0.000113146
0.000138868
-0.000108205
0.000153589
-0.000102466
0.000167152
-9.43876e-05
0.000179532
-8.59939e-05
0.000190449
-7.57954e-05
0.000199806
-6.4819e-05
0.000207399
-5.25089e-05
0.000212985
-3.85307e-05
0.000216457
-2.37609e-05
0.000217687
-8.2166e-06
0.000216503
8.46315e-06
0.000212887
2.53312e-05
0.000206846
4.21633e-05
0.000198405
5.87231e-05
0.000187663
7.45166e-05
0.000174805
8.92198e-05
0.000160056
0.000102288
0.000143693
0.000113456
0.000126022
0.000122551
0.000107389
0.000129208
8.81503e-05
0.000133636
6.85718e-05
0.000135781
4.90662e-05
0.00013559
2.99598e-05
0.000133298
1.12816e-05
0.000129208
-6.50627e-06
0.000123974
-2.32898e-05
0.000116977
-3.88909e-05
0.000108956
-5.33499e-05
0.000100765
-6.6456e-05
9.17224e-05
-7.8247e-05
8.27746e-05
-8.87673e-05
7.35619e-05
-9.79463e-05
6.46313e-05
-0.00010596
5.61251e-05
-0.000112782
4.80109e-05
-0.000118496
4.03773e-05
-0.000123231
3.34003e-05
-0.000127035
2.69474e-05
-0.000130012
2.11063e-05
-0.000132203
1.55823e-05
-0.000133735
1.09168e-05
-0.000134622
6.39475e-06
-0.000134929
2.29654e-06
-0.000134681
-1.62124e-06
-0.000133915
-5.31021e-06
-0.000132637
-8.92402e-06
-0.000130853
-1.25276e-05
-0.00012856
-1.58896e-05
-0.000125781
-1.94545e-05
-0.000122493
-2.3113e-05
-0.000118683
-2.66732e-05
-0.000114366
-3.04573e-05
-0.000109438
-3.42953e-05
-0.000104013
-3.81734e-05
-9.79806e-05
-4.22626e-05
-9.13669e-05
-4.63311e-05
-8.41476e-05
-5.04932e-05
-7.63437e-05
-5.46461e-05
-6.79095e-05
-5.88378e-05
-5.89431e-05
-6.28475e-05
-4.93828e-05
-6.68963e-05
-3.92896e-05
-7.04853e-05
-2.867e-05
-7.41721e-05
-1.75898e-05
-7.73333e-05
-6.09579e-06
-8.01691e-05
5.72099e-06
-8.24089e-05
1.77954e-05
-8.41528e-05
3.00133e-05
-8.51315e-05
4.22716e-05
-8.53911e-05
5.44595e-05
-8.4842e-05
6.64292e-05
-8.34036e-05
7.81099e-05
-8.09727e-05
8.92436e-05
-7.76412e-05
9.97921e-05
-7.33844e-05
0.000109601
-6.82496e-05
0.000118525
-6.1976e-05
0.000126455
-5.50922e-05
0.00013327
-4.73863e-05
0.000138885
-3.90421e-05
0.000143212
-3.00917e-05
0.00014619
-2.08332e-05
0.000147805
-1.12258e-05
0.000148036
-1.51376e-06
0.000146883
8.1128e-06
0.000144359
1.75431e-05
0.000140506
2.65641e-05
0.000135437
3.50464e-05
0.000129253
4.28307e-05
0.000122064
4.98923e-05
0.00011399
5.60377e-05
0.000105204
6.12391e-05
9.57458e-05
6.54184e-05
8.58272e-05
6.8682e-05
7.5641e-05
7.08966e-05
6.5287e-05
7.20314e-05
5.49098e-05
7.22154e-05
4.46349e-05
7.1516e-05
3.45777e-05
7.00474e-05
2.48422e-05
6.78361e-05
1.55141e-05
6.50223e-05
6.66919e-06
6.16946e-05
-1.62629e-06
5.79216e-05
-9.34014e-06
5.38513e-05
-1.64298e-05
4.95512e-05
-2.28721e-05
4.50323e-05
-2.86498e-05
4.04514e-05
-3.37629e-05
3.57778e-05
-3.82104e-05
3.11618e-05
-4.20001e-05
2.6581e-05
-4.51503e-05
2.20959e-05
-4.76751e-05
1.7766e-05
-4.95969e-05
1.356e-05
-5.09504e-05
9.53996e-06
-5.17525e-05
5.73044e-06
-5.20365e-05
2.11009e-06
-5.18316e-05
-1.30293e-06
-5.11781e-05
-4.48723e-06
-5.00959e-05
-7.4552e-06
-4.86203e-05
-1.02152e-05
-4.67791e-05
-1.27634e-05
-4.46109e-05
-1.50837e-05
-4.21387e-05
-1.72025e-05
-3.93942e-05
-1.90953e-05
-3.64074e-05
-2.07857e-05
-3.3214e-05
-2.22643e-05
-2.98395e-05
-2.35081e-05
-2.63132e-05
-2.45776e-05
-2.26622e-05
-2.5435e-05
-1.89248e-05
-2.60802e-05
-1.51172e-05
-2.65336e-05
-1.12794e-05
-2.67835e-05
-7.42955e-06
-2.68458e-05
-3.5975e-06
-2.67103e-05
1.88309e-07
-2.64423e-05
3.909e-06
-2.59584e-05
7.54156e-06
-2.53322e-05
1.10539e-05
-2.45367e-05
1.44361e-05
-2.36016e-05
1.76692e-05
-2.25496e-05
2.07249e-05
-2.13666e-05
2.36007e-05
-2.00733e-05
2.62779e-05
-1.86984e-05
2.87498e-05
-1.72493e-05
3.09961e-05
-1.57274e-05
3.30216e-05
-1.41535e-05
3.48198e-05
-1.25568e-05
3.63779e-05
-1.09296e-05
3.77064e-05
-9.29541e-06
3.8803e-05
-7.67905e-06
3.96707e-05
-6.08457e-06
4.03083e-05
-4.51368e-06
4.07324e-05
-2.99131e-06
4.0947e-05
-1.53163e-06
4.09618e-05
-1.41848e-07
4.07883e-05
1.17735e-06
4.04391e-05
2.41067e-06
3.99188e-05
3.57179e-06
3.92488e-05
4.64269e-06
3.84401e-05
5.61967e-06
3.7505e-05
6.49836e-06
3.64579e-05
7.28253e-06
3.53149e-05
7.96703e-06
3.40812e-05
8.56329e-06
3.27806e-05
9.06439e-06
3.14223e-05
9.46223e-06
3.00175e-05
9.78727e-06
2.85812e-05
1.00155e-05
2.71261e-05
1.01618e-05
2.56557e-05
1.02357e-05
2.41877e-05
1.02454e-05
2.27305e-05
1.01814e-05
2.12871e-05
1.00591e-05
1.98715e-05
9.89243e-06
1.84882e-05
9.66444e-06
1.71407e-05
9.40991e-06
1.58374e-05
9.11101e-06
1.45808e-05
8.77746e-06
1.3375e-05
8.43309e-06
1.22249e-05
8.05522e-06
1.11259e-05
7.67114e-06
1.00878e-05
7.27333e-06
9.10505e-06
6.86456e-06
8.18293e-06
6.46238e-06
7.31883e-06
6.048e-06
6.51227e-06
5.64866e-06
5.76523e-06
5.24597e-06
5.0701e-06
4.8546e-06
4.43307e-06
4.47502e-06
3.84639e-06
4.10226e-06
3.31319e-06
3.74951e-06
2.82671e-06
3.40316e-06
2.38884e-06
3.08106e-06
1.99405e-06
2.76527e-06
1.64233e-06
2.47595e-06
1.33062e-06
2.19355e-06
1.0542e-06
1.93755e-06
8.15465e-07
1.69259e-06
6.05209e-07
1.46544e-06
4.27172e-07
1.25934e-06
2.77818e-07
1.06206e-06
1.50163e-07
8.87488e-07
4.81463e-08
7.27566e-07
-3.35861e-08
5.79535e-07
-9.66994e-08
4.48536e-07
-1.4285e-07
3.29716e-07
-1.73919e-07
2.23821e-07
-1.91689e-07
1.30327e-07
-1.9782e-07
4.84475e-08
-1.93841e-07
-2.27839e-08
-1.81214e-07
-8.37258e-08
-1.61124e-07
-1.36354e-07
-1.34974e-07
-1.78988e-07
-1.03528e-07
-2.15915e-07
-6.8461e-08
-2.42626e-07
-2.99976e-08
-2.65122e-07
1.05619e-08
-2.82131e-07
5.27065e-08
-2.92765e-07
9.57128e-08
-2.98898e-07
1.38964e-07
-3.00961e-07
1.81977e-07
-2.99499e-07
2.24291e-07
-2.94816e-07
2.65514e-07
-2.87396e-07
3.05316e-07
-2.77631e-07
3.43418e-07
-2.65857e-07
3.7958e-07
-2.5247e-07
4.13624e-07
-2.3779e-07
4.45404e-07
-2.22076e-07
4.74815e-07
-2.05595e-07
5.01778e-07
-1.88557e-07
5.26243e-07
-1.71166e-07
5.48188e-07
-1.53602e-07
5.67612e-07
-1.36033e-07
5.84547e-07
-1.18637e-07
5.99025e-07
-1.01533e-07
6.11106e-07
-8.48002e-08
6.20862e-07
-6.85707e-08
6.28378e-07
-5.29286e-08
6.3375e-07
-3.79498e-08
6.37082e-07
-2.37008e-08
6.3849e-07
-1.02503e-08
6.38148e-07
2.01627e-09
6.36135e-07
1.37113e-08
6.32541e-07
2.47691e-08
6.27471e-07
3.51004e-08
6.21031e-07
4.46905e-08
6.13329e-07
5.35343e-08
6.04469e-07
6.16356e-08
5.94559e-07
6.89978e-08
5.83702e-07
7.56293e-08
5.72002e-07
8.1547e-08
5.59557e-07
8.677e-08
5.46464e-07
9.13211e-08
5.32815e-07
9.52286e-08
5.18697e-07
9.85185e-08
5.04196e-07
1.01222e-07
4.89391e-07
1.03369e-07
4.74356e-07
1.04991e-07
4.59162e-07
1.06123e-07
4.43875e-07
1.06797e-07
4.28554e-07
1.07047e-07
4.13255e-07
1.06908e-07
3.98029e-07
1.06411e-07
3.82923e-07
1.05588e-07
3.6798e-07
1.0447e-07
3.53236e-07
1.03085e-07
3.38725e-07
1.01462e-07
3.24479e-07
9.96292e-08
3.10523e-07
9.76113e-08
2.96879e-07
9.54344e-08
2.83568e-07
9.31215e-08
2.70604e-07
9.06939e-08
2.58003e-07
8.81726e-08
2.45773e-07
8.55756e-08
2.33924e-07
8.29212e-08
2.22461e-07
8.02258e-08
2.11388e-07
7.75045e-08
2.00707e-07
7.47723e-08
1.90416e-07
7.20421e-08
1.80514e-07
6.93258e-08
1.70997e-07
6.66345e-08
1.6186e-07
6.39775e-08
1.53097e-07
6.13638e-08
1.44701e-07
5.88014e-08
1.36663e-07
5.62976e-08
1.28973e-07
5.38589e-08
1.21622e-07
5.14913e-08
1.14599e-07
4.92015e-08
1.0789e-07
4.69938e-08
1.01487e-07
4.4861e-08
9.53786e-08
4.27901e-08
8.95587e-08
4.0771e-08
8.402e-08
3.88015e-08
7.87553e-08
3.68834e-08
3.50209e-08
0.000208828
5.52965e-05
0.000200024
6.95863e-05
0.000189087
8.64673e-05
0.000176101
0.000102679
0.000161583
0.000114836
0.000145516
0.000127133
0.000128294
0.00013629
0.000110131
0.000143825
9.12811e-05
0.000149369
7.20563e-05
0.000152223
5.27077e-05
0.000153531
3.35092e-05
0.000152637
1.46734e-05
0.000149724
-3.5879e-06
0.000145404
-2.12162e-05
0.000140273
-3.80877e-05
0.000134367
-5.40441e-05
0.000127284
-6.90304e-05
0.000119591
-8.30409e-05
0.000111869
-9.59957e-05
0.000103651
-0.000107937
9.55565e-05
-0.000118886
8.77421e-05
-0.000128853
7.99291e-05
-0.000137885
7.25056e-05
-0.000146041
6.54272e-05
-0.000153355
5.868e-05
-0.000159878
5.23277e-05
-0.000165648
4.62322e-05
-0.000170673
4.02653e-05
-0.000174982
3.44705e-05
-0.000178578
2.8716e-05
-0.000181468
2.30274e-05
-0.000183637
1.72517e-05
-0.00018506
1.12767e-05
-0.000185728
5.18396e-06
-0.000185551
-1.17529e-06
-0.000184541
-8.14498e-06
-0.000182722
-1.47003e-05
-0.000180061
-2.14846e-05
-0.000176458
-2.89835e-05
-0.000172008
-3.57828e-05
-0.000166539
-4.3761e-05
-0.000160227
-5.07067e-05
-0.000152977
-5.77687e-05
-0.000144706
-6.59207e-05
-0.000135593
-7.28391e-05
-0.000125625
-7.96201e-05
-0.000114634
-8.77559e-05
-0.000102767
-9.5298e-05
-8.99993e-05
-0.000101892
-7.62557e-05
-0.000109914
-6.17297e-05
-0.000115611
-4.64436e-05
-0.000121763
-3.0406e-05
-0.000127702
-1.39602e-05
-0.000131041
3.02371e-06
-0.000135288
2.04525e-05
-0.000138605
3.79116e-05
-0.000138959
5.55117e-05
-0.000139958
7.29668e-05
-0.000138981
9.02402e-05
-0.000137355
0.000107216
-0.000134754
0.000123561
-0.000129492
0.000139124
-0.000123769
0.000153882
-0.000117223
0.000167484
-0.00010799
0.000179911
-9.84207e-05
0.000190876
-8.67608e-05
0.000200281
-7.42242e-05
0.000207923
-6.01507e-05
0.000213552
-4.41596e-05
0.000217059
-2.72681e-05
0.000218318
-9.47576e-06
0.000217154
9.6269e-06
0.000213548
2.89369e-05
0.000207483
4.82285e-05
0.000199011
6.71945e-05
0.000188218
8.531e-05
0.000175317
0.000102121
0.00016048
0.000117124
0.000144034
0.000129903
0.000126285
0.000140299
0.00010755
0.000147943
8.82212e-05
0.000152965
6.85553e-05
0.000155447
4.8987e-05
0.000155158
2.97905e-05
0.000152494
1.10375e-05
0.000147961
-6.7859e-06
0.000141798
-2.36118e-05
0.000133803
-3.92591e-05
0.000124604
-5.37166e-05
0.000115223
-6.68281e-05
0.000104834
-7.86144e-05
9.45609e-05
-8.91321e-05
8.40797e-05
-9.82955e-05
7.37946e-05
-0.00010627
6.40998e-05
-0.000113099
5.48396e-05
-0.000118784
4.60626e-05
-0.000123497
3.81133e-05
-0.000127279
3.0729e-05
-0.000130232
2.40592e-05
-0.00013241
1.77604e-05
-0.00013392
1.24273e-05
-0.000134796
7.2709e-06
-0.000135094
2.59454e-06
-0.00013484
-1.87601e-06
-0.000134069
-6.08119e-06
-0.000132787
-1.02062e-05
-0.000131007
-1.43068e-05
-0.000128733
-1.81635e-05
-0.000125952
-2.22363e-05
-0.000122662
-2.64022e-05
-0.000118846
-3.04891e-05
-0.000114529
-3.47748e-05
-0.000109605
-3.92196e-05
-0.000104182
-4.35964e-05
-9.81523e-05
-4.82919e-05
-9.15413e-05
-5.29421e-05
-8.43072e-05
-5.77274e-05
-7.65134e-05
-6.24398e-05
-6.81027e-05
-6.72485e-05
-5.91102e-05
-7.184e-05
-4.95522e-05
-7.64544e-05
-3.94363e-05
-8.06013e-05
-2.88069e-05
-8.48015e-05
-1.77091e-05
-8.84313e-05
-6.19504e-06
-9.16832e-05
5.6462e-06
-9.42502e-05
1.77472e-05
-9.62539e-05
2.9997e-05
-9.73814e-05
4.22881e-05
-9.76823e-05
5.45077e-05
-9.70617e-05
6.65147e-05
-9.54107e-05
7.82139e-05
-9.2672e-05
8.94014e-05
-8.88287e-05
9.99901e-05
-8.39731e-05
0.000109828
-7.80876e-05
0.0001188
-7.09486e-05
0.000126755
-6.30467e-05
0.000133595
-5.42262e-05
0.000139228
-4.46759e-05
0.000143572
-3.44359e-05
0.000146561
-2.38215e-05
0.000148171
-1.28363e-05
0.000148384
-1.72726e-06
0.000147209
9.28816e-06
0.000144702
2.00504e-05
0.000140869
3.03967e-05
0.000135793
4.01224e-05
0.000129535
4.90887e-05
0.000122315
5.71126e-05
0.000114207
6.41456e-05
0.000105376
7.00698e-05
9.58456e-05
7.49487e-05
8.59065e-05
7.86211e-05
7.5683e-05
8.112e-05
6.52914e-05
8.2423e-05
5.48805e-05
8.26263e-05
4.45736e-05
8.18229e-05
3.449e-05
8.0131e-05
2.47303e-05
7.75958e-05
1.53816e-05
7.4371e-05
6.51707e-06
7.05591e-05
-1.78739e-06
6.62261e-05
-9.51195e-06
6.15759e-05
-1.66072e-05
5.66464e-05
-2.30545e-05
5.14796e-05
-2.88333e-05
4.62302e-05
-3.39458e-05
4.08903e-05
-3.83907e-05
3.56067e-05
-4.21746e-05
3.03649e-05
-4.53223e-05
2.52436e-05
-4.78407e-05
2.02844e-05
-4.97551e-05
1.54744e-05
-5.11014e-05
1.08862e-05
-5.18952e-05
6.52421e-06
-5.21701e-05
2.38504e-06
-5.19593e-05
-1.51381e-06
-5.12956e-05
-5.15095e-06
-5.02048e-05
-8.54591e-06
-4.87202e-05
-1.16998e-05
-4.68718e-05
-1.46118e-05
-4.46942e-05
-1.72613e-05
-4.22138e-05
-1.96829e-05
-3.94603e-05
-2.18488e-05
-3.64652e-05
-2.37808e-05
-3.32647e-05
-2.54648e-05
-2.98815e-05
-2.68913e-05
-2.63468e-05
-2.81123e-05
-2.26881e-05
-2.90938e-05
-1.89428e-05
-2.98255e-05
-1.51286e-05
-3.03479e-05
-1.12823e-05
-3.06298e-05
-7.42418e-06
-3.07039e-05
-3.58527e-06
-3.05492e-05
2.06902e-07
-3.02344e-05
3.93422e-06
-2.96857e-05
7.56998e-06
-2.8968e-05
1.10902e-05
-2.80569e-05
1.44779e-05
-2.69894e-05
1.77136e-05
-2.57853e-05
2.07752e-05
-2.44281e-05
2.36548e-05
-2.29529e-05
2.63354e-05
-2.13791e-05
2.88094e-05
-1.97232e-05
3.10577e-05
-1.79756e-05
3.30847e-05
-1.61805e-05
3.48815e-05
-1.43536e-05
3.64418e-05
-1.24899e-05
3.77705e-05
-1.0624e-05
3.88682e-05
-8.77676e-06
3.97292e-05
-6.94562e-06
4.03677e-05
-5.1522e-06
4.07897e-05
-3.41322e-06
4.10018e-05
-1.74377e-06
4.1014e-05
-1.54083e-07
4.08398e-05
1.35159e-06
4.04823e-05
2.76813e-06
3.99604e-05
4.09376e-06
3.92871e-05
5.31594e-06
3.84747e-05
6.43205e-06
3.7536e-05
7.43715e-06
3.64856e-05
8.33293e-06
3.53369e-05
9.11571e-06
3.41007e-05
9.79949e-06
3.27973e-05
1.03678e-05
3.14337e-05
1.08259e-05
3.00266e-05
1.11943e-05
2.85874e-05
1.14548e-05
2.71292e-05
1.16199e-05
2.56554e-05
1.17096e-05
2.41853e-05
1.17155e-05
2.27268e-05
1.16398e-05
2.12803e-05
1.15057e-05
1.98634e-05
1.13093e-05
1.84768e-05
1.10511e-05
1.7129e-05
1.07576e-05
1.58264e-05
1.04136e-05
1.45666e-05
1.00373e-05
1.33604e-05
9.6392e-06
1.22083e-05
9.20733e-06
1.11103e-05
8.76918e-06
1.00731e-05
8.31057e-06
9.08899e-06
7.84862e-06
8.16758e-06
7.38378e-06
7.30229e-06
6.91329e-06
6.49663e-06
6.45433e-06
5.74977e-06
5.99283e-06
5.05514e-06
5.54923e-06
4.41956e-06
5.11061e-06
3.83239e-06
4.68943e-06
3.30092e-06
4.28098e-06
2.81386e-06
3.89021e-06
2.37813e-06
3.5168e-06
1.9824e-06
3.161e-06
1.63199e-06
2.82635e-06
1.31937e-06
2.50618e-06
1.04476e-06
2.21215e-06
8.06515e-07
1.93084e-06
5.96925e-07
1.67502e-06
4.19975e-07
1.43629e-06
2.69579e-07
1.21245e-06
1.43851e-07
1.01322e-06
4.33942e-08
8.28023e-07
-3.87748e-08
6.61703e-07
-1.01391e-07
5.11152e-07
-1.47027e-07
3.75352e-07
-1.77608e-07
2.54401e-07
-1.94921e-07
1.4764e-07
-2.00626e-07
5.41525e-08
-1.96255e-07
-2.71552e-08
-1.83269e-07
-9.67118e-08
-1.62847e-07
-1.56776e-07
-1.36391e-07
-2.05445e-07
-1.04612e-07
-2.47694e-07
-6.93335e-08
-2.77905e-07
-3.04596e-08
-3.03997e-07
1.01383e-08
-3.2273e-07
5.2458e-08
-3.35085e-07
9.56293e-08
-3.4207e-07
1.3902e-07
-3.44352e-07
1.82155e-07
-3.42635e-07
2.24574e-07
-3.37235e-07
2.65887e-07
-3.28709e-07
3.05765e-07
-3.17509e-07
3.43931e-07
-3.04023e-07
3.80145e-07
-2.88683e-07
4.14228e-07
-2.71873e-07
4.46038e-07
-2.53886e-07
4.7547e-07
-2.35027e-07
5.02447e-07
-2.15534e-07
5.26919e-07
-1.95639e-07
5.48865e-07
-1.75547e-07
5.68285e-07
-1.55453e-07
5.85212e-07
-1.35563e-07
5.99675e-07
-1.15996e-07
6.11737e-07
-9.68619e-08
6.21471e-07
-7.83051e-08
6.28963e-07
-6.04205e-08
6.34308e-07
-4.32947e-08
6.37611e-07
-2.70036e-08
6.38988e-07
-1.1627e-08
6.38617e-07
2.38641e-09
6.36574e-07
1.57545e-08
6.3295e-07
2.8393e-08
6.2785e-07
4.02003e-08
6.21381e-07
5.11601e-08
6.13649e-07
6.12667e-08
6.0476e-07
7.05244e-08
5.9482e-07
7.89371e-08
5.83936e-07
8.65141e-08
5.72208e-07
9.3275e-08
5.59736e-07
9.92414e-08
5.46618e-07
1.0444e-07
5.32944e-07
1.08902e-07
5.18804e-07
1.12659e-07
5.04281e-07
1.15745e-07
4.89455e-07
1.18195e-07
4.74401e-07
1.20045e-07
4.59189e-07
1.21334e-07
4.43885e-07
1.22101e-07
4.28548e-07
1.22384e-07
4.13235e-07
1.22221e-07
3.97997e-07
1.21649e-07
3.82879e-07
1.20706e-07
3.67925e-07
1.19424e-07
3.53172e-07
1.17838e-07
3.38653e-07
1.15981e-07
3.244e-07
1.13883e-07
3.10437e-07
1.11574e-07
2.96788e-07
1.09083e-07
2.83472e-07
1.06438e-07
2.70505e-07
1.03661e-07
2.57901e-07
1.00777e-07
2.45669e-07
9.78073e-08
2.33818e-07
9.47719e-08
2.22354e-07
9.16897e-08
2.11281e-07
8.8578e-08
2.00599e-07
8.5454e-08
1.90309e-07
8.23324e-08
1.80408e-07
7.92269e-08
1.70892e-07
7.615e-08
1.61757e-07
7.31125e-08
1.52996e-07
7.01246e-08
1.44602e-07
6.71954e-08
1.36567e-07
6.43333e-08
1.2888e-07
6.15457e-08
1.21531e-07
5.88396e-08
1.14511e-07
5.62223e-08
1.07805e-07
5.36992e-08
1.01404e-07
5.1262e-08
9.52985e-08
4.88956e-08
8.94811e-08
4.65885e-08
8.39448e-08
4.43378e-08
7.86826e-08
4.21456e-08
4.00169e-08
0.000209519
6.23316e-05
0.000200667
7.84385e-05
0.000189671
9.74639e-05
0.000176615
0.000115735
0.000162022
0.000129429
0.000145874
0.00014328
0.000128566
0.000153598
0.000110318
0.000162073
9.13854e-05
0.000168302
7.20732e-05
0.000171535
5.26645e-05
0.00017294
3.34096e-05
0.000171891
1.45191e-05
0.000168614
-3.78985e-06
0.000163713
-2.14612e-05
0.000157945
-3.8367e-05
0.000151272
-5.43429e-05
0.00014326
-6.93428e-05
0.000134591
-8.33573e-05
0.000125883
-9.63155e-05
0.00011661
-0.000108256
0.000107497
-0.000119191
9.86777e-05
-0.000129147
8.9885e-05
-0.000138163
8.15217e-05
-0.000146306
7.35697e-05
-0.000153608
6.59825e-05
-0.000160121
5.88406e-05
-0.000165887
5.19977e-05
-0.000170906
4.5284e-05
-0.000175214
3.87788e-05
-0.000178811
3.23133e-05
-0.000181702
2.59183e-05
-0.000183875
1.94246e-05
-0.000185306
1.27082e-05
-0.000185978
5.85556e-06
-0.000185821
-1.33213e-06
-0.000184815
-9.15088e-06
-0.000183
-1.65159e-05
-0.000180344
-2.41405e-05
-0.000176745
-3.25827e-05
-0.000172299
-4.0228e-05
-0.00016684
-4.92208e-05
-0.000160529
-5.70171e-05
-0.000153316
-6.49819e-05
-0.000145009
-7.42275e-05
-0.000135894
-8.19549e-05
-0.00012592
-8.95942e-05
-0.000114919
-9.87565e-05
-0.000103039
-0.000107178
-9.02878e-05
-0.000114644
-7.6523e-05
-0.000123678
-6.19963e-05
-0.000130138
-4.66673e-05
-0.000137092
-3.05951e-05
-0.000143775
-1.41167e-05
-0.00014752
2.89366e-06
-0.000152298
2.03816e-05
-0.000156093
3.7885e-05
-0.000156463
5.55709e-05
-0.000157644
7.30283e-05
-0.000156439
9.03474e-05
-0.000154675
0.000107386
-0.000151792
0.000123771
-0.000145878
0.000139451
-0.000139448
0.000154226
-0.000131999
0.000167868
-0.000121633
0.000180346
-0.000110899
0.000191365
-9.77803e-05
0.000200825
-8.36836e-05
0.000208522
-6.78484e-05
0.0002142
-4.98378e-05
0.000217747
-3.08151e-05
0.00021904
-1.0769e-05
0.0002179
1.07677e-05
0.000214304
3.25326e-05
0.000208213
5.43189e-05
0.000199708
7.56995e-05
0.000188899
9.6119e-05
0.000175897
0.000115123
0.000160966
0.000132056
0.000144424
0.000146445
0.000126604
0.000158119
0.000107747
0.0001668
8.828e-05
0.000172432
6.85384e-05
0.000175189
4.89532e-05
0.000174743
2.95029e-05
0.000171945
1.07654e-05
0.000166698
-7.10019e-06
0.000159663
-2.39804e-05
0.000150683
-3.9674e-05
0.000140297
-5.41331e-05
0.000129682
-6.72543e-05
0.000117955
-7.9063e-05
0.00010637
-8.95477e-05
9.45644e-05
-9.87241e-05
8.29711e-05
-0.000106663
7.20383e-05
-0.000113457
6.16339e-05
-0.000119115
5.17202e-05
-0.000123801
4.27993e-05
-0.00012756
3.44886e-05
-0.00013048
2.69787e-05
-0.000132647
1.99273e-05
-0.000134133
1.39133e-05
-0.000134996
8.13395e-06
-0.000135283
2.88158e-06
-0.00013502
-2.13851e-06
-0.000134243
-6.85892e-06
-0.000132958
-1.14911e-05
-0.000131182
-1.60821e-05
-0.00012891
-2.04361e-05
-0.000126133
-2.50129e-05
-0.00012285
-2.96851e-05
-0.000119044
-3.42953e-05
-0.000114712
-3.91071e-05
-0.000109804
-4.41271e-05
-0.000104372
-4.90286e-05
-9.8349e-05
-5.43152e-05
-9.17404e-05
-5.95508e-05
-8.44934e-05
-6.49743e-05
-7.67101e-05
-7.02232e-05
-6.83062e-05
-7.56525e-05
-5.93021e-05
-8.08441e-05
-4.97362e-05
-8.60203e-05
-3.95997e-05
-9.07378e-05
-2.89624e-05
-9.54387e-05
-1.78452e-05
-9.95485e-05
-6.30905e-06
-0.000103219
5.56193e-06
-0.000106121
1.76915e-05
-0.000108384
2.99846e-05
-0.000109675
4.23068e-05
-0.000110005
5.45618e-05
-0.000109317
6.66128e-05
-0.000107462
7.83365e-05
-0.000104396
8.95818e-05
-0.000100074
0.000100217
-9.46079e-05
0.000110094
-8.7965e-05
0.000119146
-8.00007e-05
0.0001271
-7.10007e-05
0.000133968
-6.10945e-05
0.000139623
-5.03305e-05
0.000143986
-3.87989e-05
0.000146986
-2.68222e-05
0.000148597
-1.44476e-05
0.000148804
-1.93391e-06
0.000147612
1.04798e-05
0.000145061
2.26017e-05
0.000141209
3.42482e-05
0.000136144
4.51879e-05
0.000129884
5.53485e-05
0.000122643
6.43532e-05
0.000114483
7.23062e-05
0.000105517
7.90358e-05
9.59784e-05
8.44869e-05
8.5999e-05
8.86005e-05
7.57306e-05
9.13883e-05
6.5297e-05
9.28565e-05
5.48471e-05
9.30762e-05
4.45043e-05
9.21656e-05
3.43903e-05
9.02451e-05
2.46024e-05
8.73836e-05
1.52307e-05
8.37427e-05
6.3474e-06
7.94424e-05
-1.9717e-06
7.45451e-05
-9.70811e-06
6.93123e-05
-1.68088e-05
6.37471e-05
-2.32628e-05
5.79336e-05
-2.90434e-05
5.20107e-05
-3.41549e-05
4.60018e-05
-3.85953e-05
4.0047e-05
-4.23771e-05
3.41467e-05
-4.55188e-05
2.83854e-05
-4.80298e-05
2.27954e-05
-4.99386e-05
1.73831e-05
-5.1274e-05
1.22217e-05
-5.20583e-05
7.3085e-06
-5.23214e-05
2.64818e-06
-5.21045e-05
-1.73068e-06
-5.14297e-05
-5.82581e-06
-5.03293e-05
-9.64631e-06
-4.88325e-05
-1.31966e-05
-4.6979e-05
-1.64653e-05
-4.47883e-05
-1.94521e-05
-4.22995e-05
-2.21717e-05
-3.95341e-05
-2.46142e-05
-3.65343e-05
-2.67806e-05
-3.3323e-05
-2.86761e-05
-2.99296e-05
-3.02847e-05
-2.6385e-05
-3.16569e-05
-2.27203e-05
-3.27585e-05
-1.89632e-05
-3.35826e-05
-1.51421e-05
-3.41689e-05
-1.12855e-05
-3.44864e-05
-7.41822e-06
-3.45711e-05
-3.57216e-06
-3.43952e-05
2.28122e-07
-3.40347e-05
3.96436e-06
-3.34219e-05
7.60411e-06
-3.26077e-05
1.11318e-05
-3.15846e-05
1.45268e-05
-3.03843e-05
1.77649e-05
-2.90234e-05
2.08328e-05
-2.7496e-05
2.37168e-05
-2.5837e-05
2.64034e-05
-2.40657e-05
2.88744e-05
-2.21943e-05
3.11282e-05
-2.02294e-05
3.3158e-05
-1.82103e-05
3.49532e-05
-1.61488e-05
3.6515e-05
-1.40517e-05
3.78455e-05
-1.19546e-05
3.89383e-05
-9.86951e-06
3.97989e-05
-7.80625e-06
4.04359e-05
-5.78924e-06
4.08553e-05
-3.83259e-06
4.10647e-05
-1.95316e-06
4.10753e-05
-1.64673e-07
4.0895e-05
1.53186e-06
4.05331e-05
3.13008e-06
4.00082e-05
4.61863e-06
3.9331e-05
5.99315e-06
3.85145e-05
7.24853e-06
3.75718e-05
8.37984e-06
3.65192e-05
9.38553e-06
3.53619e-05
1.0273e-05
3.41231e-05
1.10383e-05
3.28178e-05
1.16731e-05
3.14477e-05
1.2196e-05
3.00372e-05
1.26048e-05
2.85964e-05
1.28955e-05
2.71302e-05
1.30862e-05
2.56555e-05
1.31843e-05
2.41826e-05
1.31883e-05
2.27193e-05
1.31031e-05
2.12726e-05
1.29525e-05
1.98556e-05
1.27263e-05
1.84648e-05
1.24419e-05
1.71158e-05
1.21066e-05
1.5812e-05
1.17175e-05
1.45506e-05
1.12986e-05
1.33442e-05
1.08456e-05
1.219e-05
1.03616e-05
1.10926e-05
9.86659e-06
1.00532e-05
9.34996e-06
9.07073e-06
8.83107e-06
8.1506e-06
8.30392e-06
7.28399e-06
7.7799e-06
6.47902e-06
7.2593e-06
5.73035e-06
6.7415e-06
5.03813e-06
6.24145e-06
4.40143e-06
5.7473e-06
3.8165e-06
5.27435e-06
3.28416e-06
4.81333e-06
2.79929e-06
4.37508e-06
2.36332e-06
3.95277e-06
1.96925e-06
3.55507e-06
1.62072e-06
3.17488e-06
1.30752e-06
2.81938e-06
1.03444e-06
2.48523e-06
7.9478e-07
2.17049e-06
5.87629e-07
1.88218e-06
4.12663e-07
1.61126e-06
2.61103e-07
1.36401e-06
1.36839e-07
1.13748e-06
3.7923e-08
9.26939e-07
-4.47338e-08
7.4436e-07
-1.06752e-07
5.73171e-07
-1.51798e-07
4.20397e-07
-1.8182e-07
2.84422e-07
-1.9861e-07
1.64429e-07
-2.03829e-07
5.93711e-08
-1.9901e-07
-3.19737e-08
-1.85613e-07
-1.10109e-07
-1.64811e-07
-1.77579e-07
-1.38006e-07
-2.32249e-07
-1.05964e-07
-2.79737e-07
-7.03321e-08
-3.13537e-07
-3.12106e-08
-3.43118e-07
9.65081e-09
-3.63591e-07
5.21759e-08
-3.7761e-07
9.55348e-08
-3.85429e-07
1.39086e-07
-3.87903e-07
1.82361e-07
-3.8591e-07
2.24901e-07
-3.79775e-07
2.66316e-07
-3.70124e-07
3.0628e-07
-3.57472e-07
3.44518e-07
-3.42262e-07
3.80791e-07
-3.24957e-07
4.1492e-07
-3.06003e-07
4.46764e-07
-2.85729e-07
4.7622e-07
-2.64483e-07
5.03212e-07
-2.42526e-07
5.27693e-07
-2.20119e-07
5.49639e-07
-1.97494e-07
5.69056e-07
-1.7487e-07
5.85972e-07
-1.52479e-07
6.00418e-07
-1.30442e-07
6.12458e-07
-1.08903e-07
6.22168e-07
-8.80149e-08
6.29632e-07
-6.78847e-08
6.34946e-07
-4.86089e-08
6.38216e-07
-3.02728e-08
6.39557e-07
-1.29679e-08
6.39154e-07
2.78922e-09
6.37077e-07
1.78316e-08
6.33418e-07
3.20512e-08
6.28284e-07
4.53345e-08
6.2178e-07
5.76638e-08
6.14014e-07
6.9033e-08
6.05092e-07
7.94468e-08
5.95119e-07
8.89094e-08
5.84202e-07
9.74312e-08
5.72443e-07
1.05034e-07
5.59941e-07
1.11743e-07
5.46793e-07
1.17587e-07
5.33092e-07
1.22604e-07
5.18925e-07
1.26826e-07
5.04377e-07
1.30293e-07
4.89528e-07
1.33045e-07
4.74451e-07
1.35121e-07
4.59219e-07
1.36567e-07
4.43896e-07
1.37425e-07
4.28542e-07
1.37738e-07
4.13213e-07
1.3755e-07
3.9796e-07
1.36902e-07
3.82829e-07
1.35836e-07
3.67863e-07
1.34391e-07
3.53099e-07
1.32602e-07
3.38571e-07
1.30509e-07
3.24309e-07
1.28145e-07
3.10339e-07
1.25544e-07
2.96684e-07
1.22738e-07
2.83363e-07
1.19759e-07
2.70392e-07
1.16632e-07
2.57784e-07
1.13385e-07
2.4555e-07
1.10042e-07
2.33697e-07
1.06624e-07
2.22232e-07
1.03155e-07
2.11158e-07
9.9652e-08
2.00476e-07
9.61356e-08
1.90187e-07
9.26221e-08
1.80287e-07
8.91269e-08
1.70773e-07
8.56641e-08
1.61639e-07
8.22456e-08
1.52881e-07
7.88831e-08
1.44489e-07
7.55869e-08
1.36456e-07
7.23663e-08
1.28773e-07
6.92296e-08
1.21427e-07
6.61848e-08
1.1441e-07
6.324e-08
1.07707e-07
6.04014e-08
1.0131e-07
5.76598e-08
9.5207e-08
5.49981e-08
8.93924e-08
5.24031e-08
8.38589e-08
4.98713e-08
7.85994e-08
4.74051e-08
4.50099e-08
0.000210299
6.94105e-05
0.000201392
8.73454e-05
0.000190328
0.000108527
0.000177194
0.00012887
0.000162516
0.000144107
0.000146277
0.000159519
0.000128872
0.000171003
0.000110527
0.000180419
9.14822e-05
0.000187347
7.20992e-05
0.000190918
5.26209e-05
0.000192419
3.33035e-05
0.000191209
1.43539e-05
0.000187564
-4.0172e-06
0.000182084
-2.17377e-05
0.000175665
-3.86807e-05
0.000168215
-5.4681e-05
0.00015926
-6.96958e-05
0.000149606
-8.37132e-05
0.0001399
-9.66756e-05
0.000129572
-0.000108616
0.000119437
-0.000119536
0.000109597
-0.00012948
9.98291e-05
-0.000138479
9.05207e-05
-0.000146604
8.16952e-05
-0.000153894
7.32721e-05
-0.000160395
6.53415e-05
-0.000166157
5.77598e-05
-0.000171167
5.02944e-05
-0.000175474
4.30853e-05
-0.000179073
3.59127e-05
-0.000181966
2.88109e-05
-0.000184143
2.16019e-05
-0.000185584
1.41485e-05
-0.000186262
6.53418e-06
-0.000186125
-1.46971e-06
-0.000185123
-1.01525e-05
-0.000183312
-1.83266e-05
-0.000180663
-2.67899e-05
-0.000177068
-3.61774e-05
-0.000172629
-4.46677e-05
-0.000167177
-5.46723e-05
-0.000160871
-6.33233e-05
-0.000153705
-7.21481e-05
-0.000145353
-8.25792e-05
-0.000136232
-9.10757e-05
-0.000126252
-9.95742e-05
-0.000115241
-0.000109768
-0.000103312
-0.000119107
-9.0614e-05
-0.000127342
-7.68263e-05
-0.000137466
-6.2316e-05
-0.000144649
-4.69218e-05
-0.000152486
-3.08094e-05
-0.000159887
-1.42934e-05
-0.000164036
2.75139e-06
-0.000169343
2.03028e-05
-0.000173644
3.78539e-05
-0.000174014
5.55777e-05
-0.000175368
7.30922e-05
-0.000173954
9.04647e-05
-0.000172047
0.00010758
-0.000168907
0.000124008
-0.000162306
0.000139753
-0.000155193
0.000154636
-0.000146882
0.000168308
-0.000135304
0.000180838
-0.000123429
0.000191917
-0.000108859
0.000201437
-9.32042e-05
0.000209198
-7.56095e-05
0.000214932
-5.55721e-05
0.000218524
-3.44068e-05
0.000219856
-1.21018e-05
0.00021874
1.1884e-05
0.000215152
3.61208e-05
0.000209038
6.04326e-05
0.000200492
8.4245e-05
0.000189579
0.000107033
0.000176539
0.000128163
0.000161516
0.000147079
0.000144865
0.000163096
0.000126926
0.000176058
0.00010794
0.000185785
8.83536e-05
0.000192019
6.85437e-05
0.000194999
4.87732e-05
0.000194514
2.92611e-05
0.000191457
1.04597e-05
0.000185499
-7.44176e-06
0.000177565
-2.43952e-05
0.000167637
-4.01298e-05
0.000156032
-5.46028e-05
0.000144155
-6.77361e-05
0.000131088
-7.95443e-05
0.000118178
-9.00155e-05
0.000105036
-9.91832e-05
9.21388e-05
-0.000107114
7.99688e-05
-0.000113859
6.83792e-05
-0.000119488
5.73491e-05
-0.000124141
4.74529e-05
-0.000127869
3.82162e-05
-0.000130761
2.98703e-05
-0.000132914
2.20804e-05
-0.00013437
1.537e-05
-0.00013522
8.98323e-06
-0.000135494
3.15605e-06
-0.000135223
-2.40954e-06
-0.000134443
-7.63921e-06
-0.00013315
-1.27834e-05
-0.000131379
-1.78538e-05
-0.000129089
-2.27255e-05
-0.000126331
-2.7771e-05
-0.000123053
-3.29635e-05
-0.000119248
-3.80999e-05
-0.000114919
-4.34369e-05
-0.000110035
-4.90106e-05
-0.000104575
-5.4489e-05
-9.85694e-05
-6.03205e-05
-9.19628e-05
-6.61574e-05
-8.47468e-05
-7.21903e-05
-7.69337e-05
-7.80364e-05
-6.85286e-05
-8.40576e-05
-5.95196e-05
-8.98532e-05
-4.99411e-05
-9.55988e-05
-3.97651e-05
-0.000100914
-2.91376e-05
-0.000106066
-1.79981e-05
-0.000110688
-6.43821e-06
-0.000114779
5.47244e-06
-0.000118032
1.76269e-05
-0.000120538
2.99922e-05
-0.00012204
4.23266e-05
-0.000122339
5.46237e-05
-0.000121614
6.67236e-05
-0.000119562
7.84914e-05
-0.000116164
8.97863e-05
-0.000111369
0.000100472
-0.000105294
0.000110394
-9.78873e-05
0.000119467
-8.90741e-05
0.0001275
-7.90336e-05
0.00013439
-6.79841e-05
0.000140068
-5.60092e-05
0.000144452
-4.31829e-05
0.000147465
-2.98355e-05
0.000149081
-1.60636e-05
0.000149282
-2.13485e-06
0.00014808
1.16823e-05
0.000145503
2.5178e-05
0.000141615
3.81368e-05
0.000136485
5.03178e-05
0.00013026
6.15735e-05
0.000122936
7.16762e-05
0.000114706
8.05368e-05
0.000105713
8.80285e-05
9.61329e-05
9.40671e-05
8.6104e-05
9.86293e-05
7.57834e-05
0.000101709
6.53038e-05
0.000103336
5.48097e-05
0.00010357
4.44267e-05
0.000102549
3.42787e-05
0.000100393
2.44589e-05
9.72034e-05
1.50617e-05
9.31399e-05
6.16047e-06
8.83436e-05
-2.1793e-06
8.28849e-05
-9.92885e-06
7.70618e-05
-1.70374e-05
7.08556e-05
-2.34974e-05
6.43937e-05
-2.92798e-05
5.77931e-05
-3.43899e-05
5.11118e-05
-3.88268e-05
4.4484e-05
-4.26079e-05
3.79277e-05
-4.574e-05
3.15175e-05
-4.82415e-05
2.52969e-05
-5.01443e-05
1.92859e-05
-5.14682e-05
1.35455e-05
-5.22413e-05
8.08162e-06
-5.24946e-05
2.90146e-06
-5.22669e-05
-1.95842e-06
-5.15806e-05
-6.51212e-06
-5.04689e-05
-1.0758e-05
-4.89613e-05
-1.47042e-05
-4.70977e-05
-1.83289e-05
-4.48942e-05
-2.16557e-05
-4.23958e-05
-2.46701e-05
-3.96217e-05
-2.73883e-05
-3.66102e-05
-2.9792e-05
-3.33918e-05
-3.18946e-05
-2.99835e-05
-3.3693e-05
-2.64257e-05
-3.52147e-05
-2.27539e-05
-3.64302e-05
-1.89855e-05
-3.73511e-05
-1.51557e-05
-3.79987e-05
-1.12889e-05
-3.83533e-05
-7.41455e-06
-3.84455e-05
-3.55763e-06
-3.82522e-05
2.52063e-07
-3.78444e-05
3.99816e-06
-3.7168e-05
7.64356e-06
-3.62531e-05
1.11789e-05
-3.512e-05
1.45828e-05
-3.37882e-05
1.78241e-05
-3.22648e-05
2.08977e-05
-3.05696e-05
2.37874e-05
-2.87266e-05
2.64779e-05
-2.67562e-05
2.89508e-05
-2.46671e-05
3.12077e-05
-2.24863e-05
3.32415e-05
-2.02441e-05
3.5035e-05
-1.79424e-05
3.65976e-05
-1.56143e-05
3.79288e-05
-1.32857e-05
3.90171e-05
-1.09579e-05
3.98779e-05
-8.66698e-06
4.05128e-05
-6.4242e-06
4.09294e-05
-4.24917e-06
4.11364e-05
-2.16013e-06
4.11434e-05
-1.71665e-07
4.09548e-05
1.72044e-06
4.05911e-05
3.49373e-06
4.00622e-05
5.14759e-06
3.93805e-05
6.67485e-06
3.85596e-05
8.06942e-06
3.76146e-05
9.32479e-06
3.65525e-05
1.04477e-05
3.53916e-05
1.14339e-05
3.41486e-05
1.22812e-05
3.28361e-05
1.29856e-05
3.14636e-05
1.35685e-05
3.00494e-05
1.40191e-05
2.86043e-05
1.43406e-05
2.71332e-05
1.45572e-05
2.56557e-05
1.46618e-05
2.4181e-05
1.4663e-05
2.27125e-05
1.45716e-05
2.1264e-05
1.44009e-05
1.98428e-05
1.41475e-05
1.84515e-05
1.38332e-05
1.7102e-05
1.3456e-05
1.57931e-05
1.30264e-05
1.45328e-05
1.25589e-05
1.33273e-05
1.20512e-05
1.21702e-05
1.15187e-05
1.10737e-05
1.09631e-05
1.0032e-05
1.03917e-05
9.05039e-06
9.81266e-06
8.12811e-06
9.22619e-06
7.26359e-06
8.64442e-06
6.46065e-06
8.06223e-06
5.71029e-06
7.49186e-06
5.01961e-06
6.93212e-06
4.38216e-06
6.38476e-06
3.79935e-06
5.85717e-06
3.26621e-06
5.34645e-06
2.78344e-06
4.85785e-06
2.34651e-06
4.38971e-06
1.95475e-06
3.94682e-06
1.6051e-06
3.52453e-06
1.29444e-06
3.13005e-06
1.0234e-06
2.75626e-06
7.83078e-07
2.41082e-06
5.77587e-07
2.08767e-06
4.01482e-07
1.78736e-06
2.5215e-07
1.51334e-06
1.30585e-07
1.25904e-06
2.86351e-08
1.02889e-06
-5.15059e-08
8.245e-07
-1.12783e-07
6.34447e-07
-1.5716e-07
4.64774e-07
-1.86554e-07
3.13815e-07
-2.02755e-07
1.8063e-07
-2.07427e-07
6.40425e-08
-2.02105e-07
-3.72956e-08
-1.88244e-07
-1.2397e-07
-1.67013e-07
-1.98811e-07
-1.39815e-07
-2.59447e-07
-1.07524e-07
-3.12029e-07
-7.14521e-08
-3.49609e-07
-3.20373e-08
-3.82533e-07
9.10129e-09
-4.0473e-07
5.18607e-08
-4.20369e-07
9.54302e-08
-4.28998e-07
1.39163e-07
-4.31636e-07
1.82595e-07
-4.29342e-07
2.25271e-07
-4.22451e-07
2.66801e-07
-4.11655e-07
3.06861e-07
-3.97532e-07
3.45179e-07
-3.8058e-07
3.8152e-07
-3.61297e-07
4.157e-07
-3.40184e-07
4.47582e-07
-3.1761e-07
4.77065e-07
-2.93967e-07
5.04074e-07
-2.69535e-07
5.28563e-07
-2.44608e-07
5.50511e-07
-2.19441e-07
5.69925e-07
-1.94285e-07
5.86827e-07
-1.69381e-07
6.01253e-07
-1.44868e-07
6.1327e-07
-1.20919e-07
6.22952e-07
-9.7697e-08
6.30385e-07
-7.53175e-08
6.35665e-07
-5.38885e-08
6.38896e-07
-3.35044e-08
6.40196e-07
-1.42683e-08
6.39757e-07
3.22854e-09
6.37642e-07
1.99469e-08
6.33945e-07
3.5748e-08
6.28772e-07
5.05073e-08
6.2223e-07
6.4206e-08
6.14425e-07
7.68375e-08
6.05465e-07
8.8407e-08
5.95456e-07
9.8919e-08
5.84502e-07
1.08385e-07
5.72707e-07
1.16829e-07
5.60172e-07
1.24279e-07
5.46991e-07
1.30768e-07
5.33258e-07
1.36337e-07
5.19062e-07
1.41022e-07
5.04485e-07
1.44869e-07
4.89609e-07
1.47921e-07
4.74508e-07
1.50222e-07
4.59253e-07
1.51822e-07
4.43908e-07
1.5277e-07
4.28534e-07
1.53111e-07
4.13187e-07
1.52897e-07
3.97918e-07
1.52172e-07
3.82772e-07
1.50982e-07
3.67792e-07
1.4937e-07
3.53016e-07
1.47378e-07
3.38478e-07
1.45047e-07
3.24207e-07
1.42416e-07
3.10229e-07
1.39521e-07
2.96567e-07
1.364e-07
2.8324e-07
1.33086e-07
2.70264e-07
1.29608e-07
2.57652e-07
1.25997e-07
2.45415e-07
1.22279e-07
2.33561e-07
1.18479e-07
2.22094e-07
1.14621e-07
2.1102e-07
1.10727e-07
2.00338e-07
1.06817e-07
1.90049e-07
1.02911e-07
1.8015e-07
9.90257e-08
1.70638e-07
9.51764e-08
1.61507e-07
9.13765e-08
1.52751e-07
8.76391e-08
1.44362e-07
8.39755e-08
1.36333e-07
8.03961e-08
1.28652e-07
7.69102e-08
1.2131e-07
7.35264e-08
1.14296e-07
7.02541e-08
1.07598e-07
6.71e-08
1.01203e-07
6.40541e-08
9.51041e-08
6.10973e-08
8.92927e-08
5.82145e-08
8.37622e-08
5.54018e-08
7.85058e-08
5.26614e-08
4.99997e-08
0.000211166
7.65385e-05
0.000202199
9.6313e-05
0.000191061
0.000119665
0.000177839
0.000142092
0.000163066
0.00015888
0.000146726
0.000175859
0.000129212
0.000188516
0.000110759
0.000198872
9.16014e-05
0.000206504
7.21346e-05
0.000210385
5.2578e-05
0.000211975
3.31929e-05
0.000210594
1.41838e-05
0.000206573
-4.27034e-06
0.000200538
-2.20462e-05
0.000193441
-3.90285e-05
0.000185198
-5.50586e-05
0.00017529
-7.00909e-05
0.000164638
-8.41134e-05
0.000153923
-9.70765e-05
0.000142535
-0.000109007
0.000131368
-0.000119918
0.000120508
-0.000129851
0.000109762
-0.00013883
9.94996e-05
-0.000146936
8.98012e-05
-0.000154211
8.05472e-05
-0.000160699
7.18291e-05
-0.000166458
6.35196e-05
-0.000171458
5.52938e-05
-0.000175762
4.739e-05
-0.000179365
3.95152e-05
-0.000182259
3.17053e-05
-0.000184442
2.37848e-05
-0.000185893
1.55996e-05
-0.00018658
7.22116e-06
-0.000186462
-1.58777e-06
-0.000185465
-1.11496e-05
-0.00018366
-2.0132e-05
-0.000181018
-2.9432e-05
-0.000177428
-3.97668e-05
-0.000172995
-4.91006e-05
-0.000167552
-6.01155e-05
-0.000161251
-6.96244e-05
-0.00015408
-7.93198e-05
-0.00014574
-9.0919e-05
-0.00013661
-0.000100206
-0.000126624
-0.00010956
-0.0001156
-0.000120792
-0.00010364
-0.000131066
-9.09788e-05
-0.000140004
-7.71657e-05
-0.000151279
-6.26752e-05
-0.000159139
-4.72102e-05
-0.000167951
-3.10495e-05
-0.000176048
-1.44905e-05
-0.000180595
2.59563e-06
-0.000186429
2.01888e-05
-0.000191238
3.78184e-05
-0.000191644
5.55871e-05
-0.000193137
7.31604e-05
-0.000191527
9.0592e-05
-0.000189479
0.00010773
-0.000186045
0.000124269
-0.000178846
0.000140078
-0.000171002
0.000155087
-0.000161891
0.000168818
-0.000149036
0.00018139
-0.000136
0.00019253
-0.00012
0.000202118
-0.000102792
0.00020995
-8.34412e-05
0.000215748
-6.13698e-05
0.00021939
-3.80487e-05
0.000220767
-1.34792e-05
0.000219676
1.29745e-05
0.000216095
3.97024e-05
0.000209959
6.65684e-05
0.000201374
9.28295e-05
0.000190383
0.000118024
0.000177233
0.000141312
0.000162129
0.000162182
0.000145355
0.00017987
0.000127277
0.000194137
0.000108168
0.000204895
8.846e-05
0.000211726
6.85768e-05
0.000214882
4.86001e-05
0.00021449
2.90045e-05
0.000211052
1.01188e-05
0.000204385
-7.85335e-06
0.000195537
-2.48586e-05
0.000184642
-4.06353e-05
0.000171808
-5.5126e-05
0.000158646
-6.82731e-05
0.000144235
-8.00686e-05
0.000129973
-9.0536e-05
0.000115503
-9.96818e-05
0.000101285
-0.000107596
8.78832e-05
-0.000114305
7.5088e-05
-0.000119903
6.29471e-05
-0.00012452
5.20697e-05
-0.000128215
4.19118e-05
-0.000131074
3.27291e-05
-0.000133212
2.42185e-05
-0.000134635
1.67928e-05
-0.000135468
9.81589e-06
-0.000135729
3.4171e-06
-0.000135448
-2.68998e-06
-0.000134661
-8.42632e-06
-0.000133365
-1.408e-05
-0.000131595
-1.96236e-05
-0.000129295
-2.50253e-05
-0.000126551
-3.05149e-05
-0.000123277
-3.62381e-05
-0.000119447
-4.19296e-05
-0.000115149
-4.77346e-05
-0.000110277
-5.38824e-05
-0.000104814
-5.99524e-05
-9.88151e-05
-6.63193e-05
-9.22108e-05
-7.27616e-05
-8.50014e-05
-7.93998e-05
-7.71822e-05
-8.58556e-05
-6.87725e-05
-9.24673e-05
-5.97585e-05
-9.88672e-05
-5.01692e-05
-0.000105188
-4.00016e-05
-0.000111082
-2.93318e-05
-0.000116736
-1.81659e-05
-0.000121854
-6.58254e-06
-0.000126363
5.39949e-06
-0.000130014
1.75582e-05
-0.000132697
2.99341e-05
-0.000134416
4.23458e-05
-0.000134751
5.46921e-05
-0.00013396
6.68456e-05
-0.000131715
7.86664e-05
-0.000127985
9.00199e-05
-0.000122723
0.000100755
-0.000116029
0.000110729
-0.000107861
0.000119827
-9.81728e-05
0.000127959
-8.71653e-05
0.000134865
-7.48903e-05
0.000140567
-6.17108e-05
0.000144973
-4.75897e-05
0.000147999
-3.28617e-05
0.000149622
-1.76866e-05
0.000149817
-2.32998e-06
0.000148602
1.28979e-05
0.000146003
2.77772e-05
0.000142081
4.2058e-05
0.00013691
5.54889e-05
0.000130598
6.78861e-05
0.000123237
7.90365e-05
0.000114971
8.88034e-05
0.000105943
9.7056e-05
9.63068e-05
0.000103703
8.62214e-05
0.000108715
7.58425e-05
0.000112088
6.53129e-05
0.000113866
5.47683e-05
0.000114115
4.43409e-05
0.000112976
3.41528e-05
0.000110581
2.43005e-05
0.000107056
1.48762e-05
0.000102564
5.9545e-06
9.72653e-05
-2.41023e-06
9.12496e-05
-1.01746e-05
8.48262e-05
-1.72955e-05
7.79764e-05
-2.37583e-05
7.08565e-05
-2.95414e-05
6.35761e-05
-3.465e-05
5.62205e-05
-3.90886e-05
4.89225e-05
-4.28621e-05
4.17013e-05
-4.5986e-05
3.46414e-05
-4.84767e-05
2.77876e-05
-5.03718e-05
2.1181e-05
-5.16839e-05
1.48576e-05
-5.24425e-05
8.84018e-06
-5.26896e-05
3.14857e-06
-5.24469e-05
-2.20113e-06
-5.17481e-05
-7.21091e-06
-5.06213e-05
-1.18848e-05
-4.91078e-05
-1.62177e-05
-4.72292e-05
-2.02074e-05
-4.50164e-05
-2.38685e-05
-4.25017e-05
-2.71848e-05
-3.97187e-05
-3.01713e-05
-3.66939e-05
-3.28168e-05
-3.34692e-05
-3.51192e-05
-3.00425e-05
-3.71198e-05
-2.64755e-05
-3.87817e-05
-2.27909e-05
-4.01149e-05
-1.90085e-05
-4.11334e-05
-1.51705e-05
-4.18366e-05
-1.12909e-05
-4.22329e-05
-7.41286e-06
-4.23235e-05
-3.54145e-06
-4.21236e-05
2.79163e-07
-4.1665e-05
4.03053e-06
-4.09194e-05
7.68771e-06
-3.99103e-05
1.12318e-05
-3.8664e-05
1.46393e-05
-3.71957e-05
1.78904e-05
-3.55159e-05
2.09703e-05
-3.36495e-05
2.38678e-05
-3.16241e-05
2.65563e-05
-2.94448e-05
2.9036e-05
-2.71468e-05
3.12965e-05
-2.47468e-05
3.33284e-05
-2.22759e-05
3.51263e-05
-1.97403e-05
3.66905e-05
-1.71785e-05
3.80165e-05
-1.46117e-05
3.91068e-05
-1.20482e-05
3.99659e-05
-9.52611e-06
4.05985e-05
-7.0568e-06
4.10125e-05
-4.66318e-06
4.12173e-05
-2.36489e-06
4.12142e-05
-1.68546e-07
4.1024e-05
1.9106e-06
4.06559e-05
3.86186e-06
4.01223e-05
5.68112e-06
3.94359e-05
7.3613e-06
3.86125e-05
8.89286e-06
3.76572e-05
1.02801e-05
3.65893e-05
1.15156e-05
3.54248e-05
1.25984e-05
3.41794e-05
1.35266e-05
3.28577e-05
1.43073e-05
3.14815e-05
1.49447e-05
3.0065e-05
1.54356e-05
2.86096e-05
1.5796e-05
2.71372e-05
1.60296e-05
2.56561e-05
1.61429e-05
2.41787e-05
1.61405e-05
2.27055e-05
1.60448e-05
2.12558e-05
1.58507e-05
1.98291e-05
1.55741e-05
1.84369e-05
1.52255e-05
1.70865e-05
1.48064e-05
1.57742e-05
1.43386e-05
1.45132e-05
1.38199e-05
1.33043e-05
1.32601e-05
1.21484e-05
1.26746e-05
1.10523e-05
1.20592e-05
1.00091e-05
1.14349e-05
9.02965e-06
1.07921e-05
8.10459e-06
1.01512e-05
7.24119e-06
9.50783e-06
6.43658e-06
8.86684e-06
5.68834e-06
8.2401e-06
4.9995e-06
7.62096e-06
4.36133e-06
7.02293e-06
3.78049e-06
6.438e-06
3.24693e-06
5.88002e-06
2.76646e-06
5.33831e-06
2.32893e-06
4.82724e-06
1.93995e-06
4.33581e-06
1.5891e-06
3.87538e-06
1.2805e-06
3.43864e-06
1.00803e-06
3.02873e-06
7.70473e-07
2.64838e-06
5.67276e-07
2.29086e-06
3.901e-07
1.96454e-06
2.42611e-07
1.66083e-06
1.20692e-07
1.38096e-06
1.99173e-08
1.12966e-06
-5.9026e-08
9.03443e-07
-1.19479e-07
6.949e-07
-1.63111e-07
5.08405e-07
-1.9181e-07
3.42514e-07
-2.07355e-07
1.96175e-07
-2.11418e-07
6.81059e-08
-2.05537e-07
-4.31772e-08
-1.91158e-07
-1.38349e-07
-1.69452e-07
-2.20518e-07
-1.41809e-07
-2.87089e-07
-1.09189e-07
-3.44648e-07
-7.26881e-08
-3.8611e-07
-3.29368e-08
-4.22285e-07
8.49137e-09
-4.46158e-07
5.15134e-08
-4.63392e-07
9.53159e-08
-4.72801e-07
1.39253e-07
-4.75573e-07
1.82858e-07
-4.72947e-07
2.25685e-07
-4.65277e-07
2.67343e-07
-4.53314e-07
3.0751e-07
-4.37698e-07
3.45914e-07
-4.18985e-07
3.82331e-07
-3.97714e-07
4.16569e-07
-3.74421e-07
4.48492e-07
-3.49533e-07
4.78005e-07
-3.23481e-07
5.05033e-07
-2.96563e-07
5.29532e-07
-2.69107e-07
5.51481e-07
-2.4139e-07
5.70893e-07
-2.13697e-07
5.87778e-07
-1.86266e-07
6.02182e-07
-1.59273e-07
6.14172e-07
-1.3291e-07
6.23824e-07
-1.07348e-07
6.31222e-07
-8.27155e-08
6.36463e-07
-5.91296e-08
6.39652e-07
-3.6694e-08
6.40907e-07
-1.5523e-08
6.40428e-07
3.70814e-09
6.3827e-07
2.21046e-08
6.3453e-07
3.94879e-08
6.29314e-07
5.57232e-08
6.22729e-07
7.0791e-08
6.14882e-07
8.46845e-08
6.0588e-07
9.74093e-08
5.95829e-07
1.0897e-07
5.84835e-07
1.19379e-07
5.73001e-07
1.28663e-07
5.60427e-07
1.36853e-07
5.4721e-07
1.43985e-07
5.33443e-07
1.50104e-07
5.19213e-07
1.55252e-07
5.04605e-07
1.59477e-07
4.897e-07
1.62826e-07
4.74571e-07
1.6535e-07
4.5929e-07
1.67104e-07
4.43921e-07
1.68138e-07
4.28526e-07
1.68507e-07
4.13159e-07
1.68264e-07
3.97871e-07
1.6746e-07
3.82709e-07
1.66144e-07
3.67714e-07
1.64365e-07
3.52925e-07
1.62168e-07
3.38374e-07
1.59598e-07
3.24093e-07
1.56697e-07
3.10106e-07
1.53508e-07
2.96437e-07
1.5007e-07
2.83103e-07
1.46419e-07
2.70122e-07
1.42589e-07
2.57506e-07
1.38613e-07
2.45266e-07
1.34519e-07
2.33409e-07
1.30336e-07
2.21941e-07
1.26089e-07
2.10866e-07
1.21802e-07
2.00184e-07
1.17498e-07
1.89896e-07
1.13199e-07
1.79999e-07
1.08923e-07
1.70488e-07
1.04687e-07
1.6136e-07
1.00505e-07
1.52607e-07
9.63923e-08
1.44221e-07
9.2361e-08
1.36195e-07
8.84225e-08
1.28518e-07
8.45871e-08
1.2118e-07
8.08642e-08
1.1417e-07
7.72641e-08
1.07476e-07
7.37945e-08
1.01085e-07
7.04444e-08
9.49898e-08
6.71927e-08
8.91819e-08
6.40224e-08
8.36548e-08
6.09289e-08
7.84019e-08
5.79143e-08
5.49859e-08
0.000212123
8.37209e-05
0.000203088
0.000105348
0.000191868
0.000130885
0.00017855
0.00015541
0.000163672
0.000173758
0.000147219
0.000192312
0.000129586
0.00020615
0.000110999
0.000217459
9.17419e-05
0.000225761
7.21799e-05
0.000229947
5.25372e-05
0.000231618
3.30817e-05
0.00023005
1.40212e-05
0.000225633
-4.55012e-06
0.00021911
-2.23872e-05
0.000211278
-3.94134e-05
0.000202224
-5.54757e-05
0.000191353
-7.05303e-05
0.000179693
-8.45572e-05
0.00016795
-9.75194e-05
0.000155498
-0.000109434
0.000143283
-0.000120337
0.000131411
-0.000130261
0.000119686
-0.000139216
0.000108454
-0.000147301
9.7886e-05
-0.00015456
8.78062e-05
-0.000161033
7.83028e-05
-0.000166791
6.92774e-05
-0.000171776
6.02786e-05
-0.000176079
5.1693e-05
-0.000179686
4.31222e-05
-0.000182583
3.46019e-05
-0.000184773
2.5975e-05
-0.00018624
1.70667e-05
-0.000186931
7.91282e-06
-0.000186835
-1.68402e-06
-0.000185842
-1.21429e-05
-0.000184042
-2.19317e-05
-0.000181408
-3.20657e-05
-0.000177825
-4.33498e-05
-0.0001734
-5.35257e-05
-0.000167966
-6.55501e-05
-0.00016167
-7.59207e-05
-0.000154498
-8.64913e-05
-0.000146173
-9.92437e-05
-0.000137027
-0.000109352
-0.000127035
-0.000119552
-0.000115997
-0.00013183
-0.000104018
-0.000143046
-9.12965e-05
-0.000152725
-7.75412e-05
-0.000165035
-6.30096e-05
-0.000173671
-4.75383e-05
-0.000183423
-3.13169e-05
-0.000192269
-1.47076e-05
-0.000197205
2.42506e-06
-0.000203562
2.00521e-05
-0.000208865
3.77793e-05
-0.000209371
5.56012e-05
-0.000210959
7.32378e-05
-0.000209164
9.07319e-05
-0.000206973
0.000107909
-0.000203223
0.000124558
-0.000195494
0.000140437
-0.000186882
0.000155518
-0.000176972
0.000169412
-0.00016293
0.000182009
-0.000148598
0.000193208
-0.000131199
0.00020287
-0.000112454
0.00021078
-9.13514e-05
0.000216649
-6.72385e-05
0.000220348
-4.17477e-05
0.000221774
-1.49061e-05
0.000220714
1.40348e-05
0.000217134
4.32829e-05
0.000210983
7.27194e-05
0.000202371
0.000101441
0.000191275
0.000129121
0.000178018
0.000154569
0.000162821
0.00017738
0.0001459
0.00019679
0.000127641
0.000212396
0.000108424
0.000224112
8.86572e-05
0.000231493
6.8447e-05
0.000235092
4.84123e-05
0.000234525
2.87259e-05
0.000230739
9.74183e-06
0.000223369
-8.33846e-06
0.000213617
-2.53707e-05
0.000201674
-4.11925e-05
0.00018763
-5.57023e-05
0.000173155
-6.88635e-05
0.000157397
-8.062e-05
0.00014173
-9.11077e-05
0.000125991
-0.000100213
0.00011039
-0.000108122
9.57922e-05
-0.000114796
8.17619e-05
-0.000120361
6.85118e-05
-0.000124936
5.66446e-05
-0.000128597
4.55727e-05
-0.00013142
3.55528e-05
-0.000133533
2.63315e-05
-0.000134926
1.81856e-05
-0.00013574
1.06303e-05
-0.000135986
3.66303e-06
-0.000135696
-2.98074e-06
-0.000134901
-9.22072e-06
-0.0001336
-1.53809e-05
-0.000131832
-2.13923e-05
-0.00012956
-2.72967e-05
-0.000126792
-3.32833e-05
-0.00012352
-3.95101e-05
-0.000119716
-4.57332e-05
-0.000115405
-5.20459e-05
-0.000110541
-5.87459e-05
-0.00010507
-6.54236e-05
-9.90847e-05
-7.23049e-05
-9.24837e-05
-7.93627e-05
-8.52787e-05
-8.66047e-05
-7.74562e-05
-9.36782e-05
-6.90407e-05
-0.000100883
-6.0021e-05
-0.000107887
-5.04212e-05
-0.000114788
-4.02422e-05
-0.000121261
-2.9541e-05
-0.000127437
-1.83187e-05
-0.000133076
-6.74239e-06
-0.000137939
5.24878e-06
-0.000142005
1.74792e-05
-0.000144927
2.98917e-05
-0.000146828
4.23672e-05
-0.000147226
5.47668e-05
-0.00014636
6.69791e-05
-0.000143928
7.88594e-05
-0.000139865
9.03059e-05
-0.000134169
0.000101068
-0.000126791
0.000111098
-0.000117891
0.000120244
-0.000107319
0.000128383
-9.53042e-05
0.000135424
-8.19309e-05
0.000141121
-6.74077e-05
0.000145549
-5.20186e-05
0.000148589
-3.59015e-05
0.000150217
-1.9315e-05
0.000150409
-2.52165e-06
0.000149177
1.41294e-05
0.000146556
3.03987e-05
0.0001426
4.60133e-05
0.000137388
6.07014e-05
0.000131019
7.4255e-05
0.000123608
8.64471e-05
0.000115283
9.71283e-05
0.000106197
0.000106142
9.64996e-05
0.000113401
8.63509e-05
0.000118863
7.59057e-05
0.000122533
6.53222e-05
0.000124449
5.47237e-05
0.000124713
4.42479e-05
0.000123452
3.40165e-05
0.000120812
2.4131e-05
0.000116941
1.46836e-05
0.000112012
5.75959e-06
0.000106189
-2.66458e-06
9.96738e-05
-1.04459e-05
9.26075e-05
-1.75785e-05
8.51091e-05
-2.40451e-05
7.7323e-05
-2.98309e-05
6.93619e-05
-3.49413e-05
6.13309e-05
-3.93748e-05
5.3356e-05
-4.31414e-05
4.54678e-05
-4.62561e-05
3.77561e-05
-4.87406e-05
3.02722e-05
-5.06218e-05
2.30621e-05
-5.19203e-05
1.61562e-05
-5.26685e-05
9.58839e-06
-5.29015e-05
3.38149e-06
-5.26448e-05
-2.4578e-06
-5.19317e-05
-7.92399e-06
-5.07933e-05
-1.30232e-05
-4.92662e-05
-1.77448e-05
-4.73735e-05
-2.21001e-05
-4.51483e-05
-2.60938e-05
-4.26179e-05
-2.97151e-05
-3.98238e-05
-3.29654e-05
-3.67855e-05
-3.58551e-05
-3.35422e-05
-3.83626e-05
-3.01062e-05
-4.05558e-05
-2.65302e-05
-4.23576e-05
-2.28312e-05
-4.38139e-05
-1.90391e-05
-4.49255e-05
-1.51864e-05
-4.56894e-05
-1.12955e-05
-4.61239e-05
-7.41162e-06
-4.62074e-05
-3.52338e-06
-4.60118e-05
3.11318e-07
-4.54997e-05
4.06906e-06
-4.46772e-05
7.73677e-06
-4.3578e-05
1.12928e-05
-4.22201e-05
1.47042e-05
-4.06071e-05
1.79635e-05
-3.87752e-05
2.1051e-05
-3.6737e-05
2.39497e-05
-3.45229e-05
2.66459e-05
-3.21409e-05
2.91302e-05
-2.96311e-05
3.13973e-05
-2.70139e-05
3.34269e-05
-2.43055e-05
3.52271e-05
-2.15405e-05
3.67945e-05
-1.87459e-05
3.81164e-05
-1.59336e-05
3.92059e-05
-1.31378e-05
4.00631e-05
-1.03833e-05
4.06936e-05
-7.68725e-06
4.1106e-05
-5.07555e-06
4.13001e-05
-2.55906e-06
4.12951e-05
-1.63498e-07
4.11006e-05
2.10506e-06
4.07276e-05
4.23492e-06
4.0189e-05
6.21965e-06
3.94997e-05
8.05063e-06
3.86649e-05
9.72767e-06
3.77036e-05
1.12413e-05
3.66314e-05
1.25878e-05
3.54616e-05
1.37682e-05
3.42095e-05
1.47788e-05
3.28824e-05
1.56343e-05
3.15019e-05
1.63252e-05
3.00765e-05
1.6861e-05
2.86183e-05
1.72542e-05
2.71417e-05
1.75062e-05
2.56593e-05
1.76253e-05
2.41719e-05
1.76278e-05
2.26981e-05
1.75186e-05
2.12461e-05
1.73027e-05
1.98152e-05
1.7005e-05
1.84222e-05
1.66185e-05
1.70653e-05
1.61633e-05
1.57538e-05
1.56501e-05
1.44939e-05
1.50798e-05
1.32805e-05
1.44735e-05
1.21251e-05
1.383e-05
1.10252e-05
1.3159e-05
9.98411e-06
1.2476e-05
9.00281e-06
1.17734e-05
8.07928e-06
1.10748e-05
7.21818e-06
1.03689e-05
6.41111e-06
9.6739e-06
5.6648e-06
8.98641e-06
4.97386e-06
8.3119e-06
4.33882e-06
7.65797e-06
3.75644e-06
7.02037e-06
3.22611e-06
6.41035e-06
2.74432e-06
5.82011e-06
2.30997e-06
5.26159e-06
1.92005e-06
4.72573e-06
1.572e-06
4.22343e-06
1.26581e-06
3.74483e-06
9.92713e-07
3.30182e-06
7.57559e-07
2.88353e-06
5.52558e-07
2.49586e-06
3.78258e-07
2.13884e-06
2.33384e-07
1.80571e-06
1.09371e-07
1.50498e-06
1.07371e-08
1.2283e-06
-6.72723e-08
9.81452e-07
-1.26839e-07
7.54467e-07
-1.69652e-07
5.51218e-07
-1.97582e-07
3.70444e-07
-2.12407e-07
2.10999e-07
-2.15802e-07
7.15006e-08
-2.09305e-07
-4.96747e-08
-1.94353e-07
-1.53301e-07
-1.72125e-07
-2.42747e-07
-1.43974e-07
-3.1524e-07
-1.10979e-07
-3.77644e-07
-7.40353e-08
-4.23054e-07
-3.39067e-08
-4.62413e-07
7.82239e-09
-4.87887e-07
5.11345e-08
-5.06704e-07
9.51917e-08
-5.16858e-07
1.39358e-07
-5.19739e-07
1.83153e-07
-5.16742e-07
2.26144e-07
-5.08269e-07
2.67943e-07
-4.95113e-07
3.08227e-07
-4.77982e-07
3.46727e-07
-4.57485e-07
3.83224e-07
-4.34211e-07
4.17526e-07
-4.08723e-07
4.49494e-07
-3.81501e-07
4.79041e-07
-3.53028e-07
5.0609e-07
-3.23612e-07
5.30599e-07
-2.93616e-07
5.52551e-07
-2.63342e-07
5.71957e-07
-2.33102e-07
5.88824e-07
-2.03133e-07
6.03204e-07
-1.73653e-07
6.15166e-07
-1.44871e-07
6.24783e-07
-1.16966e-07
6.32143e-07
-9.00752e-08
6.37342e-07
-6.43284e-08
6.40485e-07
-3.98373e-08
6.41689e-07
-1.67271e-08
6.41165e-07
4.23175e-09
6.38961e-07
2.43091e-08
6.35174e-07
4.32752e-08
6.2991e-07
6.09864e-08
6.23278e-07
7.7423e-08
6.15385e-07
9.25782e-08
6.06336e-07
1.06458e-07
5.9624e-07
1.19066e-07
5.85201e-07
1.30417e-07
5.73324e-07
1.4054e-07
5.60708e-07
1.49468e-07
5.47451e-07
1.57242e-07
5.33645e-07
1.6391e-07
5.19379e-07
1.69518e-07
5.04737e-07
1.74119e-07
4.89799e-07
1.77765e-07
4.7464e-07
1.80509e-07
4.59331e-07
1.82413e-07
4.43936e-07
1.83533e-07
4.28516e-07
1.83927e-07
4.13127e-07
1.83653e-07
3.97819e-07
1.82767e-07
3.82639e-07
1.81325e-07
3.67628e-07
1.79376e-07
3.52824e-07
1.76972e-07
3.3826e-07
1.74161e-07
3.23967e-07
1.7099e-07
3.09971e-07
1.67504e-07
2.96293e-07
1.63747e-07
2.82953e-07
1.59759e-07
2.69966e-07
1.55576e-07
2.57345e-07
1.51234e-07
2.45101e-07
1.46763e-07
2.33242e-07
1.42195e-07
2.21772e-07
1.37558e-07
2.10697e-07
1.32878e-07
2.00015e-07
1.2818e-07
1.89728e-07
1.23487e-07
1.79832e-07
1.18819e-07
1.70324e-07
1.14195e-07
1.61198e-07
1.09631e-07
1.52448e-07
1.05142e-07
1.44066e-07
1.00743e-07
1.36043e-07
9.6445e-08
1.2837e-07
9.22599e-08
1.21037e-07
8.81977e-08
1.14031e-07
8.42696e-08
1.07341e-07
8.04844e-08
1.00955e-07
7.68304e-08
9.48641e-08
7.3284e-08
8.906e-08
6.98265e-08
8.35367e-08
6.64523e-08
7.82875e-08
6.31634e-08
5.99681e-08
0.000213169
9.09628e-05
0.000204061
0.000114456
0.000192752
0.000142195
0.000179327
0.000168834
0.000164335
0.00018875
0.000147759
0.000208889
0.000129992
0.000223917
0.000111269
0.000236182
9.19035e-05
0.000245126
7.22358e-05
0.000249615
5.25015e-05
0.000251352
3.29767e-05
0.000249574
1.38932e-05
0.000244717
-4.85814e-06
0.000237861
-2.27615e-05
0.000229182
-3.98359e-05
0.000219298
-5.59324e-05
0.000207449
-7.10108e-05
0.000194771
-8.50442e-05
0.000181983
-9.80059e-05
0.000168459
-0.000109908
0.000155185
-0.000120796
0.000142299
-0.000130696
0.000129587
-0.000139636
0.000117394
-0.000147699
0.000105948
-0.00015494
9.5047e-05
-0.000161402
8.47651e-05
-0.000167118
7.49938e-05
-0.000172121
6.52813e-05
-0.000176423
5.59955e-05
-0.000180037
4.67363e-05
-0.000182936
3.75006e-05
-0.000185136
2.81751e-05
-0.000186635
1.8565e-05
-0.000187316
8.59411e-06
-0.000187191
-1.80929e-06
-0.000186255
-1.30788e-05
-0.00018446
-2.37264e-05
-0.000181836
-3.46897e-05
-0.00017826
-4.6926e-05
-0.000173843
-5.79423e-05
-0.000168418
-7.09753e-05
-0.000162126
-8.22125e-05
-0.00015496
-9.36582e-05
-0.000146666
-0.000107537
-0.000137485
-0.000118534
-0.000127485
-0.000129552
-0.000116434
-0.000142881
-0.000104438
-0.000155043
-9.16664e-05
-0.000165497
-7.79521e-05
-0.000178749
-6.33809e-05
-0.000188242
-4.79205e-05
-0.000198883
-3.16143e-05
-0.000208576
-1.49438e-05
-0.000213875
2.23889e-06
-0.000220745
1.99167e-05
-0.000226543
3.77393e-05
-0.000227194
5.56206e-05
-0.00022884
7.33325e-05
-0.000226876
9.08844e-05
-0.000224525
0.000108124
-0.000220463
0.000124878
-0.000212248
0.000140834
-0.000202838
0.000155989
-0.000192127
0.000169967
-0.000176909
0.000182722
-0.000161353
0.00019395
-0.000142427
0.000203693
-0.000122197
0.00021169
-9.93482e-05
0.000217639
-7.31883e-05
0.000221405
-4.55132e-05
0.000222883
-1.63844e-05
0.00022186
1.50579e-05
0.000218272
4.68706e-05
0.000212165
7.88268e-05
0.000203393
0.000110213
0.000192254
0.000140259
0.000178885
0.000167938
0.000163558
0.000192706
0.000146492
0.000213856
0.000128072
0.000230816
0.000108725
0.000243459
8.86856e-05
0.000251532
6.83888e-05
0.000255389
4.82076e-05
0.000254706
2.84214e-05
0.000250525
9.32735e-06
0.000242463
-8.83983e-06
0.000231784
-2.5929e-05
0.000218763
-4.18001e-05
0.000203501
-5.63242e-05
0.00018768
-6.95112e-05
0.000170584
-8.12588e-05
0.000153478
-9.17371e-05
0.000136469
-0.000100791
0.000119444
-0.000108693
0.000103694
-0.000115325
8.83939e-05
-0.000120862
7.40487e-05
-0.000125388
6.11711e-05
-0.000129012
4.91966e-05
-0.000131798
3.83384e-05
-0.000133879
2.84122e-05
-0.000135244
1.95508e-05
-0.000136037
1.14236e-05
-0.000136266
3.89185e-06
-0.000135965
-3.28211e-06
-0.000135164
-1.00215e-05
-0.000133859
-1.66859e-05
-0.000132092
-2.31593e-05
-0.000129823
-2.95657e-05
-0.000127053
-3.60538e-05
-0.000123785
-4.27776e-05
-0.000120001
-4.9517e-05
-0.000115683
-5.63638e-05
-0.000110826
-6.36033e-05
-0.000105387
-7.08622e-05
-9.93779e-05
-7.83144e-05
-9.27823e-05
-8.59583e-05
-8.55812e-05
-9.38059e-05
-7.77556e-05
-0.000101504
-6.93345e-05
-0.000109304
-6.03061e-05
-0.000116915
-5.0698e-05
-0.000124396
-4.04718e-05
-0.000131487
-2.97473e-05
-0.000138162
-1.85545e-05
-0.000144269
-6.92148e-06
-0.000149572
5.1013e-06
-0.000154028
1.73933e-05
-0.000157219
2.98533e-05
-0.000159288
4.24009e-05
-0.000159774
5.48458e-05
-0.000158805
6.71231e-05
-0.000156205
7.90701e-05
-0.000151812
9.0573e-05
-0.000145672
0.000101407
-0.000137625
0.000111502
-0.000127986
0.000120705
-0.000116523
0.000128886
-0.000103485
0.000135945
-8.89901e-05
0.000141771
-7.32331e-05
0.000146179
-5.64268e-05
0.000149236
-3.89585e-05
0.000150866
-2.09458e-05
0.000151057
-2.71213e-06
0.000149809
1.53772e-05
0.000147162
3.30452e-05
0.00014317
5.00054e-05
0.000137914
6.59576e-05
0.000131489
8.06801e-05
0.00012402
9.39157e-05
0.00011563
0.000105518
0.000106476
0.000115296
9.67115e-05
0.000123165
8.64929e-05
0.000129082
7.59817e-05
0.000133044
6.53313e-05
0.000135099
5.46787e-05
0.000135366
4.41529e-05
0.000133978
3.38851e-05
0.00013108
2.40023e-05
0.000126824
1.45092e-05
0.000121505
5.50319e-06
0.000115195
-2.94264e-06
0.00010812
-1.07426e-05
0.000100407
-1.78869e-05
9.22533e-05
-2.43567e-05
8.37929e-05
-3.01514e-05
7.51566e-05
-3.52584e-05
6.64379e-05
-3.96867e-05
5.77843e-05
-4.34461e-05
4.92272e-05
-4.65485e-05
4.08585e-05
-4.90266e-05
3.27502e-05
-5.08942e-05
2.49298e-05
-5.21771e-05
1.7439e-05
-5.2916e-05
1.03273e-05
-5.31322e-05
3.59774e-06
-5.28604e-05
-2.72959e-06
-5.21299e-05
-8.65451e-06
-5.09828e-05
-1.41703e-05
-4.94385e-05
-1.92891e-05
-4.75299e-05
-2.40087e-05
-4.52915e-05
-2.83321e-05
-4.27498e-05
-3.22569e-05
-3.9938e-05
-3.57772e-05
-3.68853e-05
-3.89078e-05
-3.36225e-05
-4.16254e-05
-3.01807e-05
-4.39975e-05
-2.65884e-05
-4.59499e-05
-2.28748e-05
-4.75275e-05
-1.90708e-05
-4.87295e-05
-1.52031e-05
-4.95571e-05
-1.13019e-05
-5.00251e-05
-7.39642e-06
-5.01128e-05
-3.50287e-06
-4.99053e-05
3.40095e-07
-4.93427e-05
4.11176e-06
-4.84488e-05
7.79082e-06
-4.72571e-05
1.13524e-05
-4.57816e-05
1.47758e-05
-4.40306e-05
1.8044e-05
-4.20433e-05
2.11414e-05
-3.98343e-05
2.4042e-05
-3.74236e-05
2.67443e-05
-3.48432e-05
2.92336e-05
-3.21204e-05
3.15004e-05
-2.92807e-05
3.35354e-05
-2.63405e-05
3.5338e-05
-2.3343e-05
3.69013e-05
-2.03092e-05
3.8226e-05
-1.72583e-05
3.93145e-05
-1.42262e-05
4.017e-05
-1.12389e-05
4.07996e-05
-8.31679e-06
4.12012e-05
-5.47714e-06
4.13935e-05
-2.75142e-06
4.13839e-05
-1.53889e-07
4.11845e-05
2.30447e-06
4.08065e-05
4.61292e-06
4.02646e-05
6.76157e-06
3.95629e-05
8.75236e-06
3.87225e-05
1.0568e-05
3.77562e-05
1.22076e-05
3.66777e-05
1.36663e-05
3.55038e-05
1.49422e-05
3.42406e-05
1.60419e-05
3.29097e-05
1.69652e-05
3.15255e-05
1.77095e-05
3.00909e-05
1.82955e-05
2.86283e-05
1.87169e-05
2.7147e-05
1.89874e-05
2.56575e-05
1.91148e-05
2.41672e-05
1.91181e-05
2.2691e-05
1.89948e-05
2.12314e-05
1.87623e-05
1.98003e-05
1.84361e-05
1.84049e-05
1.80139e-05
1.70448e-05
1.75234e-05
1.57319e-05
1.6963e-05
1.44684e-05
1.63433e-05
1.32552e-05
1.56867e-05
1.21008e-05
1.49844e-05
1.09981e-05
1.42618e-05
9.95915e-06
1.35149e-05
8.9742e-06
1.27583e-05
8.05212e-06
1.19969e-05
7.18876e-06
1.12323e-05
6.38411e-06
1.04786e-05
5.63996e-06
9.73056e-06
4.94786e-06
9.004e-06
4.31576e-06
8.29007e-06
3.73219e-06
7.60394e-06
3.20489e-06
6.93766e-06
2.72205e-06
6.30294e-06
2.29094e-06
5.69269e-06
1.89978e-06
5.11689e-06
1.55466e-06
4.56854e-06
1.24632e-06
4.05317e-06
9.76553e-07
3.57159e-06
7.42607e-07
3.11748e-06
5.38231e-07
2.70024e-06
3.66906e-07
2.31016e-06
2.19574e-07
1.95304e-06
9.85345e-08
1.62601e-06
8.41965e-10
1.32599e-06
-7.6243e-08
1.05854e-06
-1.34858e-07
8.13082e-07
-1.7678e-07
5.9314e-07
-2.03871e-07
3.97535e-07
-2.1791e-07
2.25038e-07
-2.20575e-07
7.4166e-08
-2.13406e-07
-5.68444e-08
-1.97823e-07
-1.68884e-07
-1.75032e-07
-2.65538e-07
-1.46288e-07
-3.43984e-07
-1.12901e-07
-4.11031e-07
-7.54848e-08
-4.6047e-07
-3.49431e-08
-5.02955e-07
7.09547e-09
-5.29926e-07
5.0726e-08
-5.50335e-07
9.50606e-08
-5.61193e-07
1.39478e-07
-5.64157e-07
1.83478e-07
-5.60743e-07
2.26649e-07
-5.51439e-07
2.68601e-07
-5.37065e-07
3.09013e-07
-5.18394e-07
3.47618e-07
-4.9609e-07
3.84199e-07
-4.70792e-07
4.18572e-07
-4.43096e-07
4.5059e-07
-4.1352e-07
4.80173e-07
-3.8261e-07
5.07244e-07
-3.50684e-07
5.31765e-07
-3.18137e-07
5.53723e-07
-2.853e-07
5.73118e-07
-2.52497e-07
5.89965e-07
-2.19981e-07
6.0432e-07
-1.88008e-07
6.1625e-07
-1.56801e-07
6.2583e-07
-1.26546e-07
6.33148e-07
-9.7393e-08
6.38301e-07
-6.9481e-08
6.41393e-07
-4.29301e-08
6.42542e-07
-1.78754e-08
6.4197e-07
4.803e-09
6.39715e-07
2.65646e-08
6.35876e-07
4.71143e-08
6.30561e-07
6.63012e-08
6.23877e-07
8.41065e-08
6.15933e-07
1.00523e-07
6.06834e-07
1.15557e-07
5.96687e-07
1.29213e-07
5.856e-07
1.41504e-07
5.73676e-07
1.52464e-07
5.61015e-07
1.62129e-07
5.47714e-07
1.70542e-07
5.33866e-07
1.77758e-07
5.1956e-07
1.83824e-07
5.0488e-07
1.88799e-07
4.89907e-07
1.92738e-07
4.74715e-07
1.95701e-07
4.59374e-07
1.97753e-07
4.43951e-07
1.98956e-07
4.28505e-07
1.99372e-07
4.13092e-07
1.99066e-07
3.97762e-07
1.98097e-07
3.82562e-07
1.96525e-07
3.67533e-07
1.94405e-07
3.52713e-07
1.91792e-07
3.38136e-07
1.88738e-07
3.2383e-07
1.85295e-07
3.09823e-07
1.81512e-07
2.96136e-07
1.77434e-07
2.82788e-07
1.73107e-07
2.69795e-07
1.68569e-07
2.57169e-07
1.63859e-07
2.44922e-07
1.59011e-07
2.33059e-07
1.54057e-07
2.21588e-07
1.49029e-07
2.10512e-07
1.43954e-07
1.99831e-07
1.38861e-07
1.89544e-07
1.33773e-07
1.7965e-07
1.28713e-07
1.70144e-07
1.23701e-07
1.61021e-07
1.18754e-07
1.52274e-07
1.13889e-07
1.43896e-07
1.09121e-07
1.35878e-07
1.04463e-07
1.2821e-07
9.99283e-08
1.20881e-07
9.55265e-08
1.1388e-07
9.12703e-08
1.07195e-07
8.71695e-08
1.00814e-07
8.32116e-08
9.4727e-08
7.93708e-08
8.89271e-08
7.56262e-08
8.34078e-08
7.19716e-08
7.81628e-08
6.84085e-08
6.49459e-08
0.000214306
9.82699e-05
0.000205119
0.000123643
0.000193711
0.000153603
0.000180172
0.000182373
0.000165054
0.000203868
0.000148343
0.0002256
0.000130424
0.000241835
0.000111572
0.000255034
9.20867e-05
0.000264612
7.23048e-05
0.000269397
5.24763e-05
0.000271181
3.28944e-05
0.000269156
1.36798e-05
0.000263932
-5.19442e-06
0.000256735
-2.31695e-05
0.000247157
-4.02967e-05
0.000236425
-5.64289e-05
0.000223581
-7.15276e-05
0.00020987
-8.55742e-05
0.00019603
-9.85384e-05
0.000181423
-0.000110427
0.000167073
-0.000121294
0.000153166
-0.000131163
0.000139456
-0.000140091
0.000126322
-0.00014813
0.000113988
-0.000155351
0.000102268
-0.000161811
9.12245e-05
-0.000167492
8.06753e-05
-0.000172495
7.02837e-05
-0.000176796
6.0297e-05
-0.000180419
5.03595e-05
-0.000183322
4.04031e-05
-0.000185537
3.03905e-05
-0.000187046
2.0074e-05
-0.000187734
9.28138e-06
-0.000187585
-1.95795e-06
-0.000186633
-1.40312e-05
-0.000184893
-2.54663e-05
-0.000182272
-3.73101e-05
-0.000178733
-5.04656e-05
-0.000174325
-6.23499e-05
-0.000168911
-7.63891e-05
-0.000162623
-8.85013e-05
-0.000155464
-0.000100817
-0.000147245
-0.000115756
-0.000137986
-0.000127792
-0.000127976
-0.000139562
-0.00011691
-0.000153947
-0.0001049
-0.000167053
-9.20943e-05
-0.000178302
-7.84005e-05
-0.000192443
-6.37891e-05
-0.000202854
-4.83529e-05
-0.000214319
-3.19508e-05
-0.000224978
-1.51982e-05
-0.000230628
2.03556e-06
-0.000237979
1.97757e-05
-0.000244283
3.76483e-05
-0.000245067
5.56434e-05
-0.000246836
7.34629e-05
-0.000244696
9.10495e-05
-0.000242112
0.000108364
-0.000237777
0.000125138
-0.000229023
0.000141246
-0.000218945
0.000156501
-0.000207383
0.000170573
-0.000190981
0.000183488
-0.000174268
0.000194761
-0.000153701
0.000204597
-0.000132033
0.000212686
-0.000107438
0.000218728
-7.92311e-05
0.000222584
-4.93686e-05
0.000224143
-1.79438e-05
0.00022319
1.6011e-05
0.000219559
5.05013e-05
0.000213308
8.5078e-05
0.000204516
0.000119005
0.000193311
0.000151464
0.000179823
0.000181426
0.000164334
0.000208195
0.000147133
0.000231057
0.000128549
0.000249401
0.000109043
0.000262964
8.87744e-05
0.000271801
6.83379e-05
0.000275825
4.79993e-05
0.000275045
2.80954e-05
0.000270429
8.87574e-06
0.000261683
-9.38062e-06
0.000250041
-2.65323e-05
0.000235915
-4.24601e-05
0.000219429
-5.69733e-05
0.000202193
-7.02128e-05
0.000183823
-8.19912e-05
0.000165256
-9.24214e-05
0.000146899
-0.000101463
0.000128486
-0.000109311
0.000111542
-0.000115903
9.49864e-05
-0.000121407
7.95522e-05
-0.000125879
6.5643e-05
-0.000129463
5.27803e-05
-0.000132207
4.10826e-05
-0.000134252
3.04576e-05
-0.000135588
2.08869e-05
-0.000136358
1.21932e-05
-0.000136568
4.10207e-06
-0.000136255
-3.59491e-06
-0.000135447
-1.08299e-05
-0.000134139
-1.79937e-05
-0.00013237
-2.4928e-05
-0.000130104
-3.1832e-05
-0.000127329
-3.88287e-05
-0.000124073
-4.60337e-05
-0.000120298
-5.3292e-05
-0.000115986
-6.06761e-05
-0.000111136
-6.84531e-05
-0.000105709
-7.62892e-05
-9.96723e-05
-8.43509e-05
-9.31027e-05
-9.25279e-05
-8.59068e-05
-0.000101002
-7.80797e-05
-0.000109331
-6.96526e-05
-0.000117731
-6.0581e-05
-0.000125987
-5.09943e-05
-0.000133983
-4.07746e-05
-0.000141707
-3.00348e-05
-0.000148902
-1.87911e-05
-0.000155513
-7.11114e-06
-0.000161252
4.95262e-06
-0.000166092
1.72979e-05
-0.000169565
2.98141e-05
-0.000171804
4.24575e-05
-0.000172418
5.49404e-05
-0.000171288
6.72822e-05
-0.000168547
7.92989e-05
-0.000163829
9.08476e-05
-0.000157221
0.000101775
-0.000148553
0.000111939
-0.00013815
0.000121207
-0.00012579
0.000129441
-0.000111719
0.000136536
-9.60849e-05
0.000142389
-7.90864e-05
0.000146861
-6.08994e-05
0.000149938
-4.20349e-05
0.000151573
-2.25811e-05
0.000151762
-2.90069e-06
0.000150496
1.66428e-05
0.000147823
3.57185e-05
0.00014379
5.40374e-05
0.000138488
7.126e-05
0.000132002
8.71659e-05
0.000124467
0.000101451
0.000116009
0.000113976
0.00010678
0.000124525
9.69417e-05
0.000133004
8.6648e-05
0.000139376
7.60698e-05
0.000143622
6.53525e-05
0.000145817
5.46538e-05
0.000146065
4.41027e-05
0.000144529
3.37664e-05
0.000141416
2.37422e-05
0.000136848
1.41951e-05
0.000131052
5.17664e-06
0.000124214
-3.25099e-06
0.000116547
-1.1065e-05
0.000108221
-1.82215e-05
9.94098e-05
-2.47014e-05
9.02727e-05
-3.04966e-05
8.09518e-05
-3.56018e-05
7.15431e-05
-4.00248e-05
6.22072e-05
-4.3776e-05
5.29784e-05
-4.68718e-05
4.39544e-05
-4.93358e-05
3.52142e-05
-5.11888e-05
2.67827e-05
-5.24617e-05
1.8712e-05
-5.31821e-05
1.10476e-05
-5.3382e-05
3.79762e-06
-5.30919e-05
-3.01967e-06
-5.2351e-05
-9.39542e-06
-5.11855e-05
-1.53358e-05
-4.9625e-05
-2.08496e-05
-4.76985e-05
-2.59353e-05
-4.54464e-05
-3.05842e-05
-4.28897e-05
-3.48136e-05
-4.00618e-05
-3.86051e-05
-3.69931e-05
-4.19765e-05
-3.37127e-05
-4.49059e-05
-3.02588e-05
-4.74514e-05
-2.66511e-05
-4.95577e-05
-2.29197e-05
-5.12589e-05
-1.91043e-05
-5.25449e-05
-1.52196e-05
-5.34418e-05
-1.13071e-05
-5.39375e-05
-7.38405e-06
-5.40359e-05
-3.47837e-06
-5.3811e-05
3.73808e-07
-5.31949e-05
4.15845e-06
-5.22335e-05
7.85213e-06
-5.09508e-05
1.14198e-05
-4.93493e-05
1.48539e-05
-4.74647e-05
1.81344e-05
-4.53238e-05
2.12322e-05
-4.29321e-05
2.4143e-05
-4.03344e-05
2.68514e-05
-3.75517e-05
2.93491e-05
-3.46182e-05
3.16145e-05
-3.15461e-05
3.36536e-05
-2.83795e-05
3.54604e-05
-2.51498e-05
3.70204e-05
-2.18692e-05
3.83452e-05
-1.85831e-05
3.9433e-05
-1.5314e-05
4.02883e-05
-1.20942e-05
4.09073e-05
-8.93571e-06
4.13073e-05
-5.87718e-06
4.14955e-05
-2.93963e-06
4.14808e-05
-1.39194e-07
4.12763e-05
2.50898e-06
4.08946e-05
4.99462e-06
4.03395e-05
7.31667e-06
3.96328e-05
9.45901e-06
3.87867e-05
1.14142e-05
3.78137e-05
1.31806e-05
3.67283e-05
1.47517e-05
3.55465e-05
1.6124e-05
3.42766e-05
1.73118e-05
3.29408e-05
1.8301e-05
3.15451e-05
1.91051e-05
3.01074e-05
1.97333e-05
2.86395e-05
2.01848e-05
2.7155e-05
2.04718e-05
2.5656e-05
2.06139e-05
2.41626e-05
2.06115e-05
2.26833e-05
2.04741e-05
2.12182e-05
2.02273e-05
1.97862e-05
1.98682e-05
1.83832e-05
1.94169e-05
1.70229e-05
1.88837e-05
1.57103e-05
1.82756e-05
1.44412e-05
1.76124e-05
1.32284e-05
1.68994e-05
1.20697e-05
1.61431e-05
1.0969e-05
1.53625e-05
9.92749e-06
1.45564e-05
8.94421e-06
1.37416e-05
8.02423e-06
1.29168e-05
7.15854e-06
1.2098e-05
6.35593e-06
1.12812e-05
5.60901e-06
1.04775e-05
4.92026e-06
9.69276e-06
4.28658e-06
8.92374e-06
3.70653e-06
8.18399e-06
3.17779e-06
7.4664e-06
2.69856e-06
6.78217e-06
2.26628e-06
6.12497e-06
1.87849e-06
5.50468e-06
1.5339e-06
4.91313e-06
1.22725e-06
4.35982e-06
9.60768e-07
3.83808e-06
7.24717e-07
3.35353e-06
5.23466e-07
2.90149e-06
3.51812e-07
2.48181e-06
2.06465e-07
2.09838e-06
8.91291e-08
1.74335e-06
-9.81652e-09
1.42493e-06
-8.59391e-08
1.13466e-06
-1.43535e-07
8.70678e-07
-1.84492e-07
6.34096e-07
-2.10673e-07
4.23715e-07
-2.23861e-07
2.38225e-07
-2.25737e-07
7.60416e-08
-2.17839e-07
-6.47422e-08
-2.0156e-07
-1.85163e-07
-1.78171e-07
-2.88927e-07
-1.48711e-07
-3.73444e-07
-1.14961e-07
-4.44781e-07
-7.70204e-08
-4.98411e-07
-3.60407e-08
-5.43935e-07
6.31142e-09
-5.72278e-07
5.02894e-08
-5.94313e-07
9.49242e-08
-6.05828e-07
1.39613e-07
-6.08846e-07
1.83837e-07
-6.04966e-07
2.27201e-07
-5.94804e-07
2.69319e-07
-5.79184e-07
3.0987e-07
-5.58945e-07
3.48588e-07
-5.34808e-07
3.85257e-07
-5.07462e-07
4.19708e-07
-4.77546e-07
4.5178e-07
-4.45592e-07
4.81401e-07
-4.12231e-07
5.08497e-07
-3.77779e-07
5.33031e-07
-3.4267e-07
5.54994e-07
-3.07264e-07
5.74376e-07
-2.71879e-07
5.91203e-07
-2.36808e-07
6.0553e-07
-2.02335e-07
6.17425e-07
-1.68696e-07
6.26965e-07
-1.36086e-07
6.34238e-07
-1.04665e-07
6.3934e-07
-7.45834e-08
6.42378e-07
-4.59682e-08
6.43465e-07
-1.89627e-08
6.42843e-07
5.42553e-09
6.40532e-07
2.88757e-08
6.36636e-07
5.10096e-08
6.31265e-07
7.16721e-08
6.24526e-07
9.08456e-08
6.16526e-07
1.08523e-07
6.07372e-07
1.24711e-07
5.97172e-07
1.39413e-07
5.86032e-07
1.52644e-07
5.74057e-07
1.6444e-07
5.61347e-07
1.74839e-07
5.47998e-07
1.83891e-07
5.34105e-07
1.91651e-07
5.19756e-07
1.98173e-07
5.05035e-07
2.03519e-07
4.90023e-07
2.0775e-07
4.74795e-07
2.10929e-07
4.59422e-07
2.13127e-07
4.43968e-07
2.14411e-07
4.28493e-07
2.14847e-07
4.13054e-07
2.14506e-07
3.977e-07
2.13451e-07
3.82479e-07
2.11747e-07
3.6743e-07
2.09454e-07
3.52593e-07
2.06629e-07
3.38e-07
2.03331e-07
3.23682e-07
1.99614e-07
3.09663e-07
1.9553e-07
2.95966e-07
1.91131e-07
2.8261e-07
1.86463e-07
2.6961e-07
1.81569e-07
2.56979e-07
1.7649e-07
2.44727e-07
1.71263e-07
2.32862e-07
1.65922e-07
2.21389e-07
1.60502e-07
2.10311e-07
1.55032e-07
1.99631e-07
1.49542e-07
1.89345e-07
1.44058e-07
1.79453e-07
1.38605e-07
1.69949e-07
1.33204e-07
1.6083e-07
1.27874e-07
1.52087e-07
1.22632e-07
1.43713e-07
1.17495e-07
1.35699e-07
1.12477e-07
1.28035e-07
1.07592e-07
1.20712e-07
1.0285e-07
1.13716e-07
9.82657e-08
1.07036e-07
9.38492e-08
1.0066e-07
8.95876e-08
9.45784e-08
8.54527e-08
8.87832e-08
8.14215e-08
8.32682e-08
7.74866e-08
7.80276e-08
7.36491e-08
6.99189e-08
0.000215533
0.000105648
0.00020626
0.000132916
0.000194747
0.000165116
0.000181084
0.000196036
0.000165831
0.000219121
0.000148973
0.000242458
0.000130901
0.000259907
0.000111909
0.000274027
9.22937e-05
0.000284227
7.2392e-05
0.000289298
5.24766e-05
0.000291096
3.2752e-05
0.000288881
1.3364e-05
0.000283319
-5.56458e-06
0.000275664
-2.36125e-05
0.000265205
-4.07965e-05
0.000253609
-5.6966e-05
0.000239751
-7.20879e-05
0.000224992
-8.61471e-05
0.000210089
-9.91227e-05
0.000194399
-0.000110988
0.000178939
-0.000121834
0.000164012
-0.000131677
0.000149299
-0.000140582
0.000135227
-0.000148597
0.000122003
-0.000155793
0.000109465
-0.000162245
9.76764e-05
-0.000167902
8.63324e-05
-0.000172897
7.52786e-05
-0.000177199
6.45987e-05
-0.000180831
5.39917e-05
-0.000183745
4.33167e-05
-0.000185992
3.26382e-05
-0.00018747
2.15512e-05
-0.000188186
9.99775e-06
-0.000188022
-2.12164e-06
-0.000187068
-1.49857e-05
-0.000185315
-2.72197e-05
-0.000182706
-3.99187e-05
-0.000179164
-5.40072e-05
-0.000174758
-6.67564e-05
-0.00016936
-8.17866e-05
-0.000163161
-9.47012e-05
-0.000156009
-0.000107969
-0.000147771
-0.000123995
-0.000138534
-0.000137029
-0.00012851
-0.000149586
-0.000117424
-0.000165033
-0.000105403
-0.000179075
-9.25683e-05
-0.000191137
-7.87798e-05
-0.000206232
-6.42338e-05
-0.0002174
-4.87378e-05
-0.000229816
-3.23315e-05
-0.000241384
-1.54716e-05
-0.000247488
1.8167e-06
-0.000255267
1.96265e-05
-0.000262093
3.75507e-05
-0.000262991
5.5672e-05
-0.000264957
7.36124e-05
-0.000262636
9.12281e-05
-0.000259728
0.000108627
-0.000255177
0.000125455
-0.00024585
0.000141601
-0.000235092
0.000156974
-0.000222756
0.000171224
-0.000205231
0.000184242
-0.000187287
0.000195656
-0.000165115
0.000205583
-0.00014196
0.00021379
-0.000115644
0.000219973
-8.54149e-05
0.000223933
-5.33284e-05
0.0002255
-1.95106e-05
0.000224439
1.70715e-05
0.000220854
5.40866e-05
0.000214599
9.13326e-05
0.00020574
0.000127865
0.000194452
0.000162751
0.000180835
0.000195043
0.000165187
0.000223843
0.000147844
0.0002484
0.000129134
0.00026811
0.000109323
0.000282776
8.88912e-05
0.000292232
6.82855e-05
0.000296431
4.7776e-05
0.000295554
2.77615e-05
0.000290443
8.38754e-06
0.000281057
-9.96377e-06
0.000268392
-2.71523e-05
0.000253104
-4.31716e-05
0.000235449
-5.77187e-05
0.00021674
-7.09727e-05
0.000197077
-8.27547e-05
0.000177038
-9.31579e-05
0.000157302
-0.000102215
0.000137543
-0.000109979
0.000119306
-0.000116529
0.000101537
-0.000121976
8.49988e-05
-0.000126407
7.00742e-05
-0.000129947
5.63205e-05
-0.000132647
4.37819e-05
-0.000134654
3.24645e-05
-0.000135959
2.21922e-05
-0.000136702
1.29368e-05
-0.000136891
4.2902e-06
-0.00013657
-3.91595e-06
-0.000135751
-1.16485e-05
-0.000134438
-1.93065e-05
-0.00013267
-2.66964e-05
-0.000130404
-3.40975e-05
-0.000127606
-4.16266e-05
-0.000124383
-4.92566e-05
-0.000120616
-5.70595e-05
-0.000116311
-6.49814e-05
-0.000111469
-7.32943e-05
-0.00010605
-8.17086e-05
-0.000100018
-9.03828e-05
-9.34504e-05
-9.90957e-05
-8.62583e-05
-0.000108194
-7.84025e-05
-0.000117187
-6.99955e-05
-0.000126138
-6.09472e-05
-0.000135035
-5.13177e-05
-0.000143612
-4.10939e-05
-0.00015193
-3.0319e-05
-0.000159677
-1.9003e-05
-0.000166829
-7.31252e-06
-0.000172943
4.79366e-06
-0.000178198
1.71945e-05
-0.000181966
2.97739e-05
-0.000184384
4.24375e-05
-0.000185081
5.5059e-05
-0.000183909
6.74547e-05
-0.000180943
7.95448e-05
-0.000175919
9.11625e-05
-0.000168839
0.000102178
-0.000159568
0.000112412
-0.000148385
0.000121744
-0.000135122
0.000130042
-0.000120018
0.000137184
-0.000103226
0.000143066
-8.4969e-05
0.00014765
-6.54834e-05
0.000150702
-4.50864e-05
0.000152339
-2.42187e-05
0.000152525
-3.08642e-06
0.000151239
1.79284e-05
0.000148537
3.84208e-05
0.000144462
5.81126e-05
0.000139105
7.66169e-05
0.000132558
9.37125e-05
0.000124952
0.000109057
0.000116419
0.000122509
0.00010711
0.000133834
9.71888e-05
0.000142925
8.68211e-05
0.000149743
7.61939e-05
0.000154249
6.54218e-05
0.000156589
5.45992e-05
0.000156887
4.3917e-05
0.000155211
3.35142e-05
0.000151819
2.34822e-05
0.00014688
1.39113e-05
0.000140623
4.86447e-06
0.000133261
-3.58346e-06
0.000124995
-1.14126e-05
0.000116051
-1.8582e-05
0.000106579
-2.50712e-05
9.67619e-05
-3.08685e-05
8.6749e-05
-3.59726e-05
7.66473e-05
-4.03892e-05
6.66238e-05
-4.41287e-05
5.6718e-05
-4.72192e-05
4.70448e-05
-4.96688e-05
3.76638e-05
-5.15044e-05
2.86184e-05
-5.27656e-05
1.99731e-05
-5.34685e-05
1.17506e-05
-5.36501e-05
3.97919e-06
-5.33433e-05
-3.32645e-06
-5.25869e-05
-1.01519e-05
-5.14033e-05
-1.65194e-05
-4.98253e-05
-2.24276e-05
-4.78858e-05
-2.78749e-05
-4.56102e-05
-3.28598e-05
-4.304e-05
-3.73838e-05
-4.01948e-05
-4.14503e-05
-3.71092e-05
-4.50621e-05
-3.38152e-05
-4.81999e-05
-3.03424e-05
-5.09242e-05
-2.67182e-05
-5.31818e-05
-2.29742e-05
-5.5003e-05
-1.91398e-05
-5.63793e-05
-1.52429e-05
-5.73387e-05
-1.13136e-05
-5.78669e-05
-7.37149e-06
-5.7978e-05
-3.4575e-06
-5.7725e-05
4.10999e-07
-5.70634e-05
4.20991e-06
-5.60324e-05
7.91083e-06
-5.46517e-05
1.14934e-05
-5.29319e-05
1.49392e-05
-5.09105e-05
1.8224e-05
-4.86086e-05
2.13334e-05
-4.60415e-05
2.42521e-05
-4.32531e-05
2.69676e-05
-4.02671e-05
2.94659e-05
-3.71165e-05
3.17386e-05
-3.38188e-05
3.37826e-05
-3.04236e-05
3.5585e-05
-2.69522e-05
3.71495e-05
-2.34337e-05
3.8475e-05
-1.99087e-05
3.9563e-05
-1.6402e-05
4.04082e-05
-1.29393e-05
4.10265e-05
-9.55409e-06
4.14226e-05
-6.27328e-06
4.16059e-05
-3.12285e-06
4.15868e-05
-1.20105e-07
4.13773e-05
2.71845e-06
4.09821e-05
5.38982e-06
4.04226e-05
7.87619e-06
3.97095e-05
1.01721e-05
3.88562e-05
1.22675e-05
3.78762e-05
1.41607e-05
3.67862e-05
1.58417e-05
3.5591e-05
1.73191e-05
3.43159e-05
1.85869e-05
3.29733e-05
1.96436e-05
3.15693e-05
2.05091e-05
3.01256e-05
2.1177e-05
2.86541e-05
2.16563e-05
2.71573e-05
2.19686e-05
2.56557e-05
2.21155e-05
2.41599e-05
2.21074e-05
2.26707e-05
2.19633e-05
2.12046e-05
2.16935e-05
1.97669e-05
2.13058e-05
1.83621e-05
2.08218e-05
1.70007e-05
2.0245e-05
1.56816e-05
1.95948e-05
1.44131e-05
1.88809e-05
1.32008e-05
1.81117e-05
1.20388e-05
1.73051e-05
1.094e-05
1.64613e-05
9.89456e-06
1.56018e-05
8.91304e-06
1.47231e-05
7.98951e-06
1.38404e-05
7.12666e-06
1.29608e-05
6.32438e-06
1.20834e-05
5.57804e-06
1.12238e-05
4.89215e-06
1.03786e-05
4.25722e-06
9.55868e-06
3.68029e-06
8.76091e-06
3.15064e-06
7.99606e-06
2.6747e-06
7.25811e-06
2.24152e-06
6.55815e-06
1.8574e-06
5.88881e-06
1.51113e-06
5.25939e-06
1.20792e-06
4.66304e-06
9.39666e-07
4.10633e-06
7.07105e-07
3.58609e-06
5.0868e-07
3.09991e-06
3.35944e-07
2.65455e-06
1.93712e-07
2.24062e-06
7.45823e-08
1.86248e-06
-2.13334e-08
1.52085e-06
-9.63642e-08
1.20969e-06
-1.52868e-07
9.27181e-07
-1.92787e-07
6.74015e-07
-2.17986e-07
4.48915e-07
-2.30258e-07
2.50496e-07
-2.31283e-07
7.70668e-08
-2.22602e-07
-7.34239e-08
-2.05552e-07
-2.02212e-07
-1.81547e-07
-3.12933e-07
-1.51503e-07
-4.03488e-07
-1.17161e-07
-4.79124e-07
-7.86038e-08
-5.36969e-07
-3.75018e-08
-5.85037e-07
5.47073e-09
-6.15251e-07
4.98263e-08
-6.38668e-07
9.4784e-08
-6.50786e-07
1.39766e-07
-6.53828e-07
1.84229e-07
-6.4943e-07
2.27802e-07
-6.38376e-07
2.70098e-07
-6.2148e-07
3.10798e-07
-5.99645e-07
3.49637e-07
-5.73647e-07
3.86403e-07
-5.44228e-07
4.2093e-07
-5.12073e-07
4.53063e-07
-4.77725e-07
4.82726e-07
-4.41894e-07
5.09848e-07
-4.04901e-07
5.34399e-07
-3.67222e-07
5.56364e-07
-3.29228e-07
5.75732e-07
-2.91248e-07
5.92537e-07
-2.53612e-07
6.06834e-07
-2.16632e-07
6.18692e-07
-1.80554e-07
6.28188e-07
-1.45583e-07
6.35412e-07
-1.11888e-07
6.4046e-07
-7.96318e-08
6.43439e-07
-4.89474e-08
6.4446e-07
-1.99838e-08
6.43783e-07
6.10305e-09
6.41412e-07
3.12469e-08
6.37456e-07
5.49656e-08
6.32024e-07
7.71033e-08
6.25225e-07
9.76448e-08
6.17165e-07
1.16583e-07
6.07953e-07
1.33924e-07
5.97694e-07
1.49671e-07
5.86498e-07
1.63841e-07
5.74467e-07
1.76471e-07
5.61703e-07
1.87603e-07
5.48304e-07
1.9729e-07
5.34362e-07
2.05593e-07
5.19966e-07
2.12569e-07
5.05202e-07
2.18284e-07
4.90148e-07
2.22804e-07
4.74882e-07
2.26196e-07
4.59472e-07
2.28537e-07
4.43985e-07
2.29898e-07
4.2848e-07
2.30352e-07
4.13012e-07
2.29973e-07
3.97633e-07
2.2883e-07
3.82388e-07
2.26992e-07
3.67319e-07
2.24523e-07
3.52463e-07
2.21485e-07
3.37854e-07
2.1794e-07
3.23521e-07
2.13947e-07
3.0949e-07
2.09561e-07
2.95782e-07
2.04838e-07
2.82417e-07
1.99828e-07
2.6941e-07
1.94577e-07
2.56773e-07
1.89127e-07
2.44517e-07
1.83519e-07
2.32649e-07
1.77791e-07
2.21174e-07
1.71977e-07
2.10096e-07
1.6611e-07
1.99415e-07
1.60222e-07
1.89131e-07
1.54343e-07
1.7924e-07
1.48496e-07
1.6974e-07
1.42705e-07
1.60623e-07
1.3699e-07
1.51884e-07
1.31371e-07
1.43515e-07
1.25864e-07
1.35506e-07
1.20486e-07
1.27847e-07
1.1525e-07
1.20529e-07
1.10169e-07
1.13539e-07
1.05255e-07
1.06866e-07
1.00523e-07
1.00495e-07
9.5958e-08
9.44185e-08
9.15293e-08
8.86282e-08
8.72118e-08
8.31179e-08
8.29969e-08
7.7882e-08
7.8885e-08
7.48867e-08
0.000216853
0.000113102
0.000207488
0.00014228
0.000195861
0.000176742
0.000182064
0.000209833
0.000166664
0.000234521
0.000149647
0.000259475
0.000131424
0.00027813
0.00011228
0.000293171
9.25303e-05
0.000303976
7.25109e-05
0.000309318
5.24301e-05
0.000311177
3.25268e-05
0.000308784
1.30333e-05
0.000302813
-5.96817e-06
0.000294665
-2.40914e-05
0.000283328
-4.13364e-05
0.000270855
-5.75443e-05
0.000255959
-7.26922e-05
0.00024014
-8.67624e-05
0.000224159
-9.97341e-05
0.000207371
-0.000111592
0.000190797
-0.00012242
0.000174839
-0.000132233
0.000159112
-0.000141109
0.000144103
-0.000149097
0.00012999
-0.000156265
0.000116633
-0.000162695
0.000104106
-0.000168344
9.19813e-05
-0.000173329
8.02636e-05
-0.000177633
6.89024e-05
-0.000181276
5.76355e-05
-0.000184219
4.62597e-05
-0.000186435
3.48533e-05
-0.000187924
2.30407e-05
-0.00018865
1.07231e-05
-0.0001885
-2.27164e-06
-0.000187549
-1.5936e-05
-0.000185796
-2.89727e-05
-0.000183195
-4.25201e-05
-0.000179652
-5.75498e-05
-0.000175254
-7.11543e-05
-0.000169856
-8.7185e-05
-0.000163635
-0.000100923
-0.000156587
-0.000115016
-0.000148344
-0.000132238
-0.00013914
-0.000146233
-0.000129086
-0.000159641
-0.00011798
-0.000176138
-0.000105946
-0.000191109
-9.3084e-05
-0.000203999
-7.92273e-05
-0.000220089
-6.47149e-05
-0.000231912
-4.91586e-05
-0.000245372
-3.27839e-05
-0.000257759
-1.57848e-05
-0.000264487
1.58079e-06
-0.000272633
1.94674e-05
-0.00027998
3.74641e-05
-0.000280988
5.56708e-05
-0.000283164
7.37039e-05
-0.00028067
9.14168e-05
-0.000277441
0.000108914
-0.000272674
0.000125818
-0.000262754
0.000142043
-0.000251318
0.00015748
-0.000238192
0.000171797
-0.000219548
0.000185052
-0.000200542
0.000196684
-0.000176747
0.000206718
-0.000151994
0.000215054
-0.000123981
0.000221266
-9.1627e-05
0.00022521
-5.72721e-05
0.000226762
-2.10631e-05
0.000225822
1.80119e-05
0.000222259
5.76491e-05
0.000215995
9.75971e-05
0.000207072
0.000136787
0.000195682
0.000174141
0.000181927
0.000208799
0.000166111
0.000239658
0.000148597
0.000265915
0.000129585
0.000287122
0.000109619
0.000302741
8.90189e-05
0.000312833
6.82498e-05
0.0003172
4.75403e-05
0.000316264
2.73675e-05
0.000310616
7.86315e-06
0.000300561
-1.05847e-05
0.00028684
-2.78844e-05
0.000270403
-4.39368e-05
0.000251501
-5.85647e-05
0.000231368
-7.17882e-05
0.000210301
-8.35692e-05
0.000188819
-9.39477e-05
0.000167681
-0.000102984
0.000146579
-0.000110694
0.000127016
-0.0001172
0.000108043
-0.000122628
9.04265e-05
-0.000126977
7.44236e-05
-0.000130467
5.98098e-05
-0.000133118
4.6433e-05
-0.000135083
3.44296e-05
-0.000136355
2.34643e-05
-0.000137071
1.36531e-05
-0.00013723
4.44935e-06
-0.000136905
-4.24139e-06
-0.000136076
-1.24777e-05
-0.000134761
-2.06213e-05
-0.000132989
-2.84681e-05
-0.000130724
-3.63627e-05
-0.000127969
-4.43822e-05
-0.000124717
-5.25084e-05
-0.000120957
-6.08194e-05
-0.000116657
-6.92811e-05
-0.000111828
-7.81235e-05
-0.000106415
-8.71213e-05
-0.000100417
-9.63814e-05
-9.38219e-05
-0.00010569
-8.6634e-05
-0.000115382
-7.88008e-05
-0.00012502
-7.0368e-05
-0.000134571
-6.13263e-05
-0.000144077
-5.1664e-05
-0.000153275
-4.14259e-05
-0.000162168
-3.06219e-05
-0.000170481
-1.92993e-05
-0.000178151
-7.52632e-06
-0.000184716
4.62144e-06
-0.000190346
1.70892e-05
-0.000194434
2.97299e-05
-0.000197025
4.24547e-05
-0.000197806
5.51693e-05
-0.000196624
6.76395e-05
-0.000193413
7.98071e-05
-0.000188087
9.15024e-05
-0.000180534
0.000102654
-0.00017072
0.000112921
-0.000158652
0.000122325
-0.000144525
0.000130691
-0.000128384
0.000137885
-0.00011042
0.000143816
-9.09003e-05
0.000148391
-7.00582e-05
0.00015154
-4.82359e-05
0.000153166
-2.58447e-05
0.000153348
-3.26826e-06
0.000152041
1.92355e-05
0.000149303
4.11578e-05
0.000145185
6.22311e-05
0.000139771
8.20312e-05
0.000133157
0.000100326
0.000125473
0.000116741
0.000116863
0.000131119
0.000107467
0.00014323
9.74648e-05
0.000152927
8.70642e-05
0.000160144
7.62727e-05
0.000165041
6.53619e-05
0.0001675
5.44878e-05
0.000167761
4.37645e-05
0.000165934
3.33076e-05
0.000162276
2.32238e-05
0.000156964
1.3617e-05
0.000150229
4.53424e-06
0.000142343
-3.94015e-06
0.00013347
-1.1785e-05
0.000123895
-1.89681e-05
0.000113762
-2.54674e-05
0.000103261
-3.12675e-05
9.25492e-05
-3.63767e-05
8.17564e-05
-4.07786e-05
7.10256e-05
-4.45141e-05
6.04534e-05
-4.75902e-05
5.01209e-05
-5.00247e-05
4.00983e-05
-5.18499e-05
3.04435e-05
-5.30905e-05
2.12137e-05
-5.37751e-05
1.24352e-05
-5.39354e-05
4.13941e-06
-5.36165e-05
-3.64534e-06
-5.28386e-05
-1.09297e-05
-5.16363e-05
-1.77217e-05
-5.00374e-05
-2.40264e-05
-4.80831e-05
-2.98292e-05
-4.57923e-05
-3.51506e-05
-4.32003e-05
-3.99758e-05
-4.03347e-05
-4.43158e-05
-3.72394e-05
-4.81575e-05
-3.39231e-05
-5.15162e-05
-3.04318e-05
-5.44154e-05
-2.67884e-05
-5.68253e-05
-2.30298e-05
-5.87616e-05
-1.91748e-05
-6.02343e-05
-1.52652e-05
-6.12483e-05
-1.13298e-05
-6.18023e-05
-7.36337e-06
-6.19444e-05
-3.43263e-06
-6.16558e-05
4.51386e-07
-6.09474e-05
4.26586e-06
-5.98468e-05
7.97722e-06
-5.83631e-05
1.1573e-05
-5.65277e-05
1.50323e-05
-5.43698e-05
1.83235e-05
-5.18999e-05
2.14428e-05
-4.91608e-05
2.43709e-05
-4.61811e-05
2.70948e-05
-4.29911e-05
2.95945e-05
-3.96161e-05
3.18724e-05
-3.60967e-05
3.3919e-05
-3.24702e-05
3.57224e-05
-2.87556e-05
3.72889e-05
-2.50002e-05
3.86155e-05
-2.12353e-05
3.96948e-05
-1.74814e-05
4.05405e-05
-1.3785e-05
4.11555e-05
-1.01691e-05
4.15472e-05
-6.66493e-06
4.17271e-05
-3.30279e-06
4.16998e-05
-9.27685e-08
4.14781e-05
2.94006e-06
4.10792e-05
5.78878e-06
4.05126e-05
8.44278e-06
3.97922e-05
1.08925e-05
3.89321e-05
1.31276e-05
3.79458e-05
1.51469e-05
3.6841e-05
1.69465e-05
3.56407e-05
1.85194e-05
3.43612e-05
1.98664e-05
3.30047e-05
2.10001e-05
3.15959e-05
2.1918e-05
3.0148e-05
2.26249e-05
2.86631e-05
2.31412e-05
2.71626e-05
2.34691e-05
2.56559e-05
2.36222e-05
2.41526e-05
2.36107e-05
2.266e-05
2.34559e-05
2.11924e-05
2.31611e-05
1.97467e-05
2.27515e-05
1.83402e-05
2.22283e-05
1.69745e-05
2.16108e-05
1.5653e-05
2.09162e-05
1.43848e-05
2.01491e-05
1.31663e-05
1.93302e-05
1.20063e-05
1.84651e-05
1.09036e-05
1.7564e-05
9.86024e-06
1.66452e-05
8.87844e-06
1.57049e-05
7.95472e-06
1.47641e-05
7.09479e-06
1.38208e-05
6.28917e-06
1.28891e-05
5.54648e-06
1.19665e-05
4.85753e-06
1.10676e-05
4.2269e-06
1.01893e-05
3.64786e-06
9.33995e-06
3.12281e-06
8.5211e-06
2.64487e-06
7.73606e-06
2.21625e-06
6.98677e-06
1.83044e-06
6.27462e-06
1.48804e-06
5.60179e-06
1.18565e-06
4.96543e-06
9.19034e-07
4.37294e-06
6.90158e-07
3.81497e-06
4.88926e-07
3.30114e-06
3.20302e-07
2.82317e-06
1.78461e-07
2.38246e-06
6.05508e-08
1.98039e-06
-3.36585e-08
1.61506e-06
-1.07514e-07
1.28355e-06
-1.62856e-07
9.82522e-07
-2.0166e-07
7.12818e-07
-2.25801e-07
4.73055e-07
-2.37107e-07
2.61802e-07
-2.37214e-07
7.71735e-08
-2.27693e-07
-8.2945e-08
-2.09787e-07
-2.20118e-07
-1.85155e-07
-3.37565e-07
-1.54471e-07
-4.34172e-07
-1.19506e-07
-5.14089e-07
-8.02024e-08
-5.76273e-07
-3.9043e-08
-6.26197e-07
4.58015e-09
-6.58874e-07
4.93389e-08
-6.83427e-07
9.46413e-08
-6.96088e-07
1.39937e-07
-6.99124e-07
1.84658e-07
-6.94151e-07
2.28452e-07
-6.82171e-07
2.70938e-07
-6.63966e-07
3.11798e-07
-6.40504e-07
3.50767e-07
-6.12617e-07
3.87636e-07
-5.81097e-07
4.22242e-07
-5.46679e-07
4.54441e-07
-5.09925e-07
4.84149e-07
-4.71602e-07
5.11299e-07
-4.32051e-07
5.35871e-07
-3.91794e-07
5.57832e-07
-3.51189e-07
5.77186e-07
-3.10602e-07
5.93967e-07
-2.70393e-07
6.08232e-07
-2.30896e-07
6.2005e-07
-1.92372e-07
6.295e-07
-1.55033e-07
6.3667e-07
-1.19059e-07
6.41661e-07
-8.46222e-08
6.44577e-07
-5.18634e-08
6.45527e-07
-2.09339e-08
6.4479e-07
6.83953e-09
6.42354e-07
3.36829e-08
6.38333e-07
5.89867e-08
6.32837e-07
8.25993e-08
6.25974e-07
1.04508e-07
6.1785e-07
1.24706e-07
6.08574e-07
1.432e-07
5.98253e-07
1.59992e-07
5.86996e-07
1.75099e-07
5.74906e-07
1.8856e-07
5.62085e-07
2.00423e-07
5.48631e-07
2.10744e-07
5.34637e-07
2.19588e-07
5.20191e-07
2.27014e-07
5.0538e-07
2.33096e-07
4.90282e-07
2.37901e-07
4.74974e-07
2.41504e-07
4.59526e-07
2.43985e-07
4.44002e-07
2.45421e-07
4.28465e-07
2.45889e-07
4.12967e-07
2.4547e-07
3.97561e-07
2.44236e-07
3.82291e-07
2.42261e-07
3.672e-07
2.39614e-07
3.52324e-07
2.36361e-07
3.37697e-07
2.32567e-07
3.23348e-07
2.28296e-07
3.09304e-07
2.23606e-07
2.95585e-07
2.18557e-07
2.82211e-07
2.13203e-07
2.69196e-07
2.07592e-07
2.56553e-07
2.0177e-07
2.44292e-07
1.9578e-07
2.3242e-07
1.89662e-07
2.20943e-07
1.83454e-07
2.09864e-07
1.77189e-07
1.99184e-07
1.70903e-07
1.88901e-07
1.64625e-07
1.79012e-07
1.58384e-07
1.69515e-07
1.52203e-07
1.60402e-07
1.46103e-07
1.51667e-07
1.40106e-07
1.43303e-07
1.34229e-07
1.35299e-07
1.2849e-07
1.27646e-07
1.22903e-07
1.20334e-07
1.17481e-07
1.1335e-07
1.12239e-07
1.06683e-07
1.07191e-07
1.00318e-07
1.02322e-07
9.42473e-08
9.76002e-08
8.84622e-08
9.29968e-08
8.29568e-08
8.85023e-08
7.77259e-08
8.41158e-08
7.9849e-08
0.000218265
0.000120639
0.000208802
0.000151744
0.000197054
0.00018849
0.000183113
0.000223774
0.000167556
0.000250079
0.000150379
0.000276652
0.000131993
0.000296516
0.000112692
0.000312472
9.28134e-05
0.000323855
7.25963e-05
0.000329535
5.23156e-05
0.000331457
3.22883e-05
0.000328812
1.26854e-05
0.000322416
-6.40485e-06
0.000313756
-2.46071e-05
0.00030153
-4.19154e-05
0.000288163
-5.81646e-05
0.000272208
-7.33411e-05
0.000255316
-8.74207e-05
0.000238239
-0.00010039
0.00022034
-0.000112238
0.000202645
-0.000123062
0.000185663
-0.00013283
0.00016888
-0.000141672
0.000152945
-0.000149629
0.000137948
-0.00015677
0.000123773
-0.000163178
0.000110514
-0.000168814
9.76177e-05
-0.000173789
8.52384e-05
-0.000178101
7.32149e-05
-0.000181767
6.13013e-05
-0.000184695
4.91881e-05
-0.00018691
3.70681e-05
-0.000188411
2.45415e-05
-0.000189111
1.14234e-05
-0.000189012
-2.37097e-06
-0.000188071
-1.68766e-05
-0.000186326
-3.07181e-05
-0.000183735
-4.51112e-05
-0.000180196
-6.10883e-05
-0.000175807
-7.55438e-05
-0.000170412
-9.25798e-05
-0.00016418
-0.000107155
-0.000157095
-0.000122101
-0.000148965
-0.000140368
-0.000139846
-0.000155352
-0.000129706
-0.000169781
-0.000118581
-0.000187263
-0.00010653
-0.00020316
-9.36408e-05
-0.000216888
-7.97322e-05
-0.000233997
-6.51102e-05
-0.000246535
-4.96142e-05
-0.000260868
-3.32145e-05
-0.000274159
-1.61368e-05
-0.000281565
1.32705e-06
-0.000290097
1.92987e-05
-0.000297952
3.73782e-05
-0.000299068
5.56329e-05
-0.000301419
7.38075e-05
-0.000298844
9.16191e-05
-0.000295253
0.000109225
-0.00029028
0.000126215
-0.000279744
0.000142537
-0.00026764
0.000158065
-0.000253721
0.000172483
-0.000233966
0.000185781
-0.00021384
0.000197642
-0.000188609
0.000207856
-0.000162208
0.000216268
-0.000132393
0.00022248
-9.78391e-05
0.000226519
-6.13104e-05
0.000228206
-2.27502e-05
0.000227324
1.88935e-05
0.000223782
6.1191e-05
0.000217494
0.000103885
0.000208514
0.000145767
0.000197001
0.000185655
0.000183093
0.000222706
0.000167107
0.000255645
0.000149351
0.000283671
0.000130149
0.000306325
0.000109959
0.000322931
8.91567e-05
0.000333635
6.81848e-05
0.000338172
4.72851e-05
0.000337163
2.69497e-05
0.000330952
7.30484e-06
0.000320206
-1.12337e-05
0.000305378
-2.8686e-05
0.000287856
-4.47315e-05
0.000267546
-5.9436e-05
0.000246072
-7.26557e-05
0.00022352
-8.44383e-05
0.000200602
-9.47824e-05
0.000178025
-0.000103798
0.000155595
-0.00011146
0.000134678
-0.00011792
0.000114503
-0.000123293
9.5799e-05
-0.000127583
7.87141e-05
-0.000131018
6.32442e-05
-0.000133619
4.90347e-05
-0.000135539
3.63496e-05
-0.000136776
2.47006e-05
-0.000137462
1.43399e-05
-0.000137608
4.59535e-06
-0.000137263
-4.5871e-06
-0.000136422
-1.33186e-05
-0.00013511
-2.1933e-05
-0.00013333
-3.02486e-05
-0.000131068
-3.86246e-05
-0.000128321
-4.71283e-05
-0.00012507
-5.57595e-05
-0.000121318
-6.45721e-05
-0.000117005
-7.35938e-05
-0.00011221
-8.2918e-05
-0.000106806
-9.25258e-05
-0.000100822
-0.000102365
-9.41941e-05
-0.000112319
-8.70375e-05
-0.000122538
-7.92143e-05
-0.000132843
-7.07676e-05
-0.000143018
-6.17107e-05
-0.000153134
-5.20361e-05
-0.000162949
-4.17784e-05
-0.000172426
-3.09448e-05
-0.000181315
-1.95915e-05
-0.000189505
-7.74164e-06
-0.000196566
4.43606e-06
-0.000202524
1.70072e-05
-0.000207005
2.96783e-05
-0.000209696
4.24796e-05
-0.000210608
5.52503e-05
-0.000209395
6.78773e-05
-0.00020604
8.00916e-05
-0.000200301
9.18728e-05
-0.000192315
0.000103064
-0.000181911
0.000113464
-0.000169052
0.000122946
-0.000154007
0.000131387
-0.000136825
0.000138642
-0.000117676
0.000144622
-9.68799e-05
0.000149221
-7.46576e-05
0.000152414
-5.14289e-05
0.000154112
-2.75426e-05
0.000154248
-3.40446e-06
0.000152912
2.05711e-05
0.000150131
4.39392e-05
0.000145963
6.63993e-05
0.000140485
8.75086e-05
0.000133802
0.000107009
0.000126035
0.000124508
0.000117338
0.000139815
0.000107866
0.000152702
9.78096e-05
0.000162984
8.71917e-05
0.000170762
7.63348e-05
0.000175898
6.53553e-05
0.000178479
5.44053e-05
0.000178711
4.36104e-05
0.000176729
3.30926e-05
0.000172794
2.29584e-05
0.000167098
1.33002e-05
0.000159888
4.18307e-06
0.00015146
-4.327e-06
0.00014198
-1.21898e-05
0.000131758
-1.93873e-05
0.00012096
-2.58909e-05
0.000109765
-3.16934e-05
9.83517e-05
-3.68034e-05
8.68663e-05
-4.11963e-05
7.54185e-05
-4.49236e-05
6.41808e-05
-4.79858e-05
5.31831e-05
-5.04037e-05
4.25162e-05
-5.22153e-05
3.22551e-05
-5.34365e-05
2.24349e-05
-5.40988e-05
1.30975e-05
-5.42468e-05
4.2874e-06
-5.39047e-05
-3.98744e-06
-5.31067e-05
-1.17277e-05
-5.18815e-05
-1.89469e-05
-5.02706e-05
-2.56373e-05
-4.8293e-05
-3.18068e-05
-4.5984e-05
-3.74596e-05
-4.3369e-05
-4.25908e-05
-4.04902e-05
-4.71946e-05
-3.73811e-05
-5.12666e-05
-3.40376e-05
-5.48596e-05
-3.05242e-05
-5.79288e-05
-2.68665e-05
-6.0483e-05
-2.30884e-05
-6.25396e-05
-1.92183e-05
-6.41044e-05
-1.52882e-05
-6.51784e-05
-1.1329e-05
-6.57615e-05
-7.35317e-06
-6.59202e-05
-3.4054e-06
-6.56035e-05
4.98137e-07
-6.48509e-05
4.32035e-06
-6.36691e-05
8.04894e-06
-6.20916e-05
1.16619e-05
-6.01406e-05
1.51248e-05
-5.78327e-05
1.84311e-05
-5.52061e-05
2.15607e-05
-5.22905e-05
2.44979e-05
-4.91184e-05
2.72229e-05
-4.5716e-05
2.97327e-05
-4.2126e-05
3.20191e-05
-3.83831e-05
3.40627e-05
-3.45138e-05
3.58702e-05
-3.05631e-05
3.74406e-05
-2.65706e-05
3.87587e-05
-2.25533e-05
3.98396e-05
-1.85623e-05
4.06829e-05
-1.46283e-05
4.12941e-05
-1.07803e-05
4.16837e-05
-7.05447e-06
4.1851e-05
-3.47014e-06
4.18159e-05
-5.768e-08
4.15896e-05
3.16639e-06
4.11836e-05
6.19484e-06
4.06097e-05
9.01664e-06
3.98844e-05
1.16178e-05
3.90125e-05
1.39994e-05
3.80126e-05
1.61468e-05
3.6902e-05
1.80571e-05
3.56947e-05
1.97267e-05
3.44023e-05
2.11588e-05
3.30407e-05
2.23616e-05
3.16274e-05
2.33313e-05
3.01648e-05
2.40876e-05
2.86754e-05
2.46306e-05
2.71688e-05
2.49757e-05
2.56587e-05
2.51322e-05
2.41454e-05
2.51241e-05
2.26497e-05
2.49515e-05
2.11731e-05
2.46377e-05
1.97264e-05
2.41983e-05
1.83182e-05
2.36365e-05
1.69458e-05
2.29831e-05
1.56234e-05
2.22386e-05
1.43516e-05
2.1421e-05
1.31322e-05
2.05496e-05
1.1973e-05
1.96243e-05
1.0867e-05
1.86701e-05
9.82604e-06
1.76861e-05
8.8401e-06
1.66908e-05
7.91886e-06
1.56853e-05
7.05568e-06
1.46839e-05
6.25316e-06
1.36916e-05
5.51005e-06
1.27096e-05
4.82303e-06
1.17546e-05
4.19334e-06
1.0819e-05
3.61576e-06
9.91752e-06
3.0915e-06
9.04537e-06
2.61551e-06
8.21205e-06
2.18809e-06
7.41419e-06
1.8039e-06
6.6588e-06
1.46509e-06
5.9406e-06
1.1615e-06
5.26902e-06
8.99516e-07
4.63493e-06
6.6771e-07
4.04677e-06
4.70481e-07
3.49837e-06
3.03678e-07
2.98998e-06
1.618e-07
2.52433e-06
4.87182e-08
2.09347e-06
-4.67773e-08
1.71055e-06
-1.19394e-07
1.35616e-06
-1.73492e-07
1.03662e-06
-2.11109e-07
7.50435e-07
-2.3413e-07
4.96075e-07
-2.44388e-07
2.7206e-07
-2.43525e-07
7.63101e-08
-2.33111e-07
-9.33595e-08
-2.14409e-07
-2.3882e-07
-1.88994e-07
-3.6298e-07
-1.57613e-07
-4.65554e-07
-1.22003e-07
-5.49699e-07
-8.21612e-08
-6.16115e-07
-4.05333e-08
-6.67825e-07
3.64572e-09
-7.03053e-07
4.88306e-08
-7.28612e-07
9.44997e-08
-7.41758e-07
1.40124e-07
-7.44748e-07
1.85123e-07
-7.3915e-07
2.29153e-07
-7.26201e-07
2.71842e-07
-7.06654e-07
3.12871e-07
-6.81533e-07
3.51979e-07
-6.51725e-07
3.88957e-07
-6.18075e-07
4.23644e-07
-5.81366e-07
4.55915e-07
-5.42196e-07
4.85672e-07
-5.01359e-07
5.12855e-07
-4.59234e-07
5.37441e-07
-4.16379e-07
5.59399e-07
-3.73147e-07
5.78739e-07
-3.29943e-07
5.95495e-07
-2.87149e-07
6.09724e-07
-2.45126e-07
6.215e-07
-2.04148e-07
6.309e-07
-1.64433e-07
6.38014e-07
-1.26173e-07
6.42942e-07
-8.95505e-08
6.45791e-07
-5.47123e-08
6.46666e-07
-2.18092e-08
6.45866e-07
7.63961e-09
6.4336e-07
3.61887e-08
6.39269e-07
6.30776e-08
6.33704e-07
8.81644e-08
6.26772e-07
1.11441e-07
6.1858e-07
1.32898e-07
6.09236e-07
1.52544e-07
5.98849e-07
1.70379e-07
5.87526e-07
1.86421e-07
5.75374e-07
2.00713e-07
5.62492e-07
2.13305e-07
5.4898e-07
2.24256e-07
5.34929e-07
2.33638e-07
5.20431e-07
2.41513e-07
5.05568e-07
2.47958e-07
4.90424e-07
2.53046e-07
4.75071e-07
2.56856e-07
4.59582e-07
2.59474e-07
4.44021e-07
2.60982e-07
4.28448e-07
2.61462e-07
4.12919e-07
2.60999e-07
3.97483e-07
2.59672e-07
3.82187e-07
2.57558e-07
3.67072e-07
2.5473e-07
3.52175e-07
2.51258e-07
3.37529e-07
2.47213e-07
3.23164e-07
2.4266e-07
3.09105e-07
2.37664e-07
2.95375e-07
2.32288e-07
2.8199e-07
2.26588e-07
2.68967e-07
2.20615e-07
2.56317e-07
2.1442e-07
2.44051e-07
2.08046e-07
2.32176e-07
2.01538e-07
2.20697e-07
1.94933e-07
2.09617e-07
1.88269e-07
1.98937e-07
1.81583e-07
1.88655e-07
1.74907e-07
1.78769e-07
1.6827e-07
1.69275e-07
1.61697e-07
1.60166e-07
1.55212e-07
1.51436e-07
1.48836e-07
1.43076e-07
1.42588e-07
1.35078e-07
1.36488e-07
1.27432e-07
1.3055e-07
1.20125e-07
1.24787e-07
1.13148e-07
1.19216e-07
1.06487e-07
1.13852e-07
1.0013e-07
1.0868e-07
9.40647e-08
1.03665e-07
8.82852e-08
9.87763e-08
8.2785e-08
9.40025e-08
7.75595e-08
8.93414e-08
8.48053e-08
0.000219771
0.000128263
0.000210203
0.000161312
0.000198325
0.000200368
0.000184232
0.000237867
0.000168509
0.000265802
0.00015117
0.000293991
0.000132619
0.000315067
0.000113158
0.000331933
9.30317e-05
0.000343981
7.2628e-05
0.000349938
5.21934e-05
0.000351892
3.20352e-05
0.00034897
1.23185e-05
0.000342133
-6.87476e-06
0.000332949
-2.51618e-05
0.000319817
-4.25276e-05
0.000305529
-5.88274e-05
0.000288508
-7.40357e-05
0.000270524
-8.81226e-05
0.000252326
-0.000101092
0.000233309
-0.000112924
0.000214478
-0.000123719
0.000196457
-0.000133463
0.000178625
-0.000142271
0.000161752
-0.000150196
0.000145873
-0.000157312
0.000130889
-0.000163693
0.000116895
-0.000169311
0.000103236
-0.000174276
9.02034e-05
-0.000178623
7.75623e-05
-0.000182266
6.49439e-05
-0.000185192
5.21145e-05
-0.000187418
3.92935e-05
-0.00018892
2.60434e-05
-0.00018963
1.21337e-05
-0.000189558
-2.44324e-06
-0.000188631
-1.78031e-05
-0.000186898
-3.2451e-05
-0.000184318
-4.76914e-05
-0.000180786
-6.46202e-05
-0.000176407
-7.99232e-05
-0.000171017
-9.79694e-05
-0.000164783
-0.000113389
-0.000157693
-0.00012919
-0.000149631
-0.000148431
-0.00014051
-0.000164473
-0.000130378
-0.000179912
-0.000119222
-0.000198419
-0.000107155
-0.000215227
-9.42385e-05
-0.000229805
-8.02824e-05
-0.000247953
-6.55841e-05
-0.000261233
-5.01027e-05
-0.00027635
-3.36329e-05
-0.000290629
-1.65584e-05
-0.00029864
1.05802e-06
-0.000307714
1.91208e-05
-0.000316015
3.72913e-05
-0.000317238
5.56297e-05
-0.000319757
7.3926e-05
-0.000317141
9.18469e-05
-0.000313174
0.000109558
-0.000307992
0.000126647
-0.000296833
0.000143072
-0.000284066
0.000158706
-0.000269354
0.000173242
-0.000248502
0.000186631
-0.000227229
0.000198665
-0.000200643
0.000209015
-0.000172558
0.000217422
-0.0001408
0.000223798
-0.000104216
0.000227992
-6.55041e-05
0.000229761
-2.45192e-05
0.000228926
1.97279e-05
0.000225412
6.47056e-05
0.000219098
0.000110199
0.00021007
0.000154795
0.000198411
0.000197314
0.000184333
0.000236784
0.000168246
0.000271732
0.000150176
0.00030174
0.000130761
0.00032574
0.000110332
0.000343361
8.93011e-05
0.000354665
6.80967e-05
0.000359377
4.70105e-05
0.00035825
2.64669e-05
0.000351495
6.7315e-06
0.000339941
-1.20055e-05
0.000324115
-2.95171e-05
0.000305367
-4.55961e-05
0.000283626
-6.03588e-05
0.000260835
-7.357e-05
0.000236731
-8.53628e-05
0.000212394
-9.56441e-05
0.000188306
-0.000104659
0.00016461
-0.000112264
0.000142283
-0.000118685
0.000120925
-0.000123999
0.000101112
-0.000128231
8.2947e-05
-0.000131603
6.66155e-05
-0.000134149
5.15814e-05
-0.000136021
3.82216e-05
-0.00013722
2.58997e-05
-0.000137877
1.49964e-05
-0.000138
4.71865e-06
-0.000137642
-4.9454e-06
-0.00013679
-1.41707e-05
-0.000135476
-2.32464e-05
-0.000133682
-3.20435e-05
-0.000131431
-4.08752e-05
-0.000128693
-4.98667e-05
-0.000125445
-5.90072e-05
-0.0001217
-6.83165e-05
-0.000117416
-7.78785e-05
-0.000112617
-8.77169e-05
-0.000107221
-9.79219e-05
-0.000101248
-0.000108338
-9.46217e-05
-0.000118945
-8.74672e-05
-0.000129693
-7.96429e-05
-0.000140667
-7.11898e-05
-0.000151471
-6.21214e-05
-0.000162202
-5.24322e-05
-0.000172639
-4.21511e-05
-0.000182707
-3.12598e-05
-0.000192206
-1.98971e-05
-0.000200868
-8.0005e-06
-0.000208462
4.24015e-06
-0.000214764
1.68294e-05
-0.000219594
2.96142e-05
-0.000222481
4.2507e-05
-0.0002235
5.53581e-05
-0.000222246
6.8041e-05
-0.000218723
8.03905e-05
-0.000212651
9.22718e-05
-0.000204197
0.000103534
-0.000193173
0.000114064
-0.000179582
0.000123613
-0.000163556
0.000132126
-0.000145339
0.000139447
-0.000124997
0.000145478
-0.000102911
0.000150118
-7.92973e-05
0.000153307
-5.46182e-05
0.000154999
-2.92345e-05
0.000155183
-3.58899e-06
0.00015388
2.1874e-05
0.000151073
4.67468e-05
0.000146857
7.06148e-05
0.000141271
9.30949e-05
0.000134499
0.000113781
0.000126662
0.000132345
0.000117885
0.000148591
0.000108302
0.000162285
9.80364e-05
0.00017325
8.73697e-05
0.000181428
7.64244e-05
0.000186843
6.53567e-05
0.000189547
5.43215e-05
0.000189746
4.34492e-05
0.000187601
3.28673e-05
0.000183376
2.26732e-05
0.000177292
1.29657e-05
0.000169595
3.81188e-06
0.000160614
-4.73007e-06
0.000150522
-1.26187e-05
0.000139647
-1.98308e-05
0.000128172
-2.63399e-05
0.000116274
-3.21438e-05
0.000104156
-3.7245e-05
9.19675e-05
-4.1644e-05
7.98176e-05
-4.53582e-05
6.7895e-05
-4.84032e-05
5.62281e-05
-5.08137e-05
4.49268e-05
-5.26032e-05
3.40446e-05
-5.38013e-05
2.36329e-05
-5.44507e-05
1.3747e-05
-5.45743e-05
4.41095e-06
-5.42104e-05
-4.3513e-06
-5.33877e-05
-1.25504e-05
-5.21494e-05
-2.01852e-05
-5.05151e-05
-2.72717e-05
-4.85131e-05
-3.38088e-05
-4.61864e-05
-3.97862e-05
-4.35549e-05
-4.52223e-05
-4.06525e-05
-5.00971e-05
-3.75123e-05
-5.44068e-05
-3.41581e-05
-5.82139e-05
-3.0628e-05
-6.14589e-05
-2.69497e-05
-6.41613e-05
-2.31486e-05
-6.63407e-05
-1.92624e-05
-6.79906e-05
-1.53113e-05
-6.91294e-05
-1.13297e-05
-6.97431e-05
-7.34116e-06
-6.99087e-05
-3.37483e-06
-6.95699e-05
5.4018e-07
-6.87659e-05
4.38165e-06
-6.75105e-05
8.12687e-06
-6.58369e-05
1.17482e-05
-6.37619e-05
1.52272e-05
-6.13118e-05
1.85463e-05
-5.85252e-05
2.16888e-05
-5.5433e-05
2.46281e-05
-5.20577e-05
2.73634e-05
-4.84513e-05
2.98816e-05
-4.46441e-05
3.21667e-05
-4.06682e-05
3.42177e-05
-3.65648e-05
3.60319e-05
-3.23773e-05
3.75939e-05
-2.81326e-05
3.89153e-05
-2.38747e-05
3.99945e-05
-1.96415e-05
4.08358e-05
-1.54696e-05
4.14445e-05
-1.13891e-05
4.18204e-05
-7.43036e-06
4.19837e-05
-3.63342e-06
4.19425e-05
-1.64847e-08
4.17089e-05
3.40002e-06
4.1296e-05
6.6077e-06
4.0716e-05
9.59664e-06
3.99742e-05
1.23596e-05
3.90943e-05
1.48794e-05
3.80873e-05
1.71538e-05
3.6968e-05
1.91764e-05
3.57529e-05
2.09418e-05
3.44489e-05
2.24628e-05
3.30805e-05
2.373e-05
3.16535e-05
2.47582e-05
3.01856e-05
2.55555e-05
2.86893e-05
2.61269e-05
2.71787e-05
2.64863e-05
2.5655e-05
2.6656e-05
2.41389e-05
2.66401e-05
2.26376e-05
2.64528e-05
2.11555e-05
2.61198e-05
1.97076e-05
2.56462e-05
1.82894e-05
2.50547e-05
1.69168e-05
2.43557e-05
1.55939e-05
2.35615e-05
1.43164e-05
2.26985e-05
1.3099e-05
2.17671e-05
1.19327e-05
2.07905e-05
1.08295e-05
1.97733e-05
9.78419e-06
1.87314e-05
8.80092e-06
1.76741e-05
7.87907e-06
1.66072e-05
7.01638e-06
1.55466e-05
6.21717e-06
1.44908e-05
5.47173e-06
1.34551e-05
4.78881e-06
1.24375e-05
4.15698e-06
1.14508e-05
3.58389e-06
1.04906e-05
3.058e-06
9.57125e-06
2.58649e-06
8.68356e-06
2.15755e-06
7.84312e-06
1.7781e-06
7.03826e-06
1.43632e-06
6.28238e-06
1.13766e-06
5.56767e-06
8.74214e-07
4.89837e-06
6.46263e-07
4.27472e-06
4.5233e-07
3.69231e-06
2.8404e-07
3.15827e-06
1.46853e-07
2.66152e-06
3.12509e-08
2.20907e-06
-6.07889e-08
1.80259e-06
-1.32002e-07
1.42738e-06
-1.84776e-07
1.08939e-06
-2.21133e-07
7.86792e-07
-2.42961e-07
5.17903e-07
-2.52106e-07
2.81205e-07
-2.50213e-07
7.44172e-08
-2.38855e-07
-1.04718e-07
-2.19302e-07
-2.58373e-07
-1.93064e-07
-3.89219e-07
-1.60927e-07
-4.97691e-07
-1.24646e-07
-5.8598e-07
-8.42034e-08
-6.56558e-07
-4.2042e-08
-7.09987e-07
2.67017e-09
-7.47766e-07
4.83044e-08
-7.74246e-07
9.43618e-08
-7.87815e-07
1.40326e-07
-7.90712e-07
1.8563e-07
-7.84455e-07
2.29909e-07
-7.70479e-07
2.7281e-07
-7.49556e-07
3.14018e-07
-7.22741e-07
3.53273e-07
-6.90979e-07
3.90367e-07
-6.55169e-07
4.25143e-07
-6.16142e-07
4.57483e-07
-5.74537e-07
4.87291e-07
-5.31167e-07
5.14513e-07
-4.86456e-07
5.39109e-07
-4.40976e-07
5.61065e-07
-3.95102e-07
5.8039e-07
-3.49268e-07
5.97119e-07
-3.03878e-07
6.11312e-07
-2.59318e-07
6.23041e-07
-2.15877e-07
6.32388e-07
-1.7378e-07
6.39442e-07
-1.33226e-07
6.44304e-07
-9.44126e-08
6.47081e-07
-5.74898e-08
6.4788e-07
-2.26076e-08
6.4701e-07
8.50957e-09
6.44429e-07
3.87692e-08
6.40264e-07
6.72427e-08
6.34626e-07
9.3803e-08
6.2762e-07
1.18446e-07
6.19356e-07
1.41163e-07
6.0994e-07
1.61959e-07
5.99482e-07
1.80837e-07
5.8809e-07
1.97813e-07
5.7587e-07
2.12933e-07
5.62924e-07
2.26251e-07
5.49349e-07
2.37831e-07
5.35239e-07
2.47748e-07
5.20684e-07
2.56068e-07
5.05769e-07
2.62873e-07
4.90573e-07
2.68241e-07
4.75174e-07
2.72256e-07
4.59641e-07
2.75007e-07
4.4404e-07
2.76584e-07
4.2843e-07
2.77072e-07
4.12867e-07
2.76563e-07
3.974e-07
2.75138e-07
3.82076e-07
2.72882e-07
3.66935e-07
2.6987e-07
3.52016e-07
2.66177e-07
3.3735e-07
2.61879e-07
3.22968e-07
2.57043e-07
3.08894e-07
2.51738e-07
2.95151e-07
2.46031e-07
2.81755e-07
2.39983e-07
2.68723e-07
2.33647e-07
2.56067e-07
2.27077e-07
2.43795e-07
2.20318e-07
2.31916e-07
2.13417e-07
2.20435e-07
2.06414e-07
2.09354e-07
1.9935e-07
1.98674e-07
1.92263e-07
1.88394e-07
1.85187e-07
1.78511e-07
1.78153e-07
1.69019e-07
1.71189e-07
1.59915e-07
1.64317e-07
1.5119e-07
1.57561e-07
1.42836e-07
1.50942e-07
1.34844e-07
1.4448e-07
1.27203e-07
1.3819e-07
1.19904e-07
1.32086e-07
1.12934e-07
1.26186e-07
1.0628e-07
1.20506e-07
9.99291e-08
1.15031e-07
9.38707e-08
1.09723e-07
8.80972e-08
1.0455e-07
8.26025e-08
9.94972e-08
7.73825e-08
9.45613e-08
8.97551e-08
0.000221372
0.000135982
0.000211692
0.000170992
0.000199677
0.000212383
0.00018542
0.000252124
0.000169533
0.000281689
0.000152026
0.000311497
0.000133272
0.000333821
0.000113555
0.00035165
9.32432e-05
0.000364292
7.26614e-05
0.00037052
5.20624e-05
0.000372491
3.17661e-05
0.000369266
1.19309e-05
0.000361968
-7.37818e-06
0.000352258
-2.57543e-05
0.000338193
-4.31863e-05
0.000322961
-5.95345e-05
0.000304856
-7.47585e-05
0.000285749
-8.88686e-05
0.000266436
-0.000101838
0.000246279
-0.000113651
0.000226291
-0.000124419
0.000207225
-0.000134135
0.00018834
-0.000142905
0.000170522
-0.000150795
0.000153763
-0.0001579
0.000137994
-0.000164201
0.000123196
-0.000169833
0.000108867
-0.000174788
9.51585e-05
-0.000179132
8.19061e-05
-0.000182776
6.85881e-05
-0.000185721
5.50599e-05
-0.000187922
4.14937e-05
-0.000189419
2.75402e-05
-0.000190189
1.29045e-05
-0.000190138
-2.49475e-06
-0.000189228
-1.87129e-05
-0.000187512
-3.41672e-05
-0.000184943
-5.02599e-05
-0.000181419
-6.81441e-05
-0.000177052
-8.4291e-05
-0.000171667
-0.000103354
-0.000165434
-0.000119623
-0.000158349
-0.000136275
-0.000150295
-0.000156485
-0.000141201
-0.000173567
-0.000131123
-0.000189989
-0.000119908
-0.000209634
-0.000107822
-0.000227313
-9.48769e-05
-0.00024275
-8.08756e-05
-0.000261955
-6.61243e-05
-0.000275984
-5.05018e-05
-0.000291972
-3.40837e-05
-0.000307047
-1.69876e-05
-0.000315736
7.78296e-07
-0.00032548
1.8935e-05
-0.000334172
3.7201e-05
-0.000335504
5.56419e-05
-0.000338198
7.40636e-05
-0.000335563
9.21403e-05
-0.000331251
0.000109916
-0.000325768
0.000127113
-0.000314029
0.000143646
-0.000300599
0.000159394
-0.000285102
0.000174062
-0.000263171
0.000187556
-0.000240722
0.0001996
-0.000212688
0.00021008
-0.000183038
0.000218713
-0.000149433
0.000225241
-0.000110744
0.000229567
-6.98307e-05
0.000231423
-2.63746e-05
0.000230636
2.05142e-05
0.000227149
6.81933e-05
0.000220806
0.000116541
0.000211712
0.000163889
0.000199917
0.000209109
0.000185718
0.000250984
0.000169292
0.000288158
0.000151061
0.000319971
0.000131401
0.0003454
0.00011073
0.000364032
8.94501e-05
0.000375945
6.79875e-05
0.000380839
4.67191e-05
0.000379518
2.60205e-05
0.000372194
6.20045e-06
0.000359762
-1.28058e-05
0.000343122
-3.0401e-05
0.000322962
-4.65898e-05
0.000299814
-6.13403e-05
0.000275585
-7.45114e-05
0.000249903
-8.63418e-05
0.000224225
-9.66305e-05
0.000198595
-0.000105539
0.000173518
-0.000113129
0.000149873
-0.000119497
0.000127292
-0.000124747
0.000106362
-0.000128917
8.71178e-05
-0.000132222
6.99197e-05
-0.000134715
5.40746e-05
-0.000136498
4.00044e-05
-0.000137669
2.70711e-05
-0.000138316
1.56435e-05
-0.000138414
4.81684e-06
-0.000138031
-5.32838e-06
-0.000137179
-1.50228e-05
-0.000135862
-2.45635e-05
-0.00013405
-3.38554e-05
-0.000131816
-4.31096e-05
-0.000129083
-5.25993e-05
-0.000125806
-6.22842e-05
-0.000122108
-7.20146e-05
-0.000117845
-8.21415e-05
-0.00011304
-9.25219e-05
-0.000107658
-0.000103304
-0.000101701
-0.000114295
-9.5113e-05
-0.000125533
-8.78811e-05
-0.000136925
-8.00976e-05
-0.000148451
-7.16352e-05
-0.000159933
-6.25597e-05
-0.000171278
-5.28178e-05
-0.00018238
-4.25482e-05
-0.000192977
-3.16522e-05
-0.000203102
-2.0225e-05
-0.000212295
-8.29765e-06
-0.00022039
4.02948e-06
-0.000227092
1.66808e-05
-0.000232245
2.95475e-05
-0.000235348
4.25336e-05
-0.000236486
5.54742e-05
-0.000235187
6.82459e-05
-0.000231495
8.07541e-05
-0.000225159
9.26896e-05
-0.000216132
0.000104051
-0.000204535
0.000114674
-0.000190205
0.00012437
-0.000173253
0.000132915
-0.000153884
0.000140306
-0.000132388
0.000146391
-0.000108996
0.000151074
-8.39807e-05
0.000154285
-5.78287e-05
0.000155979
-3.09285e-05
0.00015614
-3.75069e-06
0.000154782
2.32321e-05
0.000151935
4.95937e-05
0.000147675
7.48751e-05
0.00014209
9.868e-05
0.000135284
0.000120587
0.000127307
0.000140323
0.000118389
0.000157509
0.000108673
0.000172001
9.83441e-05
0.000183579
8.75719e-05
0.000192201
7.65232e-05
0.000197892
6.53612e-05
0.000200709
5.4234e-05
0.000200874
4.32792e-05
0.000198556
3.26245e-05
0.000194031
2.23713e-05
0.000187545
1.26139e-05
0.000179352
3.41803e-06
0.00016981
-5.15533e-06
0.000159095
-1.30745e-05
0.000147566
-2.03008e-05
0.000135398
-2.6821e-05
0.000122794
-3.26294e-05
0.000109964
-3.77241e-05
9.70622e-05
-4.21164e-05
8.42099e-05
-4.58184e-05
7.1597e-05
-4.88533e-05
5.9263e-05
-5.12442e-05
4.73176e-05
-5.3013e-05
3.58134e-05
-5.41961e-05
2.48161e-05
-5.48205e-05
1.43713e-05
-5.49206e-05
4.511e-06
-5.45312e-05
-4.74071e-06
-5.36929e-05
-1.33887e-05
-5.24303e-05
-2.14479e-05
-5.07734e-05
-2.89286e-05
-4.87532e-05
-3.5829e-05
-4.63976e-05
-4.21418e-05
-4.37487e-05
-4.78713e-05
-4.0824e-05
-5.30219e-05
-3.76591e-05
-5.75716e-05
-3.42846e-05
-6.15884e-05
-3.07363e-05
-6.50072e-05
-2.7036e-05
-6.78616e-05
-2.32161e-05
-7.01606e-05
-1.93081e-05
-7.18986e-05
-1.53427e-05
-7.30948e-05
-1.13354e-05
-7.37504e-05
-7.32748e-06
-7.39167e-05
-3.34329e-06
-7.3554e-05
5.87969e-07
-7.26972e-05
4.44756e-06
-7.13701e-05
8.20807e-06
-6.95974e-05
1.18432e-05
-6.7397e-05
1.53371e-05
-6.48057e-05
1.86716e-05
-6.18596e-05
2.18164e-05
-5.85778e-05
2.47695e-05
-5.50108e-05
2.75135e-05
-5.11953e-05
3.00371e-05
-4.71678e-05
3.23273e-05
-4.29584e-05
3.43835e-05
-3.8621e-05
3.61946e-05
-3.41884e-05
3.77608e-05
-2.96989e-05
3.90822e-05
-2.51961e-05
4.01631e-05
-2.07223e-05
4.09965e-05
-1.6303e-05
4.15955e-05
-1.19881e-05
4.1969e-05
-7.80386e-06
4.21257e-05
-3.79011e-06
4.20776e-05
3.16038e-08
4.18396e-05
3.63804e-06
4.14138e-05
7.03348e-06
4.08202e-05
1.01902e-05
4.00724e-05
1.31074e-05
3.91835e-05
1.57683e-05
3.81672e-05
1.81702e-05
3.70414e-05
2.03022e-05
3.58097e-05
2.21735e-05
3.44993e-05
2.37732e-05
3.31206e-05
2.51087e-05
3.16844e-05
2.61944e-05
3.02086e-05
2.70313e-05
2.87071e-05
2.76284e-05
2.71819e-05
2.80115e-05
2.56541e-05
2.81837e-05
2.41349e-05
2.81593e-05
2.2623e-05
2.79647e-05
2.11384e-05
2.76043e-05
1.96812e-05
2.71034e-05
1.8262e-05
2.64738e-05
1.68889e-05
2.57289e-05
1.55568e-05
2.48936e-05
1.42805e-05
2.39748e-05
1.30577e-05
2.29898e-05
1.1893e-05
2.19552e-05
1.07883e-05
2.0878e-05
9.74247e-06
1.97773e-05
8.76157e-06
1.8655e-05
7.83645e-06
1.75323e-05
6.97684e-06
1.64062e-05
6.17383e-06
1.52938e-05
5.43255e-06
1.41963e-05
4.74748e-06
1.31226e-05
4.12046e-06
1.20778e-05
3.54521e-06
1.10659e-05
3.0248e-06
1.00917e-05
2.55094e-06
9.15742e-06
2.12758e-06
8.26649e-06
1.74597e-06
7.41986e-06
1.40874e-06
6.61961e-06
1.1108e-06
5.86561e-06
8.49548e-07
5.15962e-06
6.25618e-07
4.49865e-06
4.29118e-07
3.8888e-06
2.66233e-07
3.32115e-06
1.27333e-07
2.80042e-06
1.42697e-08
2.32214e-06
-7.56169e-08
1.89248e-06
-1.45335e-07
1.49709e-06
-1.96705e-07
1.14076e-06
-2.31728e-07
8.21814e-07
-2.52293e-07
5.38469e-07
-2.60256e-07
2.89167e-07
-2.57277e-07
7.14382e-08
-2.44922e-07
-1.17073e-07
-2.24462e-07
-2.78834e-07
-1.97361e-07
-4.1632e-07
-1.6441e-07
-5.30641e-07
-1.27434e-07
-6.22957e-07
-8.63251e-08
-6.97667e-07
-4.35945e-08
-7.52717e-07
1.65619e-09
-7.93016e-07
4.77622e-08
-8.20353e-07
9.42287e-08
-8.34282e-07
1.40546e-07
-8.3703e-07
1.86178e-07
-8.30087e-07
2.30718e-07
-8.1502e-07
2.73844e-07
-7.92681e-07
3.15241e-07
-7.64138e-07
3.5465e-07
-7.30389e-07
3.91867e-07
-6.92387e-07
4.26738e-07
-6.51013e-07
4.59151e-07
-6.0695e-07
4.89011e-07
-5.61027e-07
5.16268e-07
-5.13712e-07
5.40878e-07
-4.65586e-07
5.62831e-07
-4.17055e-07
5.8214e-07
-3.68577e-07
5.9884e-07
-3.20578e-07
6.12994e-07
-2.73472e-07
6.24675e-07
-2.27559e-07
6.33965e-07
-1.8307e-07
6.40954e-07
-1.40215e-07
6.45746e-07
-9.92042e-08
6.48447e-07
-6.01915e-08
6.49172e-07
-2.33322e-08
6.48222e-07
9.45952e-09
6.45561e-07
4.14299e-08
6.41317e-07
7.14865e-08
6.35601e-07
9.95196e-08
6.28518e-07
1.25528e-07
6.20177e-07
1.49504e-07
6.10685e-07
1.71452e-07
6.00152e-07
1.9137e-07
5.88686e-07
2.09278e-07
5.76395e-07
2.25224e-07
5.6338e-07
2.39266e-07
5.4974e-07
2.51471e-07
5.35567e-07
2.61921e-07
5.20952e-07
2.70683e-07
5.0598e-07
2.77846e-07
4.90731e-07
2.8349e-07
4.75282e-07
2.87705e-07
4.59703e-07
2.90586e-07
4.44059e-07
2.92228e-07
4.2841e-07
2.92721e-07
4.12811e-07
2.92162e-07
3.97311e-07
2.90637e-07
3.81957e-07
2.88236e-07
3.6679e-07
2.85038e-07
3.51846e-07
2.81121e-07
3.3716e-07
2.76565e-07
3.22759e-07
2.71444e-07
3.08669e-07
2.65827e-07
2.94913e-07
2.59788e-07
2.81506e-07
2.53389e-07
2.68465e-07
2.46689e-07
2.55801e-07
2.39741e-07
2.43524e-07
2.32595e-07
2.31641e-07
2.253e-07
2.20157e-07
2.17898e-07
2.09075e-07
2.10432e-07
1.98396e-07
2.02942e-07
1.88117e-07
1.95465e-07
1.78237e-07
1.88034e-07
1.68749e-07
1.80676e-07
1.59649e-07
1.73417e-07
1.50929e-07
1.66281e-07
1.42581e-07
1.5929e-07
1.34595e-07
1.52465e-07
1.26962e-07
1.45823e-07
1.19669e-07
1.39379e-07
1.12707e-07
1.33149e-07
1.0606e-07
1.27152e-07
9.97169e-08
1.21375e-07
9.36655e-08
1.15775e-07
8.78982e-08
1.10317e-07
8.24093e-08
1.04986e-07
7.71951e-08
9.97754e-08
9.4698e-08
0.000223069
0.000143801
0.000213269
0.000180792
0.000201109
0.000224543
0.000186688
0.000266545
0.000170633
0.000297744
0.000152909
0.000329221
0.000133904
0.000352826
0.000113974
0.00037158
9.34666e-05
0.0003848
7.26952e-05
0.000391291
5.1921e-05
0.000393265
3.14791e-05
0.000389708
1.15208e-05
0.000381926
-7.91556e-06
0.000371694
-2.63821e-05
0.00035666
-4.38889e-05
0.000340468
-6.02899e-05
0.000321257
-7.55352e-05
0.000300994
-8.96602e-05
0.000280561
-0.000102622
0.000259241
-0.00011442
0.000238089
-0.000125165
0.00021797
-0.000134843
0.000198019
-0.000143575
0.000179254
-0.000151429
0.000161618
-0.000158492
0.000145057
-0.00016476
0.000129465
-0.000170381
0.000114488
-0.000175327
0.000100105
-0.000179665
8.62442e-05
-0.000183317
7.22399e-05
-0.000186232
5.79757e-05
-0.000188451
4.37125e-05
-0.000189979
2.90681e-05
-0.000190785
1.371e-05
-0.000190753
-2.52652e-06
-0.00018986
-1.96055e-05
-0.000188164
-3.58635e-05
-0.000185608
-5.28159e-05
-0.000182093
-7.16589e-05
-0.000177738
-8.86467e-05
-0.00017236
-0.000108732
-0.000166132
-0.00012585
-0.000159051
-0.000143357
-0.000150921
-0.000164615
-0.00014194
-0.000182548
-0.000131957
-0.000199972
-0.000120644
-0.000220948
-0.00010853
-0.000239427
-9.5556e-05
-0.000255725
-8.15095e-05
-0.000276001
-6.67091e-05
-0.000290785
-5.09718e-05
-0.00030771
-3.45656e-05
-0.000323453
-1.73695e-05
-0.000332932
4.95248e-07
-0.000343344
1.87424e-05
-0.000352419
3.71044e-05
-0.000353866
5.56587e-05
-0.000356753
7.4133e-05
-0.000354037
9.24221e-05
-0.00034954
0.000110299
-0.000343645
0.000127613
-0.000331343
0.000144257
-0.000317244
0.000160128
-0.000300973
0.000174934
-0.000277977
0.000188545
-0.000254333
0.00020071
-0.000224853
0.000211321
-0.000193649
0.000220116
-0.000158227
0.000226783
-0.000117412
0.000231238
-7.42862e-05
0.000233191
-2.83272e-05
0.000232467
2.12381e-05
0.000228992
7.1668e-05
0.000222623
0.00012291
0.000213449
0.000173063
0.000201522
0.000221035
0.000187127
0.000265379
0.000170478
0.000304807
0.000152002
0.000338447
0.000132088
0.000365313
0.000111148
0.000384972
8.96127e-05
0.00039748
6.7903e-05
0.000402549
4.64807e-05
0.00040094
2.55129e-05
0.000393162
5.36886e-06
0.000379906
-1.36517e-05
0.000362142
-3.1341e-05
0.000340652
-4.75816e-05
0.000316055
-6.23808e-05
0.000290385
-7.55934e-05
0.000263115
-8.73839e-05
0.000236015
-9.76312e-05
0.000208842
-0.000106539
0.000182426
-0.000114068
0.000157401
-0.00012035
0.000133575
-0.000125536
0.000111548
-0.000129643
9.12245e-05
-0.000132874
7.31506e-05
-0.000135307
5.65075e-05
-0.000137041
4.1739e-05
-0.000138172
2.82015e-05
-0.000138779
1.62508e-05
-0.000138851
4.88926e-06
-0.000138464
-5.7155e-06
-0.000137591
-1.58961e-05
-0.00013627
-2.58848e-05
-0.000134481
-3.56443e-05
-0.000132221
-4.53696e-05
-0.000129493
-5.53275e-05
-0.000126268
-6.55093e-05
-0.000122539
-7.57431e-05
-0.000118289
-8.63917e-05
-0.00011347
-9.73407e-05
-0.000108125
-0.000108649
-0.000102178
-0.000120243
-9.55998e-05
-0.000132111
-8.83933e-05
-0.000144131
-8.05746e-05
-0.00015627
-7.20736e-05
-0.000168434
-6.30211e-05
-0.00018033
-5.33047e-05
-0.000192097
-4.29736e-05
-0.000203308
-3.20583e-05
-0.000214017
-2.0573e-05
-0.00022378
-8.59575e-06
-0.000232367
3.80451e-06
-0.000239492
1.65277e-05
-0.000244969
2.94899e-05
-0.00024831
4.25604e-05
-0.000249557
5.56005e-05
-0.000248227
6.84678e-05
-0.000244362
8.10393e-05
-0.00023773
9.31287e-05
-0.000228222
0.000104597
-0.000216003
0.00011529
-0.000200899
0.000125072
-0.000183034
0.000133804
-0.000162616
0.000141226
-0.000139811
0.000147362
-0.000115132
0.000152091
-8.87096e-05
0.000155327
-6.10642e-05
0.000157032
-3.26336e-05
0.000157182
-3.90111e-06
0.000155797
2.46171e-05
0.000152907
5.24835e-05
0.000148583
7.9199e-05
0.000142904
0.000104359
0.000135977
0.000127513
0.000127939
0.000148362
0.000118927
0.00016652
0.000109112
0.000181816
9.8677e-05
0.000194014
8.77885e-05
0.000203089
7.66298e-05
0.00020905
6.53626e-05
0.000211976
5.41443e-05
0.000212092
4.31003e-05
0.0002096
3.23741e-05
0.000204757
2.20626e-05
0.000197857
1.22668e-05
0.000189148
3.07853e-06
0.000178998
-5.60782e-06
0.000167781
-1.356e-05
0.000155518
-2.07963e-05
0.000142635
-2.73305e-05
0.000129328
-3.31402e-05
0.000115774
-3.82312e-05
0.000102153
-4.26157e-05
8.85944e-05
-4.6303e-05
7.52843e-05
-4.93268e-05
6.22867e-05
-5.16981e-05
4.9689e-05
-5.34475e-05
3.75628e-05
-5.46097e-05
2.59782e-05
-5.521e-05
1.49717e-05
-5.52835e-05
4.58458e-06
-5.4875e-05
-5.14929e-06
-5.40127e-05
-1.42509e-05
-5.27259e-05
-2.27348e-05
-5.10445e-05
-3.061e-05
-4.90033e-05
-3.78702e-05
-4.66278e-05
-4.45172e-05
-4.39524e-05
-5.05467e-05
-4.1006e-05
-5.59683e-05
-3.78159e-05
-6.07617e-05
-3.4423e-05
-6.49813e-05
-3.08495e-05
-6.85807e-05
-2.71235e-05
-7.15875e-05
-2.32867e-05
-7.39975e-05
-1.93536e-05
-7.58317e-05
-1.53786e-05
-7.70698e-05
-1.13416e-05
-7.77875e-05
-7.3131e-06
-7.79452e-05
-3.31205e-06
-7.75551e-05
6.39919e-07
-7.66492e-05
4.5207e-06
-7.52509e-05
8.29206e-06
-7.33687e-05
1.19448e-05
-7.10498e-05
1.54568e-05
-6.83177e-05
1.87955e-05
-6.51983e-05
2.1956e-05
-6.17382e-05
2.49199e-05
-5.79747e-05
2.76759e-05
-5.39513e-05
3.02006e-05
-4.96926e-05
3.24984e-05
-4.52561e-05
3.45581e-05
-4.06807e-05
3.63702e-05
-3.60005e-05
3.79389e-05
-3.12676e-05
3.92625e-05
-2.65198e-05
4.03323e-05
-2.17921e-05
4.1164e-05
-1.71347e-05
4.17596e-05
-1.25836e-05
4.21271e-05
-8.17136e-06
4.22783e-05
-3.94135e-06
4.22234e-05
8.64806e-08
4.19688e-05
3.89273e-06
4.15359e-05
7.46632e-06
4.09346e-05
1.07915e-05
4.01774e-05
1.38646e-05
3.92795e-05
1.66661e-05
3.82552e-05
1.91945e-05
3.71109e-05
2.14465e-05
3.58729e-05
2.34116e-05
3.45554e-05
2.50907e-05
3.31619e-05
2.65022e-05
3.1718e-05
2.76383e-05
3.02357e-05
2.85136e-05
2.87184e-05
2.91457e-05
2.71884e-05
2.95416e-05
2.56561e-05
2.9716e-05
2.41237e-05
2.96917e-05
2.26093e-05
2.94791e-05
2.11181e-05
2.90956e-05
1.96562e-05
2.85653e-05
1.82361e-05
2.78939e-05
1.68528e-05
2.71121e-05
1.55208e-05
2.62256e-05
1.42427e-05
2.5253e-05
1.30167e-05
2.42158e-05
1.18535e-05
2.31184e-05
1.07441e-05
2.19874e-05
9.70134e-06
2.082e-05
8.71454e-06
1.96418e-05
7.79325e-06
1.84536e-05
6.93152e-06
1.7268e-05
6.13091e-06
1.60944e-05
5.39042e-06
1.49368e-05
4.70652e-06
1.38065e-05
4.0799e-06
1.27045e-05
3.50724e-06
1.16385e-05
2.98673e-06
1.06122e-05
2.51635e-06
9.6278e-06
2.09297e-06
8.68986e-06
1.71467e-06
7.79816e-06
1.37948e-06
6.95481e-06
1.08259e-06
6.1625e-06
8.25957e-07
5.41626e-06
5.99193e-07
4.72541e-06
4.08504e-07
4.07949e-06
2.44315e-07
3.48534e-06
1.08416e-07
2.93632e-06
-2.92882e-09
2.43348e-06
-9.12371e-08
1.98079e-06
-1.59388e-07
1.56524e-06
-2.09271e-07
1.19065e-06
-2.42895e-07
8.55437e-07
-2.62122e-07
5.57695e-07
-2.68834e-07
2.9588e-07
-2.64715e-07
6.73184e-08
-2.51307e-07
-1.30482e-07
-2.29883e-07
-3.00257e-07
-2.01879e-07
-4.44325e-07
-1.68059e-07
-5.64461e-07
-1.30364e-07
-6.60652e-07
-8.85205e-08
-7.3951e-07
-4.52013e-08
-7.96037e-07
6.0501e-10
-8.38823e-07
4.72069e-08
-8.66955e-07
9.41024e-08
-8.81177e-07
1.4079e-07
-8.83718e-07
1.86766e-07
-8.76062e-07
2.31584e-07
-8.59838e-07
2.74945e-07
-8.36042e-07
3.16541e-07
-8.05734e-07
3.56113e-07
-7.69961e-07
3.93459e-07
-7.29733e-07
4.28429e-07
-6.85983e-07
4.60918e-07
-6.39439e-07
4.90832e-07
-5.90941e-07
5.18123e-07
-5.41003e-07
5.42748e-07
-4.90211e-07
5.64699e-07
-4.39006e-07
5.8399e-07
-3.87868e-07
6.00659e-07
-3.37247e-07
6.1477e-07
-2.87583e-07
6.264e-07
-2.39189e-07
6.3563e-07
-1.92299e-07
6.42549e-07
-1.47134e-07
6.47265e-07
-1.0392e-07
6.49893e-07
-6.28195e-08
6.50546e-07
-2.39844e-08
6.49503e-07
1.05027e-08
6.46756e-07
4.41761e-08
6.42429e-07
7.58137e-08
6.3663e-07
1.05318e-07
6.29466e-07
1.32693e-07
6.21043e-07
1.57927e-07
6.1147e-07
1.81024e-07
6.00858e-07
2.01982e-07
5.89315e-07
2.20821e-07
5.76949e-07
2.37591e-07
5.63862e-07
2.52353e-07
5.50152e-07
2.65182e-07
5.35912e-07
2.7616e-07
5.21234e-07
2.85362e-07
5.06202e-07
2.92878e-07
4.90897e-07
2.98795e-07
4.75395e-07
3.03206e-07
4.59767e-07
3.06214e-07
4.44078e-07
3.07917e-07
4.28388e-07
3.08411e-07
4.12751e-07
3.07799e-07
3.97217e-07
3.06171e-07
3.81832e-07
3.03621e-07
3.66636e-07
3.00233e-07
3.51667e-07
2.9609e-07
3.36958e-07
2.91275e-07
3.22538e-07
2.85864e-07
3.08432e-07
2.79933e-07
2.94661e-07
2.73559e-07
2.81243e-07
2.66808e-07
2.68192e-07
2.5974e-07
2.5552e-07
2.52413e-07
2.43237e-07
2.44878e-07
2.3135e-07
2.37187e-07
2.19863e-07
2.29385e-07
2.0878e-07
2.21515e-07
1.98101e-07
2.13621e-07
1.87825e-07
2.05742e-07
1.77947e-07
1.97911e-07
1.68463e-07
1.9016e-07
1.59368e-07
1.82512e-07
1.50653e-07
1.74995e-07
1.42312e-07
1.67632e-07
1.34333e-07
1.60444e-07
1.26706e-07
1.5345e-07
1.19422e-07
1.46663e-07
1.12467e-07
1.40103e-07
1.05829e-07
1.3379e-07
9.94931e-08
1.2771e-07
9.34489e-08
1.21819e-07
8.76883e-08
1.16078e-07
8.22053e-08
1.10469e-07
7.69972e-08
1.04984e-07
9.96334e-08
0.000224863
0.000151727
0.000214937
0.000190717
0.000202624
0.000236857
0.000188046
0.000281122
0.000171777
0.000314013
0.000153806
0.000347192
0.000134571
0.000372061
0.000114416
0.000391735
9.37009e-05
0.000405515
7.27284e-05
0.000412264
5.17677e-05
0.000414226
3.11719e-05
0.000410304
1.09192e-05
0.000402179
-8.48776e-06
0.000391101
-2.70502e-05
0.000375222
-4.46353e-05
0.000358053
-6.10939e-05
0.000337716
-7.63621e-05
0.000316262
-9.05003e-05
0.000294699
-0.000103441
0.000272181
-0.00011523
0.000249879
-0.000125955
0.000228694
-0.000135589
0.000207654
-0.000144281
0.000187946
-0.00015211
0.000169446
-0.00015912
0.000152066
-0.000165355
0.0001357
-0.000170954
0.000120087
-0.000175902
0.000105053
-0.000180229
9.05713e-05
-0.000183832
7.58428e-05
-0.000186791
6.09351e-05
-0.000189032
4.59538e-05
-0.000190581
3.0617e-05
-0.000191415
1.45439e-05
-0.000191403
-2.53876e-06
-0.000190532
-2.04767e-05
-0.000188855
-3.75406e-05
-0.000186312
-5.53584e-05
-0.000182807
-7.51642e-05
-0.000178464
-9.29898e-05
-0.000173094
-0.000114102
-0.000166875
-0.000132069
-0.000159795
-0.000150437
-0.000151648
-0.000172762
-0.000142728
-0.000191468
-0.000132725
-0.000209975
-0.000121442
-0.000232231
-0.000109282
-0.000251587
-9.6282e-05
-0.000268725
-8.21803e-05
-0.000290103
-6.73336e-05
-0.000305632
-5.15097e-05
-0.000323534
-3.49465e-05
-0.000340017
-1.77852e-05
-0.000350094
2.35638e-07
-0.000361365
1.85498e-05
-0.000370733
3.70065e-05
-0.000372323
5.56677e-05
-0.000375414
7.42142e-05
-0.000372584
9.26657e-05
-0.000367992
0.000110714
-0.000361694
0.000128146
-0.000348775
0.000144905
-0.000334003
0.000160908
-0.000316976
0.00017585
-0.000292919
0.000189598
-0.000268082
0.000201912
-0.000237167
0.000212653
-0.00020439
0.00022161
-0.000167184
0.000228418
-0.00012422
0.000233009
-7.88775e-05
0.000235067
-3.0385e-05
0.000234408
2.18974e-05
0.00023095
7.51259e-05
0.000224553
0.000129307
0.000215291
0.000182325
0.000203318
0.000233009
0.000188613
0.000280084
0.000171739
0.00032168
0.000153003
0.000357184
0.00013282
0.000385495
0.000111589
0.000406203
8.97909e-05
0.000419278
6.79391e-05
0.000424401
4.60897e-05
0.00042279
2.48734e-05
0.000414378
4.59379e-06
0.000400185
-1.45428e-05
0.000381279
-3.23394e-05
0.000358448
-4.86139e-05
0.000332329
-6.3484e-05
0.000305255
-7.67501e-05
0.000276381
-8.84897e-05
0.000247755
-9.87248e-05
0.000219077
-0.000107594
0.000191295
-0.000115039
0.000164846
-0.000121261
0.000139797
-0.000126353
0.00011664
-0.000130406
9.52773e-05
-0.000133561
7.63056e-05
-0.000135929
5.88752e-05
-0.000137611
4.34213e-05
-0.000138721
2.93109e-05
-0.000139264
1.67939e-05
-0.000139312
4.93789e-06
-0.00013891
-6.11814e-06
-0.000138024
-1.67823e-05
-0.0001367
-2.72087e-05
-0.000134908
-3.74357e-05
-0.00013263
-4.76478e-05
-0.000129926
-5.80314e-05
-0.000126718
-6.87169e-05
-0.00012299
-7.94713e-05
-0.000118752
-9.06298e-05
-0.000113986
-0.000102106
-0.000108616
-0.000114019
-0.00010267
-0.000126189
-9.6108e-05
-0.000138673
-8.88836e-05
-0.000151356
-8.1039e-05
-0.000164114
-7.26142e-05
-0.000176859
-6.35106e-05
-0.000189434
-5.37899e-05
-0.000201818
-4.34249e-05
-0.000213673
-3.2468e-05
-0.000224974
-2.09369e-05
-0.000235311
-8.91099e-06
-0.000244393
3.5739e-06
-0.000251977
1.6358e-05
-0.000257753
2.9471e-05
-0.000261423
4.25891e-05
-0.000262675
5.57308e-05
-0.000261369
6.87049e-05
-0.000257336
8.1379e-05
-0.000250404
9.35985e-05
-0.000240441
0.000105171
-0.000227576
0.000115971
-0.000211698
0.000125841
-0.000192904
0.000134622
-0.000171397
0.000142237
-0.000147426
0.000148409
-0.000121305
0.000153163
-9.34635e-05
0.000156432
-6.43327e-05
0.000158144
-3.43458e-05
0.000158289
-4.04609e-06
0.000156877
2.60286e-05
0.000153944
5.54166e-05
0.000149556
8.35865e-05
0.000143801
0.000110115
0.000136779
0.000134535
0.000128636
0.000156505
0.000119515
0.000175642
0.000109582
0.000191748
9.90267e-05
0.00020457
8.80198e-05
0.000214096
7.67466e-05
0.000220323
6.53722e-05
0.00022335
5.4062e-05
0.000223402
4.29669e-05
0.000220695
3.21781e-05
0.000215546
2.17841e-05
0.000208251
1.18598e-05
0.000199073
2.55783e-06
0.0001883
-6.09589e-06
0.000176435
-1.4077e-05
0.000163499
-2.13271e-05
0.000149885
-2.78668e-05
0.000135868
-3.36789e-05
0.000121586
-3.87661e-05
0.00010724
-4.31423e-05
9.29705e-05
-4.68211e-05
7.89631e-05
-4.98246e-05
6.52902e-05
-5.21738e-05
5.20382e-05
-5.39079e-05
3.92969e-05
-5.50443e-05
2.71146e-05
-5.56175e-05
1.55449e-05
-5.56696e-05
4.63667e-06
-5.5236e-05
-5.58288e-06
-5.43481e-05
-1.51389e-05
-5.30352e-05
-2.40476e-05
-5.13323e-05
-3.23129e-05
-4.92648e-05
-3.99377e-05
-4.68669e-05
-4.69151e-05
-4.41633e-05
-5.32503e-05
-4.12085e-05
-5.89231e-05
-3.79843e-05
-6.3986e-05
-3.45657e-05
-6.83999e-05
-3.09676e-05
-7.21788e-05
-2.72227e-05
-7.53324e-05
-2.33593e-05
-7.78609e-05
-1.94075e-05
-7.97835e-05
-1.53951e-05
-8.10821e-05
-1.13452e-05
-8.18374e-05
-7.30031e-06
-8.19901e-05
-3.27708e-06
-8.15783e-05
6.98814e-07
-8.06251e-05
4.58916e-06
-7.91412e-05
8.38305e-06
-7.71626e-05
1.20563e-05
-7.47231e-05
1.55743e-05
-7.18357e-05
1.89309e-05
-6.85549e-05
2.21057e-05
-6.4913e-05
2.50821e-05
-6.09511e-05
2.78382e-05
-5.67074e-05
3.0375e-05
-5.22293e-05
3.26823e-05
-4.75635e-05
3.47396e-05
-4.2738e-05
3.65568e-05
-3.78176e-05
3.81262e-05
-3.2837e-05
3.94434e-05
-2.7837e-05
4.05144e-05
-2.2863e-05
4.13429e-05
-1.79633e-05
4.1934e-05
-1.31747e-05
4.2298e-05
-8.53534e-06
4.24354e-05
-4.07878e-06
4.23684e-05
1.53532e-07
4.21086e-05
4.1525e-06
4.16667e-05
7.90821e-06
4.10564e-05
1.14018e-05
4.0292e-05
1.4629e-05
3.9379e-05
1.75791e-05
3.83392e-05
2.02343e-05
3.7188e-05
2.25977e-05
3.5943e-05
2.46566e-05
3.46066e-05
2.64272e-05
3.32072e-05
2.79016e-05
3.17547e-05
2.90907e-05
3.02566e-05
3.00118e-05
2.87337e-05
3.06685e-05
2.71979e-05
3.10774e-05
2.56526e-05
3.12613e-05
2.41154e-05
3.12288e-05
2.25966e-05
3.09979e-05
2.10963e-05
3.05959e-05
1.96334e-05
3.00282e-05
1.8202e-05
2.93253e-05
1.68179e-05
2.84962e-05
1.54858e-05
2.75577e-05
1.42003e-05
2.65384e-05
1.29769e-05
2.54393e-05
1.18059e-05
2.42894e-05
1.06998e-05
2.30935e-05
9.65207e-06
2.18678e-05
8.66833e-06
2.06255e-05
7.74627e-06
1.93757e-05
6.88511e-06
1.81291e-05
6.08724e-06
1.68923e-05
5.34518e-06
1.56789e-05
4.6652e-06
1.44865e-05
4.03761e-06
1.33321e-05
3.46759e-06
1.22085e-05
2.94788e-06
1.11319e-05
2.47982e-06
1.00959e-05
2.05777e-06
9.11191e-06
1.68284e-06
8.1731e-06
1.34744e-06
7.2902e-06
1.05577e-06
6.45417e-06
7.9627e-07
5.67576e-06
5.75476e-07
4.94621e-06
3.83672e-07
4.2713e-06
2.22754e-07
3.64626e-06
9.06427e-08
3.06843e-06
-2.09205e-08
2.54504e-06
-1.07644e-07
2.06751e-06
-1.74158e-07
1.63176e-06
-2.22483e-07
1.23897e-06
-2.54614e-07
8.87569e-07
-2.72443e-07
5.75524e-07
-2.77843e-07
3.0128e-07
-2.72517e-07
6.19928e-08
-2.58006e-07
-1.44993e-07
-2.35566e-07
-3.22698e-07
-2.06619e-07
-4.73272e-07
-1.71917e-07
-5.99163e-07
-1.33433e-07
-6.99137e-07
-9.0787e-08
-7.82156e-07
-4.68601e-08
-8.39964e-07
-4.7823e-10
-8.85205e-07
4.66427e-08
-9.14076e-07
9.39849e-08
-9.2852e-07
1.41059e-07
-9.30792e-07
1.87392e-07
-9.22395e-07
2.3251e-07
-9.04957e-07
2.76117e-07
-8.79649e-07
3.1792e-07
-8.47537e-07
3.57661e-07
-8.09702e-07
3.95143e-07
-7.67214e-07
4.30218e-07
-7.21058e-07
4.62784e-07
-6.72006e-07
4.92753e-07
-6.2091e-07
5.20079e-07
-5.68329e-07
5.44719e-07
-5.14851e-07
5.66666e-07
-4.60954e-07
5.85938e-07
-4.0714e-07
6.02573e-07
-3.53882e-07
6.1664e-07
-3.0165e-07
6.28216e-07
-2.50764e-07
6.37383e-07
-2.01467e-07
6.44235e-07
-1.53987e-07
6.48874e-07
-1.08559e-07
6.51418e-07
-6.5364e-08
6.51991e-07
-2.45574e-08
6.50851e-07
1.16429e-08
6.48014e-07
4.70128e-08
6.43599e-07
8.02286e-08
6.37714e-07
1.11204e-07
6.30463e-07
1.39944e-07
6.21955e-07
1.66436e-07
6.12297e-07
1.90682e-07
6.01601e-07
2.12678e-07
5.89977e-07
2.32445e-07
5.77531e-07
2.50036e-07
5.64367e-07
2.65517e-07
5.50584e-07
2.78965e-07
5.36274e-07
2.9047e-07
5.21529e-07
3.00107e-07
5.06434e-07
3.07973e-07
4.9107e-07
3.14158e-07
4.75514e-07
3.18763e-07
4.59834e-07
3.21894e-07
4.44098e-07
3.23653e-07
4.28364e-07
3.24145e-07
4.12687e-07
3.23476e-07
3.97116e-07
3.21741e-07
3.81698e-07
3.19039e-07
3.66473e-07
3.15458e-07
3.51478e-07
3.11085e-07
3.36745e-07
3.06007e-07
3.22305e-07
3.00304e-07
3.08181e-07
2.94057e-07
2.94396e-07
2.87344e-07
2.80965e-07
2.80238e-07
2.67904e-07
2.72801e-07
2.55224e-07
2.65092e-07
2.42935e-07
2.57167e-07
2.31043e-07
2.49078e-07
2.19554e-07
2.40874e-07
2.0847e-07
2.32599e-07
1.97791e-07
2.24299e-07
1.87517e-07
2.16017e-07
1.77642e-07
2.07786e-07
1.68162e-07
1.9964e-07
1.59072e-07
1.91603e-07
1.50363e-07
1.83703e-07
1.42028e-07
1.75967e-07
1.34057e-07
1.68416e-07
1.26438e-07
1.61069e-07
1.19161e-07
1.5394e-07
1.12214e-07
1.4705e-07
1.05585e-07
1.4042e-07
9.92575e-08
1.34037e-07
9.32211e-08
1.27855e-07
8.74674e-08
1.21831e-07
8.19906e-08
1.15946e-07
7.67888e-08
1.10185e-07
1.04561e-07
0.000226755
0.000159766
0.000216695
0.000200777
0.000204233
0.000249319
0.000189445
0.00029591
0.000172951
0.000330507
0.000154752
0.000365391
0.000135275
0.000391538
0.00011488
0.00041213
9.39451e-05
0.000426451
7.27594e-05
0.00043345
5.16003e-05
0.000435385
3.07389e-05
0.000431165
1.03454e-05
0.000422572
-9.0911e-06
0.000410538
-2.77596e-05
0.000393891
-4.54255e-05
0.000375719
-6.19349e-05
0.000354225
-7.72373e-05
0.000331564
-9.13968e-05
0.000308858
-0.000104316
0.0002851
-0.000116086
0.000261649
-0.000126757
0.000239365
-0.000136372
0.000217269
-0.000145025
0.000196599
-0.000152814
0.000177235
-0.000159745
0.000158997
-0.000165979
0.000141935
-0.000171552
0.000125659
-0.000176515
0.000110016
-0.000180769
9.48251e-05
-0.00018441
7.94835e-05
-0.000187391
6.39157e-05
-0.000189652
4.82157e-05
-0.000191219
3.21836e-05
-0.00019208
1.54047e-05
-0.000192088
-2.53055e-06
-0.000191241
-2.13244e-05
-0.000189584
-3.91974e-05
-0.000187056
-5.78864e-05
-0.000183559
-7.86607e-05
-0.000179229
-9.73197e-05
-0.000173873
-0.000119458
-0.000167662
-0.000138279
-0.000160581
-0.000157518
-0.000152435
-0.000180908
-0.000143424
-0.00020048
-0.000133544
-0.000219854
-0.000122368
-0.000243407
-0.000110081
-0.000263874
-9.70531e-05
-0.000281753
-8.28937e-05
-0.000304262
-6.79961e-05
-0.000320529
-5.20929e-05
-0.000339437
-3.53971e-05
-0.000356713
-1.8149e-05
-0.000367342
-7.58192e-08
-0.000379439
1.8363e-05
-0.000389172
3.69104e-05
-0.000390871
5.56721e-05
-0.000394176
7.43376e-05
-0.000391249
9.29384e-05
-0.000386593
0.000111223
-0.000379979
0.000128717
-0.000366269
0.000145595
-0.000350881
0.000161741
-0.000333123
0.000176821
-0.000307999
0.000190715
-0.000281975
0.000203191
-0.000249642
0.000214071
-0.000215271
0.000223186
-0.0001763
0.000230145
-0.000131179
0.000234875
-8.36072e-05
0.000237053
-3.25634e-05
0.000236459
2.24918e-05
0.000233019
7.85652e-05
0.000226603
0.000135724
0.000217264
0.000191663
0.000205009
0.000245264
0.000190187
0.000294906
0.00017307
0.000338798
0.000154057
0.000376196
0.000133611
0.000405942
0.000112069
0.000427745
9.00921e-05
0.000441255
6.77052e-05
0.000446787
4.56838e-05
0.000444811
2.42559e-05
0.000435806
3.79281e-06
0.000420648
-1.54495e-05
0.000400521
-3.33942e-05
0.000376393
-4.97862e-05
0.000348721
-6.46512e-05
0.00032012
-7.79372e-05
0.000289667
-8.9659e-05
0.000259477
-9.98929e-05
0.000229311
-0.000108684
0.000200087
-0.000116061
0.000172222
-0.000122218
0.000145955
-0.000127229
0.000121651
-0.000131214
9.92625e-05
-0.000134282
7.93738e-05
-0.000136581
6.11736e-05
-0.000138202
4.50429e-05
-0.000139267
3.03759e-05
-0.000139767
1.72935e-05
-0.000139795
4.9665e-06
-0.000139374
-6.53934e-06
-0.000138449
-1.77072e-05
-0.000137149
-2.85089e-05
-0.000135353
-3.92319e-05
-0.000133093
-4.99073e-05
-0.00013038
-6.07447e-05
-0.000127183
-7.19136e-05
-0.000123436
-8.32186e-05
-0.000119244
-9.48216e-05
-0.000114489
-0.000106862
-0.000109099
-0.000119409
-0.000103193
-0.000132095
-9.66404e-05
-0.000145226
-8.94497e-05
-0.000158546
-8.16133e-05
-0.000171951
-7.31452e-05
-0.000185327
-6.4026e-05
-0.000198553
-5.4293e-05
-0.000211551
-4.38997e-05
-0.000224067
-3.29038e-05
-0.00023597
-2.13047e-05
-0.00024691
-9.24103e-06
-0.000256457
3.33838e-06
-0.000264556
1.61867e-05
-0.000270601
2.93451e-05
-0.000274581
4.26484e-05
-0.000275979
5.58655e-05
-0.000274586
6.89534e-05
-0.000270424
8.17413e-05
-0.000263192
9.41199e-05
-0.00025282
0.000105777
-0.000239233
0.000116689
-0.000222611
0.00012666
-0.000202875
0.000135535
-0.000180272
0.000143181
-0.000155072
0.000149493
-0.000127617
0.0001543
-9.82711e-05
0.000157599
-6.76314e-05
0.000159322
-3.60686e-05
0.00015946
-4.18465e-06
0.00015802
2.74684e-05
0.000155043
5.8394e-05
0.000150587
8.80419e-05
0.000144748
0.000115954
0.000137631
0.000141651
0.000129377
0.000164759
0.000120134
0.000184885
0.00011008
0.000201802
9.93993e-05
0.00021525
8.82722e-05
0.000225223
7.69435e-05
0.000231652
6.54467e-05
0.000234847
5.39746e-05
0.000234874
4.27186e-05
0.000231951
3.18088e-05
0.000226455
2.13394e-05
0.00021872
1.14054e-05
0.000209007
2.06833e-06
0.000197637
-6.60932e-06
0.000185113
-1.46035e-05
0.000171493
-2.18838e-05
0.000157165
-2.84305e-05
0.000142415
-3.42434e-05
0.000127399
-3.93262e-05
0.000112323
-4.37091e-05
9.73534e-05
-4.73632e-05
8.26172e-05
-5.03454e-05
6.82725e-05
-5.26819e-05
5.43747e-05
-5.43894e-05
4.10044e-05
-5.54993e-05
2.82245e-05
-5.605e-05
1.60956e-05
-5.60751e-05
4.66184e-06
-5.56138e-05
-6.0442e-06
-5.46975e-05
-1.60552e-05
-5.3363e-05
-2.53821e-05
-5.16349e-05
-3.4041e-05
-4.95416e-05
-4.2031e-05
-4.71159e-05
-4.93407e-05
-4.43919e-05
-5.59744e-05
-4.13987e-05
-6.19162e-05
-3.81592e-05
-6.72256e-05
-3.4713e-05
-7.1846e-05
-3.10925e-05
-7.57993e-05
-2.7324e-05
-7.91009e-05
-2.3433e-05
-8.17519e-05
-1.94643e-05
-8.37523e-05
-1.54203e-05
-8.51261e-05
-1.13555e-05
-8.59023e-05
-7.28491e-06
-8.60606e-05
-3.23677e-06
-8.56265e-05
7.52132e-07
-8.4614e-05
4.66638e-06
-8.30555e-05
8.48325e-06
-8.09795e-05
1.21643e-05
-7.84042e-05
1.57028e-05
-7.53742e-05
1.90749e-05
-7.19269e-05
2.22601e-05
-6.80982e-05
2.52437e-05
-6.39347e-05
2.8014e-05
-5.94777e-05
3.05629e-05
-5.47783e-05
3.28669e-05
-4.98675e-05
3.49333e-05
-4.48044e-05
3.67565e-05
-3.96408e-05
3.83204e-05
-3.4401e-05
3.96385e-05
-2.91551e-05
4.07077e-05
-2.39322e-05
4.15361e-05
-1.87917e-05
4.21177e-05
-1.37563e-05
4.24683e-05
-8.88599e-06
4.26006e-05
-4.21106e-06
4.25254e-05
2.28688e-07
4.22569e-05
4.42101e-06
4.18089e-05
8.35628e-06
4.11844e-05
1.20263e-05
4.04035e-05
1.54099e-05
3.94818e-05
1.85008e-05
3.8432e-05
2.12841e-05
3.72734e-05
2.37564e-05
3.60084e-05
2.59215e-05
3.4665e-05
2.77706e-05
3.32559e-05
2.93107e-05
3.17879e-05
3.05587e-05
3.02825e-05
3.15172e-05
2.87526e-05
3.21984e-05
2.72029e-05
3.26272e-05
2.56509e-05
3.28133e-05
2.411e-05
3.27697e-05
2.25779e-05
3.253e-05
2.10757e-05
3.20982e-05
1.96023e-05
3.15016e-05
1.81694e-05
3.07582e-05
1.67845e-05
2.98811e-05
1.54423e-05
2.88999e-05
1.41585e-05
2.78222e-05
1.29285e-05
2.66692e-05
1.17595e-05
2.54584e-05
1.06505e-05
2.42025e-05
9.60331e-06
2.2915e-05
8.61974e-06
2.16091e-05
7.69666e-06
2.02987e-05
6.83932e-06
1.89865e-05
6.0374e-06
1.76942e-05
5.30117e-06
1.64151e-05
4.61755e-06
1.51701e-05
3.99616e-06
1.39535e-05
3.42409e-06
1.27806e-05
2.90967e-06
1.16463e-05
2.44028e-06
1.05653e-05
2.02336e-06
9.52882e-06
1.64649e-06
8.54996e-06
1.31719e-06
7.61951e-06
1.0226e-06
6.74876e-06
7.69341e-07
5.92902e-06
5.47462e-07
5.16809e-06
3.59261e-07
4.4595e-06
2.01029e-07
3.80449e-06
6.77096e-08
3.20175e-06
-3.98322e-08
2.65258e-06
-1.24842e-07
2.15252e-06
-1.89644e-07
1.69656e-06
-2.36331e-07
1.28566e-06
-2.66858e-07
9.18094e-07
-2.83253e-07
5.91918e-07
-2.87273e-07
3.053e-07
-2.80684e-07
5.54037e-08
-2.65019e-07
-1.60658e-07
-2.41506e-07
-3.46211e-07
-2.11579e-07
-5.03199e-07
-1.76142e-07
-6.346e-07
-1.36637e-07
-7.38642e-07
-9.35403e-08
-8.25253e-07
-4.85532e-08
-8.84951e-07
-1.59562e-09
-9.32162e-07
4.60705e-08
-9.61742e-07
9.38795e-08
-9.76329e-07
1.41356e-07
-9.78269e-07
1.88055e-07
-9.69094e-07
2.33497e-07
-9.50398e-07
2.77362e-07
-9.23514e-07
3.19379e-07
-8.89554e-07
3.59298e-07
-8.49621e-07
3.9692e-07
-8.04836e-07
4.32104e-07
-7.56242e-07
4.64751e-07
-7.04653e-07
4.94777e-07
-6.50935e-07
5.22138e-07
-5.95691e-07
5.46792e-07
-5.39505e-07
5.68735e-07
-4.82897e-07
5.87982e-07
-4.26387e-07
6.0458e-07
-3.7048e-07
6.1861e-07
-3.15681e-07
6.30131e-07
-2.62285e-07
6.39231e-07
-2.10568e-07
6.46008e-07
-1.60764e-07
6.50564e-07
-1.13115e-07
6.5302e-07
-6.78204e-08
6.53509e-07
-2.50463e-08
6.52267e-07
1.28851e-08
6.49335e-07
4.99448e-08
6.44828e-07
8.47357e-08
6.38852e-07
1.1718e-07
6.3151e-07
1.47285e-07
6.22912e-07
1.75035e-07
6.13165e-07
2.00429e-07
6.02381e-07
2.23462e-07
5.9067e-07
2.44156e-07
5.78142e-07
2.62565e-07
5.64898e-07
2.78761e-07
5.51037e-07
2.92826e-07
5.36654e-07
3.04853e-07
5.21839e-07
3.14922e-07
5.06678e-07
3.23134e-07
4.91251e-07
3.29584e-07
4.75637e-07
3.34378e-07
4.59903e-07
3.37627e-07
4.44117e-07
3.3944e-07
4.28337e-07
3.39925e-07
4.12618e-07
3.39195e-07
3.9701e-07
3.3735e-07
3.81557e-07
3.34492e-07
3.66301e-07
3.30715e-07
3.51278e-07
3.26108e-07
3.36521e-07
3.20764e-07
3.22059e-07
3.14766e-07
3.07917e-07
3.08199e-07
2.94116e-07
3.01145e-07
2.80672e-07
2.93682e-07
2.676e-07
2.85873e-07
2.54912e-07
2.77781e-07
2.42617e-07
2.69462e-07
2.3072e-07
2.60974e-07
2.19228e-07
2.52366e-07
2.08143e-07
2.43684e-07
1.97466e-07
2.34977e-07
1.87193e-07
2.26289e-07
1.77321e-07
2.17658e-07
1.67846e-07
2.09115e-07
1.58761e-07
2.00688e-07
1.50059e-07
1.92406e-07
1.41731e-07
1.84295e-07
1.33766e-07
1.7638e-07
1.26155e-07
1.6868e-07
1.18887e-07
1.61209e-07
1.11949e-07
1.53987e-07
1.05329e-07
1.4704e-07
9.90102e-08
1.40356e-07
9.29821e-08
1.33883e-07
8.72357e-08
1.27578e-07
8.17653e-08
1.21416e-07
7.65698e-08
1.15381e-07
1.0948e-07
0.000228747
0.000167926
0.000218544
0.00021098
0.000205906
0.000261956
0.00019091
0.000310906
0.000174188
0.000347229
0.000155747
0.000383832
0.000136014
0.000411271
0.000115365
0.000432778
9.41979e-05
0.000447618
7.27861e-05
0.000454862
5.13278e-05
0.000456843
3.0358e-05
0.000452135
9.82913e-06
0.000443101
-9.72414e-06
0.000430091
-2.85114e-05
0.000412678
-4.62609e-05
0.000393468
-6.28239e-05
0.000370788
-7.81602e-05
0.000346901
-9.23333e-05
0.000323032
-0.000105242
0.000298008
-0.000116991
0.000273398
-0.000127614
0.000249988
-0.000137194
0.00022685
-0.000145824
0.000205229
-0.000153543
0.000184954
-0.000160425
0.000165878
-0.000166631
0.000148141
-0.000172175
0.000131203
-0.000177117
0.000114958
-0.000181363
9.90717e-05
-0.000185024
8.31442e-05
-0.000188024
6.69154e-05
-0.000190307
5.04996e-05
-0.000191893
3.37692e-05
-0.000192779
1.62908e-05
-0.000192813
-2.4967e-06
-0.000191988
-2.21492e-05
-0.000190352
-4.08331e-05
-0.00018784
-6.0399e-05
-0.000184349
-8.21513e-05
-0.000180035
-0.000101634
-0.000174696
-0.000124798
-0.000168494
-0.000144481
-0.000161409
-0.000164603
-0.00015327
-0.000189047
-0.000144203
-0.000209547
-0.000134324
-0.000229734
-0.000123236
-0.000254494
-0.000110939
-0.000276172
-9.78649e-05
-0.000294827
-8.36557e-05
-0.000318472
-6.86975e-05
-0.000335488
-5.27153e-05
-0.000355419
-3.59129e-05
-0.000373515
-1.85009e-05
-0.000384754
-4.19197e-07
-0.00039752
1.82156e-05
-0.000407807
3.6822e-05
-0.000409477
5.56807e-05
-0.000413035
7.44786e-05
-0.000410047
9.32384e-05
-0.000405353
0.000111679
-0.000398419
0.000129339
-0.000383929
0.000146338
-0.00036788
0.000162632
-0.000349417
0.000177848
-0.000323216
0.000191899
-0.000296026
0.000204532
-0.000262275
0.000215568
-0.000226307
0.000224844
-0.000185575
0.000231966
-0.000138301
0.000236837
-8.84789e-05
0.000239157
-3.48832e-05
0.000238657
2.29914e-05
0.000235221
8.20018e-05
0.000228866
0.000142079
0.000219314
0.000201215
0.000206891
0.000257687
0.000191852
0.000309944
0.000174475
0.000356175
0.00015517
0.000395501
0.000134395
0.000426717
0.000112676
0.000449464
9.01296e-05
0.000463802
6.75409e-05
0.000469376
4.52938e-05
0.000467058
2.36146e-05
0.000457485
2.95e-06
0.000441313
-1.64848e-05
0.000419956
-3.45135e-05
0.000394422
-5.09868e-05
0.000365195
-6.58758e-05
0.000335009
-7.91798e-05
0.000302971
-9.08763e-05
0.000271173
-0.000101093
0.000239528
-0.000109825
0.000208819
-0.000117135
0.000179532
-0.000123219
0.000152039
-0.000128147
0.000126578
-0.00013207
0.000103185
-0.000135037
8.2341e-05
-0.000137259
6.33962e-05
-0.000138816
4.65998e-05
-0.000139835
3.13944e-05
-0.000140308
1.77666e-05
-0.000140299
4.95792e-06
-0.000139862
-6.97678e-06
-0.000138962
-1.86069e-05
-0.000137618
-2.98533e-05
-0.00013582
-4.10294e-05
-0.000133574
-5.21533e-05
-0.000130853
-6.3466e-05
-0.000127667
-7.50994e-05
-0.000123966
-8.69196e-05
-0.000119757
-9.9031e-05
-0.000115014
-0.000111605
-0.000109686
-0.000124736
-0.000103745
-0.000138036
-9.72036e-05
-0.000151767
-9.00171e-05
-0.000165733
-8.21826e-05
-0.000179785
-7.36576e-05
-0.000193852
-6.45639e-05
-0.000207647
-5.48279e-05
-0.000221287
-4.43581e-05
-0.000234536
-3.33656e-05
-0.000246963
-2.17317e-05
-0.000258544
-9.58644e-06
-0.000268602
3.0233e-06
-0.000277166
1.60108e-05
-0.000283589
2.92559e-05
-0.000287826
4.26388e-05
-0.000289361
5.60196e-05
-0.000287966
6.92085e-05
-0.000283613
8.21218e-05
-0.000276106
9.45824e-05
-0.000265281
0.000106411
-0.000251062
0.000117444
-0.000233643
0.000127523
-0.000212954
0.000136506
-0.000189255
0.000144232
-0.000162798
0.000150599
-0.000133984
0.000155555
-0.000103227
0.000158836
-7.0912e-05
0.000160567
-3.77999e-05
0.000160692
-4.30926e-06
0.000159225
2.89351e-05
0.000156196
6.14227e-05
0.000151675
9.25632e-05
0.000145749
0.00012188
0.000138533
0.000148867
0.000130161
0.000173131
0.0001208
0.000194246
0.000110612
0.000211991
9.98316e-05
0.00022603
8.85921e-05
0.000236463
7.69932e-05
0.000243251
6.53601e-05
0.00024648
5.38102e-05
0.000246424
4.24772e-05
0.000243284
3.14891e-05
0.000237443
2.09464e-05
0.000229263
1.09466e-05
0.000219006
1.56715e-06
0.000207017
-7.1494e-06
0.000193829
-1.51713e-05
0.000179515
-2.24741e-05
0.000164468
-2.90215e-05
0.000148962
-3.48411e-05
0.000133218
-3.99225e-05
0.000117404
-4.42826e-05
0.000101714
-4.79419e-05
8.62765e-05
-5.08992e-05
7.12297e-05
-5.3211e-05
5.66864e-05
-5.48906e-05
4.2684e-05
-5.59802e-05
2.93142e-05
-5.65033e-05
1.66186e-05
-5.64981e-05
4.65667e-06
-5.6005e-05
-6.53736e-06
-5.50684e-05
-1.69918e-05
-5.37064e-05
-2.67441e-05
-5.19501e-05
-3.57973e-05
-4.9832e-05
-4.41491e-05
-4.73799e-05
-5.17928e-05
-4.46284e-05
-5.87259e-05
-4.16046e-05
-6.494e-05
-3.83406e-05
-7.04896e-05
-3.48718e-05
-7.53148e-05
-3.12249e-05
-7.94463e-05
-2.74285e-05
-8.28973e-05
-2.35169e-05
-8.56635e-05
-1.95289e-05
-8.77403e-05
-1.54543e-05
-8.92007e-05
-1.13627e-05
-8.99939e-05
-7.26696e-06
-9.01563e-05
-3.20106e-06
-8.96924e-05
8.12401e-07
-8.86274e-05
4.75086e-06
-8.6994e-05
8.57928e-06
-8.48079e-05
1.22829e-05
-8.21078e-05
1.58419e-05
-7.89332e-05
1.92252e-05
-7.53103e-05
2.24221e-05
-7.12951e-05
2.54182e-05
-6.69308e-05
2.82034e-05
-6.22629e-05
3.07508e-05
-5.73256e-05
3.30657e-05
-5.21824e-05
3.5141e-05
-4.68797e-05
3.69574e-05
-4.14572e-05
3.85268e-05
-3.59704e-05
3.98455e-05
-3.04738e-05
4.09144e-05
-2.5001e-05
4.17292e-05
-1.96065e-05
4.23065e-05
-1.43336e-05
4.26515e-05
-9.23108e-06
4.27756e-05
-4.33517e-06
4.26951e-05
3.09189e-07
4.2414e-05
4.70213e-06
4.19485e-05
8.82176e-06
4.13152e-05
1.26596e-05
4.05247e-05
1.62004e-05
3.95917e-05
1.94338e-05
3.85317e-05
2.2344e-05
3.73541e-05
2.4934e-05
3.60812e-05
2.71945e-05
3.47296e-05
2.91221e-05
3.33022e-05
3.07381e-05
3.1826e-05
3.20349e-05
3.03135e-05
3.30297e-05
2.87669e-05
3.37449e-05
2.72097e-05
3.41844e-05
2.56533e-05
3.43697e-05
2.40967e-05
3.43263e-05
2.25619e-05
3.40648e-05
2.1051e-05
3.3609e-05
1.9573e-05
3.29795e-05
1.81384e-05
3.21929e-05
1.67425e-05
3.12769e-05
1.54006e-05
3.02419e-05
1.41122e-05
2.91106e-05
1.28811e-05
2.79004e-05
1.17103e-05
2.66291e-05
1.05996e-05
2.53132e-05
9.55398e-06
2.39606e-05
8.56713e-06
2.2596e-05
7.64818e-06
2.12177e-05
6.78549e-06
1.98492e-05
5.99015e-06
1.84895e-05
5.24939e-06
1.71559e-05
4.57266e-06
1.58468e-05
3.94732e-06
1.45788e-05
3.38227e-06
1.33457e-05
2.86451e-06
1.2164e-05
2.4022e-06
1.10276e-05
1.98225e-06
9.94877e-06
1.61261e-06
8.9196e-06
1.28033e-06
7.95179e-06
9.92284e-07
7.0368e-06
7.37806e-07
6.18349e-06
5.19945e-07
5.38595e-06
3.3389e-07
4.64555e-06
1.76136e-07
3.96224e-06
4.91122e-08
3.32877e-06
-5.9609e-08
2.7613e-06
-1.4283e-07
2.23574e-06
-2.05843e-07
1.75957e-06
-2.50814e-07
1.33063e-06
-2.79678e-07
9.46957e-07
-2.94566e-07
6.06807e-07
-2.97122e-07
3.07855e-07
-2.89211e-07
4.74922e-08
-2.72339e-07
-1.77529e-07
-2.47701e-07
-3.7085e-07
-2.16751e-07
-5.34149e-07
-1.80427e-07
-6.70925e-07
-1.39958e-07
-7.79111e-07
-9.61788e-08
-8.69032e-07
-5.02474e-08
-9.30883e-07
-2.74471e-09
-9.79665e-07
4.54938e-08
-1.00998e-06
9.37897e-08
-1.02462e-06
1.4169e-07
-1.02617e-06
1.88756e-07
-1.01616e-06
2.34532e-07
-9.96174e-07
2.78685e-07
-9.67667e-07
3.20924e-07
-9.31793e-07
3.61024e-07
-8.89721e-07
3.98792e-07
-8.42604e-07
4.34088e-07
-7.91539e-07
4.66819e-07
-7.37383e-07
4.96903e-07
-6.81019e-07
5.243e-07
-6.23088e-07
5.48968e-07
-5.64173e-07
5.70903e-07
-5.04833e-07
5.90121e-07
-4.45605e-07
6.06697e-07
-3.87055e-07
6.20679e-07
-3.29663e-07
6.3214e-07
-2.73745e-07
6.4117e-07
-2.19599e-07
6.47868e-07
-1.67461e-07
6.52336e-07
-1.17583e-07
6.547e-07
-7.01839e-08
6.55101e-07
-2.54474e-08
6.53751e-07
1.4235e-08
6.50719e-07
5.29767e-08
6.46115e-07
8.93393e-08
6.40043e-07
1.23252e-07
6.32607e-07
1.54721e-07
6.23914e-07
1.83728e-07
6.14073e-07
2.10269e-07
6.03197e-07
2.34338e-07
5.91397e-07
2.55956e-07
5.78781e-07
2.75181e-07
5.65453e-07
2.92089e-07
5.51511e-07
3.06767e-07
5.37051e-07
3.19314e-07
5.22162e-07
3.29811e-07
5.06931e-07
3.38365e-07
4.9144e-07
3.45076e-07
4.75764e-07
3.50054e-07
4.59974e-07
3.53417e-07
4.44136e-07
3.55278e-07
4.28308e-07
3.55753e-07
4.12546e-07
3.54957e-07
3.96898e-07
3.52998e-07
3.81409e-07
3.4998e-07
3.6612e-07
3.46003e-07
3.51068e-07
3.4116e-07
3.36285e-07
3.35547e-07
3.21801e-07
3.2925e-07
3.0764e-07
3.2236e-07
2.93822e-07
3.14963e-07
2.80365e-07
3.07139e-07
2.67282e-07
2.98956e-07
2.54585e-07
2.90478e-07
2.42283e-07
2.81765e-07
2.30382e-07
2.72875e-07
2.18887e-07
2.63861e-07
2.07801e-07
2.5477e-07
1.97124e-07
2.45654e-07
1.86853e-07
2.3656e-07
1.76985e-07
2.27526e-07
1.67514e-07
2.18586e-07
1.58435e-07
2.09768e-07
1.49739e-07
2.01101e-07
1.41418e-07
1.92616e-07
1.33462e-07
1.84336e-07
1.2586e-07
1.76282e-07
1.186e-07
1.68469e-07
1.11671e-07
1.60916e-07
1.0506e-07
1.53651e-07
9.87513e-08
1.46665e-07
9.27318e-08
1.39903e-07
8.6993e-08
1.33316e-07
8.15292e-08
1.2688e-07
7.63402e-08
1.2057e-07
1.1439e-07
0.00023084
0.000176212
0.000220485
0.000221335
0.000207664
0.000274777
0.000192451
0.000326119
0.000175488
0.000364193
0.000156791
0.000402529
0.000136787
0.000431274
0.00011587
0.000453695
9.44569e-05
0.000469031
7.27361e-05
0.000476582
5.1117e-05
0.000478463
3.00181e-05
0.000473234
9.35756e-06
0.000463762
-1.03895e-05
0.000449838
-2.92968e-05
0.000431585
-4.71425e-05
0.000411314
-6.37621e-05
0.000387407
-7.91308e-05
0.00036227
-9.33124e-05
0.000337213
-0.000106215
0.000310911
-0.000117956
0.000285139
-0.000128522
0.000260554
-0.000138055
0.000236383
-0.000146634
0.000213808
-0.000154285
0.000192605
-0.00016114
0.000172733
-0.000167311
0.000154312
-0.000172824
0.000136716
-0.00017775
0.000119885
-0.000181996
0.000103317
-0.000185667
8.68149e-05
-0.000188687
6.99358e-05
-0.000190998
5.28108e-05
-0.000192602
3.53731e-05
-0.000193511
1.71999e-05
-0.000193575
-2.43332e-06
-0.000192777
-2.29471e-05
-0.000191162
-4.24482e-05
-0.000188668
-6.28928e-05
-0.000185186
-8.56337e-05
-0.000180881
-0.000105938
-0.000175562
-0.000130117
-0.00016937
-0.000150674
-0.000162284
-0.000171689
-0.000154152
-0.000197179
-0.000145062
-0.000218636
-0.000135113
-0.000239683
-0.000124129
-0.000265478
-0.000111893
-0.000288408
-9.87232e-05
-0.000307997
-8.44623e-05
-0.000332733
-6.94379e-05
-0.000350512
-5.33738e-05
-0.000371484
-3.64749e-05
-0.000390414
-1.89618e-05
-0.000402267
-7.79548e-07
-0.000415703
1.79662e-05
-0.000426553
3.67736e-05
-0.000428285
5.5702e-05
-0.000431964
7.46243e-05
-0.00042897
9.34385e-05
-0.000424167
0.000112117
-0.000417097
0.000130057
-0.00040187
0.000147202
-0.000385025
0.000163627
-0.000365842
0.000178951
-0.000338541
0.000193146
-0.000310221
0.000205941
-0.00027507
0.000217145
-0.000237511
0.000226592
-0.000195023
0.000233896
-0.000145605
0.00023892
-9.35025e-05
0.000241391
-3.73538e-05
0.000240984
2.33983e-05
0.000237677
8.53086e-05
0.000231051
0.000148704
0.000221439
0.000210828
0.00020888
0.000270246
0.00019361
0.000325215
0.000175958
0.000373826
0.000156362
0.000415097
0.000135354
0.000447726
0.000113043
0.000471775
9.02982e-05
0.000486546
6.73893e-05
0.000492285
4.48396e-05
0.000489608
2.2936e-05
0.000479389
2.07342e-06
0.000462175
-1.75651e-05
0.000439594
-3.56834e-05
0.00041254
-5.22504e-05
0.000381762
-6.71501e-05
0.000349908
-8.0487e-05
0.000316308
-9.21343e-05
0.00028282
-0.000102348
0.000249742
-0.000111021
0.000217491
-0.00011826
0.000186771
-0.00012426
0.000158039
-0.0001291
0.000131419
-0.000132956
0.000107041
-0.000135824
8.52087e-05
-0.000137968
6.55406e-05
-0.000139457
4.80881e-05
-0.000140424
3.23618e-05
-0.000140859
1.82011e-05
-0.000140772
4.87165e-06
-0.000140366
-7.3836e-06
-0.000139458
-1.95143e-05
-0.000138067
-3.12444e-05
-0.000136305
-4.27915e-05
-0.000134064
-5.43939e-05
-0.000131317
-6.62134e-05
-0.000128175
-7.8241e-05
-0.000124497
-9.05975e-05
-0.000120292
-0.000103236
-0.000115563
-0.000116334
-0.00011026
-0.00013004
-0.000104285
-0.000144011
-9.77924e-05
-0.000158259
-9.06089e-05
-0.000172916
-8.27539e-05
-0.00018764
-7.42894e-05
-0.000202317
-6.51194e-05
-0.000216817
-5.53787e-05
-0.000231027
-4.4929e-05
-0.000244986
-3.38542e-05
-0.000258037
-2.21785e-05
-0.00027022
-9.95577e-06
-0.000280825
2.72644e-06
-0.000289848
1.58175e-05
-0.00029668
2.91646e-05
-0.000301174
4.26516e-05
-0.000302848
5.6156e-05
-0.000301471
6.94914e-05
-0.000296949
8.25226e-05
-0.000289137
9.5108e-05
-0.000277866
0.000107134
-0.000263088
0.000118243
-0.000244752
0.000128432
-0.000223143
0.000137525
-0.000198349
0.000145343
-0.000170615
0.000151783
-0.000140425
0.000156738
-0.000108182
0.000160187
-7.43602e-05
0.000161945
-3.95585e-05
0.000162064
-4.42812e-06
0.00016053
3.04685e-05
0.000157435
6.45182e-05
0.00015283
9.71676e-05
0.000146806
0.000127905
0.00013948
0.000156192
0.000130988
0.000181623
0.000121519
0.000203715
0.000111236
0.000222274
0.000100204
0.000237062
8.87678e-05
0.000247899
7.70962e-05
0.000254922
6.53366e-05
0.00025824
5.36754e-05
0.000258085
4.22384e-05
0.000254721
3.11625e-05
0.000248519
2.05386e-05
0.000239887
1.04703e-05
0.000229075
1.04244e-06
0.000216445
-7.71637e-06
0.000202588
-1.57665e-05
0.000187565
-2.30882e-05
0.00017179
-2.96489e-05
0.000155523
-3.54678e-05
0.000139037
-4.05434e-05
0.00012248
-4.48884e-05
0.000106058
-4.85274e-05
8.99155e-05
-5.14867e-05
7.4189e-05
-5.37645e-05
5.89642e-05
-5.54235e-05
4.4343e-05
-5.64834e-05
3.03741e-05
-5.69757e-05
1.7111e-05
-5.69359e-05
4.61682e-06
-5.64226e-05
-7.05066e-06
-5.5455e-05
-1.79594e-05
-5.40643e-05
-2.81348e-05
-5.22804e-05
-3.75812e-05
-5.01329e-05
-4.62965e-05
-4.76556e-05
-5.42702e-05
-4.48774e-05
-6.15041e-05
-4.18193e-05
-6.79981e-05
-3.85329e-05
-7.3776e-05
-3.50364e-05
-7.88112e-05
-3.13617e-05
-8.3121e-05
-2.75388e-05
-8.67202e-05
-2.36013e-05
-8.96009e-05
-1.95734e-05
-9.17682e-05
-1.54863e-05
-9.32878e-05
-1.13658e-05
-9.41143e-05
-7.25087e-06
-9.42713e-05
-3.16056e-06
-9.37827e-05
8.78018e-07
-9.2666e-05
4.83315e-06
-9.09491e-05
8.68426e-06
-8.8659e-05
1.24102e-05
-8.58337e-05
1.59801e-05
-8.2503e-05
1.93807e-05
-7.87109e-05
2.25937e-05
-7.45081e-05
2.56061e-05
-6.99432e-05
2.83923e-05
-6.50491e-05
3.09527e-05
-5.98861e-05
3.32787e-05
-5.45084e-05
3.5349e-05
-4.895e-05
3.71731e-05
-4.32813e-05
3.87479e-05
-3.75451e-05
4.00593e-05
-3.17852e-05
4.11213e-05
-2.6063e-05
4.19359e-05
-2.04211e-05
4.25075e-05
-1.49052e-05
4.28468e-05
-9.57038e-06
4.29628e-05
-4.45108e-06
4.28633e-05
4.08675e-07
4.25728e-05
4.99264e-06
4.20991e-05
9.29546e-06
4.14547e-05
1.3304e-05
4.06546e-05
1.70005e-05
3.97105e-05
2.03779e-05
3.86317e-05
2.34229e-05
3.74429e-05
2.61228e-05
3.61612e-05
2.84761e-05
3.47888e-05
3.04946e-05
3.33544e-05
3.21725e-05
3.18682e-05
3.35211e-05
3.03374e-05
3.45605e-05
2.87839e-05
3.52984e-05
2.72196e-05
3.57487e-05
2.56477e-05
3.59416e-05
2.4087e-05
3.5887e-05
2.25438e-05
3.56079e-05
2.10259e-05
3.5127e-05
1.95457e-05
3.44597e-05
1.80987e-05
3.36399e-05
1.67023e-05
3.26733e-05
1.53565e-05
3.15877e-05
1.40643e-05
3.04027e-05
1.28325e-05
2.91323e-05
1.16577e-05
2.78039e-05
1.05495e-05
2.64214e-05
9.49802e-06
2.50121e-05
8.51611e-06
2.35779e-05
7.59133e-06
2.21425e-05
6.73319e-06
2.07073e-05
5.93477e-06
1.9288e-05
5.19915e-06
1.78915e-05
4.51996e-06
1.6526e-05
3.90178e-06
1.5197e-05
3.33304e-06
1.39144e-05
2.82264e-06
1.26745e-05
2.35708e-06
1.14931e-05
1.94458e-06
1.03613e-05
1.57187e-06
9.2923e-06
1.24662e-06
8.27704e-06
9.56925e-07
7.3265e-06
7.07044e-07
6.43337e-06
4.90779e-07
5.60221e-06
3.06443e-07
4.82989e-06
1.5395e-07
4.11474e-06
2.30644e-08
3.45966e-06
-8.03744e-08
2.86474e-06
-1.6161e-07
2.31698e-06
-2.2275e-07
1.82071e-06
-2.65931e-07
1.37381e-06
-2.93158e-07
9.74185e-07
-3.06346e-07
6.19995e-07
-3.07383e-07
3.08892e-07
-2.98092e-07
3.82015e-08
-2.79963e-07
-1.95659e-07
-2.54148e-07
-3.96665e-07
-2.22133e-07
-5.66165e-07
-1.84829e-07
-7.08228e-07
-1.43379e-07
-8.2056e-07
-9.88139e-08
-9.13598e-07
-5.18588e-08
-9.77838e-07
-3.92851e-09
-1.0276e-06
4.49173e-08
-1.05883e-06
9.37186e-08
-1.07343e-06
1.42058e-07
-1.07451e-06
1.89504e-07
-1.06361e-06
2.35628e-07
-1.0423e-06
2.80073e-07
-1.01211e-06
3.22556e-07
-9.74276e-07
3.62843e-07
-9.30008e-07
4.0076e-07
-8.80521e-07
4.36173e-07
-8.26952e-07
4.68989e-07
-7.70199e-07
4.99133e-07
-7.11163e-07
5.26565e-07
-6.50521e-07
5.51245e-07
-5.88853e-07
5.73168e-07
-5.26755e-07
5.92372e-07
-4.64809e-07
6.08914e-07
-4.03597e-07
6.22846e-07
-3.43595e-07
6.34243e-07
-2.85143e-07
6.43201e-07
-2.28556e-07
6.49814e-07
-1.74075e-07
6.54191e-07
-1.21959e-07
6.56456e-07
-7.24491e-08
6.56766e-07
-2.57577e-08
6.55301e-07
1.56998e-08
6.52165e-07
5.6113e-08
6.47461e-07
9.40437e-08
6.41289e-07
1.29423e-07
6.33753e-07
1.62257e-07
6.24961e-07
1.92521e-07
6.15022e-07
2.20208e-07
6.04049e-07
2.45311e-07
5.92155e-07
2.6785e-07
5.79448e-07
2.87888e-07
5.66031e-07
3.05505e-07
5.52006e-07
3.20793e-07
5.37464e-07
3.33855e-07
5.22498e-07
3.44777e-07
5.07195e-07
3.53668e-07
4.91636e-07
3.60635e-07
4.75896e-07
3.65793e-07
4.60047e-07
3.69266e-07
4.44155e-07
3.71171e-07
4.28277e-07
3.7163e-07
4.12469e-07
3.70765e-07
3.96779e-07
3.68688e-07
3.81252e-07
3.65507e-07
3.6593e-07
3.61326e-07
3.50847e-07
3.56243e-07
3.36038e-07
3.50357e-07
3.2153e-07
3.43758e-07
3.07349e-07
3.36541e-07
2.93515e-07
3.28797e-07
2.80043e-07
3.2061e-07
2.66949e-07
3.1205e-07
2.54243e-07
3.03184e-07
2.41933e-07
2.94074e-07
2.30027e-07
2.84781e-07
2.18529e-07
2.75359e-07
2.07442e-07
2.65857e-07
1.96766e-07
2.5633e-07
1.86498e-07
2.46828e-07
1.76633e-07
2.3739e-07
1.67167e-07
2.28052e-07
1.58094e-07
2.18841e-07
1.49405e-07
2.0979e-07
1.41092e-07
2.00929e-07
1.33144e-07
1.92284e-07
1.2555e-07
1.83876e-07
1.183e-07
1.75719e-07
1.11381e-07
1.67835e-07
1.0478e-07
1.60252e-07
9.84807e-08
1.52964e-07
9.24703e-08
1.45913e-07
8.67396e-08
1.39047e-07
8.12824e-08
1.32337e-07
7.60999e-08
1.25752e-07
1.1929e-07
0.000233035
0.000184633
0.000222521
0.000231849
0.000209509
0.000287789
0.000194069
0.00034156
0.000176852
0.000381409
0.000157884
0.000421498
0.000137595
0.000451563
0.000116383
0.000474907
9.46563e-05
0.000490758
7.27425e-05
0.000498496
5.09391e-05
0.000500266
2.97126e-05
0.00049446
8.97327e-06
0.000484501
-1.10853e-05
0.000469897
-3.01311e-05
0.000450631
-4.80736e-05
0.000429256
-6.4751e-05
0.000404085
-8.01498e-05
0.000377668
-9.43396e-05
0.000351403
-0.000107234
0.000323805
-0.000118944
0.000296849
-0.000129474
0.000271084
-0.000138964
0.000245873
-0.000147472
0.000222315
-0.000155065
0.000200198
-0.000161885
0.000179553
-0.000168018
0.000160446
-0.000173503
0.000142201
-0.000178381
0.000124763
-0.000182654
0.00010759
-0.000186336
9.0497e-05
-0.000189379
7.2979e-05
-0.000191721
5.51531e-05
-0.000193348
3.69997e-05
-0.000194275
1.81268e-05
-0.000194379
-2.32969e-06
-0.000193616
-2.37095e-05
-0.000192019
-4.40453e-05
-0.000189544
-6.53677e-05
-0.00018607
-8.91081e-05
-0.000181771
-0.000110237
-0.000176477
-0.000135411
-0.000170295
-0.000156856
-0.000163206
-0.000178778
-0.000155082
-0.000205303
-0.000145978
-0.00022774
-0.000136004
-0.000249658
-0.000124996
-0.000276485
-0.0001129
-0.000300504
-9.96432e-05
-0.000321254
-8.53154e-05
-0.000347061
-7.02169e-05
-0.000365611
-5.40714e-05
-0.000387629
-3.70709e-05
-0.000407415
-1.94679e-05
-0.00041987
-1.15854e-06
-0.000434012
1.77048e-05
-0.000445416
3.66912e-05
-0.000447271
5.57526e-05
-0.000451025
7.47766e-05
-0.000447994
9.36961e-05
-0.000443087
0.000112578
-0.000435979
0.000130661
-0.000419954
0.000148015
-0.00040238
0.000164694
-0.00038252
0.000180245
-0.000354092
0.000194482
-0.000324458
0.000207431
-0.000288019
0.000218808
-0.000248888
0.000228442
-0.000204657
0.000235981
-0.000153145
0.000241248
-9.87692e-05
0.000243866
-3.99718e-05
0.000243509
2.37557e-05
0.000239983
8.88347e-05
0.00023337
0.000155317
0.000223694
0.000220504
0.000210965
0.000282975
0.000195463
0.000340716
0.000177521
0.000391768
0.000157676
0.000434942
0.000136087
0.000469315
0.000113548
0.000494314
9.04326e-05
0.000509662
6.72218e-05
0.000515496
4.44097e-05
0.00051242
2.22559e-05
0.000501542
1.16616e-06
0.000483265
-1.86911e-05
0.000459451
-3.688e-05
0.000430729
-5.3574e-05
0.000398456
-6.84779e-05
0.000364812
-8.18567e-05
0.000329687
-9.35389e-05
0.000294503
-0.000103662
0.000259865
-0.00011227
0.000226099
-0.000119435
0.000193936
-0.000125362
0.000163967
-0.000130082
0.000136138
-0.00013387
0.00011083
-0.000136647
8.79853e-05
-0.000138705
6.7599e-05
-0.000140122
4.95047e-05
-0.000141035
3.32754e-05
-0.000141428
1.85934e-05
-0.000141354
4.79766e-06
-0.000140881
-7.85666e-06
-0.000139968
-2.04272e-05
-0.000138572
-3.26398e-05
-0.000136793
-4.45705e-05
-0.000134567
-5.66208e-05
-0.000131872
-6.8908e-05
-0.000128701
-8.14122e-05
-0.000125042
-9.42566e-05
-0.000120839
-0.000107439
-0.000116133
-0.000121039
-0.000110851
-0.000135322
-0.000104939
-0.000149924
-9.84057e-05
-0.000164792
-9.12299e-05
-0.000180092
-8.33914e-05
-0.000195479
-7.4905e-05
-0.000210803
-6.57427e-05
-0.000225979
-5.59463e-05
-0.000240824
-4.54893e-05
-0.000255443
-3.43628e-05
-0.000269164
-2.26406e-05
-0.000281942
-1.03404e-05
-0.000293125
2.4291e-06
-0.000302618
1.56646e-05
-0.000309915
2.90671e-05
-0.000314576
4.26692e-05
-0.000316451
5.62864e-05
-0.000315088
6.97809e-05
-0.000310443
8.29411e-05
-0.000302297
9.56577e-05
-0.000290583
0.000107768
-0.000275198
0.000119114
-0.000256099
0.000129395
-0.000233424
0.000138592
-0.000207545
0.000146509
-0.000178533
0.000153029
-0.000146945
0.000158042
-0.000113195
0.000161463
-7.77813e-05
0.000163241
-4.1336e-05
0.000163353
-4.54057e-06
0.000161834
3.19879e-05
0.000158709
6.76428e-05
0.000154065
0.000101812
0.00014799
0.00013398
0.000140554
0.000163627
0.000131932
0.000190246
0.000122234
0.000213413
0.000111726
0.000232781
0.000100606
0.000248182
8.9029e-05
0.000259476
7.72168e-05
0.000266735
6.53269e-05
0.00027013
5.35388e-05
0.000269873
4.19908e-05
0.000266269
3.08176e-05
0.000259693
2.01164e-05
0.000250588
9.97663e-06
0.000239214
4.88377e-07
0.000225933
-8.30731e-06
0.000211384
-1.6387e-05
0.000195645
-2.37256e-05
0.000179128
-3.0302e-05
0.000162099
-3.61219e-05
0.000144857
-4.11914e-05
0.00012755
-4.55231e-05
0.00011039
-4.91462e-05
9.35386e-05
-5.20786e-05
7.71215e-05
-5.43557e-05
6.12413e-05
-5.59777e-05
4.5965e-05
-5.70072e-05
3.14035e-05
-5.74651e-05
1.75689e-05
-5.74017e-05
4.55336e-06
-5.68546e-05
-7.59771e-06
-5.58569e-05
-1.89571e-05
-5.44345e-05
-2.95572e-05
-5.26267e-05
-3.9389e-05
-5.04497e-05
-4.84735e-05
-4.79425e-05
-5.67774e-05
-4.51453e-05
-6.43013e-05
-4.2051e-05
-7.10924e-05
-3.87332e-05
-7.70938e-05
-3.5207e-05
-8.23374e-05
-3.15008e-05
-8.68272e-05
-2.7655e-05
-9.0566e-05
-2.37018e-05
-9.35541e-05
-1.96328e-05
-9.58373e-05
-1.55163e-05
-9.74043e-05
-1.13768e-05
-9.82539e-05
-7.23343e-06
-9.84147e-05
-3.11605e-06
-9.79001e-05
9.43041e-07
-9.67251e-05
4.9219e-06
-9.49279e-05
8.79796e-06
-9.25351e-05
1.2538e-05
-8.95738e-05
1.61279e-05
-8.6093e-05
1.95465e-05
-8.21295e-05
2.27776e-05
-7.77391e-05
2.5794e-05
-7.29597e-05
2.85946e-05
-6.78496e-05
3.1169e-05
-6.24605e-05
3.34917e-05
-5.6831e-05
3.55719e-05
-5.10302e-05
3.74033e-05
-4.51127e-05
3.89691e-05
-3.91109e-05
4.02831e-05
-3.30993e-05
4.13431e-05
-2.7123e-05
4.21545e-05
-2.12325e-05
4.27222e-05
-1.54729e-05
4.30459e-05
-9.89409e-06
4.31487e-05
-4.55392e-06
4.3043e-05
5.14391e-07
4.27423e-05
5.29339e-06
4.22598e-05
9.77795e-06
4.16045e-05
1.39593e-05
4.07848e-05
1.78202e-05
3.98254e-05
2.13372e-05
3.87374e-05
2.45109e-05
3.754e-05
2.73202e-05
3.62361e-05
2.978e-05
3.48557e-05
3.1875e-05
3.34072e-05
3.3621e-05
3.19055e-05
3.50229e-05
3.03665e-05
3.60994e-05
2.8806e-05
3.68589e-05
2.72248e-05
3.73299e-05
2.56459e-05
3.75205e-05
2.40766e-05
3.74563e-05
2.25242e-05
3.71604e-05
2.10034e-05
3.66478e-05
1.95097e-05
3.59534e-05
1.80614e-05
3.50881e-05
1.666e-05
3.40747e-05
1.5309e-05
3.29387e-05
1.40177e-05
3.16941e-05
1.27785e-05
3.03714e-05
1.16067e-05
2.89757e-05
1.04909e-05
2.75372e-05
9.44496e-06
2.60581e-05
8.45651e-06
2.45663e-05
7.53572e-06
2.30632e-05
6.67653e-06
2.15665e-05
5.88035e-06
2.00841e-05
5.14445e-06
1.86274e-05
4.46907e-06
1.72014e-05
3.84852e-06
1.58175e-05
3.28724e-06
1.44757e-05
2.77336e-06
1.31883e-05
2.31543e-06
1.19511e-05
1.89977e-06
1.07769e-05
1.53479e-06
9.65728e-06
1.20704e-06
8.6048e-06
9.22794e-07
7.61074e-06
6.73885e-07
6.68228e-06
4.60317e-07
5.81578e-06
2.79202e-07
5.011e-06
1.25422e-07
4.26852e-06
-8.17814e-10
3.5859e-06
-1.02008e-07
2.96593e-06
-1.81178e-07
2.39614e-06
-2.40361e-07
1.87989e-06
-2.81674e-07
1.41512e-06
-3.07132e-07
9.99642e-07
-3.18603e-07
6.31466e-07
-3.1805e-07
3.08339e-07
-3.07324e-07
2.74752e-08
-2.87887e-07
-2.15096e-07
-2.60841e-07
-4.23711e-07
-2.27718e-07
-5.99288e-07
-1.89368e-07
-7.46579e-07
-1.46875e-07
-8.63053e-07
-1.01495e-07
-9.58979e-07
-5.3457e-08
-1.02588e-06
-5.14153e-09
-1.07591e-06
4.4343e-08
-1.10831e-06
9.3668e-08
-1.12275e-06
1.42464e-07
-1.12331e-06
1.90304e-07
-1.11145e-06
2.36783e-07
-1.08878e-06
2.81531e-07
-1.05686e-06
3.24266e-07
-1.01701e-06
3.6476e-07
-9.70502e-07
4.02829e-07
-9.1859e-07
4.38359e-07
-8.62482e-07
4.71262e-07
-8.03103e-07
5.01467e-07
-7.41368e-07
5.28934e-07
-6.77988e-07
5.53623e-07
-6.13542e-07
5.75539e-07
-5.48672e-07
5.94731e-07
-4.84001e-07
6.11233e-07
-4.201e-07
6.25111e-07
-3.57473e-07
6.36442e-07
-2.96474e-07
6.45323e-07
-2.37436e-07
6.51849e-07
-1.80601e-07
6.56128e-07
-1.26238e-07
6.58289e-07
-7.461e-08
6.58507e-07
-2.59758e-08
6.56919e-07
1.72879e-08
6.53674e-07
5.93577e-08
6.48865e-07
9.8853e-08
6.42589e-07
1.35699e-07
6.34949e-07
1.69897e-07
6.26053e-07
2.01417e-07
6.16012e-07
2.3025e-07
6.04938e-07
2.56385e-07
5.92945e-07
2.79843e-07
5.80143e-07
3.00691e-07
5.66635e-07
3.19013e-07
5.5252e-07
3.34907e-07
5.37894e-07
3.48481e-07
5.22848e-07
3.59823e-07
5.07469e-07
3.69047e-07
4.91838e-07
3.76266e-07
4.76033e-07
3.81599e-07
4.60122e-07
3.85176e-07
4.44173e-07
3.87121e-07
4.28243e-07
3.8756e-07
4.12387e-07
3.86621e-07
3.96654e-07
3.84421e-07
3.81088e-07
3.81073e-07
3.6573e-07
3.76684e-07
3.50616e-07
3.71357e-07
3.35778e-07
3.65194e-07
3.21246e-07
3.5829e-07
3.07044e-07
3.50743e-07
2.93193e-07
3.42649e-07
2.79707e-07
3.34096e-07
2.666e-07
3.25157e-07
2.53884e-07
3.159e-07
2.41568e-07
3.0639e-07
2.29657e-07
2.96693e-07
2.18156e-07
2.8686e-07
2.07068e-07
2.76945e-07
1.96392e-07
2.67005e-07
1.86127e-07
2.57094e-07
1.76266e-07
2.47251e-07
1.66805e-07
2.37513e-07
1.57737e-07
2.27909e-07
1.49056e-07
2.18471e-07
1.40751e-07
2.09233e-07
1.32812e-07
2.00223e-07
1.25227e-07
1.91461e-07
1.17986e-07
1.82961e-07
1.11078e-07
1.74743e-07
1.04487e-07
1.66843e-07
9.81985e-08
1.59253e-07
9.21977e-08
1.51914e-07
8.64753e-08
1.4477e-07
8.1025e-08
1.37788e-07
7.58489e-08
1.30928e-07
1.2418e-07
0.000235334
0.000193196
0.000224653
0.000242529
0.000211443
0.000300999
0.000195764
0.000357238
0.000178282
0.000398891
0.000159025
0.000440754
0.000138432
0.000472156
0.00011688
0.000496459
9.49286e-05
0.00051271
7.279e-05
0.000520635
5.07994e-05
0.000522256
2.94751e-05
0.000515785
8.73736e-06
0.000505239
-1.18192e-05
0.000490453
-3.10118e-05
0.000469824
-4.90627e-05
0.000447307
-6.57742e-05
0.000420796
-8.12189e-05
0.000393113
-9.53981e-05
0.000365582
-0.000108299
0.000336706
-0.000119982
0.000308532
-0.000130466
0.000281568
-0.000139924
0.000255332
-0.000148322
0.000230713
-0.000155884
0.000207759
-0.00016266
0.000186329
-0.000168754
0.000166541
-0.000174234
0.00014768
-0.000179046
0.000129575
-0.000183334
0.000111878
-0.00018703
9.41929e-05
-0.000190096
7.60453e-05
-0.000192476
5.75327e-05
-0.000194126
3.86495e-05
-0.000195077
1.90778e-05
-0.000195243
-2.16384e-06
-0.000194551
-2.44006e-05
-0.000192952
-4.56446e-05
-0.000190486
-6.78341e-05
-0.00018702
-9.2574e-05
-0.000182715
-0.000114542
-0.000177455
-0.000140671
-0.000171283
-0.000163028
-0.000164176
-0.000185885
-0.000156061
-0.000213417
-0.000146947
-0.000236854
-0.000136947
-0.000259658
-0.000125856
-0.000287577
-0.000113861
-0.000312499
-0.000100712
-0.000334403
-8.62233e-05
-0.000361549
-7.10349e-05
-0.000380799
-5.48234e-05
-0.000403841
-3.77019e-05
-0.000424536
-2.00068e-05
-0.000437566
-1.54828e-06
-0.000452471
1.74317e-05
-0.000464396
3.65519e-05
-0.000466392
5.58653e-05
-0.000470339
7.49454e-05
-0.000467074
9.39955e-05
-0.000462137
0.000112956
-0.00045494
0.000131291
-0.00043829
0.000148812
-0.0004199
0.00016567
-0.000399378
0.000181419
-0.000369842
0.000196003
-0.000339042
0.000209056
-0.000301073
0.000220602
-0.000260433
0.000230547
-0.000214602
0.000238256
-0.000160854
0.000243561
-0.000104074
0.000246115
-4.25262e-05
0.000245849
2.40218e-05
0.000242488
9.21955e-05
0.000235859
0.000161945
0.000226076
0.000230287
0.000213149
0.000295902
0.000197429
0.000356437
0.00017929
0.000409907
0.000158839
0.000455393
0.000136976
0.000491179
0.000114097
0.000517193
9.05968e-05
0.000533162
6.70472e-05
0.000539045
4.38897e-05
0.000535577
2.14792e-05
0.000523953
1.15057e-07
0.000504629
-1.98798e-05
0.000479446
-3.82293e-05
0.000449078
-5.49681e-05
0.000415194
-6.99168e-05
0.000379761
-8.32916e-05
0.000343061
-9.49313e-05
0.000306142
-0.000105029
0.000269962
-0.000113569
0.000234639
-0.000120628
0.000200995
-0.000126501
0.00016984
-0.000131158
0.000140795
-0.00013482
0.000114493
-0.000137506
9.06706e-05
-0.00013947
6.95636e-05
-0.00014081
5.08446e-05
-0.000141667
3.41324e-05
-0.000142021
1.89476e-05
-0.000141919
4.69566e-06
-0.00014141
-8.36573e-06
-0.000140487
-2.13509e-05
-0.000139135
-3.39915e-05
-0.000137319
-4.63865e-05
-0.000135087
-5.88525e-05
-0.000132374
-7.16215e-05
-0.00012921
-8.45759e-05
-0.000125564
-9.79029e-05
-0.000121397
-0.000111605
-0.000116691
-0.000125746
-0.000111462
-0.000140551
-0.000105576
-0.000155809
-9.90426e-05
-0.000171326
-9.18804e-05
-0.000187254
-8.40466e-05
-0.000203312
-7.55465e-05
-0.000219303
-6.63866e-05
-0.000235139
-5.65346e-05
-0.000250676
-4.6067e-05
-0.000265911
-3.48837e-05
-0.000280347
-2.31239e-05
-0.000293702
-1.07229e-05
-0.000305526
2.10858e-06
-0.000315449
1.53932e-05
-0.0003232
2.89571e-05
-0.00032814
4.26809e-05
-0.000330174
5.64324e-05
-0.00032884
7.00427e-05
-0.000324053
8.33954e-05
-0.00031565
9.62348e-05
-0.000303422
0.000108481
-0.000287444
0.000119937
-0.000267555
0.000130456
-0.000243943
0.000139736
-0.000216825
0.000147739
-0.000186536
0.000154337
-0.000153544
0.000159411
-0.000118268
0.000162868
-8.12385e-05
0.000164658
-4.3126e-05
0.000164759
-4.64206e-06
0.000163197
3.35496e-05
0.00016001
7.08304e-05
0.000155267
0.000106555
0.000149066
0.00014018
0.000141512
0.000171181
0.000132754
0.000199004
0.00012296
0.000223207
0.000112313
0.000243428
0.000101036
0.00025946
8.93067e-05
0.000271205
7.7346e-05
0.000278695
6.53164e-05
0.000282159
5.33975e-05
0.000281792
4.174e-05
0.000277926
3.0476e-05
0.000270957
1.9715e-05
0.000261349
9.54132e-06
0.000249388
-9.01996e-08
0.000235564
-8.93526e-06
0.000220229
-1.70446e-05
0.000203754
-2.43982e-05
0.000186482
-3.09857e-05
0.000168687
-3.68016e-05
0.000150673
-4.18691e-05
0.000132617
-4.61922e-05
0.000114713
-4.97935e-05
9.71399e-05
-5.27017e-05
8.00297e-05
-5.49495e-05
6.34891e-05
-5.65661e-05
4.75815e-05
-5.75504e-05
3.23878e-05
-5.79842e-05
1.80027e-05
-5.78825e-05
4.45167e-06
-5.73028e-05
-8.17735e-06
-5.62729e-05
-1.9987e-05
-5.48279e-05
-3.10022e-05
-5.29858e-05
-4.12312e-05
-5.07802e-05
-5.06791e-05
-4.82465e-05
-5.93111e-05
-4.54007e-05
-6.71471e-05
-4.22891e-05
-7.42041e-05
-3.89399e-05
-8.0443e-05
-3.53829e-05
-8.58944e-05
-3.16536e-05
-9.05565e-05
-2.77739e-05
-9.44456e-05
-2.37826e-05
-9.75454e-05
-1.96925e-05
-9.99274e-05
-1.55537e-05
-0.000101543
-1.13843e-05
-0.000102423
-7.21249e-06
-0.000102586
-3.07221e-06
-0.00010204
1.01218e-06
-0.000100809
5.01781e-06
-9.89336e-05
8.91075e-06
-9.6428e-05
1.26737e-05
-9.33367e-05
1.6285e-05
-8.97042e-05
1.97197e-05
-8.55643e-05
2.29596e-05
-8.0979e-05
2.59942e-05
-7.59943e-05
2.88114e-05
-7.06668e-05
3.13848e-05
-6.5034e-05
3.37198e-05
-5.9166e-05
3.58092e-05
-5.31196e-05
3.76337e-05
-4.69373e-05
3.92052e-05
-4.06824e-05
4.05194e-05
-3.44135e-05
4.15797e-05
-2.81834e-05
4.23797e-05
-2.20325e-05
4.29362e-05
-1.60293e-05
4.32551e-05
-1.0213e-05
4.33482e-05
-4.64703e-06
4.32343e-05
6.28327e-07
4.29221e-05
5.60559e-06
4.24214e-05
1.02786e-05
4.17514e-05
1.46293e-05
4.09226e-05
1.8649e-05
3.99505e-05
2.23094e-05
3.88525e-05
2.56088e-05
3.76321e-05
2.85406e-05
3.63194e-05
3.10927e-05
3.49242e-05
3.32702e-05
3.34614e-05
3.50837e-05
3.19488e-05
3.65355e-05
3.04003e-05
3.7648e-05
2.88204e-05
3.84389e-05
2.72323e-05
3.8918e-05
2.56444e-05
3.91083e-05
2.40638e-05
3.90369e-05
2.25079e-05
3.87163e-05
2.09722e-05
3.81835e-05
1.94769e-05
3.74488e-05
1.80218e-05
3.65432e-05
1.66143e-05
3.54822e-05
1.52636e-05
3.42894e-05
1.39622e-05
3.29955e-05
1.27271e-05
3.16065e-05
1.15468e-05
3.0156e-05
1.04362e-05
2.86478e-05
9.38305e-06
2.71112e-05
8.39857e-06
2.55508e-05
7.47642e-06
2.39854e-05
6.61854e-06
2.24244e-05
5.823e-06
2.08797e-05
5.08889e-06
1.93615e-05
4.41337e-06
1.78769e-05
3.79762e-06
1.64333e-05
3.23375e-06
1.50396e-05
2.72767e-06
1.36944e-05
2.26642e-06
1.24123e-05
1.85866e-06
1.11847e-05
1.49061e-06
1.00253e-05
1.16968e-06
8.92573e-06
8.85332e-07
7.89509e-06
6.40239e-07
6.92737e-06
4.28757e-07
6.02726e-06
2.49153e-07
5.19061e-06
1.00697e-07
4.41697e-06
-2.54473e-08
3.71204e-06
-1.24503e-07
3.06499e-06
-2.0153e-07
2.47317e-06
-2.58668e-07
1.93703e-06
-2.98047e-07
1.4545e-06
-3.21643e-07
1.02324e-06
-3.31329e-07
6.41152e-07
-3.29121e-07
3.06131e-07
-3.16902e-07
1.52556e-08
-2.96109e-07
-2.35889e-07
-2.67841e-07
-4.5198e-07
-2.33508e-07
-6.33621e-07
-1.94057e-07
-7.8603e-07
-1.50392e-07
-9.06718e-07
-1.04243e-07
-1.00513e-06
-5.5404e-08
-1.07471e-06
-6.37928e-09
-1.12494e-06
4.37711e-08
-1.15846e-06
9.36405e-08
-1.17262e-06
1.42911e-07
-1.17258e-06
1.91164e-07
-1.1597e-06
2.37996e-07
-1.13561e-06
2.83064e-07
-1.10193e-06
3.26057e-07
-1.06e-06
3.66762e-07
-1.01121e-06
4.05003e-07
-9.56832e-07
4.4065e-07
-8.98129e-07
4.7364e-07
-8.36093e-07
5.03906e-07
-7.71634e-07
5.31407e-07
-7.05489e-07
5.56101e-07
-6.38236e-07
5.78026e-07
-5.70597e-07
5.97193e-07
-5.03168e-07
6.13654e-07
-4.3656e-07
6.27476e-07
-3.71295e-07
6.38737e-07
-3.07735e-07
6.47536e-07
-2.46235e-07
6.5397e-07
-1.87035e-07
6.58147e-07
-1.30415e-07
6.60204e-07
-7.66666e-08
6.60318e-07
-2.60896e-08
6.58602e-07
1.90033e-08
6.55246e-07
6.27142e-08
6.50327e-07
1.03771e-07
6.43943e-07
1.42083e-07
6.36195e-07
1.77645e-07
6.27191e-07
2.10421e-07
6.17042e-07
2.40398e-07
6.05863e-07
2.67563e-07
5.93768e-07
2.91939e-07
5.80866e-07
3.13593e-07
5.67262e-07
3.32617e-07
5.53055e-07
3.49114e-07
5.38341e-07
3.63196e-07
5.23211e-07
3.74952e-07
5.07753e-07
3.84505e-07
4.92048e-07
3.9197e-07
4.76173e-07
3.97474e-07
4.60199e-07
4.0115e-07
4.4419e-07
4.0313e-07
4.28206e-07
4.03544e-07
4.123e-07
4.02527e-07
3.96522e-07
4.00199e-07
3.80915e-07
3.96679e-07
3.6552e-07
3.92079e-07
3.50373e-07
3.86504e-07
3.35506e-07
3.80061e-07
3.20949e-07
3.72847e-07
3.06726e-07
3.64966e-07
2.92856e-07
3.56518e-07
2.79355e-07
3.47597e-07
2.66236e-07
3.38276e-07
2.53511e-07
3.28626e-07
2.41187e-07
3.18714e-07
2.2927e-07
3.08609e-07
2.17766e-07
2.98364e-07
2.06677e-07
2.88034e-07
1.96002e-07
2.7768e-07
1.85739e-07
2.67357e-07
1.75883e-07
2.57108e-07
1.66427e-07
2.46969e-07
1.57366e-07
2.3697e-07
1.48692e-07
2.27145e-07
1.40396e-07
2.17529e-07
1.32466e-07
2.08153e-07
1.24891e-07
1.99036e-07
1.1766e-07
1.90192e-07
1.10762e-07
1.81641e-07
1.04182e-07
1.73422e-07
9.79047e-08
1.65531e-07
9.1914e-08
1.57905e-07
8.62004e-08
1.50483e-07
8.07569e-08
1.43231e-07
7.5587e-08
1.36098e-07
1.29058e-07
0.000237738
0.000201909
0.000226882
0.000253385
0.000213466
0.000314414
0.000197539
0.000373166
0.000179776
0.000416654
0.000160206
0.000460325
0.000139272
0.00049309
0.000117458
0.000518272
9.5252e-05
0.000534916
7.28877e-05
0.000542999
5.07675e-05
0.000544377
2.92007e-05
0.000537351
8.07936e-06
0.00052636
-1.26015e-05
0.000511134
-3.19387e-05
0.000489161
-5.00927e-05
0.000465461
-6.68566e-05
0.00043756
-8.23446e-05
0.000408601
-9.65255e-05
0.000379763
-0.000109412
0.000349592
-0.00012104
0.000320159
-0.000131495
0.000292024
-0.000140893
0.00026473
-0.000149234
0.000239054
-0.000156734
0.00021526
-0.000163462
0.000193056
-0.000169515
0.000172594
-0.00017497
0.000153135
-0.000179759
0.000134364
-0.000184042
0.00011616
-0.00018775
9.79012e-05
-0.000190844
7.91392e-05
-0.000193262
5.99504e-05
-0.000194935
4.0323e-05
-0.000195932
2.00742e-05
-0.000196163
-1.93279e-06
-0.000195455
-2.51084e-05
-0.000193919
-4.71805e-05
-0.000191501
-7.02525e-05
-0.000188065
-9.601e-05
-0.00018379
-0.000118817
-0.000178574
-0.000145886
-0.000172374
-0.000169228
-0.000165203
-0.000193056
-0.000157091
-0.000221529
-0.000147971
-0.000245974
-0.000137939
-0.00026969
-0.000126833
-0.000298683
-0.000114875
-0.000324457
-0.000101696
-0.000347582
-8.72174e-05
-0.000376029
-7.18933e-05
-0.000396124
-5.56042e-05
-0.00042013
-3.83871e-05
-0.000441753
-2.05812e-05
-0.000455372
-2.03277e-06
-0.00047102
1.71376e-05
-0.000483567
3.63964e-05
-0.000485651
5.58514e-05
-0.000489794
7.51163e-05
-0.000486339
9.43075e-05
-0.000481328
0.000113361
-0.000473993
0.000131846
-0.000456775
0.000149571
-0.000437625
0.000166637
-0.000416444
0.00018262
-0.000385825
0.000197381
-0.000353803
0.00021078
-0.000314472
0.00022252
-0.000272173
0.000232557
-0.000224639
0.000240301
-0.000168598
0.000245689
-0.000109462
0.000248518
-4.53549e-05
0.000248419
2.41203e-05
0.000245117
9.54973e-05
0.000238484
0.000168578
0.000228561
0.00024021
0.000215433
0.00030903
0.000199572
0.000372298
0.00018088
0.0004286
0.000160156
0.000476117
0.000137907
0.000513427
0.000114612
0.000540488
9.0766e-05
0.000557007
6.68759e-05
0.000562936
4.34253e-05
0.000559028
2.08154e-05
0.000546563
-9.29958e-07
0.000526374
-2.11332e-05
0.000499649
-3.96565e-05
0.000467602
-5.64312e-05
0.000431969
-7.1473e-05
0.000394803
-8.4788e-05
0.000356376
-9.63782e-05
0.000317732
-0.000106405
0.000279989
-0.000114912
0.000243147
-0.000121971
0.000208054
-0.00012769
0.000175559
-0.000132253
0.000145357
-0.000135807
0.000118046
-0.000138377
9.32403e-05
-0.000140259
7.14463e-05
-0.00014152
5.21057e-05
-0.000142301
3.49131e-05
-0.000142621
1.92678e-05
-0.000142486
4.56072e-06
-0.000141925
-8.92708e-06
-0.000141033
-2.22425e-05
-0.000139691
-3.53337e-05
-0.000137877
-4.82011e-05
-0.000135665
-6.10644e-05
-0.000132985
-7.4301e-05
-0.000129791
-8.77701e-05
-0.000126201
-0.000101493
-0.000122052
-0.000115754
-0.000117333
-0.000130465
-0.000112099
-0.000145785
-0.000106237
-0.000161671
-9.97365e-05
-0.000177826
-9.25558e-05
-0.000194435
-8.47257e-05
-0.000211143
-7.6212e-05
-0.000227817
-6.70483e-05
-0.000244303
-5.71648e-05
-0.000260559
-4.66283e-05
-0.000276447
-3.54596e-05
-0.000291516
-2.36324e-05
-0.000305529
-1.11959e-05
-0.000317963
1.76406e-06
-0.000328409
1.5149e-05
-0.000336585
2.88554e-05
-0.000341847
4.26931e-05
-0.000344012
5.65843e-05
-0.000342731
7.0338e-05
-0.000337807
8.38276e-05
-0.000329139
9.68352e-05
-0.00031643
0.000109233
-0.000299842
0.000120822
-0.000279143
0.000131427
-0.000254548
0.00014089
-0.000226289
0.000149082
-0.000194727
0.000155718
-0.000160179
0.000160841
-0.000123392
0.000164346
-8.47438e-05
0.000166149
-4.49287e-05
0.000166241
-4.73449e-06
0.00016464
3.51506e-05
0.000161397
7.40735e-05
0.000156567
0.000111384
0.00015026
0.000146488
0.00014258
0.000178861
0.000133682
0.000207902
0.000123742
0.000233147
0.000112932
0.000254238
0.000101491
0.000270901
8.95977e-05
0.000283098
7.74959e-05
0.000290797
6.53475e-05
0.000294308
5.33309e-05
0.000293809
4.15463e-05
0.000289711
3.01031e-05
0.0002824
1.92019e-05
0.00027225
8.90312e-06
0.000259687
-6.99065e-07
0.000245167
-9.58897e-06
0.000229119
-1.77286e-05
0.000211894
-2.50978e-05
0.000193851
-3.17107e-05
0.0001753
-3.75205e-05
0.000156483
-4.25789e-05
0.000137676
-4.68864e-05
0.000119021
-5.04671e-05
0.000100721
-5.33564e-05
8.29191e-05
-5.5574e-05
6.57067e-05
-5.71552e-05
4.91627e-05
-5.81246e-05
3.33573e-05
-5.85199e-05
1.83979e-05
-5.83803e-05
4.31213e-06
-5.77695e-05
-8.78818e-06
-5.67132e-05
-2.10433e-05
-5.52341e-05
-3.24813e-05
-5.3368e-05
-4.30973e-05
-5.11357e-05
-5.29114e-05
-4.85598e-05
-6.1887e-05
-4.5678e-05
-7.00288e-05
-4.25346e-05
-7.73474e-05
-3.91545e-05
-8.38232e-05
-3.55703e-05
-8.94786e-05
-3.18079e-05
-9.43189e-05
-2.79022e-05
-9.83514e-05
-2.38724e-05
-0.000101575
-1.97594e-05
-0.00010404
-1.55896e-05
-0.000105713
-1.13876e-05
-0.000106625
-7.1931e-06
-0.000106781
-3.02555e-06
-0.000106208
1.08833e-06
-0.000104923
5.11303e-06
-0.000102958
9.03125e-06
-0.000100346
1.28211e-05
-9.71266e-05
1.64458e-05
-9.33289e-05
1.98975e-05
-8.9016e-05
2.31551e-05
-8.42366e-05
2.62085e-05
-7.90476e-05
2.90272e-05
-7.34855e-05
3.16153e-05
-6.76221e-05
3.39616e-05
-6.15124e-05
3.60466e-05
-5.52045e-05
3.78804e-05
-4.87711e-05
3.94568e-05
-4.22588e-05
4.07638e-05
-3.57204e-05
4.18157e-05
-2.92353e-05
4.26148e-05
-2.28316e-05
4.31651e-05
-1.65796e-05
4.34775e-05
-1.05255e-05
4.35585e-05
-4.72804e-06
4.34268e-05
7.60041e-07
4.31018e-05
5.93066e-06
4.2592e-05
1.07884e-05
4.19101e-05
1.53112e-05
4.10718e-05
1.94873e-05
4.00825e-05
2.32986e-05
3.8963e-05
2.67284e-05
3.77334e-05
2.97703e-05
3.64048e-05
3.24213e-05
3.49946e-05
3.46804e-05
3.35232e-05
3.65552e-05
3.19922e-05
3.80664e-05
3.04272e-05
3.9213e-05
2.88398e-05
4.00262e-05
2.72415e-05
4.05164e-05
2.56401e-05
4.07097e-05
2.40553e-05
4.06217e-05
2.2483e-05
4.02885e-05
2.09454e-05
3.97211e-05
1.94404e-05
3.89538e-05
1.79793e-05
3.80042e-05
1.65711e-05
3.68904e-05
1.52091e-05
3.56515e-05
1.39113e-05
3.42934e-05
1.26666e-05
3.28512e-05
1.1491e-05
3.13315e-05
1.03724e-05
2.97665e-05
9.32316e-06
2.81604e-05
8.33601e-06
2.65379e-05
7.41524e-06
2.49062e-05
6.55772e-06
2.32819e-05
5.76324e-06
2.16742e-05
5.0301e-06
2.00946e-05
4.35767e-06
1.85493e-05
3.74099e-06
1.705e-05
3.18386e-06
1.55967e-05
2.67435e-06
1.42039e-05
2.22114e-06
1.28655e-05
1.81019e-06
1.15956e-05
1.4503e-06
1.03852e-05
1.12742e-06
9.24861e-06
8.48595e-07
8.17391e-06
6.04316e-07
7.17165e-06
3.95964e-07
6.23562e-06
2.19122e-07
5.36745e-06
7.07886e-08
4.5653e-06
-5.10573e-08
3.83389e-06
-1.47854e-07
3.16178e-06
-2.22662e-07
2.54798e-06
-2.77679e-07
1.99205e-06
-3.15035e-07
1.49186e-06
-3.36698e-07
1.0449e-06
-3.44527e-07
6.48981e-07
-3.40583e-07
3.02186e-07
-3.26819e-07
1.49127e-09
-3.04625e-07
-2.58083e-07
-2.75124e-07
-4.81481e-07
-2.39494e-07
-6.69251e-07
-1.98895e-07
-8.26629e-07
-1.54065e-07
-9.51549e-07
-1.07068e-07
-1.05212e-06
-5.73662e-08
-1.12442e-06
-7.62974e-09
-1.17467e-06
4.31925e-08
-1.20928e-06
9.3641e-08
-1.22307e-06
1.43402e-07
-1.22234e-06
1.92083e-07
-1.20838e-06
2.39283e-07
-1.18281e-06
2.84668e-07
-1.14731e-06
3.27934e-07
-1.10327e-06
3.68854e-07
-1.05213e-06
4.07269e-07
-9.95246e-07
4.43049e-07
-9.3391e-07
4.76125e-07
-8.69168e-07
5.0645e-07
-8.0196e-07
5.33976e-07
-7.33015e-07
5.587e-07
-6.62959e-07
5.8062e-07
-5.92517e-07
5.9976e-07
-5.22309e-07
6.16177e-07
-4.52977e-07
6.29941e-07
-3.85059e-07
6.41129e-07
-3.18923e-07
6.49843e-07
-2.54949e-07
6.56185e-07
-1.93377e-07
6.60264e-07
-1.34495e-07
6.622e-07
-7.8603e-08
6.62182e-07
-2.60717e-08
6.60351e-07
2.08348e-08
6.5688e-07
6.61856e-08
6.51849e-07
1.08802e-07
6.45352e-07
1.4858e-07
6.3749e-07
1.85507e-07
6.28373e-07
2.19539e-07
6.18113e-07
2.50658e-07
6.06825e-07
2.78851e-07
5.94622e-07
3.04141e-07
5.81617e-07
3.26599e-07
5.67913e-07
3.46321e-07
5.5361e-07
3.63416e-07
5.38804e-07
3.78002e-07
5.23587e-07
3.9017e-07
5.08046e-07
4.00045e-07
4.92264e-07
4.07752e-07
4.76317e-07
4.13421e-07
4.60276e-07
4.17192e-07
4.44206e-07
4.192e-07
4.28166e-07
4.19584e-07
4.12209e-07
4.18484e-07
3.96383e-07
4.16024e-07
3.80734e-07
4.12328e-07
3.65301e-07
4.07513e-07
3.5012e-07
4.01685e-07
3.35223e-07
3.94958e-07
3.20639e-07
3.87431e-07
3.06394e-07
3.79212e-07
2.92505e-07
3.70407e-07
2.78989e-07
3.61114e-07
2.65857e-07
3.51407e-07
2.53121e-07
3.41361e-07
2.40789e-07
3.31046e-07
2.28867e-07
3.20531e-07
2.1736e-07
3.09871e-07
2.06269e-07
2.99125e-07
1.95596e-07
2.88353e-07
1.85336e-07
2.77617e-07
1.75484e-07
2.6696e-07
1.66033e-07
2.56419e-07
1.56979e-07
2.46024e-07
1.48313e-07
2.35811e-07
1.40026e-07
2.25816e-07
1.32106e-07
2.16073e-07
1.24541e-07
2.06601e-07
1.1732e-07
1.97413e-07
1.10433e-07
1.88528e-07
1.03865e-07
1.79989e-07
9.75993e-08
1.71797e-07
9.16193e-08
1.63885e-07
8.59147e-08
1.56188e-07
8.04781e-08
1.48668e-07
7.53142e-08
1.41262e-07
1.33924e-07
0.000240249
0.00021078
0.000229211
0.000264424
0.000215582
0.000328043
0.000199395
0.000389353
0.000181338
0.000434711
0.000161431
0.000480232
0.000140208
0.000514313
0.000118108
0.000540372
9.56495e-05
0.000557374
7.30591e-05
0.00056559
5.04733e-05
0.000566962
2.87336e-05
0.000559091
7.41929e-06
0.000547674
-1.34377e-05
0.000531991
-3.29139e-05
0.000508637
-5.11755e-05
0.000483723
-6.79946e-05
0.000454379
-8.35274e-05
0.000424134
-9.77097e-05
0.000393945
-0.000110579
0.000362462
-0.000122163
0.000331743
-0.000132568
0.000302429
-0.000141908
0.00027407
-0.000150184
0.000247329
-0.000157615
0.000222691
-0.000164291
0.000199732
-0.000170303
0.000178606
-0.00017573
0.000158563
-0.000180501
0.000139135
-0.000184778
0.000120438
-0.000188493
0.000101615
-0.000191621
8.22672e-05
-0.000194081
6.24104e-05
-0.000195781
4.20236e-05
-0.000196861
2.11543e-05
-0.000197045
-1.74869e-06
-0.000196381
-2.57733e-05
-0.000194861
-4.87006e-05
-0.000192468
-7.26456e-05
-0.000189039
-9.94383e-05
-0.000184766
-0.000123091
-0.000179598
-0.000151054
-0.0001735
-0.000175326
-0.000166327
-0.000200229
-0.000158181
-0.000229675
-0.000149043
-0.000255113
-0.000138986
-0.000279747
-0.00012787
-0.000309799
-0.000115752
-0.000336575
-0.000102711
-0.000360623
-8.83272e-05
-0.000390412
-7.27922e-05
-0.000411659
-5.64112e-05
-0.000436511
-3.91125e-05
-0.000459052
-2.11858e-05
-0.000473298
-2.49325e-06
-0.000489712
1.67274e-05
-0.000502788
3.62537e-05
-0.000505177
5.58719e-05
-0.000509412
7.53434e-05
-0.000505811
9.46648e-05
-0.00050065
0.000113855
-0.000493183
0.000132441
-0.000475362
0.000150308
-0.000455492
0.000167537
-0.000433674
0.000183689
-0.000401977
0.000198768
-0.000368882
0.000212458
-0.000328162
0.000224421
-0.000284136
0.000234501
-0.00023472
0.000242539
-0.000176636
0.000248157
-0.000115081
0.000251175
-4.83726e-05
0.000251213
2.40821e-05
0.000247957
9.87534e-05
0.000241308
0.000175227
0.000231246
0.000250273
0.00021801
0.000322266
0.000201602
0.000388706
0.00018265
0.000447552
0.000161609
0.000497158
0.000138915
0.000536121
0.000115207
0.000564197
9.09637e-05
0.00058125
6.68372e-05
0.000587062
4.28623e-05
0.000583003
1.97777e-05
0.000569647
-2.02018e-06
0.000548172
-2.24508e-05
0.00052008
-4.11246e-05
0.000486275
-5.7962e-05
0.000448806
-7.30539e-05
0.000409895
-8.63017e-05
0.000369624
-9.80126e-05
0.000329443
-0.000107954
0.00028993
-0.00011631
0.000251503
-0.000123321
0.000215065
-0.000128934
0.000181172
-0.00013339
0.000149813
-0.000136791
0.000121447
-0.000139333
9.57829e-05
-0.000141077
7.31902e-05
-0.000142258
5.32869e-05
-0.000142976
3.56311e-05
-0.000143252
1.95429e-05
-0.000143068
4.37752e-06
-0.00014252
-9.47505e-06
-0.000141615
-2.31484e-05
-0.000140262
-3.6686e-05
-0.000138465
-4.99982e-05
-0.000136233
-6.32959e-05
-0.00013358
-7.69549e-05
-0.000130434
-9.09158e-05
-0.000126823
-0.000105103
-0.000122694
-0.000119884
-0.000118029
-0.00013513
-0.000112795
-0.00015102
-0.000106888
-0.000167578
-0.000100444
-0.00018427
-9.32409e-05
-0.000201638
-8.54289e-05
-0.000218955
-7.69002e-05
-0.000236346
-6.77381e-05
-0.000253465
-5.78809e-05
-0.000270417
-4.73225e-05
-0.000287006
-3.60117e-05
-0.000302827
-2.4153e-05
-0.000317388
-1.16532e-05
-0.000330462
1.40694e-06
-0.000341469
1.48984e-05
-0.000350077
2.87409e-05
-0.000355689
4.27285e-05
-0.000358
5.67412e-05
-0.000356744
7.06441e-05
-0.00035171
8.42749e-05
-0.00034277
9.74851e-05
-0.00032964
0.000110013
-0.00031237
0.000121758
-0.000290889
0.000132503
-0.000265293
0.000142084
-0.00023587
0.000150342
-0.000202985
0.000157199
-0.000167037
0.00016235
-0.000128543
0.000165897
-8.82901e-05
0.00016771
-4.67424e-05
0.000167793
-4.81737e-06
0.000166153
3.67904e-05
0.000162846
7.73804e-05
0.000157934
0.000116296
0.000151513
0.000152909
0.000143709
0.000186666
0.000134662
0.000216948
0.000124561
0.000243247
0.000113586
0.000265214
0.000101988
0.000282498
8.99875e-05
0.000295099
7.76416e-05
0.000303143
6.52855e-05
0.000306664
5.30737e-05
0.000306021
4.11594e-05
0.000301625
2.9666e-05
0.000293893
1.86844e-05
0.000283232
8.31732e-06
0.000270054
-1.33248e-06
0.000254816
-1.02713e-05
0.000238057
-1.84383e-05
0.000220061
-2.58365e-05
0.000201249
-3.24452e-05
0.000181908
-3.82656e-05
0.000162303
-4.33155e-05
0.000142725
-4.76054e-05
0.000123311
-5.1174e-05
0.000104289
-5.40353e-05
8.57803e-05
-5.62264e-05
6.78978e-05
-5.77776e-05
5.0714e-05
-5.87182e-05
3.42979e-05
-5.90724e-05
1.8752e-05
-5.89005e-05
4.14021e-06
-5.82565e-05
-9.43218e-06
-5.71685e-05
-2.21313e-05
-5.56672e-05
-3.39826e-05
-5.37537e-05
-4.50108e-05
-5.14806e-05
-5.51844e-05
-4.88734e-05
-6.44942e-05
-4.5963e-05
-7.29392e-05
-4.27921e-05
-8.05183e-05
-3.93803e-05
-8.7235e-05
-3.5762e-05
-9.30969e-05
-3.19665e-05
-9.81143e-05
-2.80423e-05
-0.000102276
-2.3969e-05
-0.000105648
-1.98267e-05
-0.000108183
-1.56224e-05
-0.000109917
-1.13991e-05
-0.000110849
-7.1722e-06
-0.000111008
-2.9723e-06
-0.000110408
1.16122e-06
-0.000109057
5.21441e-06
-0.000107011
9.16243e-06
-0.000104294
1.29642e-05
-0.000100928
1.6614e-05
-9.69787e-05
2.00867e-05
-9.24886e-05
2.3364e-05
-8.7514e-05
2.64213e-05
-8.21048e-05
2.92577e-05
-7.63219e-05
3.18582e-05
-7.02226e-05
3.42046e-05
-6.38587e-05
3.63005e-05
-5.73005e-05
3.81363e-05
-5.06069e-05
3.97079e-05
-4.38304e-05
4.10176e-05
-3.70302e-05
4.20677e-05
-3.02854e-05
4.2865e-05
-2.36289e-05
4.34055e-05
-1.71201e-05
4.3702e-05
-1.08221e-05
4.37708e-05
-4.79674e-06
4.36297e-05
9.01083e-07
4.32937e-05
6.26666e-06
4.27751e-05
1.1307e-05
4.2075e-05
1.60113e-05
4.12167e-05
2.03456e-05
4.02146e-05
2.43006e-05
3.90839e-05
2.78591e-05
3.78372e-05
3.1017e-05
3.6493e-05
3.37655e-05
3.50729e-05
3.61005e-05
3.3578e-05
3.80501e-05
3.20367e-05
3.96077e-05
3.04612e-05
4.07884e-05
2.88591e-05
4.16283e-05
2.72472e-05
4.21283e-05
2.56408e-05
4.23162e-05
2.40381e-05
4.22244e-05
2.24633e-05
4.18633e-05
2.09132e-05
4.12711e-05
1.94029e-05
4.04641e-05
1.79394e-05
3.94677e-05
1.65187e-05
3.83112e-05
1.51595e-05
3.70107e-05
1.3851e-05
3.56018e-05
1.26105e-05
3.40917e-05
1.1426e-05
3.25159e-05
1.03111e-05
3.08815e-05
9.258e-06
2.92134e-05
8.27232e-06
2.75236e-05
7.35122e-06
2.58273e-05
6.49463e-06
2.41385e-05
5.70114e-06
2.24676e-05
4.96991e-06
2.08259e-05
4.2976e-06
1.92216e-05
3.68668e-06
1.76609e-05
3.12609e-06
1.61573e-05
2.6248e-06
1.47052e-05
2.16818e-06
1.33221e-05
1.76564e-06
1.19982e-05
1.40266e-06
1.07482e-05
1.08813e-06
9.56314e-06
8.07765e-07
8.45428e-06
5.68874e-07
7.41054e-06
3.61427e-07
6.44306e-06
1.87495e-07
5.54138e-06
4.25159e-08
4.71028e-06
-7.7624e-08
3.95403e-06
-1.72062e-07
3.25622e-06
-2.44571e-07
2.62049e-06
-2.97385e-07
2.04486e-06
-3.32637e-07
1.52711e-06
-3.52297e-07
1.06456e-06
-3.58189e-07
6.54873e-07
-3.52431e-07
2.96427e-07
-3.37068e-07
-1.38715e-08
-3.13428e-07
-2.81723e-07
-2.82617e-07
-5.12292e-07
-2.45671e-07
-7.06198e-07
-2.03882e-07
-8.68419e-07
-1.58008e-07
-9.97423e-07
-1.09973e-07
-1.10016e-06
-5.93403e-08
-1.17505e-06
-8.87982e-09
-1.22513e-06
4.26201e-08
-1.26078e-06
9.36694e-08
-1.27412e-06
1.43938e-07
-1.27261e-06
1.93064e-07
-1.25751e-06
2.40645e-07
-1.23039e-06
2.86347e-07
-1.19302e-06
3.29898e-07
-1.14682e-06
3.71042e-07
-1.09327e-06
4.09629e-07
-1.03383e-06
4.45544e-07
-9.69825e-07
4.78716e-07
-9.0234e-07
5.09104e-07
-8.32348e-07
5.36667e-07
-7.60577e-07
5.61407e-07
-6.877e-07
5.83319e-07
-6.14429e-07
6.02431e-07
-5.4142e-07
6.18801e-07
-4.69347e-07
6.32505e-07
-3.98763e-07
6.43625e-07
-3.30043e-07
6.52253e-07
-2.63577e-07
6.58493e-07
-1.99617e-07
6.62458e-07
-1.38459e-07
6.64269e-07
-8.04147e-08
6.6411e-07
-2.59123e-08
6.62165e-07
2.27795e-08
6.58576e-07
6.97745e-08
6.53428e-07
1.1395e-07
6.46814e-07
1.55194e-07
6.38835e-07
1.93487e-07
6.296e-07
2.28773e-07
6.19224e-07
2.61034e-07
6.07822e-07
2.90253e-07
5.95509e-07
3.16455e-07
5.82395e-07
3.39712e-07
5.68587e-07
3.60129e-07
5.54185e-07
3.77818e-07
5.39283e-07
3.92904e-07
5.23975e-07
4.05477e-07
5.08349e-07
4.15671e-07
4.92487e-07
4.23614e-07
4.76466e-07
4.29443e-07
4.60355e-07
4.33302e-07
4.44221e-07
4.35334e-07
4.28122e-07
4.35683e-07
4.12112e-07
4.34494e-07
3.96238e-07
4.31898e-07
3.80545e-07
4.28022e-07
3.65072e-07
4.22985e-07
3.49855e-07
4.16902e-07
3.34927e-07
4.09887e-07
3.20316e-07
4.02042e-07
3.06047e-07
3.9348e-07
2.9214e-07
3.84314e-07
2.78607e-07
3.74646e-07
2.65462e-07
3.64552e-07
2.52716e-07
3.54108e-07
2.40376e-07
3.43386e-07
2.28448e-07
3.32459e-07
2.16937e-07
3.21383e-07
2.05846e-07
3.10216e-07
1.95174e-07
2.99025e-07
1.84917e-07
2.87874e-07
1.75069e-07
2.76808e-07
1.65624e-07
2.65864e-07
1.56577e-07
2.55071e-07
1.4792e-07
2.44468e-07
1.39642e-07
2.34094e-07
1.31732e-07
2.23983e-07
1.24177e-07
2.14156e-07
1.16967e-07
2.04623e-07
1.10091e-07
1.95404e-07
1.03536e-07
1.86544e-07
9.72823e-08
1.78051e-07
9.13135e-08
1.69853e-07
8.56185e-08
1.61883e-07
8.01888e-08
1.54097e-07
7.50302e-08
1.46421e-07
1.38776e-07
0.000242869
0.000219819
0.00023164
0.000275653
0.000217792
0.00034189
0.000201333
0.000405812
0.000182949
0.000453095
0.00016276
0.00050042
0.000141245
0.000535829
0.000118887
0.00056273
9.60443e-05
0.000580217
7.30267e-05
0.000588607
5.01612e-05
0.000589828
2.82518e-05
0.000581
6.75563e-06
0.00056917
-1.43309e-05
0.000553078
-3.39396e-05
0.000528246
-5.23011e-05
0.000502084
-6.91869e-05
0.000471265
-8.47493e-05
0.000439696
-9.89494e-05
0.000408145
-0.00011181
0.000375322
-0.00012334
0.000343273
-0.000133687
0.000312777
-0.000142971
0.000283354
-0.000151169
0.000255528
-0.000158527
0.000230049
-0.000165145
0.00020635
-0.000171115
0.000184576
-0.000176475
0.000163923
-0.000181266
0.000143926
-0.000185537
0.000124709
-0.000189261
0.000105339
-0.000192424
8.54305e-05
-0.000194931
6.49179e-05
-0.000196676
4.37685e-05
-0.000197746
2.22238e-05
-0.000197969
-1.52591e-06
-0.000197254
-2.64878e-05
-0.000195769
-5.01854e-05
-0.000193404
-7.50109e-05
-0.000190053
-0.000102789
-0.000185778
-0.000127367
-0.00018066
-0.000156171
-0.000174579
-0.000181407
-0.000167518
-0.000207291
-0.00015938
-0.000237813
-0.000150167
-0.000264326
-0.00014008
-0.000289834
-0.000128956
-0.000320923
-0.000116778
-0.000348753
-0.000103574
-0.000373827
-8.93471e-05
-0.000404639
-7.38049e-05
-0.000427201
-5.72605e-05
-0.000453055
-3.98855e-05
-0.000476427
-2.1832e-05
-0.000491352
-2.98369e-06
-0.000508561
1.63174e-05
-0.000522089
3.59332e-05
-0.000524793
5.58527e-05
-0.000529332
7.56e-05
-0.000525558
9.49911e-05
-0.000520041
0.000114324
-0.000512516
0.000133053
-0.000494091
0.000151088
-0.000473527
0.000168504
-0.000451091
0.000184827
-0.0004183
0.000200002
-0.000384057
0.000213852
-0.000342012
0.000226
-0.000296284
0.000236427
-0.000245147
0.000244722
-0.00018493
0.000250514
-0.000120873
0.000253723
-5.15813e-05
0.000253884
2.39215e-05
0.000250688
0.000101949
0.000244065
0.00018185
0.000233926
0.000260412
0.000220371
0.00033582
0.000203698
0.000405379
0.000184425
0.000466825
0.000162969
0.000518614
0.000139937
0.000559153
0.000115809
0.000588325
9.12824e-05
0.000605777
6.6428e-05
0.000611916
4.21911e-05
0.00060724
1.88444e-05
0.000592994
-3.25072e-06
0.000570267
-2.38285e-05
0.000540658
-4.26629e-05
0.00050511
-5.95537e-05
0.000465697
-7.46973e-05
0.000425038
-8.79864e-05
0.000382913
-9.96428e-05
0.0003411
-0.000109548
0.000299835
-0.000117879
0.000259835
-0.000124723
0.000221908
-0.000130229
0.000186679
-0.000134572
0.000154156
-0.000137896
0.000124771
-0.000140307
9.81934e-05
-0.000141922
7.48057e-05
-0.00014302
5.43854e-05
-0.000143666
3.62763e-05
-0.000143887
1.97637e-05
-0.000143668
4.15845e-06
-0.000143112
-1.00303e-05
-0.000142175
-2.4086e-05
-0.000140851
-3.80093e-05
-0.00013906
-5.17895e-05
-0.000136825
-6.55307e-05
-0.000134192
-7.95877e-05
-0.000131058
-9.40499e-05
-0.00012746
-0.000108701
-0.000123356
-0.000123988
-0.000118712
-0.000139773
-0.000113476
-0.000156256
-0.000107642
-0.000173412
-0.000101166
-0.000190746
-9.39911e-05
-0.000208813
-8.61579e-05
-0.000226788
-7.76583e-05
-0.000244845
-6.84626e-05
-0.00026266
-5.85909e-05
-0.000280288
-4.79958e-05
-0.000297601
-3.66898e-05
-0.000314133
-2.46696e-05
-0.000329408
-1.21294e-05
-0.000343003
1.0816e-06
-0.00035468
1.46295e-05
-0.000363624
2.85834e-05
-0.000369643
4.27506e-05
-0.000372167
5.69123e-05
-0.000370905
7.09612e-05
-0.000365759
8.47482e-05
-0.000356557
9.81123e-05
-0.000343004
0.000110832
-0.00032509
0.000122738
-0.000302794
0.000133628
-0.000276183
0.00014334
-0.000245583
0.000151717
-0.000211361
0.00015862
-0.000173939
0.000163989
-0.000133912
0.000167544
-9.18461e-05
0.000169366
-4.8564e-05
0.000169427
-4.87865e-06
0.000167743
3.84748e-05
0.000164365
8.07578e-05
0.000159365
0.000121296
0.000152828
0.000159446
0.000144887
0.000194606
0.000135689
0.000226146
0.000125441
0.000253496
0.000114347
0.000276307
0.000102473
0.000294371
9.02039e-05
0.000307369
7.77339e-05
0.000315613
6.52339e-05
0.000319164
5.28842e-05
0.00031837
4.0843e-05
0.000313667
2.9233e-05
0.000305503
1.81597e-05
0.000294305
7.71304e-06
0.000280501
-2.00264e-06
0.000264532
-1.09826e-05
0.000247037
-1.9188e-05
0.000228266
-2.66016e-05
0.000208663
-3.32177e-05
0.000188524
-3.90381e-05
0.000168123
-4.40778e-05
0.000147765
-4.83625e-05
0.000127595
-5.19048e-05
0.000107831
-5.47411e-05
8.86167e-05
-5.69065e-05
7.00631e-05
-5.8425e-05
5.22325e-05
-5.93449e-05
3.52178e-05
-5.96553e-05
1.90624e-05
-5.94396e-05
3.92445e-06
-5.87672e-05
-1.01045e-05
-5.76485e-05
-2.325e-05
-5.60911e-05
-3.554e-05
-5.41482e-05
-4.69538e-05
-5.18442e-05
-5.74884e-05
-4.92058e-05
-6.71327e-05
-4.6267e-05
-7.5878e-05
-4.30586e-05
-8.37267e-05
-3.96114e-05
-9.06822e-05
-3.59589e-05
-9.67495e-05
-3.21355e-05
-0.000101938
-2.81587e-05
-0.000106253
-2.40711e-05
-0.000109736
-1.98917e-05
-0.000112362
-1.56647e-05
-0.000114144
-1.14068e-05
-0.000115106
-7.1458e-06
-0.000115269
-2.9242e-06
-0.000114629
1.24073e-06
-0.000113222
5.32555e-06
-0.000111096
9.28859e-06
-0.000108257
1.31191e-05
-0.000104759
1.67932e-05
-0.000100653
2.02801e-05
-9.59755e-05
2.35706e-05
-9.08046e-05
2.66484e-05
-8.51826e-05
2.9499e-05
-7.91725e-05
3.21044e-05
-7.2828e-05
3.44638e-05
-6.62182e-05
3.65628e-05
-5.93994e-05
3.84011e-05
-5.24453e-05
3.99756e-05
-4.54048e-05
4.12865e-05
-3.83411e-05
4.23316e-05
-3.13305e-05
4.31165e-05
-2.44137e-05
4.36498e-05
-1.76534e-05
4.39385e-05
-1.11108e-05
4.39961e-05
-4.85425e-06
4.3846e-05
1.05114e-06
4.34919e-05
6.6208e-06
4.29545e-05
1.18444e-05
4.22438e-05
1.6722e-05
4.13722e-05
2.12172e-05
4.03563e-05
2.53166e-05
3.92072e-05
2.90081e-05
3.79447e-05
3.22795e-05
3.65895e-05
3.51207e-05
3.51448e-05
3.75452e-05
3.36396e-05
3.95553e-05
3.20879e-05
4.11595e-05
3.04924e-05
4.23839e-05
2.88781e-05
4.32426e-05
2.72589e-05
4.37474e-05
2.56329e-05
4.39422e-05
2.40275e-05
4.38298e-05
2.24375e-05
4.34533e-05
2.08822e-05
4.28264e-05
1.93649e-05
4.19815e-05
1.78902e-05
4.09424e-05
1.64715e-05
3.97299e-05
1.51003e-05
3.83818e-05
1.37954e-05
3.69068e-05
1.25449e-05
3.53422e-05
1.13641e-05
3.36967e-05
1.02437e-05
3.20019e-05
9.19255e-06
3.02646e-05
8.20539e-06
2.85108e-05
7.28481e-06
2.67478e-05
6.42869e-06
2.49946e-05
5.63681e-06
2.32595e-05
4.90614e-06
2.15565e-05
4.23865e-06
1.98891e-05
3.62468e-06
1.82748e-05
3.07215e-06
1.67098e-05
2.56739e-06
1.521e-05
2.11933e-06
1.37702e-05
1.71344e-06
1.24041e-05
1.35917e-06
1.11025e-05
1.04152e-06
9.8808e-06
7.69783e-07
8.72601e-06
5.29247e-07
7.65108e-06
3.27968e-07
6.64434e-06
1.54247e-07
5.7151e-06
1.10328e-08
4.8535e-06
-1.05184e-07
4.07024e-06
-1.97127e-07
3.34816e-06
-2.67254e-07
2.69062e-06
-3.17781e-07
2.09539e-06
-3.50854e-07
1.56018e-06
-3.68434e-07
1.08214e-06
-3.7231e-07
6.58749e-07
-3.64657e-07
2.88774e-07
-3.47642e-07
-3.08871e-08
-3.22514e-07
-3.06851e-07
-2.9033e-07
-5.44475e-07
-2.52041e-07
-7.44487e-07
-2.0902e-07
-9.1144e-07
-1.62046e-07
-1.0444e-06
-1.12955e-07
-1.14925e-06
-6.1317e-08
-1.22669e-06
-1.01028e-08
-1.27635e-06
4.2061e-08
-1.31295e-06
9.3726e-08
-1.32578e-06
1.4452e-07
-1.3234e-06
1.94107e-07
-1.30709e-06
2.42085e-07
-1.27837e-06
2.88119e-07
-1.23905e-06
3.3194e-07
-1.19064e-06
3.73326e-07
-1.13466e-06
4.12092e-07
-1.0726e-06
4.48141e-07
-1.00587e-06
4.81411e-07
-9.3561e-07
5.11868e-07
-8.62805e-07
5.3947e-07
-7.88179e-07
5.64224e-07
-7.12453e-07
5.86126e-07
-6.36331e-07
6.05209e-07
-5.60503e-07
6.21544e-07
-4.85682e-07
6.3518e-07
-4.12399e-07
6.46218e-07
-3.41081e-07
6.54752e-07
-2.72111e-07
6.60886e-07
-2.0575e-07
6.64733e-07
-1.42306e-07
6.66414e-07
-8.20966e-08
6.66104e-07
-2.5602e-08
6.64045e-07
2.48383e-08
6.60336e-07
7.34841e-08
6.55067e-07
1.19219e-07
6.48331e-07
1.6193e-07
6.40228e-07
2.01589e-07
6.30871e-07
2.38131e-07
6.20375e-07
2.71531e-07
6.08855e-07
3.01773e-07
5.96426e-07
3.28883e-07
5.83201e-07
3.52937e-07
5.69285e-07
3.74045e-07
5.54779e-07
3.92325e-07
5.39778e-07
4.07905e-07
5.24376e-07
4.20879e-07
5.08662e-07
4.31386e-07
4.92716e-07
4.39559e-07
4.76617e-07
4.45542e-07
4.60435e-07
4.49485e-07
4.44235e-07
4.51534e-07
4.28076e-07
4.51842e-07
4.1201e-07
4.5056e-07
3.96086e-07
4.47823e-07
3.80347e-07
4.4376e-07
3.64833e-07
4.38499e-07
3.49579e-07
4.32155e-07
3.34618e-07
4.24848e-07
3.19979e-07
4.16681e-07
3.05687e-07
4.07773e-07
2.91759e-07
3.98242e-07
2.7821e-07
3.88196e-07
2.65051e-07
3.77711e-07
2.52294e-07
3.66865e-07
2.39947e-07
3.55733e-07
2.28013e-07
3.44393e-07
2.16498e-07
3.32897e-07
2.05405e-07
3.21309e-07
1.94735e-07
3.09696e-07
1.84481e-07
2.98127e-07
1.74638e-07
2.86651e-07
1.652e-07
2.75303e-07
1.5616e-07
2.64111e-07
1.47511e-07
2.53117e-07
1.39243e-07
2.42362e-07
1.31344e-07
2.31882e-07
1.238e-07
2.217e-07
1.166e-07
2.11822e-07
1.09737e-07
2.02267e-07
1.03195e-07
1.93086e-07
9.69537e-08
1.84292e-07
9.09968e-08
1.7581e-07
8.53118e-08
1.67568e-07
7.9889e-08
1.5952e-07
7.4735e-08
1.51575e-07
1.43614e-07
0.000245599
0.000229033
0.000234171
0.000287081
0.000220098
0.000355963
0.000203351
0.00042256
0.000184679
0.000471767
0.000164217
0.000520882
0.000142343
0.000557704
0.000119481
0.000585592
9.63069e-05
0.000603391
7.2992e-05
0.000611922
4.98275e-05
0.000612992
2.77517e-05
0.000603076
6.09024e-06
0.000590832
-1.52831e-05
0.000574451
-3.50203e-05
0.000547983
-5.34906e-05
0.000520555
-7.04347e-05
0.000488209
-8.60129e-05
0.000455275
-0.000100242
0.000422374
-0.000113082
0.000388162
-0.000124568
0.000354759
-0.000134856
0.000323065
-0.000144024
0.000292521
-0.000152191
0.000263695
-0.000159469
0.000237327
-0.000166033
0.000212914
-0.000171964
0.000190507
-0.000177273
0.000169232
-0.000182053
0.000148706
-0.000186325
0.000128981
-0.000190059
0.000109073
-0.00019326
8.86308e-05
-0.000195836
6.74941e-05
-0.000197622
4.55548e-05
-0.000198671
2.32724e-05
-0.000198841
-1.35537e-06
-0.000198207
-2.71225e-05
-0.000196706
-5.16858e-05
-0.000194369
-7.73484e-05
-0.000190959
-0.000106199
-0.000186667
-0.000131658
-0.000181645
-0.000161192
-0.000175696
-0.000187356
-0.000168636
-0.000214351
-0.000160647
-0.000245802
-0.000151359
-0.000273613
-0.000141219
-0.000299974
-0.000130088
-0.000332054
-0.000117892
-0.000360949
-0.000104607
-0.000387112
-9.03113e-05
-0.000418935
-7.48869e-05
-0.000442625
-5.81519e-05
-0.00046979
-4.06985e-05
-0.000493881
-2.24798e-05
-0.000509571
-3.4413e-06
-0.000527599
1.5982e-05
-0.000541512
3.57311e-05
-0.000544542
5.58043e-05
-0.000549405
7.58342e-05
-0.000545588
9.54501e-05
-0.000539657
0.000114947
-0.000532012
0.000133836
-0.000512981
0.000152073
-0.000491764
0.000169702
-0.000468719
0.00018623
-0.000434828
0.000201632
-0.000399459
0.00021572
-0.000356101
0.000228161
-0.000308726
0.000238894
-0.00025588
0.000247477
-0.000193513
0.000253537
-0.000126934
0.000256967
-5.50112e-05
0.000257248
2.36404e-05
0.000254091
0.000105106
0.000247427
0.000188514
0.00023716
0.000270679
0.000223196
0.000349784
0.000206184
0.000422391
0.000186504
0.000486505
0.000164591
0.000540527
0.000141147
0.000582597
0.000116564
0.000612908
9.13134e-05
0.000631027
6.61827e-05
0.000637047
4.15796e-05
0.000631843
1.79017e-05
0.000616672
-4.49124e-06
0.00059266
-2.52423e-05
0.000561409
-4.42738e-05
0.000524141
-6.12138e-05
0.000482637
-7.64055e-05
0.00044023
-8.97281e-05
0.000396236
-0.000101327
0.000352698
-0.000111189
0.000309697
-0.00011945
0.000268096
-0.000126181
0.000228639
-0.000131577
0.000192075
-0.000135802
0.000158381
-0.000138994
0.000127963
-0.000141303
0.000100502
-0.000142793
7.62958e-05
-0.000143798
5.53902e-05
-0.000144369
3.68474e-05
-0.000144553
1.99476e-05
-0.000144291
3.8968e-06
-0.000143726
-1.05955e-05
-0.000142823
-2.49889e-05
-0.000141458
-3.93749e-05
-0.000139675
-5.35717e-05
-0.000137462
-6.77441e-05
-0.000134811
-8.22383e-05
-0.000131704
-9.71569e-05
-0.000128114
-0.000112291
-0.000124038
-0.000128065
-0.00011942
-0.000144391
-0.000114241
-0.000161435
-0.000108378
-0.000179275
-0.000101915
-0.000197208
-9.47672e-05
-0.000215961
-8.69183e-05
-0.000234637
-7.84148e-05
-0.000253349
-6.92057e-05
-0.00027187
-5.93274e-05
-0.000290167
-4.86495e-05
-0.000308279
-3.73474e-05
-0.000325435
-2.52835e-05
-0.000341472
-1.25778e-05
-0.000355708
6.21673e-07
-0.00036788
1.43491e-05
-0.000377352
2.84306e-05
-0.000383724
4.2735e-05
-0.000386472
5.70793e-05
-0.00038525
7.1303e-05
-0.000379983
8.52298e-05
-0.000370484
9.87652e-05
-0.00035654
0.000111745
-0.00033807
0.000123759
-0.000314809
0.000134806
-0.000287229
0.000144656
-0.000255433
0.000153163
-0.000219869
0.000160159
-0.000180935
0.000165544
-0.000139298
0.000169198
-9.54998e-05
0.000171064
-5.04304e-05
0.000171129
-4.94335e-06
0.000169433
4.01706e-05
0.000166029
8.41611e-05
0.000160941
0.000126385
0.000154263
0.000166123
0.000146212
0.000202657
0.000136848
0.00023551
0.000126322
0.000264021
0.000114954
0.000287676
0.000102946
0.000306379
9.05129e-05
0.000319802
7.7861e-05
0.000328265
6.51923e-05
0.000331832
5.26929e-05
0.00033087
4.05184e-05
0.000325841
2.87882e-05
0.000317233
1.76186e-05
0.000305475
7.0931e-06
0.000291026
-2.69849e-06
0.000274324
-1.17269e-05
0.000256066
-1.99644e-05
0.000236504
-2.73935e-05
0.000216092
-3.40198e-05
0.000195151
-3.98465e-05
0.00017395
-4.488e-05
0.000152799
-4.9143e-05
0.000131858
-5.26635e-05
0.000111352
-5.54764e-05
9.14296e-05
-5.76086e-05
7.21953e-05
-5.90957e-05
5.37196e-05
-5.99707e-05
3.60928e-05
-6.0258e-05
1.93497e-05
-6.00072e-05
3.67368e-06
-5.92812e-05
-1.08305e-05
-5.81209e-05
-2.44104e-05
-5.65394e-05
-3.71215e-05
-5.45662e-05
-4.8927e-05
-5.22248e-05
-5.98297e-05
-4.95523e-05
-6.98052e-05
-4.65774e-05
-7.8853e-05
-4.33308e-05
-8.69732e-05
-3.98532e-05
-9.41598e-05
-3.61676e-05
-0.000100435
-3.23144e-05
-0.000105791
-2.82983e-05
-0.000110269
-2.41713e-05
-0.000113863
-1.99675e-05
-0.000116566
-1.57038e-05
-0.000118408
-1.14102e-05
-0.0001194
-7.12624e-06
-0.000119553
-2.87054e-06
-0.000118885
1.32829e-06
-0.000117421
5.43083e-06
-0.000115199
9.42542e-06
-0.000112252
1.32837e-05
-0.000108617
1.69732e-05
-0.000104342
2.0482e-05
-9.94843e-05
2.37919e-05
-9.41145e-05
2.68853e-05
-8.8276e-05
2.97454e-05
-8.20326e-05
3.23669e-05
-7.54495e-05
3.47299e-05
-6.85812e-05
3.68353e-05
-6.15047e-05
3.86821e-05
-5.42921e-05
4.02551e-05
-4.69778e-05
4.15581e-05
-3.96441e-05
4.26005e-05
-3.2373e-05
4.33821e-05
-2.51953e-05
4.39088e-05
-1.81801e-05
4.41901e-05
-1.13921e-05
4.42274e-05
-4.89158e-06
4.40592e-05
1.21937e-06
4.36962e-05
6.98375e-06
4.31468e-05
1.23938e-05
4.24259e-05
1.74429e-05
4.15362e-05
2.21069e-05
4.05001e-05
2.63527e-05
3.93357e-05
3.01725e-05
3.8059e-05
3.35562e-05
3.668e-05
3.64997e-05
3.52278e-05
3.89974e-05
3.37029e-05
4.10802e-05
3.21313e-05
4.27311e-05
3.05262e-05
4.39891e-05
2.89025e-05
4.48663e-05
2.72622e-05
4.53877e-05
2.56329e-05
4.55714e-05
2.40091e-05
4.54536e-05
2.2414e-05
4.50484e-05
2.08486e-05
4.43918e-05
1.93227e-05
4.35074e-05
1.78465e-05
4.24186e-05
1.64146e-05
4.11617e-05
1.50462e-05
3.97502e-05
1.37301e-05
3.82229e-05
1.24839e-05
3.65883e-05
1.12951e-05
3.48855e-05
1.01773e-05
3.31197e-05
9.12251e-06
3.13194e-05
8.13637e-06
2.94969e-05
7.21583e-06
2.76684e-05
6.36073e-06
2.58497e-05
5.56937e-06
2.40509e-05
4.84296e-06
2.22829e-05
4.17265e-06
2.05594e-05
3.56637e-06
1.88811e-05
3.01009e-06
1.72661e-05
2.51336e-06
1.57067e-05
2.06258e-06
1.4221e-05
1.66519e-06
1.28015e-05
1.30809e-06
1.14596e-05
9.99348e-07
1.01895e-05
7.24496e-07
9.00086e-06
4.92881e-07
7.88269e-06
2.8919e-07
6.84803e-06
1.23627e-07
5.88066e-06
-2.01951e-08
4.99732e-06
-1.33682e-07
4.18373e-06
-2.23047e-07
3.43753e-06
-2.90704e-07
2.75827e-06
-3.38864e-07
2.14355e-06
-3.69682e-07
1.591e-06
-3.85107e-07
1.09756e-06
-3.86885e-07
6.60526e-07
-3.7725e-07
2.7914e-07
-3.58536e-07
-4.96017e-08
-3.31877e-07
-3.3351e-07
-2.98267e-07
-5.78086e-07
-2.58601e-07
-7.84153e-07
-2.14309e-07
-9.55733e-07
-1.66181e-07
-1.09252e-06
-1.16011e-07
-1.19942e-06
-6.37589e-08
-1.27894e-06
-1.12386e-08
-1.32887e-06
4.15287e-08
-1.36572e-06
9.38001e-08
-1.37806e-06
1.45149e-07
-1.37475e-06
1.95215e-07
-1.35716e-06
2.43603e-07
-1.32676e-06
2.89982e-07
-1.28543e-06
3.34084e-07
-1.23474e-06
3.75694e-07
-1.17627e-06
4.14656e-07
-1.11156e-06
4.50846e-07
-1.04206e-06
4.84216e-07
-9.68981e-07
5.14742e-07
-8.9333e-07
5.42384e-07
-8.15822e-07
5.67149e-07
-7.37218e-07
5.89041e-07
-6.58223e-07
6.08113e-07
-5.79575e-07
6.24386e-07
-5.01955e-07
6.37952e-07
-4.25965e-07
6.48907e-07
-3.52036e-07
6.57344e-07
-2.80549e-07
6.63367e-07
-2.11773e-07
6.6709e-07
-1.4603e-07
6.68636e-07
-8.36429e-08
6.68166e-07
-2.5132e-08
6.65991e-07
2.70137e-08
6.62158e-07
7.73175e-08
6.56764e-07
1.24613e-07
6.49902e-07
1.68792e-07
6.41672e-07
2.09819e-07
6.32187e-07
2.47615e-07
6.21566e-07
2.82152e-07
6.09924e-07
3.13415e-07
5.97376e-07
3.41431e-07
5.84035e-07
3.66278e-07
5.70007e-07
3.88073e-07
5.55393e-07
4.06938e-07
5.40289e-07
4.23009e-07
5.24789e-07
4.36379e-07
5.08983e-07
4.47192e-07
4.92952e-07
4.5559e-07
4.76772e-07
4.61722e-07
4.60515e-07
4.65741e-07
4.44247e-07
4.67802e-07
4.28025e-07
4.68064e-07
4.11902e-07
4.66683e-07
3.95926e-07
4.63799e-07
3.8014e-07
4.59546e-07
3.64584e-07
4.54056e-07
3.49292e-07
4.47447e-07
3.34297e-07
4.39843e-07
3.19629e-07
4.31349e-07
3.05312e-07
4.2209e-07
2.91364e-07
4.12189e-07
2.77798e-07
4.01762e-07
2.64625e-07
3.90884e-07
2.51857e-07
3.79633e-07
2.39501e-07
3.6809e-07
2.27561e-07
3.56333e-07
2.16042e-07
3.44416e-07
2.04949e-07
3.32402e-07
1.9428e-07
3.20364e-07
1.8403e-07
3.08378e-07
1.74192e-07
2.96489e-07
1.64759e-07
2.84735e-07
1.55727e-07
2.73144e-07
1.47087e-07
2.61756e-07
1.3883e-07
2.50619e-07
1.30942e-07
2.39771e-07
1.23409e-07
2.29233e-07
1.16221e-07
2.1901e-07
1.0937e-07
2.09119e-07
1.02841e-07
1.99614e-07
9.66137e-08
1.9052e-07
9.06693e-08
1.81755e-07
8.49947e-08
1.73242e-07
7.95787e-08
1.64936e-07
7.44282e-08
1.56725e-07
1.48435e-07
0.000248442
0.000238433
0.000236807
0.000298716
0.00022251
0.00037026
0.000205496
0.000439573
0.000186548
0.000490715
0.000165648
0.000541782
0.000143327
0.000580025
0.000120097
0.000608821
9.65763e-05
0.000626912
7.29534e-05
0.000635545
4.94667e-05
0.000636479
2.71239e-05
0.000625419
4.92312e-06
0.000613033
-1.62995e-05
0.000595674
-3.61528e-05
0.000567836
-5.47458e-05
0.000539148
-7.17415e-05
0.000505205
-8.73294e-05
0.000470862
-0.000101589
0.000436634
-0.000114399
0.000400972
-0.000125847
0.000366207
-0.000136084
0.000333302
-0.000145149
0.000301587
-0.000153251
0.000271797
-0.000160443
0.000244518
-0.000166948
0.00021942
-0.000172802
0.000196361
-0.000178098
0.000174528
-0.000182871
0.00015348
-0.000187142
0.000133252
-0.000190918
0.000112849
-0.000194137
9.18503e-05
-0.000196745
7.01024e-05
-0.000198554
4.73639e-05
-0.000199538
2.42565e-05
-0.000199776
-1.11747e-06
-0.000199223
-2.76759e-05
-0.000197727
-5.31817e-05
-0.000195413
-7.96629e-05
-0.000192012
-0.0001096
-0.000187678
-0.000135992
-0.000182696
-0.000166174
-0.000176685
-0.000193367
-0.0001698
-0.000221237
-0.000161868
-0.000253733
-0.000152725
-0.000282757
-0.000142415
-0.000310284
-0.000131273
-0.000343196
-0.000119091
-0.000373132
-0.000105697
-0.000400506
-9.13137e-05
-0.000433318
-7.59031e-05
-0.000458036
-5.91743e-05
-0.000486519
-4.1598e-05
-0.000511457
-2.31575e-05
-0.000528011
-3.97331e-06
-0.000546783
1.55349e-05
-0.00056102
3.54298e-05
-0.000564437
5.56611e-05
-0.000569636
7.59185e-05
-0.000565846
9.58158e-05
-0.000559554
0.000115407
-0.000551603
0.000134441
-0.000532015
0.00015287
-0.000510193
0.000170668
-0.000486517
0.000187361
-0.000451521
0.000202944
-0.000415043
0.000217194
-0.00037035
0.000229809
-0.000321341
0.000240738
-0.000266808
0.000249489
-0.000202264
0.000255762
-0.000133207
0.000259412
-5.86614e-05
0.000259828
2.32241e-05
0.000256835
0.000108099
0.000250298
0.00019505
0.000239637
0.000281341
0.00022559
0.000363831
0.000208307
0.000439675
0.000188325
0.000506487
0.000166202
0.00056265
0.000142065
0.000606733
0.000116933
0.000638041
9.13768e-05
0.000656583
6.58417e-05
0.000662582
4.08306e-05
0.000656854
1.68605e-05
0.000640642
-5.8411e-06
0.000615362
-2.68231e-05
0.000582391
-4.59796e-05
0.000543297
-6.30242e-05
0.000499681
-7.81938e-05
0.000455399
-9.14339e-05
0.000409476
-0.000103047
0.000364311
-0.000112881
0.00031953
-0.00012106
0.000276275
-0.000127689
0.000235268
-0.000132963
0.000197348
-0.000137064
0.000162483
-0.000140127
0.000131026
-0.000142287
0.000102662
-0.000143677
7.76857e-05
-0.000144578
5.62919e-05
-0.000145061
3.73302e-05
-0.000145267
2.01537e-05
-0.000144898
3.52696e-06
-0.000144338
-1.1155e-05
-0.000143439
-2.58885e-05
-0.00014202
-4.07936e-05
-0.000140299
-5.52925e-05
-0.000138089
-6.99539e-05
-0.000135406
-8.49213e-05
-0.000132352
-0.000100211
-0.000128819
-0.000115824
-0.000124734
-0.000132149
-0.000120154
-0.000148972
-0.000115001
-0.000166588
-0.000109167
-0.000185109
-0.000102725
-0.00020365
-9.55142e-05
-0.000223172
-8.76814e-05
-0.000242469
-7.91979e-05
-0.000261832
-6.99822e-05
-0.000281085
-6.00922e-05
-0.000300056
-4.94383e-05
-0.000318932
-3.80337e-05
-0.000336839
-2.59165e-05
-0.000353589
-1.31558e-05
-0.000368469
1.9229e-07
-0.000381228
1.40603e-05
-0.00039122
2.82737e-05
-0.000397938
4.27331e-05
-0.000400931
5.72224e-05
-0.000399739
7.16292e-05
-0.00039439
8.57425e-05
-0.000384597
9.94483e-05
-0.000370246
0.000112548
-0.000351169
0.000124872
-0.000327133
0.000136071
-0.000298429
0.000146039
-0.000265401
0.000154664
-0.000228493
0.000161763
-0.000188035
0.000167229
-0.000144763
0.000170921
-9.91917e-05
0.000172803
-5.23133e-05
0.000172841
-4.9815e-06
0.000171086
4.19256e-05
0.000167579
8.76688e-05
0.000162396
0.000131568
0.000155636
0.000172883
0.000147397
0.000210896
0.000137863
0.000245045
0.000127214
0.00027467
0.000115666
0.000299224
0.000103457
0.000318588
9.08337e-05
0.000332425
7.79992e-05
0.000341099
6.51539e-05
0.000344678
5.24995e-05
0.000343524
4.02014e-05
0.000338139
2.83904e-05
0.000329044
1.71457e-05
0.000316719
6.52913e-06
0.000301643
-3.42358e-06
0.000284276
-1.25028e-05
0.000265145
-2.07715e-05
0.000244773
-2.8227e-05
0.000223547
-3.48626e-05
0.000201786
-4.06853e-05
0.000179773
-4.57072e-05
0.00015782
-4.99528e-05
0.000136104
-5.3453e-05
0.000114852
-5.62342e-05
9.42108e-05
-5.83399e-05
7.4301e-05
-5.97948e-05
5.51745e-05
-6.063e-05
3.6928e-05
-6.08818e-05
1.96015e-05
-6.05676e-05
3.35953e-06
-5.98148e-05
-1.15834e-05
-5.86213e-05
-2.56039e-05
-5.70059e-05
-3.87369e-05
-5.49926e-05
-5.09402e-05
-5.262e-05
-6.22023e-05
-4.99093e-05
-7.25158e-05
-4.68942e-05
-8.18681e-05
-4.36189e-05
-9.02486e-05
-4.01027e-05
-9.7676e-05
-3.63803e-05
-0.000104157
-3.24901e-05
-0.000109681
-2.84396e-05
-0.000114319
-2.42832e-05
-0.000118019
-2.00407e-05
-0.000120809
-1.57425e-05
-0.000122706
-1.14223e-05
-0.00012372
-7.10144e-06
-0.000123874
-2.81434e-06
-0.000123172
1.4094e-06
-0.000121644
5.54667e-06
-0.000119336
9.56876e-06
-0.000116274
1.34467e-05
-0.000112495
1.71633e-05
-0.000108059
2.06986e-05
-0.00010302
2.40209e-05
-9.74368e-05
2.71286e-05
-9.13837e-05
3.00094e-05
-8.49134e-05
3.26337e-05
-7.80738e-05
3.50074e-05
-7.09549e-05
3.71241e-05
-6.36214e-05
3.89648e-05
-5.61328e-05
4.05405e-05
-4.85536e-05
4.18439e-05
-4.09475e-05
4.28853e-05
-3.34144e-05
4.36622e-05
-2.59722e-05
4.4174e-05
-1.86919e-05
4.44399e-05
-1.16581e-05
4.4467e-05
-4.91869e-06
4.4287e-05
1.39943e-06
4.39145e-05
7.35616e-06
4.3346e-05
1.29624e-05
4.2604e-05
1.81848e-05
4.16997e-05
2.30112e-05
4.06504e-05
2.74019e-05
3.94698e-05
3.13531e-05
3.81718e-05
3.48542e-05
3.67832e-05
3.78883e-05
3.53057e-05
4.04749e-05
3.37671e-05
4.26188e-05
3.21836e-05
4.43145e-05
3.05616e-05
4.56112e-05
2.89184e-05
4.65095e-05
2.72739e-05
4.70323e-05
2.56239e-05
4.72214e-05
2.39955e-05
4.7082e-05
2.23872e-05
4.66567e-05
2.08138e-05
4.59651e-05
1.9283e-05
4.50383e-05
1.7793e-05
4.39086e-05
1.63631e-05
4.25916e-05
1.49822e-05
4.11311e-05
1.36697e-05
3.95354e-05
1.24133e-05
3.78448e-05
1.12294e-05
3.60694e-05
1.01046e-05
3.42445e-05
9.05231e-06
3.23717e-05
8.06414e-06
3.04851e-05
7.14501e-06
2.85875e-05
6.28968e-06
2.6705e-05
5.50214e-06
2.48384e-05
4.77272e-06
2.30123e-05
4.11001e-06
2.12222e-05
3.49967e-06
1.94915e-05
2.95036e-06
1.78154e-05
2.45257e-06
1.62045e-05
2.0077e-06
1.46659e-05
1.60984e-06
1.31993e-05
1.25922e-06
1.18102e-05
9.49667e-07
1.04991e-05
6.82207e-07
9.26832e-06
4.4913e-07
8.11577e-06
2.54505e-07
7.04266e-06
8.53871e-08
6.04978e-06
-5.24138e-08
5.13512e-06
-1.63126e-07
4.29444e-06
-2.49819e-07
3.52422e-06
-3.14919e-07
2.82337e-06
-3.6063e-07
2.18926e-06
-3.89155e-07
1.61952e-06
-4.02316e-07
1.11073e-06
-4.01908e-07
6.60118e-07
-3.90199e-07
2.67431e-07
-3.69741e-07
-7.00602e-08
-3.41515e-07
-3.61736e-07
-3.06429e-07
-6.13171e-07
-2.65347e-07
-8.25235e-07
-2.19739e-07
-1.00134e-06
-1.70401e-07
-1.14186e-06
-1.19132e-07
-1.25069e-06
-6.6035e-08
-1.33204e-06
-1.21682e-08
-1.38273e-06
4.10134e-08
-1.4189e-06
9.38908e-08
-1.43093e-06
1.45841e-07
-1.4267e-06
1.96393e-07
-1.40771e-06
2.45202e-07
-1.37557e-06
2.91937e-07
-1.33216e-06
3.36331e-07
-1.27914e-06
3.78171e-07
-1.21811e-06
4.17312e-07
-1.1507e-06
4.53657e-07
-1.07841e-06
4.87132e-07
-1.00246e-06
5.17727e-07
-9.23925e-07
5.45408e-07
-8.43503e-07
5.70184e-07
-7.61994e-07
5.92085e-07
-6.80124e-07
6.11113e-07
-5.98603e-07
6.27329e-07
-5.1817e-07
6.40826e-07
-4.39462e-07
6.51695e-07
-3.62906e-07
6.60031e-07
-2.88884e-07
6.65936e-07
-2.17678e-07
6.69531e-07
-1.49624e-07
6.70936e-07
-8.50479e-08
6.70299e-07
-2.44947e-08
6.68004e-07
2.93088e-08
6.64043e-07
8.12781e-08
6.58521e-07
1.30135e-07
6.51527e-07
1.75786e-07
6.43164e-07
2.18182e-07
6.33548e-07
2.57231e-07
6.22797e-07
2.92903e-07
6.11029e-07
3.25183e-07
5.98357e-07
3.54103e-07
5.84896e-07
3.7974e-07
5.70752e-07
4.02217e-07
5.56027e-07
4.21664e-07
5.40815e-07
4.38221e-07
5.25215e-07
4.5198e-07
5.09313e-07
4.63093e-07
4.93193e-07
4.71711e-07
4.7693e-07
4.77985e-07
4.60596e-07
4.82075e-07
4.44257e-07
4.84141e-07
4.27971e-07
4.8435e-07
4.11789e-07
4.82865e-07
3.95758e-07
4.79829e-07
3.79924e-07
4.7538e-07
3.64324e-07
4.69656e-07
3.48993e-07
4.62778e-07
3.33963e-07
4.54873e-07
3.19265e-07
4.46047e-07
3.04922e-07
4.36432e-07
2.90954e-07
4.26158e-07
2.7737e-07
4.15345e-07
2.64183e-07
4.04071e-07
2.51403e-07
3.92412e-07
2.39039e-07
3.80455e-07
2.27092e-07
3.68279e-07
2.1557e-07
3.55938e-07
2.04475e-07
3.43497e-07
1.93808e-07
3.31032e-07
1.83562e-07
3.18624e-07
1.73729e-07
3.06322e-07
1.64303e-07
2.94161e-07
1.55279e-07
2.82168e-07
1.46649e-07
2.70386e-07
1.38403e-07
2.58865e-07
1.30526e-07
2.47648e-07
1.23004e-07
2.36755e-07
1.15828e-07
2.26186e-07
1.0899e-07
2.15957e-07
1.02475e-07
2.06128e-07
9.62622e-08
1.96733e-07
9.03309e-08
1.87686e-07
8.46674e-08
1.78906e-07
7.92581e-08
1.70345e-07
7.41096e-08
1.61874e-07
1.53238e-07
0.000251398
0.000248029
0.000239548
0.000310565
0.000225064
0.000384744
0.000207808
0.000456829
0.000188445
0.000510078
0.000167059
0.000563169
0.000144349
0.000602734
0.000120738
0.000632433
9.68489e-05
0.000650801
7.29083e-05
0.000659486
4.89329e-05
0.000660454
2.64309e-05
0.000647921
3.91532e-06
0.000635548
-1.73688e-05
0.000616958
-3.73338e-05
0.000587801
-5.60649e-05
0.000557879
-7.3115e-05
0.000522255
-8.87093e-05
0.000486457
-0.000102992
0.000450916
-0.000115773
0.000413753
-0.000127176
0.000377609
-0.000137332
0.000343459
-0.000146322
0.000310577
-0.000154351
0.000279825
-0.000161451
0.000251619
-0.000167887
0.000225855
-0.000173685
0.000202159
-0.000178939
0.000179781
-0.000183708
0.000158249
-0.000187992
0.000137535
-0.000191773
0.000116631
-0.000194949
9.50263e-05
-0.000197651
7.28046e-05
-0.000199474
4.91867e-05
-0.000200499
2.52812e-05
-0.000200766
-8.50565e-07
-0.00020029
-2.81518e-05
-0.000198794
-5.46775e-05
-0.000196497
-8.19602e-05
-0.000193131
-0.000112965
-0.00018873
-0.000140394
-0.000183835
-0.000171069
-0.000177834
-0.000199368
-0.00017079
-0.000228281
-0.000163051
-0.000261472
-0.000153942
-0.000291866
-0.0001437
-0.000320526
-0.000132504
-0.000354391
-0.000120346
-0.00038529
-0.000106849
-0.000414003
-9.24375e-05
-0.000447729
-7.67978e-05
-0.000473676
-6.01566e-05
-0.00050316
-4.26083e-05
-0.000529005
-2.39067e-05
-0.000546713
-4.44715e-06
-0.000566243
1.519e-05
-0.000580658
3.52683e-05
-0.000584515
5.572e-05
-0.000590088
7.62274e-05
-0.000586353
9.64369e-05
-0.000579764
0.000116136
-0.000571303
0.000135351
-0.00055123
0.000154026
-0.000528868
0.000172053
-0.000504545
0.000189003
-0.00046847
0.000204872
-0.000430912
0.000219411
-0.00038489
0.000232355
-0.000334285
0.000243622
-0.000278076
0.000252658
-0.0002113
0.000259287
-0.000139836
0.00026327
-6.26449e-05
0.000263842
2.26518e-05
0.000260827
0.000111115
0.000253849
0.000202028
0.000243182
0.000292008
0.000228862
0.00037815
0.000211182
0.000457355
0.000190839
0.00052683
0.000167884
0.000585604
0.000143329
0.000631288
0.000117701
0.000663669
9.16174e-05
0.000682666
6.56125e-05
0.000688587
4.02224e-05
0.000682244
1.59033e-05
0.000664961
-7.10918e-06
0.000638374
-2.83813e-05
0.000603663
-4.76752e-05
0.000562591
-6.48518e-05
0.000516858
-8.00124e-05
0.00047056
-9.33511e-05
0.000422814
-0.000104843
0.000375803
-0.000114577
0.000329264
-0.000122702
0.0002844
-0.000129233
0.000241799
-0.000134356
0.000202471
-0.000138329
0.000166456
-0.000141251
0.000133948
-0.000143292
0.000104703
-0.000144521
7.89152e-05
-0.0001453
5.70712e-05
-0.000145744
3.77739e-05
-0.000145898
2.03071e-05
-0.000145507
3.13663e-06
-0.000144901
-1.17614e-05
-0.000144002
-2.6787e-05
-0.000142641
-4.21548e-05
-0.000140883
-5.70504e-05
-0.000138679
-7.2158e-05
-0.000136075
-8.75254e-05
-0.00013298
-0.000103307
-0.000129487
-0.000119316
-0.000125406
-0.00013623
-0.000120876
-0.000153502
-0.000115764
-0.000171699
-0.000109966
-0.000190907
-0.000103488
-0.000210127
-9.6382e-05
-0.000230278
-8.84512e-05
-0.0002504
-8.00078e-05
-0.000270276
-7.08148e-05
-0.000290278
-6.08844e-05
-0.000309987
-5.02063e-05
-0.00032961
-3.87454e-05
-0.0003483
-2.65626e-05
-0.000365772
-1.36821e-05
-0.000381349
-2.56783e-07
-0.000394653
1.37645e-05
-0.000405241
2.81116e-05
-0.000412285
4.27292e-05
-0.000415549
5.73845e-05
-0.000414394
7.19517e-05
-0.000408957
8.63236e-05
-0.000398969
0.000100157
-0.000384079
0.000113447
-0.000364458
0.00012589
-0.000339576
0.000137294
-0.000309834
0.000147512
-0.000275618
0.000156286
-0.000237268
0.00016345
-0.000195199
0.000168994
-0.000150306
0.000172738
-0.000102936
0.000174647
-5.42224e-05
0.000174671
-5.00579e-06
0.000172871
4.37258e-05
0.000169291
9.12493e-05
0.000164004
0.000136854
0.000157103
0.000179784
0.000148712
0.000219287
0.00013901
0.000254748
0.000128164
0.000285516
0.000116424
0.000310964
0.000104001
0.000331011
9.11906e-05
0.000345236
7.82153e-05
0.000354075
6.52069e-05
0.000357686
5.23363e-05
0.000356395
3.98371e-05
0.000350638
2.78478e-05
0.000341034
1.64477e-05
0.000328119
5.73499e-06
0.000312355
-4.17912e-06
0.000294191
-1.33053e-05
0.000274271
-2.16147e-05
0.000253082
-2.90884e-05
0.000231021
-3.57327e-05
0.000208431
-4.15669e-05
0.000185607
-4.65653e-05
0.000162819
-5.07947e-05
0.000140333
-5.42653e-05
0.000118323
-5.70236e-05
9.69692e-05
-5.90962e-05
7.63735e-05
-6.05143e-05
5.65926e-05
-6.1312e-05
3.77257e-05
-6.15166e-05
1.98061e-05
-6.11567e-05
2.99958e-06
-6.03657e-05
-1.23744e-05
-5.9139e-05
-2.68306e-05
-5.74884e-05
-4.03875e-05
-5.5442e-05
-5.29867e-05
-5.3023e-05
-6.46213e-05
-5.02792e-05
-7.52596e-05
-4.72308e-05
-8.49165e-05
-4.39129e-05
-9.35665e-05
-4.03551e-05
-0.000101234
-3.66015e-05
-0.000107911
-3.26677e-05
-0.000113615
-2.85878e-05
-0.000118399
-2.43936e-05
-0.000122214
-2.01166e-05
-0.000125086
-1.57858e-05
-0.000127037
-1.14289e-05
-0.000128077
-7.07546e-06
-0.000128227
-2.77021e-06
-0.000127477
1.50062e-06
-0.000125915
5.66587e-06
-0.000123501
9.71469e-06
-0.000120323
1.36218e-05
-0.000116402
1.73623e-05
-0.000111799
2.09116e-05
-0.000106569
2.42571e-05
-0.000100782
2.73881e-05
-9.45147e-05
3.0272e-05
-8.77973e-05
3.29134e-05
-8.07152e-05
3.52979e-05
-7.33394e-05
3.74125e-05
-6.57359e-05
3.92628e-05
-5.79831e-05
4.08434e-05
-5.01341e-05
4.21425e-05
-4.22466e-05
4.31751e-05
-3.4447e-05
4.39435e-05
-2.67405e-05
4.44501e-05
-1.91985e-05
4.47067e-05
-1.19147e-05
4.4721e-05
-4.93297e-06
4.45206e-05
1.59981e-06
4.4129e-05
7.74779e-06
4.35499e-05
1.35415e-05
4.27941e-05
1.89407e-05
4.18777e-05
2.39275e-05
4.08058e-05
2.84739e-05
3.96061e-05
3.25528e-05
3.82963e-05
3.6164e-05
3.68799e-05
3.93047e-05
3.53908e-05
4.1964e-05
3.38379e-05
4.41717e-05
3.22316e-05
4.59208e-05
3.05959e-05
4.72469e-05
2.89439e-05
4.81614e-05
2.72767e-05
4.86994e-05
2.5623e-05
4.88751e-05
2.39764e-05
4.87287e-05
2.23609e-05
4.82722e-05
2.07775e-05
4.75485e-05
1.92355e-05
4.65803e-05
1.77455e-05
4.53987e-05
1.63017e-05
4.40354e-05
1.49236e-05
4.25092e-05
1.35994e-05
4.08597e-05
1.23474e-05
3.90967e-05
1.11539e-05
3.72629e-05
1.00347e-05
3.53636e-05
8.97642e-06
3.343e-05
7.99159e-06
3.14699e-05
7.06997e-06
2.95091e-05
6.21902e-06
2.7556e-05
5.42788e-06
2.56296e-05
4.70576e-06
2.37345e-05
4.03875e-06
2.18892e-05
3.43474e-06
2.00955e-05
2.88588e-06
1.83643e-05
2.39224e-06
1.66981e-05
1.94965e-06
1.51085e-05
1.55534e-06
1.35936e-05
1.20718e-06
1.21583e-05
9.01501e-07
1.08048e-05
6.35768e-07
9.53405e-06
4.07478e-07
8.34406e-06
2.12505e-07
7.23763e-06
5.07627e-08
6.21152e-06
-8.56468e-08
5.27153e-06
-1.935e-07
4.4023e-06
-2.77437e-07
3.60816e-06
-3.39897e-07
2.88583e-06
-3.83073e-07
2.23243e-06
-4.09157e-07
1.64561e-06
-4.20061e-07
1.12163e-06
-4.17372e-07
6.57429e-07
-4.03494e-07
2.53553e-07
-3.81253e-07
-9.23015e-08
-3.5142e-07
-3.91569e-07
-3.14816e-07
-6.49776e-07
-2.72276e-07
-8.67775e-07
-2.25306e-07
-1.04831e-06
-1.74703e-07
-1.19247e-06
-1.22314e-07
-1.30308e-06
-6.82323e-08
-1.38612e-06
-1.30744e-08
-1.43789e-06
4.05112e-08
-1.47248e-06
9.40139e-08
-1.48444e-06
1.46584e-07
-1.47927e-06
1.97642e-07
-1.45877e-06
2.46882e-07
-1.42481e-06
2.93983e-07
-1.37926e-06
3.38678e-07
-1.32383e-06
3.80756e-07
-1.26018e-06
4.20078e-07
-1.19003e-06
4.56566e-07
-1.1149e-06
4.90157e-07
-1.03605e-06
5.20825e-07
-9.54593e-07
5.48545e-07
-8.71223e-07
5.73351e-07
-7.86801e-07
5.95227e-07
-7.02001e-07
6.14215e-07
-6.17591e-07
6.30376e-07
-5.34331e-07
6.43803e-07
-4.5289e-07
6.54583e-07
-3.73686e-07
6.62812e-07
-2.97113e-07
6.68595e-07
-2.23461e-07
6.72055e-07
-1.53085e-07
6.73313e-07
-8.63057e-08
6.72503e-07
-2.36842e-08
6.70083e-07
3.17286e-08
6.65992e-07
8.53694e-08
6.60337e-07
1.35791e-07
6.53207e-07
1.82915e-07
6.44706e-07
2.26683e-07
6.34952e-07
2.66985e-07
6.24068e-07
3.03788e-07
6.12169e-07
3.37082e-07
5.9937e-07
3.66902e-07
5.85784e-07
3.93325e-07
5.7152e-07
4.16481e-07
5.56679e-07
4.36505e-07
5.41357e-07
4.53543e-07
5.25652e-07
4.67685e-07
5.09652e-07
4.79093e-07
4.93439e-07
4.87923e-07
4.7709e-07
4.94334e-07
4.60677e-07
4.98488e-07
4.44265e-07
5.00552e-07
4.27912e-07
5.00703e-07
4.11669e-07
4.99108e-07
3.95584e-07
4.95915e-07
3.79699e-07
4.91265e-07
3.64054e-07
4.85301e-07
3.48682e-07
4.7815e-07
3.33616e-07
4.69939e-07
3.18886e-07
4.60777e-07
3.04518e-07
4.50801e-07
2.90528e-07
4.40148e-07
2.76926e-07
4.28947e-07
2.63725e-07
4.17273e-07
2.50934e-07
4.05203e-07
2.3856e-07
3.92828e-07
2.26607e-07
3.80232e-07
2.15081e-07
3.67465e-07
2.03985e-07
3.54592e-07
1.9332e-07
3.41697e-07
1.83078e-07
3.28866e-07
1.7325e-07
3.16149e-07
1.63831e-07
3.0358e-07
1.54815e-07
2.91184e-07
1.46195e-07
2.79006e-07
1.3796e-07
2.671e-07
1.30095e-07
2.55513e-07
1.22586e-07
2.44265e-07
1.15422e-07
2.3335e-07
1.08597e-07
2.22782e-07
1.02097e-07
2.12628e-07
9.58992e-08
2.02931e-07
8.99818e-08
1.93603e-07
8.43299e-08
1.84558e-07
7.89273e-08
1.75748e-07
7.37788e-08
1.67022e-07
1.58021e-07
0.000254471
0.000257832
0.000242425
0.000322611
0.000227691
0.000399478
0.000210129
0.000474391
0.000190353
0.000529854
0.000168518
0.000585004
0.00014541
0.000625842
0.000121402
0.000656441
9.70901e-05
0.000675113
7.27074e-05
0.000683869
4.84743e-05
0.000684687
2.58816e-05
0.000670514
2.9802e-06
0.00065845
-1.84896e-05
0.000638428
-3.85669e-05
0.000607879
-5.7448e-05
0.00057676
-7.45426e-05
0.00053935
-9.01448e-05
0.000502059
-0.000104452
0.000465224
-0.000117185
0.000426486
-0.000128553
0.000388977
-0.000138605
0.000353511
-0.000147534
0.000319506
-0.000155493
0.000287784
-0.00016251
0.000258637
-0.000168853
0.000232197
-0.000174583
0.00020789
-0.000179794
0.000184992
-0.000184563
0.000163019
-0.00018885
0.000141821
-0.000192613
0.000120394
-0.000195826
9.82386e-05
-0.000198495
7.54737e-05
-0.000200448
5.11402e-05
-0.000201503
2.63362e-05
-0.000201776
-5.77695e-07
-0.000201389
-2.85391e-05
-0.000199893
-5.61735e-05
-0.00019761
-8.4243e-05
-0.000194279
-0.000116296
-0.000189781
-0.000144891
-0.000185013
-0.000175838
-0.000179031
-0.000205349
-0.000171909
-0.000235403
-0.000164251
-0.00026913
-0.000155053
-0.000301063
-0.000145067
-0.000330512
-0.000133783
-0.000365675
-0.000121654
-0.000397419
-0.000108046
-0.000427611
-9.3627e-05
-0.000462148
-7.78263e-05
-0.000489476
-6.11293e-05
-0.000519857
-4.36441e-05
-0.00054649
-2.47625e-05
-0.000565594
-4.94673e-06
-0.000586058
1.47741e-05
-0.000600378
3.50177e-05
-0.000604759
5.56619e-05
-0.000610732
7.61961e-05
-0.000606887
9.67836e-05
-0.000600351
0.000116791
-0.00059131
0.000136162
-0.000570601
0.000155057
-0.000547764
0.000173218
-0.000522705
0.000190347
-0.0004856
0.000206413
-0.000446978
0.000221156
-0.000399633
0.000234405
-0.000347533
0.000246013
-0.000289684
0.000255474
-0.000220761
0.000262392
-0.000146754
0.0002664
-6.66531e-05
0.000267009
2.20436e-05
0.000264135
0.000113988
0.000257352
0.000208811
0.000246531
0.000302829
0.000231898
0.000392783
0.0002139
0.000475354
0.000192864
0.000547865
0.000169445
0.000609023
0.000144352
0.000656381
0.000118258
0.000689763
9.16881e-05
0.000709236
6.52417e-05
0.000715033
3.95436e-05
0.000707942
1.47691e-05
0.000689735
-8.65646e-06
0.000661799
-3.01996e-05
0.000625206
-4.9611e-05
0.000582002
-6.68782e-05
0.000534125
-8.19858e-05
0.000485667
-9.53419e-05
0.00043617
-0.000106772
0.000387233
-0.000116337
0.000338829
-0.000124278
0.000292341
-0.000130659
0.000248179
-0.000135589
0.000207401
-0.000139399
0.000170266
-0.000142137
0.000136686
-0.00014399
0.000106556
-0.000145068
7.99932e-05
-0.000145723
5.77267e-05
-0.00014608
3.81302e-05
-0.000146202
2.04297e-05
-0.000145757
2.69167e-06
-0.000145117
-1.24016e-05
-0.000144249
-2.76546e-05
-0.000142934
-4.347e-05
-0.000141189
-5.87961e-05
-0.000139057
-7.42898e-05
-0.000136501
-9.00808e-05
-0.000133397
-0.000106411
-0.000129993
-0.00012272
-0.00012601
-0.000140214
-0.000121445
-0.000158067
-0.000116439
-0.000176705
-0.000110696
-0.00019665
-0.000104301
-0.000216523
-9.71755e-05
-0.000237404
-8.93086e-05
-0.000258267
-8.07972e-05
-0.000278787
-7.16435e-05
-0.000299432
-6.16765e-05
-0.000319954
-5.09908e-05
-0.000340296
-3.94662e-05
-0.000359825
-2.72379e-05
-0.000378
-1.43187e-05
-0.000394268
-7.26591e-07
-0.000408245
1.33962e-05
-0.000419364
2.79979e-05
-0.000426886
4.27314e-05
-0.000430282
5.75529e-05
-0.000429216
7.23027e-05
-0.000423707
8.68247e-05
-0.000413491
0.000100903
-0.000398158
0.00011439
-0.000377945
0.000127026
-0.000352212
0.000138589
-0.000321396
0.000148922
-0.000285952
0.000157839
-0.000246184
0.000165248
-0.000202609
0.000170813
-0.00015587
0.000174593
-0.000106717
0.000176508
-5.61373e-05
0.000176505
-5.0029e-06
0.000174662
4.55689e-05
0.000171007
9.49043e-05
0.000165626
0.000142235
0.0001586
0.000186811
0.000150068
0.000227819
0.000140186
0.000264629
0.000129148
0.000296554
0.000117225
0.000322886
0.000104652
0.000343585
9.15325e-05
0.000358355
7.82732e-05
0.000367334
6.50415e-05
0.000370918
5.20298e-05
0.000369406
3.94195e-05
0.000363249
2.73114e-05
0.000353142
1.58101e-05
0.000339621
5.00537e-06
0.00032316
-4.97709e-06
0.000304173
-1.41515e-05
0.000283445
-2.24876e-05
0.000261418
-2.9978e-05
0.000238511
-3.66338e-05
0.000215086
-4.24581e-05
0.000191431
-4.74564e-05
0.000167817
-5.16592e-05
0.000144536
-5.5112e-05
0.000121775
-5.78374e-05
9.96945e-05
-5.98718e-05
7.8408e-05
-6.12601e-05
5.79809e-05
-6.20218e-05
3.84874e-05
-6.21782e-05
1.99626e-05
-6.17584e-05
2.57975e-06
-6.09378e-05
-1.3195e-05
-5.96751e-05
-2.80932e-05
-5.79847e-05
-4.20779e-05
-5.58994e-05
-5.5072e-05
-5.34478e-05
-6.70728e-05
-5.06616e-05
-7.80459e-05
-4.75721e-05
-8.8006e-05
-4.42117e-05
-9.69269e-05
-4.06244e-05
-0.000104821
-3.68421e-05
-0.000111693
-3.28558e-05
-0.000117601
-2.87395e-05
-0.000122515
-2.45089e-05
-0.000126444
-2.01957e-05
-0.000129399
-1.58239e-05
-0.000131409
-1.14367e-05
-0.000132464
-7.04999e-06
-0.000132614
-2.69697e-06
-0.00013183
1.59269e-06
-0.000130205
5.78896e-06
-0.000127698
9.87345e-06
-0.000124407
1.38004e-05
-0.000120329
1.75651e-05
-0.000115564
2.11389e-05
-0.000110143
2.45088e-05
-0.000104152
2.76458e-05
-9.76517e-05
3.05512e-05
-9.07026e-05
3.32031e-05
-8.33671e-05
3.55939e-05
-7.57302e-05
3.77229e-05
-6.7865e-05
3.95726e-05
-5.98328e-05
4.11487e-05
-5.17102e-05
4.24461e-05
-4.35441e-05
4.34777e-05
-3.54786e-05
4.42445e-05
-2.75073e-05
4.47393e-05
-1.96933e-05
4.49794e-05
-1.21548e-05
4.49718e-05
-4.9254e-06
4.47617e-05
1.80985e-06
4.43584e-05
8.15117e-06
4.37678e-05
1.4132e-05
4.29904e-05
1.97181e-05
4.20514e-05
2.48665e-05
4.09659e-05
2.95595e-05
3.97504e-05
3.37683e-05
3.84147e-05
3.74997e-05
3.69897e-05
4.07297e-05
3.54767e-05
4.34769e-05
3.39027e-05
4.57457e-05
3.22848e-05
4.75387e-05
3.06329e-05
4.88988e-05
2.89604e-05
4.98339e-05
2.72883e-05
5.03715e-05
2.56127e-05
5.05507e-05
2.39616e-05
5.03798e-05
2.23313e-05
4.99025e-05
2.07393e-05
4.91406e-05
1.91921e-05
4.81275e-05
1.76878e-05
4.6903e-05
1.62458e-05
4.54773e-05
1.48548e-05
4.39002e-05
1.35341e-05
4.21804e-05
1.22714e-05
4.03594e-05
1.10831e-05
3.84513e-05
9.955e-06
3.64918e-05
8.90319e-06
3.44818e-05
7.91224e-06
3.24609e-05
6.99675e-06
3.04246e-05
6.14043e-06
2.84123e-05
5.35688e-06
2.64131e-05
4.63e-06
2.44613e-05
3.96878e-06
2.25504e-05
3.36641e-06
2.06978e-05
2.82009e-06
1.89106e-05
2.3311e-06
1.71871e-05
1.88958e-06
1.555e-05
1.50092e-06
1.39823e-05
1.15343e-06
1.25058e-05
8.53301e-07
1.11049e-05
5.886e-07
9.79875e-06
3.64889e-07
8.56777e-06
1.71972e-07
7.43055e-06
1.1328e-08
6.37217e-06
-1.19969e-07
5.40282e-06
-2.24801e-07
4.50713e-06
-3.05906e-07
3.68926e-06
-3.65635e-07
2.94556e-06
-4.06192e-07
2.27299e-06
-4.29785e-07
1.6692e-06
-4.38339e-07
1.13018e-06
-4.33276e-07
6.52366e-07
-4.17117e-07
2.37394e-07
-3.9306e-07
-1.16358e-07
-3.61595e-07
-4.23034e-07
-3.23429e-07
-6.87942e-07
-2.79385e-07
-9.11819e-07
-2.31008e-07
-1.09669e-06
-1.79084e-07
-1.24439e-06
-1.2554e-07
-1.35662e-06
-7.04175e-08
-1.44124e-06
-1.43952e-08
-1.49391e-06
4.00152e-08
-1.52689e-06
9.41761e-08
-1.5386e-06
1.47373e-07
-1.53247e-06
1.98963e-07
-1.51036e-06
2.48649e-07
-1.47449e-06
2.96125e-07
-1.42674e-06
3.41128e-07
-1.36884e-06
3.83451e-07
-1.30251e-06
4.22962e-07
-1.22954e-06
4.59591e-07
-1.15153e-06
4.9329e-07
-1.06975e-06
5.24034e-07
-9.85337e-07
5.51809e-07
-8.98999e-07
5.76616e-07
-8.11607e-07
5.98472e-07
-7.23856e-07
6.17421e-07
-6.3654e-07
6.33528e-07
-5.50438e-07
6.46884e-07
-4.66246e-07
6.57572e-07
-3.84375e-07
6.65689e-07
-3.0523e-07
6.71343e-07
-2.29115e-07
6.74663e-07
-1.56404e-07
6.75767e-07
-8.74101e-08
6.74784e-07
-2.27004e-08
6.7223e-07
3.42825e-08
6.68004e-07
8.95949e-08
6.62212e-07
1.41583e-07
6.54941e-07
1.90186e-07
6.46296e-07
2.35328e-07
6.36401e-07
2.76881e-07
6.25377e-07
3.14811e-07
6.13344e-07
3.49115e-07
6.00414e-07
3.79832e-07
5.867e-07
4.07039e-07
5.72311e-07
4.3087e-07
5.5735e-07
4.51466e-07
5.41914e-07
4.68979e-07
5.261e-07
4.83499e-07
5.09999e-07
4.95194e-07
4.93691e-07
5.04231e-07
4.77253e-07
5.10773e-07
4.60758e-07
5.14984e-07
4.44271e-07
5.17039e-07
4.2785e-07
5.17124e-07
4.11544e-07
5.15414e-07
3.95401e-07
5.12058e-07
3.79464e-07
5.07201e-07
3.63773e-07
5.00993e-07
3.48359e-07
4.93563e-07
3.33256e-07
4.85042e-07
3.18494e-07
4.75538e-07
3.04099e-07
4.65196e-07
2.90087e-07
4.5416e-07
2.76467e-07
4.42567e-07
2.6325e-07
4.3049e-07
2.50448e-07
4.18005e-07
2.38065e-07
4.05211e-07
2.26105e-07
3.92191e-07
2.14574e-07
3.78996e-07
2.03478e-07
3.65689e-07
1.92815e-07
3.52359e-07
1.82577e-07
3.39104e-07
1.72756e-07
3.25971e-07
1.63343e-07
3.12992e-07
1.54336e-07
3.00191e-07
1.45726e-07
2.87616e-07
1.37504e-07
2.75323e-07
1.29651e-07
2.63365e-07
1.22153e-07
2.51762e-07
1.15002e-07
2.40501e-07
1.08191e-07
2.29593e-07
1.01707e-07
2.19111e-07
9.55248e-08
2.09113e-07
8.96221e-08
1.99506e-07
8.39826e-08
1.90197e-07
7.85865e-08
1.81144e-07
7.34354e-08
1.72173e-07
1.6278e-07
0.00025766
0.000267852
0.000245371
0.0003349
0.000230388
0.000414461
0.00021254
0.00049224
0.000192353
0.000550041
0.000170024
0.000607332
0.000146506
0.000649361
0.000121975
0.000680972
9.71887e-05
0.000699899
7.2609e-05
0.000708448
4.80968e-05
0.0007092
2.54449e-05
0.000693166
2.05553e-06
0.000681839
-1.96598e-05
0.000660143
-3.98418e-05
0.00062806
-5.88841e-05
0.000595802
-7.60122e-05
0.000556478
-9.16173e-05
0.000517664
-0.000105944
0.000479551
-0.000118633
0.000439174
-0.000129914
0.000400259
-0.00013991
0.000363508
-0.000148737
0.000328332
-0.000156621
0.000295668
-0.000163513
0.000265529
-0.000169755
0.000238439
-0.000175412
0.000213547
-0.000180562
0.000190142
-0.000185318
0.000167774
-0.000189549
0.000146052
-0.000193306
0.000124152
-0.000196571
0.000101503
-0.000199211
7.81133e-05
-0.000201251
5.31808e-05
-0.000202292
2.73774e-05
-0.00020253
-3.40263e-07
-0.000202245
-2.88231e-05
-0.000200779
-5.76379e-05
-0.000198544
-8.64763e-05
-0.000195298
-0.000119539
-0.000190685
-0.000149502
-0.000186081
-0.000180441
-0.00018013
-0.000211299
-0.000172954
-0.000242579
-0.000165469
-0.000276615
-0.000156147
-0.000310384
-0.000146151
-0.000340508
-0.000135155
-0.00037667
-0.000122986
-0.000409587
-0.000109248
-0.000441348
-9.48609e-05
-0.000476535
-7.89302e-05
-0.000505406
-6.2016e-05
-0.000536771
-4.45106e-05
-0.000563996
-2.56784e-05
-0.000584427
-5.51026e-06
-0.000606226
1.434e-05
-0.000620228
3.47899e-05
-0.000625209
5.56528e-05
-0.000631595
7.63628e-05
-0.000627597
9.72561e-05
-0.000621245
0.0001175
-0.000611554
0.000137064
-0.000590165
0.000156236
-0.000566936
0.00017454
-0.00054101
0.000191865
-0.000502924
0.000208116
-0.00046323
0.000223068
-0.000414585
0.000236516
-0.000360981
0.000248355
-0.000301524
0.000257964
-0.00023037
0.000265011
-0.000153801
0.000269133
-7.07757e-05
0.00026986
2.13166e-05
0.000267114
0.000116734
0.000260187
0.000215738
0.000249193
0.000313823
0.000234375
0.000407601
0.000215963
0.000493765
0.000194673
0.000569155
0.000170963
0.000632734
0.000145449
0.000681895
0.000119003
0.000716208
9.19396e-05
0.0007363
6.51219e-05
0.000741851
3.86461e-05
0.000734417
1.34516e-05
0.00071493
-1.01491e-05
0.0006854
-3.18946e-05
0.000646951
-5.14003e-05
0.000601508
-6.86631e-05
0.000551388
-8.37106e-05
0.000500714
-9.68707e-05
0.00044933
-0.000108089
0.000398451
-0.000117478
0.000348218
-0.000125138
0.000300001
-0.000131231
0.000254271
-0.000135931
0.000212101
-0.00013958
0.000173915
-0.000142129
0.000139234
-0.000143802
0.000108229
-0.000144676
8.08674e-05
-0.000145209
5.82599e-05
-0.000145474
3.83955e-05
-0.000145547
2.05023e-05
-0.000145066
2.21124e-06
-0.000144421
-1.30467e-05
-0.000143568
-2.85074e-05
-0.000142362
-4.46764e-05
-0.000140786
-6.0372e-05
-0.000138666
-7.64097e-05
-0.00013621
-9.25369e-05
-0.000133286
-0.000109335
-0.000129918
-0.000126088
-0.000126054
-0.000144078
-0.000121652
-0.000162469
-0.000116703
-0.000181654
-0.000111082
-0.000202271
-0.000104791
-0.000222814
-9.77386e-05
-0.000244456
-8.99354e-05
-0.00026607
-8.14544e-05
-0.000287268
-7.23635e-05
-0.000308523
-6.24686e-05
-0.000329849
-5.17526e-05
-0.000351012
-4.02436e-05
-0.000371334
-2.79248e-05
-0.000390319
-1.49397e-05
-0.000407253
-1.21967e-06
-0.000421965
1.30298e-05
-0.000433613
2.77241e-05
-0.000441581
4.27598e-05
-0.000445318
5.76985e-05
-0.000444154
7.26241e-05
-0.000438632
8.73355e-05
-0.000428203
0.000101718
-0.00041254
0.000115366
-0.000391593
0.000128221
-0.000365068
0.000139994
-0.000333169
0.000150526
-0.000296485
0.000159619
-0.000255277
0.000167118
-0.000210108
0.000172939
-0.000161691
0.000176849
-0.000110627
0.000178781
-5.80692e-05
0.000178748
-4.96978e-06
0.000176841
4.74762e-05
0.000173091
9.86539e-05
0.000167569
0.000147757
0.000160376
0.000194004
0.000151656
0.000236539
0.000141569
0.000274716
0.000130343
0.000307781
0.000118053
0.000335177
0.000105137
0.0003565
9.18494e-05
0.000371642
7.83863e-05
0.000380797
6.49593e-05
0.000384345
5.17744e-05
0.000382591
3.90136e-05
0.000376009
2.67761e-05
0.000365379
1.51639e-05
0.000351233
4.26871e-06
0.000334055
-5.79665e-06
0.000314238
-1.50144e-05
0.000292663
-2.3388e-05
0.000269792
-3.09032e-05
0.000246026
-3.75659e-05
0.000221749
-4.33825e-05
0.000197248
-4.83664e-05
0.000172801
-5.25587e-05
0.000148728
-5.59797e-05
0.000125196
-5.86676e-05
0.000102382
-6.06791e-05
8.04195e-05
-6.20256e-05
5.93273e-05
-6.27452e-05
3.9207e-05
-6.28574e-05
2.00748e-05
-6.23813e-05
2.10363e-06
-6.1521e-05
-1.40552e-05
-6.0219e-05
-2.93953e-05
-5.8495e-05
-4.38019e-05
-5.63708e-05
-5.71962e-05
-5.38774e-05
-6.95663e-05
-5.10467e-05
-8.08766e-05
-4.79225e-05
-9.11302e-05
-4.45265e-05
-0.000100323
-4.08953e-05
-0.000108452
-3.70616e-05
-0.000115527
-3.30495e-05
-0.000121613
-2.88941e-05
-0.000126671
-2.46267e-05
-0.000130711
-2.02709e-05
-0.000133755
-1.58714e-05
-0.000135808
-1.14444e-05
-0.000136891
-7.03618e-06
-0.000137022
-2.63295e-06
-0.000136234
1.68992e-06
-0.000134528
5.92249e-06
-0.00013193
1.00268e-05
-0.000128512
1.39867e-05
-0.000124289
1.77834e-05
-0.000119361
2.13735e-05
-0.000113733
2.47581e-05
-0.000107537
2.79218e-05
-0.000100815
3.08381e-05
-9.36189e-05
3.3502e-05
-8.6031e-05
3.59086e-05
-7.81369e-05
3.8032e-05
-6.99884e-05
3.98898e-05
-6.16906e-05
4.147e-05
-5.32904e-05
4.27692e-05
-4.48433e-05
4.37923e-05
-3.65016e-05
4.45468e-05
-2.82618e-05
4.50323e-05
-2.01788e-05
4.52634e-05
-1.23858e-05
4.52409e-05
-4.90296e-06
4.50144e-05
2.03636e-06
4.45923e-05
8.57332e-06
4.39816e-05
1.47428e-05
4.31918e-05
2.05079e-05
4.22368e-05
2.58215e-05
4.1132e-05
3.06643e-05
3.98944e-05
3.50059e-05
3.85471e-05
3.8847e-05
3.70925e-05
4.21843e-05
3.5566e-05
4.50034e-05
3.39785e-05
4.73332e-05
3.23373e-05
4.918e-05
3.06683e-05
5.05678e-05
2.89865e-05
5.15157e-05
2.72907e-05
5.20673e-05
2.56108e-05
5.22306e-05
2.39397e-05
5.20509e-05
2.23038e-05
5.15384e-05
2.06994e-05
5.07449e-05
1.91411e-05
4.96858e-05
1.76349e-05
4.84092e-05
1.61797e-05
4.69325e-05
1.47898e-05
4.52901e-05
1.34585e-05
4.35117e-05
1.21991e-05
4.16187e-05
1.10022e-05
3.96482e-05
9.87981e-06
3.76142e-05
8.81998e-06
3.55416e-05
7.83603e-06
3.34448e-05
6.91394e-06
3.13467e-05
6.06424e-06
2.9262e-05
5.27691e-06
2.72005e-05
4.5551e-06
2.51832e-05
3.89668e-06
2.32088e-05
3.29545e-06
2.12991e-05
2.75572e-06
1.94503e-05
2.26491e-06
1.76779e-05
1.83134e-06
1.59835e-05
1.44049e-06
1.43731e-05
1.10174e-06
1.28446e-05
7.99705e-07
1.14069e-05
5.43644e-07
1.00548e-05
3.18528e-07
8.79289e-06
1.33876e-07
7.6152e-06
-2.72556e-08
6.5333e-06
-1.55311e-07
5.53088e-06
-2.57038e-07
4.60885e-06
-3.35207e-07
3.76743e-06
-3.92129e-07
3.00248e-06
-4.30043e-07
2.31091e-06
-4.51005e-07
1.69016e-06
-4.57153e-07
1.13633e-06
-4.49618e-07
6.44831e-07
-4.31046e-07
2.18821e-07
-4.05156e-07
-1.42248e-07
-3.72035e-07
-4.56155e-07
-3.32268e-07
-7.27709e-07
-2.86674e-07
-9.57413e-07
-2.36838e-07
-1.14652e-06
-1.83798e-07
-1.29743e-06
-1.28793e-07
-1.41163e-06
-7.26183e-08
-1.49741e-06
-1.566e-08
-1.55087e-06
3.9535e-08
-1.58209e-06
9.43811e-08
-1.59344e-06
1.48198e-07
-1.58628e-06
2.00366e-07
-1.56253e-06
2.50511e-07
-1.52464e-06
2.98366e-07
-1.4746e-06
3.43683e-07
-1.41415e-06
3.86256e-07
-1.34508e-06
4.2596e-07
-1.26924e-06
4.62736e-07
-1.1883e-06
4.96543e-07
-1.10355e-06
5.2736e-07
-1.01615e-06
5.55176e-07
-9.26815e-07
5.79988e-07
-8.36419e-07
6.01823e-07
-7.45691e-07
6.20732e-07
-6.55449e-07
6.36784e-07
-5.6649e-07
6.50068e-07
-4.7953e-07
6.60662e-07
-3.94969e-07
6.68662e-07
-3.1323e-07
6.74179e-07
-2.34633e-07
6.77351e-07
-1.59576e-07
6.78295e-07
-8.83543e-08
6.77154e-07
-2.15591e-08
6.74444e-07
3.69923e-08
6.70081e-07
9.3958e-08
6.64148e-07
1.47516e-07
6.5673e-07
1.97604e-07
6.47936e-07
2.44123e-07
6.37892e-07
2.86924e-07
6.26727e-07
3.25976e-07
6.14555e-07
3.61287e-07
6.01489e-07
3.92898e-07
5.87643e-07
4.20886e-07
5.73125e-07
4.45387e-07
5.5804e-07
4.66551e-07
5.42486e-07
4.84534e-07
5.2656e-07
4.99425e-07
5.10354e-07
5.114e-07
4.93948e-07
5.20637e-07
4.77418e-07
5.27303e-07
4.60838e-07
5.31564e-07
4.44274e-07
5.33602e-07
4.27783e-07
5.33616e-07
4.11412e-07
5.31785e-07
3.9521e-07
5.2826e-07
3.7922e-07
5.2319e-07
3.63481e-07
5.16733e-07
3.48024e-07
5.0902e-07
3.32882e-07
5.00184e-07
3.18087e-07
4.90333e-07
3.03665e-07
4.79618e-07
2.89631e-07
4.68194e-07
2.75992e-07
4.56205e-07
2.6276e-07
4.43722e-07
2.49945e-07
4.3082e-07
2.37553e-07
4.17603e-07
2.25586e-07
4.04158e-07
2.14051e-07
3.90531e-07
2.02953e-07
3.76786e-07
1.92293e-07
3.6302e-07
1.82061e-07
3.49336e-07
1.72245e-07
3.35787e-07
1.6284e-07
3.22397e-07
1.53841e-07
3.0919e-07
1.45242e-07
2.96214e-07
1.37032e-07
2.83533e-07
1.29193e-07
2.71205e-07
1.21708e-07
2.59247e-07
1.14569e-07
2.4764e-07
1.07772e-07
2.3639e-07
1.01305e-07
2.25578e-07
9.5139e-08
2.15279e-07
8.92518e-08
2.05393e-07
8.36255e-08
1.95823e-07
7.82361e-08
1.86534e-07
7.30789e-08
1.77331e-07
1.67513e-07
0.000260971
0.000278103
0.000248428
0.000347443
0.000233189
0.0004297
0.000215093
0.000510336
0.000194455
0.00057068
0.000171569
0.000630218
0.000147497
0.000673433
0.000122611
0.000705858
9.74163e-05
0.000725093
7.25983e-05
0.000733266
4.79429e-05
0.000733855
2.52587e-05
0.00071585
1.13293e-06
0.000705965
-2.08247e-05
0.000682101
-4.10764e-05
0.000648312
-6.02376e-05
0.000614963
-7.73677e-05
0.000573608
-9.28972e-05
0.000533194
-0.000107195
0.000493849
-0.000119795
0.000451773
-0.000130915
0.000411379
-0.00014077
0.000373363
-0.000149438
0.000337
-0.000157118
0.000303349
-0.000163823
0.000272233
-0.000169843
0.00024446
-0.000175312
0.000219015
-0.000180277
0.000195108
-0.000184868
0.000172365
-0.000188982
0.000150167
-0.000192534
0.000127703
-0.000195708
0.000104677
-0.000198119
8.05241e-05
-0.000200203
5.52636e-05
-0.000201151
2.83254e-05
-0.000201197
-2.69532e-07
-0.000201098
-2.8864e-05
-0.000199764
-5.89068e-05
-0.000197578
-8.85983e-05
-0.000194667
-0.000122415
-0.000190136
-0.000154023
-0.000185938
-0.000184617
-0.000180253
-0.000216949
-0.000173147
-0.000249648
-0.000166091
-0.000283655
-0.000156818
-0.000319642
-0.000146834
-0.000350476
-0.000136272
-0.00038721
-0.000124161
-0.000421678
-0.000110305
-0.000455195
-9.6025e-05
-0.000490808
-8.00241e-05
-0.0005214
-6.29238e-05
-0.000553867
-4.5454e-05
-0.000581463
-2.63555e-05
-0.000603523
-6.29019e-06
-0.000626291
1.40309e-05
-0.000640549
3.46083e-05
-0.000645786
5.56601e-05
-0.000652647
7.65337e-05
-0.000648471
9.76106e-05
-0.000642322
0.00011812
-0.000632063
0.00013788
-0.000609925
0.000157377
-0.000586432
0.000175978
-0.000559612
0.000193606
-0.000520552
0.000210285
-0.000479909
0.00022545
-0.00042975
0.000239398
-0.000374929
0.000251342
-0.000313469
0.000261097
-0.000240125
0.000268562
-0.000161265
0.0002733
-7.55131e-05
0.000274268
2.0348e-05
0.000271808
0.000119195
0.000265021
0.000222525
0.000253991
0.000324853
0.000239052
0.00042254
0.000220272
0.000512546
0.000198618
0.000590809
0.00017425
0.000657101
0.000147865
0.00070828
0.000120519
0.000743554
9.2536e-05
0.000764282
6.47878e-05
0.000769599
3.78153e-05
0.00076139
1.22394e-05
0.000740505
-1.14712e-05
0.000709111
-3.3139e-05
0.000668619
-5.24619e-05
0.000620831
-6.94833e-05
0.000568409
-8.41886e-05
0.00051542
-9.70666e-05
0.000462208
-0.000107997
0.000409382
-0.000117136
0.000357356
-0.000124502
0.000307368
-0.000130207
0.000259975
-0.000134613
0.000216507
-0.000137814
0.000177115
-0.000139952
0.000141372
-0.000141195
0.000109472
-0.000141804
8.14756e-05
-0.000142004
5.84597e-05
-0.00014213
3.8521e-05
-0.000142082
2.04542e-05
-0.000141604
1.73375e-06
-0.000140939
-1.37117e-05
-0.000140127
-2.93195e-05
-0.000139229
-4.55739e-05
-0.000137901
-6.16992e-05
-0.00013602
-7.829e-05
-0.000133787
-9.47689e-05
-0.000131152
-0.00011197
-0.000127997
-0.000129242
-0.000124399
-0.000147677
-0.000120304
-0.000166563
-0.000115598
-0.000186361
-0.000110274
-0.000207595
-0.000104246
-0.000228842
-9.7439e-05
-0.000251262
-8.98433e-05
-0.000273666
-8.16232e-05
-0.000295488
-7.26395e-05
-0.000317506
-6.29386e-05
-0.000339549
-5.23078e-05
-0.000361643
-4.08479e-05
-0.000382793
-2.84985e-05
-0.000402668
-1.54828e-05
-0.000420269
-1.60133e-06
-0.000435847
1.27155e-05
-0.00044793
2.75658e-05
-0.000456431
4.27322e-05
-0.000460484
5.79742e-05
-0.000459396
7.29996e-05
-0.000453657
8.78632e-05
-0.000443066
0.000102327
-0.000427004
0.000116252
-0.000405517
0.000129206
-0.000378022
0.000141091
-0.000345054
0.00015171
-0.000307104
0.000160886
-0.000264453
0.000168463
-0.000217685
0.000174295
-0.000167524
0.00017821
-0.000114541
0.000180172
-6.00319e-05
0.000180139
-4.93646e-06
0.000178208
4.94073e-05
0.000174405
0.000102457
0.000168834
0.000153328
0.000161572
0.000201266
0.000152702
0.000245409
0.000142449
0.000284969
0.000131009
0.000319221
0.000118634
0.000347551
0.000105569
0.000369566
9.21141e-05
0.000385097
7.8482e-05
0.000394429
6.48932e-05
0.000397934
5.15426e-05
0.000395942
3.86369e-05
0.000388915
2.62748e-05
0.000377741
1.45706e-05
0.000362937
3.62021e-06
0.000345006
-6.64286e-06
0.000324501
-1.59225e-05
0.000301943
-2.43334e-05
0.000278203
-3.187e-05
0.000253563
-3.85383e-05
0.000228417
-4.43451e-05
0.000203055
-4.93213e-05
0.000177777
-5.3482e-05
0.000152889
-5.68674e-05
0.000128582
-5.95248e-05
0.00010504
-6.14912e-05
8.23858e-05
-6.27933e-05
6.06294e-05
-6.3479e-05
3.98928e-05
-6.35439e-05
2.01396e-05
-6.29948e-05
1.55448e-06
-6.20971e-05
-1.49529e-05
-6.07669e-05
-3.07254e-05
-5.89964e-05
-4.55724e-05
-5.68337e-05
-5.93589e-05
-5.43012e-05
-7.20988e-05
-5.14365e-05
-8.37413e-05
-4.82696e-05
-9.4297e-05
-4.48301e-05
-0.000103762
-4.11656e-05
-0.000112117
-3.72904e-05
-0.000119402
-3.32395e-05
-0.000125664
-2.90485e-05
-0.000130862
-2.474e-05
-0.00013502
-2.03534e-05
-0.000138141
-1.59119e-05
-0.00014025
-1.1448e-05
-0.000141355
-6.99044e-06
-0.00014148
-2.56327e-06
-0.000140661
1.79308e-06
-0.000138884
6.05262e-06
-0.00013619
1.01951e-05
-0.000132654
1.41838e-05
-0.000128278
1.79982e-05
-0.000123175
2.16157e-05
-0.00011735
2.50281e-05
-0.000110949
2.8201e-05
-0.000103988
3.1136e-05
-9.6554e-05
3.38145e-05
-8.87095e-05
3.62226e-05
-8.0545e-05
3.83588e-05
-7.21246e-05
4.02261e-05
-6.35579e-05
4.1802e-05
-5.48663e-05
4.30907e-05
-4.61319e-05
4.41147e-05
-3.75257e-05
4.48651e-05
-2.90122e-05
4.53449e-05
-2.06585e-05
4.55582e-05
-1.25992e-05
4.55097e-05
-4.85441e-06
4.52678e-05
2.27829e-06
4.48349e-05
9.00622e-06
4.42125e-05
1.53651e-05
4.34046e-05
2.13158e-05
4.24266e-05
2.67996e-05
4.13022e-05
3.17886e-05
4.00477e-05
3.62604e-05
3.8673e-05
4.02217e-05
3.72088e-05
4.36485e-05
3.56575e-05
4.65547e-05
3.4046e-05
4.89447e-05
3.23924e-05
5.08335e-05
3.07076e-05
5.22527e-05
2.90033e-05
5.32199e-05
2.7302e-05
5.37686e-05
2.5599e-05
5.39337e-05
2.39242e-05
5.37257e-05
2.22702e-05
5.31924e-05
2.06581e-05
5.2357e-05
1.90914e-05
5.12525e-05
1.75741e-05
4.99265e-05
1.61161e-05
4.83905e-05
1.47176e-05
4.66885e-05
1.3385e-05
4.48444e-05
1.21193e-05
4.28845e-05
1.09232e-05
4.08442e-05
9.79481e-06
3.87426e-05
8.73989e-06
3.65965e-05
7.75002e-06
3.44347e-05
6.8334e-06
3.22633e-05
5.98149e-06
3.01139e-05
5.19746e-06
2.79845e-05
4.48026e-06
2.59004e-05
3.82021e-06
2.38689e-05
3.22629e-06
2.1893e-05
2.68267e-06
1.99939e-05
2.19999e-06
1.81606e-05
1.76479e-06
1.64187e-05
1.38158e-06
1.47563e-05
1.04207e-06
1.31841e-05
7.47576e-07
1.17014e-05
4.90868e-07
1.03115e-05
2.73444e-07
9.01031e-06
8.76641e-08
7.80098e-06
-6.69176e-08
6.68788e-06
-1.91669e-07
5.65563e-06
-2.90193e-07
4.70738e-06
-3.65341e-07
3.84258e-06
-4.19378e-07
3.05652e-06
-4.54445e-07
2.34597e-06
-4.72807e-07
1.70852e-06
-4.76497e-07
1.14002e-06
-4.66394e-07
6.34728e-07
-4.4525e-07
1.97678e-07
-4.17531e-07
-1.69968e-07
-3.82738e-07
-4.90947e-07
-3.41317e-07
-7.69131e-07
-2.94127e-07
-1.0046e-06
-2.42797e-07
-1.19785e-06
-1.88487e-07
-1.35174e-06
-1.32061e-07
-1.46805e-06
-7.4837e-08
-1.55464e-06
-1.68608e-08
-1.60885e-06
3.90745e-08
-1.63802e-06
9.46296e-08
-1.649e-06
1.49076e-07
-1.64073e-06
2.01827e-07
-1.61528e-06
2.52469e-07
-1.57528e-06
3.00711e-07
-1.52284e-06
3.46343e-07
-1.45978e-06
3.89169e-07
-1.38791e-06
4.29072e-07
-1.30914e-06
4.65999e-07
-1.22523e-06
4.99917e-07
-1.13747e-06
5.30805e-07
-1.04704e-06
5.58657e-07
-9.54666e-07
5.8347e-07
-8.61233e-07
6.0528e-07
-7.67501e-07
6.24142e-07
-6.7431e-07
6.40142e-07
-5.8249e-07
6.53355e-07
-4.92744e-07
6.63854e-07
-4.05467e-07
6.71729e-07
-3.21105e-07
6.77107e-07
-2.4001e-07
6.80129e-07
-1.62598e-07
6.80907e-07
-8.91325e-08
6.79621e-07
-2.02734e-08
6.76726e-07
3.98876e-08
6.72223e-07
9.8461e-08
6.66145e-07
1.53594e-07
6.58574e-07
2.05174e-07
6.49624e-07
2.53073e-07
6.39427e-07
2.97121e-07
6.28114e-07
3.37289e-07
6.15801e-07
3.736e-07
6.02596e-07
4.06102e-07
5.88613e-07
4.34869e-07
5.73962e-07
4.60038e-07
5.58749e-07
4.81764e-07
5.43072e-07
5.00211e-07
5.27031e-07
5.15465e-07
5.10718e-07
5.27714e-07
4.9421e-07
5.37145e-07
4.77585e-07
5.43928e-07
4.60918e-07
5.48231e-07
4.44275e-07
5.50245e-07
4.27711e-07
5.5018e-07
4.11273e-07
5.48223e-07
3.9501e-07
5.44523e-07
3.78967e-07
5.39234e-07
3.63178e-07
5.32522e-07
3.47676e-07
5.24522e-07
3.32495e-07
5.15365e-07
3.17666e-07
5.05162e-07
3.03216e-07
4.94068e-07
2.89159e-07
4.82251e-07
2.75501e-07
4.69863e-07
2.62253e-07
4.56971e-07
2.49426e-07
4.43647e-07
2.37025e-07
4.30004e-07
2.2505e-07
4.16133e-07
2.1351e-07
4.02071e-07
2.02412e-07
3.87885e-07
1.91755e-07
3.73677e-07
1.81527e-07
3.59564e-07
1.71718e-07
3.45596e-07
1.6232e-07
3.31795e-07
1.53331e-07
3.1818e-07
1.44743e-07
3.04802e-07
1.36546e-07
2.9173e-07
1.28721e-07
2.7903e-07
1.21248e-07
2.6672e-07
1.14122e-07
2.54767e-07
1.0734e-07
2.43172e-07
1.0089e-07
2.32029e-07
9.47418e-08
2.21427e-07
8.8871e-08
2.11264e-07
8.3259e-08
2.01435e-07
7.78764e-08
1.91916e-07
7.27085e-08
1.82499e-07
1.72216e-07
0.000264407
0.000288591
0.000251602
0.000360247
0.000236089
0.000445213
0.000217774
0.000528651
0.000196641
0.000591813
0.000173001
0.000653857
0.000148605
0.000697829
0.000123362
0.000731101
9.77346e-05
0.00075072
7.25301e-05
0.000758471
4.7352e-05
0.000759033
2.45923e-05
0.00073861
7.85723e-07
0.000729771
-2.06858e-05
0.000703572
-4.07522e-05
0.000668379
-5.98227e-05
0.000634034
-7.66019e-05
0.000590387
-9.20874e-05
0.000548679
-0.000106298
0.00050806
-0.000118708
0.000464183
-0.000129602
0.000422272
-0.000139101
0.000382862
-0.000147335
0.000345233
-0.000154534
0.000310548
-0.00016065
0.000278349
-0.000166145
0.000249954
-0.00017105
0.000223919
-0.000175354
0.000199405
-0.000178954
0.000175944
-0.000181758
0.000152912
-0.000183652
0.000129462
-0.0001845
0.00010528
-0.000184275
7.99762e-05
-0.000183014
5.38224e-05
-0.000181177
2.71175e-05
-0.000178446
3.50913e-08
-0.000176879
-1.11309e-05
-0.000175914
-2.76947e-05
-0.000174848
-4.99859e-05
-0.000173986
-7.65762e-05
-0.000173325
-0.000106513
-0.000172477
-0.000140043
-0.000170705
-0.000180402
-0.000166471
-0.000227478
-0.000161394
-0.000281026
-0.000153816
-0.000326816
-0.000144838
-0.000359105
-0.000135542
-0.000396122
-0.000124292
-0.000432602
-0.000110581
-0.00046876
-9.66491e-05
-0.000504648
-8.07647e-05
-0.000537196
-6.37555e-05
-0.000570821
-4.63355e-05
-0.000598861
-2.71261e-05
-0.000622714
-6.84767e-06
-0.00064656
1.35344e-05
-0.000660927
3.45241e-05
-0.000666773
5.5884e-05
-0.000674005
7.69694e-05
-0.000669556
9.82213e-05
-0.000663573
0.000118772
-0.000652614
0.00013876
-0.000629913
0.000158582
-0.000606254
0.000177337
-0.000578367
0.000195245
-0.00053846
0.000212385
-0.000497049
0.00022798
-0.000445344
0.000241972
-0.000388922
0.000254436
-0.000325933
0.000264745
-0.000250434
0.000272658
-0.000169178
0.0002776
-8.0455e-05
0.00027882
1.91273e-05
0.000276507
0.000121508
0.000269556
0.000229476
0.000258135
0.000336275
0.000242475
0.000438199
0.000223027
0.000531994
0.000200432
0.000613404
0.000175002
0.000682531
0.000147727
0.000735554
0.000119491
0.00077179
9.11688e-05
0.000792605
6.33161e-05
0.000797451
3.65577e-05
0.000788148
1.15017e-05
0.000765561
-1.15144e-05
0.000732127
-3.23257e-05
0.00068943
-5.10085e-05
0.000639513
-6.73214e-05
0.000584721
-8.15285e-05
0.000529625
-9.38677e-05
0.000474544
-0.000104234
0.000419742
-0.000112753
0.000365866
-0.000119358
0.000313961
-0.000124272
0.000264876
-0.000127799
0.000220017
-0.000130183
0.000179482
-0.000131643
0.000142815
-0.000132265
0.000110081
-0.000132422
8.162e-05
-0.000132177
5.8203e-05
-0.00013217
3.85071e-05
-0.000131894
2.01749e-05
-0.000131459
1.3178e-06
-0.000130812
-1.43187e-05
-0.000130154
-2.99447e-05
-0.000129719
-4.59879e-05
-0.000128936
-6.24759e-05
-0.000127623
-7.96131e-05
-0.000125852
-9.65493e-05
-0.000123844
-0.000113985
-0.000121224
-0.000131865
-0.000118191
-0.000150707
-0.000114714
-0.000170033
-0.000110687
-0.000190377
-0.000106033
-0.00021224
-0.000100653
-0.000234222
-9.45088e-05
-0.000257406
-8.74583e-05
-0.000280713
-7.98496e-05
-0.000303091
-7.14627e-05
-0.000325886
-6.21669e-05
-0.00034884
-5.20003e-05
-0.000371808
-4.08753e-05
-0.000393917
-2.87872e-05
-0.000414754
-1.58985e-05
-0.000433156
-2.10794e-06
-0.000449637
1.2344e-05
-0.000462381
2.73431e-05
-0.00047143
4.27284e-05
-0.000475869
5.82016e-05
-0.000474869
7.36243e-05
-0.00046908
8.88149e-05
-0.000458257
0.000103638
-0.000441828
0.000117889
-0.000419768
0.000131239
-0.000391372
0.000143487
-0.000357301
0.000154315
-0.000317932
0.000163675
-0.000273813
0.000171397
-0.000225407
0.000177349
-0.000173475
0.000181305
-0.000118498
0.000183278
-6.20043e-05
0.000183206
-4.86435e-06
0.000181215
5.13981e-05
0.000177337
0.000106335
0.000171631
0.000159035
0.0001642
0.000208697
0.000155147
0.000254461
0.000144645
0.000295471
0.000132915
0.000330951
0.000120199
0.000360266
0.00010677
0.000382995
9.29626e-05
0.000398904
7.90098e-05
0.000408382
6.51344e-05
0.000411809
5.14703e-05
0.000409606
3.82285e-05
0.000402157
2.56281e-05
0.000390342
1.37171e-05
0.000374848
2.58453e-06
0.000356138
-7.62079e-06
0.000334707
-1.69332e-05
0.000311255
-2.53314e-05
0.000286601
-3.28472e-05
0.000261079
-3.94866e-05
0.000235057
-4.52498e-05
0.000208818
-5.01701e-05
0.000182697
-5.42734e-05
0.000156993
-5.76034e-05
0.000131912
-6.02002e-05
0.000107637
-6.21172e-05
8.43028e-05
-6.33836e-05
6.18957e-05
-6.40216e-05
4.05308e-05
-6.4037e-05
2.01551e-05
-6.34184e-05
9.35877e-07
-6.25077e-05
-1.58636e-05
-6.11525e-05
-3.20806e-05
-5.9368e-05
-4.73569e-05
-5.7186e-05
-6.15409e-05
-5.463e-05
-7.46547e-05
-5.17386e-05
-8.66327e-05
-4.85403e-05
-9.74954e-05
-4.50845e-05
-0.000107218
-4.13951e-05
-0.000115806
-3.7477e-05
-0.00012332
-3.34015e-05
-0.00012974
-2.91745e-05
-0.000135089
-2.48363e-05
-0.000139358
-2.04096e-05
-0.000142568
-1.59383e-05
-0.000144721
-1.14558e-05
-0.000145838
-6.94086e-06
-0.000145995
-2.48344e-06
-0.000145118
1.90665e-06
-0.000143274
6.20551e-06
-0.000140489
1.03707e-05
-0.000136819
1.43875e-05
-0.000132295
1.82336e-05
-0.000127021
2.18778e-05
-0.000120995
2.52989e-05
-0.00011437
2.84972e-05
-0.000107187
3.14461e-05
-9.95028e-05
3.41339e-05
-9.13972e-05
3.65605e-05
-8.29716e-05
3.86951e-05
-7.42591e-05
4.05611e-05
-6.54239e-05
4.21439e-05
-5.64491e-05
4.34303e-05
-4.74183e-05
4.4455e-05
-3.85504e-05
4.5192e-05
-2.97492e-05
4.56548e-05
-2.11214e-05
4.58607e-05
-1.28051e-05
4.57901e-05
-4.78378e-06
4.55378e-05
2.53056e-06
4.50846e-05
9.4594e-06
4.44414e-05
1.60082e-05
4.36156e-05
2.21416e-05
4.26229e-05
2.77923e-05
4.14776e-05
3.29339e-05
4.02008e-05
3.75372e-05
3.88122e-05
4.16104e-05
3.73171e-05
4.51435e-05
3.57511e-05
4.81208e-05
3.41253e-05
5.05704e-05
3.24472e-05
5.25116e-05
3.07439e-05
5.39561e-05
2.90259e-05
5.49378e-05
2.73036e-05
5.5491e-05
2.55944e-05
5.56428e-05
2.38984e-05
5.54217e-05
2.2242e-05
5.48488e-05
2.0614e-05
5.3985e-05
1.90388e-05
5.28277e-05
1.75139e-05
5.14515e-05
1.60486e-05
4.98557e-05
1.46451e-05
4.8092e-05
1.33077e-05
4.61818e-05
1.20391e-05
4.41531e-05
1.08402e-05
4.20431e-05
9.71066e-06
3.98721e-05
8.65306e-06
3.76541e-05
7.66498e-06
3.54228e-05
6.74814e-06
3.31802e-05
5.89745e-06
3.09646e-05
5.11895e-06
2.8763e-05
4.39727e-06
2.6622e-05
3.74424e-06
2.45219e-05
3.14839e-06
2.24888e-05
2.61098e-06
2.05313e-05
2.13051e-06
1.86411e-05
1.69948e-06
1.68498e-05
1.31987e-06
1.51359e-05
9.83679e-07
1.35203e-05
6.93407e-07
1.19917e-05
4.39609e-07
1.05653e-05
2.26171e-07
9.22375e-06
4.34444e-08
7.9837e-06
-1.07718e-07
6.83904e-06
-2.2908e-07
5.77699e-06
-3.24291e-07
4.80259e-06
-3.96333e-07
3.91462e-06
-4.47579e-07
3.10777e-06
-4.79555e-07
2.37795e-06
-4.95179e-07
1.72415e-06
-4.96418e-07
1.14126e-06
-4.83596e-07
6.21906e-07
-4.59742e-07
1.73823e-07
-4.30216e-07
-1.99493e-07
-3.93695e-07
-5.27468e-07
-3.50612e-07
-8.12214e-07
-3.0177e-07
-1.05345e-06
-2.4888e-07
-1.25074e-06
-1.93217e-07
-1.4074e-06
-1.35314e-07
-1.52596e-06
-7.70437e-08
-1.61291e-06
-1.7995e-08
-1.6679e-06
3.86258e-08
-1.69464e-06
9.4941e-08
-1.70531e-06
1.50061e-07
-1.69585e-06
2.03377e-07
-1.66859e-06
2.5452e-07
-1.62642e-06
3.03194e-07
-1.57151e-06
3.49153e-07
-1.50574e-06
3.92231e-07
-1.43099e-06
4.32321e-07
-1.34923e-06
4.69391e-07
-1.2623e-06
5.03415e-07
-1.17149e-06
5.34374e-07
-1.078e-06
5.62257e-07
-9.8255e-07
5.87064e-07
-8.8604e-07
6.08838e-07
-7.89275e-07
6.27649e-07
-6.93121e-07
6.43612e-07
-5.98454e-07
6.56756e-07
-5.05887e-07
6.67155e-07
-4.15866e-07
6.74901e-07
-3.28851e-07
6.80128e-07
-2.45237e-07
6.82991e-07
-1.65461e-07
6.83595e-07
-8.97373e-08
6.82159e-07
-1.88369e-08
6.79073e-07
4.29732e-08
6.7443e-07
1.03104e-07
6.68202e-07
1.59822e-07
6.60473e-07
2.12904e-07
6.5136e-07
2.62185e-07
6.41005e-07
3.07477e-07
6.29541e-07
3.48753e-07
6.17082e-07
3.86059e-07
6.03735e-07
4.19449e-07
5.8961e-07
4.48994e-07
5.74821e-07
4.74827e-07
5.59476e-07
4.97109e-07
5.43672e-07
5.16014e-07
5.27513e-07
5.31625e-07
5.11088e-07
5.44138e-07
4.94477e-07
5.53756e-07
4.77754e-07
5.60651e-07
4.60996e-07
5.64989e-07
4.44272e-07
5.66969e-07
4.27634e-07
5.66819e-07
4.11127e-07
5.64729e-07
3.94802e-07
5.60848e-07
3.78703e-07
5.55333e-07
3.62864e-07
5.48361e-07
3.47316e-07
5.4007e-07
3.32093e-07
5.30588e-07
3.1723e-07
5.20025e-07
3.02751e-07
5.08547e-07
2.88671e-07
4.96331e-07
2.74994e-07
4.83539e-07
2.61729e-07
4.70235e-07
2.4889e-07
4.56486e-07
2.36479e-07
4.42415e-07
2.24498e-07
4.28114e-07
2.12952e-07
4.13616e-07
2.01853e-07
3.98984e-07
1.91199e-07
3.84331e-07
1.80978e-07
3.69785e-07
1.71175e-07
3.55399e-07
1.61785e-07
3.41185e-07
1.52804e-07
3.2716e-07
1.44229e-07
3.13377e-07
1.36046e-07
2.99913e-07
1.28234e-07
2.86842e-07
1.20775e-07
2.74179e-07
1.13662e-07
2.6188e-07
1.06895e-07
2.4994e-07
1.00463e-07
2.38461e-07
9.43333e-08
2.27556e-07
8.84798e-08
2.17118e-07
8.28833e-08
2.07032e-07
7.75081e-08
1.97291e-07
7.23235e-08
1.87683e-07
1.76885e-07
0.000267976
0.000299323
0.00025491
0.000373313
0.000239097
0.000461026
0.000220829
0.000546919
0.000199082
0.00061356
0.000175012
0.000677927
0.000150369
0.000722472
0.000124731
0.00075674
9.86593e-05
0.000776792
7.31405e-05
0.00078399
4.66628e-05
0.000785511
2.48654e-05
0.000760407
1.3383e-06
0.000753299
-2.00207e-05
0.000724931
-3.9783e-05
0.000688141
-5.89632e-05
0.000653214
-7.55441e-05
0.000606968
-9.00072e-05
0.000563142
-0.000103071
0.000521122
-0.00011319
0.000474275
-0.000121164
0.000429921
-0.000126682
0.000386015
-0.0001301
0.000337795
-0.00012795
0.000268494
-0.000122071
0.000170487
-0.000113968
0.000109305
-0.000104598
7.79538e-05
-9.43955e-05
5.34935e-05
-8.39075e-05
3.45354e-05
-7.36136e-05
1.99416e-05
-6.39137e-05
8.89992e-06
-5.53967e-05
9.26195e-07
-4.90235e-05
2.08515e-07
-4.38896e-05
1.02027e-07
-4.48009e-05
-1.63507e-08
-4.50732e-05
-1.31691e-09
-4.77797e-05
-2.23608e-08
-5.19155e-05
-7.87892e-08
-5.70111e-05
-2.34783e-07
-6.39525e-05
-6.38266e-07
-7.25297e-05
-1.53511e-06
-8.18016e-05
-3.62977e-06
-9.26727e-05
-8.77729e-06
-0.000104094
-2.08752e-05
-0.000115525
-4.94621e-05
-0.000122197
-0.000117236
-0.000122609
-0.000222758
-0.000121561
-0.000289684
-0.000116854
-0.000366748
-0.000106336
-0.000456634
-9.44086e-05
-0.00051533
-7.97183e-05
-0.000550804
-6.38168e-05
-0.000586087
-4.67598e-05
-0.00061567
-2.75425e-05
-0.000641735
-7.28735e-06
-0.000666727
1.32458e-05
-0.000681416
3.45577e-05
-0.00068806
5.61435e-05
-0.000695582
7.7521e-05
-0.000690928
9.89812e-05
-0.000685032
0.000119294
-0.000672926
0.000139486
-0.000650105
0.000159564
-0.000626331
0.000178477
-0.000597281
0.000196696
-0.000556679
0.000214248
-0.0005146
0.000230135
-0.000461231
0.00024454
-0.000403327
0.000256991
-0.000338384
0.00026734
-0.000260783
0.000275515
-0.000177353
0.000280578
-8.55179e-05
0.000281974
1.77314e-05
0.00027989
0.000123591
0.000272862
0.000236504
0.000261275
0.000347863
0.000245117
0.000454356
0.000224961
0.00055215
0.000201691
0.000636675
0.000176085
0.000708137
0.000149035
0.000762604
0.000121203
0.000799622
9.32194e-05
0.000820588
6.59807e-05
0.000824689
3.9894e-05
0.000814233
1.55298e-05
0.000789919
-6.82735e-06
0.00075446
-2.71042e-05
0.000709627
-4.54958e-05
0.000657661
-6.1538e-05
0.00060011
-7.51554e-05
0.000541667
-8.64591e-05
0.000482333
-9.52594e-05
0.000421289
-0.000101768
0.000359015
-0.000105985
0.000296938
-0.000108196
0.000237677
-0.000108941
0.000184711
-0.000108706
0.00013965
-0.000107832
0.000102704
-0.000106488
7.3434e-05
-0.000104941
5.09602e-05
-0.000103574
3.45068e-05
-0.000102833
2.2271e-05
-0.000102567
1.13949e-05
-0.000102104
4.42719e-07
-0.000101609
-1.0058e-05
-0.000101455
-2.05542e-05
-0.000101702
-3.16586e-05
-0.000101875
-4.38969e-05
-0.000101854
-5.73457e-05
-0.000101564
-7.15825e-05
-0.000101294
-8.70108e-05
-0.000100539
-0.000104452
-9.95348e-05
-0.000124113
-9.8168e-05
-0.000146376
-9.59681e-05
-0.000172428
-9.29772e-05
-0.00020237
-8.90029e-05
-0.000234689
-8.44037e-05
-0.000261929
-7.88403e-05
-0.000286161
-7.2651e-05
-0.000309138
-6.55986e-05
-0.000332794
-5.75774e-05
-0.000356758
-4.8504e-05
-0.000380851
-3.82841e-05
-0.000404105
-2.70715e-05
-0.000425934
-1.48981e-05
-0.000445305
-1.66534e-06
-0.000462862
1.23698e-05
-0.00047641
2.70622e-05
-0.000486117
4.22565e-05
-0.000491061
5.76335e-05
-0.000490245
7.30018e-05
-0.000484448
8.8323e-05
-0.000473578
0.00010331
-0.000456814
0.000117802
-0.00043426
0.000131422
-0.000404992
0.000143908
-0.000369787
0.00015507
-0.000329094
0.000164798
-0.000283541
0.000172704
-0.000233313
0.000178881
-0.000179653
0.000182963
-0.000122579
0.000185032
-6.40736e-05
0.000184955
-4.78714e-06
0.000182892
5.34608e-05
0.000178868
0.000110358
0.000172956
0.000164947
0.000165288
0.000216364
0.000155924
0.000263826
0.000145101
0.000306294
0.000133033
0.000343019
0.000120002
0.000373296
0.000106342
0.000396656
9.22144e-05
0.000413032
7.80355e-05
0.000422561
6.39818e-05
0.000425863
5.02736e-05
0.000423314
3.71284e-05
0.000415302
2.46176e-05
0.000402852
1.28084e-05
0.000386657
1.79104e-06
0.000367155
-8.27162e-06
0.000344769
-1.74464e-05
0.00032043
-2.57345e-05
0.000294889
-3.31522e-05
0.000268496
-3.96983e-05
0.000241602
-4.53783e-05
0.000214497
-5.02429e-05
0.000187561
-5.42949e-05
0.000161044
-5.75658e-05
0.000135182
-6.01256e-05
0.000110196
-6.19942e-05
8.61709e-05
-6.32226e-05
6.31238e-05
-6.38211e-05
4.1129e-05
-6.38103e-05
2.01442e-05
-6.31056e-05
2.31815e-07
-6.22027e-05
-1.67655e-05
-6.08577e-05
-3.34249e-05
-5.90836e-05
-4.91309e-05
-5.69225e-05
-6.37022e-05
-5.43963e-05
-7.7181e-05
-5.15469e-05
-8.94819e-05
-4.83895e-05
-0.000100653
-4.49666e-05
-0.000110641
-4.12878e-05
-0.000119485
-3.74174e-05
-0.000127191
-3.33484e-05
-0.000133809
-2.91369e-05
-0.0001393
-2.47962e-05
-0.000143699
-2.03732e-05
-0.000146991
-1.58923e-05
-0.000149201
-1.1368e-05
-0.000150362
-6.85489e-06
-0.000150508
-2.36649e-06
-0.000149607
2.05115e-06
-0.000147692
6.37109e-06
-0.000144808
1.05717e-05
-0.00014102
1.46226e-05
-0.000136346
1.8488e-05
-0.000130887
2.21536e-05
-0.00012466
2.56086e-05
-0.000117825
2.88209e-05
-0.000110399
3.17879e-05
-0.00010247
3.44923e-05
-9.41017e-05
3.69179e-05
-8.53972e-05
3.90616e-05
-7.64029e-05
4.09353e-05
-6.72976e-05
4.25143e-05
-5.80281e-05
4.37875e-05
-4.86914e-05
4.48017e-05
-3.95646e-05
4.55366e-05
-3.04841e-05
4.59916e-05
-2.15764e-05
4.61848e-05
-1.29983e-05
4.6083e-05
-4.682e-06
4.58084e-05
2.8052e-06
4.53453e-05
9.92249e-06
4.46882e-05
1.66653e-05
4.3848e-05
2.29819e-05
4.28278e-05
2.88124e-05
4.16624e-05
3.40993e-05
4.03655e-05
3.88341e-05
3.89501e-05
4.30258e-05
3.74435e-05
4.665e-05
3.58504e-05
4.9714e-05
3.41994e-05
5.22214e-05
3.25098e-05
5.42013e-05
3.07855e-05
5.56804e-05
2.90491e-05
5.66742e-05
2.73127e-05
5.72273e-05
2.55846e-05
5.73709e-05
2.38802e-05
5.71261e-05
2.22051e-05
5.6524e-05
2.0573e-05
5.56171e-05
1.89858e-05
5.44148e-05
1.74538e-05
5.29834e-05
1.59797e-05
5.13299e-05
1.4573e-05
4.94987e-05
1.32279e-05
4.75268e-05
1.19594e-05
4.54217e-05
1.07546e-05
4.32478e-05
9.62544e-06
4.10013e-05
8.56508e-06
3.87145e-05
7.58081e-06
3.6407e-05
6.6603e-06
3.41007e-05
5.81507e-06
3.18098e-05
5.03114e-06
2.95469e-05
4.31544e-06
2.73377e-05
3.66372e-06
2.51736e-05
3.07109e-06
2.30815e-05
2.54014e-06
2.10623e-05
2.05939e-06
1.91218e-05
1.63562e-06
1.72735e-05
1.2552e-06
1.55164e-05
9.27156e-07
1.38483e-05
6.35639e-07
1.22832e-05
3.90717e-07
1.08102e-05
1.75792e-07
9.43867e-06
-3.05835e-09
8.16255e-06
-1.49723e-07
6.98571e-06
-2.67253e-07
5.89452e-06
-3.59442e-07
4.89478e-06
-4.28368e-07
3.98355e-06
-4.75856e-07
3.15525e-06
-5.05371e-07
2.40746e-06
-5.18437e-07
1.73721e-06
-5.16556e-07
1.13938e-06
-5.0145e-07
6.068e-07
-4.75477e-07
1.47851e-07
-4.43145e-07
-2.31825e-07
-4.04935e-07
-5.65679e-07
-3.60063e-07
-8.57086e-07
-3.09522e-07
-1.10399e-06
-2.55038e-07
-1.30523e-06
-1.97931e-07
-1.46451e-06
-1.38511e-07
-1.58538e-06
-7.92565e-08
-1.67216e-06
-1.94313e-08
-1.72772e-06
3.82495e-08
-1.75232e-06
9.53662e-08
-1.76243e-06
1.51135e-07
-1.75162e-06
2.05033e-07
-1.72249e-06
2.56683e-07
-1.67808e-06
3.05762e-07
-1.62059e-06
3.52046e-07
-1.55203e-06
3.95395e-07
-1.47433e-06
4.35711e-07
-1.38955e-06
4.7293e-07
-1.29952e-06
5.07058e-07
-1.20562e-06
5.38082e-07
-1.10902e-06
5.6599e-07
-1.01046e-06
5.90786e-07
-9.10835e-07
6.12517e-07
-8.11006e-07
6.313e-07
-7.11904e-07
6.47205e-07
-6.14358e-07
6.60273e-07
-5.18956e-07
6.70565e-07
-4.26158e-07
6.78171e-07
-3.36457e-07
6.83232e-07
-2.50298e-07
6.85922e-07
-1.68151e-07
6.86335e-07
-9.01504e-08
6.84727e-07
-1.72291e-08
6.81486e-07
4.62143e-08
6.76706e-07
1.07884e-07
6.70324e-07
1.66205e-07
6.62427e-07
2.20801e-07
6.53145e-07
2.71467e-07
6.42624e-07
3.17998e-07
6.31005e-07
3.60373e-07
6.18398e-07
3.98665e-07
6.04906e-07
4.32942e-07
5.90634e-07
4.63265e-07
5.75703e-07
4.89758e-07
5.6022e-07
5.12592e-07
5.44286e-07
5.31948e-07
5.28005e-07
5.47906e-07
5.11467e-07
5.60676e-07
4.94747e-07
5.70476e-07
4.77924e-07
5.77475e-07
4.61074e-07
5.81839e-07
4.44266e-07
5.83776e-07
4.27552e-07
5.83533e-07
4.10975e-07
5.81307e-07
3.94585e-07
5.77237e-07
3.78429e-07
5.7149e-07
3.62538e-07
5.64252e-07
3.46943e-07
5.55665e-07
3.31678e-07
5.45853e-07
3.16778e-07
5.34925e-07
3.0227e-07
5.23055e-07
2.88167e-07
5.10434e-07
2.74471e-07
4.97236e-07
2.6119e-07
4.83517e-07
2.48338e-07
4.69338e-07
2.35917e-07
4.54835e-07
2.23927e-07
4.40104e-07
2.12377e-07
4.25167e-07
2.01277e-07
4.10084e-07
1.90627e-07
3.94981e-07
1.80411e-07
3.80001e-07
1.70615e-07
3.65195e-07
1.61233e-07
3.50568e-07
1.52262e-07
3.36131e-07
1.43699e-07
3.21941e-07
1.35531e-07
3.08081e-07
1.27734e-07
2.94638e-07
1.20289e-07
2.81624e-07
1.13188e-07
2.6898e-07
1.06436e-07
2.56692e-07
1.00023e-07
2.44874e-07
9.39135e-08
2.33665e-07
8.80784e-08
2.22953e-07
8.24987e-08
2.12612e-07
7.71321e-08
2.02658e-07
7.19228e-08
1.92892e-07
1.81512e-07
0.000271696
0.000310288
0.000258387
0.000386621
0.00024219
0.000477223
0.000224208
0.000564901
0.000201698
0.00063607
0.000176888
0.000702737
0.000151921
0.000747439
0.000125925
0.000782735
9.89495e-05
0.000803767
7.32792e-05
0.00080966
4.62138e-05
0.000812576
2.4101e-05
0.00078252
4.59056e-07
0.000776941
-2.10231e-05
0.000746413
-3.98856e-05
0.000707003
-5.74719e-05
0.000670788
-7.34031e-05
0.000622307
-8.79755e-05
0.000566888
-8.98323e-05
0.000435325
-8.53779e-05
0.000204441
-7.36752e-05
0.000114664
-5.73101e-05
4.68857e-05
-3.62158e-05
4.15284e-06
-2.23248e-05
1.40806e-06
-1.55073e-05
4.13436e-07
-1.18891e-05
3.16561e-07
-8.70377e-06
1.76422e-07
-5.96504e-06
9.58365e-08
-3.63807e-06
4.5178e-08
-1.72436e-06
1.35141e-08
-5.81454e-07
3.91732e-10
-1.9072e-07
1.12474e-09
-8.70563e-08
1.66891e-09
-4.38452e-08
4.23685e-10
-2.66772e-09
-1.78061e-12
-6.32815e-09
-2.48695e-15
-2.05426e-08
-6.84531e-16
-6.27677e-08
-7.02304e-11
-1.83595e-07
-2.61002e-10
-4.32459e-07
-1.53384e-09
-8.65681e-07
-5.67426e-09
-1.76153e-06
-1.25206e-08
-3.45482e-06
-4.1978e-08
-6.84132e-06
-1.18319e-07
-1.34712e-05
-3.58171e-07
-2.66318e-05
-1.08518e-06
-3.95528e-05
-3.28238e-06
-5.33648e-05
-1.07324e-05
-6.79604e-05
-3.3782e-05
-7.67362e-05
-0.00010176
-7.65486e-05
-0.000289978
-7.05383e-05
-0.000412541
-5.98391e-05
-0.000528517
-4.50401e-05
-0.000627853
-2.67267e-05
-0.000658104
-7.1931e-06
-0.00068541
1.29024e-05
-0.000701107
3.42717e-05
-0.000709202
5.58376e-05
-0.000717071
7.73452e-05
-0.000712392
9.92176e-05
-0.000706888
0.00011983
-0.000693531
0.000140354
-0.000670626
0.000160726
-0.000646702
0.000179709
-0.000616263
0.000198248
-0.000575217
0.000215535
-0.000531888
0.000231546
-0.000477241
0.000246312
-0.000418093
0.000259117
-0.000351189
0.000269925
-0.000271592
0.000278571
-0.000185998
0.000283718
-9.06649e-05
0.000285345
1.61044e-05
0.000283331
0.000125605
0.000275909
0.000243926
0.000264095
0.000359677
0.00024777
0.000470681
0.000227587
0.000572333
0.000204654
0.000659607
0.000179117
0.000733674
0.000152239
0.000789482
0.000124534
0.000827326
9.64874e-05
0.000848633
6.9315e-05
0.000851853
4.33691e-05
0.000840141
1.93034e-05
0.000813836
-2.74094e-06
0.000775972
-2.25209e-05
0.000727598
-4.03398e-05
0.000669447
-5.55416e-05
0.000595535
-6.71148e-05
0.000498669
-7.26981e-05
0.000367932
-7.12266e-05
0.000211093
-6.62622e-05
0.00012292
-6.00196e-05
8.24943e-05
-5.3627e-05
5.41248e-05
-4.7869e-05
3.44917e-05
-4.31783e-05
2.1421e-05
-3.96195e-05
1.30945e-05
-3.69364e-05
7.97003e-06
-3.4854e-05
4.84824e-06
-3.34437e-05
2.9807e-06
-3.27176e-05
1.84746e-06
-3.26413e-05
9.39211e-07
-3.2571e-05
-4.33541e-10
-3.29616e-05
-5.90707e-07
-3.39498e-05
-1.2112e-06
-3.54634e-05
-1.98083e-06
-3.72895e-05
-3.01008e-06
-3.94739e-05
-4.39142e-06
-4.20228e-05
-6.27971e-06
-4.48902e-05
-8.96612e-06
-4.78814e-05
-1.29395e-05
-5.10662e-05
-1.89329e-05
-5.44481e-05
-2.83002e-05
-5.7485e-05
-4.35918e-05
-5.97086e-05
-6.84196e-05
-6.00958e-05
-0.000107634
-5.86378e-05
-0.000164093
-5.60863e-05
-0.000198539
-5.31183e-05
-0.0002348
-4.93072e-05
-0.000277228
-4.41809e-05
-0.00032675
-3.76436e-05
-0.000380979
-2.95133e-05
-0.000411704
-1.99908e-05
-0.000434959
-9.33865e-06
-0.000455609
2.74931e-06
-0.00047484
1.58519e-05
-0.000489427
2.98931e-05
-0.000500093
4.4626e-05
-0.000505763
5.96616e-05
-0.000505268
7.47381e-05
-0.000499516
8.98704e-05
-0.000488706
0.00010475
-0.000471693
0.000119211
-0.00044872
0.000132773
-0.000418554
0.00014521
-0.000382224
0.000156332
-0.000340217
0.000166054
-0.000293263
0.000174061
-0.00024132
0.000180301
-0.000185892
0.000184412
-0.00012669
0.000186474
-6.61359e-05
0.000186359
-4.67218e-06
0.000184286
5.55343e-05
0.000180212
0.000114432
0.000174239
0.00017092
0.000166508
0.000224095
0.000157079
0.000273254
0.000146196
0.000317177
0.000134082
0.000355133
0.000121018
0.000386361
0.000107303
0.00041037
9.32912e-05
0.000427042
7.92124e-05
0.000436637
6.52547e-05
0.000439814
5.16379e-05
0.000436919
3.86026e-05
0.000428313
2.62009e-05
0.000415207
1.447e-05
0.000398301
3.52723e-06
0.000377946
-6.54998e-06
0.000354593
-1.56321e-05
0.000329112
-2.38149e-05
0.000302473
-3.10894e-05
0.000274916
-3.74591e-05
0.000246813
-4.2944e-05
0.000218492
-4.75766e-05
0.000190385
-5.13942e-05
0.000162801
-5.44424e-05
0.000136049
-5.67785e-05
0.000110405
-5.84435e-05
8.59403e-05
-5.95296e-05
6.27012e-05
-6.00482e-05
4.06158e-05
-5.99165e-05
1.94955e-05
-5.92468e-05
-4.08537e-07
-5.84769e-05
-1.6299e-05
-5.72757e-05
-3.2518e-05
-5.57028e-05
-4.82387e-05
-5.37459e-05
-6.34603e-05
-5.14366e-05
-7.81683e-05
-4.87965e-05
-9.21368e-05
-4.59077e-05
-0.000103552
-4.27893e-05
-0.000113764
-3.94584e-05
-0.000122814
-3.58825e-05
-0.00013076
-3.2057e-05
-0.000137623
-2.80511e-05
-0.000143292
-2.39034e-05
-0.000147831
-1.96395e-05
-0.000151239
-1.52938e-05
-0.000153534
-1.08913e-05
-0.000154754
-6.4602e-06
-0.000154932
-2.03787e-06
-0.000154026
2.33558e-06
-0.000152064
6.6375e-06
-0.000149109
1.08198e-05
-0.000145201
1.48613e-05
-0.000140386
1.87358e-05
-0.00013476
2.24111e-05
-0.000128335
2.58676e-05
-0.000121281
2.90963e-05
-0.000113627
3.20757e-05
-0.000105449
3.47887e-05
-9.68146e-05
3.72368e-05
-8.78453e-05
3.9385e-05
-7.85511e-05
4.12677e-05
-6.91802e-05
4.28577e-05
-5.96181e-05
4.41336e-05
-4.99673e-05
4.51538e-05
-4.05848e-05
4.58797e-05
-3.121e-05
4.63192e-05
-2.20159e-05
4.65025e-05
-1.31815e-05
4.63587e-05
-4.5382e-06
4.60875e-05
3.07637e-06
4.56064e-05
1.04036e-05
4.49294e-05
1.73423e-05
4.4065e-05
2.38463e-05
4.30309e-05
2.98465e-05
4.18397e-05
3.52904e-05
4.05202e-05
4.01537e-05
3.90827e-05
4.44633e-05
3.75469e-05
4.81858e-05
3.59371e-05
5.13237e-05
3.42688e-05
5.38898e-05
3.25516e-05
5.59185e-05
3.08118e-05
5.74202e-05
2.9057e-05
5.8429e-05
2.73043e-05
5.89801e-05
2.55614e-05
5.91138e-05
2.38416e-05
5.88459e-05
2.21592e-05
5.82064e-05
2.05108e-05
5.72655e-05
1.89215e-05
5.60041e-05
1.7376e-05
5.4529e-05
1.59015e-05
5.28044e-05
1.44835e-05
5.09167e-05
1.31407e-05
4.88696e-05
1.18631e-05
4.66993e-05
1.06632e-05
4.44477e-05
9.52749e-06
4.21371e-05
8.47272e-06
3.97693e-05
7.48149e-06
3.73983e-05
6.56834e-06
3.50138e-05
5.7193e-06
3.26589e-05
4.94147e-06
3.03247e-05
4.23077e-06
2.80484e-05
3.57842e-06
2.5826e-05
2.99376e-06
2.36661e-05
2.45909e-06
2.1597e-05
1.98722e-06
1.95937e-05
1.5623e-06
1.76984e-05
1.18994e-06
1.58887e-05
8.62001e-07
1.41763e-05
5.78193e-07
1.2567e-05
3.33612e-07
1.10548e-05
1.26014e-07
9.64627e-06
-4.96321e-08
8.3382e-06
-1.92389e-07
7.12846e-06
-3.06683e-07
6.00882e-06
-3.95101e-07
4.9832e-06
-4.60703e-07
4.04915e-06
-5.05231e-07
3.19978e-06
-5.31485e-07
2.43372e-06
-5.41598e-07
1.74733e-06
-5.37395e-07
1.13517e-06
-5.19169e-07
5.88574e-07
-4.87767e-07
1.16449e-07
-4.55439e-07
-2.64154e-07
-4.15795e-07
-6.05322e-07
-3.69244e-07
-9.03637e-07
-3.17153e-07
-1.15608e-06
-2.61089e-07
-1.36129e-06
-2.02607e-07
-1.52299e-06
-1.41554e-07
-1.64643e-06
-8.13703e-08
-1.73235e-06
-2.0757e-08
-1.78834e-06
3.78372e-08
-1.81092e-06
9.57399e-08
-1.82033e-06
1.52223e-07
-1.8081e-06
2.06696e-07
-1.77696e-06
2.58818e-07
-1.7302e-06
3.083e-07
-1.67007e-06
3.54938e-07
-1.59867e-06
3.98571e-07
-1.51797e-06
4.39101e-07
-1.43008e-06
4.7649e-07
-1.33691e-06
5.10745e-07
-1.23988e-06
5.41837e-07
-1.14012e-06
5.69777e-07
-1.0384e-06
5.94569e-07
-9.35627e-07
6.16291e-07
-8.32728e-07
6.35048e-07
-7.30661e-07
6.50938e-07
-6.30249e-07
6.63961e-07
-5.31978e-07
6.74163e-07
-4.3636e-07
6.81635e-07
-3.43928e-07
6.86539e-07
-2.55202e-07
6.89096e-07
-1.70708e-07
6.89542e-07
-9.05965e-08
6.87767e-07
-1.54547e-08
6.83985e-07
4.99964e-08
6.79051e-07
1.12818e-07
6.72505e-07
1.72752e-07
6.64433e-07
2.28872e-07
6.54976e-07
2.80925e-07
6.44284e-07
3.28689e-07
6.32505e-07
3.72152e-07
6.19748e-07
4.11423e-07
6.06107e-07
4.46583e-07
5.91685e-07
4.77687e-07
5.76606e-07
5.04837e-07
5.60982e-07
5.28217e-07
5.44914e-07
5.48016e-07
5.28507e-07
5.64314e-07
5.11852e-07
5.77331e-07
4.95022e-07
5.87306e-07
4.78094e-07
5.94403e-07
4.61149e-07
5.98784e-07
4.44257e-07
6.00668e-07
4.27465e-07
6.00324e-07
4.10815e-07
5.97957e-07
3.94359e-07
5.93693e-07
3.78145e-07
5.87704e-07
3.62201e-07
5.80195e-07
3.46557e-07
5.71309e-07
3.31248e-07
5.61162e-07
3.16311e-07
5.49862e-07
3.01774e-07
5.37592e-07
2.87647e-07
5.24561e-07
2.73931e-07
5.10952e-07
2.60633e-07
4.96815e-07
2.47769e-07
4.82202e-07
2.35338e-07
4.67265e-07
2.2334e-07
4.52103e-07
2.11784e-07
4.36723e-07
2.00683e-07
4.21185e-07
1.90037e-07
4.05626e-07
1.79829e-07
3.9021e-07
1.7004e-07
3.74984e-07
1.60665e-07
3.59942e-07
1.51704e-07
3.45093e-07
1.43153e-07
3.30491e-07
1.35001e-07
3.16233e-07
1.2722e-07
3.02419e-07
1.19788e-07
2.89056e-07
1.12701e-07
2.76068e-07
1.05964e-07
2.63428e-07
9.95709e-08
2.51267e-07
9.34825e-08
2.39754e-07
8.76667e-08
2.28769e-07
8.21056e-08
2.18173e-07
7.67494e-08
2.08014e-07
7.15053e-08
1.98137e-07
1.86093e-07
0.000275581
0.000321466
0.000262097
0.000400105
0.00024524
0.00049408
0.00022776
0.000582381
0.000204463
0.000659368
0.000178575
0.000728624
0.000153088
0.000772927
0.000126805
0.000809018
9.88218e-05
0.00083175
7.2937e-05
0.000835545
4.50629e-05
0.00084045
2.34287e-05
0.000804154
-4.41716e-07
0.000800808
-2.31964e-05
0.000768825
-4.38444e-05
0.000712272
-4.79749e-05
0.000439349
-4.45966e-05
0.000181944
-2.75744e-05
4.4937e-05
-1.57635e-05
4.85153e-06
-1.02279e-05
2.05086e-06
-4.83723e-06
9.07269e-07
-2.08598e-06
3.47724e-07
-5.35629e-07
1.26663e-07
-6.70202e-08
3.75728e-08
-1.34266e-08
1.44181e-08
1.18584e-08
1.19796e-08
1.70024e-08
5.67324e-09
1.60592e-08
2.73384e-09
1.07809e-08
1.07999e-09
4.10883e-09
2.06863e-10
1.254e-09
1.92865e-11
8.04341e-10
1.70407e-11
6.94817e-10
2.70148e-11
2.823e-10
3.7837e-12
5.29314e-11
-3.73239e-17
7.54702e-12
5.34424e-17
7.06496e-12
1.24136e-18
1.62431e-11
-5.77065e-13
1.68665e-11
-1.99424e-12
3.59544e-12
-1.5013e-11
-1.73361e-10
-5.96334e-11
-1.25487e-09
-9.94688e-11
-5.7897e-09
-4.02673e-10
-2.22547e-08
-1.03128e-09
-7.66374e-08
-2.89601e-09
-1.92158e-07
-1.01538e-08
-4.92364e-07
-2.79152e-08
-1.41118e-06
-9.43577e-08
-3.70963e-06
-3.0921e-07
-1.24447e-05
-1.0667e-06
-2.25464e-05
-4.55279e-06
-3.29514e-05
-1.92785e-05
-3.91014e-05
-8.01181e-05
-3.36565e-05
-0.000290069
-2.11636e-05
-0.00049782
-4.82676e-06
-0.00064143
1.45598e-05
-0.000716885
3.59238e-05
-0.000728549
5.70827e-05
-0.000737567
7.86377e-05
-0.000733571
0.000100799
-0.000728917
0.000120789
-0.000713459
0.000141821
-0.000691632
0.000162464
-0.000667335
0.000181412
-0.000635208
0.000200603
-0.000594407
0.000218221
-0.000549505
0.000234706
-0.000493726
0.000249689
-0.000433076
0.000262504
-0.000364004
0.000273753
-0.000282841
0.00028257
-0.000194815
0.000287801
-9.58958e-05
0.000289866
1.40387e-05
0.000288189
0.000127283
0.000281033
0.000251082
0.000269368
0.000371341
0.000252999
0.00048705
0.000232837
0.000592495
0.000209904
0.00068254
0.000184182
0.000759396
0.00015692
0.000816743
0.000128857
0.000855382
0.00010082
0.000876637
7.39618e-05
0.00087856
4.86289e-05
0.000864819
2.53401e-05
0.000834362
4.14994e-06
0.000784182
-1.46376e-05
0.000685301
-2.67031e-05
0.000470704
-2.97568e-05
0.000206259
-2.67406e-05
0.000112243
-2.1076e-05
4.51302e-05
-1.59784e-05
3.1033e-06
-1.18307e-05
1.27099e-06
-8.63171e-06
7.12394e-07
-6.27849e-06
3.60793e-07
-4.63572e-06
-6.10021e-08
-3.55203e-06
-2.27115e-08
-2.84177e-06
-9.17249e-09
-2.35923e-06
-4.04564e-09
-2.0218e-06
-1.91583e-09
-1.80412e-06
-9.82935e-10
-1.65923e-06
-5.32917e-10
-1.49741e-06
-2.40959e-10
-1.50036e-06
-5.38334e-10
-1.54868e-06
-1.83898e-08
-1.64829e-06
-3.63259e-08
-1.79443e-06
-5.89441e-08
-1.98228e-06
-8.8865e-08
-2.23833e-06
-1.27892e-07
-2.60344e-06
-1.79303e-07
-3.08697e-06
-2.51274e-07
-3.73605e-06
-3.55762e-07
-4.6403e-06
-5.12628e-07
-5.88305e-06
-7.66196e-07
-7.48739e-06
-1.20069e-06
-9.63185e-06
-1.94057e-06
-1.28659e-05
-3.26649e-06
-1.63268e-05
-5.82992e-06
-1.94142e-05
-1.07885e-05
-2.18147e-05
-2.07481e-05
-2.30226e-05
-4.11977e-05
-2.23243e-05
-8.33396e-05
-1.82743e-05
-0.000168844
-1.19631e-05
-0.000274748
-4.94828e-06
-0.000334175
2.5195e-06
-0.000398845
1.1681e-05
-0.000469256
2.23995e-05
-0.000499053
3.48547e-05
-0.000511739
4.84224e-05
-0.000518949
6.26574e-05
-0.000519354
7.73223e-05
-0.000514083
9.22782e-05
-0.000503613
0.000107149
-0.000486547
0.000121714
-0.000463276
0.000135395
-0.000432231
0.000147883
-0.00039471
0.000159054
-0.000351388
0.000168854
-0.000303063
0.000176907
-0.000249373
0.000183233
-0.000192218
0.000187335
-0.000130792
0.000189384
-6.81845e-05
0.000189187
-4.47553e-06
0.000187095
5.76266e-05
0.000182994
0.000118532
0.000177031
0.000176884
0.000169258
0.000231867
0.000159778
0.000282734
0.000148804
0.000328149
0.000136565
0.000367369
0.000123345
0.000399573
0.00010945
0.00042425
9.52342e-05
0.000441227
8.09552e-05
0.000450848
6.67964e-05
0.000453833
5.29655e-05
0.000450461
3.97064e-05
0.000440995
2.70674e-05
0.000426717
1.52126e-05
0.00040798
4.28932e-06
0.000384697
-5.56119e-06
0.000356517
-1.43819e-05
0.000323606
-2.21018e-05
0.000286333
-2.85145e-05
0.000244988
-3.34868e-05
0.000201011
-3.69602e-05
0.000156655
-3.90262e-05
0.000115152
-3.99057e-05
7.95989e-05
-4.01036e-05
5.57959e-05
-3.99917e-05
4.26049e-05
-3.97491e-05
3.1906e-05
-3.94711e-05
2.26575e-05
-3.91156e-05
1.44057e-05
-3.90372e-05
6.78522e-06
-3.87409e-05
-2.94556e-07
-3.84869e-05
-5.62611e-06
-3.821e-05
-1.16513e-05
-3.78293e-05
-1.85399e-05
-3.72645e-05
-2.67294e-05
-3.6449e-05
-3.66872e-05
-3.52148e-05
-4.88783e-05
-3.3538e-05
-6.31107e-05
-3.15189e-05
-7.41174e-05
-2.92239e-05
-8.37215e-05
-2.6738e-05
-9.3125e-05
-2.40571e-05
-0.000102369
-2.11797e-05
-0.000111342
-1.80669e-05
-0.000120077
-1.4733e-05
-0.000128466
-1.12192e-05
-0.00013636
-7.54703e-06
-0.000143585
-3.77684e-06
-0.000149799
7.74036e-08
-0.000154534
4.03967e-06
-0.000155974
8.05856e-06
-0.000153081
1.20138e-05
-0.000149116
1.58591e-05
-0.000144197
1.95773e-05
-0.00013845
2.31168e-05
-0.000131852
2.64867e-05
-0.000124634
2.96505e-05
-0.000116778
3.25827e-05
-0.000108372
3.52649e-05
-9.94907e-05
3.7684e-05
-9.02623e-05
3.98112e-05
-8.06763e-05
4.16812e-05
-7.10485e-05
4.32603e-05
-6.11961e-05
4.45164e-05
-5.12225e-05
4.55304e-05
-4.1598e-05
4.62528e-05
-3.19319e-05
4.66787e-05
-2.24415e-05
4.68585e-05
-1.33611e-05
4.66873e-05
-4.36676e-06
4.63835e-05
3.3801e-06
4.58894e-05
1.08977e-05
4.51968e-05
1.80349e-05
4.43144e-05
2.47287e-05
4.3257e-05
3.09038e-05
4.20465e-05
3.6501e-05
4.07077e-05
4.14925e-05
3.92463e-05
4.59246e-05
3.76912e-05
4.97409e-05
3.60595e-05
5.29555e-05
3.43669e-05
5.55824e-05
3.26345e-05
5.76508e-05
3.08752e-05
5.91796e-05
2.91043e-05
6.01998e-05
2.7336e-05
6.07484e-05
2.55776e-05
6.08722e-05
2.38462e-05
6.05773e-05
2.21475e-05
5.99051e-05
2.0493e-05
5.892e-05
1.88884e-05
5.76087e-05
1.73395e-05
5.60779e-05
1.58525e-05
5.42914e-05
1.44352e-05
5.23339e-05
1.30805e-05
5.02243e-05
1.18062e-05
4.79736e-05
1.05967e-05
4.56573e-05
9.46486e-06
4.32689e-05
8.40269e-06
4.08314e-05
7.41757e-06
3.83834e-05
6.49926e-06
3.59321e-05
5.65314e-06
3.3505e-05
4.87649e-06
3.11014e-05
4.16379e-06
2.87611e-05
3.51984e-06
2.64699e-05
2.93062e-06
2.42554e-05
2.4048e-06
2.21228e-05
1.9316e-06
2.00669e-05
1.51174e-06
1.81183e-05
1.14083e-06
1.62596e-05
8.16796e-07
1.45003e-05
5.35661e-07
1.28482e-05
2.94408e-07
1.12961e-05
9.0212e-08
9.85047e-06
-8.29378e-08
8.51135e-06
-2.22758e-07
7.26828e-06
-3.33474e-07
6.11953e-06
-4.19248e-07
5.06897e-06
-4.81928e-07
4.11183e-06
-5.23528e-07
3.24138e-06
-5.47712e-07
2.4579e-06
-5.55411e-07
1.75503e-06
-5.48511e-07
1.12827e-06
-5.27722e-07
5.67785e-07
-4.93185e-07
8.19121e-08
-4.61153e-07
-2.96186e-07
-4.20568e-07
-6.45907e-07
-3.7313e-07
-9.51075e-07
-3.19559e-07
-1.20965e-06
-2.62191e-07
-1.41866e-06
-2.02143e-07
-1.58304e-06
-1.41668e-07
-1.7069e-06
-8.00683e-08
-1.79395e-06
-1.78658e-08
-1.85054e-06
4.00643e-08
-1.86885e-06
9.84415e-08
-1.87871e-06
1.55298e-07
-1.86496e-06
2.10064e-07
-1.83173e-06
2.6243e-07
-1.78256e-06
3.12108e-07
-1.71975e-06
3.58885e-07
-1.64544e-06
4.02616e-07
-1.5617e-06
4.43218e-07
-1.47068e-06
4.80653e-07
-1.37434e-06
5.14931e-07
-1.27416e-06
5.46034e-07
-1.17122e-06
5.73948e-07
-1.06631e-06
5.98684e-07
-9.60363e-07
6.20311e-07
-8.54355e-07
6.38959e-07
-7.49309e-07
6.54731e-07
-6.46021e-07
6.67638e-07
-5.44885e-07
6.77696e-07
-4.46418e-07
6.84985e-07
-3.51217e-07
6.89668e-07
-2.59885e-07
6.91952e-07
-1.72991e-07
6.91456e-07
-9.01008e-08
6.88829e-07
-1.28278e-08
6.86231e-07
5.2594e-08
6.81412e-07
1.17637e-07
6.74757e-07
1.79407e-07
6.6652e-07
2.37109e-07
6.56881e-07
2.90563e-07
6.4601e-07
3.3956e-07
6.34066e-07
3.84096e-07
6.21155e-07
4.24334e-07
6.07363e-07
4.60374e-07
5.92784e-07
4.92266e-07
5.77549e-07
5.20072e-07
5.61775e-07
5.4399e-07
5.45567e-07
5.64223e-07
5.29029e-07
5.80852e-07
5.12254e-07
5.94106e-07
4.95309e-07
6.0425e-07
4.78272e-07
6.11439e-07
4.61228e-07
6.15828e-07
4.44248e-07
6.17648e-07
4.27377e-07
6.17196e-07
4.10651e-07
6.14683e-07
3.94127e-07
6.10216e-07
3.77853e-07
6.03979e-07
3.61854e-07
5.96193e-07
3.4616e-07
5.87004e-07
3.30805e-07
5.76516e-07
3.1583e-07
5.64838e-07
3.01262e-07
5.5216e-07
2.87112e-07
5.38712e-07
2.73376e-07
5.24688e-07
2.6006e-07
5.1013e-07
2.47183e-07
4.95079e-07
2.34743e-07
4.79706e-07
2.22736e-07
4.6411e-07
2.11173e-07
4.48285e-07
2.00071e-07
4.32287e-07
1.89431e-07
4.16267e-07
1.7923e-07
4.00411e-07
1.69448e-07
3.84765e-07
1.60081e-07
3.69309e-07
1.5113e-07
3.54044e-07
1.42592e-07
3.39029e-07
1.34457e-07
3.24369e-07
1.26692e-07
3.10184e-07
1.19274e-07
2.96474e-07
1.12199e-07
2.83142e-07
1.05479e-07
2.70148e-07
9.91064e-08
2.5764e-07
9.30403e-08
2.4582e-07
8.72449e-08
2.34564e-07
8.17043e-08
2.23713e-07
7.6362e-08
2.13356e-07
7.10696e-08
2.03429e-07
1.90618e-07
0.000279984
0.000332485
0.000266594
0.000413496
0.00024864
0.000512034
0.000232095
0.000598925
0.000207905
0.000683559
0.000180861
0.000755668
0.000155197
0.000798591
0.000128282
0.000835932
9.96099e-05
0.000860423
7.34095e-05
0.000861745
4.47142e-05
0.000869131
2.36579e-05
0.000823512
-2.48781e-07
0.000737109
-9.98905e-06
0.000267856
-9.9752e-06
5.70148e-05
-6.34208e-06
6.81828e-06
-1.40312e-06
2.70403e-06
-5.6272e-07
1.09795e-06
3.31129e-08
3.15597e-07
1.06473e-07
1.55693e-07
8.44191e-08
5.56689e-08
4.6136e-08
2.19461e-08
1.75962e-08
6.58185e-09
6.74935e-09
2.01171e-09
4.48382e-09
6.91693e-10
3.15973e-09
5.25279e-10
1.69891e-09
2.26783e-10
8.58646e-10
9.72172e-11
3.3662e-10
3.2885e-11
5.57891e-11
5.12051e-12
1.96752e-11
6.35584e-13
1.26977e-11
2.94815e-13
1.05945e-11
4.29014e-13
2.86072e-12
3.34162e-14
1.06898e-13
4.79151e-17
5.79782e-14
1.67088e-17
5.99753e-14
3.87652e-18
1.95361e-13
-7.83276e-15
2.57695e-13
-2.54472e-14
1.45287e-12
-2.15069e-13
2.39351e-12
-9.29394e-13
1.66055e-12
-1.45694e-12
3.68851e-12
-6.87043e-12
-5.77526e-13
-1.70086e-11
-6.09772e-11
-4.90599e-11
-3.3136e-10
-1.6827e-10
-1.66106e-09
-4.0248e-10
-9.06826e-09
-1.4824e-09
-3.28734e-08
-4.56977e-09
-1.00954e-07
-1.4147e-08
-3.46234e-07
-6.04629e-08
-1.09299e-06
-2.24847e-07
-4.39629e-06
-9.90242e-07
-9.39526e-06
-4.79145e-06
-9.15601e-06
-2.60997e-05
-5.20009e-07
-0.000126888
1.84312e-05
-0.000460888
3.9315e-05
-0.00061191
5.95995e-05
-0.000752352
8.12826e-05
-0.000752103
0.000103112
-0.000749654
0.000123167
-0.000733004
0.000144303
-0.000712553
0.000164899
-0.000687853
0.000184148
-0.000654423
0.000203721
-0.000613968
0.000221471
-0.000567251
0.0002386
-0.000510853
0.000253885
-0.00044836
0.000267244
-0.000377363
0.000279149
-0.000294746
0.000288098
-0.000203764
0.000293687
-0.000101485
0.000296287
1.14388e-05
0.000294918
0.000128652
0.000288256
0.000257743
0.000276725
0.000382873
0.000260304
0.00050347
0.000240081
0.000612718
0.000216793
0.000705827
0.00019068
0.000785504
0.000163358
0.000844042
0.000135812
0.000882825
0.000108995
0.000902951
8.40017e-05
0.000901033
6.10267e-05
0.000872212
3.97581e-05
0.000754747
2.00368e-05
0.000373005
7.0611e-06
0.00015921
8.92459e-07
3.87233e-05
-4.1826e-07
2.85449e-06
-1.90593e-07
1.26121e-06
-1.15759e-06
6.05053e-07
-9.87488e-07
2.14985e-07
-6.27981e-07
8.0636e-08
-3.7647e-07
3.1247e-08
-2.24222e-07
-4.65364e-10
-1.35042e-07
-1.19502e-10
-8.63723e-08
-3.57911e-11
-5.97067e-08
-1.22543e-11
-4.52208e-08
-4.93615e-12
-3.73568e-08
-2.2524e-12
-3.31563e-08
-1.16523e-12
-3.07306e-08
-6.38381e-13
-2.74807e-08
-2.99155e-13
-2.83137e-08
-1.56962e-14
-3.02518e-08
-5.43197e-10
-3.34319e-08
-1.1193e-09
-3.80188e-08
-1.88644e-09
-4.40972e-08
-2.88225e-09
-5.23511e-08
-4.20664e-09
-6.43079e-08
-5.96132e-09
-8.03131e-08
-8.42584e-09
-1.02014e-07
-1.20043e-08
-1.32714e-07
-1.75837e-08
-1.7852e-07
-2.62692e-08
-2.45053e-07
-4.09931e-08
-3.39922e-07
-6.54628e-08
-4.87749e-07
-1.05996e-07
-7.06508e-07
-1.78419e-07
-1.05935e-06
-3.05438e-07
-1.62005e-06
-5.46536e-07
-2.37488e-06
-1.04309e-06
-3.32796e-06
-2.14201e-06
-3.99126e-06
-4.80753e-06
-2.28507e-06
-1.16832e-05
2.61304e-06
-2.94504e-05
1.12614e-05
-7.47176e-05
2.32426e-05
-0.000186284
3.52367e-05
-0.000337405
4.65355e-05
-0.000409547
5.76589e-05
-0.000482355
6.92855e-05
-0.000529276
8.22256e-05
-0.00052589
9.60537e-05
-0.000516875
0.000110278
-0.00050059
0.000124582
-0.000477477
0.00013829
-0.000445895
0.000150842
-0.000407244
0.00016217
-0.000362712
0.000172171
-0.000313062
0.00018039
-0.000257591
0.000186906
-0.000198734
0.000191043
-0.000134929
0.000193055
-7.01962e-05
0.000192758
-4.17874e-06
0.00019061
5.97733e-05
0.000186403
0.000122737
0.000180302
0.000182981
0.000172369
0.000239793
0.000162676
0.000292414
0.000151468
0.000339331
0.000138934
0.000379851
0.000125408
0.00041299
0.000111231
0.000438194
9.6784e-05
0.00045517
8.23329e-05
0.0004642
6.79907e-05
0.000465719
5.39011e-05
0.000458806
4.036e-05
0.000440545
2.75202e-05
0.000406939
1.56607e-05
0.000350779
5.55287e-06
0.000264139
-1.97427e-06
0.00015205
-6.95897e-06
0.000106124
-9.98564e-06
7.53909e-05
-1.14683e-05
5.04481e-05
-1.18095e-05
3.0149e-05
-1.13736e-05
1.44139e-05
-1.05363e-05
3.30925e-06
-9.66915e-06
-5.22662e-07
-8.87468e-06
-3.11669e-07
-8.18579e-06
-1.863e-07
-7.59717e-06
-1.10013e-07
-7.12597e-06
-6.31865e-08
-6.74875e-06
-3.33639e-08
-6.57916e-06
-1.32342e-08
-6.53601e-06
-1.82801e-08
-6.66386e-06
-1.85247e-07
-6.8923e-06
-3.76268e-07
-7.2131e-06
-6.02269e-07
-7.61377e-06
-8.8473e-07
-8.08824e-06
-1.25209e-06
-8.62853e-06
-1.74642e-06
-9.13495e-06
-2.42356e-06
-9.50237e-06
-3.35162e-06
-9.68101e-06
-4.63367e-06
-9.60856e-06
-6.41461e-06
-9.22579e-06
-8.88483e-06
-8.47528e-06
-1.22754e-05
-7.30876e-06
-1.68786e-05
-5.68342e-06
-2.30483e-05
-3.56231e-06
-3.11903e-05
-9.20696e-07
-4.1743e-05
2.09333e-06
-5.49648e-05
5.54377e-06
-7.09294e-05
9.14299e-06
-8.86921e-05
1.26303e-05
-9.89541e-05
1.60317e-05
-0.000101904
1.93224e-05
-0.000103482
2.24822e-05
-0.000103851
2.54824e-05
-0.000102993
2.83704e-05
-0.000101148
3.12074e-05
-9.82586e-05
3.39327e-05
-9.42419e-05
3.64541e-05
-8.90854e-05
3.8739e-05
-8.29307e-05
4.07449e-05
-7.57702e-05
4.25177e-05
-6.80137e-05
4.40097e-05
-5.94639e-05
4.51882e-05
-5.03197e-05
4.61462e-05
-4.1259e-05
4.68229e-05
-3.18313e-05
4.7214e-05
-2.23866e-05
4.73754e-05
-1.3289e-05
4.71485e-05
-4.06059e-06
4.68645e-05
3.63721e-06
4.63589e-05
1.13135e-05
4.56548e-05
1.85871e-05
4.47577e-05
2.54093e-05
4.36864e-05
3.169e-05
4.24621e-05
3.73664e-05
4.1112e-05
4.24033e-05
3.96405e-05
4.68685e-05
3.80765e-05
5.06804e-05
3.64379e-05
5.3863e-05
3.47418e-05
5.64312e-05
3.30052e-05
5.84148e-05
3.12458e-05
5.98319e-05
2.94771e-05
6.07196e-05
2.77137e-05
6.1115e-05
2.59628e-05
6.10762e-05
2.42404e-05
6.06026e-05
2.25571e-05
5.97447e-05
2.09146e-05
5.85807e-05
1.93315e-05
5.70831e-05
1.78013e-05
5.53881e-05
1.63398e-05
5.34405e-05
1.49451e-05
5.13455e-05
1.36218e-05
4.91175e-05
1.23744e-05
4.67692e-05
1.11973e-05
4.43853e-05
1.00937e-05
4.19502e-05
9.06444e-06
3.94879e-05
8.10674e-06
3.70371e-05
7.22062e-06
3.4601e-05
6.40282e-06
3.22069e-05
5.65266e-06
2.98498e-05
4.96565e-06
2.75688e-05
4.3405e-06
2.53455e-05
3.77435e-06
2.32051e-05
3.26294e-06
2.11523e-05
2.80625e-06
1.91765e-05
2.39708e-06
1.73112e-05
2.03619e-06
1.55319e-05
1.71704e-06
1.38531e-05
1.43988e-06
1.22747e-05
1.19941e-06
1.07948e-05
9.93252e-07
9.41633e-06
8.19092e-07
8.13845e-06
6.74841e-07
6.95126e-06
5.56142e-07
5.85688e-06
4.61783e-07
4.86111e-06
3.89092e-07
3.94868e-06
3.35549e-07
3.11527e-06
2.98743e-07
2.36258e-06
2.76649e-07
1.68537e-06
2.67122e-07
1.08037e-06
2.6818e-07
5.38669e-07
2.78028e-07
6.84594e-08
2.9183e-07
-9.79339e-09
3.08069e-07
-2.0768e-08
3.26143e-07
-3.01746e-08
3.46198e-07
-3.80004e-08
3.67264e-07
-4.41557e-08
3.88683e-07
-4.88455e-08
4.10838e-07
-5.22744e-08
4.33074e-07
-5.45677e-08
4.55226e-07
-5.59739e-08
4.77251e-07
-5.61475e-08
4.989e-07
-5.54001e-08
5.20056e-07
-5.40952e-08
5.40601e-07
-5.23824e-08
5.60426e-07
-5.03767e-08
5.79413e-07
-4.81419e-08
5.97473e-07
-4.57275e-08
6.14525e-07
-4.31725e-08
6.30494e-07
-4.05154e-08
6.45357e-07
-3.77892e-08
6.59123e-07
-3.50135e-08
6.71687e-07
-3.21953e-08
6.82878e-07
-2.93373e-08
6.92659e-07
-2.64558e-08
7.01092e-07
-2.35707e-08
7.08185e-07
-2.07013e-08
7.13869e-07
-1.78636e-08
7.18057e-07
-1.50681e-08
7.20748e-07
-1.23335e-08
7.21955e-07
-9.67995e-09
7.21749e-07
-7.12988e-09
7.20324e-07
-4.70665e-09
7.17866e-07
-2.40131e-09
7.14381e-07
-2.55581e-10
7.09459e-07
5.75162e-08
7.02873e-07
1.24222e-07
6.94742e-07
1.87538e-07
6.85216e-07
2.46635e-07
6.74416e-07
3.01364e-07
6.62466e-07
3.5151e-07
6.49497e-07
3.97066e-07
6.35596e-07
4.38235e-07
6.20861e-07
4.75109e-07
6.05419e-07
5.07709e-07
5.89416e-07
5.36075e-07
5.7295e-07
5.60456e-07
5.56099e-07
5.81075e-07
5.38947e-07
5.98004e-07
5.21583e-07
6.1147e-07
5.04072e-07
6.21761e-07
4.8649e-07
6.29022e-07
4.68923e-07
6.33395e-07
4.51448e-07
6.35123e-07
4.34115e-07
6.34529e-07
4.16959e-07
6.31838e-07
4.0004e-07
6.27135e-07
3.83394e-07
6.20626e-07
3.67032e-07
6.12555e-07
3.5098e-07
6.03056e-07
3.35283e-07
5.92214e-07
3.19984e-07
5.80136e-07
3.0512e-07
5.67024e-07
2.90697e-07
5.53136e-07
2.76707e-07
5.38677e-07
2.63148e-07
5.23689e-07
2.50037e-07
5.0819e-07
2.37375e-07
4.92368e-07
2.25155e-07
4.76329e-07
2.13394e-07
4.60047e-07
2.02108e-07
4.43573e-07
1.91298e-07
4.27078e-07
1.80936e-07
4.10772e-07
1.71e-07
3.94702e-07
1.61483e-07
3.78825e-07
1.52392e-07
3.63136e-07
1.43725e-07
3.47695e-07
1.35472e-07
3.32622e-07
1.27594e-07
3.18061e-07
1.20058e-07
3.0401e-07
1.12858e-07
2.90342e-07
1.06019e-07
2.76987e-07
9.95417e-08
2.64117e-07
9.33491e-08
2.52013e-07
8.74195e-08
2.40493e-07
8.17728e-08
2.2936e-07
7.63289e-08
2.188e-07
7.07867e-08
2.08971e-07
1.9525e-07
0.000284203
0.000343681
0.000270985
0.000426714
0.000250624
0.000532395
0.000235406
0.000614143
0.000210934
0.000708031
0.00018378
0.000782823
0.000157691
0.00082468
0.000129238
0.000864386
0.000100712
0.000888938
7.5405e-05
0.000884809
4.27089e-05
0.000716282
1.57117e-05
0.000209536
2.54059e-06
1.72138e-05
1.97021e-06
5.86573e-06
4.17166e-07
2.63701e-06
3.11713e-07
6.56375e-07
2.1619e-07
2.60802e-07
1.01681e-07
1.04251e-07
3.46226e-08
2.73508e-08
2.15201e-08
1.31389e-08
8.14067e-09
4.02387e-09
3.5604e-09
1.5714e-09
8.50297e-10
3.84513e-10
3.27389e-10
1.15142e-10
2.10265e-10
3.48266e-11
1.29214e-10
2.34121e-11
5.92594e-11
9.28391e-12
2.49337e-11
3.53346e-12
7.35404e-12
1.03529e-12
6.81323e-13
1.54757e-13
2.83186e-13
1.58417e-14
1.85547e-13
6.41718e-15
1.46877e-13
7.5678e-15
2.44042e-14
8.88792e-16
4.37446e-16
4.76699e-16
4.43797e-16
7.22394e-16
6.21023e-16
1.69737e-16
2.02642e-15
-4.32807e-17
3.16786e-15
-1.47373e-16
2.24689e-14
-3.57659e-15
4.03387e-14
-1.53403e-14
3.47394e-14
-2.56459e-14
1.85167e-13
-1.44466e-13
3.70629e-13
-3.34154e-13
7.71011e-13
-1.13463e-12
1.02635e-12
-3.34214e-12
-1.05632e-12
-8.69573e-12
-1.38796e-11
-3.69131e-11
-6.34443e-11
-9.7395e-11
-4.34545e-10
-3.09323e-10
-3.02226e-09
-1.30858e-09
-1.42246e-08
-4.26238e-09
-6.12961e-08
-1.95476e-08
-2.21234e-07
-7.72529e-08
-6.3234e-07
-3.74358e-07
-1.28703e-06
-2.02491e-06
8.0165e-06
-1.05204e-05
2.86615e-05
-5.97849e-05
5.53389e-05
-0.000303817
8.17182e-05
-0.000577958
0.000104904
-0.000721816
0.000125924
-0.000749885
0.000147431
-0.000732278
0.000167861
-0.000707653
0.000187262
-0.000673541
0.000206953
-0.000633568
0.000224798
-0.000585059
0.000242572
-0.000528613
0.000258133
-0.000463917
0.000271883
-0.000391112
0.000284887
-0.000307749
0.000294231
-0.000213108
0.000300534
-0.000107788
0.000303951
8.0219e-06
0.000302957
0.000129646
0.000296908
0.000263792
0.000285316
0.000394465
0.000268648
0.000520136
0.000248349
0.000633013
0.000224975
0.000729187
0.000199571
0.000810845
0.000174058
0.000869251
0.000149776
0.000905496
0.000128276
0.000913727
0.000107646
0.0008298
7.24843e-05
0.000387173
3.62235e-05
0.00014253
1.43667e-05
4.24728e-06
5.55293e-06
2.21477e-06
8.72955e-07
9.46201e-07
1.36771e-07
3.99413e-07
-5.72568e-08
1.37576e-07
-3.44335e-08
5.16036e-08
-9.72917e-09
1.22829e-08
1.28193e-09
3.72961e-09
3.58696e-09
9.36625e-10
3.03874e-09
-8.25889e-13
2.19855e-09
-1.52537e-13
1.56278e-09
-3.64604e-14
1.15772e-09
-1.01997e-14
9.12473e-10
-3.64394e-15
7.58017e-10
-1.42621e-15
6.62227e-10
-5.95541e-16
6.06556e-10
-2.353e-16
5.70449e-10
-7.01245e-17
5.37528e-10
-2.85333e-18
5.53202e-10
-1.87768e-11
6.1061e-10
-3.76682e-11
6.7359e-10
-6.4745e-11
7.49036e-10
-1.00005e-10
8.45677e-10
-1.45726e-10
9.59437e-10
-2.09086e-10
1.09194e-09
-2.96083e-10
1.25453e-09
-4.15725e-10
1.39159e-09
-6.119e-10
1.47567e-09
-9.04257e-10
1.24794e-09
-1.37817e-09
1.92196e-10
-2.17356e-09
-2.25397e-09
-3.49424e-09
-7.39768e-09
-5.88293e-09
-1.73182e-08
-1.02115e-08
-3.56346e-08
-1.83529e-08
-6.71481e-08
-3.51836e-08
-1.18868e-07
-7.21117e-08
-1.96493e-07
-1.53819e-07
-2.91939e-07
-3.32845e-07
-2.8041e-07
-7.51279e-07
5.86405e-07
-1.81935e-06
5.55006e-06
-4.89587e-06
1.78988e-05
-1.44146e-05
3.58791e-05
-4.36064e-05
5.71058e-05
-0.000127046
7.67273e-05
-0.00032151
9.13028e-05
-0.000401245
0.000104525
-0.000463496
0.000116872
-0.000508937
0.0001297
-0.000489098
0.000142705
-0.000458271
0.000154801
-0.000419148
0.000165852
-0.000373722
0.000175805
-0.000322986
0.000184112
-0.000265871
0.000190725
-0.000205335
0.000194848
-0.000139046
0.000196818
-7.21642e-05
0.000196382
-3.74202e-06
0.00019421
6.19353e-05
0.000189889
0.000127033
0.000183633
0.000189188
0.000175548
0.000247786
0.000165687
0.000302097
0.000154339
0.000350322
0.000141714
0.000391729
0.000128188
0.000424862
0.000113993
0.000448432
9.93186e-05
0.000459371
8.41286e-05
0.000450605
6.81044e-05
0.000407164
5.1117e-05
0.000302529
3.46344e-05
0.000162944
2.15625e-05
0.000108943
1.20769e-05
6.30149e-05
5.97079e-06
2.36601e-05
2.89773e-06
5.45098e-07
1.25106e-06
4.67006e-07
2.68665e-07
3.26858e-07
-2.64542e-07
2.00456e-07
-6.12566e-07
1.15868e-07
-7.8037e-07
-9.41848e-09
-7.37136e-07
-2.56787e-09
-5.78378e-07
-9.88412e-10
-4.64707e-07
-5.05158e-10
-3.85483e-07
-2.73348e-10
-3.28903e-07
-1.48892e-10
-2.87968e-07
-7.99245e-11
-2.56778e-07
-3.93434e-11
-2.24378e-07
-1.42665e-11
-2.26637e-07
-5.25054e-10
-2.38035e-07
-5.21243e-09
-2.55954e-07
-1.05865e-08
-2.81354e-07
-1.69064e-08
-3.15696e-07
-2.47566e-08
-3.59387e-07
-3.48721e-08
-4.15354e-07
-4.819e-08
-4.84385e-07
-6.60456e-08
-5.67529e-07
-8.98906e-08
-6.65995e-07
-1.22058e-07
-7.78524e-07
-1.66022e-07
-8.99843e-07
-2.26541e-07
-1.01616e-06
-3.10175e-07
-1.10749e-06
-4.25635e-07
-1.13732e-06
-5.8564e-07
-1.04658e-06
-8.07902e-07
-7.3068e-07
-1.11954e-06
-6.1655e-08
-1.55498e-06
1.11227e-06
-2.15672e-06
2.89747e-06
-2.9814e-06
5.27391e-06
-4.07241e-06
8.02038e-06
-5.46423e-06
1.10713e-05
-7.1876e-06
1.43174e-05
-9.24878e-06
1.77448e-05
-1.15914e-05
2.11399e-05
-1.41374e-05
2.43507e-05
-1.6743e-05
2.73271e-05
-1.92479e-05
3.01051e-05
-2.14601e-05
3.26173e-05
-2.31529e-05
3.49084e-05
-2.41221e-05
3.67851e-05
-2.41923e-05
3.83803e-05
-2.3301e-05
3.9781e-05
-2.14058e-05
4.07131e-05
-1.85802e-05
4.14133e-05
-1.5045e-05
4.18882e-05
-1.09433e-05
4.1991e-05
-6.5204e-06
4.18759e-05
-1.94824e-06
4.1489e-05
1.48954e-06
4.0942e-05
4.36222e-06
4.00963e-05
7.09942e-06
3.90172e-05
9.52494e-06
3.77947e-05
1.15817e-05
3.6438e-05
1.32915e-05
3.49054e-05
1.4675e-05
3.33075e-05
1.56731e-05
3.16282e-05
1.63485e-05
2.99011e-05
1.66917e-05
2.81292e-05
1.6743e-05
2.63705e-05
1.65009e-05
2.46271e-05
1.60181e-05
2.2919e-05
1.53141e-05
2.12295e-05
1.44351e-05
1.96197e-05
1.33779e-05
1.80731e-05
1.21969e-05
1.65771e-05
1.09201e-05
1.51794e-05
9.56167e-06
1.38288e-05
8.17245e-06
1.25832e-05
6.75855e-06
1.13904e-05
5.36568e-06
1.0278e-05
4.00374e-06
9.24872e-06
2.6997e-06
8.27905e-06
1.47702e-06
7.39686e-06
3.48984e-07
6.5888e-06
-2.36759e-10
5.85242e-06
-8.36878e-10
5.18857e-06
-4.72896e-10
4.58198e-06
-2.45373e-10
4.04247e-06
-1.7249e-10
3.54636e-06
-7.03341e-11
3.10846e-06
-8.98301e-11
2.71023e-06
-4.4679e-11
2.35586e-06
-6.30562e-11
2.04182e-06
-6.01958e-11
1.75913e-06
-5.51529e-11
1.5117e-06
-6.55196e-11
1.29427e-06
-6.04872e-11
1.10096e-06
-5.24885e-11
9.35218e-07
-5.78157e-11
7.90889e-07
-1.22888e-10
6.66055e-07
-7.43203e-11
5.60502e-07
-4.40466e-11
4.7314e-07
-2.5491e-11
3.99361e-07
-1.49223e-11
3.39952e-07
-8.38337e-12
2.92936e-07
-4.59748e-12
2.56148e-07
-2.46332e-12
2.28636e-07
-1.2385e-12
2.09138e-07
-5.61258e-13
1.96339e-07
-2.12218e-13
1.89001e-07
-5.24321e-14
1.86592e-07
-1.00002e-15
1.856e-07
-1.80277e-16
1.83604e-07
-6.57213e-18
1.80827e-07
-9.21013e-18
1.77319e-07
-1.17484e-17
1.73139e-07
-1.38039e-17
1.68261e-07
-1.34562e-17
1.62799e-07
-1.43275e-17
1.56873e-07
-1.49305e-17
1.50639e-07
-1.15112e-17
1.44245e-07
-1.31695e-17
1.37639e-07
-6.24e-18
1.30833e-07
-9.91773e-18
1.23962e-07
-1.1567e-17
1.17118e-07
-1.12548e-17
1.10448e-07
-5.80914e-16
1.04105e-07
-1.38448e-15
9.81785e-08
-1.71898e-15
9.26706e-08
-1.45685e-15
8.75357e-08
-1.03222e-15
8.27373e-08
-7.896e-16
7.82515e-08
-7.59218e-16
7.4097e-08
-8.5748e-16
7.03911e-08
-9.22861e-16
6.72431e-08
-8.4313e-16
6.46258e-08
-6.09975e-16
6.24025e-08
-3.51285e-16
6.04401e-08
-1.79687e-16
5.86843e-08
-1.01727e-16
5.71342e-08
-6.37125e-17
5.58885e-08
-4.10363e-17
5.50168e-08
-2.34456e-17
5.46165e-08
-9.78714e-18
5.47077e-08
-2.38706e-18
5.47978e-08
-1.44807e-16
5.45256e-08
-1.36805e-15
5.39028e-08
-3.70241e-15
5.29817e-08
-6.74892e-15
5.18239e-08
-1.0109e-14
5.04858e-08
-1.34621e-14
4.90038e-08
-1.38802e-14
4.73919e-08
-4.99578e-15
4.56592e-08
6.132e-15
4.38246e-08
1.87037e-14
4.19164e-08
3.19527e-14
3.99618e-08
4.53871e-14
3.79836e-08
5.85279e-14
3.60017e-08
7.11959e-14
3.40318e-08
8.26656e-14
3.20857e-08
9.33079e-14
3.01751e-08
1.02582e-13
2.83113e-08
1.1033e-13
2.65013e-08
1.16648e-13
2.47482e-08
1.21753e-13
2.30557e-08
1.2559e-13
2.14312e-08
1.27886e-13
1.98796e-08
1.2879e-13
1.84021e-08
1.2861e-13
1.70003e-08
1.27354e-13
1.56749e-08
1.25082e-13
1.44241e-08
1.2203e-13
1.32453e-08
1.184e-13
1.21367e-08
1.14279e-13
1.10981e-08
1.09669e-13
1.01282e-08
1.04669e-13
9.22467e-09
9.94085e-14
8.38503e-09
9.3998e-14
7.60647e-09
8.85215e-14
6.88585e-09
8.3036e-14
6.22015e-09
7.75857e-14
5.60651e-09
7.22424e-14
5.04211e-09
6.70847e-14
4.52399e-09
6.2152e-14
4.04927e-09
5.74354e-14
3.61557e-09
5.29061e-14
3.22046e-09
4.85901e-14
2.86108e-09
4.45547e-14
2.53448e-09
4.0848e-14
2.2381e-09
3.74376e-14
1.96998e-09
3.42462e-14
1.72832e-09
3.12471e-14
1.51092e-09
2.84965e-14
1.31522e-09
2.6075e-14
1.13893e-09
2.3927e-14
9.80213e-10
2.19912e-14
8.35447e-10
2.04079e-14
6.86299e-10
1.64429e-14
8.5715e-14
0.000289878
0.000353753
0.000276966
0.000439625
0.000251869
0.000557493
0.000238759
0.000627253
0.000214302
0.000732488
0.000188786
0.000808339
0.000160853
0.000852611
0.0001302
0.000893812
0.00010407
0.000719774
4.23592e-05
0.0002031
7.08646e-06
1.73573e-05
3.96886e-06
5.92626e-06
1.06639e-06
2.4928e-06
4.30529e-07
7.24078e-07
2.04638e-07
3.32767e-07
5.58605e-08
7.54652e-08
2.67507e-08
2.73486e-08
1.01563e-08
1.05358e-08
2.86875e-09
2.4892e-09
1.61855e-09
1.11499e-09
4.84734e-10
2.99933e-10
2.1165e-10
1.12732e-10
3.43309e-11
2.37665e-11
1.50035e-11
6.25748e-12
9.29386e-12
1.79607e-12
5.04637e-12
1.05476e-12
1.99543e-12
3.86759e-13
6.95085e-13
1.31985e-13
1.45669e-13
3.48674e-14
1.10797e-14
5.79063e-15
4.19783e-15
1.95304e-15
2.66584e-15
8.49927e-16
1.98665e-15
6.13756e-16
1.70893e-16
2.84232e-16
1.2551e-16
4.05902e-16
5.86676e-18
1.00384e-17
1.20077e-17
3.33113e-18
3.11542e-17
-1.87005e-18
4.22576e-17
-8.52535e-18
2.22767e-16
-6.17994e-17
5.60564e-16
-1.32677e-16
6.77322e-16
-2.90491e-16
3.9488e-15
-3.07271e-15
7.83775e-15
-7.23378e-15
2.07035e-14
-2.98152e-14
4.05049e-14
-6.46931e-14
5.51302e-14
-2.12353e-13
1.88782e-13
-9.97609e-13
5.60616e-13
-2.12922e-12
5.87586e-14
-8.64962e-12
-5.70218e-12
-3.55912e-11
-4.13613e-11
-1.15312e-10
-4.16756e-10
-5.5749e-10
-2.36008e-09
-1.75762e-09
-1.42169e-08
-8.17637e-09
-6.44509e-08
-4.72964e-08
-1.03685e-07
-1.91679e-07
9.42808e-07
-9.936e-07
1.37839e-05
-5.61833e-06
4.76097e-05
-3.28201e-05
8.66634e-05
-0.000185047
0.00012215
-0.000527639
0.000150045
-0.000659379
0.000171399
-0.000723956
0.000191256
-0.000691004
0.000210764
-0.000652319
0.000228543
-0.000602525
0.000246523
-0.000546475
0.000262087
-0.000479445
0.000276102
-0.000405115
0.000289874
-0.000321517
0.000299321
-0.000222555
0.000306189
-0.000114656
0.000310615
3.59572e-06
0.000310165
0.000130096
0.000304836
0.000269119
0.000293045
0.000406252
0.000276643
0.000536524
0.000257362
0.000652245
0.000235468
0.000750876
0.000213641
0.000831707
0.000194302
0.000882762
0.000175736
0.000869538
0.000129417
0.0005324
6.33425e-05
0.000167861
2.26396e-05
2.92029e-06
6.52718e-06
2.17903e-06
1.90185e-06
6.97353e-07
5.34361e-07
3.98552e-07
1.02718e-07
1.58646e-07
3.34288e-08
4.86733e-08
1.3739e-08
1.26271e-08
8.0527e-09
4.29771e-09
3.16575e-09
8.96932e-10
1.62932e-09
2.39519e-10
7.26535e-10
6.81738e-11
3.16424e-10
2.30085e-14
1.567e-10
7.4679e-15
9.08142e-11
3.53298e-15
5.80007e-11
2.05469e-15
4.34136e-11
1.45303e-15
3.53718e-11
1.07074e-15
3.00859e-11
7.69655e-16
2.66226e-11
4.89984e-16
2.48284e-11
2.43856e-16
2.38023e-11
4.48344e-17
2.38381e-11
-6.07334e-13
2.68683e-11
-1.20958e-12
3.13681e-11
-2.17208e-12
3.57816e-11
-3.35442e-12
4.19757e-11
-4.85352e-12
5.11003e-11
-7.1817e-12
6.24443e-11
-1.01491e-11
7.83739e-11
-1.39845e-11
1.03169e-10
-2.1235e-11
1.38155e-10
-3.12007e-11
1.95393e-10
-4.74395e-11
2.81823e-10
-7.48514e-11
4.2481e-10
-1.19774e-10
6.63155e-10
-2.00779e-10
1.06367e-09
-3.49893e-10
1.74411e-09
-6.25693e-10
2.83235e-09
-1.16597e-09
4.27275e-09
-2.37607e-09
5.08916e-09
-5.05432e-09
3.46577e-09
-1.10213e-08
-1.7908e-09
-2.50821e-08
-5.12117e-09
-6.06428e-08
3.5495e-08
-1.56622e-07
3.64987e-07
-3.98879e-07
2.08531e-06
-1.06349e-06
9.18287e-06
-3.0701e-06
2.89964e-05
-9.90178e-06
5.88812e-05
-3.27442e-05
9.00711e-05
-9.86605e-05
0.000115834
-0.000252704
0.000133646
-0.00035411
0.000149388
-0.000388371
0.000161883
-0.000402103
0.000171788
-0.000382621
0.000180992
-0.000332459
0.000189085
-0.000273752
0.000195611
-0.000211677
0.000199639
-0.000142966
0.000201506
-7.39787e-05
0.000200964
-3.18885e-06
0.000198895
6.38651e-05
0.000194639
0.000130928
0.000188531
0.000194579
0.000180767
0.000254125
0.000171382
0.000308472
0.000160536
0.000354115
0.000147969
0.000386073
0.000133
0.000391411
0.000113499
0.00034337
8.79231e-05
0.000204352
6.14507e-05
0.000130679
3.92681e-05
7.5328e-05
2.258e-05
2.33926e-05
1.31824e-05
4.78101e-07
7.11105e-06
3.49656e-07
2.9494e-06
2.27222e-07
5.9342e-07
1.84204e-07
7.81314e-08
7.90872e-08
-4.08178e-08
3.99857e-08
-6.1847e-08
2.19762e-08
-4.9504e-08
1.05927e-08
-2.9595e-08
4.81815e-09
-1.19974e-08
2.17346e-09
-4.32248e-09
7.17564e-10
-1.95553e-09
1.86717e-10
-5.78311e-10
9.41935e-11
2.2e-10
4.0069e-11
6.40712e-10
2.32414e-12
8.25836e-10
-2.7959e-14
8.55752e-10
-8.72221e-15
7.79298e-10
-1.49323e-15
6.98673e-10
-2.47248e-14
6.89135e-10
-2.33675e-13
6.54488e-10
-4.19494e-13
5.95421e-10
-6.90875e-13
4.96809e-10
-1.07072e-12
3.15041e-10
-1.44054e-12
1.47421e-12
-1.90537e-12
-5.48327e-10
-2.47288e-12
-1.48919e-09
-3.11828e-12
-3.00848e-09
-4.03258e-12
-5.13948e-09
-5.14147e-12
-8.09932e-09
-6.56649e-12
-1.17586e-08
-8.32067e-12
-1.60798e-08
-1.04466e-11
-2.0401e-08
-1.30764e-11
-2.33592e-08
-1.62009e-11
-2.3171e-08
-2.00097e-11
-1.61802e-08
-2.33553e-11
1.66383e-09
-2.54366e-11
4.00407e-08
-2.78511e-11
1.09483e-07
-3.19205e-11
2.27264e-07
-3.56186e-11
4.10668e-07
-3.96048e-11
6.87315e-07
-4.25026e-11
1.07907e-06
-4.33382e-11
1.61292e-06
-4.22258e-11
2.29843e-06
-3.77414e-11
3.1447e-06
-3.68451e-11
4.1461e-06
-3.58502e-11
5.28324e-06
-3.40279e-11
6.52515e-06
-3.0859e-11
7.79692e-06
-2.69799e-11
9.03793e-06
-2.09139e-11
1.02206e-05
-1.67505e-11
1.12286e-05
-1.34594e-11
1.20102e-05
-1.04194e-11
1.25656e-05
-7.33792e-12
1.28524e-05
-4.2508e-12
1.28572e-05
-1.256e-12
1.27286e-05
9.15942e-09
1.24354e-05
8.81759e-09
1.20449e-05
4.75499e-09
1.1569e-05
2.85611e-09
1.09789e-05
1.15701e-09
1.02896e-05
-8.11584e-10
9.55588e-06
-2.28606e-09
8.76606e-06
-3.02652e-09
7.96161e-06
-3.28765e-09
7.15713e-06
-3.81862e-09
6.37589e-06
-3.63892e-09
5.60277e-06
-3.14706e-09
4.85353e-06
-2.77039e-09
4.13461e-06
-2.26182e-09
3.47813e-06
-1.88465e-09
2.86125e-06
-1.20991e-09
2.30196e-06
-8.71969e-10
1.80944e-06
-5.40745e-10
1.36949e-06
-2.01012e-10
9.97215e-07
-6.92703e-11
6.82082e-07
1.24683e-10
4.35134e-07
1.70627e-10
2.50438e-07
2.07158e-10
1.25593e-07
2.47775e-10
5.72695e-08
2.49284e-10
3.33507e-08
1.1335e-10
2.70809e-08
3.7737e-11
2.14294e-08
3.12468e-11
1.6956e-08
2.41348e-11
1.33955e-08
1.92818e-11
1.05098e-08
1.47045e-11
8.23761e-09
1.13497e-11
6.39042e-09
8.19584e-12
4.95436e-09
6.06137e-12
3.80573e-09
4.25215e-12
2.91049e-09
2.94991e-12
2.21849e-09
2.04127e-12
1.67534e-09
1.3349e-12
1.26153e-09
8.70444e-13
9.49168e-10
5.70183e-13
7.04719e-10
3.39831e-13
5.26166e-10
2.15858e-13
3.91769e-10
1.29046e-13
2.89018e-10
7.2762e-14
2.11781e-10
3.85337e-14
1.57052e-10
2.33221e-14
1.13414e-10
9.89096e-15
8.1297e-11
4.44771e-15
5.74778e-11
-1.24123e-18
3.8893e-11
-3.72153e-19
2.45233e-11
-8.90051e-20
1.3491e-11
-1.46017e-20
4.8332e-12
-1.05781e-21
1.07442e-15
2.95779e-25
2.46468e-17
-9.89118e-19
2.38195e-17
-1.78142e-18
2.27038e-17
-2.84087e-18
2.22798e-17
-3.69646e-18
2.17163e-17
-4.33565e-18
1.91687e-17
-4.76194e-18
1.83418e-17
-5.01575e-18
1.74968e-17
-5.13224e-18
1.49294e-17
-5.2278e-18
1.40297e-17
-5.06777e-18
1.31175e-17
-4.89959e-18
1.1443e-17
-4.67739e-18
1.05292e-17
-4.34997e-18
9.65296e-18
-4.03741e-18
3.34032e-16
-3.71645e-18
7.49935e-16
-3.37353e-18
8.78474e-16
-3.00672e-18
7.05306e-16
-2.67601e-18
4.76649e-16
-2.2792e-18
3.49903e-16
-1.95688e-18
3.24789e-16
-1.65654e-18
3.558e-16
-1.37195e-18
3.69863e-16
-1.11746e-18
3.24479e-16
-8.92171e-19
2.2753e-16
-6.95772e-19
1.30762e-16
-5.28368e-19
6.96005e-17
-3.88168e-19
4.29232e-17
-2.82696e-19
3.08919e-17
-1.78106e-19
2.43545e-17
-1.05814e-19
1.82282e-17
-6.46624e-20
1.16052e-17
-1.97834e-20
6.71317e-18
4.14322e-19
2.63004e-14
3.62625e-17
5.12206e-14
4.42234e-17
6.3651e-14
5.35203e-17
6.91097e-14
6.75489e-17
6.97313e-14
8.61158e-17
6.70611e-14
1.08193e-16
6.23841e-14
1.32843e-16
5.67292e-14
1.59658e-16
5.0719e-14
1.87959e-16
4.46795e-14
2.16355e-16
3.87826e-14
2.43184e-16
3.32109e-14
2.67474e-16
2.80422e-14
2.88716e-16
2.352e-14
3.06435e-16
1.93763e-14
3.20646e-16
1.58378e-14
3.31653e-16
1.28147e-14
3.39497e-16
1.02129e-14
3.44336e-16
7.98882e-15
3.4682e-16
6.17044e-15
3.47734e-16
4.748e-15
3.47423e-16
3.60669e-15
3.45897e-16
2.67198e-15
3.43681e-16
1.93921e-15
3.41443e-16
1.3697e-15
3.39469e-16
9.07958e-16
3.38035e-16
5.31494e-16
3.37531e-16
2.41882e-16
3.3825e-16
3.59693e-17
3.40333e-16
-1.12036e-16
3.43819e-16
-1.98712e-16
3.48788e-16
-2.86027e-16
3.55365e-16
-3.49388e-16
3.636e-16
-3.9478e-16
3.73536e-16
-4.2875e-16
3.85174e-16
-4.60406e-16
3.98511e-16
-4.93264e-16
4.13561e-16
-5.22951e-16
4.30337e-16
-5.44838e-16
4.4883e-16
-5.60578e-16
4.69014e-16
-5.79965e-16
4.90869e-16
-6.10326e-16
5.14396e-16
-6.50188e-16
5.39612e-16
-6.91991e-16
5.66528e-16
-7.33586e-16
5.9512e-16
-7.84041e-16
6.25346e-16
-8.56317e-16
6.57162e-16
-9.57958e-16
6.90542e-16
-1.0879e-15
7.25478e-16
-1.26124e-15
7.61889e-16
-1.52885e-15
7.99685e-16
-2.08563e-15
8.39327e-16
-7.71791e-15
8.84747e-16
9.74091e-16
0.000296586
0.000361825
0.00028341
0.000452802
0.000251718
0.000589185
0.000240045
0.000638926
0.000215358
0.000757175
0.000196349
0.000827018
0.000172238
0.000741192
7.72812e-05
0.000222267
1.3453e-05
1.73592e-05
6.82957e-06
7.46192e-06
1.63584e-06
2.96359e-06
4.84851e-07
8.66687e-07
1.6476e-07
3.61573e-07
4.88134e-08
9.56434e-08
2.36714e-08
4.15257e-08
5.55882e-09
8.80343e-09
2.40984e-09
2.90921e-09
8.89603e-10
1.06794e-09
2.25798e-10
2.30542e-10
1.16448e-10
9.45485e-11
2.84754e-11
2.30478e-11
1.22267e-11
7.92614e-12
1.68079e-12
1.51812e-12
6.90973e-13
3.46444e-13
4.06702e-13
9.61263e-14
1.93706e-13
4.96051e-14
6.56812e-14
1.75393e-14
1.85161e-14
6.24989e-15
2.32651e-15
1.86759e-15
2.4297e-16
6.85209e-16
1.50576e-16
9.37678e-16
5.75644e-17
3.73114e-16
3.96225e-17
2.35509e-16
1.13262e-17
5.45202e-17
1.57515e-18
5.3489e-18
1.77705e-19
3.20842e-19
6.1887e-19
1.74387e-19
1.25094e-18
-1.36271e-19
2.30451e-18
-8.53065e-19
1.01467e-17
-5.96465e-18
1.353e-17
-1.01687e-17
1.8104e-17
-3.53413e-17
6.84253e-17
-9.49022e-17
1.25279e-16
-2.09826e-16
3.65416e-16
-5.61161e-16
8.05318e-16
-6.71544e-16
1.81e-15
-5.51919e-15
6.29679e-15
-2.58998e-14
1.68261e-14
-4.17577e-14
4.68093e-14
-2.31471e-13
1.11336e-13
-9.29952e-13
3.9211e-13
-3.13536e-12
1.18115e-12
-1.71633e-11
-6.96001e-13
-4.27161e-11
-4.13505e-11
-2.33202e-10
-5.59677e-10
-1.37677e-09
-2.80228e-09
-4.41942e-09
-1.45029e-08
-2.57214e-08
-1.49827e-10
-1.38904e-07
1.19679e-06
-5.88773e-07
1.40379e-05
-3.22557e-06
5.9452e-05
-1.88053e-05
0.000114012
-0.000106342
0.000160251
-0.000447209
0.000193141
-0.000571823
0.000216266
-0.000648105
0.000234533
-0.000617982
0.00025256
-0.000563432
0.000267869
-0.000494415
0.000282154
-0.000419307
0.000295963
-0.000335253
0.00030566
-0.000232229
0.000313171
-0.000122164
0.000317759
-9.9226e-07
0.000317727
0.000130121
0.000312973
0.000273851
0.000302492
0.00041667
0.00028717
0.00055164
0.000269144
0.000669484
0.000250451
0.000765713
0.000234505
0.000818058
0.000197894
0.000660998
0.000108098
0.000221656
3.99314e-05
2.24395e-05
1.20768e-05
1.46417e-06
3.72022e-06
3.48163e-07
1.07487e-06
5.47423e-07
2.08051e-07
1.82599e-07
5.92279e-08
6.81291e-08
1.81864e-08
2.27909e-08
6.86307e-09
5.92317e-09
2.21543e-09
1.42077e-09
8.73706e-10
4.08274e-10
2.41714e-10
9.11031e-11
8.30384e-11
2.01129e-11
3.05151e-11
5.15561e-12
1.07923e-11
1.3125e-12
4.65012e-12
4.41269e-15
2.50654e-12
2.93627e-15
1.41655e-12
1.89784e-15
1.0401e-12
1.46993e-15
8.26207e-13
1.10868e-15
6.71596e-13
7.94141e-16
5.58865e-13
5.03586e-16
5.2376e-13
2.46172e-16
5.10544e-13
5.44067e-17
4.61832e-13
-1.82828e-14
5.36229e-13
-4.03024e-14
6.8106e-13
-7.65791e-14
7.81866e-13
-1.14151e-13
9.47488e-13
-1.64149e-13
1.24405e-12
-2.58089e-13
1.55089e-12
-3.50833e-13
2.01667e-12
-4.781e-13
2.8927e-12
-7.62984e-13
3.98496e-12
-1.07485e-12
5.94388e-12
-1.63933e-12
9.07254e-12
-2.60619e-12
1.42106e-11
-4.05513e-12
2.34586e-11
-6.78329e-12
4.02476e-11
-1.1529e-11
7.1303e-11
-2.0828e-11
1.32359e-10
-3.78526e-11
2.66797e-10
-7.87542e-11
5.58221e-10
-1.69334e-10
1.19156e-09
-3.76686e-10
2.60323e-09
-8.68673e-10
5.80813e-09
-2.04775e-09
1.20862e-08
-5.29619e-09
2.4583e-08
-1.32158e-08
5.88276e-08
-3.64532e-08
1.82826e-07
-1.06175e-07
7.20147e-07
-3.04489e-07
3.15385e-06
-8.61753e-07
1.23289e-05
-2.4446e-06
3.70939e-05
-7.46181e-06
7.5923e-05
-2.31655e-05
0.000112775
-6.25203e-05
0.000143075
-0.000140409
0.000163939
-0.000241856
0.00017924
-0.000243633
0.000191566
-0.000222945
0.00020034
-0.000185623
0.000205594
-0.000131025
0.000208285
-6.94454e-05
0.000208178
-2.59171e-06
0.000206484
6.21167e-05
0.000202238
0.000125655
0.000195685
0.000180928
0.00018563
0.000221169
0.000169699
0.000230922
0.000144173
0.000181855
0.000110835
0.000126488
7.76695e-05
8.86392e-05
4.78209e-05
4.22105e-05
2.70402e-05
3.14134e-07
1.46369e-05
-2.64094e-08
6.17088e-06
-5.44879e-08
1.73814e-06
1.56023e-07
8.12223e-07
8.53512e-08
2.79544e-07
6.33328e-08
6.25193e-08
3.10686e-08
1.406e-08
1.87839e-08
3.14053e-09
6.59304e-09
1.01347e-09
2.62516e-09
9.17961e-10
1.1802e-09
8.31415e-10
4.89787e-10
6.74358e-10
2.07051e-10
4.74069e-10
9.20988e-11
2.38717e-10
2.79023e-11
1.35912e-10
6.89461e-12
9.55773e-11
3.04374e-12
6.23845e-11
1.05231e-12
3.89206e-11
2.26394e-16
2.28851e-11
9.36527e-17
1.11869e-11
2.76493e-17
2.77524e-12
4.1285e-18
8.69759e-14
-1.08962e-15
7.98738e-14
-2.78268e-14
7.77002e-14
-5.08007e-14
9.38187e-14
-8.84302e-14
1.09302e-13
-1.40769e-13
1.18699e-13
-1.91399e-13
1.35023e-13
-2.61171e-13
1.54766e-13
-3.49112e-13
1.80692e-13
-4.54315e-13
2.2142e-13
-6.14221e-13
2.70973e-13
-8.23029e-13
3.37622e-13
-1.11054e-12
4.20281e-13
-1.48243e-12
5.28617e-13
-1.98276e-12
6.67799e-13
-2.67726e-12
8.4561e-13
-3.59841e-12
1.05919e-12
-4.8359e-12
1.25132e-12
-5.98034e-12
1.4257e-12
-7.0312e-12
1.69703e-12
-8.40894e-12
2.11855e-12
-1.05351e-11
2.57531e-12
-1.26298e-11
3.13628e-12
-1.52044e-11
3.65695e-12
-1.7479e-11
4.07817e-12
-1.91315e-11
4.33592e-12
-2.00011e-11
4.39412e-12
-1.92139e-11
5.08546e-12
-2.06967e-11
5.66994e-12
-2.17286e-11
6.15059e-12
-2.2076e-11
6.39034e-12
-2.10197e-11
6.58854e-12
-1.93682e-11
5.82897e-12
-1.49923e-11
5.93374e-12
-1.23892e-11
6.16216e-12
-1.05475e-11
6.26133e-12
-8.1363e-12
6.29765e-12
-5.75985e-12
6.29198e-12
-3.39459e-12
6.2696e-12
-9.0643e-13
9.16585e-09
-2.98936e-16
1.98396e-08
-9.84081e-15
2.71376e-08
-5.63562e-14
3.28842e-08
-1.69197e-13
3.7004e-08
-3.70807e-13
3.89418e-08
-6.45939e-13
3.89215e-08
-9.28326e-13
3.75544e-08
-1.19656e-12
3.52299e-08
-1.37592e-12
3.16904e-08
-1.44678e-12
2.77068e-08
-1.4019e-12
2.36875e-08
-1.11096e-12
1.96238e-08
5.45951e-12
1.57823e-08
1.09267e-11
1.2179e-08
1.3734e-11
9.21282e-09
1.62348e-11
6.6548e-09
1.63715e-11
4.59455e-09
1.49733e-11
3.06681e-09
1.35351e-11
1.91335e-09
1.08764e-11
1.14895e-09
9.18434e-12
6.4203e-10
6.94592e-12
3.54617e-10
5.21205e-12
2.13547e-10
4.50035e-12
1.44663e-10
3.78366e-12
9.03824e-11
1.63761e-12
6.14417e-11
5.21187e-13
4.54152e-11
3.63593e-13
3.32235e-11
2.5573e-13
2.44538e-11
1.86565e-13
1.78013e-11
1.31933e-13
1.30404e-11
9.33052e-14
9.34608e-12
6.27981e-14
6.71835e-12
4.25109e-14
4.74035e-12
2.91925e-14
3.30724e-12
1.90907e-14
2.29942e-12
1.17502e-14
1.56106e-12
6.53211e-15
1.05081e-12
2.37479e-15
7.06648e-13
1.27968e-18
4.5907e-13
9.14714e-19
3.00325e-13
6.48031e-19
1.9452e-13
4.52642e-19
1.22799e-13
3.08162e-19
7.55463e-14
2.04525e-19
4.73127e-14
1.36755e-19
2.76532e-14
8.82416e-20
1.57072e-14
5.71211e-20
8.54938e-15
3.8484e-20
4.17261e-15
2.79568e-20
1.7274e-15
2.26687e-20
5.17576e-16
2.16579e-20
2.9238e-16
2.5927e-16
1.55794e-17
5.87357e-18
3.79456e-18
-1.06974e-19
3.47592e-18
-1.37024e-18
3.20742e-18
-2.39276e-18
2.94621e-18
-3.21679e-18
2.68508e-18
-3.83824e-18
2.43522e-18
-4.2662e-18
2.18917e-18
-4.53497e-18
1.9564e-18
-4.67715e-18
1.75807e-18
-4.72289e-18
1.52585e-18
-4.65336e-18
1.31715e-18
-4.5096e-18
1.12819e-18
-4.2894e-18
9.41165e-19
-4.03072e-18
7.80027e-19
-3.74772e-18
6.33987e-19
-3.4404e-18
4.96145e-19
-3.10861e-18
3.68982e-19
-2.75932e-18
2.6399e-19
-2.41531e-18
1.72573e-19
-2.0949e-18
1.05701e-19
-1.79928e-18
5.59224e-20
-1.52129e-18
2.03125e-20
-1.25681e-18
-4.80358e-21
-1.01531e-18
-2.19822e-20
-8.02367e-19
-3.44195e-20
-6.19258e-19
-4.24479e-20
-4.65282e-19
-4.79039e-20
-3.38313e-19
-4.61304e-20
-2.34399e-19
-4.35274e-20
-1.51033e-19
-4.67676e-20
-8.78244e-20
-3.73869e-20
-4.37227e-20
-3.42453e-20
-1.41975e-20
-1.01905e-19
1.09738e-20
-5.01212e-19
1.2928e-19
-1.23151e-18
1.13918e-18
-2.15411e-18
4.02728e-18
-3.12074e-18
9.20423e-18
-4.02501e-18
1.65099e-17
-4.82956e-18
2.54455e-17
-5.54013e-18
3.55554e-17
-6.13529e-18
4.66157e-17
-6.5644e-18
5.82667e-17
-6.79369e-18
6.98146e-17
-6.8393e-18
8.04463e-17
-6.73207e-18
8.9676e-17
-6.49648e-18
9.72385e-17
-6.1674e-18
1.02897e-16
-5.77571e-18
1.06647e-16
-5.33423e-18
1.08626e-16
-4.8624e-18
1.08835e-16
-4.38839e-18
1.07364e-16
-3.93061e-18
1.04522e-16
-3.48762e-18
1.00681e-16
-3.05623e-18
9.60026e-17
-2.65178e-18
9.04907e-17
-2.28552e-18
8.43935e-17
-1.95486e-18
7.80259e-17
-1.65983e-18
7.1519e-17
-1.40282e-18
6.49983e-17
-1.18146e-18
5.86417e-17
-9.90245e-19
5.25783e-17
-8.24298e-19
4.68622e-17
-6.81889e-19
4.14978e-17
-5.62648e-19
3.65067e-17
-4.62795e-19
3.19306e-17
-3.80325e-19
2.77743e-17
-3.12185e-19
2.40375e-17
-2.56239e-19
2.06987e-17
-2.11e-19
1.77333e-17
-1.74864e-19
1.51232e-17
-1.45901e-19
1.28491e-17
-1.22392e-19
1.08808e-17
-1.033e-19
9.18008e-18
-8.83215e-20
7.71064e-18
-7.71313e-20
6.44922e-18
-6.89723e-20
5.37994e-18
-6.28401e-20
4.48391e-18
-5.81534e-20
3.73316e-18
-5.50235e-20
3.09898e-18
-5.38181e-20
2.56335e-18
-5.46488e-20
2.11895e-18
-5.72042e-20
1.76004e-18
-6.20228e-20
1.4708e-18
-7.22241e-20
1.2411e-18
-1.03004e-19
1.09195e-18
-5.76528e-19
1.18254e-18
6.56589e-18
0.000298011
0.000373345
0.000286026
0.000464787
0.000243412
0.000631799
0.000233911
0.00064835
0.000219365
0.000687237
0.000115539
0.000228235
2.55573e-05
1.64547e-05
1.0402e-05
8.99914e-06
2.42634e-06
3.22925e-06
7.68703e-07
1.26232e-06
1.98354e-07
5.01367e-07
4.93685e-08
1.29896e-07
1.95533e-08
5.07108e-08
5.68984e-09
1.27049e-08
2.61876e-09
5.16211e-09
5.46758e-10
1.03525e-09
2.11809e-10
3.12257e-10
7.58326e-11
1.08378e-10
1.772e-11
2.17236e-11
8.17776e-12
8.02837e-12
1.82696e-12
1.80664e-12
6.84964e-13
5.61648e-13
8.36957e-14
1.01234e-13
3.20295e-14
2.07719e-14
1.75797e-14
7.01545e-15
7.33158e-15
3.38713e-15
2.11649e-15
1.32216e-15
4.63871e-16
1.1001e-15
6.08512e-17
3.82089e-16
4.03964e-17
2.72614e-16
6.20785e-18
4.19327e-17
2.48973e-18
1.71331e-17
1.07172e-18
6.70994e-18
2.24206e-19
1.13692e-18
2.37607e-20
8.50172e-20
1.45173e-20
2.77124e-20
5.33966e-20
1.53848e-20
8.48883e-20
-1.48263e-20
2.17021e-19
-1.35835e-19
9.19399e-19
-8.68878e-19
9.89714e-19
-1.38972e-18
2.1495e-18
-5.74794e-18
4.96149e-18
-1.49452e-17
8.99556e-18
-3.57829e-17
1.82689e-17
-1.04767e-16
1.61605e-17
-1.5424e-16
3.81122e-17
-3.96497e-16
1.30678e-16
-7.79708e-16
2.91318e-16
-9.10965e-16
1.4876e-15
-6.11723e-15
3.96533e-15
-2.29809e-14
1.64495e-14
-7.40996e-14
8.37389e-14
-4.33761e-13
1.98914e-13
-9.07664e-13
1.40808e-12
-5.72634e-12
7.2583e-12
-3.53402e-11
1.51375e-11
-9.59181e-11
2.17204e-11
-6.48412e-10
-1.1369e-10
-3.53782e-09
3.88985e-09
-1.48927e-08
7.59822e-08
-8.36058e-08
1.12833e-06
-3.7682e-07
1.1753e-05
-1.86065e-06
5.93581e-05
-1.05706e-05
0.000129561
-5.49859e-05
0.000192576
-0.000236094
0.000232286
-0.000449656
0.00026014
-0.000501147
0.000278138
-0.000506745
0.000293204
-0.000434495
0.000306921
-0.000348127
0.000317508
-0.000242371
0.000326293
-0.000130869
0.000331177
-5.87954e-06
0.000332933
0.00012827
0.00032933
0.000277098
0.000319306
0.000425605
0.000307199
0.000559657
0.000294046
0.000659964
0.000266788
0.000632966
0.000172453
0.000260115
7.37969e-05
6.40295e-05
2.49845e-05
-1.83293e-06
7.40187e-06
-6.55812e-07
2.41145e-06
5.18365e-07
4.59111e-07
2.40688e-07
1.14688e-07
1.30535e-07
2.41257e-08
3.63582e-08
8.07221e-09
1.06555e-08
2.36999e-09
3.30062e-09
6.88048e-10
7.5415e-10
2.04702e-10
1.63357e-10
5.65609e-11
4.29504e-11
1.3576e-11
9.09229e-12
3.61116e-12
1.74659e-12
9.56217e-13
4.03767e-13
2.73965e-13
8.99011e-14
1.02958e-13
2.37327e-14
4.92723e-14
1.22775e-14
2.64904e-14
7.65646e-15
1.94418e-14
5.93824e-15
1.4795e-14
4.27458e-15
1.12116e-14
2.011e-15
8.91248e-15
1.0055e-15
7.90552e-15
5.55332e-16
7.64602e-15
1.0646e-15
6.13552e-15
-8.56431e-16
7.54935e-15
-1.71349e-15
9.70708e-15
-4.58335e-15
1.0607e-14
-6.70415e-15
1.26824e-14
-9.29279e-15
1.74241e-14
-1.38665e-14
2.08495e-14
-1.74958e-14
2.70233e-14
-2.38841e-14
4.10408e-14
-3.52397e-14
5.45338e-14
-4.5299e-14
8.31166e-14
-6.55428e-14
1.31381e-13
-1.00328e-13
2.11034e-13
-1.43575e-13
3.65699e-13
-2.28764e-13
6.80931e-13
-3.48859e-13
1.33144e-12
-6.03e-13
2.728e-12
-1.07349e-12
6.25712e-12
-2.34468e-12
1.49485e-11
-5.01236e-12
3.65391e-11
-1.09781e-11
8.92359e-11
-2.55982e-11
2.27769e-10
-5.68651e-11
5.91699e-10
-1.48766e-10
1.57596e-09
-3.75964e-10
4.49602e-09
-1.08015e-09
1.29008e-08
-3.30784e-09
3.59253e-08
-9.63784e-09
1.01201e-07
-2.78986e-08
3.16348e-07
-7.89679e-08
1.08963e-06
-2.34613e-07
3.89595e-06
-6.58951e-07
1.21607e-05
-1.72512e-06
3.18252e-05
-4.27957e-06
6.53887e-05
-1.00911e-05
9.94116e-05
-2.05688e-05
0.000127941
-3.47298e-05
0.000147907
-4.51822e-05
0.000160956
-4.39898e-05
0.000165997
-2.75921e-05
0.000164588
-6.11816e-07
0.000157856
1.95381e-05
0.000143336
3.69351e-05
0.000121868
4.5773e-05
9.52599e-05
4.31641e-05
6.70891e-05
2.79297e-05
4.31488e-05
4.56798e-06
2.64358e-05
-6.87111e-07
1.34121e-05
-5.82032e-07
4.90472e-06
-1.58633e-07
2.18371e-06
-9.22416e-09
9.66162e-07
7.13507e-08
2.80161e-07
3.81686e-08
7.85443e-08
3.23884e-08
2.32877e-08
1.21368e-08
7.14852e-09
6.43787e-09
2.02799e-09
2.67435e-09
1.39543e-09
1.51005e-09
7.6e-10
4.78958e-10
4.18674e-10
1.76116e-10
2.09445e-10
7.25048e-11
9.31929e-11
2.74828e-11
4.23414e-11
1.0804e-11
1.96317e-11
4.4382e-12
6.4807e-12
1.21737e-12
2.71945e-12
2.85329e-13
1.59817e-12
9.35983e-14
7.92127e-13
2.92839e-14
3.58251e-13
2.42584e-16
1.4008e-13
1.0323e-16
3.84e-14
3.66263e-17
7.22171e-15
1.36759e-17
6.79299e-15
9.18433e-17
6.08604e-15
-2.4112e-16
5.42196e-15
-4.56524e-16
6.71547e-15
-7.00521e-16
7.56943e-15
-2.15784e-15
7.87843e-15
-2.86848e-15
8.67611e-15
-3.83375e-15
9.51472e-15
-4.87283e-15
1.05906e-14
-6.32096e-15
1.25146e-14
-8.12472e-15
1.47134e-14
-1.03858e-14
1.75042e-14
-1.37325e-14
2.06396e-14
-1.75702e-14
2.45473e-14
-2.36452e-14
2.93772e-14
-3.08949e-14
3.45973e-14
-4.09164e-14
3.89064e-14
-5.45001e-14
3.97857e-14
-6.81885e-14
4.02712e-14
-8.31921e-14
4.3713e-14
-9.409e-14
4.96438e-14
-1.22821e-13
5.7796e-14
-1.51305e-13
7.12863e-14
-1.89227e-13
8.91215e-14
-2.28983e-13
1.08197e-13
-2.7002e-13
1.30655e-13
-2.80596e-13
1.5403e-13
-2.88004e-13
2.15517e-13
-3.14202e-13
2.76998e-13
-3.43912e-13
3.43024e-13
-3.61566e-13
3.95478e-13
-3.63574e-13
4.42902e-13
-3.32816e-13
4.49212e-13
-2.87057e-13
5.05785e-13
-2.38451e-13
5.88855e-13
-2.02194e-13
6.30702e-13
-1.69731e-13
6.78645e-13
-1.20181e-13
7.53556e-13
-7.07311e-14
7.02475e-13
-2.05996e-14
1.75701e-12
8.15198e-19
7.6966e-12
1.37421e-18
1.51197e-11
2.74468e-18
2.32411e-11
3.45973e-18
3.13364e-11
2.47762e-19
3.78284e-11
-1.0393e-17
4.15011e-11
-2.78957e-17
4.33435e-11
-5.08884e-17
4.2504e-11
-7.17157e-17
3.96283e-11
-8.42295e-17
3.53216e-11
-8.38378e-17
3.06455e-11
-7.31842e-17
2.56273e-11
9.56328e-14
2.09379e-11
1.71029e-13
1.59993e-11
2.14552e-13
1.22216e-11
2.36147e-13
8.91329e-12
2.32797e-13
6.10066e-12
2.06594e-13
4.18825e-12
1.78035e-13
2.66489e-12
1.38045e-13
1.78536e-12
1.11924e-13
1.20247e-12
8.2402e-14
9.62662e-13
6.05852e-14
9.41958e-13
5.32158e-14
8.06467e-13
4.48089e-14
4.48715e-13
2.06871e-14
2.69338e-13
6.74191e-15
1.87937e-13
3.35864e-15
1.28067e-13
2.11223e-15
8.80274e-14
1.4318e-15
5.97044e-14
9.45361e-16
4.07784e-14
6.23084e-16
2.70331e-14
3.92112e-16
1.79547e-14
2.48566e-16
1.1605e-14
1.02914e-15
7.37194e-15
1.17057e-15
4.64863e-15
6.50019e-16
2.83146e-15
2.55896e-18
1.70147e-15
1.97185e-18
1.0197e-15
1.5622e-18
5.8127e-16
1.27766e-18
3.34292e-16
1.12427e-18
1.89446e-16
1.08383e-18
1.03827e-16
1.13206e-18
7.73437e-17
7.45543e-16
4.29844e-17
3.80131e-16
2.29464e-17
1.83756e-16
1.23112e-17
8.81095e-17
6.9436e-18
4.3471e-17
4.21611e-18
2.24623e-17
2.8253e-18
1.23443e-17
2.17394e-18
7.35185e-18
1.74723e-18
4.0988e-18
1.4234e-18
1.76006e-18
1.18697e-18
1.33754e-19
9.91602e-19
-9.07812e-21
8.21316e-19
-1.7351e-20
6.69141e-19
-2.42035e-20
5.28614e-19
-2.95686e-20
4.04094e-19
-3.35901e-20
2.95739e-19
-3.6438e-20
2.03824e-19
-3.8392e-20
1.2555e-19
-3.95565e-20
5.83118e-20
-3.97493e-20
-7.11055e-22
-3.92054e-20
-4.76749e-20
-3.79239e-20
-8.22311e-20
-3.61857e-20
-1.06166e-19
-3.40697e-20
-1.21229e-19
-3.15293e-20
-1.30598e-19
-2.8511e-20
-1.36997e-19
-2.51521e-20
-1.41211e-19
-2.18069e-20
-1.42375e-19
-1.87184e-20
-1.39542e-19
-1.58899e-20
-1.31558e-19
-1.3241e-20
-1.18681e-19
-1.07159e-20
-1.04082e-19
-8.39529e-21
-9.12969e-20
-6.36732e-21
-8.14957e-20
-4.69026e-21
-7.36114e-20
-3.36779e-21
-6.59314e-20
-2.34998e-21
-5.77462e-20
-1.56482e-21
-4.92479e-20
-9.67276e-22
-4.11979e-20
-5.36878e-22
-3.45065e-20
-2.52881e-22
-2.95903e-20
-7.73208e-23
-2.73825e-20
9.31285e-21
-2.60899e-20
3.27314e-20
-2.44625e-20
5.64467e-20
-2.25843e-20
7.72097e-20
-2.06393e-20
9.42357e-20
-1.8754e-20
1.07675e-19
-1.70412e-20
1.17911e-19
-1.55714e-20
1.25742e-19
-1.4281e-20
1.32262e-19
-1.30477e-20
1.37769e-19
-1.17983e-20
1.41661e-19
-1.05502e-20
1.43165e-19
-9.33509e-21
1.42192e-19
-8.16931e-21
1.38959e-19
-7.07851e-21
1.33651e-19
-6.07978e-21
1.26692e-19
-5.16906e-21
1.1858e-19
-4.34866e-21
1.0955e-19
-3.62793e-21
9.98806e-20
-3.00735e-21
9.00145e-20
-2.47251e-21
8.03707e-20
-2.00914e-21
7.10999e-20
-1.61641e-21
6.21898e-20
-1.29119e-21
5.38095e-20
-1.02315e-21
4.61403e-20
-8.04353e-22
3.9207e-20
-6.28863e-22
3.30124e-20
-4.89555e-22
2.75753e-20
-3.79105e-22
2.28762e-20
-2.91468e-22
1.88541e-20
-2.22554e-22
1.54275e-20
-1.69247e-22
1.25296e-20
-1.28208e-22
1.01055e-20
-9.69274e-23
8.09872e-21
-7.3127e-23
6.45236e-21
-5.51176e-23
5.1098e-21
-4.16375e-23
4.0218e-21
-3.16265e-23
3.14805e-21
-2.41687e-23
2.45309e-21
-1.85611e-23
1.90388e-21
-1.43363e-23
1.47096e-21
-1.12085e-23
1.13029e-21
-8.94197e-24
8.64091e-22
-7.30194e-24
6.58484e-22
-6.07914e-24
5.01304e-22
-5.14501e-24
3.81219e-22
-4.45246e-24
2.88953e-22
-3.98234e-24
2.18184e-22
-3.7024e-24
1.64779e-22
-3.56023e-24
1.2538e-22
-3.5641e-24
9.64018e-23
-3.88678e-24
7.55044e-23
-5.51461e-24
6.32671e-23
-4.03345e-23
7.10406e-23
5.26297e-22
0.000287695
0.000400218
0.000288087
0.000464365
0.000218906
0.000579645
0.000109696
0.000179817
3.18908e-05
1.14182e-05
1.2331e-05
7.22481e-06
3.37232e-06
3.08436e-06
1.10424e-06
1.66585e-06
2.23332e-07
5.977e-07
6.54242e-08
2.07613e-07
2.25467e-08
7.82633e-08
5.79898e-09
1.91131e-08
2.30291e-09
7.01924e-09
6.6352e-10
1.69121e-09
2.83396e-10
6.40333e-10
5.40571e-11
1.22604e-10
1.81282e-11
3.39252e-11
6.22915e-12
1.08744e-11
1.37999e-12
2.07326e-12
5.57376e-13
6.84105e-13
1.17523e-13
1.46035e-13
3.70013e-14
4.17502e-14
4.20628e-15
8.68359e-15
1.51608e-15
1.86298e-15
7.52903e-16
1.71828e-15
2.75325e-16
7.66663e-16
7.61445e-17
3.38161e-16
5.31693e-17
4.67099e-16
1.26562e-17
1.00657e-16
1.48358e-18
1.09056e-17
2.5077e-19
1.83673e-18
9.19672e-20
6.74649e-19
2.68418e-20
1.77987e-19
4.14782e-21
2.22656e-20
7.53494e-22
2.85534e-21
1.33177e-21
2.69888e-21
6.12538e-21
1.80961e-21
8.58212e-21
-4.54066e-21
3.24399e-20
-3.80828e-20
1.25839e-19
-1.89978e-19
1.28753e-19
-5.15651e-19
3.38648e-19
-1.87926e-18
7.42787e-19
-5.11153e-18
1.44605e-18
-1.3129e-17
3.21283e-18
-3.7181e-17
3.54141e-18
-8.25995e-17
6.10712e-18
-1.79397e-16
1.04076e-17
-3.24599e-16
1.28534e-17
-5.04961e-16
3.06801e-17
-1.05643e-15
6.60513e-17
-1.88994e-15
3.90403e-16
-3.07138e-15
1.87368e-15
-1.15629e-14
3.66637e-15
-2.21238e-14
3.57632e-14
-1.13443e-13
2.3334e-13
-6.6755e-13
6.18175e-13
-1.71466e-12
8.5428e-12
-1.27992e-11
6.3963e-11
-7.03625e-11
3.53647e-10
-3.04539e-10
2.73095e-09
-1.84744e-09
1.66376e-08
-8.36323e-09
1.14087e-07
-4.38311e-08
1.04318e-06
-2.20539e-07
8.07493e-06
-9.15548e-07
4.5952e-05
-4.32785e-06
0.000123048
-2.14687e-05
0.000200314
-8.47027e-05
0.000259586
-0.000245122
0.000295226
-0.000317823
0.000320747
-0.000297049
0.000338556
-0.000235566
0.000350144
-0.00014117
0.000358331
-1.37591e-05
0.000364766
0.000119793
0.000368209
0.000264497
0.000363031
0.000396888
0.000331039
0.000439112
0.000232247
0.000224798
0.00011825
8.76894e-05
4.62094e-05
-6.74402e-06
1.32783e-05
-1.47257e-06
4.71796e-06
-2.40392e-07
1.0978e-06
1.82562e-07
2.78648e-07
1.85479e-07
4.76156e-08
6.90286e-08
1.38691e-08
2.56831e-08
3.31398e-09
6.55249e-09
9.73625e-10
1.67035e-09
2.66968e-10
4.70274e-10
6.31602e-11
9.90441e-11
1.52571e-11
1.93562e-11
3.23703e-12
4.49032e-12
6.78131e-13
8.40777e-13
1.55348e-13
1.46562e-13
3.65133e-14
4.3672e-14
1.02411e-14
1.72995e-14
4.12958e-15
9.11769e-15
2.23307e-15
8.67807e-15
1.55507e-15
7.44507e-15
1.22326e-15
6.06406e-15
9.85645e-16
4.41975e-15
8.61587e-16
4.10977e-15
7.46674e-16
2.5392e-15
6.75009e-16
1.33872e-15
6.28272e-16
3.32926e-16
5.94918e-16
-8.3189e-16
5.7398e-16
-1.69362e-15
6.23789e-16
-2.48215e-15
6.649e-16
-3.39983e-15
7.07345e-16
-4.4498e-15
8.37748e-16
-5.34041e-15
9.33415e-16
-6.56134e-15
1.16661e-15
-8.18868e-15
1.5011e-15
-1.05211e-14
1.74374e-15
-1.24098e-14
2.32612e-15
-1.49896e-14
3.28053e-15
-1.77988e-14
4.50769e-15
-2.06843e-14
6.6711e-15
-2.73787e-14
1.00875e-14
-2.40328e-14
1.72592e-14
-3.96769e-14
3.31033e-14
-5.37132e-14
7.31509e-14
-9.91928e-14
1.65947e-13
-1.6878e-13
4.00535e-13
-2.97587e-13
1.00578e-12
-6.26444e-13
2.82362e-12
-9.41291e-13
8.6882e-12
-1.95846e-12
2.81752e-11
-4.76502e-12
9.997e-11
-1.14913e-11
3.60492e-10
-2.93647e-11
1.22645e-09
-6.39219e-11
3.9981e-09
-1.35504e-10
1.26355e-08
-2.77045e-10
4.13284e-08
-5.91905e-10
1.26105e-07
-1.25567e-09
3.66011e-07
-2.09541e-09
1.01378e-06
-3.31017e-09
2.66639e-06
-4.28831e-09
6.34994e-06
-5.10068e-09
1.28911e-05
-4.70668e-09
2.1766e-05
-4.01674e-09
3.06936e-05
-2.88669e-09
3.63864e-05
-1.46765e-09
3.64508e-05
-6.15671e-11
3.48211e-05
3.08714e-07
2.7972e-05
-8.81852e-08
2.03899e-05
-1.15619e-07
1.25653e-05
-8.92305e-08
6.22043e-06
-4.41058e-08
3.08472e-06
-1.9732e-08
1.83559e-06
-4.04654e-09
7.34866e-07
1.76072e-08
2.44738e-07
1.67643e-08
7.95729e-08
1.20455e-08
2.74125e-08
1.15087e-08
6.10304e-09
5.0452e-09
2.65903e-09
3.46053e-09
1.13842e-09
1.20111e-09
5.18487e-10
5.72235e-10
2.20537e-10
2.20031e-10
1.39965e-10
1.20003e-10
5.58579e-11
3.59509e-11
2.53415e-11
1.23299e-11
1.09885e-11
4.62311e-12
4.18045e-12
1.60345e-12
1.64521e-12
5.78952e-13
6.36719e-13
2.12916e-13
1.49071e-13
5.28385e-14
5.68129e-14
1.02916e-14
2.68662e-14
2.92353e-15
1.0875e-14
4.65676e-16
3.76117e-15
2.4132e-16
1.02169e-15
1.3563e-16
2.5201e-16
8.94969e-17
2.38265e-16
4.09192e-16
1.55058e-16
1.295e-17
1.4249e-16
-4.25795e-17
1.2861e-16
-8.74932e-17
1.25762e-16
-1.26224e-16
1.27435e-16
-1.71098e-16
1.26645e-16
-2.12448e-16
1.29906e-16
-2.46464e-16
1.30111e-16
-2.84305e-16
1.35736e-16
-3.19937e-16
1.43275e-16
-3.76624e-16
1.50708e-16
-4.20957e-16
1.63388e-16
-4.60335e-16
1.69954e-16
-5.04257e-16
1.82042e-16
-5.38868e-16
1.83601e-16
-5.73151e-16
1.74757e-16
-6.07639e-16
1.41665e-16
-6.72194e-16
6.68345e-17
-7.0885e-16
-5.21583e-17
-7.51618e-16
-2.18845e-16
-7.7882e-16
-4.59523e-16
-2.03963e-15
-7.88957e-16
-2.4561e-15
-1.21971e-15
-2.95634e-15
-1.80032e-15
-3.50224e-15
-2.29131e-15
-4.18299e-15
-2.68244e-15
-4.40842e-15
-3.29928e-15
-4.44203e-15
-4.13923e-15
-4.2296e-15
-5.05531e-15
-4.5969e-15
-5.98121e-15
-4.75688e-15
-6.60559e-15
-4.80396e-15
-6.63185e-15
-4.44455e-15
-6.52118e-15
-3.87387e-15
-6.57681e-15
-3.04907e-15
-7.09729e-15
-2.33376e-15
-7.14763e-15
-1.97478e-15
-6.95833e-15
-5.10326e-16
-6.58775e-15
-2.85848e-16
-5.94442e-15
-8.77192e-17
-5.65453e-15
4.56272e-18
-1.33072e-14
3.86237e-18
-2.97266e-14
5.07949e-18
-5.38913e-14
8.65439e-18
-8.13984e-14
1.45904e-17
-1.02562e-13
2.27763e-17
-1.1541e-13
3.21808e-17
-1.17815e-13
4.27029e-17
-1.07758e-13
5.34871e-17
-9.04187e-14
6.37417e-17
-6.89435e-14
1.02413e-16
-4.69115e-14
1.5791e-15
-2.43814e-14
2.89669e-15
-5.38439e-15
3.86821e-15
7.15337e-15
4.25261e-15
1.4982e-14
4.34015e-15
1.79048e-14
4.04623e-15
1.61132e-14
3.44356e-15
1.40667e-14
2.84628e-15
1.06102e-14
1.5194e-15
8.78046e-15
1.22189e-15
7.32141e-15
9.11311e-16
7.31299e-15
6.8928e-16
8.08521e-15
6.34245e-16
6.64454e-15
5.42377e-16
3.13465e-15
1.83717e-15
1.73575e-15
8.36588e-16
1.16318e-15
1.06919e-16
7.42572e-16
2.35359e-17
4.76585e-16
2.03135e-17
3.00965e-16
1.78737e-17
1.91402e-16
1.63509e-17
1.17623e-16
1.52994e-17
7.25709e-17
1.49146e-17
4.31838e-17
1.47579e-17
3.33072e-17
6.02736e-16
1.93815e-17
3.36146e-16
1.11575e-17
1.85512e-16
6.43469e-18
1.02666e-16
3.82812e-18
5.82542e-17
2.30134e-18
3.34691e-17
1.49651e-18
2.0725e-17
1.07324e-18
1.40405e-17
8.34217e-19
1.02348e-17
4.68972e-19
5.38426e-18
2.32099e-19
2.45349e-18
1.1524e-19
1.10857e-18
6.19771e-20
5.35931e-19
3.76909e-20
2.87013e-19
2.54773e-20
1.66851e-19
1.86252e-20
1.01477e-19
1.43094e-20
6.18108e-20
1.12599e-20
3.5029e-20
8.72957e-21
1.58939e-20
6.93231e-21
2.73111e-21
5.62023e-21
-4.07612e-23
4.47487e-21
-8.58138e-23
3.45806e-21
-1.23741e-22
2.5357e-21
-1.54069e-22
1.72861e-21
-1.77974e-22
1.00738e-21
-1.95706e-22
4.17642e-22
-2.09586e-22
-1.46984e-22
-2.18754e-22
-5.96705e-22
-2.23345e-22
-9.68553e-22
-2.23366e-22
-1.24995e-21
-2.18993e-22
-1.44311e-21
-2.1161e-22
-1.54727e-21
-2.01345e-22
-1.56701e-21
-1.87792e-22
-1.53493e-21
-1.70205e-22
-1.48811e-21
-1.4965e-22
-1.43898e-21
-1.29012e-22
-1.37639e-21
-1.10033e-22
-1.2865e-21
-9.26947e-23
-1.15663e-21
-7.64813e-23
-9.91785e-22
-6.09757e-23
-8.22978e-22
-4.6663e-23
-6.81476e-22
-3.42671e-23
-5.75598e-22
-2.4326e-23
-4.93815e-22
-1.68471e-23
-4.20711e-22
-1.13782e-23
-3.49557e-22
-7.34255e-24
-2.81271e-22
-4.39187e-24
-2.20591e-22
-2.34897e-24
-1.72498e-22
-1.05745e-24
-1.3811e-22
-3.06439e-25
-1.18289e-22
5.08225e-23
-1.03461e-22
1.5415e-22
-8.86065e-23
2.39143e-22
-7.40645e-23
2.96702e-22
-6.07761e-23
3.27053e-22
-4.93307e-23
3.35325e-22
-3.99764e-23
3.28079e-22
-3.26313e-23
3.12192e-22
-2.68515e-23
2.93494e-22
-2.21316e-23
2.74379e-22
-1.81436e-23
2.54558e-22
-1.4771e-23
2.3327e-22
-1.19441e-23
2.10968e-22
-9.58633e-24
1.88457e-22
-7.64147e-24
1.66272e-22
-6.0537e-24
1.45032e-22
-4.75729e-24
1.25231e-22
-3.70491e-24
1.0695e-22
-2.86416e-24
9.02718e-23
-2.20191e-24
7.5397e-23
-1.6802e-24
6.24451e-23
-1.26763e-24
5.12771e-23
-9.46658e-25
4.16406e-23
-7.01592e-25
3.34434e-23
-5.15633e-25
2.66086e-23
-3.75797e-25
2.09709e-23
-2.72175e-25
1.63684e-23
-1.96133e-25
1.2666e-23
-1.40515e-25
9.72782e-24
-9.98955e-26
7.4183e-24
-7.0479e-26
5.61277e-24
-4.94595e-26
4.21134e-24
-3.45509e-26
3.13453e-24
-2.40668e-26
2.31633e-24
-1.67149e-26
1.70027e-24
-1.15867e-26
1.23938e-24
-8.04212e-27
8.96968e-25
-5.60727e-27
6.45008e-25
-3.93063e-27
4.61409e-25
-2.76764e-27
3.28521e-25
-1.95909e-27
2.32661e-25
-1.40265e-27
1.63725e-25
-1.02381e-27
1.14532e-25
-7.64638e-28
7.98266e-26
-5.82532e-28
5.55782e-26
-4.51505e-28
3.86536e-26
-3.57924e-28
2.67921e-26
-2.93314e-28
1.8502e-26
-2.50275e-28
1.27953e-26
-2.21745e-28
8.94304e-27
-2.05872e-28
6.34932e-27
-2.11789e-28
4.64009e-27
-3.00869e-28
3.72832e-27
-2.63601e-27
4.33649e-27
3.95361e-26
0.000260582
0.000148898
0.000114812
6.95004e-05
1.62948e-05
1.47309e-05
7.00629e-06
2.19187e-06
2.71586e-06
1.61616e-06
9.69197e-07
1.2164e-06
1.87111e-07
5.49037e-07
7.40645e-08
2.73365e-07
1.98115e-08
9.7138e-08
7.30032e-09
3.25006e-08
2.85859e-09
1.18519e-08
7.33055e-10
2.79991e-09
2.71081e-10
9.66967e-10
7.69794e-11
2.25847e-10
2.99442e-11
7.93295e-11
5.35367e-12
1.46015e-11
1.66388e-12
3.70735e-12
4.95356e-13
1.09433e-12
1.07762e-13
2.02279e-13
3.66354e-14
6.0386e-14
7.56399e-15
1.34525e-14
1.8355e-15
4.33014e-15
2.1327e-16
1.90048e-15
8.34577e-17
4.46635e-16
6.94767e-17
7.81503e-16
2.65488e-17
2.87578e-16
1.001e-17
1.02224e-16
3.15038e-18
2.97404e-17
5.95946e-19
5.12288e-18
5.58082e-20
4.47296e-19
9.76555e-21
7.76369e-20
3.02102e-21
2.37281e-20
6.29899e-22
4.44772e-21
8.77812e-23
5.0136e-22
7.48489e-23
3.01845e-22
2.23457e-22
4.82617e-22
1.08178e-21
3.30349e-22
2.43695e-21
-2.54057e-21
8.51649e-21
-1.87257e-20
2.57688e-20
-8.25806e-20
4.52478e-20
-3.12177e-19
1.06638e-19
-1.05598e-18
2.41525e-19
-2.96434e-18
5.01422e-19
-8.18573e-18
1.07865e-18
-2.22365e-17
1.82158e-18
-5.66996e-17
2.68721e-18
-1.24402e-16
4.26587e-18
-2.25687e-16
6.6822e-18
-4.02331e-16
1.01151e-17
-8.25112e-16
1.26981e-17
-1.56514e-15
2.40425e-17
-2.82859e-15
4.15534e-17
-4.73792e-15
8.18002e-17
-8.3652e-15
3.85735e-16
-1.28279e-14
2.12872e-15
-2.31075e-14
4.51583e-15
-4.46641e-14
1.04893e-13
-2.10594e-13
9.7404e-13
-9.77584e-13
6.41626e-12
-4.32112e-12
6.9289e-11
-2.50727e-11
4.27444e-10
-1.11789e-10
3.15542e-09
-6.56252e-10
2.13255e-08
-3.41158e-09
1.14657e-07
-1.53669e-08
7.10074e-07
-7.45624e-08
4.42808e-06
-3.20968e-07
2.31304e-05
-1.23778e-06
7.88869e-05
-4.66495e-06
0.000161749
-1.56478e-05
0.000233915
-3.65864e-05
0.000295897
-6.02338e-05
0.000338914
-6.09818e-05
0.000356938
-1.56104e-05
0.00037082
4.81051e-05
0.000327852
9.12012e-05
0.000249265
0.000101371
0.000144771
5.68727e-05
6.40529e-05
-5.54066e-06
2.10462e-05
-1.57095e-06
7.35895e-06
-2.64516e-07
2.58284e-06
-9.33483e-09
5.99802e-07
6.89894e-08
1.2658e-07
9.1815e-08
3.0989e-08
4.78083e-08
6.19594e-09
1.51341e-08
1.86993e-09
4.78483e-09
4.53139e-10
1.15989e-09
1.16276e-10
2.66002e-10
2.62631e-11
6.75333e-11
5.24915e-12
1.2821e-11
1.13091e-12
2.25163e-12
2.1898e-13
4.43181e-13
4.15479e-14
9.90489e-14
9.78572e-15
2.12972e-14
3.09046e-15
1.65442e-14
1.71773e-15
1.33016e-14
1.3448e-15
1.15702e-14
1.15836e-15
9.54739e-15
1.01902e-15
8.51531e-15
8.80045e-16
6.69298e-15
7.4397e-16
4.80712e-15
6.69317e-16
3.70352e-15
5.96548e-16
2.3483e-15
5.66513e-16
1.35491e-15
5.49949e-16
3.61854e-16
5.1652e-16
-7.81427e-16
4.89865e-16
-1.5478e-15
4.85519e-16
-2.25073e-15
4.90526e-16
-3.06444e-15
5.05846e-16
-4.09271e-15
5.24938e-16
-5.03936e-15
5.83658e-16
-6.39159e-15
6.26564e-16
-8.01829e-15
6.83113e-16
-9.16056e-15
7.28047e-16
-1.09325e-14
7.61355e-16
-1.24558e-14
8.40989e-16
-1.3787e-14
9.13897e-16
-1.55525e-14
9.8219e-16
-1.89116e-14
1.0359e-15
-2.00886e-14
1.17555e-15
-2.47187e-14
1.45945e-15
-2.80306e-14
2.35121e-15
-3.54798e-14
3.74671e-15
-4.35497e-14
6.41574e-15
-6.40254e-14
1.20379e-14
-1.01573e-13
1.8087e-14
-1.38934e-13
4.02135e-14
-2.60805e-13
1.07641e-13
-5.62549e-13
2.71959e-13
-1.44066e-12
7.70567e-13
-3.65233e-12
1.96201e-12
-8.60396e-12
5.69411e-12
-1.88261e-11
1.63265e-11
-4.35179e-11
4.84885e-11
-1.11278e-10
1.32501e-10
-2.842e-10
2.87439e-10
-5.99418e-10
5.72028e-10
-1.16366e-09
9.29898e-10
-1.81026e-09
1.37131e-09
-2.66733e-09
1.57624e-09
-2.69984e-09
1.84741e-09
-2.85334e-09
1.96155e-09
-2.28316e-09
1.94002e-09
-1.09542e-09
1.9328e-09
5.94976e-17
4.80114e-07
-6.86111e-12
7.01123e-07
-7.1157e-11
6.57189e-07
-1.94239e-10
4.43256e-07
-2.54563e-10
2.18885e-07
-1.92872e-10
1.02653e-07
-1.23726e-10
5.23718e-08
3.07152e-09
1.68969e-08
4.09093e-09
5.02114e-09
2.35064e-09
1.72468e-09
1.50042e-09
8.01478e-10
1.23082e-09
2.419e-10
5.06145e-10
1.94968e-10
3.34679e-10
9.37967e-11
1.12836e-10
4.43144e-11
5.02149e-11
1.86731e-11
1.83774e-11
1.01817e-11
9.57708e-12
3.20998e-12
2.72187e-12
1.27886e-12
8.72686e-13
5.03846e-13
2.94912e-13
1.71579e-13
9.43124e-14
6.14697e-14
3.27311e-14
2.04498e-14
1.02763e-14
4.12533e-15
2.32442e-15
1.33197e-15
8.89144e-16
4.70572e-16
3.71051e-16
1.77615e-16
2.15536e-16
1.50825e-16
9.89779e-16
6.49325e-17
3.31603e-16
3.94299e-17
1.40682e-16
2.92189e-17
5.57976e-17
2.61094e-17
4.11746e-18
2.42138e-17
-1.67698e-17
2.32625e-17
-3.68122e-17
2.12006e-17
-5.53635e-17
2.04385e-17
-7.2545e-17
1.91704e-17
-8.82682e-17
1.73825e-17
-1.02279e-16
1.60327e-17
-1.14443e-16
1.47132e-17
-1.26952e-16
1.44057e-17
-1.55539e-16
1.34013e-17
-1.75836e-16
1.21305e-17
-1.93054e-16
1.08277e-17
-2.02131e-16
9.1199e-18
-2.03171e-16
7.26487e-18
-2.1334e-16
5.10308e-18
-2.10998e-16
2.69322e-18
-2.39508e-16
-2.97645e-19
-2.55834e-16
-3.74071e-18
-2.64295e-16
-8.05712e-18
-2.84793e-16
-1.38e-17
-3.07785e-16
-2.08215e-17
-3.24071e-16
-2.97669e-17
-3.15683e-16
-4.13915e-17
-3.30422e-16
-5.15127e-17
-3.3072e-16
-5.98071e-17
-3.68295e-16
-6.46385e-17
-3.43377e-16
-7.95394e-17
-2.81468e-16
-9.42971e-17
-2.69678e-16
-1.09782e-16
-2.80054e-16
-1.18065e-16
-2.91299e-16
-1.20882e-16
-2.58095e-16
-1.141e-16
-2.26513e-16
-1.08369e-16
-1.75382e-16
-1.17576e-16
-1.45576e-16
-1.16812e-16
-1.28549e-16
-1.07994e-16
-9.24922e-17
-1.02418e-16
-5.74306e-17
-9.70538e-17
-2.01447e-17
-1.02287e-16
8.16786e-17
-1.78378e-16
2.84305e-16
-2.19607e-16
8.62435e-16
-4.53464e-16
1.6225e-16
-8.045e-16
2.43802e-16
-1.15512e-15
3.77769e-16
-1.46313e-15
5.54169e-16
-1.65022e-15
7.93116e-16
-1.66003e-15
1.05128e-15
-1.51148e-15
1.29222e-15
-1.27277e-15
1.47122e-15
-9.71166e-16
1.58687e-15
-6.53348e-16
1.61309e-15
-3.47707e-16
1.54684e-15
-1.36069e-16
1.37434e-15
1.38264e-17
1.18663e-15
9.53126e-17
9.71222e-16
1.13039e-16
7.53784e-16
1.12478e-16
5.75973e-16
9.20168e-17
9.5723e-17
8.15865e-17
7.34893e-17
7.26192e-17
7.15135e-17
7.58273e-17
6.91743e-17
8.2093e-17
6.55292e-17
6.23273e-17
5.87968e-17
4.3213e-17
9.52673e-16
1.95661e-17
4.40593e-16
1.12713e-17
2.62697e-16
7.18803e-18
1.70339e-16
4.8254e-18
1.13983e-16
3.33908e-18
7.77316e-17
2.46634e-18
5.58879e-17
1.88412e-18
4.14096e-17
1.54558e-18
3.27535e-17
1.31909e-18
2.68924e-17
7.04209e-19
1.38116e-17
3.71309e-19
6.98026e-18
1.97005e-19
3.55116e-18
1.0653e-19
1.84222e-18
6.01061e-20
9.92029e-19
3.40479e-20
5.37073e-19
2.00518e-20
3.01149e-19
1.18869e-20
1.68756e-19
6.47775e-21
8.63329e-20
2.88643e-21
3.59922e-20
1.34933e-21
1.55069e-20
6.66489e-22
6.98223e-21
3.67004e-22
3.46083e-21
2.25532e-22
1.87859e-21
1.48864e-22
1.07105e-21
1.04016e-22
6.2645e-22
7.55589e-23
3.64943e-22
5.68459e-23
2.02458e-22
4.32761e-23
9.49651e-23
3.38351e-23
2.28965e-23
2.73055e-23
-1.4528e-25
2.16962e-23
-3.43603e-25
1.6761e-23
-5.1267e-25
1.22507e-23
-6.49813e-25
8.28413e-24
-7.62191e-25
4.81701e-24
-8.48202e-25
1.68786e-24
-9.19679e-25
-1.16027e-24
-9.70575e-25
-3.55034e-24
-1.00358e-24
-5.55545e-24
-1.01494e-24
-7.11132e-24
-1.00579e-24
-8.20576e-24
-9.81841e-25
-8.81253e-24
-9.41882e-25
-8.92606e-24
-8.84206e-25
-8.69918e-24
-8.03266e-25
-8.35888e-24
-7.04602e-25
-7.99634e-24
-6.04986e-25
-7.55871e-24
-5.13567e-25
-6.97345e-24
-4.30013e-25
-6.1674e-24
-3.52004e-25
-5.17459e-24
-2.77258e-25
-4.1707e-24
-2.08132e-25
-3.3334e-24
-1.48812e-25
-2.71023e-24
-1.02435e-25
-2.24023e-24
-6.88124e-26
-1.83935e-24
-4.5209e-26
-1.4699e-24
-2.84005e-26
-1.13266e-24
-1.6512e-26
-8.46208e-25
-8.55114e-27
-6.27048e-25
-3.70059e-27
-4.74666e-25
-1.02061e-27
-3.81214e-25
2.00427e-25
-3.12049e-25
5.4265e-25
-2.50101e-25
7.75614e-25
-1.94748e-25
8.94775e-25
-1.47901e-25
9.16004e-25
-1.10458e-25
8.6793e-25
-8.20293e-26
7.80926e-25
-6.12508e-26
6.81042e-25
-4.61278e-26
5.85915e-25
-3.48501e-26
5.01513e-25
-2.62226e-26
4.26593e-25
-1.96126e-26
3.58818e-25
-1.4587e-26
2.98138e-25
-1.07865e-26
2.44969e-25
-7.93529e-27
1.99142e-25
-5.81096e-27
1.60332e-25
-4.22717e-27
1.27989e-25
-3.05081e-27
1.01192e-25
-2.18726e-27
7.91586e-26
-1.5604e-27
6.13246e-26
-1.10567e-27
4.71439e-26
-7.74962e-28
3.59547e-26
-5.37575e-28
2.71245e-26
-3.69892e-28
2.02345e-26
-2.52304e-28
1.49477e-26
-1.70581e-28
1.0934e-26
-1.14523e-28
7.91707e-27
-7.64412e-29
5.67959e-27
-5.06997e-29
4.0414e-27
-3.33542e-29
2.85374e-27
-2.17606e-29
1.99812e-27
-1.41037e-29
1.38621e-27
-9.09255e-30
9.5299e-28
-5.83986e-30
6.49918e-28
-3.73652e-30
4.39919e-28
-2.38397e-30
2.95424e-28
-1.52154e-30
1.96775e-28
-9.74687e-31
1.30115e-28
-6.27305e-31
8.55279e-29
-4.0534e-31
5.59172e-29
-2.63193e-31
3.63348e-29
-1.72739e-31
2.34403e-29
-1.15493e-31
1.50211e-29
-7.8992e-32
9.58644e-30
-5.51424e-32
6.11124e-30
-3.91958e-32
3.89203e-30
-2.85108e-32
2.47056e-30
-2.14526e-32
1.56315e-30
-1.68433e-32
9.92029e-31
-1.37928e-32
6.38532e-31
-1.19253e-32
4.1999e-31
-1.16345e-32
2.87638e-31
-1.65382e-32
2.22587e-31
-1.62349e-31
2.66604e-31
2.80667e-30
1.17461e-05
-3.27607e-09
6.36697e-06
1.15479e-06
2.5525e-06
2.54303e-06
2.55035e-07
4.4236e-07
7.0236e-08
2.03024e-07
3.61579e-08
1.74468e-07
1.0251e-08
8.37857e-08
7.08874e-09
4.2412e-08
2.44438e-09
1.51148e-08
9.71099e-10
5.019e-09
3.73956e-10
1.77428e-09
9.42536e-11
4.09623e-10
3.13914e-11
1.32993e-10
8.91402e-12
3.02163e-11
3.09149e-12
9.82761e-12
5.32103e-13
1.74807e-12
1.54571e-13
4.09602e-13
3.7146e-14
1.13878e-13
8.38148e-15
2.14541e-14
2.18219e-15
6.9148e-15
4.78052e-16
2.11558e-15
1.17484e-16
1.06958e-15
7.2968e-17
8.65827e-16
1.26959e-17
1.53236e-16
6.57832e-18
7.939e-17
2.19721e-18
2.55731e-17
7.4834e-19
8.2244e-18
1.77556e-19
1.80873e-18
2.62435e-20
2.44752e-19
2.12366e-21
1.85934e-20
3.63074e-22
3.13974e-21
9.11565e-23
7.70256e-22
1.46985e-23
1.11151e-22
5.97088e-24
3.64872e-23
2.36169e-23
1.01916e-22
9.76678e-23
2.25916e-22
3.78844e-22
1.20395e-22
1.26052e-21
-1.37214e-21
3.90548e-21
-1.0061e-20
1.04543e-20
-4.55458e-20
2.58021e-20
-1.74359e-19
5.72623e-20
-6.05477e-19
1.32333e-19
-1.75078e-18
2.9445e-19
-4.91043e-18
6.12956e-19
-1.35154e-17
1.19236e-18
-3.44893e-17
1.8247e-18
-7.95022e-17
2.9867e-18
-1.54977e-16
5.10704e-18
-2.88376e-16
7.76218e-18
-6.1024e-16
1.10293e-17
-1.21093e-15
2.00136e-17
-2.31426e-15
2.7873e-17
-4.53334e-15
3.72639e-17
-9.12494e-15
4.33575e-17
-1.29097e-14
5.34511e-17
-1.59084e-14
3.63963e-17
-2.29077e-14
4.67697e-16
-3.82572e-14
2.94817e-15
-8.08788e-14
2.24434e-14
-2.12107e-13
3.14325e-13
-7.03866e-13
2.43358e-12
-1.99545e-12
2.90503e-11
-8.48047e-12
2.61964e-10
-3.0817e-11
1.7219e-09
-1.15539e-10
1.26871e-08
-4.02478e-10
7.27835e-08
-9.46729e-10
3.42208e-07
-1.78849e-09
1.55526e-06
-2.29054e-09
6.25595e-06
-2.36562e-09
1.84873e-05
-2.07211e-09
4.26565e-05
-1.67544e-09
7.37402e-05
-1.07428e-09
9.64254e-05
-1.32624e-10
0.000102004
1.77244e-06
8.84157e-05
1.05291e-06
5.13567e-05
-9.20181e-07
2.15763e-05
-4.93298e-07
9.46863e-06
-1.49888e-07
3.91178e-06
-4.38712e-08
9.28202e-07
-7.42345e-09
2.84272e-07
6.50913e-08
6.48841e-08
4.16322e-08
1.43777e-08
2.51642e-08
4.02508e-09
1.05874e-08
8.87317e-10
3.05781e-09
2.33542e-10
8.80003e-10
5.59911e-11
1.98091e-10
1.28465e-11
4.18904e-11
2.63124e-12
9.50332e-12
4.78829e-13
1.61722e-12
9.41579e-14
2.7554e-13
1.81735e-14
4.08302e-14
4.38565e-15
2.72726e-14
2.0858e-15
1.82856e-14
1.43539e-15
1.27302e-14
1.25826e-15
9.9602e-15
1.09696e-15
1.01464e-14
9.66487e-16
8.43448e-15
8.46381e-16
7.73614e-15
7.30282e-16
6.0628e-15
6.04452e-16
4.29505e-15
5.44891e-16
3.30506e-15
4.81978e-16
2.08562e-15
4.66913e-16
1.25771e-15
4.71064e-16
3.59768e-16
4.42306e-16
-3.91714e-16
4.20726e-16
-8.63945e-16
4.00722e-16
-1.08479e-15
4.13252e-16
-1.38584e-15
4.21271e-16
-1.84409e-15
4.66417e-16
-2.51156e-15
5.3053e-16
-4.6593e-15
5.6355e-16
-6.02927e-15
6.14221e-16
-7.32747e-15
6.73213e-16
-8.82859e-15
6.88236e-16
-1.06101e-14
7.4637e-16
-1.18975e-14
7.84799e-16
-1.36934e-14
8.52716e-16
-1.58866e-14
9.01031e-16
-1.88467e-14
9.56422e-16
-2.30452e-14
9.60612e-16
-2.45894e-14
1.03261e-15
-2.62325e-14
1.10147e-15
-2.81772e-14
1.4193e-15
-3.39643e-14
1.80436e-15
-4.03216e-14
2.15098e-15
-4.95693e-14
3.80432e-15
-6.59827e-14
7.95533e-15
-9.17133e-14
1.87752e-14
-1.80399e-13
4.12757e-14
-3.63409e-13
9.17302e-14
-7.84552e-13
2.19062e-13
-1.41505e-12
5.64888e-13
-3.1941e-12
1.72756e-12
-8.00922e-12
5.43792e-12
-1.8355e-11
1.65135e-11
-4.12419e-11
4.6693e-11
-8.41906e-11
1.10575e-10
-1.4986e-10
2.27763e-10
-2.35645e-10
3.53225e-10
-2.60356e-10
5.44492e-10
-3.10962e-10
6.26018e-10
-2.79388e-10
7.87485e-10
-1.59567e-10
7.91471e-10
1.67373e-11
3.68945e-09
-1.3765e-15
7.32928e-09
-6.34953e-14
8.06184e-09
-3.3734e-13
5.64845e-09
-7.35953e-13
2.63351e-09
-8.3265e-13
1.19773e-09
-7.23618e-13
6.19e-10
3.16639e-10
1.35722e-10
4.0165e-10
1.49944e-11
2.27924e-10
3.85712e-11
1.48893e-10
4.3636e-11
1.20758e-10
2.03341e-11
4.83279e-11
1.72047e-11
3.16881e-11
7.57975e-12
1.05079e-11
3.36619e-12
4.39227e-12
1.3584e-12
1.55964e-12
6.69251e-13
7.69028e-13
1.69715e-13
2.04871e-13
6.11973e-14
6.47948e-14
2.27815e-14
2.10709e-14
7.08336e-15
6.02043e-15
2.28949e-15
3.06779e-15
6.30569e-16
1.20241e-15
1.3526e-16
4.20415e-16
5.37292e-17
2.06287e-16
4.93601e-17
4.7964e-16
2.87437e-17
2.43735e-16
2.07752e-17
1.47169e-16
1.60417e-17
8.86216e-17
1.3513e-17
5.24289e-17
1.11265e-17
2.34288e-17
1.0227e-17
2.40921e-18
9.23956e-18
-8.14238e-18
9.30834e-18
-1.82657e-17
8.78921e-18
-2.8495e-17
8.17156e-18
-3.74497e-17
7.4939e-18
-4.55737e-17
6.7769e-18
-5.24116e-17
6.06167e-18
-6.0108e-17
5.46919e-18
-6.89529e-17
5.55116e-18
-8.15432e-17
5.19835e-18
-9.29543e-17
4.70005e-18
-1.06877e-16
3.98458e-18
-1.12848e-16
3.12256e-18
-1.15802e-16
2.42095e-18
-1.21704e-16
1.52891e-18
-1.19895e-16
7.34416e-19
-1.33246e-16
-3.0231e-19
-1.46944e-16
-1.52568e-18
-1.51238e-16
-2.93497e-18
-1.72049e-16
-4.42528e-18
-1.85966e-16
-5.55924e-18
-1.99544e-16
-7.12344e-18
-1.98225e-16
-8.46084e-18
-2.12538e-16
-1.10972e-17
-2.20968e-16
-1.19824e-17
-2.48146e-16
-1.13145e-17
-2.38774e-16
-1.24174e-17
-1.97848e-16
-1.48004e-17
-1.93791e-16
-1.77533e-17
-2.00783e-16
-1.83199e-17
-2.18912e-16
-1.88162e-17
-1.98952e-16
-1.75118e-17
-1.79608e-16
-1.79232e-17
-1.4043e-16
-2.02712e-17
-1.19997e-16
-2.04257e-17
-1.11868e-16
-2.06904e-17
-8.0172e-17
-2.12323e-17
-5.12451e-17
-2.10649e-17
-1.91419e-17
-2.24354e-17
1.68651e-17
-2.21472e-17
6.21932e-17
-2.12198e-17
1.07806e-16
-2.13912e-17
1.51837e-16
-2.28907e-17
2.06984e-16
-2.39416e-17
2.8726e-16
-2.5279e-17
3.81483e-16
-2.53405e-17
5.0615e-16
-2.37679e-17
6.34943e-16
-2.06878e-17
7.51407e-16
-1.69363e-17
8.33258e-16
-1.26751e-17
8.80845e-16
-8.38413e-18
8.83714e-16
-4.48778e-18
8.38388e-16
-1.85244e-18
7.39471e-16
-6.40109e-20
6.34704e-16
1.12802e-18
5.18389e-16
1.48255e-18
4.01908e-16
1.53376e-18
3.06171e-16
1.35579e-18
2.2928e-16
1.40356e-18
1.89448e-16
1.4835e-18
1.51261e-16
1.82554e-18
1.22932e-16
2.41696e-18
9.99219e-17
2.74808e-18
7.73329e-17
2.02666e-18
4.90635e-17
1.06993e-18
2.61012e-17
6.26932e-19
1.57313e-17
3.8938e-19
9.91778e-18
2.52982e-19
6.42446e-18
1.66179e-19
4.15968e-18
1.12835e-19
2.75143e-18
7.41528e-20
1.75399e-18
4.76521e-20
1.0874e-18
2.71657e-20
5.96631e-19
1.32845e-20
2.80686e-19
6.35484e-21
1.28754e-19
3.10489e-21
6.03426e-20
1.5508e-21
2.89098e-20
7.97802e-22
1.42043e-20
4.00285e-22
6.81095e-21
2.00229e-22
3.24388e-21
9.64877e-23
1.47823e-21
4.21878e-23
6.07194e-22
1.72106e-23
2.31689e-22
7.75193e-24
9.62809e-23
3.76374e-24
4.26609e-23
2.00655e-24
2.04968e-23
1.16556e-24
1.05423e-23
7.17968e-25
5.62561e-24
4.70052e-25
3.10319e-24
3.24071e-25
1.72718e-24
2.34888e-25
9.41356e-25
1.75666e-25
4.51958e-25
1.36171e-25
1.31594e-25
1.09762e-25
-4.32192e-28
8.74283e-26
-1.18085e-27
6.79638e-26
-1.82598e-27
4.99922e-26
-2.35555e-27
3.41401e-26
-2.80472e-27
2.00188e-26
-3.1559e-27
7.15115e-27
-3.46218e-27
-4.68653e-27
-3.68963e-27
-1.50094e-26
-3.85831e-27
-2.38043e-26
-3.94038e-27
-3.07914e-26
-3.94043e-27
-3.58464e-26
-3.87933e-27
-3.87728e-26
-3.74518e-27
-3.94129e-26
-3.53368e-27
-3.83429e-26
-3.21608e-27
-3.66804e-26
-2.8144e-27
-3.48794e-26
-2.408e-27
-3.27116e-26
-2.03554e-27
-2.98913e-26
-1.69447e-27
-2.60758e-26
-1.3772e-27
-2.1471e-26
-1.07308e-27
-1.68819e-26
-7.92041e-28
-1.31059e-26
-5.53208e-28
-1.03292e-26
-3.70694e-28
-8.28282e-27
-2.42419e-28
-6.5936e-27
-1.5543e-28
-5.0955e-27
-9.53303e-29
-3.77984e-27
-5.404e-29
-2.70519e-27
-2.71899e-29
-1.91289e-27
-1.13539e-29
-1.37845e-27
-2.99113e-30
-1.04825e-27
6.63043e-28
-8.11258e-28
1.63356e-27
-6.1471e-28
2.17822e-27
-4.50843e-28
2.36196e-27
-3.20655e-28
2.27131e-27
-2.23064e-28
2.01302e-27
-1.5367e-28
1.68643e-27
-1.06194e-28
1.36439e-27
-7.39715e-29
1.08656e-27
-5.16956e-29
8.60379e-28
-3.5965e-29
6.77016e-28
-2.48519e-29
5.26525e-28
-1.70712e-29
4.04195e-28
-1.16649e-29
3.06747e-28
-7.93662e-30
2.30444e-28
-5.37991e-30
1.71607e-28
-3.62608e-30
1.26821e-28
-2.42676e-30
9.29082e-29
-1.61437e-30
6.73977e-29
-1.06923e-30
4.84525e-29
-7.0385e-31
3.45874e-29
-4.58532e-31
2.45085e-29
-2.95615e-31
1.71846e-29
-1.88964e-31
1.19138e-29
-1.1971e-31
8.17653e-30
-7.51413e-32
5.55494e-30
-4.68043e-32
3.73422e-30
-2.89634e-32
2.48558e-30
-1.78002e-32
1.63999e-30
-1.08463e-32
1.07321e-30
-6.54933e-33
6.96005e-31
-3.92414e-33
4.46871e-31
-2.33689e-33
2.84019e-31
-1.38525e-33
1.7892e-31
-8.17299e-34
1.11782e-31
-4.80388e-34
6.92199e-32
-2.82196e-34
4.24725e-32
-1.66243e-34
2.58489e-32
-9.83264e-35
1.56276e-32
-5.83582e-35
9.3907e-33
-3.47906e-35
5.60412e-33
-2.09518e-35
3.31769e-33
-1.28453e-35
1.9497e-33
-8.05485e-36
1.14063e-33
-5.15829e-36
6.66554e-34
-3.36672e-36
3.89206e-34
-2.2504e-36
2.26579e-34
-1.55768e-36
1.31572e-34
-1.12796e-36
7.67842e-35
-8.56068e-37
4.56251e-35
-6.91674e-37
2.78848e-35
-6.42169e-37
1.79608e-35
-9.09122e-37
1.34183e-35
-9.49568e-36
1.64114e-35
1.89684e-34
-9.65883e-08
-1.35071e-12
-6.65516e-08
3.59645e-08
8.74803e-08
3.10672e-07
5.01722e-09
5.94685e-08
-1.24257e-09
2.42098e-08
1.40391e-09
2.38069e-08
1.02729e-09
1.22176e-08
9.35407e-10
6.46934e-09
3.33263e-10
2.31831e-09
1.34398e-10
7.69239e-10
4.89423e-11
2.63875e-10
1.20957e-11
5.99033e-11
3.54789e-12
1.83082e-11
1.02612e-12
4.02291e-12
3.09318e-13
1.21994e-12
5.27077e-14
2.12671e-13
1.40833e-14
4.80369e-14
2.38349e-15
1.42346e-14
6.34606e-16
3.03926e-15
1.45722e-16
1.73347e-15
4.57739e-17
3.6836e-16
3.26375e-17
4.27513e-16
6.83359e-18
8.80603e-17
1.26125e-18
1.6492e-17
5.7794e-19
7.5247e-18
1.73957e-19
2.18675e-18
5.04827e-20
6.00103e-19
9.55092e-21
1.05499e-19
1.11107e-21
1.12915e-20
8.08078e-23
7.75123e-22
1.28653e-23
1.21413e-22
2.63229e-24
2.40569e-23
6.70594e-25
5.46411e-24
2.09933e-24
1.38095e-23
1.10461e-23
5.13168e-23
4.70032e-23
1.17082e-22
1.80934e-22
6.03741e-23
6.26864e-22
-6.6232e-22
1.94784e-21
-4.9524e-21
5.35668e-21
-2.34198e-20
1.35019e-20
-8.81169e-20
3.11899e-20
-3.15565e-19
7.35022e-20
-9.42139e-19
1.65669e-19
-2.64391e-18
3.4992e-19
-7.26286e-18
6.79849e-19
-1.79245e-17
1.16103e-18
-4.31952e-17
2.05109e-18
-9.12912e-17
3.52087e-18
-1.78103e-16
5.7214e-18
-3.74835e-16
9.01073e-18
-7.35011e-16
1.52436e-17
-1.3047e-15
3.67368e-17
-2.47259e-15
4.53506e-17
-6.99863e-15
5.04494e-17
-1.29206e-14
3.82828e-17
-1.6781e-14
1.02759e-17
-2.43422e-14
5.4965e-17
-3.49476e-14
1.11759e-16
-5.11257e-14
3.6381e-16
-9.15206e-14
2.51372e-15
-1.79868e-13
1.09551e-14
-4.34952e-13
9.30676e-14
-1.53902e-12
5.83821e-13
-5.89314e-12
3.82967e-12
-2.62971e-11
2.28654e-11
-1.10376e-10
9.02842e-11
-3.37693e-10
2.60917e-10
-8.74366e-10
4.88704e-10
-1.41184e-09
7.23322e-10
-1.90098e-09
9.47571e-10
-2.14022e-09
1.05357e-09
-2.13969e-09
1.1028e-09
-1.51071e-09
1.08968e-09
-5.14221e-10
1.75289e-06
2.04019e-08
3.85881e-06
-1.17866e-09
4.24019e-06
-5.40137e-09
2.59693e-06
-5.96668e-09
1.02483e-06
-2.71679e-09
3.71439e-07
-9.8447e-10
8.69052e-08
7.47546e-09
2.67353e-08
2.01247e-08
6.68876e-09
1.14098e-08
1.82532e-09
5.70045e-09
5.78013e-10
2.19769e-09
1.28807e-10
5.98195e-10
3.1721e-11
1.59518e-10
7.03494e-12
3.33853e-11
1.50338e-12
6.50443e-12
2.81008e-13
1.30408e-12
4.7207e-14
2.31059e-13
9.02652e-15
4.48349e-14
3.0029e-15
2.38291e-14
1.64926e-15
1.68146e-14
1.13878e-15
1.09119e-14
8.92245e-16
9.19147e-15
7.67718e-16
7.0393e-15
6.6846e-16
5.79442e-15
5.48121e-16
4.31108e-15
4.55316e-16
3.18512e-15
3.61878e-16
2.29003e-15
2.90151e-16
2.24745e-15
2.46219e-16
1.62112e-15
2.10592e-16
9.95194e-16
1.96194e-16
5.85172e-16
2.11293e-16
1.84606e-16
2.3013e-16
-1.39449e-16
2.23893e-16
-3.16117e-16
1.78778e-16
-4.84804e-16
1.7489e-16
-6.40817e-16
1.77606e-16
-8.59958e-16
2.11991e-16
-1.1487e-15
2.54074e-16
-1.52881e-15
3.0973e-16
-1.95692e-15
3.57705e-16
-3.60571e-15
3.99293e-16
-4.42108e-15
4.43301e-16
-5.54972e-15
4.82097e-16
-6.6351e-15
5.30507e-16
-7.99322e-15
5.917e-16
-9.46592e-15
6.72859e-16
-1.15977e-14
7.59606e-16
-1.50051e-14
7.7579e-16
-1.73711e-14
7.56358e-16
-1.80973e-14
7.64386e-16
-1.95588e-14
8.58762e-16
-2.24286e-14
8.9279e-16
-2.59988e-14
9.69618e-16
-3.21333e-14
1.03427e-15
-3.69946e-14
1.19426e-15
-4.26642e-14
1.81799e-15
-5.76887e-14
2.48729e-15
-7.91797e-14
3.45242e-15
-1.23541e-13
4.48008e-15
-1.83271e-13
4.33864e-15
-3.40937e-13
-3.17683e-15
-7.81927e-13
-2.99789e-14
-1.73587e-12
-8.59783e-14
-3.81424e-12
-1.45415e-13
-7.87356e-12
-1.0964e-13
-1.40592e-11
3.67171e-13
-2.1059e-11
1.41639e-12
-2.28518e-11
2.83582e-12
-2.68279e-11
4.27458e-12
-2.44368e-11
6.0443e-12
-1.40659e-11
6.96196e-12
2.36535e-16
8.74329e-12
3.17062e-15
7.07855e-12
3.9978e-15
-2.32064e-11
6.37075e-15
-7.32625e-11
8.79952e-15
-1.01285e-10
1.42321e-14
-8.43296e-11
2.47635e-14
-4.05677e-11
2.39539e-11
-2.17668e-11
3.39956e-11
-6.69982e-12
2.00429e-11
2.0619e-12
1.40309e-11
3.71463e-12
1.16176e-11
1.93662e-12
4.58621e-12
1.48185e-12
2.98926e-12
5.81923e-13
9.92453e-13
2.40653e-13
3.75299e-13
9.42891e-14
1.41824e-13
4.32151e-14
6.74902e-14
9.93361e-15
1.46548e-14
3.19087e-15
7.37437e-15
1.00631e-15
2.98523e-15
3.0875e-16
1.85841e-15
9.78207e-17
4.64922e-16
3.49594e-17
2.48344e-16
3.47725e-17
4.52286e-16
1.81127e-17
2.11847e-16
1.09864e-17
1.15409e-16
8.984e-18
8.23576e-17
8.15213e-18
6.2468e-17
7.29784e-18
4.37217e-17
6.40487e-18
2.70603e-17
5.11915e-18
1.18902e-17
4.79284e-18
1.52689e-18
4.33318e-18
-3.09859e-18
4.3803e-18
-7.10045e-18
4.26873e-18
-1.10799e-17
3.97609e-18
-1.48788e-17
3.6427e-18
-1.77903e-17
3.27439e-18
-2.08569e-17
3.00384e-18
-2.36492e-17
2.807e-18
-2.70084e-17
2.75148e-18
-3.36464e-17
2.59975e-18
-3.90115e-17
2.46914e-18
-4.40455e-17
2.11339e-18
-4.55298e-17
1.70036e-18
-4.69681e-17
1.32674e-18
-4.71481e-17
8.47429e-19
-4.86496e-17
4.26424e-19
-5.71052e-17
-1.08521e-19
-6.20522e-17
-7.93121e-19
-6.36849e-17
-1.58231e-18
-6.74941e-17
-2.4597e-18
-7.36402e-17
-3.18391e-18
-7.54701e-17
-4.19447e-18
-7.5464e-17
-5.20985e-18
-7.70862e-17
-6.89138e-18
-8.62393e-17
-7.70379e-18
-9.51916e-17
-7.35865e-18
-9.00529e-17
-8.27233e-18
-7.04559e-17
-9.84199e-18
-6.5866e-17
-1.23908e-17
-6.91952e-17
-1.31063e-17
-7.36416e-17
-1.38579e-17
-6.78862e-17
-1.30282e-17
-5.9921e-17
-1.36843e-17
-4.89781e-17
-1.63501e-17
-3.90519e-17
-1.63383e-17
-3.50483e-17
-1.68805e-17
-2.55041e-17
-1.75949e-17
-1.56421e-17
-1.76955e-17
-5.89592e-18
-1.92611e-17
1.41257e-17
-1.98633e-17
5.59696e-17
-1.77508e-17
1.02304e-16
-1.59879e-17
1.34928e-16
-1.43782e-17
1.64716e-16
-1.2075e-17
1.92449e-16
-1.01628e-17
2.0536e-16
-8.16215e-18
2.17294e-16
-6.28767e-18
2.18616e-16
-4.59581e-18
2.12452e-16
-3.20092e-18
1.97791e-16
-2.11403e-18
1.78101e-16
-1.24356e-18
1.57767e-16
-6.10565e-19
1.33226e-16
-2.33281e-19
1.0688e-16
-1.23397e-20
8.43286e-17
1.28778e-19
6.6463e-17
1.69693e-19
5.01669e-17
1.67467e-19
3.62073e-17
1.5174e-19
2.72386e-17
1.53264e-19
2.17455e-17
1.55347e-19
1.64297e-17
1.69754e-19
1.18988e-17
1.82695e-19
8.07458e-18
1.62086e-19
5.00251e-18
1.00404e-19
2.67226e-18
5.41262e-20
1.43553e-18
3.04581e-20
8.2618e-19
1.77207e-20
4.87107e-19
1.05847e-20
2.9014e-19
6.21512e-21
1.67965e-19
3.66597e-21
9.65879e-20
2.0157e-21
5.15299e-20
1.05701e-21
2.60826e-20
4.99816e-22
1.18756e-20
2.23792e-22
5.1159e-21
9.69119e-23
2.12537e-21
4.31683e-23
9.08419e-22
1.9501e-23
3.93616e-22
8.90125e-24
1.71696e-22
3.86882e-24
7.1317e-23
1.63985e-24
2.87839e-23
6.65807e-25
1.10555e-23
2.5428e-25
3.9689e-24
9.7978e-26
1.43018e-24
4.19752e-26
5.6583e-25
1.93362e-26
2.38109e-25
9.60058e-27
1.06667e-25
5.14884e-27
5.07475e-26
2.93769e-27
2.51606e-26
1.8057e-27
1.30955e-26
1.185e-27
6.99111e-27
8.31192e-28
3.74044e-27
6.10378e-28
1.82555e-27
4.69426e-28
5.978e-28
3.77737e-28
-1.09256e-30
3.01681e-28
-3.58781e-30
2.36137e-28
-5.7591e-30
1.74941e-28
-7.56075e-30
1.21152e-28
-9.13908e-30
7.17074e-29
-1.03909e-29
2.65781e-29
-1.15334e-29
-1.53183e-29
-1.24056e-29
-5.30782e-29
-1.31128e-29
-8.56453e-29
-1.35168e-29
-1.12007e-28
-1.363e-29
-1.31437e-28
-1.35198e-29
-1.43092e-28
-1.31182e-29
-1.46002e-28
-1.24282e-29
-1.4191e-28
-1.13265e-29
-1.35323e-28
-9.886e-30
-1.2803e-28
-8.4296e-30
-1.19224e-28
-7.09553e-30
-1.08025e-28
-5.87035e-30
-9.31727e-29
-4.73748e-30
-7.55489e-29
-3.653e-30
-5.8181e-29
-2.65453e-30
-4.4046e-29
-1.81508e-30
-3.37709e-29
-1.18704e-30
-2.63565e-29
-7.57476e-31
-2.04033e-29
-4.74963e-31
-1.53055e-29
-2.849e-31
-1.09819e-29
-1.57756e-31
-7.572e-30
-7.72806e-32
-5.13634e-30
-3.1233e-32
-3.54318e-30
-7.87852e-33
-2.56396e-30
1.92331e-30
-1.88664e-30
4.37764e-30
-1.35949e-30
5.49372e-30
-9.45316e-31
5.6381e-30
-6.34198e-31
5.12773e-30
-4.14071e-31
4.28161e-30
-2.66652e-31
3.36499e-30
-1.71807e-31
2.54489e-30
-1.11467e-31
1.89006e-30
-7.25224e-32
1.39432e-30
-4.69159e-32
1.02157e-30
-3.00949e-32
7.3881e-31
-1.91658e-32
5.26515e-31
-1.21374e-32
3.70468e-31
-7.65407e-33
2.57956e-31
-4.80977e-33
1.78061e-31
-3.00641e-33
1.22002e-31
-1.86682e-33
8.28947e-32
-1.1527e-33
5.57966e-32
-7.0895e-34
3.72364e-32
-4.3363e-34
2.46875e-32
-2.62631e-34
1.62564e-32
-1.57416e-34
1.05969e-32
-9.35197e-35
6.83009e-33
-5.50535e-35
4.35675e-33
-3.21038e-35
2.75052e-33
-1.85666e-35
1.71775e-33
-1.06604e-35
1.06168e-33
-6.07597e-36
6.50069e-34
-3.4322e-36
3.94582e-34
-1.91989e-36
2.37235e-34
-1.06444e-36
1.41097e-34
-5.86087e-37
8.29864e-35
-3.20947e-37
4.83367e-35
-1.74772e-37
2.78997e-35
-9.47233e-38
1.59463e-35
-5.12612e-38
9.02199e-36
-2.77969e-38
5.05851e-36
-1.51233e-38
2.81546e-36
-8.25214e-39
1.55643e-36
-4.52095e-39
8.53854e-37
-2.50064e-39
4.64333e-37
-1.40733e-39
2.50501e-37
-8.10015e-40
1.34488e-37
-4.76428e-40
7.21239e-38
-2.85882e-40
3.86583e-38
-1.75858e-40
2.06682e-38
-1.12182e-40
1.10332e-38
-7.50874e-41
5.93245e-39
-5.29522e-41
3.26153e-39
-4.00983e-41
1.85715e-39
-3.55004e-41
1.12824e-39
-4.97227e-41
8.14534e-40
-5.30924e-40
1.00767e-39
1.22843e-38
-6.21549e-09
2.57824e-13
-2.12955e-08
-6.88195e-13
1.00539e-09
3.52798e-08
1.49124e-10
6.9455e-09
-2.83592e-10
2.89716e-09
9.4894e-11
3.2187e-09
1.28621e-10
1.75303e-09
1.33164e-10
9.75471e-10
4.66629e-11
3.52705e-10
1.85905e-11
1.1732e-10
6.31016e-12
3.9076e-11
1.53985e-12
8.7473e-12
4.12526e-13
2.52034e-12
1.17006e-13
5.37894e-13
2.87975e-14
1.55442e-13
4.94231e-15
2.75702e-14
1.21965e-15
7.39277e-15
2.1191e-16
2.33985e-15
7.07203e-17
8.60634e-16
5.05084e-17
7.60496e-16
1.31452e-17
1.93984e-16
3.417e-18
4.87794e-17
6.52718e-19
9.18093e-18
1.2193e-19
1.73634e-18
4.85293e-20
6.85905e-19
1.31579e-20
1.79713e-19
3.19154e-21
4.12765e-20
4.92539e-22
5.93299e-21
4.58193e-23
5.10065e-22
3.04601e-24
3.21402e-23
4.38093e-25
4.53198e-24
9.52624e-26
9.47422e-25
1.61819e-25
1.43038e-24
8.76063e-25
6.24589e-24
4.64274e-24
2.33782e-23
1.97827e-23
5.34093e-23
7.9228e-23
2.80127e-23
2.77248e-22
-3.15138e-22
8.85093e-22
-2.42182e-21
2.54477e-21
-1.18994e-20
6.34763e-21
-4.51951e-20
1.53133e-20
-1.64086e-19
3.69822e-20
-5.0515e-19
8.35335e-20
-1.42906e-18
1.7526e-19
-3.87333e-18
3.36591e-19
-9.38221e-18
6.21483e-19
-2.28204e-17
1.1906e-18
-5.12e-17
2.0621e-18
-1.06026e-16
3.44128e-18
-2.1411e-16
5.58892e-18
-3.9826e-16
8.75247e-18
-7.33527e-16
1.43691e-17
-1.29159e-15
3.16587e-17
-2.17118e-15
4.91024e-17
-6.74674e-15
4.7226e-17
-1.26986e-14
8.76308e-18
-1.99128e-14
2.7552e-17
-3.06586e-14
2.56263e-17
-4.69628e-14
3.04377e-17
-7.20828e-14
3.03559e-16
-1.03257e-13
7.61818e-16
-1.67412e-13
6.0303e-15
-3.37078e-13
4.29703e-14
-9.74979e-13
3.343e-13
-3.80632e-12
2.77358e-12
-1.51924e-11
1.53405e-11
-5.21778e-11
6.26829e-11
-1.81197e-10
1.6934e-10
-3.9783e-10
3.82103e-10
-8.38332e-10
7.79469e-10
-1.43485e-09
1.38359e-09
-1.88662e-09
2.09299e-09
-1.68897e-09
1.39158e-09
-4.78154e-10
2.0827e-08
8.54654e-14
1.39174e-07
-2.33471e-12
2.03378e-07
-2.93548e-11
1.71555e-07
-6.62387e-11
7.01157e-08
-4.48397e-11
2.68151e-08
3.35837e-09
6.57006e-09
3.49442e-09
2.26989e-09
4.54767e-09
7.67527e-10
2.57554e-09
2.63183e-10
1.20092e-09
8.63581e-11
4.42755e-10
1.90956e-11
1.14814e-10
4.45531e-12
2.85982e-11
9.24217e-13
5.56454e-12
1.81807e-13
9.96158e-13
3.11749e-14
1.89097e-13
5.3184e-15
4.53428e-14
1.89107e-15
1.82188e-14
1.23643e-15
1.07566e-14
9.38017e-16
9.61452e-15
6.40203e-16
7.27898e-15
4.40106e-16
4.65049e-15
3.27172e-16
2.91363e-15
2.74271e-16
2.11054e-15
2.17089e-16
1.49469e-15
1.85662e-16
2.01766e-15
1.59939e-16
1.58412e-15
1.24509e-16
1.06701e-15
1.06087e-16
7.70763e-16
8.98851e-17
4.73232e-16
8.31636e-17
2.79422e-16
8.37113e-17
8.43647e-17
7.80534e-17
-6.92049e-17
7.63804e-17
-1.6078e-16
7.29265e-17
-2.52589e-16
7.39655e-17
-3.38649e-16
7.59127e-17
-4.6169e-16
8.88323e-17
-5.98659e-16
1.03466e-16
-7.7178e-16
1.17824e-16
-9.61757e-16
1.38175e-16
-1.14982e-15
1.56306e-16
-1.3817e-15
1.80374e-16
-1.60835e-15
2.2136e-16
-1.85042e-15
2.51139e-16
-3.20084e-15
2.85056e-16
-4.05455e-15
3.29852e-16
-4.97216e-15
4.07822e-16
-6.81703e-15
4.22491e-16
-8.48637e-15
4.23055e-16
-9.39531e-15
4.37622e-16
-1.06051e-14
4.80328e-16
-1.27949e-14
5.32859e-16
-1.6125e-14
5.72355e-16
-2.118e-14
5.51777e-16
-2.5972e-14
5.12641e-16
-2.90525e-14
5.06e-16
-3.284e-14
4.12828e-16
-3.83785e-14
2.64835e-16
-4.8088e-14
-2.35978e-17
-6.04879e-14
-9.11095e-16
-7.46811e-14
-3.69325e-15
-1.156e-13
-1.31776e-14
-1.98589e-13
-4.06853e-14
-3.8051e-13
-1.09587e-13
-7.45654e-13
-2.54427e-13
-1.2933e-12
-3.74613e-13
-1.89737e-12
-6.33963e-13
-2.07208e-12
-9.81549e-13
-2.26415e-12
-1.28525e-12
-2.04996e-12
-1.34247e-12
-1.20661e-12
-1.3665e-12
1.14363e-16
-1.74068e-12
4.97209e-15
-3.91102e-12
5.57238e-15
-7.87515e-12
7.28088e-15
-1.13886e-11
1.16608e-14
-1.26891e-11
1.91642e-14
-9.86756e-12
2.91448e-14
-5.03e-12
1.64121e-12
-2.34288e-12
2.76996e-12
-6.46907e-13
1.7621e-12
1.79284e-13
1.34145e-12
3.20654e-13
1.13505e-12
1.70959e-13
4.32156e-13
1.21129e-13
2.87435e-13
4.35292e-14
1.0613e-13
1.71809e-14
2.72032e-14
6.55263e-15
1.79805e-14
2.71947e-15
9.49782e-15
6.03164e-16
3.2783e-15
1.85726e-16
1.84464e-15
6.41643e-17
4.10783e-16
5.65297e-17
1.17642e-15
2.55564e-17
4.81949e-16
1.53528e-17
2.50831e-16
7.59923e-18
1.08263e-16
4.81165e-18
6.16562e-17
3.63066e-18
4.17627e-17
3.36934e-18
3.38452e-17
3.14036e-18
2.6398e-17
2.79332e-18
1.84126e-17
2.39079e-18
1.11563e-17
1.84545e-18
4.79275e-18
1.70252e-18
7.03667e-19
1.56355e-18
-8.07641e-19
1.58391e-18
-1.90226e-18
1.53547e-18
-2.98747e-18
1.45793e-18
-4.00679e-18
1.30948e-18
-4.72869e-18
1.19941e-18
-5.53837e-18
1.08675e-18
-6.25188e-18
1.01033e-18
-7.15187e-18
1.04157e-18
-9.05561e-18
9.99137e-19
-1.05926e-17
9.31821e-19
-1.19661e-17
7.78716e-19
-1.22966e-17
6.2935e-19
-1.27941e-17
4.67456e-19
-1.28463e-17
3.11116e-19
-1.3496e-17
1.63622e-19
-1.62504e-17
-4.65406e-20
-1.75911e-17
-2.88972e-19
-1.81566e-17
-5.78901e-19
-1.88222e-17
-8.56033e-19
-2.05541e-17
-1.11662e-18
-2.06694e-17
-1.39971e-18
-2.09036e-17
-1.87473e-18
-2.08792e-17
-2.43213e-18
-2.36087e-17
-2.67491e-18
-2.53699e-17
-2.41047e-18
-2.39244e-17
-2.58761e-18
-1.86346e-17
-3.12004e-18
-1.70873e-17
-3.83441e-18
-1.76515e-17
-4.10907e-18
-1.81316e-17
-4.24961e-18
-1.6742e-17
-4.17399e-18
-1.46344e-17
-4.0798e-18
-1.21562e-17
-4.69208e-18
-9.23126e-18
-4.73933e-18
-7.84828e-18
-4.65927e-18
-5.72895e-18
-4.70994e-18
-3.38429e-18
-4.65046e-18
-1.28396e-18
-4.90389e-18
3.75323e-18
-4.85181e-18
1.51576e-17
-4.16104e-18
2.68175e-17
-3.56897e-18
3.40658e-17
-3.03484e-18
3.96766e-17
-2.36752e-18
4.38812e-17
-1.85046e-18
4.35364e-17
-1.37268e-18
4.27708e-17
-9.79369e-19
3.97722e-17
-6.6418e-19
3.57907e-17
-4.25769e-19
3.09178e-17
-2.66383e-19
2.56572e-17
-1.4725e-19
2.15701e-17
-6.90029e-20
1.71039e-17
-2.50285e-20
1.30645e-17
-1.42051e-21
9.77569e-18
1.32135e-20
7.52569e-18
1.70443e-20
5.46596e-18
1.58544e-20
3.70444e-18
1.38735e-20
2.64963e-18
1.29136e-20
1.93459e-18
1.20573e-20
1.33414e-18
1.15583e-20
8.52761e-19
1.05211e-20
5.01167e-19
8.01155e-21
2.72312e-19
4.65713e-21
1.3679e-19
2.40918e-21
6.98639e-20
1.26171e-21
3.7229e-20
6.69411e-22
1.99828e-20
3.58502e-22
1.06732e-20
1.84834e-22
5.42645e-21
9.42992e-23
2.70094e-21
4.41575e-23
1.22754e-21
1.98315e-23
5.32409e-22
8.29125e-24
2.14415e-22
3.38461e-24
8.42255e-23
1.32193e-24
3.15734e-23
5.31047e-25
1.21737e-23
2.13872e-25
4.70264e-24
8.56155e-26
1.79994e-24
3.2191e-26
6.46771e-25
1.17364e-26
2.2455e-25
4.15639e-27
7.5253e-26
1.44099e-27
2.45367e-26
5.22367e-28
8.31882e-27
2.08347e-28
3.06666e-27
8.87463e-29
1.19441e-27
4.03538e-29
4.90482e-28
1.9871e-29
2.14604e-28
1.05033e-29
9.8915e-29
6.08345e-30
4.8658e-29
3.80396e-30
2.49596e-29
2.58896e-30
1.30915e-29
1.86666e-30
6.4529e-30
1.41983e-30
2.29063e-30
1.14173e-30
-2.35025e-33
9.14112e-31
-9.81621e-33
7.20356e-31
-1.63817e-32
5.37279e-31
-2.18859e-32
3.75683e-31
-2.68527e-32
2.24926e-31
-3.08442e-32
8.61732e-32
-3.46375e-32
-4.45263e-32
-3.75942e-32
-1.65553e-31
-4.01609e-32
-2.71243e-31
-4.17819e-32
-3.58184e-31
-4.24729e-32
-4.22981e-31
-4.24293e-32
-4.63021e-31
-4.13447e-32
-4.7379e-31
-3.93112e-32
-4.5986e-31
-3.58668e-32
-4.3697e-31
-3.12186e-32
-4.11248e-31
-2.65301e-32
-3.80192e-31
-2.2233e-32
-3.4163e-31
-1.82715e-32
-2.91386e-31
-1.46369e-32
-2.32797e-31
-1.11699e-32
-1.7583e-31
-7.99663e-33
-1.30094e-31
-5.35981e-33
-9.72603e-32
-3.42698e-33
-7.40664e-32
-2.13706e-33
-5.58861e-32
-1.31221e-33
-4.07887e-32
-7.70541e-34
-2.8383e-32
-4.1724e-34
-1.89141e-32
-1.99283e-34
-1.23564e-32
-7.81157e-35
-8.18594e-33
-1.89289e-35
-5.6659e-33
5.00894e-33
-3.98383e-33
1.06459e-32
-2.74242e-33
1.26572e-32
-1.81642e-33
1.23573e-32
-1.15523e-33
1.06818e-32
-7.11661e-34
8.44611e-33
-4.30747e-34
6.26031e-33
-2.60176e-34
4.44981e-33
-1.58056e-34
3.09853e-33
-9.62166e-35
2.14065e-33
-5.81489e-35
1.46758e-33
-3.47716e-35
9.91551e-34
-2.06047e-35
6.58732e-34
-1.21305e-35
4.31287e-34
-7.10799e-36
2.79187e-34
-4.14867e-36
1.79082e-34
-2.40819e-36
1.13977e-34
-1.38872e-36
7.19215e-35
-7.96403e-37
4.496e-35
-4.55013e-37
2.78694e-35
-2.58656e-37
1.71669e-35
-1.45668e-37
1.0507e-35
-8.11894e-38
6.36855e-36
-4.484e-38
3.81688e-36
-2.45376e-38
2.26345e-36
-1.32996e-38
1.32836e-36
-7.14586e-39
7.7108e-37
-3.80968e-39
4.42797e-37
-2.01532e-39
2.51784e-37
-1.05626e-39
1.41866e-37
-5.47838e-40
7.91425e-38
-2.81328e-40
4.36436e-38
-1.43354e-40
2.37765e-38
-7.25905e-41
1.28173e-38
-3.65186e-41
6.8415e-39
-1.82674e-41
3.61268e-39
-9.1155e-42
1.8865e-39
-4.55416e-42
9.75385e-40
-2.28126e-42
5.00253e-40
-1.14544e-42
2.54654e-40
-5.77192e-43
1.28545e-40
-2.93498e-43
6.42747e-41
-1.51778e-43
3.18647e-41
-8.02713e-44
1.5716e-41
-4.34115e-44
7.7431e-42
-2.39774e-44
3.81422e-42
-1.35927e-44
1.87526e-42
-8.00509e-45
9.21702e-43
-4.96285e-45
4.57453e-43
-3.25963e-45
2.33185e-43
-2.31911e-45
1.24e-43
-1.9599e-45
7.12105e-44
-2.69591e-45
4.96791e-44
-2.85326e-44
6.15663e-44
7.66765e-43
-1.98622e-10
5.04731e-12
-2.24412e-09
6.68243e-13
-6.41115e-11
3.85218e-09
1.97503e-12
7.90037e-10
-3.20415e-11
3.48473e-10
1.26843e-11
4.32878e-10
1.75766e-11
2.4956e-10
1.88746e-11
1.45884e-10
6.45705e-12
5.33541e-11
2.54712e-12
1.78081e-11
8.01709e-13
5.7633e-12
1.93635e-13
1.27803e-12
4.84513e-14
3.49428e-13
1.28278e-14
7.55203e-14
2.21651e-15
2.25732e-14
4.79531e-16
4.73319e-15
1.26004e-16
2.10104e-15
3.93069e-17
7.2166e-16
1.92248e-17
3.28038e-16
5.89243e-18
9.71861e-17
1.43341e-18
2.31727e-17
3.46952e-19
5.43349e-18
6.25603e-20
9.66445e-19
1.14982e-20
1.79467e-19
3.93244e-21
6.07694e-20
9.51064e-22
1.42124e-20
1.921e-22
2.7217e-21
2.44544e-23
3.23398e-22
1.85171e-24
2.27217e-23
1.13076e-25
1.31952e-24
1.54417e-26
1.7612e-25
1.15737e-26
1.26157e-25
5.91989e-26
5.7206e-25
3.43831e-25
2.67766e-24
1.814e-24
9.9783e-24
7.98393e-24
2.35394e-23
3.31257e-23
1.25394e-23
1.20123e-22
-1.55451e-22
3.96848e-22
-1.23273e-21
1.18742e-21
-6.2267e-21
3.00875e-21
-2.43621e-20
7.42761e-21
-8.89095e-20
1.84304e-20
-2.81752e-19
4.21095e-20
-8.12051e-19
8.70292e-20
-2.22193e-18
1.68257e-19
-5.49005e-18
3.20431e-19
-1.33451e-17
6.54543e-19
-3.04926e-17
1.16447e-18
-6.51592e-17
1.9374e-18
-1.33337e-16
2.99235e-18
-2.49669e-16
4.85927e-18
-4.56988e-16
7.59552e-18
-8.2041e-16
9.89345e-18
-1.42132e-15
2.29683e-17
-2.64165e-15
3.79655e-17
-7.78163e-15
1.12895e-17
-1.37582e-14
-4.11299e-18
-2.14102e-14
-2.98943e-17
-3.31505e-14
-6.7734e-17
-5.0355e-14
-8.69295e-18
-7.31106e-14
-1.20206e-16
-1.03364e-13
4.16297e-17
-1.4302e-13
1.12723e-15
-2.54913e-13
8.93303e-15
-6.32004e-13
9.66149e-14
-2.21278e-12
6.73528e-13
-7.62823e-12
4.0563e-12
-2.39526e-11
1.68066e-11
-5.47101e-11
6.27059e-11
-1.24676e-10
1.83394e-10
-2.53336e-10
4.03456e-10
-4.26235e-10
7.15323e-10
-5.19609e-10
9.21734e-10
-3.08249e-10
1.08988e-09
2.08686e-13
4.39798e-09
1.98755e-13
8.20888e-09
8.90718e-14
6.88621e-09
-6.79321e-13
3.45347e-09
-6.94859e-13
1.37074e-09
5.9278e-10
3.36819e-10
7.19056e-10
1.88756e-10
9.16907e-10
1.0283e-10
5.42064e-10
4.10364e-11
2.44952e-10
1.32759e-11
8.76324e-11
2.92688e-12
2.18141e-11
6.45798e-13
5.08614e-12
1.23185e-13
9.20763e-13
2.16215e-14
1.58353e-13
3.77163e-15
4.65139e-14
1.17117e-15
1.32129e-14
6.72153e-16
6.74548e-15
5.55075e-16
4.90243e-15
4.55371e-16
5.0033e-15
2.59953e-16
2.903e-15
1.70351e-16
1.83958e-15
1.479e-16
2.17281e-15
1.22825e-16
1.71846e-15
1.05691e-16
1.37073e-15
8.91872e-17
1.06857e-15
7.45221e-17
8.1238e-16
5.868e-17
5.56739e-16
5.10177e-17
4.07715e-16
4.34963e-17
2.55412e-16
4.08733e-17
1.53715e-16
3.95803e-17
4.55304e-17
3.68529e-17
-3.65548e-17
3.62839e-17
-8.61134e-17
3.49518e-17
-1.40306e-16
3.58988e-17
-1.90922e-16
3.76231e-17
-2.63617e-16
4.28492e-17
-3.40638e-16
4.78556e-17
-4.27716e-16
5.35864e-17
-5.28294e-16
5.92865e-17
-6.31524e-16
6.53285e-17
-7.49959e-16
7.01086e-17
-8.79488e-16
7.71977e-17
-9.93397e-16
8.39969e-17
-1.15492e-15
9.87428e-17
-1.31502e-15
1.07858e-16
-1.49826e-15
1.41242e-16
-1.66757e-15
1.65265e-16
-1.91716e-15
1.83968e-16
-2.07916e-15
1.99828e-16
-3.45528e-15
2.35158e-16
-4.61257e-15
2.82313e-16
-6.57553e-15
3.22925e-16
-9.78363e-15
3.42384e-16
-1.40767e-14
3.02306e-16
-1.70128e-14
2.51338e-16
-1.98913e-14
1.58085e-16
-2.29764e-14
4.21524e-17
-2.75101e-14
-1.21258e-16
-3.33131e-14
-4.32e-16
-3.82549e-14
-9.7584e-16
-4.57582e-14
-2.22715e-15
-5.51713e-14
-5.50418e-15
-6.96718e-14
-1.3276e-14
-9.86881e-14
-2.90991e-14
-1.37916e-13
-4.45628e-14
-1.82913e-13
-7.0437e-14
-1.95793e-13
-1.05841e-13
-1.93333e-13
-1.39333e-13
-1.71528e-13
-1.49094e-13
-1.02321e-13
-1.55507e-13
2.74252e-17
-1.70475e-13
5.32883e-15
-2.7267e-13
8.08854e-15
-5.15137e-13
9.33977e-15
-7.89318e-13
1.28599e-14
-9.49474e-13
1.95195e-14
-8.33591e-13
2.82787e-14
-4.36989e-13
1.25557e-13
-2.00979e-13
2.42631e-13
-5.2823e-14
1.81305e-13
1.65485e-14
1.55626e-13
2.76891e-14
1.30468e-13
1.49841e-14
4.30856e-14
9.92944e-15
3.11794e-14
3.2489e-15
1.84736e-14
1.26274e-15
8.60249e-15
4.88707e-16
3.45737e-15
1.87909e-16
1.32606e-15
5.0244e-17
5.1189e-16
4.23383e-17
1.06445e-15
1.74574e-17
4.18873e-16
1.07945e-17
2.43996e-16
5.92678e-18
1.21491e-16
3.42035e-18
6.11227e-17
2.10413e-18
3.29487e-17
1.42651e-18
2.00934e-17
1.07201e-18
1.3545e-17
9.93087e-19
1.09608e-17
8.88381e-19
8.2114e-18
7.56611e-19
5.49636e-18
6.18363e-19
3.19089e-18
4.56682e-19
1.32521e-18
4.18672e-19
2.16408e-19
3.85398e-19
-1.59832e-19
3.94121e-19
-3.85678e-19
3.82633e-19
-6.11264e-19
3.6215e-19
-8.15622e-19
3.20562e-19
-9.50723e-19
2.93302e-19
-1.10868e-18
2.64419e-19
-1.24655e-18
2.46166e-19
-1.42836e-18
2.57664e-19
-1.80871e-18
2.49025e-19
-2.12284e-18
2.32138e-19
-2.39869e-18
1.92721e-19
-2.44973e-18
1.57102e-19
-2.55931e-18
1.16467e-19
-2.59372e-18
7.88049e-20
-2.73955e-18
4.25706e-20
-3.34924e-18
-1.21936e-20
-3.62807e-18
-7.34663e-20
-3.77666e-18
-1.47583e-19
-3.88511e-18
-2.13897e-19
-4.23541e-18
-2.82686e-19
-4.21257e-18
-3.46387e-19
-4.30259e-18
-4.69703e-19
-4.24658e-18
-5.92376e-19
-4.77145e-18
-6.49778e-19
-4.99967e-18
-5.82563e-19
-4.72425e-18
-6.13578e-19
-3.71922e-18
-7.27201e-19
-3.38904e-18
-8.624e-19
-3.41867e-18
-9.24786e-19
-3.40271e-18
-9.47324e-19
-3.13657e-18
-9.44729e-19
-2.74404e-18
-8.77569e-19
-2.28297e-18
-9.55547e-19
-1.68525e-18
-9.64234e-19
-1.36905e-18
-9.0651e-19
-9.95381e-19
-8.9203e-19
-5.74694e-19
-8.58099e-19
-2.21398e-19
-8.60306e-19
7.06259e-19
-8.0533e-19
2.85356e-18
-6.67161e-19
4.81735e-18
-5.55564e-19
5.93102e-18
-4.5753e-19
6.71877e-18
-3.40444e-19
7.20499e-18
-2.54007e-19
6.82525e-18
-1.79121e-19
6.40204e-18
-1.21583e-19
5.66395e-18
-7.83642e-20
4.84937e-18
-4.73005e-20
3.98343e-18
-2.85845e-20
3.11568e-18
-1.50257e-20
2.53233e-18
-6.77548e-21
1.91083e-18
-2.33058e-21
1.40376e-18
-1.25047e-22
9.98725e-19
1.17941e-21
7.37369e-19
1.45429e-21
5.06681e-19
1.26996e-21
3.21571e-19
1.05031e-21
2.14728e-19
8.84709e-22
1.4101e-19
7.59841e-22
8.89058e-20
6.49529e-22
5.10412e-20
5.19334e-22
2.69009e-20
3.55733e-22
1.33906e-20
1.93958e-22
6.32059e-21
9.35636e-23
2.98721e-21
4.48473e-23
1.45025e-21
2.1417e-23
6.99549e-22
1.02018e-23
3.32337e-22
4.61473e-24
1.48271e-22
2.05469e-24
6.445e-23
8.36635e-25
2.54798e-23
3.31521e-25
9.75449e-24
1.24839e-25
3.53957e-24
4.62222e-26
1.26133e-24
1.62275e-26
4.25209e-25
5.83312e-27
1.46729e-25
2.0793e-27
5.01702e-26
7.28359e-28
1.68106e-26
2.38495e-28
5.26092e-27
7.60684e-29
1.59801e-27
2.40419e-29
4.78088e-28
7.65069e-30
1.43142e-28
2.57416e-30
4.50494e-29
9.39717e-31
1.52115e-29
3.65044e-31
5.40734e-30
1.5105e-31
2.02253e-30
6.82564e-32
8.13447e-31
3.34895e-32
3.48869e-31
1.82917e-32
1.62441e-31
1.09186e-32
8.00211e-32
7.19581e-33
4.11388e-32
5.11018e-33
2.03214e-32
3.83508e-33
7.65462e-33
3.08258e-33
-4.19518e-36
2.47471e-33
-2.44994e-35
1.9641e-33
-4.25639e-35
1.4758e-33
-5.78664e-35
1.03998e-33
-7.20467e-35
6.27136e-34
-8.35977e-35
2.50621e-34
-9.50013e-35
-1.14689e-34
-1.04009e-34
-4.6083e-34
-1.12297e-34
-7.6708e-34
-1.17918e-34
-1.0226e-33
-1.20836e-34
-1.21426e-33
-1.21555e-34
-1.3359e-33
-1.18904e-34
-1.37024e-33
-1.13443e-34
-1.32782e-33
-1.0362e-34
-1.25756e-33
-8.99413e-35
-1.17745e-33
-7.61878e-35
-1.08023e-33
-6.35607e-35
-9.62488e-34
-5.18623e-35
-8.12279e-34
-4.12249e-35
-6.39918e-34
-3.11345e-35
-4.74618e-34
-2.19672e-35
-3.43757e-34
-1.44464e-35
-2.5103e-34
-9.04012e-36
-1.86794e-34
-5.51445e-36
-1.37544e-34
-3.31851e-36
-9.78447e-35
-1.9084e-36
-6.61984e-35
-1.01106e-36
-4.27461e-35
-4.71273e-37
-2.69743e-35
-1.79452e-37
-1.72225e-35
-4.18615e-38
-1.14393e-35
1.18688e-35
-7.71253e-36
2.37634e-35
-5.08939e-36
2.69091e-35
-3.22268e-36
2.50957e-35
-1.95071e-36
2.06992e-35
-1.13856e-36
1.55614e-35
-6.50475e-37
1.09235e-35
-3.69859e-37
7.32841e-36
-2.11229e-37
4.80441e-36
-1.20777e-37
3.12086e-36
-6.84426e-38
2.00984e-36
-3.82855e-38
1.27332e-36
-2.11774e-38
7.91333e-37
-1.16242e-38
4.83645e-37
-6.34527e-39
2.9191e-37
-3.44734e-39
1.74443e-37
-1.86157e-39
1.03353e-37
-9.98272e-40
6.06736e-38
-5.32221e-40
3.5272e-38
-2.82661e-40
2.03279e-38
-1.49398e-40
1.16412e-38
-7.82561e-41
6.62523e-39
-4.05669e-41
3.73502e-39
-2.08316e-41
2.08195e-39
-1.0599e-41
1.14797e-39
-5.34125e-42
6.26413e-40
-2.6674e-42
3.38081e-40
-1.32116e-42
1.80464e-40
-6.49101e-43
9.53476e-41
-3.1589e-43
4.99022e-41
-1.52038e-43
2.58505e-41
-7.23796e-44
1.32288e-41
-3.41645e-44
6.68158e-42
-1.60123e-44
3.3367e-42
-7.44892e-45
1.64864e-42
-3.4422e-45
8.05089e-43
-1.5853e-45
3.88396e-43
-7.30396e-46
1.85357e-43
-3.37159e-46
8.76837e-44
-1.55916e-46
4.11399e-44
-7.2327e-47
1.91258e-44
-3.38407e-47
8.80155e-45
-1.60963e-47
4.01374e-45
-7.83033e-48
1.82045e-45
-3.89793e-48
8.24885e-46
-1.98398e-48
3.73855e-46
-1.0379e-48
1.69242e-46
-5.65229e-49
7.67035e-47
-3.252e-49
3.51997e-47
-1.99359e-49
1.66687e-47
-1.33534e-49
8.29527e-48
-1.07756e-49
4.51114e-48
-1.44504e-49
3.03892e-48
-1.48031e-48
3.73778e-48
4.63642e-47
-3.51709e-12
4.18821e-13
-2.17398e-10
1.44227e-13
-1.15623e-11
4.06653e-10
-6.17013e-13
8.89943e-11
-3.43631e-12
4.21113e-11
1.83765e-12
5.79787e-11
2.36445e-12
3.53493e-11
2.62266e-12
2.1667e-11
8.84291e-13
8.02717e-12
3.44364e-13
2.68907e-12
9.93013e-14
8.49827e-13
2.34027e-14
1.91106e-13
5.18447e-15
5.07271e-14
1.33404e-15
1.29673e-14
2.44084e-16
4.01792e-15
7.6871e-17
1.39391e-15
4.78884e-17
9.53592e-16
1.26904e-17
2.44192e-16
2.50511e-18
4.71486e-17
6.82297e-19
1.24257e-17
1.54731e-19
2.76195e-18
3.42065e-20
5.92328e-19
5.93088e-21
1.01395e-19
1.05275e-21
1.81516e-20
3.08179e-22
5.25107e-21
6.57837e-23
1.08455e-21
1.10904e-23
1.73559e-22
1.17276e-24
1.71652e-23
7.34916e-26
1.00168e-24
4.16269e-27
5.40974e-26
9.36071e-28
1.18583e-26
3.56132e-27
4.29102e-26
2.21816e-26
2.36449e-25
1.31982e-25
1.13304e-24
7.07925e-25
4.29307e-24
3.27087e-24
1.06267e-23
1.39754e-23
5.72893e-24
5.35361e-23
-7.52926e-23
1.83657e-22
-6.18e-22
5.65483e-22
-3.17701e-21
1.48685e-21
-1.27732e-20
3.74176e-21
-4.7159e-20
9.51664e-21
-1.53106e-19
2.19455e-20
-4.47785e-19
4.63762e-20
-1.23894e-18
9.42765e-20
-3.1073e-18
1.81824e-19
-7.64729e-18
3.73593e-19
-1.74048e-17
6.82486e-19
-3.72046e-17
1.17168e-18
-7.63214e-17
1.88446e-18
-1.44007e-16
3.03162e-18
-2.622e-16
4.91485e-18
-4.72779e-16
6.04816e-18
-8.49119e-16
1.47881e-17
-1.51226e-15
2.51623e-17
-4.17925e-15
9.8592e-18
-9.02685e-15
-1.4399e-19
-1.50555e-14
-2.44215e-17
-2.37614e-14
-6.09993e-17
-3.60684e-14
-6.85393e-17
-5.39649e-14
-1.97073e-16
-7.61343e-14
-3.05194e-16
-9.84361e-14
-4.64416e-16
-1.38095e-13
-1.09858e-15
-2.19046e-13
-2.08219e-15
-4.71851e-13
-2.6828e-15
-1.3559e-12
5.37514e-14
-3.96857e-12
3.93903e-13
-9.64568e-12
1.86604e-12
-2.06049e-11
7.15976e-12
-4.27551e-11
2.04631e-11
-7.45748e-11
4.34582e-11
-9.17511e-11
6.59648e-11
-5.67125e-11
8.31967e-11
3.13352e-14
1.2618e-10
8.9625e-14
2.08829e-10
1.1897e-13
1.56724e-10
1.29039e-13
3.07951e-11
1.42124e-13
-1.37027e-11
6.88551e-11
-8.47493e-12
1.20349e-10
1.52342e-11
1.76655e-10
1.56669e-11
1.10463e-10
6.77267e-12
4.9e-11
2.08593e-12
1.71874e-11
4.56865e-13
4.14355e-12
9.25106e-14
9.06788e-13
1.53062e-14
1.5064e-13
2.91548e-15
4.61595e-14
7.11596e-16
1.15946e-14
3.65582e-16
4.44964e-15
2.5957e-16
3.24892e-15
2.13011e-16
2.63936e-15
1.66752e-16
2.1524e-15
1.30549e-16
2.32984e-15
1.08161e-16
1.85568e-15
8.37943e-17
1.37119e-15
6.65942e-17
1.0373e-15
5.41054e-17
7.83413e-16
4.35442e-17
5.83885e-16
3.64004e-17
4.42538e-16
2.94359e-17
3.13226e-16
2.58272e-17
2.31137e-16
2.20304e-17
1.46283e-16
2.0789e-17
8.85302e-17
1.96675e-17
2.6411e-17
1.81202e-17
-2.0403e-17
1.77408e-17
-4.90751e-17
1.74477e-17
-8.13488e-17
1.81595e-17
-1.11021e-16
1.93597e-17
-1.5492e-16
2.19186e-17
-1.98506e-16
2.37116e-17
-2.49834e-16
2.65363e-17
-3.0537e-16
2.92739e-17
-3.66207e-16
3.18979e-17
-4.36811e-16
3.46115e-17
-5.10053e-16
3.74079e-17
-5.82031e-16
4.02894e-17
-6.62791e-16
4.40293e-17
-7.54564e-16
4.53747e-17
-8.6442e-16
4.83874e-17
-9.41435e-16
5.10922e-17
-1.07075e-15
5.28811e-17
-1.21103e-15
5.57835e-17
-1.32592e-15
6.55814e-17
-1.48878e-15
8.06128e-17
-1.70055e-15
1.22544e-16
-2.05663e-15
1.52682e-16
-4.20332e-15
1.44656e-16
-5.82749e-15
1.27093e-16
-7.96644e-15
7.61217e-17
-1.03924e-14
5.53544e-18
-1.38565e-14
-1.07024e-16
-1.88108e-14
-2.8905e-16
-2.41706e-14
-5.26895e-16
-2.78176e-14
-8.65862e-16
-3.08969e-14
-1.39225e-15
-3.36799e-14
-2.27386e-15
-3.78018e-14
-3.79498e-15
-4.04141e-14
-5.47395e-15
-3.85705e-14
-7.32513e-15
-3.19066e-14
-1.00271e-14
-2.57541e-14
-1.27282e-14
-2.05061e-14
-1.44559e-14
-1.13326e-14
-1.45238e-14
-5.2689e-17
-1.54461e-14
4.33775e-15
-1.96783e-14
8.26108e-15
-3.25283e-14
1.10092e-14
-5.12803e-14
1.40326e-14
-6.66865e-14
1.921e-14
-6.48297e-14
2.60025e-14
-3.51827e-14
3.20319e-14
-1.63794e-14
3.53402e-14
-4.05206e-15
3.66232e-14
1.61758e-15
3.33768e-14
2.44649e-15
2.56276e-14
1.34111e-15
1.52985e-14
8.77907e-16
7.92794e-15
2.8475e-16
3.10078e-15
1.04764e-16
2.03068e-15
4.06834e-17
5.45939e-16
1.73952e-17
3.28198e-16
1.76052e-17
5.17307e-16
8.89733e-18
2.45716e-16
4.22273e-18
1.11135e-16
2.38245e-18
5.90029e-17
1.49803e-18
3.36902e-17
8.8073e-19
1.73673e-17
5.5295e-19
9.59747e-18
3.60362e-19
5.62937e-18
2.52836e-19
3.54237e-18
2.25954e-19
2.76708e-18
1.91273e-19
1.96365e-18
1.54205e-19
1.24699e-18
1.19608e-19
6.89345e-19
8.46258e-20
2.7681e-19
7.71904e-20
4.91196e-20
7.11858e-20
-2.59599e-20
7.3292e-20
-6.37464e-20
7.14798e-20
-1.02043e-19
6.71718e-20
-1.35425e-19
5.8652e-20
-1.56161e-19
5.34198e-20
-1.81497e-19
4.79465e-20
-2.03535e-19
4.46992e-20
-2.33578e-19
4.67511e-20
-2.93052e-19
4.52921e-20
-3.43887e-19
4.22119e-20
-3.87747e-19
3.47974e-20
-3.93056e-19
2.84858e-20
-4.11048e-19
2.12754e-20
-4.21256e-19
1.44575e-20
-4.44518e-19
7.93411e-21
-5.48527e-19
-2.3112e-21
-5.9426e-19
-1.36984e-20
-6.2348e-19
-2.75182e-20
-6.38299e-19
-3.94177e-20
-6.93976e-19
-5.26817e-20
-6.83981e-19
-6.37862e-20
-7.04686e-19
-8.60571e-20
-6.89023e-19
-1.05718e-19
-7.66839e-19
-1.16239e-19
-7.84476e-19
-1.05285e-19
-7.43751e-19
-1.10215e-19
-5.93248e-19
-1.27518e-19
-5.39119e-19
-1.46495e-19
-5.31294e-19
-1.56707e-19
-5.14009e-19
-1.60675e-19
-4.72773e-19
-1.60323e-19
-4.15648e-19
-1.44538e-19
-3.44788e-19
-1.50253e-19
-2.49927e-19
-1.50468e-19
-1.95789e-19
-1.37403e-19
-1.41427e-19
-1.33464e-19
-8.05929e-20
-1.25854e-19
-3.16889e-20
-1.20535e-19
1.06824e-19
-1.07057e-19
4.33651e-19
-8.59761e-20
7.00154e-19
-7.02006e-20
8.38287e-19
-5.66346e-20
9.32695e-19
-4.06913e-20
9.80599e-19
-2.93477e-20
8.98244e-19
-1.99111e-20
8.14724e-19
-1.29881e-20
6.941e-19
-8.01501e-21
5.7123e-19
-4.59956e-21
4.49687e-19
-2.68739e-21
3.34644e-19
-1.34387e-21
2.63109e-19
-5.81513e-22
1.89131e-19
-1.88398e-22
1.33555e-19
-8.4003e-24
9.00608e-20
9.19078e-23
6.28341e-20
1.06778e-22
4.05431e-20
8.75334e-23
2.41325e-20
6.79287e-23
1.49804e-20
5.17444e-23
8.85572e-21
4.11272e-23
5.14854e-21
3.18214e-23
2.69666e-21
2.28387e-23
1.29921e-21
1.42562e-23
5.98547e-22
7.20053e-24
2.62159e-22
3.19372e-24
1.13198e-22
1.38966e-24
4.96867e-23
5.94501e-25
2.14387e-23
2.51796e-25
9.05554e-24
1.00418e-25
3.56274e-24
3.94478e-26
1.36712e-24
1.41934e-26
4.77757e-25
5.03805e-27
1.63905e-25
1.71556e-27
5.3802e-26
5.73513e-28
1.73142e-26
1.80577e-28
5.23675e-27
5.78165e-29
1.60995e-27
1.81989e-29
4.86116e-28
5.59128e-30
1.42921e-28
1.60844e-30
3.92969e-29
4.54897e-31
1.05854e-29
1.29788e-31
2.85969e-30
3.78421e-32
7.84745e-31
1.16638e-32
2.2629e-31
3.8554e-33
6.92297e-32
1.35644e-33
2.2305e-32
5.09571e-34
7.58191e-33
2.11376e-34
2.80387e-33
9.63698e-35
1.1191e-33
4.96174e-35
4.93515e-34
2.83234e-35
2.33122e-34
1.80799e-35
1.17411e-34
1.26124e-35
5.7917e-35
9.36249e-36
2.27233e-35
7.5044e-36
-5.62088e-39
6.05025e-36
-5.6358e-38
4.83755e-36
-1.01989e-37
3.65203e-36
-1.4106e-37
2.59856e-36
-1.7822e-37
1.57783e-36
-2.08865e-37
6.56975e-37
-2.40242e-37
-2.68806e-37
-2.6523e-37
-1.16323e-36
-2.8945e-37
-1.96539e-36
-3.06798e-37
-2.64399e-36
-3.16945e-37
-3.15515e-36
-3.21095e-37
-3.48768e-36
-3.15196e-37
-3.585e-36
-3.0176e-37
-3.468e-36
-2.75979e-37
-3.27383e-36
-2.38918e-37
-3.04926e-36
-2.01784e-37
-2.77563e-36
-1.67587e-37
-2.4512e-36
-1.35719e-37
-2.04674e-36
-1.07018e-37
-1.58996e-36
-7.99985e-38
-1.15895e-36
-5.56301e-38
-8.22273e-37
-3.59179e-38
-5.87085e-37
-2.20146e-38
-4.27292e-37
-1.31443e-38
-3.07336e-37
-7.75597e-39
-2.13304e-37
-4.36856e-39
-1.405e-37
-2.26486e-39
-8.80701e-38
-1.03082e-39
-5.38075e-38
-3.81707e-40
-3.31836e-38
-8.5901e-41
-2.12172e-38
2.58516e-38
-1.3759e-38
4.9089e-38
-8.72866e-39
5.3168e-38
-5.30003e-39
4.75261e-38
-3.06334e-39
3.75254e-38
-1.69993e-39
2.69128e-38
-9.20004e-40
1.79542e-38
-4.94191e-40
1.14092e-38
-2.66231e-40
7.06675e-39
-1.43442e-40
4.33057e-39
-7.64544e-41
2.62811e-39
-4.0124e-41
1.56605e-39
-2.07748e-41
9.13106e-40
-1.06593e-41
5.22379e-40
-5.43351e-42
2.94726e-40
-2.75382e-42
1.64478e-40
-1.38602e-42
9.09126e-41
-6.92281e-43
4.97456e-41
-3.43575e-43
2.69365e-41
-1.69795e-43
1.4452e-41
-8.35037e-44
7.70203e-42
-4.0704e-44
4.07892e-42
-1.96317e-44
2.13989e-42
-9.37545e-45
1.10976e-42
-4.43598e-45
5.69094e-43
-2.07889e-45
2.88787e-43
-9.65248e-46
1.44948e-43
-4.44344e-46
7.19407e-44
-2.0286e-46
3.53318e-44
-9.17237e-47
1.71852e-44
-4.09959e-47
8.27173e-45
-1.81076e-47
3.93101e-45
-7.92417e-48
1.84228e-45
-3.44061e-48
8.53042e-46
-1.48143e-48
3.90513e-46
-6.32995e-49
1.76526e-46
-2.69304e-49
7.87517e-47
-1.14525e-49
3.47235e-47
-4.87611e-50
1.51649e-47
-2.07853e-50
6.56398e-48
-8.88369e-51
2.81304e-48
-3.82792e-51
1.19255e-48
-1.67623e-51
5.0073e-49
-7.50794e-52
2.09057e-49
-3.44373e-52
8.72094e-50
-1.61704e-52
3.64054e-50
-7.81643e-53
1.51933e-50
-3.94237e-53
6.35838e-51
-2.10876e-53
2.70232e-51
-1.20895e-53
1.19093e-51
-7.6368e-54
5.55684e-52
-5.88359e-54
2.86555e-52
-7.63965e-54
1.86184e-52
-7.43869e-53
2.25338e-52
2.72822e-51
-2.42916e-13
3.77713e-14
-2.02106e-11
4.79285e-14
-1.38796e-12
4.1388e-11
-1.65708e-13
9.97589e-12
-3.80881e-13
5.10148e-12
2.42278e-13
7.73549e-12
3.13889e-13
4.98152e-12
3.57103e-13
3.19681e-12
1.19166e-13
1.20327e-12
4.53922e-14
4.07032e-13
1.14331e-14
1.28235e-13
2.57577e-15
3.19246e-14
5.86538e-16
8.7156e-15
1.61954e-16
2.59921e-15
5.32634e-17
1.25664e-15
2.48176e-17
5.6275e-16
6.81458e-18
1.51018e-16
1.74538e-18
3.74094e-17
3.15117e-19
6.60593e-18
7.77932e-20
1.57959e-18
1.63952e-20
3.26279e-19
3.27826e-21
6.3376e-20
5.50284e-22
1.051e-20
9.31043e-23
1.7906e-21
2.33404e-23
4.42983e-22
4.36053e-24
8.01167e-23
6.16263e-25
1.07596e-23
5.44312e-26
8.90503e-25
2.86493e-27
4.37877e-26
1.68324e-28
2.45814e-27
1.88909e-28
2.68315e-27
1.24825e-27
1.67975e-26
8.17349e-27
9.71498e-26
4.91651e-26
4.70396e-25
2.7066e-25
1.82958e-24
1.30311e-24
4.71644e-24
5.77398e-24
2.59607e-24
2.31978e-23
-3.45037e-23
8.28622e-23
-2.92656e-22
2.60277e-22
-1.52333e-21
7.06595e-22
-6.27558e-21
1.81396e-21
-2.34511e-20
4.72279e-21
-7.76153e-20
1.10793e-20
-2.30053e-19
2.40532e-20
-6.4269e-19
5.06579e-20
-1.64346e-18
1.00982e-19
-4.08199e-18
2.06165e-19
-9.23435e-18
3.74198e-19
-1.93835e-17
6.48688e-19
-3.9283e-17
1.07851e-18
-7.43761e-17
1.75952e-18
-1.34314e-16
2.8837e-18
-2.42612e-16
3.55486e-18
-4.24479e-16
6.87678e-18
-7.69491e-16
1.49765e-17
-1.36834e-15
9.24009e-18
-4.03662e-15
3.91537e-18
-8.29983e-15
-1.80612e-17
-1.46869e-14
-6.37421e-17
-2.41591e-14
-9.05108e-17
-3.79627e-14
-2.09234e-16
-5.73214e-14
-3.39615e-16
-7.92081e-14
-5.45282e-16
-1.03273e-13
-1.0029e-15
-1.33265e-13
-1.85281e-15
-1.94128e-13
-6.05964e-15
-3.54463e-13
-1.71415e-14
-7.76206e-13
-4.06021e-14
-1.76452e-12
-1.08149e-13
-3.50391e-12
-2.37487e-13
-6.97295e-12
-4.21282e-13
-1.21157e-11
-4.09547e-13
-1.49845e-11
-1.69593e-13
-9.51313e-12
-3.2822e-13
2.00786e-14
-1.99173e-12
6.53834e-14
-9.64641e-12
8.42154e-14
-2.10241e-11
1.18363e-13
-2.80184e-11
1.78519e-13
-1.83094e-11
4.73246e-12
-7.31261e-12
1.88256e-11
1.35219e-12
3.3097e-11
2.68468e-12
2.21934e-11
1.1687e-12
9.76383e-12
3.29978e-13
3.40497e-12
7.02889e-14
8.15192e-13
1.174e-14
1.63955e-13
2.29855e-15
5.00626e-14
5.17411e-16
1.17754e-14
2.06897e-16
4.28661e-15
1.57561e-16
2.94317e-15
1.44929e-16
3.27181e-15
1.22953e-16
2.65477e-15
1.04912e-16
2.16535e-15
7.89416e-17
1.56903e-15
5.98254e-17
1.14186e-15
4.44876e-17
8.11887e-16
3.40572e-17
5.90915e-16
2.74817e-17
4.43846e-16
2.21253e-17
3.31639e-16
1.85836e-17
2.51744e-16
1.52697e-17
1.81703e-16
1.34994e-17
1.34362e-16
1.16162e-17
8.68156e-17
1.0974e-17
5.23697e-17
1.03263e-17
1.58841e-17
9.51046e-18
-1.13184e-17
9.27581e-18
-2.78184e-17
9.18995e-18
-4.70236e-17
9.53726e-18
-6.3932e-17
1.0264e-17
-8.99536e-17
1.15342e-17
-1.148e-16
1.23415e-17
-1.43938e-16
1.37543e-17
-1.76429e-16
1.51798e-17
-2.1274e-16
1.64947e-17
-2.53288e-16
1.79246e-17
-2.95645e-16
1.95263e-17
-3.41422e-16
2.05055e-17
-3.87804e-16
2.2442e-17
-4.43761e-16
2.32195e-17
-5.09242e-16
2.44249e-17
-5.42512e-16
2.54591e-17
-6.09937e-16
2.76608e-17
-7.14537e-16
2.77408e-17
-7.82351e-16
2.89626e-17
-8.71546e-16
3.01712e-17
-9.99025e-16
3.08773e-17
-1.18553e-15
3.72605e-17
-1.4881e-15
4.01544e-17
-1.99476e-15
3.88937e-17
-2.16457e-15
3.07945e-17
-2.25383e-15
6.64249e-18
-3.85124e-15
-4.98956e-17
-5.73331e-15
-1.59408e-16
-9.24426e-15
-3.06466e-16
-1.26751e-14
-5.00474e-16
-1.59858e-14
-7.16754e-16
-1.88855e-14
-1.00925e-15
-2.1553e-14
-1.32836e-15
-2.37204e-14
-1.58062e-15
-2.39812e-14
-1.79124e-15
-2.19679e-14
-2.04265e-15
-1.83594e-14
-2.26636e-15
-1.28751e-14
-2.27052e-15
-6.61089e-15
-2.25884e-15
-8.66039e-17
-2.27685e-15
4.15091e-15
-2.40866e-15
7.93276e-15
-2.98115e-15
1.11694e-14
-4.0754e-15
1.36044e-14
-5.19597e-15
1.53325e-14
-5.26331e-15
1.69656e-14
-2.97522e-15
1.77812e-14
-1.40031e-15
1.56962e-14
-3.23801e-16
1.24841e-14
1.83791e-16
8.59825e-15
2.49846e-16
5.04742e-15
1.37665e-16
2.4029e-15
8.16957e-17
1.86834e-15
3.03707e-17
6.27586e-16
2.57838e-17
1.1941e-15
1.31174e-17
5.50153e-16
9.05635e-18
3.28497e-16
4.2506e-18
1.38419e-16
2.01837e-18
6.17621e-17
1.01093e-18
2.94573e-17
5.6446e-19
1.54711e-17
3.75094e-19
9.35253e-18
2.12609e-19
4.67265e-18
1.25269e-19
2.43323e-18
7.56716e-20
1.32393e-18
4.89025e-20
7.67443e-19
4.17479e-20
5.73073e-19
3.33262e-20
3.83908e-19
2.5351e-20
2.30519e-19
1.86687e-20
1.21321e-19
1.27234e-20
4.7312e-20
1.15372e-20
8.9529e-21
1.06544e-20
-3.62121e-21
1.09801e-20
-8.98614e-21
1.07712e-20
-1.45228e-20
1.00473e-20
-1.91624e-20
8.66987e-21
-2.18905e-20
7.86734e-21
-2.53913e-20
7.03988e-21
-2.84598e-20
6.57163e-21
-3.27299e-20
6.80456e-21
-4.04677e-20
6.5855e-21
-4.73812e-20
6.12343e-21
-5.32233e-20
5.0047e-21
-5.35235e-20
4.10075e-21
-5.59165e-20
3.09184e-21
-5.79938e-20
2.09684e-21
-6.09119e-20
1.16098e-21
-7.55464e-20
-3.44481e-22
-8.17183e-20
-2.01266e-21
-8.62458e-20
-4.03673e-21
-8.78829e-20
-5.724e-21
-9.51973e-20
-7.72772e-21
-9.30468e-20
-9.27087e-21
-9.66346e-20
-1.23988e-20
-9.37206e-20
-1.48591e-20
-1.03326e-19
-1.6396e-20
-1.03332e-19
-1.50399e-20
-9.8332e-20
-1.5704e-20
-7.94337e-20
-1.77465e-20
-7.20631e-20
-1.98099e-20
-6.95411e-20
-2.11276e-20
-6.55566e-20
-2.17743e-20
-6.01778e-20
-2.16389e-20
-5.32237e-20
-1.91336e-20
-4.39719e-20
-1.9161e-20
-3.14699e-20
-1.89999e-20
-2.39394e-20
-1.70357e-20
-1.71664e-20
-1.6488e-20
-9.70877e-21
-1.53603e-20
-3.89962e-21
-1.42311e-20
1.36354e-20
-1.21157e-20
5.62515e-20
-9.46625e-21
8.7696e-20
-7.61203e-21
1.02451e-19
-6.04345e-21
1.12468e-19
-4.22147e-21
1.16462e-19
-2.96352e-21
1.03867e-19
-1.94501e-21
9.17107e-20
-1.22384e-21
7.5657e-20
-7.24363e-22
6.00882e-20
-3.97052e-22
4.54246e-20
-2.23e-22
3.23156e-20
-1.06053e-22
2.44683e-20
-4.38163e-23
1.67303e-20
-1.32989e-23
1.13338e-20
-3.93851e-25
7.22847e-21
6.35198e-24
4.73155e-21
6.88747e-24
2.86188e-21
5.30271e-24
1.60164e-21
3.85302e-24
9.25023e-22
2.66809e-24
4.95681e-22
1.97162e-24
2.67562e-22
1.39304e-24
1.29042e-22
9.06092e-25
5.72542e-23
5.1588e-25
2.43794e-23
2.3929e-25
9.82205e-24
9.68879e-26
3.85148e-24
3.81379e-26
1.52396e-24
1.46083e-26
5.87958e-25
5.51674e-27
2.21424e-25
1.95193e-27
7.73067e-26
6.82876e-28
2.64321e-26
2.19438e-28
8.25256e-27
7.02411e-29
2.55419e-27
2.16192e-29
7.58088e-28
6.5035e-30
2.19577e-28
1.83425e-30
5.95106e-29
5.22069e-31
1.62677e-29
1.45173e-31
4.33967e-30
3.92811e-32
1.12414e-30
1.00082e-32
2.73749e-31
2.53203e-33
6.59756e-32
6.54426e-34
1.61504e-32
1.73748e-34
4.03709e-33
4.85793e-35
1.05616e-33
1.44471e-35
2.90869e-34
4.58752e-36
8.46368e-35
1.56339e-36
2.6122e-35
5.95466e-37
8.88098e-36
2.52161e-37
3.29828e-36
1.22492e-37
1.37688e-36
6.67603e-38
6.23438e-37
4.1329e-38
3.06971e-37
2.82453e-38
1.50839e-37
2.08062e-38
6.07618e-38
1.66039e-38
-3.0795e-42
1.34325e-38
-1.20435e-40
1.08189e-38
-2.27094e-40
8.21731e-39
-3.19456e-40
5.9068e-39
-4.09518e-40
3.61993e-39
-4.84704e-40
1.5647e-39
-5.6434e-40
-5.73397e-40
-6.28153e-40
-2.67822e-39
-6.92954e-40
-4.59218e-39
-7.41467e-40
-6.23517e-39
-7.72264e-40
-7.47379e-39
-7.87987e-40
-8.30073e-39
-7.76145e-40
-8.55109e-39
-7.4578e-40
-8.25729e-39
-6.83023e-40
-7.77205e-39
-5.89869e-40
-7.20229e-39
-4.96869e-40
-6.50267e-39
-4.10867e-40
-5.69089e-39
-3.30179e-40
-4.70366e-39
-2.58224e-40
-3.60259e-39
-1.91073e-40
-2.58223e-39
-1.30994e-40
-1.79568e-39
-8.30647e-41
-1.25449e-39
-4.98945e-41
-8.93581e-40
-2.91721e-41
-6.28094e-40
-1.68831e-41
-4.25607e-40
-9.31277e-42
-2.7322e-40
-4.72448e-42
-1.66466e-40
-2.10026e-42
-9.86505e-41
-7.56812e-43
-5.88628e-41
-1.64645e-43
-3.63147e-41
5.21657e-41
-2.27042e-41
9.44509e-41
-1.38792e-41
9.81816e-41
-8.10128e-42
8.43535e-41
-4.4834e-42
6.39302e-41
-2.37248e-42
4.38641e-41
-1.22009e-42
2.78934e-41
-6.21061e-43
1.68413e-41
-3.1653e-43
9.88546e-42
-1.61147e-43
5.7316e-42
-8.09994e-44
3.28686e-42
-3.99826e-44
1.84703e-42
-1.94235e-44
1.01291e-42
-9.33671e-45
5.43697e-43
-4.4539e-45
2.87387e-43
-2.11005e-45
1.50094e-43
-9.91667e-46
7.75518e-44
-4.6211e-46
3.96254e-44
-2.13808e-46
2.00186e-44
-9.84472e-47
1.00133e-44
-4.50954e-47
4.97245e-45
-2.04721e-47
2.45293e-45
-9.1918e-48
1.19847e-45
-4.08401e-48
5.78594e-46
-1.79743e-48
2.76051e-46
-7.83522e-49
1.30305e-46
-3.38317e-49
6.08362e-47
-1.44792e-49
2.80817e-47
-6.14478e-50
1.28236e-47
-2.58261e-50
5.79887e-48
-1.07254e-50
2.59471e-48
-4.39833e-51
1.14582e-48
-1.78589e-51
4.98622e-49
-7.18959e-52
2.14246e-49
-2.86769e-52
9.09526e-50
-1.134e-52
3.80925e-50
-4.46077e-53
1.57297e-50
-1.75253e-53
6.41392e-51
-6.88818e-54
2.58852e-51
-2.70881e-54
1.03457e-51
-1.06756e-54
4.09087e-52
-4.23987e-55
1.59909e-52
-1.71076e-55
6.18796e-53
-7.06183e-56
2.38044e-53
-2.98748e-56
9.15105e-54
-1.2955e-56
3.52227e-54
-5.79328e-57
1.35674e-54
-2.71011e-57
5.24993e-55
-1.35e-57
2.06949e-55
-7.25072e-58
8.50179e-56
-4.32581e-58
3.72543e-56
-3.18062e-58
1.82363e-56
-3.97449e-58
1.14126e-56
-3.62813e-57
1.34876e-56
1.56858e-55
-1.53278e-14
4.25768e-15
-1.78921e-12
3.01507e-14
-1.6087e-13
3.73383e-12
-2.63838e-14
1.11405e-12
-4.26782e-14
6.22428e-13
3.05741e-14
1.03171e-12
4.0834e-14
7.00891e-13
4.74964e-14
4.71538e-13
1.55299e-14
1.82399e-13
5.62973e-15
6.37722e-14
1.24141e-15
2.1575e-14
3.10686e-16
6.05792e-15
8.43821e-17
2.21394e-15
3.15832e-17
8.62466e-16
1.84175e-17
4.85846e-16
3.50857e-18
8.97865e-17
9.40915e-19
2.34928e-17
2.29228e-19
5.53948e-18
3.83685e-20
9.06845e-19
8.6769e-21
1.98823e-19
1.69453e-21
3.80545e-20
3.05452e-22
6.67222e-21
4.96015e-23
1.07101e-21
7.91994e-24
1.71975e-22
1.70491e-24
3.6497e-23
2.77174e-25
5.74672e-24
3.29922e-26
6.50708e-25
2.44585e-27
4.52829e-26
1.10038e-28
1.90879e-27
1.27683e-29
2.11991e-28
6.07357e-29
9.78935e-28
4.30548e-28
6.55469e-27
2.88035e-27
3.86848e-26
1.74237e-26
1.88311e-25
9.81197e-26
7.49368e-25
4.92229e-25
2.01181e-24
2.24809e-24
1.12493e-24
9.39363e-24
-1.43986e-23
3.48626e-23
-1.25555e-22
1.11225e-22
-6.62618e-22
3.11202e-22
-2.78948e-21
8.15483e-22
-1.05776e-20
2.15837e-21
-3.55801e-20
5.16251e-21
-1.0644e-19
1.13508e-20
-3.00491e-19
2.47238e-20
-7.87837e-19
5.11752e-20
-1.98126e-18
1.02022e-19
-4.48124e-18
1.85976e-19
-9.27166e-18
3.2577e-19
-1.86191e-17
5.17943e-19
-3.55153e-17
8.95243e-19
-6.47458e-17
1.47923e-18
-1.20387e-16
1.8172e-18
-2.13248e-16
3.52699e-18
-3.96454e-16
4.66934e-18
-6.80102e-16
3.78512e-18
-1.14875e-15
4.49256e-18
-1.80311e-15
-5.82832e-18
-6.27899e-15
-4.04639e-17
-1.2838e-14
-7.28986e-17
-2.30426e-14
-1.98428e-16
-3.88971e-14
-3.63162e-16
-6.02358e-14
-5.87103e-16
-8.18146e-14
-9.79407e-16
-1.02502e-13
-1.55766e-15
-1.24797e-13
-2.90609e-15
-1.6825e-13
-6.91785e-15
-2.46823e-13
-1.55451e-14
-4.11435e-13
-4.16172e-14
-6.94585e-13
-1.2332e-13
-1.17221e-12
-3.16376e-13
-1.9667e-12
-5.90188e-13
-2.38198e-12
-7.66451e-13
-1.51619e-12
-9.20718e-13
1.86494e-14
-1.32659e-12
6.51515e-14
-2.8958e-12
9.13922e-14
-4.79396e-12
1.20563e-13
-6.12978e-12
1.80627e-13
-3.9248e-12
2.62328e-13
-1.50105e-12
3.062e-12
2.24943e-13
6.25123e-12
5.05191e-13
4.50785e-12
2.06486e-13
1.97574e-12
5.0431e-14
7.24199e-13
9.75411e-15
1.75974e-13
1.99466e-15
5.60105e-14
4.43044e-16
1.25267e-14
1.66335e-16
4.0664e-15
1.21914e-16
2.68758e-15
1.13471e-16
2.95687e-15
9.78458e-17
2.46475e-15
7.73719e-17
1.87049e-15
6.08406e-17
1.40806e-15
4.26417e-17
9.5257e-16
3.12235e-17
6.69454e-16
2.31791e-17
4.76065e-16
1.72484e-17
3.36752e-16
1.3966e-17
2.53875e-16
1.12507e-17
1.90231e-16
9.48564e-18
1.44549e-16
7.80353e-18
1.04811e-16
6.92786e-18
7.74027e-17
6.01027e-18
5.07562e-17
5.71284e-18
3.08693e-17
5.33342e-18
9.41498e-18
4.94823e-18
-6.10229e-18
4.75094e-18
-1.52741e-17
4.76801e-18
-2.6416e-17
4.9122e-18
-3.57364e-17
5.32384e-18
-5.07141e-17
5.95683e-18
-6.44339e-17
6.3393e-18
-8.0344e-17
7.09078e-18
-9.89875e-17
7.82943e-18
-1.20186e-16
8.48092e-18
-1.42245e-16
9.20558e-18
-1.66697e-16
1.00846e-17
-1.94983e-16
1.05376e-17
-2.20769e-16
1.15377e-17
-2.54051e-16
1.18869e-17
-2.9247e-16
1.22232e-17
-3.10455e-16
1.25435e-17
-3.48072e-16
1.4108e-17
-4.20513e-16
1.40458e-17
-4.57877e-16
1.45662e-17
-5.01299e-16
1.51384e-17
-5.73403e-16
1.52028e-17
-6.72264e-16
1.67574e-17
-8.89526e-16
1.74981e-17
-1.27302e-15
1.41992e-17
-1.35162e-15
7.74439e-18
-1.42839e-15
1.51975e-18
-1.57367e-15
-1.4906e-17
-1.73698e-15
-5.45311e-17
-1.93079e-15
-1.25047e-16
-1.98904e-15
-2.06212e-16
-2.16708e-15
-3.36623e-16
-3.84163e-15
-5.30022e-16
-4.79426e-15
-7.58468e-16
-6.17773e-15
-1.01362e-15
-7.5254e-15
-1.31498e-15
-8.77781e-15
-1.38668e-15
-8.20374e-15
-1.43369e-15
-5.74712e-15
-1.4169e-15
-2.89269e-15
-1.31182e-15
-3.96283e-17
-1.24056e-15
2.93154e-15
-1.16032e-15
5.25789e-15
-1.0732e-15
6.33383e-15
-9.65186e-16
4.55052e-15
-8.35992e-16
3.48633e-15
-6.10564e-16
3.61205e-15
-3.3712e-16
3.46164e-15
-1.44371e-16
2.75204e-15
-2.69608e-17
2.052e-15
2.31681e-17
2.19113e-15
2.73716e-17
1.17365e-15
1.68957e-17
5.94321e-16
1.77574e-17
1.17959e-15
1.12375e-17
6.30017e-16
6.91628e-18
3.52306e-16
3.79285e-18
1.75168e-16
2.07601e-18
8.38121e-17
9.76731e-19
3.55958e-17
4.68436e-19
1.6053e-17
2.38286e-19
7.77578e-18
1.31199e-19
4.02865e-18
8.59094e-20
2.40522e-18
4.51198e-20
1.11905e-18
2.43072e-20
5.34903e-19
1.34836e-20
2.67562e-19
8.01428e-21
1.42718e-19
6.50109e-21
1.01358e-19
4.88779e-21
6.40237e-20
3.50277e-21
3.62967e-20
2.45319e-21
1.82085e-20
1.61938e-21
6.92757e-21
1.45803e-21
1.37744e-21
1.34727e-21
-4.4636e-22
1.38164e-21
-1.11278e-21
1.36322e-21
-1.81387e-21
1.26199e-21
-2.37774e-21
1.07798e-21
-2.69306e-21
9.75865e-22
-3.11978e-21
8.72535e-22
-3.50169e-21
8.16011e-22
-4.03787e-21
8.32118e-22
-4.90829e-21
8.03016e-22
-5.72868e-21
7.43752e-22
-6.4068e-21
6.02436e-22
-6.39108e-21
4.93042e-22
-6.66008e-21
3.75633e-22
-6.99229e-21
2.53311e-22
-7.29309e-21
1.40834e-22
-9.06408e-21
-4.24661e-23
-9.7737e-21
-2.44672e-22
-1.03564e-20
-4.89105e-22
-1.0499e-20
-6.87302e-22
-1.13187e-20
-9.36254e-22
-1.09758e-20
-1.11465e-21
-1.1484e-20
-1.47727e-21
-1.10602e-20
-1.72953e-21
-1.20933e-20
-1.91563e-21
-1.18443e-20
-1.77852e-21
-1.13139e-20
-1.85444e-21
-9.24587e-21
-2.0518e-21
-8.37672e-21
-2.23073e-21
-7.9379e-21
-2.37287e-21
-7.30999e-21
-2.46083e-21
-6.69906e-21
-2.43262e-21
-5.95826e-21
-2.12181e-21
-4.90261e-21
-2.06096e-21
-3.47668e-21
-2.02255e-21
-2.58281e-21
-1.79132e-21
-1.83835e-21
-1.73598e-21
-1.03502e-21
-1.60662e-21
-4.23927e-22
-1.45682e-21
1.51824e-21
-1.20129e-21
6.42704e-21
-9.16463e-22
9.76888e-21
-7.26717e-22
1.11739e-20
-5.68021e-22
1.21189e-20
-3.87331e-22
1.23697e-20
-2.65479e-22
1.07776e-20
-1.68942e-22
9.29554e-21
-1.02653e-22
7.443e-21
-5.82747e-23
5.71276e-21
-3.05262e-23
4.14792e-21
-1.64303e-23
2.8293e-21
-7.39867e-24
2.05408e-21
-2.91462e-24
1.33459e-21
-8.28493e-25
8.66449e-22
-6.41173e-27
5.22436e-22
3.95799e-25
3.20169e-22
3.97427e-25
1.81688e-22
2.87223e-25
9.58103e-23
1.9527e-25
5.16004e-23
1.23659e-25
2.52636e-23
8.50881e-26
1.27075e-23
5.51095e-26
5.66675e-24
3.25967e-26
2.31934e-24
1.69026e-26
9.09811e-25
7.16642e-27
3.35565e-25
2.63938e-27
1.1919e-25
9.39008e-28
4.24975e-26
3.22498e-28
1.46844e-26
1.09009e-28
4.94938e-27
3.44232e-29
1.54263e-27
1.08006e-29
4.73273e-28
3.11981e-30
1.32874e-28
9.02698e-31
3.71889e-29
2.50763e-31
9.9657e-30
6.77284e-32
2.59226e-30
1.71044e-32
6.29314e-31
4.3265e-33
1.52918e-31
1.06476e-33
3.61091e-32
2.54892e-34
8.27778e-33
5.78706e-35
1.79649e-33
1.3159e-35
3.89191e-34
3.07817e-36
8.6248e-35
7.3936e-37
1.9511e-35
1.86239e-37
4.59928e-36
4.96429e-38
1.13588e-36
1.41989e-38
2.97887e-37
4.38614e-39
8.34194e-38
1.53355e-39
2.60533e-38
6.02967e-40
8.99943e-39
2.76222e-40
3.55242e-39
1.43518e-40
1.54114e-39
8.63984e-41
7.4009e-40
5.78135e-41
3.61655e-40
4.21523e-41
1.48413e-40
3.35331e-41
5.5175e-42
2.72356e-41
-2.40769e-43
2.2105e-41
-4.72877e-43
1.68949e-41
-6.76296e-43
1.22711e-41
-8.7947e-43
7.59586e-42
-1.05126e-42
3.35546e-42
-1.23885e-42
-1.11978e-42
-1.39032e-42
-5.65095e-42
-1.55039e-42
-9.8291e-42
-1.67485e-42
-1.34703e-41
-1.75883e-42
-1.62155e-41
-1.80765e-42
-1.80957e-41
-1.7865e-42
-1.86846e-41
-1.72324e-42
-1.80114e-41
-1.58077e-42
-1.69097e-41
-1.36218e-42
-1.55951e-41
-1.14478e-42
-1.39643e-41
-9.42701e-43
-1.21106e-41
-7.51717e-43
-9.90883e-42
-5.8302e-43
-7.48521e-42
-4.27093e-43
-5.27674e-42
-2.88727e-43
-3.5985e-42
-1.79881e-43
-2.46105e-42
-1.05941e-43
-1.71651e-42
-6.06754e-44
-1.17949e-42
-3.44476e-44
-7.80564e-43
-1.86051e-44
-4.88661e-43
-9.23427e-45
-2.89654e-43
-4.01005e-45
-1.66714e-43
-1.40679e-45
-9.64585e-44
-2.96127e-46
-5.75121e-44
9.81316e-44
-3.47293e-44
1.70184e-43
-2.04954e-44
1.70256e-43
-1.15237e-44
1.40916e-43
-6.12043e-45
1.02742e-43
-3.09625e-45
6.76022e-44
-1.51716e-45
4.10816e-44
-7.33852e-46
2.36305e-44
-3.54774e-46
1.31806e-44
-1.71093e-46
7.24929e-45
-8.12942e-47
3.93805e-45
-3.78285e-47
2.09186e-45
-1.72791e-47
1.0814e-45
-7.79701e-48
5.45768e-46
-3.48729e-48
2.70803e-46
-1.54709e-48
1.32607e-46
-6.80085e-49
6.41621e-47
-2.96139e-49
3.06647e-47
-1.27925e-49
1.44762e-47
-5.49544e-50
6.76075e-48
-2.34745e-50
3.13244e-48
-9.93482e-51
1.44107e-48
-4.15585e-51
6.5638e-49
-1.7189e-51
2.9523e-49
-7.03979e-52
1.31127e-49
-2.85525e-52
5.75994e-50
-1.1468e-52
2.50219e-50
-4.56407e-53
1.07445e-50
-1.80102e-53
4.56332e-51
-7.03859e-54
1.91902e-51
-2.71722e-54
7.98528e-52
-1.03514e-54
3.27829e-52
-3.90231e-55
1.32545e-52
-1.45768e-55
5.28855e-53
-5.39037e-56
2.08362e-53
-1.97434e-56
8.09223e-54
-7.18681e-57
3.09578e-54
-2.61067e-57
1.16846e-54
-9.48022e-58
4.36166e-55
-3.44212e-58
1.61115e-55
-1.25185e-58
5.8834e-56
-4.58609e-59
2.12245e-56
-1.7065e-59
7.57624e-57
-6.49764e-60
2.68792e-57
-2.5376e-60
9.53145e-58
-1.01726e-60
3.38609e-58
-4.21322e-61
1.20515e-58
-1.83055e-61
4.3172e-59
-8.50518e-62
1.58065e-59
-4.28656e-62
6.06222e-60
-2.41842e-62
2.49835e-60
-1.69623e-62
1.16186e-60
-2.02915e-62
6.99354e-61
-1.71878e-61
8.01669e-61
8.84375e-60
-1.21375e-15
8.46494e-16
-1.52956e-13
1.37047e-14
-1.7512e-14
2.98203e-13
-3.43774e-15
1.26054e-13
-4.854e-15
7.91886e-14
3.75892e-15
1.40609e-13
5.17659e-15
1.00251e-13
6.11578e-15
7.12515e-14
1.91829e-15
2.95247e-14
6.94305e-16
1.15255e-14
1.59841e-16
4.46728e-15
5.23245e-17
1.95793e-15
1.97322e-17
6.47198e-16
9.54077e-18
3.04312e-16
2.71467e-18
8.20422e-17
4.88023e-19
1.43119e-17
1.25771e-19
3.59359e-18
2.88997e-20
7.99681e-19
4.5182e-21
1.22276e-19
9.41264e-22
2.47177e-20
1.69905e-22
4.3728e-21
2.76287e-23
6.92483e-22
4.31873e-24
1.07049e-22
6.45519e-25
1.60741e-23
1.19746e-25
2.93764e-24
1.68824e-26
4.0132e-25
1.69994e-27
3.84809e-26
1.06262e-28
2.26183e-27
4.3265e-30
8.65114e-29
2.62113e-30
5.0238e-29
1.96894e-29
3.65819e-28
1.3971e-28
2.44601e-27
9.37399e-28
1.4467e-26
5.67164e-27
7.04332e-26
3.25268e-26
2.85547e-25
1.69039e-25
7.93788e-25
7.89596e-25
4.48024e-25
3.40874e-24
-5.26763e-24
1.30833e-23
-4.69926e-23
4.2432e-23
-2.52027e-22
1.22243e-22
-1.08126e-21
3.29705e-22
-4.18006e-21
8.92446e-22
-1.43022e-20
2.16167e-21
-4.31947e-20
4.89599e-21
-1.23899e-19
1.09803e-20
-3.33702e-19
2.27965e-20
-8.56654e-19
4.64467e-20
-1.95211e-18
8.74524e-20
-4.0271e-18
1.48536e-19
-8.18545e-18
2.41471e-19
-1.58119e-17
4.44749e-19
-2.94956e-17
7.20783e-19
-5.60658e-17
9.85638e-19
-1.02368e-16
1.74508e-18
-1.91258e-16
1.92145e-18
-3.27788e-16
2.07085e-18
-5.40753e-16
1.41573e-18
-8.89366e-16
2.12884e-19
-1.36816e-15
-1.25343e-17
-3.97925e-15
-3.45405e-17
-1.01891e-14
-1.17141e-16
-2.09647e-14
-2.63911e-16
-3.76021e-14
-4.8594e-16
-5.7271e-14
-8.45575e-16
-7.82811e-14
-1.25848e-15
-9.78545e-14
-1.93164e-15
-1.17233e-13
-3.24465e-15
-1.40453e-13
-5.91928e-15
-1.74324e-13
-1.08525e-14
-2.13674e-13
-2.69096e-14
-2.58031e-13
-6.32079e-14
-3.50663e-13
-1.17694e-13
-3.95573e-13
-1.5656e-13
-2.55543e-13
-1.94868e-13
1.71705e-14
-2.50957e-13
6.15942e-14
-4.42602e-13
9.87518e-14
-7.13226e-13
1.29071e-13
-1.01185e-12
1.81538e-13
-6.64586e-13
2.54686e-13
-2.45835e-13
7.29167e-13
5.36187e-14
1.2795e-12
9.65713e-14
9.83129e-13
3.61855e-14
4.86858e-13
7.31437e-15
1.82834e-13
1.78444e-15
5.84428e-14
3.91579e-16
1.39687e-14
1.34097e-16
4.01049e-15
9.34418e-17
2.39741e-15
8.92625e-17
2.69552e-15
7.19935e-17
2.0944e-15
5.90844e-17
1.66224e-15
4.36071e-17
1.18174e-15
3.25625e-17
8.46674e-16
2.19735e-17
5.5251e-16
1.60553e-17
3.87487e-16
1.19313e-17
2.76361e-16
8.66183e-18
1.90397e-16
7.0077e-18
1.43475e-16
5.6513e-18
1.07389e-16
4.77585e-18
8.1455e-17
3.92054e-18
5.88709e-17
3.50314e-18
4.34109e-17
3.06542e-18
2.87158e-17
2.93954e-18
1.75227e-17
2.71867e-18
5.35541e-18
2.56874e-18
-3.10225e-18
2.42039e-18
-7.90015e-18
2.48557e-18
-1.40316e-17
2.52897e-18
-1.88888e-17
2.77428e-18
-2.7045e-17
3.07593e-18
-3.41395e-17
3.25654e-18
-4.21829e-17
3.64217e-18
-5.21402e-17
4.03996e-18
-6.37724e-17
4.33755e-18
-7.56065e-17
4.72632e-18
-8.92416e-17
5.2208e-18
-1.05557e-16
5.44686e-18
-1.1923e-16
5.98645e-18
-1.38534e-16
6.18668e-18
-1.61029e-16
6.27951e-18
-1.72296e-16
6.39624e-18
-1.94579e-16
7.37059e-18
-2.42585e-16
7.30227e-18
-2.64506e-16
7.34382e-18
-2.85242e-16
7.52861e-18
-3.24944e-16
7.42601e-18
-3.79621e-16
8.50318e-18
-5.13585e-16
9.38451e-18
-7.62791e-16
7.28287e-18
-8.14975e-16
3.78781e-18
-8.86985e-16
9.20817e-20
-9.69535e-16
-5.6259e-18
-1.07372e-15
-1.32453e-17
-1.16805e-15
-2.37672e-17
-1.18033e-15
-4.11558e-17
-1.2197e-15
-6.55715e-17
-1.21225e-15
-1.07507e-16
-1.13346e-15
-1.69751e-16
-1.03454e-15
-2.6487e-16
-9.57572e-16
-3.69773e-16
-8.33998e-16
-4.00643e-16
-6.72817e-16
-4.0427e-16
-4.18082e-16
-3.85919e-16
-1.92755e-16
-3.43138e-16
-5.9334e-18
-3.13394e-16
2.57786e-16
-2.54295e-16
4.14889e-16
-2.00403e-16
6.15459e-16
-1.62215e-16
8.12598e-16
-1.22959e-16
9.56795e-16
-8.08828e-17
1.0751e-15
-3.92927e-17
9.01031e-16
-1.56112e-17
7.62164e-16
-2.03136e-18
8.1286e-16
4.81529e-18
1.38751e-15
6.28498e-18
8.62469e-16
6.15169e-18
5.94808e-16
5.64915e-18
4.12723e-16
3.49724e-18
2.17578e-16
1.85104e-18
1.0479e-16
9.71299e-19
5.00065e-17
4.72379e-19
2.14801e-17
2.20257e-19
9.09556e-18
1.06817e-19
4.15531e-18
5.34906e-20
1.98304e-18
2.82319e-20
9.86155e-19
1.74695e-20
5.57983e-19
8.35871e-21
2.37688e-19
4.08942e-21
1.03588e-19
2.08074e-21
4.76005e-20
1.13885e-21
2.34022e-20
8.73611e-22
1.57353e-20
6.18038e-22
9.36508e-21
4.17116e-22
5.01019e-21
2.78111e-22
2.39843e-21
1.78643e-22
8.9343e-22
1.59609e-22
1.845e-22
1.47472e-22
-4.95778e-23
1.49806e-22
-1.23615e-22
1.48581e-22
-2.02986e-22
1.36429e-22
-2.64147e-22
1.15477e-22
-2.96693e-22
1.04349e-22
-3.43267e-22
9.34269e-23
-3.86369e-22
8.75739e-23
-4.46844e-22
8.77617e-23
-5.3371e-22
8.43855e-23
-6.20857e-22
7.7784e-23
-6.91168e-22
6.24568e-23
-6.84223e-22
5.10026e-23
-7.10407e-22
3.92589e-23
-7.5484e-22
2.62488e-23
-7.80667e-22
1.46053e-23
-9.70236e-22
-4.47674e-24
-1.04163e-21
-2.53905e-23
-1.1063e-21
-5.0488e-23
-1.11537e-21
-7.03638e-23
-1.19556e-21
-9.65843e-23
-1.15048e-21
-1.1429e-22
-1.21189e-21
-1.50218e-22
-1.16032e-21
-1.7209e-22
-1.2601e-21
-1.91366e-22
-1.21146e-21
-1.79676e-22
-1.16153e-21
-1.87124e-22
-9.59063e-22
-2.03307e-22
-8.67909e-22
-2.15762e-22
-8.09927e-22
-2.29021e-22
-7.30566e-22
-2.38835e-22
-6.68551e-22
-2.34892e-22
-5.97277e-22
-2.02936e-22
-4.89617e-22
-1.92203e-22
-3.44956e-22
-1.86742e-22
-2.51497e-22
-1.63994e-22
-1.77695e-22
-1.59357e-22
-9.97608e-23
-1.46991e-22
-4.15382e-23
-1.31529e-22
1.51195e-22
-1.05928e-22
6.6067e-22
-7.91429e-23
9.85951e-22
-6.18736e-23
1.10761e-21
-4.75556e-23
1.18639e-21
-3.16988e-23
1.19219e-21
-2.12387e-23
1.01628e-21
-1.31156e-23
8.57578e-22
-7.6959e-24
6.67061e-22
-4.18875e-24
4.95006e-22
-2.10216e-24
3.45167e-22
-1.07572e-24
2.26201e-22
-4.57401e-25
1.57023e-22
-1.70754e-25
9.69363e-23
-4.43756e-26
6.0305e-23
1.88121e-27
3.44018e-23
2.25517e-26
1.97504e-23
2.08023e-26
1.05337e-23
1.40846e-26
5.24196e-24
8.95092e-27
2.63868e-24
5.208e-27
1.18859e-24
3.33327e-27
5.5772e-25
1.9807e-27
2.30264e-25
1.06649e-27
8.69125e-26
5.03121e-28
3.13304e-26
1.94533e-28
1.0555e-26
6.50655e-29
3.39353e-27
2.093e-29
1.09132e-27
6.46016e-30
3.38568e-28
1.96192e-30
1.02526e-28
5.55702e-31
2.86723e-29
1.57143e-31
7.93181e-30
4.09514e-32
2.00986e-30
1.07153e-32
5.08911e-31
2.68286e-33
1.22963e-31
6.49756e-34
2.86886e-32
1.46959e-34
6.23971e-33
3.30592e-35
1.34876e-33
7.21774e-36
2.82605e-34
1.53483e-36
5.75632e-35
3.11833e-37
1.11808e-35
6.38312e-38
2.18086e-36
1.34759e-38
4.36285e-37
2.91233e-39
8.88277e-38
6.57823e-40
1.87797e-38
1.56788e-40
4.14898e-39
4.03366e-41
9.79204e-40
1.12877e-41
2.48584e-40
3.61793e-42
7.12404e-41
1.31902e-42
2.28685e-41
5.70364e-43
8.52342e-42
2.82072e-43
3.54154e-42
1.65279e-43
1.65556e-42
1.08253e-43
8.03311e-43
7.80393e-44
3.33567e-43
6.20139e-44
2.75373e-44
5.05333e-44
-4.53125e-46
4.13414e-44
-9.25817e-46
3.18002e-44
-1.34539e-45
2.33389e-44
-1.77435e-45
1.45896e-44
-2.14182e-45
6.5648e-45
-2.55452e-45
-2.03738e-45
-2.89074e-45
-1.09859e-44
-3.25863e-45
-1.93646e-44
-3.55428e-45
-2.67813e-44
-3.76362e-45
-3.23614e-44
-3.89652e-45
-3.62901e-44
-3.86399e-45
-3.75568e-44
-3.74217e-45
-3.6148e-44
-3.43912e-45
-3.38596e-44
-2.95775e-45
-3.1083e-44
-2.48087e-45
-2.76032e-44
-2.03493e-45
-2.37254e-44
-1.61019e-45
-1.92176e-44
-1.23847e-45
-1.43193e-44
-8.98351e-46
-9.92732e-45
-5.98997e-46
-6.64033e-45
-3.6679e-46
-4.44729e-45
-2.1189e-46
-3.0388e-45
-1.18908e-46
-2.04091e-45
-6.62375e-47
-1.31941e-45
-3.50194e-47
-8.05929e-46
-1.70011e-47
-4.65037e-46
-7.21219e-48
-2.6028e-46
-2.46377e-48
-1.45916e-46
-5.03089e-49
-8.42584e-47
1.73152e-46
-4.92297e-47
2.88541e-46
-2.80927e-47
2.78416e-46
-1.52416e-47
2.22408e-46
-7.78412e-48
1.5629e-46
-3.77285e-48
9.88162e-47
-1.76564e-48
5.75117e-47
-8.13546e-49
3.15903e-47
-3.73959e-49
1.67842e-47
-1.71226e-49
8.77737e-48
-7.70758e-50
4.52693e-48
-3.38814e-50
2.27801e-48
-1.45803e-50
1.11242e-48
-6.1874e-51
5.28901e-49
-2.59912e-51
2.46796e-49
-1.0815e-51
1.135e-49
-4.45363e-52
5.15089e-50
-1.81481e-52
2.30607e-50
-7.32959e-53
1.01874e-50
-2.94156e-53
4.44834e-51
-1.17323e-53
1.92554e-51
-4.63413e-54
8.27131e-52
-1.8078e-54
3.51611e-52
-6.96609e-55
1.47483e-52
-2.65643e-55
6.10275e-53
-1.0029e-55
2.49611e-53
-3.74811e-56
1.00938e-53
-1.38752e-56
4.0334e-54
-5.09232e-57
1.59362e-54
-1.85104e-57
6.23391e-55
-6.64488e-58
2.41303e-55
-2.35262e-58
9.21318e-56
-8.23887e-59
3.46254e-56
-2.85744e-59
1.28368e-56
-9.80331e-60
4.69707e-57
-3.32833e-60
1.69294e-57
-1.12202e-60
6.00529e-58
-3.77159e-61
2.09991e-58
-1.26636e-61
7.2567e-59
-4.24838e-62
2.47964e-59
-1.42684e-62
8.36954e-60
-4.82519e-63
2.78897e-60
-1.65707e-63
9.19159e-61
-5.82461e-64
3.01021e-61
-2.10179e-64
9.85526e-62
-7.79608e-65
3.23455e-62
-2.99381e-65
1.06483e-62
-1.20964e-65
3.53552e-63
-5.24984e-66
1.20385e-63
-2.48658e-66
4.31628e-64
-1.32817e-66
1.67511e-64
-8.88238e-67
7.40579e-65
-1.01281e-66
4.2819e-65
-7.89989e-66
4.73388e-65
4.90559e-64
-2.7529e-16
1.72591e-16
-1.26414e-14
1.84219e-15
-1.7806e-15
2.62144e-14
-4.09258e-16
1.60391e-14
-5.63356e-16
1.22324e-14
4.50683e-16
2.17304e-14
6.30995e-16
1.59833e-14
7.65223e-16
1.22308e-14
2.45669e-16
6.08583e-15
9.53672e-17
2.79066e-15
3.35243e-17
1.44566e-15
2.03591e-17
8.48057e-16
5.95991e-18
2.32751e-16
1.5031e-18
5.60196e-17
3.88226e-19
1.37204e-17
6.62469e-20
2.272e-18
1.62148e-20
5.41128e-19
3.49734e-21
1.13085e-19
5.12736e-22
1.62152e-20
9.86845e-23
3.03075e-21
1.6429e-23
4.9454e-22
2.41677e-24
7.09287e-23
3.61115e-25
1.04864e-23
5.01782e-26
1.4627e-24
8.04969e-27
2.31094e-25
9.82407e-28
2.73439e-26
8.40019e-29
2.22884e-27
4.44954e-30
1.11205e-28
2.21519e-31
5.21389e-30
7.23785e-31
1.63523e-29
5.86224e-30
1.2826e-28
4.08924e-29
8.41674e-28
2.71203e-28
4.91905e-27
1.63033e-27
2.37989e-26
9.46966e-27
9.77546e-26
5.03785e-26
2.78166e-25
2.39792e-25
1.57657e-25
1.06092e-24
-1.62916e-24
4.1882e-24
-1.48212e-23
1.38611e-23
-8.09779e-23
4.0944e-23
-3.53555e-22
1.13608e-22
-1.3992e-21
3.1354e-22
-4.8846e-21
7.73114e-22
-1.49993e-20
1.81689e-21
-4.40469e-20
4.24339e-21
-1.21937e-19
8.9621e-21
-3.21815e-19
1.93399e-20
-7.52171e-19
3.76791e-20
-1.55767e-18
6.08021e-20
-3.24579e-18
1.07585e-19
-6.43053e-18
1.98395e-19
-1.22984e-17
3.31453e-19
-2.38836e-17
4.9287e-19
-4.45247e-17
8.43435e-19
-8.64415e-17
9.19806e-19
-1.50109e-16
1.00961e-18
-2.48874e-16
9.51008e-19
-4.01445e-16
1.56465e-19
-6.66402e-16
-5.55217e-18
-1.03117e-15
-1.37861e-17
-1.56552e-15
-4.71519e-17
-6.62818e-15
-1.24116e-16
-1.6345e-14
-2.98719e-16
-3.02697e-14
-6.17266e-16
-4.8723e-14
-1.00214e-15
-7.0139e-14
-1.5106e-15
-9.0936e-14
-2.25174e-15
-1.08694e-13
-3.45228e-15
-1.22535e-13
-4.84334e-15
-1.30551e-13
-7.84288e-15
-1.28211e-13
-1.36342e-14
-1.06246e-13
-2.32251e-14
-7.55657e-14
-2.97116e-14
-3.62494e-14
-3.66376e-14
1.26615e-14
-4.53066e-14
4.78526e-14
-6.81041e-14
8.751e-14
-1.03789e-13
1.26804e-13
-1.55468e-13
1.74357e-13
-9.77462e-14
2.33981e-13
-3.14031e-14
3.4291e-13
1.63877e-14
3.87019e-13
1.99211e-14
2.69959e-13
6.46302e-15
1.5829e-13
1.52376e-15
5.93352e-14
3.58099e-16
1.47381e-14
1.10637e-16
4.19551e-15
7.05096e-17
2.22328e-15
6.73053e-17
2.40375e-15
5.47517e-17
1.87164e-15
4.11271e-17
1.36288e-15
3.22445e-17
1.03939e-15
2.25072e-17
7.04166e-16
1.61613e-17
4.8782e-16
1.05967e-17
3.1115e-16
7.75977e-18
2.19583e-16
5.70858e-18
1.55838e-16
4.01374e-18
1.04299e-16
3.20861e-18
7.795e-17
2.56967e-18
5.7965e-17
2.15616e-18
4.36828e-17
1.75539e-18
3.13989e-17
1.56662e-18
2.30551e-17
1.37139e-18
1.5276e-17
1.32196e-18
9.31774e-18
1.20099e-18
2.85829e-18
1.14687e-18
-1.43162e-18
1.07049e-18
-3.71881e-18
1.124e-18
-6.74906e-18
1.13172e-18
-9.05368e-18
1.26048e-18
-1.30764e-17
1.38447e-18
-1.64061e-17
1.44971e-18
-2.00645e-17
1.63296e-18
-2.49284e-17
1.82244e-18
-3.07287e-17
1.97236e-18
-3.66127e-17
2.1778e-18
-4.36177e-17
2.4342e-18
-5.21472e-17
2.54681e-18
-5.89256e-17
2.83501e-18
-6.98008e-17
2.97788e-18
-8.25042e-17
3.06181e-18
-8.93982e-17
3.15e-18
-1.02611e-16
3.74221e-18
-1.32576e-16
3.71088e-18
-1.45185e-16
3.6928e-18
-1.58026e-16
3.77312e-18
-1.81186e-16
3.71489e-18
-2.12586e-16
4.34242e-18
-2.8987e-16
4.94171e-18
-4.20196e-16
3.8978e-18
-4.60271e-16
2.16542e-18
-5.20217e-16
1.99801e-19
-5.85266e-16
-2.77808e-18
-6.53293e-16
-6.60296e-18
-7.12832e-16
-1.13902e-17
-7.28888e-16
-1.68452e-17
-7.70008e-16
-2.14977e-17
-8.01126e-16
-2.64475e-17
-7.64102e-16
-3.28686e-17
-7.27038e-16
-3.9314e-17
-6.91316e-16
-4.51157e-17
-5.84572e-16
-4.27453e-17
-4.68837e-16
-3.95635e-17
-3.17485e-16
-3.85548e-17
-1.53875e-16
-3.58481e-17
-5.60293e-18
-3.60234e-17
1.58367e-16
-3.3478e-17
3.34346e-16
-3.12187e-17
4.84096e-16
-2.62612e-17
6.34374e-16
-2.08827e-17
7.26319e-16
-1.33908e-17
8.09383e-16
-7.18437e-18
8.02472e-16
-3.62084e-18
7.61601e-16
-7.99721e-20
8.11625e-16
2.25106e-18
5.89538e-16
2.61162e-18
3.71299e-16
2.29931e-18
2.38544e-16
1.70541e-18
1.37821e-16
9.6551e-19
6.72663e-17
4.72686e-19
3.01017e-17
2.31453e-19
1.34774e-17
1.05216e-19
5.47032e-18
4.83028e-20
2.29674e-18
2.31535e-20
1.04018e-18
1.10994e-20
4.76239e-19
5.48371e-21
2.22215e-19
3.13708e-21
1.16691e-19
1.35884e-21
4.52375e-20
6.03167e-22
1.7965e-20
2.8177e-22
7.59506e-21
1.42204e-22
3.44836e-21
1.02663e-22
2.18543e-21
6.82968e-23
1.22501e-21
4.33943e-23
6.18318e-22
2.75927e-23
2.82845e-22
1.72997e-23
1.03414e-22
1.53309e-23
2.19664e-23
1.41577e-23
-5.03396e-24
1.42087e-23
-1.25105e-23
1.41542e-23
-2.06735e-23
1.28863e-23
-2.66946e-23
1.08096e-23
-2.97303e-23
9.75421e-24
-3.43352e-23
8.75556e-24
-3.87917e-23
8.23145e-24
-4.49881e-23
8.0993e-24
-5.28255e-23
7.75994e-24
-6.1264e-23
7.11631e-24
-6.79011e-23
5.66812e-24
-6.67507e-23
4.61114e-24
-6.89929e-23
3.58685e-24
-7.41441e-23
2.37769e-24
-7.59605e-23
1.31698e-24
-9.42768e-23
-4.11604e-25
-1.00683e-22
-2.29319e-24
-1.0704e-22
-4.52519e-24
-1.07304e-22
-6.26073e-24
-1.14273e-22
-8.64957e-24
-1.09143e-22
-1.01726e-23
-1.15645e-22
-1.32822e-23
-1.10187e-22
-1.49255e-23
-1.19025e-22
-1.66615e-23
-1.12602e-22
-1.58054e-23
-1.08348e-22
-1.64326e-23
-9.02735e-23
-1.7577e-23
-8.16119e-23
-1.82697e-23
-7.52036e-23
-1.93577e-23
-6.66228e-23
-2.02606e-23
-6.08822e-23
-1.98428e-23
-5.45485e-23
-1.70198e-23
-4.45645e-23
-1.58022e-23
-3.12565e-23
-1.5208e-23
-2.24593e-23
-1.32748e-23
-1.5754e-23
-1.29231e-23
-8.82696e-24
-1.18992e-23
-3.72258e-24
-1.05709e-23
1.37305e-23
-8.35158e-24
6.20224e-23
-6.13344e-24
9.12915e-23
-4.72122e-24
1.00971e-22
-3.56114e-24
1.06699e-22
-2.32274e-24
1.05362e-22
-1.52081e-24
8.79101e-23
-9.12612e-25
7.26327e-23
-5.16629e-25
5.48946e-23
-2.69545e-25
3.93913e-23
-1.29596e-25
2.63794e-23
-6.29912e-26
1.66349e-23
-2.52473e-26
1.10262e-23
-8.89638e-27
6.47149e-24
-2.07083e-27
3.85926e-24
2.89551e-28
2.08552e-24
1.18812e-27
1.1237e-24
9.97563e-28
5.64308e-25
6.30504e-28
2.65236e-25
3.73841e-28
1.25022e-25
2.00367e-28
5.2093e-26
1.18946e-28
2.27946e-26
6.47988e-29
8.71416e-27
3.1769e-29
3.03153e-27
1.36299e-29
1.00288e-27
4.80116e-30
3.08353e-28
1.45753e-30
8.97635e-29
4.24358e-31
2.60764e-29
1.18005e-31
7.28315e-30
3.2309e-32
1.98852e-30
8.24103e-33
5.00983e-31
2.10699e-33
1.25368e-31
4.96319e-34
2.87276e-32
1.174e-34
6.57898e-33
2.64667e-35
1.43189e-33
5.74451e-36
2.99491e-34
1.16421e-36
5.8391e-35
2.33213e-37
1.1242e-35
4.52753e-38
2.09536e-36
8.58029e-39
3.80444e-37
1.56378e-39
6.62992e-38
2.88077e-40
1.16402e-38
5.47067e-41
2.09517e-39
1.05918e-41
3.82271e-40
2.13839e-42
7.22508e-41
4.54948e-43
1.4254e-41
1.05146e-43
3.02352e-42
2.66265e-44
6.94999e-43
7.81494e-45
1.82529e-43
2.64026e-45
5.43835e-44
1.07564e-45
1.91166e-44
5.07054e-46
7.60116e-45
2.88338e-46
3.45561e-45
1.85196e-46
1.66126e-45
1.31986e-46
6.94502e-46
1.04876e-46
8.1432e-47
8.57349e-47
-8.07358e-49
7.07329e-47
-1.71236e-48
5.4782e-47
-2.52641e-48
4.06289e-47
-3.37792e-48
2.56906e-47
-4.11743e-48
1.18122e-47
-4.96969e-48
-3.3059e-48
-5.67117e-48
-1.94803e-47
-6.46254e-48
-3.48405e-47
-7.11758e-48
-4.8652e-47
-7.60031e-48
-5.90568e-47
-7.92723e-48
-6.65817e-47
-7.88816e-48
-6.90873e-47
-7.67144e-48
-6.6395e-47
-7.06491e-48
-6.20837e-47
-6.06549e-48
-5.67724e-47
-5.07919e-48
-5.00088e-47
-4.15095e-48
-4.26105e-47
-3.25943e-48
-3.41761e-47
-2.48648e-48
-2.51302e-47
-1.78632e-48
-1.71476e-47
-1.17506e-48
-1.12612e-47
-7.07448e-49
-7.38634e-48
-4.01038e-49
-4.94649e-48
-2.20565e-49
-3.2492e-48
-1.20569e-49
-2.05204e-48
-6.23872e-50
-1.22302e-48
-2.9619e-50
-6.87379e-49
-1.22735e-50
-3.7428e-49
-4.08369e-51
-2.04288e-49
-8.08062e-52
-1.14226e-49
2.87669e-49
-6.46191e-50
4.62211e-49
-3.56945e-50
4.30956e-49
-1.87117e-50
3.32781e-49
-9.20404e-51
2.25739e-49
-4.28194e-51
1.3738e-49
-1.91782e-51
7.67175e-50
-8.43609e-52
4.03223e-50
-3.69505e-52
2.04509e-50
-1.60967e-52
1.01904e-50
-6.87859e-53
5.00003e-51
-2.86215e-53
2.38834e-51
-1.16257e-53
1.10386e-51
-4.64785e-54
4.95338e-52
-1.83665e-54
2.17731e-52
-7.17883e-55
9.41903e-53
-2.7732e-55
4.01508e-53
-1.0589e-55
1.68618e-53
-4.00356e-56
6.97959e-54
-1.50293e-56
2.85297e-54
-5.60375e-57
1.15518e-54
-2.06817e-57
4.63886e-55
-7.53189e-58
1.84251e-55
-2.70632e-58
7.2147e-56
-9.61626e-59
2.78387e-56
-3.38126e-59
1.06101e-56
-1.17632e-59
3.99625e-57
-4.05177e-60
1.48666e-57
-1.38333e-60
5.46627e-58
-4.67779e-61
1.98958e-58
-1.56183e-61
7.16582e-59
-5.14054e-62
2.54527e-59
-1.67293e-62
8.89517e-60
-5.38962e-63
3.06564e-60
-1.71644e-63
1.0424e-60
-5.405e-64
3.48917e-61
-1.68853e-64
1.14854e-61
-5.25565e-65
3.72393e-62
-1.6327e-65
1.19238e-62
-5.06412e-66
3.7723e-63
-1.57161e-66
1.17793e-63
-4.90904e-67
3.62886e-64
-1.55693e-67
1.10516e-64
-5.05569e-68
3.34389e-65
-1.6869e-68
1.01166e-65
-5.79463e-69
3.07036e-66
-2.06525e-69
9.35855e-67
-7.76933e-70
2.88316e-67
-3.15395e-70
9.14082e-68
-1.40587e-70
3.06764e-68
-7.1168e-71
1.1224e-68
-4.53665e-71
4.72009e-69
-4.91342e-71
2.61838e-69
-3.50903e-70
2.77894e-69
2.68517e-68
-4.42877e-17
1.32597e-17
-1.00637e-15
7.30359e-16
-1.69358e-16
3.97675e-15
-4.7442e-17
3.07351e-15
-6.70477e-17
2.68449e-15
5.25826e-17
4.31277e-15
7.50329e-17
3.54651e-15
9.53263e-17
2.93529e-15
3.46244e-17
1.92408e-15
1.70657e-17
9.31854e-16
1.0317e-17
5.61782e-16
3.15056e-18
1.57942e-16
8.71378e-19
4.09784e-17
2.2361e-19
1.00187e-17
5.33643e-20
2.26836e-18
8.68797e-21
3.58343e-19
2.0029e-21
8.0296e-20
4.04298e-22
1.571e-20
5.56832e-23
2.11638e-21
9.91461e-24
3.66236e-22
1.51947e-24
5.50221e-23
2.02945e-25
7.17297e-24
2.87696e-26
1.00667e-24
3.69396e-27
1.29685e-25
5.14158e-28
1.77755e-26
5.42845e-29
1.82064e-27
3.95454e-30
1.26572e-28
1.79298e-31
5.41483e-30
2.44484e-32
6.97011e-31
1.89333e-31
5.18801e-30
1.54134e-30
4.08718e-29
1.04338e-29
2.59982e-28
6.77226e-29
1.48729e-27
4.00889e-28
7.09108e-27
2.33012e-27
2.91881e-26
1.25113e-26
8.3818e-26
6.01006e-26
4.7526e-26
2.70247e-25
-4.14015e-25
1.09476e-24
-3.82431e-24
3.7098e-24
-2.12996e-23
1.12451e-23
-9.43327e-23
3.23548e-23
-3.83725e-22
9.16514e-23
-1.36839e-21
2.32006e-22
-4.32299e-21
5.55992e-22
-1.30461e-20
1.33831e-21
-3.70752e-20
2.97243e-21
-1.00752e-19
6.60166e-21
-2.43721e-19
1.31675e-20
-5.09229e-19
2.22624e-20
-1.09316e-18
4.18308e-20
-2.21774e-18
7.78057e-20
-4.38577e-18
1.45069e-19
-8.64262e-18
2.09097e-19
-1.66471e-17
3.82752e-19
-3.4602e-17
5.02133e-19
-5.88489e-17
5.10738e-19
-9.88254e-17
6.13623e-19
-1.69152e-16
4.16776e-19
-2.85816e-16
-1.15309e-18
-4.58581e-16
-6.35845e-18
-7.13882e-16
-1.51813e-17
-1.14623e-15
-4.42914e-17
-3.59615e-15
-1.20503e-16
-9.28606e-15
-2.92021e-16
-2.04488e-14
-5.66494e-16
-3.64825e-14
-1.00554e-15
-5.67649e-14
-1.61602e-15
-7.84561e-14
-2.44423e-15
-9.7153e-14
-3.42892e-15
-1.07688e-13
-4.49154e-15
-1.06553e-13
-5.42071e-15
-9.01771e-14
-6.27492e-15
-6.27775e-14
-7.17718e-15
-2.85451e-14
-8.49193e-15
1.72849e-14
-1.00247e-14
6.11274e-14
-1.27318e-14
1.05831e-13
-1.65297e-14
1.45937e-13
-2.25584e-14
1.74888e-13
-1.31219e-14
1.98214e-13
-3.03874e-15
2.06761e-13
4.38257e-15
1.79478e-13
4.33993e-15
1.17062e-13
1.42681e-15
4.88851e-14
2.95421e-16
1.53751e-14
9.36219e-17
4.2956e-15
5.40659e-17
2.18594e-15
5.26413e-17
2.22757e-15
3.98218e-17
1.624e-15
3.06531e-17
1.20618e-15
2.1715e-17
8.34388e-16
1.6355e-17
6.15362e-16
1.08723e-17
4.00552e-16
7.53282e-18
2.69581e-16
4.80564e-18
1.68317e-16
3.51056e-18
1.19077e-16
2.52721e-18
8.31746e-17
1.71051e-18
5.37674e-17
1.33739e-18
3.95229e-17
1.05346e-18
2.89706e-17
8.70377e-19
2.15481e-17
6.9909e-19
1.53427e-17
6.188e-19
1.11679e-17
5.37217e-19
7.37665e-18
5.14677e-19
4.47217e-18
4.61506e-19
1.37621e-18
4.44408e-19
-5.6802e-19
4.10128e-19
-1.4993e-18
4.3861e-19
-2.76831e-18
4.38853e-19
-3.7024e-18
4.92576e-19
-5.385e-18
5.36455e-19
-6.73388e-18
5.57599e-19
-8.19245e-18
6.32682e-19
-1.02196e-17
7.12066e-19
-1.27005e-17
7.7695e-19
-1.52781e-17
8.67886e-19
-1.83938e-17
9.8158e-19
-2.22835e-17
1.03503e-18
-2.53073e-17
1.17879e-18
-3.0596e-17
1.26465e-18
-3.69611e-17
1.31763e-18
-4.07424e-17
1.38258e-18
-4.79196e-17
1.70694e-18
-6.38362e-17
1.70634e-18
-7.09644e-17
1.71304e-18
-7.90283e-17
1.76095e-18
-9.27034e-17
1.75613e-18
-1.10344e-16
2.06588e-18
-1.51753e-16
2.29998e-18
-2.06656e-16
1.84103e-18
-2.31047e-16
1.04358e-18
-2.69316e-16
3.40037e-20
-3.11371e-16
-1.54974e-18
-3.55795e-16
-3.55592e-18
-3.96659e-16
-6.17824e-18
-4.09844e-16
-9.45961e-18
-4.42903e-16
-1.2281e-17
-4.76607e-16
-1.56826e-17
-4.58914e-16
-1.99634e-17
-4.43379e-16
-2.30628e-17
-4.34465e-16
-2.62239e-17
-3.69635e-16
-2.69563e-17
-2.99941e-16
-2.60801e-17
-2.09397e-16
-2.58718e-17
-1.02245e-16
-2.43652e-17
-4.1795e-18
-2.30355e-17
1.29576e-16
-2.0401e-17
2.58395e-16
-1.85991e-17
3.57872e-16
-1.47254e-17
4.61072e-16
-1.12847e-17
5.01158e-16
-6.61555e-18
5.45849e-16
-3.06188e-18
5.03269e-16
-1.06314e-18
4.30381e-16
2.8047e-19
3.68286e-16
9.62263e-19
2.38978e-16
9.53777e-19
1.4289e-16
7.34412e-19
8.31063e-17
4.76162e-19
4.32019e-17
2.47321e-19
1.96081e-17
1.14165e-19
8.32771e-18
5.23439e-20
3.51713e-18
2.25924e-20
1.37135e-18
1.00713e-20
5.63727e-19
4.65153e-21
2.47116e-19
2.09058e-21
1.06451e-19
9.51903e-22
4.59546e-20
4.97706e-22
2.21662e-20
1.94652e-22
7.80649e-21
7.84409e-23
2.82853e-21
3.36707e-23
1.10213e-21
1.56837e-23
4.62844e-22
1.06047e-23
2.75365e-22
6.62966e-24
1.45355e-22
3.96604e-24
6.92307e-23
2.40759e-24
3.03028e-23
1.47816e-24
1.08926e-23
1.29807e-24
2.36168e-24
1.19801e-24
-4.72582e-25
1.18616e-24
-1.16759e-24
1.186e-24
-1.93973e-24
1.07056e-24
-2.48435e-24
8.90086e-25
-2.74364e-24
8.0181e-25
-3.1603e-24
7.22126e-25
-3.58607e-24
6.8071e-25
-4.16792e-24
6.57836e-25
-4.81616e-24
6.28366e-25
-5.5715e-24
5.73205e-25
-6.14983e-24
4.53172e-25
-6.00818e-24
3.66524e-25
-6.17856e-24
2.87875e-25
-6.70897e-24
1.88627e-25
-6.80519e-24
1.03838e-25
-8.42725e-24
-3.30254e-26
-8.94636e-24
-1.82054e-25
-9.51041e-24
-3.55483e-25
-9.4798e-24
-4.88238e-25
-1.00249e-23
-6.77995e-25
-9.5053e-24
-7.92762e-25
-1.01208e-23
-1.03016e-24
-9.6046e-24
-1.14013e-24
-1.03333e-23
-1.27566e-24
-9.64185e-24
-1.22135e-24
-9.30876e-24
-1.26748e-24
-7.81641e-24
-1.33778e-24
-7.06001e-24
-1.36552e-24
-6.43957e-24
-1.44499e-24
-5.61743e-24
-1.51553e-24
-5.12539e-24
-1.47797e-24
-4.5971e-24
-1.26044e-24
-3.74404e-24
-1.15279e-24
-2.6182e-24
-1.09986e-24
-1.86074e-24
-9.55423e-25
-1.29585e-24
-9.30645e-25
-7.2482e-25
-8.5455e-25
-3.08524e-25
-7.56487e-25
1.15378e-24
-5.88036e-25
5.37675e-24
-4.25123e-25
7.82543e-24
-3.22402e-25
8.53794e-24
-2.38268e-25
8.89007e-24
-1.51721e-25
8.6097e-24
-9.71812e-26
7.0316e-24
-5.64576e-26
5.68999e-24
-3.08542e-26
4.17869e-24
-1.54161e-26
2.90003e-24
-7.1296e-27
1.86565e-24
-3.28854e-27
1.13341e-24
-1.24134e-27
7.17079e-25
-4.11098e-28
4.00522e-25
-8.23781e-29
2.2908e-25
2.70887e-29
1.1743e-25
5.83763e-29
5.95149e-26
4.4118e-29
2.81873e-26
2.58866e-29
1.25182e-26
1.42723e-29
5.53284e-27
7.04788e-30
2.14099e-27
3.86449e-30
8.72862e-28
1.92666e-30
3.08919e-28
8.5985e-31
9.90214e-29
3.35463e-31
3.00461e-29
1.07609e-31
8.4309e-30
2.96484e-32
2.22401e-30
7.82237e-33
5.84654e-31
1.96436e-33
1.47399e-31
4.86243e-34
3.63934e-32
1.12022e-34
8.28561e-33
2.5944e-35
1.87938e-33
5.52899e-36
3.89841e-34
1.18167e-36
8.07115e-35
2.39708e-37
1.58149e-35
4.66227e-38
2.96536e-36
8.47216e-39
5.18645e-37
1.5133e-39
8.90709e-38
2.61843e-40
1.48014e-38
4.43245e-41
2.40125e-39
7.25405e-42
3.75859e-40
1.20103e-42
5.93218e-41
2.0451e-43
9.57681e-42
3.53542e-44
1.56071e-42
6.36483e-45
2.6309e-43
1.20702e-45
4.62816e-44
2.50282e-46
8.81156e-45
5.72774e-47
1.83131e-45
1.53749e-47
4.40127e-46
4.80719e-48
1.21531e-46
1.84365e-48
4.02476e-47
8.2799e-49
1.52986e-47
4.55853e-49
6.75788e-48
2.88459e-49
3.21135e-48
2.02855e-49
1.34748e-48
1.61239e-49
1.93199e-49
1.32263e-49
-1.36889e-51
1.10037e-49
-3.00438e-51
8.57734e-50
-4.49602e-51
6.4161e-50
-6.09167e-51
4.09648e-50
-7.49756e-51
1.90373e-50
-9.15685e-51
-5.32173e-51
-1.05385e-50
-3.20573e-50
-1.21402e-50
-5.79177e-50
-1.35018e-50
-8.15001e-50
-1.45414e-50
-9.92396e-50
-1.52803e-50
-1.12346e-49
-1.52593e-50
-1.16847e-49
-1.49042e-50
-1.1216e-49
-1.37573e-50
-1.04685e-49
-1.17931e-50
-9.532e-50
-9.86216e-51
-8.33006e-50
-8.03217e-51
-7.03667e-50
-6.25939e-51
-5.58912e-50
-4.73678e-51
-4.05618e-50
-3.37114e-51
-2.72071e-50
-2.18846e-51
-1.75322e-50
-1.29583e-51
-1.1271e-50
-7.21063e-52
-7.40055e-51
-3.88754e-52
-4.75067e-51
-2.08583e-52
-2.93173e-51
-1.05609e-52
-1.70594e-51
-4.90216e-53
-9.33972e-52
-1.98423e-53
-4.95513e-52
-6.42956e-54
-2.61444e-52
-1.23845e-54
-1.42039e-52
4.5268e-52
-7.79505e-53
7.02351e-52
-4.17349e-53
6.33626e-52
-2.11656e-53
4.73553e-52
-1.00412e-53
3.10479e-52
-4.49077e-54
1.8213e-52
-1.92835e-54
9.77397e-53
-8.11341e-55
4.92419e-53
-3.39272e-55
2.38858e-53
-1.40879e-55
1.13619e-53
-5.72563e-56
5.3135e-54
-2.25921e-56
2.41368e-54
-8.67682e-57
1.05779e-54
-3.27326e-57
4.48774e-55
-1.21856e-57
1.86125e-55
-4.4801e-58
7.58513e-56
-1.62554e-58
3.04121e-56
-5.82276e-59
1.19956e-56
-2.06323e-59
4.65791e-57
-7.25291e-60
1.78436e-57
-2.53085e-60
6.76576e-58
-8.73696e-61
2.54272e-58
-2.97346e-61
9.44675e-59
-9.97208e-62
3.45684e-59
-3.30436e-62
1.24502e-59
-1.08286e-62
4.42537e-60
-3.5087e-63
1.55358e-60
-1.12495e-63
5.38373e-61
-3.57394e-64
1.84296e-61
-1.12453e-64
6.24338e-62
-3.4928e-65
2.09288e-62
-1.06897e-65
6.91746e-63
-3.23389e-66
2.24874e-63
-9.68173e-67
7.20745e-64
-2.86361e-67
2.27857e-64
-8.36837e-68
7.08743e-65
-2.42418e-68
2.16646e-65
-6.99129e-69
6.51832e-66
-2.0108e-69
1.93545e-66
-5.76991e-70
5.67389e-67
-1.65561e-70
1.64044e-67
-4.77956e-71
4.67618e-68
-1.40084e-71
1.3171e-68
-4.20519e-72
3.68496e-69
-1.2984e-72
1.0311e-69
-4.13387e-73
2.89628e-70
-1.36874e-73
8.18124e-71
-4.79968e-74
2.341e-71
-1.82485e-74
6.91815e-72
-7.66524e-75
2.1756e-72
-3.68114e-75
7.51231e-73
-2.23627e-75
3.0066e-73
-2.2941e-75
1.59873e-73
-1.49322e-74
1.62298e-73
1.45439e-72
-3.30803e-18
1.00014e-18
-7.66294e-17
1.63017e-16
-1.48481e-17
1.25867e-15
-5.32916e-18
8.88555e-16
-7.53154e-18
8.59706e-16
5.29298e-18
1.38285e-15
8.83064e-18
1.11988e-15
1.22355e-17
9.54204e-16
8.32691e-18
7.94345e-16
3.94437e-18
3.09407e-16
1.49652e-18
1.0252e-16
4.61099e-19
2.90123e-17
1.2164e-19
7.1834e-18
3.12306e-20
1.75242e-18
6.96455e-21
3.7058e-19
1.08666e-21
5.60459e-20
2.34825e-22
1.17506e-20
4.42779e-23
2.14785e-21
5.73167e-24
2.71985e-22
9.44535e-25
4.35981e-23
1.33017e-25
6.02156e-24
1.61864e-26
7.16187e-25
2.16022e-27
9.4728e-26
2.54776e-28
1.12129e-26
3.08373e-29
1.33748e-27
2.81499e-30
1.18597e-28
1.75073e-31
7.05138e-30
7.07924e-33
2.69721e-31
4.59986e-33
1.65974e-31
4.32799e-32
1.50435e-30
3.46026e-31
1.16484e-29
2.25178e-30
7.12788e-29
1.41874e-29
3.96677e-28
8.20097e-29
1.85109e-27
4.67669e-28
7.49232e-27
2.47137e-27
2.1307e-26
1.19044e-26
1.19021e-26
5.34835e-26
-8.48593e-26
2.20878e-25
-7.87333e-25
7.66183e-25
-4.44682e-24
2.37655e-24
-1.98267e-23
7.13624e-24
-8.2717e-23
2.10036e-23
-3.00813e-22
5.60279e-23
-9.85582e-22
1.43799e-22
-3.0402e-21
3.60991e-22
-8.76379e-21
8.44495e-22
-2.44309e-20
1.89138e-21
-6.06424e-20
3.80062e-21
-1.29175e-19
6.93823e-21
-2.87966e-19
1.35741e-20
-5.96242e-19
2.42604e-20
-1.22408e-18
4.5847e-20
-2.48449e-18
7.3161e-20
-5.02003e-18
1.37565e-19
-1.1078e-17
1.9216e-19
-1.80865e-17
1.69956e-19
-3.11689e-17
2.90721e-19
-5.66311e-17
3.35088e-19
-9.74206e-17
5.51995e-20
-1.6435e-16
-9.11393e-19
-2.65153e-16
-4.3193e-18
-4.52848e-16
-1.36467e-17
-7.19662e-16
-2.876e-17
-1.17798e-15
-9.72729e-17
-4.00728e-15
-2.26378e-16
-9.60286e-15
-4.68182e-16
-2.15825e-14
-8.77536e-16
-3.71343e-14
-1.52363e-15
-5.53297e-14
-2.28582e-15
-7.00668e-14
-3.23026e-15
-7.52976e-14
-4.15602e-15
-6.93499e-14
-4.9207e-15
-5.14588e-14
-5.55822e-15
-2.30948e-14
-5.90466e-15
1.71461e-14
-6.07622e-15
5.70285e-14
-6.03755e-15
9.31748e-14
-5.47704e-15
1.13922e-13
-4.59321e-15
1.01991e-13
-2.25837e-15
1.05698e-13
1.46441e-16
9.12177e-14
1.35563e-15
6.44957e-14
1.02979e-15
3.41693e-14
3.04112e-16
1.29621e-14
7.96735e-17
4.38997e-15
4.48772e-17
2.1516e-15
4.44542e-17
2.1893e-15
3.08925e-17
1.4789e-15
2.17929e-17
1.02433e-15
1.58899e-17
7.35239e-16
1.05338e-17
4.84935e-16
7.5684e-18
3.46247e-16
4.75794e-18
2.16224e-16
3.15552e-18
1.41006e-16
1.93339e-18
8.55744e-17
1.38435e-18
5.99933e-17
9.57354e-19
4.0667e-17
6.13955e-19
2.51511e-17
4.62537e-19
1.79871e-17
3.52843e-19
1.28405e-17
2.83673e-19
9.33144e-18
2.2237e-19
6.51594e-18
1.92221e-19
4.66509e-18
1.63001e-19
3.05183e-18
1.55113e-19
1.83368e-18
1.35758e-19
5.65242e-19
1.32203e-19
-1.79409e-19
1.21931e-19
-4.78968e-19
1.32673e-19
-8.95862e-19
1.32081e-19
-1.19538e-18
1.4982e-19
-1.74987e-18
1.63281e-19
-2.18388e-18
1.69012e-19
-2.65721e-18
1.939e-19
-3.33181e-18
2.21031e-19
-4.17614e-18
2.45243e-19
-5.0767e-18
2.78744e-19
-6.18054e-18
3.21722e-19
-7.60642e-18
3.4334e-19
-8.70919e-18
4.03331e-19
-1.07415e-17
4.4501e-19
-1.32649e-17
4.76921e-19
-1.48988e-17
5.16751e-19
-1.79545e-17
6.6446e-19
-2.45675e-17
6.77942e-19
-2.78744e-17
7.05187e-19
-3.19273e-17
7.46944e-19
-3.84727e-17
7.62802e-19
-4.68662e-17
9.12578e-19
-6.54632e-17
9.6406e-19
-8.60896e-17
7.96515e-19
-9.89479e-17
5.0366e-19
-1.19557e-16
1.04223e-19
-1.42743e-16
-5.85924e-19
-1.68615e-16
-1.50609e-18
-1.94315e-16
-2.76774e-18
-2.04735e-16
-4.41989e-18
-2.27701e-16
-5.82011e-18
-2.53095e-16
-7.54478e-18
-2.46842e-16
-9.88555e-18
-2.42474e-16
-1.14498e-17
-2.44464e-16
-1.3114e-17
-2.10644e-16
-1.38369e-17
-1.74133e-16
-1.33915e-17
-1.2319e-16
-1.34118e-17
-5.98698e-17
-1.25237e-17
-2.66978e-18
-1.171e-17
8.59196e-17
-9.9793e-18
1.70115e-16
-8.7838e-18
2.28352e-16
-6.5034e-18
2.87486e-16
-4.57479e-18
2.97141e-16
-2.32469e-18
3.05006e-16
-8.399e-19
2.57798e-16
-1.19593e-19
1.99052e-16
3.05986e-19
1.48106e-16
4.13577e-19
9.01453e-17
3.32443e-19
5.01431e-17
2.2221e-19
2.68216e-17
1.26935e-19
1.28412e-17
6.06045e-20
5.49145e-18
2.63553e-20
2.2301e-18
1.13212e-20
8.94719e-19
4.61391e-21
3.34796e-19
1.95885e-21
1.32644e-19
8.52601e-22
5.52247e-20
3.53794e-22
2.21013e-20
1.46934e-22
8.75696e-21
6.96578e-23
3.85945e-21
2.45435e-23
1.23442e-21
8.97827e-24
4.08738e-22
3.54024e-24
1.46998e-22
1.52132e-24
5.71627e-23
9.59117e-25
3.18168e-23
5.63091e-25
1.582e-23
3.17103e-25
7.11365e-24
1.84039e-25
2.98341e-24
1.10856e-25
1.05602e-24
9.63881e-26
2.32053e-25
8.89618e-26
-4.13784e-26
8.6851e-26
-1.01404e-25
8.7183e-26
-1.69231e-25
7.80333e-26
-2.14941e-25
6.43368e-26
-2.35414e-25
5.78147e-26
-2.70237e-25
5.23347e-26
-3.08007e-25
4.945e-26
-3.58546e-25
4.70798e-26
-4.0822e-25
4.4853e-26
-4.71408e-25
4.07849e-26
-5.18383e-25
3.20495e-26
-5.03766e-25
2.58252e-26
-5.15272e-25
2.05177e-26
-5.64671e-25
1.33375e-26
-5.67007e-25
7.37939e-27
-7.00169e-25
-2.29944e-27
-7.38575e-25
-1.25369e-26
-7.84341e-25
-2.44143e-26
-7.77597e-25
-3.32367e-26
-8.1627e-25
-4.64473e-26
-7.68589e-25
-5.4138e-26
-8.21545e-25
-6.99907e-26
-7.76982e-25
-7.62582e-26
-8.33445e-25
-8.56562e-26
-7.6872e-25
-8.25432e-26
-7.44322e-25
-8.56146e-26
-6.29197e-25
-8.94611e-26
-5.67797e-25
-8.98094e-26
-5.13664e-25
-9.47826e-26
-4.42275e-25
-9.953e-26
-4.02818e-25
-9.66735e-26
-3.60994e-25
-8.21967e-26
-2.93167e-25
-7.42219e-26
-2.04619e-25
-7.01457e-26
-1.44245e-25
-6.06637e-26
-9.97329e-26
-5.91161e-26
-5.56797e-26
-5.41866e-26
-2.38358e-26
-4.78511e-26
9.06521e-26
-3.67069e-26
4.34178e-25
-2.61608e-26
6.25468e-25
-1.94708e-26
6.74066e-25
-1.40598e-26
6.909e-25
-8.75711e-27
6.55191e-25
-5.47597e-27
5.23709e-25
-3.08666e-27
4.15137e-25
-1.62398e-27
2.9625e-25
-7.75337e-28
1.98888e-25
-3.41736e-28
1.22966e-25
-1.48415e-28
7.20335e-26
-5.21054e-29
4.35117e-26
-1.56637e-29
2.31541e-26
-2.4297e-30
1.27078e-26
2.03606e-30
6.18732e-27
2.69265e-30
2.95605e-27
1.80623e-30
1.32209e-27
9.75873e-31
5.54833e-28
4.97557e-31
2.30166e-28
2.25768e-31
8.29507e-29
1.13668e-31
3.14799e-29
5.16891e-32
1.03134e-29
2.09721e-32
3.04615e-30
7.43691e-33
8.47786e-31
2.17152e-33
2.17174e-31
5.43011e-34
5.19674e-32
1.2997e-34
1.23845e-32
2.95327e-35
2.82516e-33
6.62345e-36
6.32339e-34
1.3811e-36
1.30396e-34
2.90032e-37
2.68418e-35
5.59359e-38
5.04272e-36
1.07952e-38
9.43498e-37
1.96972e-39
1.66405e-37
3.43343e-40
2.79809e-38
5.59808e-41
4.39375e-39
8.92815e-42
6.74084e-40
1.37928e-42
1.0006e-40
2.08867e-43
1.45278e-41
3.0696e-44
2.04278e-42
4.55929e-45
2.89332e-43
6.94176e-46
4.17797e-44
1.0688e-46
6.06635e-45
1.71252e-47
9.10376e-46
2.8909e-48
1.42612e-46
5.37067e-49
2.43362e-47
1.10892e-49
4.56532e-48
2.71861e-50
1.00246e-48
7.85399e-51
2.56119e-49
2.83348e-51
7.98151e-50
1.21175e-51
2.89757e-50
6.45636e-52
1.24272e-50
4.02926e-52
5.82562e-51
2.79762e-52
2.44736e-51
2.22489e-52
3.9757e-52
1.83428e-52
-2.21939e-54
1.54064e-52
-5.01891e-54
1.21082e-52
-7.60937e-54
9.1456e-53
-1.0442e-53
5.9444e-53
-1.29762e-53
2.85095e-53
-1.60333e-53
-6.34911e-54
-1.86117e-53
-4.58569e-53
-2.16746e-53
-8.45954e-53
-2.4344e-53
-1.20465e-52
-2.6446e-53
-1.47581e-52
-2.80003e-53
-1.68199e-52
-2.80652e-53
-1.75547e-52
-2.75346e-53
-1.68358e-52
-2.54796e-53
-1.57076e-52
-2.18128e-53
-1.42662e-52
-1.8221e-53
-1.23729e-52
-1.47927e-53
-1.03738e-52
-1.1442e-53
-8.1664e-53
-8.59114e-54
-5.85443e-53
-6.0585e-54
-3.8687e-53
-3.88244e-54
-2.45061e-53
-2.26162e-54
-1.5438e-53
-1.23579e-54
-9.94551e-54
-6.53254e-55
-6.24714e-54
-3.44085e-55
-3.76562e-54
-1.70462e-55
-2.13864e-54
-7.73488e-56
-1.14117e-54
-3.05789e-56
-5.89438e-55
-9.65195e-57
-3.05157e-55
-1.80222e-57
-1.60561e-55
6.75809e-55
-8.54195e-56
1.01556e-54
-4.43502e-56
8.87655e-55
-2.17799e-56
6.42763e-55
-9.97809e-57
4.07749e-55
-4.29642e-57
2.30824e-55
-1.77188e-57
1.19193e-55
-7.14468e-58
5.76465e-56
-2.85793e-58
2.67877e-56
-1.13343e-58
1.21845e-56
-4.39009e-59
5.44012e-57
-1.64603e-59
2.35409e-57
-5.98963e-60
9.79905e-58
-2.13621e-60
3.93711e-58
-7.50556e-61
1.54309e-58
-2.59993e-61
5.93253e-59
-8.87407e-62
2.2402e-59
-2.98632e-62
8.30892e-60
-9.9305e-63
3.02994e-60
-3.27328e-63
1.08892e-60
-1.07032e-63
3.87035e-61
-3.4606e-64
1.36267e-61
-1.102e-64
4.74027e-62
-3.45359e-65
1.62265e-62
-1.06836e-65
5.46025e-63
-3.26603e-66
1.81168e-63
-9.86413e-67
5.93282e-64
-2.94556e-67
1.91643e-64
-8.71138e-68
6.11102e-65
-2.55106e-68
1.92766e-65
-7.37192e-69
6.01601e-66
-2.09802e-69
1.8508e-66
-5.90018e-70
5.5981e-67
-1.64152e-70
1.66918e-67
-4.50925e-71
4.90833e-68
-1.2229e-71
1.41948e-68
-3.28484e-72
4.03187e-69
-8.77703e-73
1.1265e-69
-2.33687e-73
3.10419e-70
-6.20232e-74
8.4393e-71
-1.64507e-74
2.26105e-71
-4.38817e-75
5.96865e-72
-1.18831e-75
1.55608e-72
-3.29757e-76
4.02892e-73
-9.42264e-77
1.0435e-73
-2.78141e-77
2.71507e-74
-8.56045e-78
7.11374e-75
-2.80053e-78
1.89238e-75
-9.98329e-79
5.21793e-76
-3.95627e-79
1.5392e-76
-1.80404e-79
5.02045e-77
-1.04426e-79
1.9132e-77
-1.01222e-79
9.74556e-78
-5.97514e-79
9.43819e-78
7.81543e-77
-2.08117e-19
7.43489e-20
-5.54352e-18
1.44497e-17
-1.21768e-18
4.17013e-16
-6.15075e-19
2.1859e-16
-7.64867e-19
2.3413e-16
3.64653e-19
4.81575e-16
1.1458e-18
3.6288e-16
1.73348e-18
3.05344e-16
1.11501e-18
1.43726e-16
5.50223e-19
5.78999e-17
2.03981e-19
1.86819e-17
6.27653e-20
5.2662e-18
1.58269e-20
1.25348e-18
3.96841e-21
3.01091e-19
8.24022e-22
5.98326e-20
1.22163e-22
8.6779e-21
2.44811e-23
1.6965e-21
4.28928e-24
2.892e-22
5.19828e-25
3.44021e-23
7.91589e-26
5.10895e-24
1.02279e-26
6.47753e-25
1.1392e-27
7.05184e-26
1.42601e-28
8.73459e-27
1.54213e-29
9.45614e-28
1.63267e-30
9.84161e-29
1.2941e-31
7.55818e-30
6.91948e-33
3.85245e-31
3.02832e-34
1.59044e-32
8.55051e-34
4.24363e-32
8.16372e-33
3.88973e-31
6.36507e-32
2.91963e-30
3.99165e-31
1.71037e-29
2.44364e-30
9.21792e-29
1.37513e-29
4.18629e-28
7.54597e-29
1.63274e-27
3.89515e-28
4.50676e-27
1.83071e-27
2.46464e-27
8.16296e-27
-1.34152e-26
3.41802e-26
-1.22977e-25
1.21529e-25
-6.94453e-25
3.84123e-25
-3.08522e-24
1.19943e-24
-1.29926e-23
3.61726e-24
-4.77177e-23
9.99145e-24
-1.60337e-22
2.62951e-23
-4.97199e-22
6.5187e-23
-1.41803e-21
1.63045e-22
-3.98631e-21
3.9362e-22
-1.00332e-20
8.50087e-22
-2.21497e-20
1.68788e-21
-5.14792e-20
3.39068e-21
-1.09731e-19
6.25692e-21
-2.34238e-19
1.17169e-20
-4.97287e-19
2.11988e-20
-1.04922e-18
4.14534e-20
-2.4784e-18
5.75184e-20
-3.74455e-18
5.26522e-20
-6.82253e-18
9.34046e-20
-1.28154e-17
1.11698e-19
-2.21806e-17
5.68471e-20
-3.99664e-17
-2.51989e-19
-6.67401e-17
-1.16305e-18
-1.23207e-16
-2.63458e-18
-2.06368e-16
-8.10818e-18
-3.62773e-16
-2.7893e-17
-6.06791e-16
-4.68764e-17
-8.05664e-16
-1.35725e-16
-3.18532e-15
-3.19872e-16
-7.68603e-15
-6.66683e-16
-1.77596e-14
-1.14009e-15
-2.9455e-14
-1.71321e-15
-3.71841e-14
-2.28329e-15
-3.71567e-14
-2.74846e-15
-2.88113e-14
-3.10491e-15
-1.29576e-14
-3.15685e-15
9.70942e-15
-2.97998e-15
3.29536e-14
-2.46433e-15
5.05919e-14
-1.78735e-15
5.78178e-14
-1.06432e-15
5.60562e-14
-2.38879e-16
4.3839e-14
3.06759e-16
2.57757e-14
4.19789e-16
1.69416e-14
2.43051e-16
8.80483e-15
7.4142e-17
3.89043e-15
3.50651e-17
2.11473e-15
3.51609e-17
2.15438e-15
2.38858e-17
1.42815e-15
1.56109e-17
9.2553e-16
1.03759e-17
6.12884e-16
7.22402e-18
4.2575e-16
4.50849e-18
2.67244e-16
3.09604e-18
1.83886e-16
1.83619e-18
1.09307e-16
1.15907e-18
6.85137e-17
6.75425e-19
3.98892e-17
4.66434e-19
2.72143e-17
3.05394e-19
1.75819e-17
1.83287e-19
1.02538e-17
1.30526e-19
7.01638e-18
9.43154e-20
4.79151e-18
7.20988e-20
3.34552e-18
5.41715e-20
2.25589e-18
4.48601e-20
1.56958e-18
3.66525e-20
1.00519e-18
3.40912e-20
5.95662e-19
2.87998e-20
1.83461e-19
2.8383e-20
-4.00093e-20
2.60814e-20
-1.07568e-19
2.86768e-20
-2.03245e-19
2.81675e-20
-2.70826e-19
3.21442e-20
-3.98915e-19
3.46834e-20
-4.97719e-19
3.58347e-20
-6.07593e-19
4.10733e-20
-7.66634e-19
4.68335e-20
-9.69818e-19
5.23479e-20
-1.19281e-18
6.01959e-20
-1.46958e-18
7.02344e-20
-1.83831e-18
7.57214e-20
-2.12827e-18
9.1094e-20
-2.67923e-18
1.0363e-19
-3.3863e-18
1.14703e-19
-3.88717e-18
1.28529e-19
-4.80408e-18
1.73486e-19
-6.74263e-18
1.84026e-19
-7.83826e-18
2.02725e-19
-9.27918e-18
2.26218e-19
-1.15418e-17
2.41844e-19
-1.44739e-17
3.03017e-19
-2.07124e-17
3.17322e-19
-2.7156e-17
2.849e-19
-3.2472e-17
2.01648e-19
-4.10839e-17
8.21778e-20
-5.11981e-17
-1.38051e-19
-6.33966e-17
-4.83529e-19
-7.67628e-17
-1.01363e-18
-8.42047e-17
-1.74902e-18
-9.81494e-17
-2.36656e-18
-1.1423e-16
-3.11389e-18
-1.15252e-16
-4.17287e-18
-1.1702e-16
-4.84407e-18
-1.22385e-16
-5.60577e-18
-1.08017e-16
-5.91087e-18
-9.21038e-17
-5.63283e-18
-6.53593e-17
-5.63832e-18
-3.14424e-17
-5.19503e-18
-1.48939e-18
-4.82164e-18
4.97108e-17
-3.96246e-18
9.80677e-17
-3.34685e-18
1.27834e-16
-2.30443e-18
1.56711e-16
-1.4509e-18
1.54092e-16
-6.25475e-19
1.47311e-16
-1.5621e-19
1.15016e-16
5.38683e-20
8.16992e-17
1.56834e-19
5.53935e-17
1.46303e-19
3.17259e-17
9.873e-20
1.64432e-17
5.84817e-20
8.19397e-18
3.01847e-20
3.65889e-18
1.34746e-20
1.48829e-18
5.56263e-21
5.79466e-19
2.25133e-21
2.213e-19
8.61531e-22
7.8839e-20
3.43426e-22
2.96798e-20
1.38853e-22
1.15822e-20
5.26717e-23
4.27306e-21
1.97693e-23
1.54699e-21
8.44351e-24
6.2118e-22
2.66993e-24
1.80457e-22
8.8449e-25
5.4684e-23
3.19527e-25
1.81698e-23
1.26332e-25
6.54704e-24
7.38461e-26
3.4e-24
4.06289e-26
1.59315e-24
2.15131e-26
6.76827e-25
1.19521e-26
2.72297e-25
7.07516e-27
9.50055e-26
6.05288e-27
2.10546e-26
5.60878e-27
-3.36934e-27
5.40286e-27
-8.17466e-27
5.44163e-27
-1.36954e-26
4.83551e-27
-1.72577e-26
3.95402e-27
-1.87576e-26
3.54438e-27
-2.14531e-26
3.22479e-27
-2.45661e-26
3.05477e-27
-2.86348e-26
2.86705e-27
-3.21863e-26
2.72801e-27
-3.71478e-26
2.47628e-27
-4.07323e-26
1.93755e-27
-3.94294e-26
1.55406e-27
-4.01346e-26
1.24938e-27
-4.43523e-26
8.11485e-28
-4.41189e-26
4.69024e-28
-5.4331e-26
-9.18735e-29
-5.69635e-26
-6.94478e-28
-6.04113e-26
-1.39353e-27
-5.96132e-26
-1.91676e-27
-6.21325e-26
-2.71491e-27
-5.81368e-26
-3.15952e-27
-6.2342e-26
-4.07301e-27
-5.88001e-26
-4.383e-27
-6.2951e-26
-4.93384e-27
-5.75104e-26
-4.78225e-27
-5.58255e-26
-4.95276e-27
-4.74657e-26
-5.12895e-27
-4.27965e-26
-5.07803e-27
-3.84651e-26
-5.34544e-27
-3.27606e-26
-5.60479e-27
-2.97777e-26
-5.42281e-27
-2.66156e-26
-4.59719e-27
-2.15576e-26
-4.11235e-27
-1.50277e-26
-3.85178e-27
-1.05312e-26
-3.31713e-27
-7.22862e-27
-3.22707e-27
-4.02678e-27
-2.94656e-27
-1.72815e-27
-2.60081e-27
6.72183e-27
-1.96879e-27
3.28814e-26
-1.38416e-27
4.68961e-26
-1.01115e-27
4.99664e-26
-7.12032e-28
5.0375e-26
-4.32516e-28
4.67222e-26
-2.63747e-28
3.65469e-26
-1.43616e-28
2.83826e-26
-7.25927e-29
1.9683e-26
-3.29883e-29
1.27864e-26
-1.38012e-29
7.60162e-27
-5.58445e-30
4.29686e-27
-1.78433e-30
2.47955e-27
-4.56501e-31
1.25847e-27
-2.59396e-32
6.63024e-28
1.32217e-31
3.06971e-28
1.16991e-31
1.38521e-28
6.84601e-32
5.85606e-29
3.36501e-32
2.3222e-29
1.57232e-32
9.04793e-30
6.5094e-33
3.0433e-30
2.98066e-33
1.07435e-30
1.22782e-33
3.25863e-31
4.51081e-34
8.87141e-32
1.45086e-34
2.26535e-32
3.85143e-35
5.30052e-33
8.73752e-36
1.15178e-33
1.89848e-36
2.49243e-34
3.9089e-37
5.15552e-35
7.95406e-38
1.04811e-35
1.50292e-38
1.96099e-36
2.86238e-39
3.66601e-37
4.99474e-40
6.2395e-38
8.69835e-41
1.05477e-38
1.42703e-41
1.67458e-39
2.22947e-42
2.52653e-40
3.26304e-43
3.56476e-41
4.65147e-44
4.89238e-42
6.42349e-45
6.49688e-43
8.70817e-46
8.45027e-44
1.14826e-46
1.0669e-44
1.52703e-47
1.35362e-45
2.07375e-48
1.74435e-46
2.83773e-49
2.25219e-47
4.03981e-50
3.00428e-48
6.06216e-51
4.18547e-49
1.00747e-51
6.39176e-50
1.87327e-52
1.08033e-50
4.18702e-53
2.16358e-51
1.11604e-53
5.10579e-52
3.78004e-54
1.49536e-52
1.54096e-54
5.18008e-53
7.9278e-55
2.15597e-53
4.89387e-55
9.96068e-54
3.35358e-55
4.17689e-54
2.67163e-55
7.32798e-55
2.20943e-55
-3.45443e-57
1.87007e-55
-8.00925e-57
1.47808e-55
-1.2287e-56
1.12733e-55
-1.70677e-56
7.3221e-56
-2.141e-56
3.46848e-56
-2.67609e-56
-1.01348e-56
-3.13353e-56
-6.19434e-56
-3.68918e-56
-1.13813e-55
-4.18472e-56
-1.62712e-55
-4.58591e-56
-1.99723e-55
-4.89278e-56
-2.28297e-55
-4.9232e-56
-2.38946e-55
-4.85226e-56
-2.2895e-55
-4.50222e-56
-2.13201e-55
-3.84985e-56
-1.92874e-55
-3.21306e-56
-1.65969e-55
-2.60077e-56
-1.38006e-55
-1.99698e-56
-1.0754e-55
-1.48806e-56
-7.61432e-56
-1.04004e-56
-4.94787e-56
-6.58103e-57
-3.07721e-56
-3.77253e-57
-1.90154e-56
-2.02474e-57
-1.20191e-56
-1.04964e-57
-7.37648e-57
-5.42895e-58
-4.34549e-57
-2.6313e-58
-2.41169e-57
-1.16699e-58
-1.25474e-57
-4.50609e-59
-6.33597e-58
-1.38505e-59
-3.14547e-58
-2.52419e-60
-1.61198e-58
9.62617e-58
-8.33454e-59
1.40207e-57
-4.19989e-59
1.18832e-57
-1.99822e-59
8.34418e-58
-8.84487e-60
5.12605e-58
-3.66888e-60
2.80305e-58
-1.45435e-60
1.39426e-58
-5.6257e-61
6.48145e-59
-2.1548e-61
2.88947e-59
-8.16984e-62
1.25861e-59
-3.01863e-62
5.37296e-60
-1.07649e-62
2.21829e-60
-3.71447e-63
8.78441e-61
-1.25336e-63
3.34778e-61
-4.15843e-64
1.24181e-61
-1.35775e-64
4.51019e-62
-4.36053e-65
1.60604e-62
-1.37872e-65
5.60786e-63
-4.30256e-66
1.92247e-63
-1.3297e-66
6.48804e-64
-4.07392e-67
2.16366e-64
-1.23346e-67
7.14312e-65
-3.67454e-68
2.3288e-65
-1.07588e-68
7.46431e-66
-3.10626e-69
2.34895e-66
-8.85544e-70
7.28162e-67
-2.49185e-70
2.22624e-67
-6.9265e-71
6.70832e-68
-1.90564e-71
1.99387e-68
-5.18955e-72
5.85924e-69
-1.39397e-72
1.70308e-69
-3.68568e-73
4.87823e-70
-9.62712e-74
1.37323e-70
-2.48719e-74
3.81021e-71
-6.34188e-75
1.04252e-71
-1.59555e-75
2.80444e-72
-3.97357e-76
7.40591e-73
-9.83824e-77
1.92276e-73
-2.42576e-77
4.9207e-74
-5.95873e-78
1.24159e-74
-1.4622e-78
3.08495e-75
-3.60824e-79
7.5474e-76
-9.0418e-80
1.82275e-76
-2.32368e-80
4.37086e-77
-6.15736e-81
1.04869e-77
-1.68878e-81
2.52944e-78
-4.84247e-82
6.15224e-79
-1.4814e-82
1.5228e-79
-4.96233e-83
3.92122e-80
-1.85878e-83
1.08598e-80
-8.058e-84
3.34873e-81
-4.44365e-84
1.21573e-81
-4.05752e-84
5.93062e-82
-2.15245e-83
5.47012e-82
4.17696e-81
-1.13858e-20
5.35674e-21
-3.58578e-19
1.27431e-18
-1.10831e-19
4.32847e-17
-7.74012e-20
2.94797e-17
-8.45696e-20
4.03258e-17
2.46261e-21
8.43968e-17
1.05604e-19
6.20195e-17
1.80385e-19
5.5259e-17
1.18878e-19
2.60786e-17
6.04248e-20
1.06881e-17
2.22176e-20
3.39405e-18
6.83564e-21
9.45566e-19
1.69824e-21
2.17484e-19
4.22367e-22
5.09275e-20
8.40649e-23
9.54587e-21
1.21246e-23
1.3283e-21
2.27823e-24
2.41729e-22
3.73853e-25
3.83819e-23
4.27224e-26
4.28479e-24
6.03302e-27
5.89465e-25
7.14784e-28
6.85259e-26
7.28734e-29
6.84768e-27
8.46669e-30
7.89793e-28
8.31241e-31
7.78729e-29
7.65785e-32
7.08624e-30
5.22781e-33
4.71582e-31
2.38348e-34
2.06758e-32
1.8424e-35
1.52197e-33
1.24829e-34
9.84266e-33
1.12907e-33
8.64727e-32
8.24575e-33
6.16593e-31
4.80729e-32
3.40586e-30
2.77726e-31
1.74653e-29
1.48735e-30
7.58021e-29
7.7542e-30
2.80796e-28
3.78569e-29
7.46015e-28
1.82591e-28
3.88268e-28
8.14075e-28
-1.26991e-27
3.47779e-27
-1.1426e-26
1.27973e-26
-6.47476e-26
4.19048e-26
-2.87e-25
1.37967e-25
-1.20188e-24
4.3718e-25
-4.3698e-24
1.28959e-24
-1.4505e-23
3.56897e-24
-4.33871e-23
8.93612e-24
-1.17739e-22
2.19326e-23
-3.21557e-22
5.26727e-23
-8.06996e-22
1.09265e-22
-1.91879e-21
2.24112e-22
-4.65174e-21
4.56336e-22
-1.03061e-20
8.70217e-22
-2.2863e-20
1.70514e-21
-5.06116e-20
3.20269e-21
-1.13495e-19
6.83394e-21
-2.88652e-19
8.97139e-21
-3.84574e-19
1.01653e-20
-7.47203e-19
1.84764e-20
-1.43772e-18
2.5572e-20
-2.41329e-18
2.78867e-20
-4.71415e-18
1.99176e-20
-7.77088e-18
-5.18759e-20
-1.5611e-17
-1.87873e-19
-2.56146e-17
-7.04329e-19
-4.73485e-17
-1.74411e-18
-8.67765e-17
-5.15111e-18
-1.15115e-16
-1.83582e-17
-1.92475e-16
-5.91323e-17
-3.03472e-16
-1.15168e-16
-4.38635e-16
-2.56122e-16
-3.00517e-15
-4.37643e-16
-6.96425e-15
-6.30077e-16
-1.07629e-14
-7.75744e-16
-9.74615e-15
-9.26708e-16
-4.88213e-15
-9.25115e-16
3.42954e-15
-8.26074e-16
1.28835e-14
-6.02932e-16
1.74721e-14
-3.2487e-16
1.94131e-14
-8.07747e-17
1.81975e-14
8.30921e-17
1.5246e-14
1.44352e-16
1.17326e-14
1.19788e-16
7.66089e-15
6.31934e-17
3.96907e-15
2.91551e-17
2.01945e-15
3.0115e-17
2.11603e-15
2.02588e-17
1.37963e-15
1.31917e-17
8.90449e-16
8.12356e-18
5.51769e-16
5.07556e-18
3.49165e-16
3.34045e-18
2.33934e-16
1.92933e-18
1.38909e-16
1.22927e-18
9.12728e-17
6.63681e-19
5.10563e-17
3.86041e-19
3.03661e-17
2.06819e-19
1.66624e-17
1.33009e-19
1.08054e-17
7.95956e-20
6.50337e-18
4.34988e-20
3.50155e-18
2.86437e-20
2.23364e-18
1.9079e-20
1.41955e-18
1.35962e-20
9.25954e-19
9.58866e-21
5.86552e-19
7.61519e-21
3.87075e-19
6.0069e-21
2.37454e-19
5.50349e-21
1.3674e-19
4.724e-21
4.15103e-20
4.6364e-21
-4.68599e-21
4.2896e-21
-1.26863e-20
4.80922e-21
-2.41839e-20
4.74022e-21
-3.22012e-20
5.48008e-21
-4.77434e-20
5.94972e-21
-5.9648e-20
6.18787e-21
-7.31836e-20
7.16484e-21
-9.30702e-20
8.26411e-21
-1.18893e-19
9.29137e-21
-1.48055e-19
1.07637e-20
-1.84778e-19
1.264e-20
-2.3502e-19
1.35143e-20
-2.75624e-19
1.62969e-20
-3.54485e-19
1.85276e-20
-4.58798e-19
2.06647e-20
-5.39851e-19
2.30274e-20
-6.85101e-19
3.1027e-20
-9.87567e-19
3.22868e-20
-1.18072e-18
3.53881e-20
-1.45079e-18
3.95244e-20
-1.8719e-18
4.23133e-20
-2.43252e-18
5.4991e-20
-3.60468e-18
5.744e-20
-4.83223e-18
5.51632e-20
-6.08674e-18
4.2178e-20
-8.16032e-18
2.15407e-20
-1.07691e-17
-2.38642e-20
-1.42232e-17
-1.03821e-19
-1.84797e-17
-2.31231e-19
-2.17143e-17
-4.32817e-19
-2.73234e-17
-6.43126e-19
-3.43842e-17
-9.31978e-19
-3.74821e-17
-1.3449e-18
-4.1181e-17
-1.63018e-18
-4.67338e-17
-1.95663e-18
-4.44321e-17
-2.03221e-18
-4.11788e-17
-1.90195e-18
-3.03215e-17
-1.91564e-18
-1.48175e-17
-1.74354e-18
-7.36497e-19
-1.59526e-18
2.56586e-17
-1.24454e-18
5.04678e-17
-9.73672e-19
6.40835e-17
-5.88376e-19
7.6343e-17
-2.95264e-19
7.16485e-17
-7.25526e-20
6.3968e-17
4.35906e-20
4.66333e-17
8.46734e-20
3.09718e-17
8.05318e-20
1.9516e-17
5.52103e-20
1.05341e-17
3.1672e-20
5.12363e-18
1.66169e-20
2.39509e-18
7.67294e-21
1.00724e-18
3.1617e-21
3.91594e-19
1.21681e-21
1.46084e-19
4.52645e-22
5.29799e-20
1.56509e-22
1.78027e-20
5.62392e-23
6.29798e-21
2.04065e-23
2.28341e-21
6.88075e-24
7.72876e-22
2.28723e-24
2.54986e-22
8.60853e-25
9.31208e-23
2.39883e-25
2.45713e-23
7.09793e-26
6.82135e-24
2.32166e-26
2.09474e-24
8.35665e-27
6.99343e-25
4.47486e-27
3.379e-25
2.28972e-27
1.49092e-25
1.13183e-27
5.97831e-26
5.9825e-28
2.30482e-26
3.46737e-28
7.91379e-27
2.93729e-28
1.75323e-27
2.71866e-28
-2.25301e-28
2.58672e-28
-5.41923e-28
2.61562e-28
-9.11858e-28
2.30855e-28
-1.14344e-27
1.87331e-28
-1.23756e-27
1.6756e-28
-1.41412e-27
1.53093e-28
-1.63086e-27
1.45237e-28
-1.90882e-27
1.34485e-28
-2.13134e-27
1.27618e-28
-2.47005e-27
1.15388e-28
-2.71401e-27
8.94354e-29
-2.63149e-27
7.11385e-29
-2.67996e-27
5.69468e-29
-2.99621e-27
3.56265e-29
-2.97082e-27
1.81764e-29
-3.66773e-27
-9.54971e-30
-3.84393e-27
-3.76888e-29
-4.09153e-27
-6.94059e-29
-4.04299e-27
-9.08812e-29
-4.20837e-27
-1.26034e-28
-3.93616e-27
-1.44845e-28
-4.25225e-27
-1.8678e-28
-4.02138e-27
-1.98726e-28
-4.3208e-27
-2.24465e-28
-3.93487e-27
-2.18767e-28
-3.84386e-27
-2.26103e-28
-3.29749e-27
-2.32146e-28
-2.98181e-27
-2.27296e-28
-2.6759e-27
-2.38611e-28
-2.26611e-27
-2.49069e-28
-2.06101e-27
-2.39974e-28
-1.8391e-27
-2.02596e-28
-1.48916e-27
-1.7998e-28
-1.03911e-27
-1.66954e-28
-7.26153e-28
-1.43143e-28
-4.95324e-28
-1.38653e-28
-2.75407e-28
-1.25893e-28
-1.18196e-28
-1.10974e-28
4.73638e-28
-8.27488e-29
2.34885e-27
-5.73162e-29
3.31579e-27
-4.09875e-29
3.49471e-27
-2.80143e-29
3.46363e-27
-1.64699e-29
3.13935e-27
-9.73465e-30
2.40299e-27
-5.05819e-30
1.8285e-27
-2.42054e-30
1.23246e-27
-1.02443e-30
7.74957e-28
-3.95362e-31
4.43279e-28
-1.40845e-31
2.419e-28
-3.56838e-32
1.33455e-28
-3.7314e-33
6.46714e-29
8.23553e-33
3.27143e-29
8.02513e-33
1.44162e-29
4.9312e-33
6.15451e-30
2.44087e-33
2.46112e-30
1.06475e-33
9.2211e-31
4.46634e-34
3.37626e-31
1.65412e-34
1.06151e-31
6.7356e-35
3.48461e-32
2.4647e-35
9.78858e-33
8.08367e-36
2.45755e-33
2.3379e-36
5.76026e-34
5.61486e-37
1.23174e-34
1.15293e-37
2.43304e-35
2.27241e-38
4.78795e-36
4.23967e-39
8.99634e-37
7.82696e-40
1.66377e-37
1.33974e-40
2.82792e-38
2.31143e-41
4.80335e-39
3.64453e-42
7.40782e-40
5.7186e-43
1.13137e-40
8.42616e-44
1.61728e-41
1.17919e-44
2.19087e-42
1.5486e-45
2.77958e-43
1.97354e-46
3.41671e-44
2.4366e-47
4.06372e-45
2.95618e-48
4.73719e-46
3.4919e-49
5.36608e-47
4.14756e-50
6.08799e-48
5.01152e-51
6.98807e-49
6.08206e-52
8.0103e-50
7.67828e-53
9.48483e-51
1.02253e-53
1.17362e-51
1.51735e-54
1.60127e-52
2.53524e-55
2.43377e-53
5.1488e-56
4.43695e-54
1.26753e-56
9.65378e-55
4.00999e-57
2.65394e-55
1.56718e-57
8.76325e-56
7.73953e-58
3.53922e-56
4.73651e-58
1.60921e-56
3.23028e-58
6.7179e-57
2.58717e-58
1.2301e-57
2.13882e-58
-5.17894e-60
1.83048e-58
-1.22453e-59
1.45974e-58
-1.89805e-59
1.13296e-58
-2.66732e-59
7.62098e-59
-3.37688e-59
3.84274e-59
-4.26889e-59
-5.15097e-60
-5.0428e-59
-5.77569e-59
-6.00198e-59
-1.11104e-58
-6.87633e-59
-1.61752e-58
-7.60239e-59
-2.00742e-58
-8.17439e-59
-2.31164e-58
-8.25902e-59
-2.42963e-58
-8.17836e-59
-2.32606e-58
-7.61034e-59
-2.16987e-58
-6.50112e-59
-1.96164e-58
-5.42196e-59
-1.67671e-58
-4.37668e-59
-1.38547e-58
-3.33662e-59
-1.07186e-58
-2.46805e-59
-7.51019e-59
-1.71004e-59
-4.80303e-59
-1.06875e-59
-2.93682e-59
-6.03039e-60
-1.78063e-59
-3.17991e-60
-1.10486e-59
-1.61698e-60
-6.63797e-60
-8.21404e-61
-3.82034e-60
-3.89503e-61
-2.06707e-60
-1.68838e-61
-1.04689e-60
-6.36742e-62
-5.16156e-61
-1.90607e-62
-2.51138e-61
-3.38364e-63
-1.25511e-61
1.31126e-60
-6.32203e-62
1.85327e-60
-3.10222e-62
1.52439e-60
-1.43483e-62
1.03874e-60
-6.15734e-63
6.18409e-61
-2.46899e-63
3.26909e-61
-9.44143e-64
1.56767e-61
-3.51695e-64
7.01206e-62
-1.29499e-64
3.00272e-62
-4.71329e-65
1.25415e-62
-1.66856e-65
5.12588e-63
-5.68594e-66
2.02198e-63
-1.86956e-66
7.62851e-64
-5.99851e-67
2.76171e-64
-1.88901e-67
9.70918e-65
-5.84377e-68
3.33572e-65
-1.7752e-68
1.1215e-65
-5.30159e-69
3.69069e-66
-1.56095e-69
1.19065e-66
-4.54754e-70
3.77685e-67
-1.31267e-70
1.18278e-67
-3.74287e-71
3.66461e-68
-1.04918e-71
1.12065e-68
-2.88706e-72
3.36618e-69
-7.8262e-73
9.91511e-70
-2.09304e-73
2.8742e-70
-5.51955e-74
8.21092e-71
-1.43628e-74
2.30986e-71
-3.69593e-75
6.40376e-72
-9.40785e-76
1.75412e-72
-2.36026e-76
4.75078e-73
-5.82324e-77
1.2674e-73
-1.41826e-77
3.32136e-74
-3.41375e-78
8.57778e-75
-8.10034e-79
2.18446e-75
-1.89368e-79
5.46813e-76
-4.37441e-80
1.34319e-76
-1.00262e-80
3.24233e-77
-2.28341e-81
7.71134e-78
-5.16881e-82
1.80712e-78
-1.16621e-82
4.16729e-79
-2.64091e-83
9.45629e-80
-6.06523e-84
2.11718e-80
-1.42829e-84
4.70553e-81
-3.4719e-85
1.04661e-81
-8.75694e-86
2.34195e-82
-2.31826e-86
5.29182e-83
-6.58315e-87
1.21969e-83
-2.06066e-87
2.93539e-84
-7.26537e-88
7.63867e-85
-2.98311e-88
2.22852e-85
-1.55924e-88
7.71173e-86
-1.32679e-88
3.60288e-86
-6.11461e-88
3.16255e-86
2.2256e-85
-4.22304e-22
-1.69222e-20
-8.83354e-21
-9.6442e-21
-1.28808e-20
-3.97217e-21
4.98824e-21
1.27214e-20
9.37742e-21
5.04384e-21
1.8957e-21
5.88597e-22
1.444e-22
3.52062e-23
6.6646e-24
9.23916e-25
1.62033e-25
2.48413e-26
2.66277e-27
3.47662e-28
3.77611e-29
3.54025e-30
3.82313e-31
3.42467e-32
2.77729e-33
1.65205e-34
6.54927e-36
1.44775e-36
1.25794e-35
1.04576e-34
7.06206e-34
3.79571e-33
2.01116e-32
9.74206e-32
4.66508e-31
2.11614e-30
1.02746e-29
4.5782e-29
1.92879e-28
7.19044e-28
2.38484e-27
7.88719e-27
2.46819e-26
7.15032e-26
1.88635e-25
4.67302e-25
1.13894e-24
2.76791e-24
5.96896e-24
1.28011e-23
2.67039e-23
5.1283e-23
1.0458e-22
1.95149e-22
4.22334e-22
4.73296e-22
5.55925e-22
8.61661e-22
8.10627e-22
-1.07444e-22
-4.79818e-21
-1.75488e-20
-4.37676e-20
-1.13564e-19
-2.00487e-19
-3.7708e-19
-6.80954e-19
-1.16962e-18
-3.67003e-18
-1.12032e-17
-2.5366e-17
-3.97182e-17
-5.04566e-17
-5.83407e-17
-4.37052e-17
-1.83859e-17
1.62077e-17
5.43843e-17
8.08206e-17
8.78081e-17
7.57611e-17
5.49718e-17
3.57938e-17
2.28766e-17
1.54489e-17
9.31987e-18
5.44398e-18
2.9672e-18
1.64071e-18
9.59915e-19
4.83076e-19
2.71689e-19
1.29155e-19
6.66738e-20
3.14719e-20
1.78773e-20
9.27375e-21
4.34511e-21
2.45222e-21
1.38326e-21
8.27897e-22
4.85218e-22
3.32479e-22
2.33416e-22
1.88579e-22
1.52158e-22
1.45558e-22
1.33155e-22
1.49765e-22
1.4643e-22
1.71116e-22
1.83727e-22
1.91837e-22
2.22424e-22
2.57723e-22
2.94768e-22
3.45298e-22
4.11171e-22
4.52877e-22
5.57628e-22
6.56118e-22
7.51051e-22
8.72562e-22
1.22162e-21
1.35577e-21
1.59031e-21
1.88156e-21
2.15199e-21
2.87256e-21
3.0513e-21
3.05549e-21
2.46387e-21
9.70272e-22
-2.84474e-21
-8.86243e-21
-1.83258e-20
-3.24747e-20
-4.7076e-20
-6.81708e-20
-1.04377e-19
-1.34605e-19
-1.73595e-19
-1.63245e-19
-1.32238e-19
-1.25064e-19
-1.00082e-19
-7.61626e-20
-3.56193e-20
7.61637e-21
5.42263e-20
8.15592e-20
9.14435e-20
7.46498e-20
5.16997e-20
3.26548e-20
1.7468e-20
8.22469e-21
3.59811e-21
1.40505e-21
5.03151e-22
1.6989e-22
5.5079e-23
1.66007e-23
5.28273e-24
1.69941e-24
5.04801e-25
1.47538e-25
4.87378e-26
1.1843e-26
3.10309e-27
9.10014e-28
2.94452e-28
1.41744e-28
6.56762e-29
2.93162e-29
1.41009e-29
7.76083e-30
6.43315e-30
5.86957e-30
5.54564e-30
5.65394e-30
4.9801e-30
4.03719e-30
3.61689e-30
3.33774e-30
3.18819e-30
2.9399e-30
2.80864e-30
2.55167e-30
1.98543e-30
1.58535e-30
1.28746e-30
8.00131e-31
3.84761e-31
-2.53422e-31
-8.77169e-31
-1.58265e-30
-2.07858e-30
-2.93865e-30
-3.3889e-30
-4.38271e-30
-4.63566e-30
-5.26227e-30
-5.15657e-30
-5.33934e-30
-5.45957e-30
-5.29811e-30
-5.54225e-30
-5.76262e-30
-5.52747e-30
-4.64714e-30
-4.09747e-30
-3.75748e-30
-3.1954e-30
-3.07446e-30
-2.763e-30
-2.41368e-30
-1.75356e-30
-1.18137e-30
-8.1367e-31
-5.29044e-31
-2.93567e-31
-1.62288e-31
-7.66171e-32
-3.21335e-32
-1.10827e-32
-2.9476e-33
-2.48699e-34
9.02959e-34
8.79256e-34
6.0345e-34
3.15089e-34
1.4696e-34
6.12367e-35
2.3386e-35
8.66053e-36
2.80688e-36
9.84733e-37
3.08788e-37
8.7606e-38
2.22986e-38
4.79349e-39
8.87741e-40
1.5875e-40
2.68639e-41
4.50043e-42
6.97541e-43
1.08811e-43
1.54675e-44
2.18039e-45
2.87854e-46
3.5996e-47
4.231e-48
4.81081e-49
5.29888e-50
5.73671e-51
6.04675e-52
6.3819e-53
6.82467e-54
7.31344e-55
8.14588e-56
9.57215e-57
1.26117e-57
1.88169e-58
3.44782e-59
7.81545e-60
2.28155e-60
8.58333e-61
4.05044e-61
2.41961e-61
1.64458e-61
1.31267e-61
1.07715e-61
9.17459e-62
7.17548e-62
5.29249e-62
2.99613e-62
3.69379e-63
-2.94199e-62
-6.72469e-62
-1.06989e-61
-1.46095e-61
-1.76173e-61
-1.99961e-61
-2.09437e-61
-1.99265e-61
-1.84226e-61
-1.6501e-61
-1.3958e-61
-1.14452e-61
-8.73605e-62
-6.01857e-62
-3.79314e-62
-2.27806e-62
-1.35012e-62
-8.23407e-63
-4.8489e-63
-2.73444e-63
-1.45225e-63
-7.22914e-64
-3.55226e-64
-1.80015e-64
-8.43245e-65
-4.0615e-65
-1.91719e-65
-8.54511e-66
-3.53286e-66
-1.36309e-66
-5.01079e-67
-1.79235e-67
-6.32679e-68
-2.20364e-68
-7.44692e-69
-2.4141e-69
-7.52313e-70
-2.28043e-70
-6.76438e-71
-1.96515e-71
-5.58907e-72
-1.55829e-72
-4.27207e-73
-1.15606e-73
-3.0925e-74
-8.15204e-75
-2.10634e-75
-5.32391e-76
-1.32106e-76
-3.22259e-77
-7.72083e-78
-1.81729e-78
-4.20994e-79
-9.597e-80
-2.14315e-80
-4.67428e-81
-9.99037e-82
-2.09306e-82
-4.28227e-83
-8.54168e-84
-1.66532e-84
-3.1874e-85
-6.00339e-86
-1.11635e-86
-2.07251e-87
-3.93399e-88
-7.88904e-89
-1.71782e-89
-4.0919e-90
-1.05874e-90
-2.95476e-91
-8.9059e-92
-2.9278e-92
-1.06105e-92
-4.34952e-93
-2.1682e-93
-1.57577e-93
-3.34958e-93
)
;
boundaryField
{
inlet
{
type calculated;
value nonuniform List<scalar>
60
(
-0.000213279
-0.00021337
-0.000213551
-0.000213823
-0.000214186
-0.000214641
-0.000215186
-0.000215824
-0.000216554
-0.000217378
-0.000218294
-0.000219305
-0.000220411
-0.000221613
-0.000222911
-0.000224307
-0.000225801
-0.000227396
-0.000229091
-0.000230888
-0.000232789
-0.000234794
-0.000236906
-0.000239126
-0.000241456
-0.000243897
-0.000246451
-0.00024912
-0.000251907
-0.000254814
-0.000257842
-0.000260994
-0.000264273
-0.000267681
-0.000271221
-0.000274896
-0.000278708
-0.000282661
-0.000286759
-0.000291003
-0.000295399
-0.00029995
-0.000304659
-0.00030953
-0.000314568
-0.000230234
0
0
0
0
0
0
0
0
0
0
0
0
0
0
)
;
}
bottom
{
type calculated;
value uniform 0;
}
outlet
{
type calculated;
value nonuniform List<scalar>
60
(
7.39676e-08
7.39576e-08
7.39375e-08
7.39074e-08
7.38672e-08
7.38171e-08
7.37569e-08
7.36866e-08
7.36063e-08
7.3516e-08
7.34157e-08
7.33053e-08
7.31849e-08
7.30545e-08
7.29141e-08
7.27637e-08
7.26032e-08
7.24327e-08
7.22522e-08
7.20617e-08
7.18612e-08
7.16507e-08
7.14302e-08
7.11997e-08
7.09592e-08
7.07087e-08
7.04483e-08
7.01778e-08
6.98974e-08
6.9607e-08
6.93066e-08
6.89963e-08
6.8676e-08
6.83457e-08
6.80054e-08
6.76552e-08
6.7295e-08
6.69248e-08
6.65447e-08
6.61546e-08
9.66446e-11
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
)
;
}
atmosphere
{
type calculated;
value nonuniform List<scalar>
357
(
3.65891e-22
1.11569e-19
4.51807e-18
4.01773e-18
6.86572e-18
1.45767e-17
1.06767e-17
9.94149e-18
4.74288e-18
1.95424e-18
6.14337e-19
1.68185e-19
3.7519e-20
8.49925e-21
1.50607e-21
2.00911e-22
3.40055e-23
5.02367e-24
5.25569e-25
6.69605e-26
7.12919e-27
6.55358e-28
7.00448e-29
6.26613e-30
4.99375e-31
2.88144e-32
1.09692e-33
2.31702e-34
1.93321e-33
1.55838e-32
1.01217e-31
5.03419e-31
2.31468e-30
8.93064e-30
2.96847e-29
7.32186e-29
3.58847e-29
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.6245e-15
5.78124e-15
9.13299e-15
1.10435e-14
1.11446e-14
9.73755e-15
7.46928e-15
5.01805e-15
3.10773e-15
1.95369e-15
1.34647e-15
8.52167e-16
5.31754e-16
3.13542e-16
1.88994e-16
1.21281e-16
6.74918e-17
4.18624e-17
2.17294e-17
1.20715e-17
6.11347e-18
3.66882e-18
1.99928e-18
9.63757e-19
5.50488e-19
3.10338e-19
1.78888e-19
9.98089e-20
5.85003e-20
3.21484e-20
1.70932e-20
4.93392e-21
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.20658e-17
2.36621e-17
2.93787e-17
3.39937e-17
3.06035e-17
2.56883e-17
1.76458e-17
1.10634e-17
6.53582e-18
3.33489e-18
1.5325e-18
6.744e-19
2.68917e-19
1.00015e-19
3.56306e-20
1.22124e-20
3.83808e-21
1.26589e-21
4.24e-22
1.31272e-22
3.94061e-23
1.30751e-23
3.13255e-24
7.9686e-25
2.25783e-25
6.95403e-26
3.09399e-26
1.26511e-26
4.67588e-27
1.67689e-27
5.4932e-28
1.18645e-28
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
3.18959e-29
1.59058e-28
2.22121e-28
2.31639e-28
2.25612e-28
1.99739e-28
1.49607e-28
1.11552e-28
7.30921e-29
4.45013e-29
2.45068e-29
1.29155e-29
6.8177e-30
3.15742e-30
1.53366e-30
6.43741e-31
2.60353e-31
9.85326e-32
3.48784e-32
1.20065e-32
3.53294e-33
1.07837e-33
2.80697e-34
6.50287e-35
1.39973e-35
2.73668e-36
4.91837e-37
8.813e-38
1.50649e-38
2.53753e-39
3.92197e-40
6.0543e-41
8.46224e-42
1.16773e-42
1.50356e-43
1.8301e-44
2.08923e-45
2.30249e-46
2.45466e-47
2.5649e-48
2.60414e-49
2.63781e-50
2.69274e-51
2.7367e-52
2.87274e-53
3.15285e-54
3.83651e-55
5.23303e-56
8.66674e-57
1.73527e-57
4.47264e-58
1.40617e-58
5.51047e-59
2.46382e-59
1.02134e-59
1.89972e-60
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1.70568e-63
2.34987e-63
1.87784e-63
1.24262e-63
7.17405e-64
3.66871e-64
1.69733e-64
7.31146e-65
3.01069e-65
1.20713e-65
4.72912e-66
1.78461e-66
6.42338e-67
2.21207e-67
7.38075e-68
2.40177e-68
7.63325e-69
2.37008e-69
7.20247e-70
2.14936e-70
6.32622e-71
1.84094e-71
5.2847e-72
1.4888e-72
4.10795e-73
1.11446e-73
2.97734e-74
7.82572e-75
2.02518e-75
5.17426e-76
1.30644e-76
3.2474e-77
7.92486e-78
1.90554e-78
4.51792e-79
1.05271e-79
2.40633e-80
5.40349e-81
1.19503e-81
2.60276e-82
5.57457e-83
1.17413e-83
2.43883e-84
5.0276e-85
1.0374e-85
2.15504e-86
4.52692e-87
9.72273e-88
2.18851e-88
5.35499e-89
1.47908e-89
4.88164e-90
2.18514e-90
1.82571e-90
1.18518e-89
)
;
}
frontBack
{
type empty;
value nonuniform 0();
}
}
// ************************************************************************* //
| [
"[email protected]"
] | ||
64a369c649f75da4f7b8b3caaa6af5e155321c8f | e8ac7fe2baab7c77e31a1c857d56b747a450e753 | /socket_message_client/socket_message_sdk/SocketControl.cpp | 5cd76458f19c1035c77af052c555e189739b77ad | [] | no_license | ifengbaobao/socket_message | 295cf326c0535b9049339c6bb3e3209f988081a1 | 74def7ff44c8930c259e1516efa95c6af61693c8 | refs/heads/main | 2023-07-25T14:20:36.373787 | 2021-08-29T14:31:04 | 2021-08-29T14:31:04 | 401,054,490 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,863 | cpp | #include "SocketControl.h"
#include "SocketMessageSdkConfig.h"
#include "SocketHead.h"
SocketControl::SocketControl()
:m_SocketConnectTimeout(CONFIG_SOCKET_CONNECT_TIMEOUT)
, m_SocketSelectTimeout(CONFIG_SOCKET_SELECT_TIMEOUT)
, m_IsNonBlock(true)
{
m_Select.SetTimeout(m_SocketSelectTimeout);
m_Select.SetSocketCloseCallback([this](std::shared_ptr<ClientSocket> sp) {
if (m_SocketClostCallback)
{
m_SocketClostCallback(sp->GetFd());
}
});
}
SocketControl::~SocketControl()
{
}
bool SocketControl::ConnectServerSocket(const char * ip, unsigned short port,SOCKET & newFd)
{
ClientSocket * cs = new ClientSocket();
cs->SetNonBlock(m_IsNonBlock);
if (!cs->Connect(ip, port, m_SocketConnectTimeout))
{
delete cs;
newFd = INVALID_SOCKET;
return false;
}
cs->SetReadDataCallback(std::bind(&SocketControl::ClientReadPackageCallback, this,std::placeholders::_1, std::placeholders::_2, std::placeholders::_3));
cs->SetWriteDataCallback([](ClientSocket*cs, bool hasData) {
cs->GetCfdIsWrite() = hasData;
});
m_Select.Add(cs->GetFd(), std::shared_ptr<ClientSocket>(cs));
m_Select.Start();
newFd = cs->GetFd();
return true;
}
bool SocketControl::SendPackage(SOCKET fd, char * data, int size)
{
std::shared_ptr<ClientSocket> sp = m_Select.GetClientSocket(fd);
if (!sp)
{
return false;
}
int emptySize = sp->GetSize4EmptyWrite();
if (emptySize < size + SocketHead::SocketHeadSize)
{
return false;
}
int sendDataCount = SocketHead::SocketHeadSize + size;
SocketHead head = {};
head.PackageCount = size;
char * sendData = new char[sendDataCount];
head.Serialize(sendData);
memcpy(sendData + SocketHead::SocketHeadSize, data, size);
bool ret = true;
do
{
if (ClientSocket::SOCKET_CLOSE == sp->Write(sendData, sendDataCount))
{
m_Select.Remove(fd);
ret = false;
break;
}
} while (false);
delete[] sendData;
//添加socket的头。
return ret;
}
void SocketControl::SetReadPackageCallback(std::function<void(SOCKET, std::unique_ptr<char[]>&, int)> callback)
{
m_ReadPackageCallback = callback;
}
void SocketControl::SetSocketCloseCallback(std::function<void(SOCKET)> callback)
{
m_SocketClostCallback = callback;
}
int SocketControl::ClientReadPackageCallback(ClientSocket * cs, char * data, int size)
{
int offset = 0;
SocketHead head;
while (size > SocketHead::SocketHeadSize + offset) {
head.UnSerialize(data + offset);
int packageCount = head.PackageCount;
if (size < offset + SocketHead::SocketHeadSize + packageCount)
{
break;
}
char * package = new char[packageCount];
memcpy(package, data + SocketHead::SocketHeadSize + offset, packageCount);
std::unique_ptr<char[]> up(package);
if (m_ReadPackageCallback)
{
m_ReadPackageCallback(cs->GetFd(), up, packageCount);
}
offset += (SocketHead::SocketHeadSize + packageCount);
};
return offset;
}
| [
"[email protected]"
] | |
4fb953cd476e77d25f661643e7d1130d3a75f040 | fa59cfedc5f57e881679fb0b5046da8c911229ca | /1219 오민식의 고민.cpp | 4878d18138eca61f8aa5998a2a1dbd79b9cd8a49 | [] | no_license | ju214425/algorithm | e2862df2c55490b97aefffaec99bb449a9db7e1f | db6d96eda3272a7faddaf11fdd02534d6231eafc | refs/heads/master | 2023-07-02T21:32:53.718629 | 2023-06-25T06:04:57 | 2023-06-25T06:04:57 | 193,701,850 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,486 | cpp | #include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#define INF 0x6fffffffffffffff
using namespace std;
typedef long long ll;
struct Edge {
int src, dst; ll cost;
bool operator > (const Edge &a) const {return cost > a.cost;} // for MIN_HEAP
Edge operator + (const Edge &a) const {return {src, a.dst, cost+a.cost};} // for Edge NEW
};
struct Graph {
int V;
vector<vector<unsigned long>> adj;
vector<Edge> edges;
Graph(int size) {
V = size;
adj.resize(size);
}
void push(Edge e) {
adj[e.src].push_back(edges.size());
edges.push_back(e);
}
};
struct SPFA: Graph {
vector<ll> dist;
vector<bool> called;
SPFA(int size): Graph(size),dist(size, INF){}
vector<ll> shortest_path(int s) {
vector<ll> dist = this->dist;
vector<int> cnt(V, 0);
vector<bool> inq(V, 0);
queue<int> q;
dist[s] = 0;
q.push(s);
inq[s] = 1;
while (!q.empty()) {
int src = q.front();
q.pop();
inq[src] = 0;
for (auto idx: adj[src]) {
auto e = edges[idx];
int dst = e.dst;
ll cost = e.cost;
if (cnt[dst] == V) {
// negative cycle!
dist[dst] = -INF;
} else if (dist[dst] > dist[src] + cost) {
dist[dst] = dist[src] + cost;
if (!inq[dst]) {
cnt[dst]++;
q.push(dst);
inq[dst] = 1;
}
}
}
}
this->dist = dist;
called.resize(V);
for (int i = 0; i < V; ++i) {
if (dist[i] == -INF)
dfs(i);
}
return this->dist;
}
void dfs(int s) {
if (called[s]) return;
called[s] = 1;
dist[s] = -INF;
for (auto idx: adj[s])
dfs(edges[idx].dst);
}
};
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n, s, t, m;
int begin, end, price;
cin >> n >> s >> t >> m;
SPFA g(n);
for(int i = 0 ; i < m ; i++){
cin >> begin >> end >> price;
g.push({begin, end, price});
}
vector<ll> v(n);
for(int i = 0 ; i < n ; i++){
cin >> v[i];
}
vector<ll> dist = g.shortest_path(s);
if(dist[t] == INF) cout << "gg\n";
else if(dist[t] == -INF) cout << "Gee\n";
} | [
"[email protected]"
] | |
dbc15648681306908d43533839ada8849801e147 | 529bb02b6e6d975b167494f4bc380d5d18ea81de | /include/Hungarian2.h | baff15f3e629de96ebd72addfe8066c126a3ec4c | [
"MIT"
] | permissive | niekai1982/MultiCamer-tx2 | a3487e2f28713d39783e036139ad75fed0dc5ffc | accae48e081f9fc55df64273c4c1285572283fdf | refs/heads/master | 2020-04-13T07:11:34.235696 | 2018-12-25T03:55:09 | 2018-12-25T03:55:09 | 163,043,482 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,125 | h | ///////////////////////////////////////////////////////////////////////////////
// Hungarian.h: Header file for Class HungarianAlgorithm.
//
// This is a C++ wrapper with slight modification of a hungarian algorithm implementation by Markus Buehren.
// The original implementation is a few mex-functions for use in MATLAB, found here:
// http://www.mathworks.com/matlabcentral/fileexchange/6543-functions-for-the-rectangular-assignment-problem
//
// Both this code and the orignal code are published under the BSD license.
// by Cong Ma, 2016
//
#pragma once
#include <iostream>
#include <vector>
#include<math.h>
#include<float.h>
using namespace std;
class HungarianAlgorithm
{
public:
HungarianAlgorithm();
~HungarianAlgorithm();
double Solve(vector<vector<double>>& DistMatrix, vector<int>& Assignment);
private:
void assignmentoptimal(int *assignment, double *cost, double *distMatrix, int nOfRows, int nOfColumns);
void buildassignmentvector(int *assignment, bool *starMatrix, int nOfRows, int nOfColumns);
void computeassignmentcost(int *assignment, double *cost, double *distMatrix, int nOfRows);
void step2a(int *assignment, double *distMatrix, bool *starMatrix, bool *newStarMatrix, bool *primeMatrix, bool *coveredColumns, bool *coveredRows, int nOfRows, int nOfColumns, int minDim);
void step2b(int *assignment, double *distMatrix, bool *starMatrix, bool *newStarMatrix, bool *primeMatrix, bool *coveredColumns, bool *coveredRows, int nOfRows, int nOfColumns, int minDim);
void step3(int *assignment, double *distMatrix, bool *starMatrix, bool *newStarMatrix, bool *primeMatrix, bool *coveredColumns, bool *coveredRows, int nOfRows, int nOfColumns, int minDim);
void step4(int *assignment, double *distMatrix, bool *starMatrix, bool *newStarMatrix, bool *primeMatrix, bool *coveredColumns, bool *coveredRows, int nOfRows, int nOfColumns, int minDim, int row, int col);
void step5(int *assignment, double *distMatrix, bool *starMatrix, bool *newStarMatrix, bool *primeMatrix, bool *coveredColumns, bool *coveredRows, int nOfRows, int nOfColumns, int minDim);
};
| [
"[email protected]"
] | |
ec68ba4e8ca820b2d1494af18d5af9790780fb53 | 37b096fb00605517206051db89335fffed8883d2 | /src/spoj/spoj54.cpp | 95a63017bacdad07bf3187be58d403b2190dd2e0 | [] | no_license | tirupatihemanth/codewars | e337a6c44a712b600c9d06c8ca68a4e9cd5ede4a | 5ba33e500fc15867cdb33052f404096aec9f4a18 | refs/heads/master | 2020-04-06T19:33:08.635368 | 2015-08-03T02:56:53 | 2015-08-03T02:56:53 | 35,532,013 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,170 | cpp | #include <iostream>
#include <string>
#include <algorithm>
#define all(c) c.begin(), c.end()
using namespace std;
string add(string &str1, string &str2){
string s1 = str1, s2 = str2;
reverse(all(s1));
reverse(all(s2));
string add_ans;
if(s1.size() < s2.size()){
add_ans = s1;
s1 = s2;
s2 = add_ans;
add_ans = "";
}
int i=0;
short temp=0;
for(i= 0;i< s2.size();i++){
temp+= s2.at(i) + s1.at(i) - 2*'0';
if(temp>=10){
add_ans+= (temp%10) +'0';
temp = temp/10;
}
else{
add_ans+=temp+'0';
temp=0;
}
}
while(i<s1.size()){
temp+= s1.at(i)-'0';
if(temp>=10){
add_ans+= (temp%10) +'0';
temp = temp/10;
}
else{
add_ans+= temp+'0';
temp=0;
}
i++;
}
if(temp!=0){
add_ans+= temp+'0';
}
reverse(all(add_ans));
reverse(all(s1));
return add_ans;
}
// This function for calulating difference of bigIntegers assume that str1 > str2 which in this case is always true
string substract(string &str1, string &str2){
reverse(str1.begin(), str1.end());
reverse(str2.begin(), str2.end());
string ans;
int i,temp, carry=0;
for(i=0;i<str2.size();i++){
if(str1.at(i) >= (str2.at(i)+carry)){
ans+='0'+(str1.at(i)-str2.at(i)-carry);
carry = 0;
}
else{
temp = str1.at(i)-'0'+10;
ans+= '0'+temp - (str2.at(i) - '0')-carry;
carry = 1;
}
}
while(i<str1.size()){
if(str1.at(i)>=carry+'0'){
ans+=str1.at(i)-carry;
carry = 0;
}
else{
temp = str1.at(i)-'0'+10;
ans+=temp - carry+'0';
carry = 1;
}
i++;
}
i=ans.size()-1;
carry=0;
while(ans.at(i)=='0' && i>0){
carry++;
i--;
}
ans.erase(ans.size()-carry, carry);
reverse(ans.begin(), ans.end());
reverse(all(str2));
return ans;
}
//function to divide big integers by 2
string divideBy2(string &str){
string ans;
int i, carry=0;
for(i=0;i<str.size();i++){
if((carry*10+str.at(i)-'0')%2 == 0){
ans+= '0'+(carry*10 + str.at(i)-'0')/2;
carry=0;
}
else{
ans+= '0' + (carry*10+str.at(i)-'0')/2;
carry = 1;
}
}
i=0;
carry=0;
while(i<ans.size()-1 && ans.at(i) =='0'){
carry++;
i++;
}
ans.erase(0, carry);
return ans;
}
int main(){
int T=10;
string totalStr, leadStr;
string ans;
while(T--){
cin >> totalStr >> leadStr;
//cout<<totalStr+" "+leadStr<<endl;
ans = substract(totalStr, leadStr);
//cout<<"ans: "+ans<<endl;
ans = divideBy2(ans);
cout<<add(ans, leadStr)<<"\n"<<ans<<"\n";
}
return 0;
}
| [
"[email protected]"
] | |
53d61e9c24e187bf23ecf21681eb598a8a1f046f | 6b73ea19b9633049eff8e777e9d0ee2bc002d475 | /save/src/texture.cpp | 2dbd1e57d488d8b9c0a75731786198b9d7794efe | [] | no_license | LucasMorlet/Subdiv | d65ad0b98d70b7734b94b9676590b8d1b9dc5ec7 | ba3248e0c5345c9c923c703792470cc932abf0ca | refs/heads/master | 2023-05-29T20:05:55.694013 | 2021-06-16T17:40:25 | 2021-06-16T17:40:25 | 252,677,239 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,171 | cpp | #include "texture.h"
Texture::Texture( QString nom, texture_type t )
{
// Création de l'objet texture
this->image = QGLWidget::convertToGLFormat( QImage(QString( nom )) );
this->type = t;
this->num = GL_TEXTURE0 + t;
/*
switch ( t )
{
case color_map : this->num = GL_TEXTURE0; break;
case displacement_map : this->num = GL_TEXTURE1; break;
case normal_map : this->num = GL_TEXTURE2; break;
case bump_map : this->num = GL_TEXTURE3; break;
default : this->num = GL_TEXTURE0; break;
}
*/
// Copie de la texture dans OpenGL
glEnable(GL_TEXTURE_2D);
glGenTextures( 1, &(this->id) );
glBindTexture( GL_TEXTURE_2D, this->id );
glTexImage2D( GL_TEXTURE_2D, 0, GL_RGBA, this->image.width(), this->image.height(), 0, GL_RGBA, GL_UNSIGNED_BYTE, this->image.bits() );
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); // comment on interprète l'inter-texel
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); // comment on interprète un groupe de texels
glDisable(GL_TEXTURE_2D);
}
| [
"[email protected]"
] | |
542af1f9b828fd5d5e69183e057e1361ba301754 | d0c44dd3da2ef8c0ff835982a437946cbf4d2940 | /cmake-build-debug/programs_tiling/function14366/function14366_schedule_14/function14366_schedule_14.cpp | e045006d33c754e8e1172bd72b21f5a75c8de14f | [] | no_license | IsraMekki/tiramisu_code_generator | 8b3f1d63cff62ba9f5242c019058d5a3119184a3 | 5a259d8e244af452e5301126683fa4320c2047a3 | refs/heads/master | 2020-04-29T17:27:57.987172 | 2019-04-23T16:50:32 | 2019-04-23T16:50:32 | 176,297,755 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,046 | cpp | #include <tiramisu/tiramisu.h>
using namespace tiramisu;
int main(int argc, char **argv){
tiramisu::init("function14366_schedule_14");
constant c0("c0", 1024), c1("c1", 512), c2("c2", 64);
var i0("i0", 0, c0), i1("i1", 0, c1), i2("i2", 0, c2), i100("i100", 1, c0 - 1), i101("i101", 1, c1 - 1), i102("i102", 1, c2 - 1), i01("i01"), i02("i02"), i03("i03"), i04("i04"), i05("i05"), i06("i06");
input input0("input0", {i0, i1, i2}, p_int32);
computation comp0("comp0", {i100, i101, i102}, (input0(i100, i101, i102) - input0(i100 + 1, i101, i102) - input0(i100 - 1, i101, i102)));
comp0.tile(i100, i101, i102, 32, 128, 32, i01, i02, i03, i04, i05, i06);
comp0.parallelize(i01);
buffer buf00("buf00", {1024, 512, 64}, p_int32, a_input);
buffer buf0("buf0", {1024, 512, 64}, p_int32, a_output);
input0.store_in(&buf00);
comp0.store_in(&buf0);
tiramisu::codegen({&buf00, &buf0}, "../data/programs/function14366/function14366_schedule_14/function14366_schedule_14.o");
return 0;
} | [
"[email protected]"
] | |
e25b3bcf907240f418ede79e11f02520cbc3dce5 | ee718572b4ab7c7bfea5207d0e6139b0c774d790 | /Aid Management Application (AMA)/AidApp.cpp | cca8a1d06d0c41d45a67ac635a5e26733db6608f | [] | no_license | wzafar1/Aid-Management-Application-AMA- | 0c41885d24c9ee5a6ad248270bcf85f617d3351b | c93506dfec3e90a0fe6abc2621ca5e42d1ff2836 | refs/heads/master | 2021-07-09T19:20:56.025654 | 2017-10-13T19:45:48 | 2017-10-13T19:45:48 | 106,866,659 | 0 | 0 | null | null | null | null | MacCentralEurope | C++ | false | false | 7,251 | cpp | // Final Project Milestone 6
// Version 1.0
// Date: 08/08/2017
// Author: Wahab Zafar
// Email: [email protected]
// Description:
// This project is to prepare an application that manages the
// list of goods needed to be shipped to the area. The application
// is able to keep track of the quantity of items needed, the
// quantity on hand, and store them in a file for future use.
// -----------------------------------------------------------
// Name Date Reason
/////////////////////////////////////////////////////////////////
#include<iostream>
#include<cstring>
#include"AidApp.h"
using namespace std;
namespace sict {
// Constructor
// Default constructor.
AidApp::AidApp(const char* filename) {
strcpy(filename_, filename);
product_[0] = nullptr;
noOfProducts_ = 0;
loadRecs();
}
// Queries
// Waits for the user to hit enter, others keys are ignored.
void AidApp::pause() const {
cout << endl;
cout << "Press Enter to continue...";
cin.get();
cin.clear();
cin.ignore(2000,'\n');
cout << endl;
}
// Display the products currently in Product* .
void AidApp::listProducts() const {
double total = 0;
cout << " Row | SKU | Product Name | Cost | QTY| Unit |Need| Expiry " << endl
<< "-----|--------|--------------------|-------|----|----------|----|----------" << endl;
for (int i = 0; i < noOfProducts_; i++) {
cout.fill(' ');
cout.width(4);
cout.setf(ios::right);
cout << i+1;
cout.unsetf(ios::right);
cout << " | " << *product_[i] << endl;
total += *product_[i];
if (i % 10 == 0 && i > 0) {
pause();
}
}
cout << "---------------------------------------------------------------------------" << endl;
cout << "Total cost of support: $";
cout.setf(ios::fixed);
cout.precision(2);
cout << total << endl;
}
// Loops through the product_ up to noOfProducts_ and display product if
// found else display not found.
int AidApp::SearchProducts(const char* sku)const {
int found = -1;
for (int i = 0; i < noOfProducts_; i++) {
if ((*product_[i]) == sku) {
found = i;
}
}
return found;
}
// Functions
// Displays the menu and waits for the user to select an option.
int AidApp::menu() {
int n = 0;
cout << "Disaster Aid Supply Management Program" << endl
<< "1- List products" << endl
<< "2- Display product" << endl
<< "3- Add non-perishable product" << endl
<< "4- Add perishable product" << endl
<< "5- Add to quantity of purchased products" << endl
<< "0- Exit program" << endl
<< "> ";
cin.clear();
cin >> n;
cout << endl;
if (cin.fail()) {
cin.clear();
cin.ignore();
n = -1;
}
return n < 6 ? n : -1;
}
// Opens the data file for reading, if not found create one.
void AidApp::loadRecs() {
int readIndex = 0;
datafile_.open(filename_, ios::in);
if (datafile_.fail()) {
datafile_.clear();
datafile_.close();
datafile_.open(filename_, ios::out);
}
else {
char c;
while (datafile_.good()) {
c = 'd';
datafile_ >> c;
datafile_.ignore(1);
if (c == 'N') {
product_[readIndex] = new AmaProduct();
product_[readIndex]->load(datafile_);
readIndex++;
}
else if (c == 'P') {
product_[readIndex] = new AmaPerishable();
product_[readIndex]->load(datafile_);
readIndex++;
}
}
}
noOfProducts_ = readIndex;
datafile_.close();
}
// Opens the data file for writing.
void AidApp::saveRecs() {
datafile_.open(filename_, ios::out);
if (!datafile_.fail()) {
for (int i = 0; i < noOfProducts_; i++) {
product_[i]->store(datafile_);
}
datafile_.close();
}
}
// Updates the quantity on hand for a Product.
void AidApp::addQty(const char* sku) {
int found;
int qty;
int rm;
found = SearchProducts(sku);
if (found != -1) {
product_[found]->write(cout, false);
cout << endl << endl;
cout << "Please enter the number of purchased items: ";
cin >> qty;
if (cin.fail()) {
cout << endl;
cout << "Invalid quantity value! " << endl << endl;
cin.clear();
cin.ignore(1);
}
else {
rm = product_[found]->qtyNeeded() - product_[found]->quantity();
if (qty <= rm) {
*product_[found] += qty;
}
else {
*product_[found] += rm;
cout << "Too many items; only " << rm << " is needed, please return the extra " << (qty - rm) << " items. " << endl;
}
saveRecs();
cout << endl;
cout << "Updated!" << endl << endl;
}
}
else {
cout << "Not found!" << endl;
}
}
// Create a Product and get the values from the user.
void AidApp::addProduct(bool isPerishable) {
if (isPerishable == true) {
product_[noOfProducts_] = new AmaPerishable();
}
else {
product_[noOfProducts_] = new AmaProduct();
}
cin >> *product_[noOfProducts_];
if (cin.fail()) {
product_[noOfProducts_]->write(cout, false);
}
else {
datafile_.open(filename_, ios::out | ios::app);
product_[noOfProducts_]->store(datafile_);
datafile_.close();
cout << endl;
cout << "Product added" << endl;
cout << endl;
}
}
// Display the menu, receive the userís selection, and do the action
// requested.
int AidApp::run() {
int selected;
int found;
char sku[MAX_SKU_LEN];
while ((selected = menu()) != 0) {
switch (selected)
{
case 1:
listProducts();
pause();
break;
case 2:
cout << "Please enter the SKU: ";
cin >> sku;
found = SearchProducts(sku);
cout << endl;
if (found == -1) {
cout << "Not found!" << endl << endl;
}
else {
product_[found]->write(cout, false);
cout << endl;
pause();
}
break;
case 3:
addProduct(false);
loadRecs();
break;
case 4:
addProduct(true);
loadRecs();
break;
case 5:
cout << "Please enter the SKU: ";
cin >> sku;
cout << endl;
addQty(sku);
break;
default:
cout << "===Invalid Selection, try again.===";
pause();
}
}
cout << "Goodbye!!" << endl;
return 0;
}
} | [
"[email protected]"
] | |
5c48f46f9bd52361d3c2f71a0c9bbbc6a0dce317 | 87464fd51294f061472244148aebce14e454f2a6 | /Practice/LeetCode/30DayChallenge/week_3/Day17.cpp | 6867b110ad8006477e36698846fc7a6cc29df8de | [] | no_license | msk4862/DS-Algo | 6fb348e4ae0f685f58b89f619ce4edc6690c3817 | 10e41a8ce1879fceee6f064c81192aa3e981d8d4 | refs/heads/master | 2021-08-02T23:31:44.813569 | 2021-07-24T11:18:51 | 2021-07-24T11:18:51 | 199,693,163 | 4 | 3 | null | 2020-10-07T19:28:55 | 2019-07-30T16:56:48 | C++ | UTF-8 | C++ | false | false | 957 | cpp | /*
Number of Islands
*/
class Solution {
public:
void traverseIsland(vector<vector<char>>& grid, int i, int j, int r, int c) {
if(i<0 or j<0 or i>=r or j>=c or grid[i][j]!='1')
return;
cout<<i<<j<<" ";
// mark travelled
grid[i][j] = '2';
traverseIsland(grid, i-1, j, r,c);
traverseIsland(grid, i, j-1,r,c);
traverseIsland(grid, i+1, j,r,c);
traverseIsland(grid, i, j+1,r,c);
}
int numIslands(vector<vector<char>>& grid) {
int nums = 0;
int r = grid.size();
if(r == 0) return 0;
int c = grid[0].size();
for(int i = 0; i < r; ++i) {
for(int j = 0; j < c; ++j) {
if(grid[i][j] == '1') {
nums++;
traverseIsland(grid, i, j, r, c);
}
}
}
return nums;
}
}; | [
"[email protected]"
] | |
8d61649ebcac1442ce48e8ec51eb639fb48633b0 | c1d172eb019c7a4783a0758d534402e2b82233fb | /src/wtl_control_examples/MiniPie/UrlDlg.h | 78cfeafd5ad53772e415e12ca49cc7bc9f6bff6e | [] | no_license | zhengfish/wtl-examples | e0218432e43900c0824dbadcaa0a9041043fc896 | 300d59bcb4421871e404d4932513c83f1f155538 | refs/heads/master | 2020-03-29T08:00:54.306880 | 2017-09-20T16:06:48 | 2017-09-20T16:06:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,699 | h | // UrlDlg.h : interface of the CUrlDlg class
//
/////////////////////////////////////////////////////////////////////////////
#pragma once
class CUrlDlg :
public CStdDialogResizeImpl<CUrlDlg>,
public CWinDataExchange<CUrlDlg>
{
public:
class CEditUrl : // a CEdit handling VK_RETURN and Edit commands
public CWindowImpl<CEditUrl, CEdit>, public CEditCommands<CEditUrl>
{
public:
DECLARE_WND_SUPERCLASS(L"MiniPie.EditUrl", CEdit::GetWndClassName())
BEGIN_MSG_MAP(CEditUrl)
MESSAGE_RANGE_HANDLER(WM_KEYFIRST, WM_KEYLAST, OnKey)
ALT_MSG_MAP(1)
CHAIN_MSG_MAP_ALT(CEditCommands<CEditUrl>, 1)
END_MSG_MAP()
LRESULT OnKey(UINT uMsg, WPARAM wParam, LPARAM /*lParam*/, BOOL& bHandled);
};
enum { IDD = IDD_URL };
static const LPCTSTR m_sTypes[3];
#ifdef WIN32_PLATFORM_PSPC
CListBox m_lbType;
#else
CSpinListBox m_lbType;
#endif
CEditUrl m_Ed;
int m_iType;
CString m_strUrl;
LPCTSTR GetUrl(void);
void StdCloseDialog(WORD wID);
BEGIN_DLGRESIZE_MAP(CUrlDlg)
DLGRESIZE_CONTROL(IDC_EDIT_URL, DLSZ_SIZE_X | DLSZ_SIZE_Y)
END_DLGRESIZE_MAP()
BEGIN_DDX_MAP(CUrlDlg)
DDX_CONTROL_HANDLE(IDC_TYPE_LIST, m_lbType)
DDX_CONTROL(IDC_EDIT_URL, m_Ed)
DDX_TEXT(IDC_EDIT_URL, m_strUrl)
END_DDX_MAP()
BEGIN_MSG_MAP(CUrlDlg)
MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
#ifdef WIN32_PLATFORM_PSPC
MESSAGE_HANDLER(WM_SETTINGCHANGE, OnSettingChange)
#endif
CHAIN_COMMANDS_ALT_MEMBER(m_Ed, 1)
CHAIN_MSG_MAP(CStdDialogResizeImpl<CUrlDlg>)
END_MSG_MAP()
LRESULT OnInitDialog(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
};
| [
"[email protected]"
] | |
e38f34f2b8dd57378546390dde43309c6db6147f | 9f5289c0bb0d3d7a91d1003a4ae7564576cb169e | /Source/BansheeCore/Include/BsCapsuleCollider.h | 565e3736366226ec5e362b38600b7fb8d8950b80 | [] | no_license | linuxaged/BansheeEngine | 59fa82828ba0e38841ac280ea1878c9f1e9bf9bd | 12cb86711cc98847709f702e11a577cc7c2f7913 | refs/heads/master | 2021-01-11T00:04:23.661733 | 2016-10-10T13:18:44 | 2016-10-10T13:18:44 | 70,758,880 | 3 | 3 | null | 2016-10-13T01:57:56 | 2016-10-13T01:57:55 | null | UTF-8 | C++ | false | false | 1,647 | h | //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
//**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
#pragma once
#include "BsCorePrerequisites.h"
#include "BsCollider.h"
#include "BsVector3.h"
#include "BsQuaternion.h"
namespace BansheeEngine
{
/** @addtogroup Physics
* @{
*/
/** Collider with a capsule geometry. */
class BS_CORE_EXPORT CapsuleCollider : public Collider
{
public:
CapsuleCollider();
/**
* Sets the half height of the capsule, from the origin to one of the hemispherical centers, along the normal
* vector.
*/
virtual void setHalfHeight(float halfHeight) = 0;
/**
* Gets the half height of the capsule, from the origin to one of the hemispherical centers, along the normal
* vector.
*/
virtual float getHalfHeight() const = 0;
/** Sets the radius of the capsule. */
virtual void setRadius(float radius) = 0;
/** Gets the radius of the capsule. */
virtual float getRadius() const = 0;
/**
* Creates a new capsule collider.
*
* @param[in] radius Radius of the capsule.
* @param[in] halfHeight Half height of the capsule, from the origin to one of the hemispherical centers, along
* the normal vector.
* @param[in] position Center of the box.
* @param[in] rotation Rotation of the box.
*/
static SPtr<CapsuleCollider> create(float radius = 0.0f, float halfHeight = 0.0f,
const Vector3& position = Vector3::ZERO, const Quaternion& rotation = Quaternion::IDENTITY);
};
/** @} */
} | [
"[email protected]"
] | |
c1c9dff992653df26ab9f7afb371dacae1aab4ee | bd09463ac8e63ada1c909c74be4772cfa33f3557 | /AABBoxMaskedRasterizerAVXST.h | 87ef5a22ae00411b4558bee853f69f521c799c90 | [
"Apache-2.0"
] | permissive | UniStuttgart-VISUS/OcclusionCulling | 6c2deb3fb6e08ef3ac24138dd2e1d7f39f8c3479 | 38f5d4e219f41f1214cea6f6a4d0ea4bfd9e8cfa | refs/heads/master | 2022-01-15T17:33:45.801511 | 2019-03-29T13:58:15 | 2019-03-29T13:58:15 | 142,598,754 | 1 | 1 | null | 2018-07-27T16:12:50 | 2018-07-27T16:12:50 | null | UTF-8 | C++ | false | false | 1,428 | h | ////////////////////////////////////////////////////////////////////////////////
// Copyright 2017 Intel Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
// use this file except in compliance with the License. You may obtain a copy
// of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations
// under the License.
////////////////////////////////////////////////////////////////////////////////
#ifndef AABBOXMASKEDRASTERIZERAVXST_H
#define AABBOXMASKEDRASTERIZERAVXST_H
#include "AABBoxRasterizerAVX.h"
class MaskedOcclusionCulling;
class AABBoxMaskedRasterizerAVXST : public AABBoxRasterizerAVX
{
public:
AABBoxMaskedRasterizerAVXST(MaskedOcclusionCulling *moc);
~AABBoxMaskedRasterizerAVXST();
void TransformAABBoxAndDepthTest(CPUTCamera *pCamera, UINT idx);
void TransformAABBoxAndDepthTestOGL(CPUTCamera *pCamera, UINT idx, const std::unique_ptr<OSMesaPipeline> &mesa) {}
void WaitForTaskToFinish(UINT idx);
void ReleaseTaskHandles(UINT idx);
private:
MaskedOcclusionCulling *mMaskedOcclusionCulling;
};
#endif //AABBOXMASKEDRASTERIZERAVXST_H | [
"[email protected]"
] | |
dded55839d3699c06a774b6506a76079dd0583ad | f16b2681afb17c8b90f701d2a3a25f5180d2db59 | /zoom-button/zoom-button.ino | c0d3443f35ed3638c285aa4da87a5012c4a08dd8 | [] | no_license | howdym/413-tech-showcase | a39b3438de3ac8209b147982682a03799908358f | 09276111aff83c045239e1be60d2caed19b571ec | refs/heads/main | 2023-07-15T12:20:49.490438 | 2021-08-16T02:15:27 | 2021-08-16T02:15:27 | 396,558,239 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 849 | ino | #include <Servo.h>
Servo myservo;
int buttonInput = 2;
int output = 12;
int isSend = 0;
int buttonState = 0;
int incomingByte = 0;
void setup() {
Serial.begin(9600);
Serial.setTimeout(1000);
// put your setup code here, to run once:
pinMode(buttonInput, INPUT_PULLUP);
pinMode(output, OUTPUT);
myservo.attach(9);
myservo.write(90);
}
void loop() {
// put your main code here, to run repeatedly:
incomingByte = Serial.read();
if (incomingByte != -1) {
delay(1000);
myservo.write(85);
delay(300);
myservo.write(90);
}
buttonState = digitalRead(buttonInput);
if (buttonState == HIGH) {
digitalWrite(output, LOW);
if (isSend == 0) {
isSend = 1;
tone(output, 1000, 1000);
Serial.print("here");
}
} else {
digitalWrite(output, HIGH);
isSend = 0;
}
}
| [
"[email protected]"
] | |
27a9e913300abb9b026e06622257ca3d480d361b | d48bcee5a8e0446f07f9929d0f01c9a301dc84b1 | /lldbHeaders/lldb/Core/ValueObjectMemory.h | d7a064028c5a78157f8ae572018c345591f74af3 | [] | no_license | columbia/ArgusDebugger | 561592fed458fbb67cf543af2216616e0ac9f2e3 | 06cd82d2f0a9bf15293391f06ce726e06d236c44 | refs/heads/main | 2023-05-04T15:00:24.923019 | 2021-05-16T02:10:32 | 2021-05-16T02:10:32 | 367,765,270 | 16 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,466 | h | //===-- ValueObjectMemory.h -----------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_ValueObjectMemory_h_
#define liblldb_ValueObjectMemory_h_
// C Includes
// C++ Includes
// Other libraries and framework includes
// Project includes
#include "lldb/Core/ValueObject.h"
#include "lldb/Symbol/CompilerType.h"
namespace lldb_private {
//----------------------------------------------------------------------
// A ValueObject that represents memory at a given address, viewed as some
// set lldb type.
//----------------------------------------------------------------------
class ValueObjectMemory : public ValueObject {
public:
~ValueObjectMemory() override;
static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope,
const char *name, const Address &address,
lldb::TypeSP &type_sp);
static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope,
const char *name, const Address &address,
const CompilerType &ast_type);
uint64_t GetByteSize() override;
ConstString GetTypeName() override;
ConstString GetDisplayTypeName() override;
size_t CalculateNumChildren(uint32_t max) override;
lldb::ValueType GetValueType() const override;
bool IsInScope() override;
lldb::ModuleSP GetModule() override;
protected:
bool UpdateValue() override;
CompilerType GetCompilerTypeImpl() override;
Address m_address; ///< The variable that this value object is based upon
lldb::TypeSP m_type_sp;
CompilerType m_compiler_type;
private:
ValueObjectMemory(ExecutionContextScope *exe_scope, const char *name,
const Address &address, lldb::TypeSP &type_sp);
ValueObjectMemory(ExecutionContextScope *exe_scope, const char *name,
const Address &address, const CompilerType &ast_type);
//------------------------------------------------------------------
// For ValueObject only
//------------------------------------------------------------------
DISALLOW_COPY_AND_ASSIGN(ValueObjectMemory);
};
} // namespace lldb_private
#endif // liblldb_ValueObjectMemory_h_
| [
"[email protected]"
] | |
2c2c09c1c03adffe427715ad5698007669c47d79 | 6fcf6c92164262665fd31110a66da74f643d6685 | /wrapper/CSharp/CsResourceFlags.h | 4c7ae3d4876d7cf5791fb3e2b39dba16b1f349fe | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | alyfreym/LLGL | 2c9723df4327985a5c15e4a2cdd55207a0bf37e7 | 263e51bacb77d505d22a06a90ca4a7a16bf588cd | refs/heads/master | 2020-09-16T20:39:39.649133 | 2019-11-13T00:31:26 | 2019-11-13T00:31:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,591 | h | /*
* CsResourceFlags.h
*
* This file is part of the "LLGL" project (Copyright (c) 2015-2019 by Lukas Hermanns)
* See "LICENSE.txt" for license information.
*/
#pragma once
#include <vcclr.h>
#using <System.dll>
#using <System.Core.dll>
#using <System.Runtime.InteropServices.dll>
using namespace System;
using namespace System::Runtime::InteropServices;
using namespace System::Collections::Generic;
namespace SharpLLGL
{
/* ----- Enumeration ----- */
public enum class ResourceType
{
Undefined,
Buffer,
Texture,
Sampler,
};
/* ----- Flags ----- */
[Flags]
public enum class BindFlags
{
None = 0,
VertexBuffer = (1 << 0),
IndexBuffer = (1 << 1),
ConstantBuffer = (1 << 2),
StreamOutputBuffer = (1 << 3),
IndirectBuffer = (1 << 4),
Sampled = (1 << 5),
Storage = (1 << 6),
ColorAttachment = (1 << 7),
DepthStencilAttachment = (1 << 8),
CombinedTextureSampler = (1 << 9),
};
[Flags]
public enum class CPUAccessFlags
{
None = 0,
Read = (1 << 0),
Write = (1 << 1),
ReadWrite = (Read | Write),
};
[Flags]
public enum class MiscFlags
{
None = 0,
DynamicUsage = (1 << 0),
FixedSamples = (1 << 1),
GenerateMips = (1 << 2),
NoInitialData = (1 << 3),
Append = (1 << 4),
Counter = (1 << 5),
};
} // /namespace SharpLLGL
// ================================================================================
| [
"[email protected]"
] | |
dda00f6681f2964f763a85d5d4bc02eb8e2e5ea7 | bc04ac4221bd533da6497d1f80150cdd211a7921 | /instructions/Instruction_efd.h | 120715cf5764d4b8ff4ea437c0effa0c9a9607c2 | [] | no_license | WarlockD/Mil-std-1750A-Emulator-C20 | 71e8e357c81a36fe39c5b42a1f76fa13ffef130d | 93ed87966945351773107dc6cf3ad5fd50e9cdd4 | refs/heads/master | 2023-03-16T07:55:57.903908 | 2012-07-16T15:57:28 | 2012-07-16T15:57:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 305 | h |
#ifndef INSTRUCTION_EFD
#define INSTRUCTION_EFD
#include "Instruction_longInstruction.h"
class Instruction_efd : public Instruction_longInstruction {
friend class InstructionRegistry;
public:
virtual ~Instruction_efd();
virtual void execute() const;
private:
Instruction_efd();
};
#endif
| [
"[email protected]"
] | |
494379c735d8c629b14b3b23e4e96c0240bee375 | c8b39acfd4a857dc15ed3375e0d93e75fa3f1f64 | /Engine/Source/Editor/UMGEditor/Private/Extensions/GridSlotExtension.h | f193365bf609bb56e330f416aa1fef51ba97687e | [
"MIT",
"LicenseRef-scancode-proprietary-license"
] | permissive | windystrife/UnrealEngine_NVIDIAGameWorks | c3c7863083653caf1bc67d3ef104fb4b9f302e2a | b50e6338a7c5b26374d66306ebc7807541ff815e | refs/heads/4.18-GameWorks | 2023-03-11T02:50:08.471040 | 2022-01-13T20:50:29 | 2022-01-13T20:50:29 | 124,100,479 | 262 | 179 | MIT | 2022-12-16T05:36:38 | 2018-03-06T15:44:09 | C++ | UTF-8 | C++ | false | false | 765 | h | // Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Input/Reply.h"
#include "WidgetReference.h"
#include "DesignerExtension.h"
class FGridSlotExtension : public FDesignerExtension
{
public:
FGridSlotExtension();
virtual ~FGridSlotExtension() {}
virtual bool CanExtendSelection(const TArray< FWidgetReference >& Selection) const override;
virtual void ExtendSelection(const TArray< FWidgetReference >& Selection, TArray< TSharedRef<FDesignerSurfaceElement> >& SurfaceElements) override;
private:
FReply HandleShiftRow(int32 ShiftAmount);
FReply HandleShiftColumn(int32 ShiftAmount);
void ShiftRow(UWidget* Widget, int32 ShiftAmount);
void ShiftColumn(UWidget* Widget, int32 ShiftAmount);
};
| [
"[email protected]"
] | |
ae83d934abcb689c978dee97968f4f0d2a97b682 | bc90e70ee2139b034c65a5755395ff55faac87d0 | /sprout/type_traits/remove_all_extents.hpp | 78e86d5ef142096b1f2b1af15d97012a4e072a69 | [
"BSL-1.0"
] | permissive | Manu343726/Sprout | 0a8e2d090dbede6f469f6b875d217716d0200bf7 | feac3f52c785deb0e5e6cd70c8b4960095b064be | refs/heads/master | 2021-01-21T07:20:16.742204 | 2015-05-28T04:11:39 | 2015-05-28T04:11:39 | 37,670,169 | 0 | 1 | null | 2015-06-18T16:09:41 | 2015-06-18T16:09:41 | null | UTF-8 | C++ | false | false | 916 | hpp | /*=============================================================================
Copyright (c) 2011-2015 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
#ifndef SPROUT_TYPE_TRAITS_REMOVE_ALL_EXTENTS_HPP
#define SPROUT_TYPE_TRAITS_REMOVE_ALL_EXTENTS_HPP
#include <type_traits>
#include <sprout/config.hpp>
namespace sprout {
//
// remove_all_extents
//
using std::remove_all_extents;
#if SPROUT_USE_TEMPLATE_ALIASES
template<typename T>
using remove_all_extents_t = typename sprout::remove_all_extents<T>::type;
#endif // #if SPROUT_USE_TEMPLATE_ALIASES
} // namespace sprout
#endif // #ifndef SPROUT_TYPE_TRAITS_REMOVE_ALL_EXTENTS_HPP
| [
"[email protected]"
] | |
178f78948f105f0829c5a6a76359b89c429b4db3 | a011c4b22f74697633f7f0a37dcf6516619ff02d | /examples/Generic/Ethernet/SAMDUE/SAMDUE-Ethernet_ServerAllFunctionsDemo/SAMDUE-Ethernet_ServerAllFunctionsDemo.ino | f04d1cdf8a1ef2070401ae661c64716137c02581 | [
"MIT"
] | permissive | robysanf/WebSockets2_Generic | 080f2d0b24f958145b4dfba8ecfaedd88d7a3530 | fe1765b62a93dfd63ddd06b2b8fa8928fbf07f57 | refs/heads/master | 2022-12-01T10:06:23.310553 | 2020-08-08T05:11:37 | 2020-08-08T05:11:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,420 | ino | /****************************************************************************************************************************
SAMDUE-Ethernet_ServerAllFunctionsDemo.ino
For SAM DUE with Ethernet module/shield.
Based on and modified from Gil Maimon's ArduinoWebsockets library https://github.com/gilmaimon/ArduinoWebsockets
to support STM32F/L/H/G/WB/MP1, nRF52 and SAMD21/SAMD51 boards besides ESP8266 and ESP32
The library provides simple and easy interface for websockets (Client and Server).
Example first created on: 10.05.2018
Original Author: Markus Sattler
Built by Khoi Hoang https://github.com/khoih-prog/Websockets2_Generic
Licensed under MIT license
Version: 1.0.6
Version Modified By Date Comments
------- ----------- ---------- -----------
1.0.0 K Hoang 14/07/2020 Initial coding/porting to support nRF52 and SAMD21/SAMD51 boards. Add SINRIC/Alexa support
1.0.1 K Hoang 16/07/2020 Add support to Ethernet W5x00 to nRF52, SAMD21/SAMD51 and SAM DUE boards
1.0.2 K Hoang 18/07/2020 Add support to Ethernet ENC28J60 to nRF52, SAMD21/SAMD51 and SAM DUE boards
1.0.3 K Hoang 18/07/2020 Add support to STM32F boards using Ethernet W5x00, ENC28J60 and LAN8742A
1.0.4 K Hoang 27/07/2020 Add support to STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 using
Ethernet W5x00, ENC28J60, LAN8742A and WiFiNINA. Add examples and Packages' Patches.
1.0.5 K Hoang 29/07/2020 Sync with ArduinoWebsockets v0.4.18 to fix ESP8266 SSL bug.
1.0.6 K Hoang 06/08/2020 Add non-blocking WebSocketsServer feature and non-blocking examples.
*****************************************************************************************************************************/
#include "defines.h"
#include <WebSockets2_Generic.h>
#include <EthernetWebServer.h>
using namespace websockets2_generic;
WebsocketsServer SocketsServer;
#define WEBSOCKETS_PORT 8080
// Change pins according to your boards
#define RED_LED 7
#define GREEN_LED 6
#define BLUE_LED 5
EthernetWebServer server(80);
void setup()
{
#if (USE_ETHERNET_LIB || USE_ETHERNET2_LIB || USE_ETHERNET_LARGE_LIB)
pinMode(SDCARD_CS, OUTPUT);
digitalWrite(SDCARD_CS, HIGH); // Deselect the SD card
#endif
Serial.begin(115200);
while (!Serial);
Serial.println("\nStarting WebSockets2_Generic SAMDUE-Ethernet_ServerAllFunctionsDemo on " + String(BOARD_NAME));
Serial.println("Ethernet using " + String(ETHERNET_TYPE));
for (uint8_t t = 4; t > 0; t--)
{
Serial.println("[SETUP] BOOT WAIT " + String(t));
Serial.flush();
delay(1000);
}
pinMode(RED_LED, OUTPUT);
pinMode(GREEN_LED, OUTPUT);
pinMode(BLUE_LED, OUTPUT);
digitalWrite(RED_LED, 1);
digitalWrite(GREEN_LED, 1);
digitalWrite(BLUE_LED, 1);
// start the ethernet connection and the server:
// Use Static IP
Ethernet.begin(mac, serverIP);
//Configure IP address via DHCP
//Ethernet.begin(mac);
// server address, port and URL
Serial.print("WebSockets Server IP address: ");
Serial.println(Ethernet.localIP());
SocketsServer.listen(WEBSOCKETS_PORT);
Serial.print(SocketsServer.available() ? "WebSockets Server Running and Ready on " : "Server Not Running on ");
Serial.println(BOARD_NAME);
Serial.print("IP address: ");
Serial.print(Ethernet.localIP());
Serial.print(", Port: ");
Serial.println(WEBSOCKETS_PORT); // Websockets Server Port
// handle index
server.on("/", []()
{
String wsServer = String("ws://192.168.2.93:") + WEBSOCKETS_PORT + "/";
Serial.print("wsServer: ");
Serial.println(wsServer);
// send index.html
server.send(200, "text/html", "<html><head><script>var connection = new WebSocket(wsServer, ['arduino']);connection.onopen = function () { connection.send('Connect ' + new Date()); }; connection.onerror = function (error) { console.log('WebSocket Error ', error);};connection.onmessage = function (e) { console.log('Server: ', e.data);};function sendRGB() { var r = parseInt(document.getElementById('r').value).toString(16); var g = parseInt(document.getElementById('g').value).toString(16); var b = parseInt(document.getElementById('b').value).toString(16); if(r.length < 2) { r = '0' + r; } if(g.length < 2) { g = '0' + g; } if(b.length < 2) { b = '0' + b; } var rgb = '#'+r+g+b; console.log('RGB: ' + rgb); connection.send(rgb); }</script></head><body>LED Control:<br/><br/>R: <input id=\"r\" type=\"range\" min=\"0\" max=\"255\" step=\"1\" oninput=\"sendRGB();\" /><br/>G: <input id=\"g\" type=\"range\" min=\"0\" max=\"255\" step=\"1\" oninput=\"sendRGB();\" /><br/>B: <input id=\"b\" type=\"range\" min=\"0\" max=\"255\" step=\"1\" oninput=\"sendRGB();\" /><br/></body></html>");
});
server.begin();
digitalWrite(RED_LED, 0);
digitalWrite(GREEN_LED, 0);
digitalWrite(BLUE_LED, 0);
}
WebsocketsClient* client = NULL;
void loop()
{
server.handleClient();
client = new WebsocketsClient;
if (client)
{
*client = SocketsServer.accept();
if (client->available())
{
WebsocketsMessage msg = client->readNonBlocking();
// log
Serial.print("Got Message: ");
Serial.println(msg.data());
// return echo
client->send("Echo: " + msg.data());
// close the connection
client->close();
}
delete client;
}
}
| [
"[email protected]"
] | |
b60ef2b2a3bb5982ade247a70cbceb782208de3f | 62cde8952e66bf5fc78a34762f53f333d38d1421 | /src/DecisionTree.cpp | 0a563ca99e17e828acb45c3ff7a86bbbf58aeb32 | [
"MIT"
] | permissive | ezalenski/MechMania-2016-AI | ae67837bfba370e58556c26a67dac5426c78d990 | ffab99043294a43a67eacbb02d215b72cd704581 | refs/heads/master | 2021-01-11T05:42:21.064582 | 2016-10-21T02:42:57 | 2016-10-21T02:42:57 | 71,522,178 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,266 | cpp | //
// Created by Edmund Zalenski on 10/9/16.
//
#include <cfloat>
#include "DecisionTree.h"
DecisionTree::DecisionTree(const State& initial_state)
: _initial_state{ initial_state }
{ }
State* DecisionTree::generate_to_level(int target_level,
double time_out)
{
return _generate_to_level(&this->_initial_state, -DBL_MAX, nullptr, DBL_MAX, nullptr,
true, 0, target_level, 0, time_out);
}
State* DecisionTree::_generate_to_level(State* prev_state,
double alpha,
State* alpha_node,
double beta,
State* beta_node,
bool is_team_1,
int current_level,
int target_level,
double current_time,
double time_out)
{
if(current_level == target_level || current_time >= time_out)
return prev_state;
else {
std::chrono::time_point<std::chrono::system_clock> start, end;
start = std::chrono::system_clock::now();
prev_state->clear_children();
std::vector<std::vector<std::shared_ptr<Action>>> team_actions;
if(is_team_1) {
for(int i = 0; i < prev_state->get_team_1().size(); ++i) {
std::unique_ptr<std::vector<std::shared_ptr<Action>>> actions = prev_state->generate_team_1_actions(i,
game_map);
team_actions.push_back(*actions);
}
} else {
for(int i = 0; i < prev_state->get_team_2().size(); ++i) {
std::unique_ptr<std::vector<std::shared_ptr<Action>>> actions = prev_state->generate_team_2_actions(i,
game_map);
team_actions.push_back(*actions);
}
}
for(const auto& action_1 : team_actions[0]) {
for(const auto& action_2 : team_actions[1]) {
for(const auto& action_3 : team_actions[2]) {
State next_state = State(*prev_state, is_team_1);
next_state.clear_children();
next_state.clear_actions();
next_state.eval_action(*action_1, game_map);
next_state.eval_action(*action_2, game_map);
next_state.eval_action(*action_3, game_map);
next_state.calc_expected_value();
prev_state->add_child(next_state);
}
}
}
if(is_team_1) {
std::sort(prev_state->get_change_children().begin(), prev_state->get_change_children().end(),
[](const State &s1, const State &s2) {
return (s1.get_expected_value() > s2.get_expected_value());
});
double local_alpha = -DBL_MAX;
State* local_alpha_node = nullptr;
for(auto child = prev_state->get_change_children().begin();
child != prev_state->get_change_children().end(); ++child) {
end = std::chrono::system_clock::now();
std::chrono::duration<double> elapsed_seconds = end-start;
State* best_grandchild = _generate_to_level(&(*child), alpha, alpha_node, beta, beta_node, !is_team_1,
current_level + 1, target_level, current_time +
elapsed_seconds.count(), time_out);
if(best_grandchild->get_expected_value() > local_alpha ||
(best_grandchild->get_expected_value() == local_alpha &&
child->get_expected_value() > local_alpha_node->get_expected_value())) {
local_alpha = best_grandchild->get_expected_value();
local_alpha_node = &(*child);
}
if(local_alpha > alpha) {
alpha = local_alpha;
alpha_node = local_alpha_node;
}
if(beta <= alpha) {
break;
}
}
return local_alpha_node;
} else {
std::sort(prev_state->get_change_children().begin(), prev_state->get_change_children().end(),
[](const State &s1, const State &s2) {
return (s1.get_expected_value() < s2.get_expected_value());
});
double local_beta = DBL_MAX;
State* local_beta_node = nullptr;
for(auto child = prev_state->get_change_children().begin(); child != prev_state->get_change_children().end(); ++child) {
end = std::chrono::system_clock::now();
std::chrono::duration<double> elapsed_seconds = end-start;
State* best_grandchild = _generate_to_level(&(*child), alpha, alpha_node, beta, beta_node, !is_team_1,
current_level + 1, target_level, current_time +
elapsed_seconds.count(), time_out);
if(best_grandchild->get_expected_value() < local_beta ||
(best_grandchild->get_expected_value() == local_beta &&
child->get_expected_value() < local_beta_node->get_expected_value())) {
local_beta = best_grandchild->get_expected_value();
local_beta_node = &(*child);
}
if(local_beta < beta) {
beta = local_beta;
beta_node = local_beta_node;
}
if(beta <= alpha) {
break;
}
}
return local_beta_node;
}
}
} | [
"[email protected]"
] | |
456057388f7890030b279e8508f8e0b7d5fd1368 | 89535494617d2c32f95b0bfca73f4b313b4bf4c6 | /Matrixes/Matrix/main.cpp | d2f70f5da6638270b95934c25871c10bc6190f25 | [] | no_license | KingaPlell/Matrixes | de41f1a60c8c2ff2b9771dd3d1cbb05f4406c07b | ad77161eea975d51dfd8f5bb3c8733a2b1744f50 | refs/heads/master | 2023-08-21T14:30:48.755386 | 2021-09-13T11:43:14 | 2021-09-13T11:43:14 | 405,947,983 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 291 | cpp | /*
Created by: Kinga Plell
Description: Operations with Matrixes
*/
#include <iostream>
#include "Matrix.h"
using namespace std;
int main()
{
Matrix m;
int number = 2;
Matrix n;
m.multiply_constant(number);
m.display();
m.multiply_matrix(n);
m.display();
} | [
"[email protected]"
] | |
a32c06578852b448cdfdc0b7e967441b08effb8f | 67d3da70c61c9204c56bc2e7b6a2ea8b8c3c0654 | /[14502] 연구소.cpp | d2c6430831aa69b5e0054ae7c7a89615c7bc028d | [] | no_license | HyunA-Kim/BOJ | 2de08951511c37ce6cebdbccaa21e8c5a534dd8a | 3fad5323be21b983bee9842be80f72901da20a46 | refs/heads/master | 2020-05-09T23:58:37.323975 | 2019-06-16T14:53:38 | 2019-06-16T14:53:38 | 181,517,492 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,318 | cpp | #include<iostream>
#include<vector>
#include<queue>
#include<algorithm>
using namespace std;
int N, M;
int dir[4][2] = { {-1,0},{1,0},{0,-1},{0,1} }; //방향
int ans=0;
vector<vector<int>> map; //기존맵
vector<vector<int>> map_copy; //맵 카피본
vector<pair<int,int>> virus;
queue<pair<int, int>> q;
void count_empty() {
int num = 0;
for (int i = 0; i < N; i++) {
for (int j = 0; j < M; j++) {
if (map[i][j] == 0) {
num++;
}
}
}
ans = max(ans, num);
}
void copy_recover() {
for (int i = 0; i < N; i++) {
for (int j = 0; j < M; j++) {
map[i][j] = map_copy[i][j];
}
}
}
void copy() {
for (int i = 0; i < N; i++) {
for (int j = 0; j < M; j++) {
map_copy[i][j] = map[i][j];
}
}
}
void wall(int cnt) {
//벽을 다 세웠을 경우 (In case, built all of the wall)
//바이러스 퍼트리기 (spread virus)
if (cnt == 3) {
copy();
for (int a = 0; a < virus.size(); a++) {
q.push(virus[a]);
}
while (!q.empty()) {
int y = q.front().first;
int x = q.front().second;
q.pop();
for (int i = 0; i < 4; i++) {
int new_y = y + dir[i][0];
int new_x = x + dir[i][1];
if (new_y < 0 || new_y >= N || new_x < 0 || new_x >= M) continue;
if (map[new_y][new_x] == 0) {
map[new_y][new_x] = 2;
q.push(make_pair(new_y, new_x));
}
}
}
count_empty();
copy_recover();
return;
}
//벽 세우기 경우의수 (모든 경우를 다 세는것으로 한다)
for (int i = 0; i < N; i++) {
for (int j = 0; j < M; j++) {
if (map[i][j] == 0) {
map[i][j] = 1;
wall(cnt + 1); //벽을 하나더 증가시켜줌
map[i][j] = 0; //다른 곳에 벽세우기 위한 기존 벽 초기화
}
}
}
}
int main(void) {
cin >> N >> M;
map.assign(N, vector<int>(M, 0));
map_copy.assign(N, vector<int>(M, 0));
for (int i = 0; i < N; i++) {
for (int j = 0; j < M; j++) {
cin >> map[i][j];
if (map[i][j] == 2) {
virus.push_back(make_pair(i, j)); //바이러스 해당좌표 입력
}
}
}
for (int i = 0; i < N; i++) {
for (int j = 0; j < M; j++) {
if (map[i][j] == 0) {
map[i][j] = 1;
wall(1);
map[i][j] = 0;
}
}
}
cout << ans;
}
| [
"[email protected]"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.