blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 986
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 23
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 145
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 122
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
cc931e9cd7fc233654e794363cc42639e86c9b0c | 8a3449c6dc68a9c631ee47b68b3c01a03ea66224 | /src/base/FileHandle.cpp | bf3bb47878635fed642ff88d0211d66cbe9028b8 | [
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-other-permissive"
] | permissive | woimalabs/libw | 1985127215523a10857e30fae5fd1cc586cd0e94 | 8ffa06d3a9efc49d19cdfe682f89f3c4afe9a58a | refs/heads/master | 2021-04-12T04:21:34.001019 | 2018-09-23T18:22:11 | 2018-09-23T18:22:11 | 12,668,614 | 1 | 1 | null | 2018-04-08T20:11:16 | 2013-09-07T17:27:37 | C++ | UTF-8 | C++ | false | false | 4,927 | cpp | /**
* libw
*
* Copyright (C) 2012-2015 Woima Solutions
*
* This software is provided 'as-is', without any express or implied warranty. In
* no event will the authors be held liable for any damages arising from the use
* of this software.
*
* Permission is granted to anyone to use this software for any purpose, including
* commercial applications, and to alter it and redistribute it freely, subject to
* the following restrictions:
*
* 1) The origin of this software must not be misrepresented; you must not claim
* that you wrote the original software. If you use this software in a product,
* an acknowledgment in the product documentation is appreciated.
*
* 2) Altered source versions must be plainly marked as such, and must not be
* misrepresented as being the original software.
*
* 3) This notice may not be removed or altered from any source distribution.
*
* @author antti.peuhkurinen@woimasolutions.com
*/
#include "w/base/FileHandle.hpp"
#include "w/base/Exception.hpp"
#include "w/base/Log.hpp"
#include <stdio.h>
#include <unistd.h>
#include <string>
#include <limits.h>
namespace w
{
#ifdef ANDROID
FileHandle::FileHandle(const std::string& filename, Type::Enum type, AAssetManager* androidAssetManager):
#else // linux
FileHandle::FileHandle(const std::string& filename, Type::Enum type):
#endif
type_(type),
filename_(filename),
currentReadIndex_(0),
#ifdef ANDROID
androidAssetManager_(androidAssetManager),
#endif
byteSize_(0)
{
open();
}
FileHandle::~FileHandle()
{
close();
}
// Opens the file and defines byte size
void FileHandle::open()
{
// LOGD("opening file: %s", filename_.c_str());
#ifdef ANDROID
file_ = AAssetManager_open(androidAssetManager_, filename_.c_str(), AASSET_MODE_STREAMING);
if (file_ == NULL)
{
LOGE("Failed to load filename: '%s'", filename_.c_str());
throw Exception("FileHandle::open() failed");
}
byteSize_ = AAsset_getLength(file_);
#else // iOS and Linux
const char* tmp = NULL;
if(type_ == Type::ReadOnly_ExceptionIfNotExisting)
{
tmp = "rb";
}
else if(type_ == Type::ReadOnly_CreateIfNotExisting)
{
tmp = "rb";
}
else if(type_ == Type::WriteOnly_DestroyOldContent_CreateNewIfNotExisting)
{
tmp = "wb+";
}
file_ = fopen(filename_.c_str(), tmp);
if (file_ == NULL)
{
perror(filename_.c_str());
LOGE("Failed to load filename: '%s'", filename_.c_str());
throw Exception("FileHandle::open() failed");
}
fseek(file_, 0, SEEK_END);
long tmpSize = ftell(file_);
if(tmpSize > UINT_MAX)
{
LOGE("Failed to load filename: '%s'", filename_.c_str());
throw Exception("FileHandle::open() file too large.");
}
byteSize_ = tmpSize & UINT_MAX;;
fseek(file_, 0, SEEK_SET);
#endif
}
unsigned int FileHandle::read(char* targetBuffer, unsigned int byteAmountToRead)
{
unsigned int bytesRead = 0;
unsigned int bytesToBeRead = byteAmountToRead;
while(true)
{
#ifdef ANDROID
unsigned int readAmount = AAsset_read(file_, targetBuffer, bytesToBeRead);
#else // linux
size_t readAmount = fread(targetBuffer, sizeof(char), bytesToBeRead, file_);
#endif
bytesRead += readAmount;
bytesToBeRead -= readAmount;
if(readAmount == 0 || bytesToBeRead <= 0)
{
break;
}
}
currentReadIndex_ += bytesRead;
return bytesRead;
}
unsigned int FileHandle::write(const char* sourceBuffer, unsigned int byteAmountToWrite)
{
return fwrite(sourceBuffer, byteAmountToWrite, 1, file_);
}
std::string FileHandle::filename()
{
return filename_;
}
unsigned int FileHandle::byteSize()
{
return byteSize_;
}
#ifdef ANDROID
AAsset* FileHandle::pointer()
{
return file_;
}
#else // linux
FILE* FileHandle::pointer()
{
return file_;
}
#endif
bool FileHandle::exists(const std::string& fullPath)
{
bool r = false;
if(access(fullPath.c_str(), F_OK) != -1)
{
r = true;
}
return r;
}
void FileHandle::close()
{
#ifdef ANDROID
AAsset_close(file_);
#else // linux
fclose(file_);
#endif
file_ = NULL;
}
}
| [
"antti.peuhkurinen@woimasolutions.com"
] | antti.peuhkurinen@woimasolutions.com |
f31d492218d5a5164e8491352b55e6d3714200b9 | 2a4407f48856ced64bd1e70e2072cdd826aa8a14 | /test/test_roscpp/test/src/param_update_test.cpp | 7f9c12ff62325b804940504e51addce38a398e06 | [] | no_license | ros/ros_comm | d6e75897bafb3f9a5bdc6074c1e9d5569c79d8a4 | 030e132884d613e49a576d4339f0b8ec6f75d2d8 | refs/heads/noetic-devel | 2023-08-31T23:10:32.862758 | 2023-04-20T14:08:38 | 2023-04-20T14:08:38 | 5,474,834 | 771 | 972 | null | 2023-09-12T21:44:32 | 2012-08-19T22:26:34 | Python | UTF-8 | C++ | false | false | 2,279 | cpp | /*********************************************************************
* Software License Agreement (BSD License)
*
* Copyright (c) 2008, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of Willow Garage, Inc. nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
********************************************************************/
#include "ros/ros.h"
int main(int argc, char** argv)
{
ros::init(argc, argv, "param_update_test");
ros::NodeHandle nh;
while (ros::ok())
{
ROS_INFO("getting parameters...");
int i = -1;
if (nh.getParamCached("test", i))
{
ROS_INFO("test=%d", i);
}
if (nh.getParamCached("test2", i))
{
ROS_INFO("test2=%d", i);
}
if (nh.getParamCached("test3", i))
{
ROS_INFO("test3=%d", i);
}
ros::WallDuration(0.1).sleep();
}
return 0;
}
| [
"tfoote@willowgarage.com"
] | tfoote@willowgarage.com |
d681ee609bd50301ed0666fdc92bb569a443651e | e763b855be527d69fb2e824dfb693d09e59cdacb | /aws-cpp-sdk-lightsail/include/aws/lightsail/model/ResourceType.h | 92128354a424e17361c971abc9d26c4aef205384 | [
"MIT",
"Apache-2.0",
"JSON"
] | permissive | 34234344543255455465/aws-sdk-cpp | 47de2d7bde504273a43c99188b544e497f743850 | 1d04ff6389a0ca24361523c58671ad0b2cde56f5 | refs/heads/master | 2023-06-10T16:15:54.618966 | 2018-05-07T23:32:08 | 2018-05-07T23:32:08 | 132,632,360 | 1 | 0 | Apache-2.0 | 2023-06-01T23:20:47 | 2018-05-08T15:56:35 | C++ | UTF-8 | C++ | false | false | 1,241 | h | /*
* Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file 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 <aws/lightsail/Lightsail_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
namespace Aws
{
namespace Lightsail
{
namespace Model
{
enum class ResourceType
{
NOT_SET,
Instance,
StaticIp,
KeyPair,
InstanceSnapshot,
Domain,
PeeredVpc,
LoadBalancer,
LoadBalancerTlsCertificate,
Disk,
DiskSnapshot
};
namespace ResourceTypeMapper
{
AWS_LIGHTSAIL_API ResourceType GetResourceTypeForName(const Aws::String& name);
AWS_LIGHTSAIL_API Aws::String GetNameForResourceType(ResourceType value);
} // namespace ResourceTypeMapper
} // namespace Model
} // namespace Lightsail
} // namespace Aws
| [
"henso@amazon.com"
] | henso@amazon.com |
97d207888cd38ea614b142a2814b06c9dbbd32ae | f79dec3c4033ca3cbb55d8a51a748cc7b8b6fbab | /audio/akode/patches/patch-aj | 1a0fea264fbd525bdc2c3e7589189df7e809c77a | [] | no_license | jsonn/pkgsrc | fb34c4a6a2d350e8e415f3c4955d4989fcd86881 | c1514b5f4a3726d90e30aa16b0c209adbc276d17 | refs/heads/trunk | 2021-01-24T09:10:01.038867 | 2017-07-07T15:49:43 | 2017-07-07T15:49:43 | 2,095,004 | 106 | 47 | null | 2016-09-19T09:26:01 | 2011-07-23T23:49:04 | Makefile | UTF-8 | C++ | false | false | 285 | $NetBSD: patch-aj,v 1.1 2011/01/20 11:48:18 markd Exp $
--- akode/lib/auto_sink.cpp.orig 2005-10-26 13:50:29.000000000 +0000
+++ akode/lib/auto_sink.cpp
@@ -21,6 +21,7 @@
#include "audioframe.h"
#include "auto_sink.h"
+#include <cstdlib>
#include <iostream>
namespace aKode {
| [
"markd"
] | markd | |
16c8bf98fd3db51be736fd44b51e561bd2823914 | 600df3590cce1fe49b9a96e9ca5b5242884a2a70 | /third_party/WebKit/public/platform/modules/background_sync/WebSyncError.h | 8eae550745628620251cf2f0c909c75a3666bf90 | [
"BSD-3-Clause",
"LGPL-2.0-or-later",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-only",
"GPL-1.0-or-later",
"GPL-2.0-only",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-other-copyleft",
"MIT",
"Apache-2.0"
] | permissive | metux/chromium-suckless | efd087ba4f4070a6caac5bfbfb0f7a4e2f3c438a | 72a05af97787001756bae2511b7985e61498c965 | refs/heads/orig | 2022-12-04T23:53:58.681218 | 2017-04-30T10:59:06 | 2017-04-30T23:35:58 | 89,884,931 | 5 | 3 | BSD-3-Clause | 2022-11-23T20:52:53 | 2017-05-01T00:09:08 | null | UTF-8 | C++ | false | false | 693 | h | // Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef WebSyncError_h
#define WebSyncError_h
#include "public/platform/WebString.h"
namespace blink {
struct WebSyncError {
enum ErrorType {
ErrorTypeAbort = 0,
ErrorTypeNoPermission,
ErrorTypeNotFound,
ErrorTypePermissionDenied,
ErrorTypeUnknown,
ErrorTypeLast = ErrorTypeUnknown
};
WebSyncError(ErrorType errorType, const WebString& message)
: errorType(errorType), message(message) {}
ErrorType errorType;
WebString message;
};
} // namespace blink
#endif // WebSyncError_h
| [
"enrico.weigelt@gr13.net"
] | enrico.weigelt@gr13.net |
a5fcd7c531557a7971d2160dca52c56fba4bdbe5 | 13170cde328d6ce63fc10bfd726eecd4fefff3e7 | /vst/JuceLibraryCode/modules/juce_audio_basics/sources/juce_MixerAudioSource.cpp | b5b211bd329443fe7f06bc06f66e820879e90480 | [] | no_license | owenvallis/KeyValueVST | 32b7e69c8d56c54e96eda3a9b214de5425d686e8 | faaccb8be35bbfa78aa9acb6001c61dc9307dd3c | refs/heads/master | 2016-08-06T20:54:32.577745 | 2012-03-21T05:59:41 | 2012-03-21T05:59:41 | 3,444,001 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,691 | cpp | /*
==============================================================================
This file is part of the JUCE library - "Jules' Utility Class Extensions"
Copyright 2004-11 by Raw Material Software Ltd.
------------------------------------------------------------------------------
JUCE can be redistributed and/or modified under the terms of the GNU General
Public License (Version 2), as published by the Free Software Foundation.
A copy of the license is included in the JUCE distribution, or can be found
online at www.gnu.org/licenses.
JUCE 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.
------------------------------------------------------------------------------
To release a closed-source product which uses JUCE, commercial licenses are
available: visit www.rawmaterialsoftware.com/juce for more information.
==============================================================================
*/
MixerAudioSource::MixerAudioSource()
: tempBuffer (2, 0),
currentSampleRate (0.0),
bufferSizeExpected (0)
{
}
MixerAudioSource::~MixerAudioSource()
{
removeAllInputs();
}
//==============================================================================
void MixerAudioSource::addInputSource (AudioSource* input, const bool deleteWhenRemoved)
{
if (input != nullptr && ! inputs.contains (input))
{
double localRate;
int localBufferSize;
{
const ScopedLock sl (lock);
localRate = currentSampleRate;
localBufferSize = bufferSizeExpected;
}
if (localRate > 0.0)
input->prepareToPlay (localBufferSize, localRate);
const ScopedLock sl (lock);
inputsToDelete.setBit (inputs.size(), deleteWhenRemoved);
inputs.add (input);
}
}
void MixerAudioSource::removeInputSource (AudioSource* const input)
{
if (input != nullptr)
{
ScopedPointer<AudioSource> toDelete;
{
const ScopedLock sl (lock);
const int index = inputs.indexOf (input);
if (index < 0)
return;
if (inputsToDelete [index])
toDelete = input;
inputsToDelete.shiftBits (index, 1);
inputs.remove (index);
}
input->releaseResources();
}
}
void MixerAudioSource::removeAllInputs()
{
OwnedArray<AudioSource> toDelete;
{
const ScopedLock sl (lock);
for (int i = inputs.size(); --i >= 0;)
if (inputsToDelete[i])
toDelete.add (inputs.getUnchecked(i));
inputs.clear();
}
for (int i = toDelete.size(); --i >= 0;)
toDelete.getUnchecked(i)->releaseResources();
}
void MixerAudioSource::prepareToPlay (int samplesPerBlockExpected, double sampleRate)
{
tempBuffer.setSize (2, samplesPerBlockExpected);
const ScopedLock sl (lock);
currentSampleRate = sampleRate;
bufferSizeExpected = samplesPerBlockExpected;
for (int i = inputs.size(); --i >= 0;)
inputs.getUnchecked(i)->prepareToPlay (samplesPerBlockExpected, sampleRate);
}
void MixerAudioSource::releaseResources()
{
const ScopedLock sl (lock);
for (int i = inputs.size(); --i >= 0;)
inputs.getUnchecked(i)->releaseResources();
tempBuffer.setSize (2, 0);
currentSampleRate = 0;
bufferSizeExpected = 0;
}
void MixerAudioSource::getNextAudioBlock (const AudioSourceChannelInfo& info)
{
const ScopedLock sl (lock);
if (inputs.size() > 0)
{
inputs.getUnchecked(0)->getNextAudioBlock (info);
if (inputs.size() > 1)
{
tempBuffer.setSize (jmax (1, info.buffer->getNumChannels()),
info.buffer->getNumSamples());
AudioSourceChannelInfo info2;
info2.buffer = &tempBuffer;
info2.numSamples = info.numSamples;
info2.startSample = 0;
for (int i = 1; i < inputs.size(); ++i)
{
inputs.getUnchecked(i)->getNextAudioBlock (info2);
for (int chan = 0; chan < info.buffer->getNumChannels(); ++chan)
info.buffer->addFrom (chan, info.startSample, tempBuffer, chan, 0, info.numSamples);
}
}
}
else
{
info.clearActiveBufferRegion();
}
}
| [
"ow3nskip"
] | ow3nskip |
84639188ad69be1e93eba3fd87b3c6a5b4a74088 | e8d783d45ac0f3ef7f38eadc5b44b7e2a595179f | /irrlicht/sound.cpp | 0e5296ac0fcc57bb47abffddeb45bc036698fdaf | [
"Zlib"
] | permissive | osom8979/example | e3be7fd355e241be6b829586b93d3cbcb1fbf3a5 | 603bb7cbbc6427ebdc7de28f57263c47d583c2e4 | refs/heads/master | 2023-07-21T19:55:55.590941 | 2023-07-20T02:06:42 | 2023-07-20T02:06:42 | 52,238,897 | 2 | 1 | NOASSERTION | 2023-07-20T02:06:43 | 2016-02-22T01:42:09 | C++ | UTF-8 | C++ | false | false | 2,007 | cpp | /*!
Sound Factory.
provides a sound interface
*/
#include "sound.h"
//#define USE_IRRKLANG
#ifdef USE_IRRKLANG
#include <irrKlang.h>
#ifdef _IRR_WINDOWS_
#pragma comment (lib, "irrKlang.lib")
#endif
using namespace irrklang;
struct soundfile: public IFileReader
{
soundfile ( io::IReadFile* f ): file (f ) {}
virtual ~soundfile () {file->drop ();}
virtual ik_s32 read(void* buffer, ik_u32 sizeToRead) {return file->read ( buffer, sizeToRead );}
virtual bool seek(ik_s32 finalPos, bool relativeMovement = false) {return file->seek ( finalPos, relativeMovement );}
virtual ik_s32 getSize() {return file->getSize ();}
virtual ik_s32 getPos() {return file->getPos ();}
virtual const ik_c8* getFileName() {return file->getFileName ();}
io::IReadFile* file;
};
struct klangFactory : public irrklang::IFileFactory
{
klangFactory ( IrrlichtDevice *device ) {Device = device;}
virtual irrklang::IFileReader* createFileReader(const ik_c8* filename)
{
io::IReadFile* file = Device->getFileSystem()->createAndOpenFile(filename);
if ( 0 == file )
return 0;
return new soundfile ( file );
}
IrrlichtDevice *Device;
};
ISoundEngine *engine = 0;
ISound *backMusic = 0;
void sound_init ( IrrlichtDevice *device )
{
engine = createIrrKlangDevice ();
if ( 0 == engine )
return;
klangFactory *f = new klangFactory ( device );
engine->addFileFactory ( f );
}
void sound_shutdown ()
{
if ( backMusic )
backMusic->drop ();
if ( engine )
engine->drop ();
}
void background_music ( const c8 * file )
{
if ( 0 == engine )
return;
if ( backMusic )
{
backMusic->stop ();
backMusic->drop ();
}
backMusic = engine->play2D ( file, true, false, true );
if ( backMusic )
{
backMusic->setVolume ( 0.5f );
}
}
#else
void sound_init(IrrlichtDevice *device)
{
}
void sound_shutdown()
{
}
void background_music(const c8 * file)
{
}
#endif
| [
"osom8979@gmail.com"
] | osom8979@gmail.com |
69cabe252752a39e693bece42045b6fa19fb4e3f | d5f6888f6d9a4b807384cc79025887f4d1e10e81 | /src/midpoint_circle.cc | ece7028fb50f48ad93c9504ce0fcaeee516e18a3 | [] | no_license | FudgeRacoon/2D-Graphics-Algorithms | 298598fa707b7bd3b88f7678286c91c977749a73 | 0940bcdfc60bded87ffd3a1b2a883f033e6e4c95 | refs/heads/main | 2023-03-13T14:03:39.178851 | 2021-03-07T16:07:47 | 2021-03-07T16:07:47 | 344,158,814 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,994 | cc | #include "SDL/SDL.h"
#include <iostream>
using namespace std;
SDL_Surface* pSurface;
enum
{
SCREENWIDTH = 512,
SCREENHEIGHT = 384,
SCREENBPP = 0,
SCREENFLAGS = SDL_ANYFORMAT
} ;
class Start
{
public:
static void Draw()
{
int r,xc,yc;
printf("Enter the values of xc and yc:\n");
scanf("%d %d",&xc,&yc);
printf("Enter the Radius:\n");
scanf("%d", &r);
SDL_Color color ;
color.r = rand ( ) % 256 ;
color.g = rand ( ) % 256 ;
color.b = rand ( ) % 256 ;
CircleMid(xc,yc,r,color);
}
static void CirclePlotPoints(int xc, int yc, int x, int y, SDL_Color color)
{
SetPixel(pSurface, xc+x,yc+y, color);
SetPixel(pSurface, xc-x,yc+y, color);
SetPixel(pSurface, xc+x,yc-y, color);
SetPixel(pSurface, xc-x,yc-y, color);
SetPixel(pSurface, xc+y,yc+x, color);
SetPixel(pSurface, xc-y,yc+x, color);
SetPixel(pSurface, xc+y,yc-x, color);
SetPixel(pSurface, xc-y,yc-x, color);
}
static void CircleMid( int xc, int yc, int r, SDL_Color color)
{
int x = 0;
int y = r;
int p = 1 - r;
CirclePlotPoints(xc,yc,x,y,color);
while(x<y)
{
x++;
if(p<0)
p += 2*x + 1;
else
{
y--;
p += 2* (x-y) + 1;
}
CirclePlotPoints(xc,yc,x,y,color);
}
}
static void SetPixel ( SDL_Surface* pSurface , int x , int y , SDL_Color color )
{
//convert color
Uint32 col = SDL_MapRGB ( pSurface->format , color.r , color.g , color.b ) ;
//determine position
char* pPosition = ( char* ) pSurface->pixels ;
//offset by y
pPosition += ( pSurface->pitch * y ) ;
//offset by x
pPosition += ( pSurface->format->BytesPerPixel * x ) ;
//copy pixel data
memcpy ( pPosition , &col , pSurface->format->BytesPerPixel ) ;
}
static SDL_Color GetPixel ( SDL_Surface* pSurface , int x , int y )
{
SDL_Color color ;
Uint32 col = 0 ;
//determine position
char* pPosition = ( char* ) pSurface->pixels ;
//offset by y
pPosition += ( pSurface->pitch * y ) ;
//offset by x
pPosition += ( pSurface->format->BytesPerPixel * x ) ;
//copy pixel data
memcpy ( &col , pPosition , pSurface->format->BytesPerPixel ) ;
//convert color
SDL_GetRGB ( col , pSurface->format , &color.r , &color.g , &color.b ) ;
return ( color ) ;
}
};
class SDLInit
{
public:
static void Init()
{
//initialize systems
SDL_Init ( SDL_INIT_VIDEO ) ;
//set our at exit function
atexit ( SDL_Quit ) ;
//create a window
pSurface = SDL_SetVideoMode ( SCREENWIDTH , SCREENHEIGHT ,
SCREENBPP , SCREENFLAGS ) ;
//declare event variable
SDL_Event event ;
// flag defined to stop looping foo()
int flag = 1;
//message pump
for ( ; ; )
{
//look for an event
if ( SDL_PollEvent ( &event ) )
{
//an event was found
if ( event.type == SDL_QUIT ) break ;
}
if(flag)
{
Start::Draw(); // My coding!
flag = 0;
}
}//end of message pump
//done
}
};
| [
"fudgeracoon@gmail.com"
] | fudgeracoon@gmail.com |
ba04a69bef5bf63a44b099bcb31aa96ed6724ece | f315fa72bef535ab925573c63abd96fff3ba6983 | /src/kitti/DrawTracklet.cpp | 8112521990d978bbc528c0c13ccc805bc22bf1be | [] | no_license | VTD-YJ/VirtualTestDriveFramework | 161fb95cfc680c60733d35ee531ecf7f8ae4e9df | a6fb65f73dc27b956c6f13786063ab7ffa56a86c | refs/heads/master | 2022-04-24T21:01:55.131085 | 2017-06-27T14:26:11 | 2017-06-27T14:26:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,064 | cpp | //
// Created by geislerd on 16.03.17.
//
#include <kitti/DrawTracklet.h>
namespace saliency_sandbox {
namespace kitti {
template<Camera _camera>
void DrawTracklet<_camera>::convert(input_image_t &img) {
this->m_data.mat(img);
}
template<>
void DrawTracklet<LEFT_GRAY>::convert(input_image_t &img) {
cv::cvtColor(img, this->m_data, CV_GRAY2RGB);
}
template<>
void DrawTracklet<RIGHT_GRAY>::convert(input_image_t &img) {
cv::cvtColor(img, this->m_data, CV_GRAY2RGB);
}
template<Camera _camera>
bool DrawTracklet<_camera>::inImage(cv::Point *points, size_t num) {
bool ret = true;
for (int i = 0; i < num && ret; i++)
ret &= (points[i].x > 0 && points[i].y > 0) && (points[i].x < 1242 && points[i].y < 375);
return ret;
}
template<Camera _camera>
void DrawTracklet<_camera>::drawTracklet(Tracklet &tracklet, Calibration &calibration) {
cv::Vec3f faces3D[16];
cv::Vec2f faces2D[16];
cv::Point pf[4], center(0, 0);
size_t num = 0;
std::stringstream saliency_ss;
tracklet.boundingbox(faces3D);
calibration.veloToCam(faces3D, faces2D, 16, _camera);
for (int i = 0; i < 16; i += 4) {
pf[0] = cv::Point2f(faces2D[i + 0]);
pf[1] = cv::Point2f(faces2D[i + 1]);
pf[2] = cv::Point2f(faces2D[i + 2]);
pf[3] = cv::Point2f(faces2D[i + 3]);
if (this->inImage(pf, 4)) {
cv::line(this->m_data, pf[0], pf[1], cv::Scalar(255, 0, 0));
cv::line(this->m_data, pf[1], pf[2], cv::Scalar(0, 255, 0));
cv::line(this->m_data, pf[2], pf[3], cv::Scalar(0, 0, 255));
cv::line(this->m_data, pf[3], pf[0], cv::Scalar(255, 0, 255));
center += pf[0] + pf[1] + pf[2] + pf[3];
num += 4;
}
}
if (num > 0) {
center.x /= num;
center.y /= num;
} else
return;
cv::putText(this->m_data, tracklet.label(), center, CV_FONT_HERSHEY_COMPLEX_SMALL, 0.8,
cvScalar(255, 255, 255), 1, CV_AA);
if (tracklet.properties()->template has<float>("saliency")) {
saliency_ss << "s: " << std::setprecision(2) << tracklet.properties()->template get<float>("saliency");
cv::putText(this->m_data, saliency_ss.str(), cv::Point(center.x, center.y + 14),
CV_FONT_HERSHEY_COMPLEX_SMALL, 0.8, cvScalar(255, 255, 255), 1, CV_AA);
}
}
template<Camera _camera>
void DrawTracklet<_camera>::drawTracklets(TrackletList &tracklets, Calibration &calibration) {
for (int i = 0; i < tracklets.size(); i++)
this->drawTracklet(*tracklets[i], calibration);
}
template<Camera _camera>
DrawTracklet<_camera>::DrawTracklet() {
this->template input<0>()->name("image");
this->template input<1>()->name("tracking");
this->template input<2>()->name("calibration");
this->template output<0>()->name("image");
this->template output<0>()->value(&(this->m_data));
}
template<Camera _camera>
void DrawTracklet<_camera>::calc() {
this->convert(*this->template input<0>()->value());
this->drawTracklets(*this->template input<1>()->value(), *this->template input<2>()->value());
this->template output<0>()->value(&(this->m_data));
}
template<Camera _camera>
void DrawTracklet<_camera>::reset() {}
template class DrawTracklet<LEFT_GRAY>;
template class DrawTracklet<RIGHT_GRAY>;
template class DrawTracklet<LEFT_RGB>;
template class DrawTracklet<RIGHT_RGB>;
}
} | [
"david.geisler@uni-tuebingen.de"
] | david.geisler@uni-tuebingen.de |
dccb17880b282709f5a34a69d47c5f8f6d5e0a20 | c23b42b301b365f6c074dd71fdb6cd63a7944a54 | /contest/Jakarta/2014/j.cpp | c2fef12987b6aaa32a0609573354efaaecdb6b6d | [] | no_license | NTUwanderer/PECaveros | 6c3b8a44b43f6b72a182f83ff0eb908c2e944841 | 8d068ea05ee96f54ee92dffa7426d3619b21c0bd | refs/heads/master | 2020-03-27T22:15:49.847016 | 2019-01-04T14:20:25 | 2019-01-04T14:20:25 | 147,217,616 | 1 | 0 | null | 2018-09-03T14:40:49 | 2018-09-03T14:40:49 | null | UTF-8 | C++ | false | false | 2,553 | cpp | // eddy1021
#include <bits/stdc++.h>
using namespace std;
typedef double D;
typedef long long ll;
typedef pair<int,int> PII;
#define mod9 1000000009ll
#define mod7 1000000007ll
#define INF 1023456789ll
#define INF16 10000000000000000ll
#define FI first
#define SE second
#define PB push_back
#define MP make_pair
#define MT make_tuple
#define eps 1e-9
#define SZ(x) (int)(x).size()
#define ALL(x) (x).begin(), (x).end()
ll getint(){
ll _x=0,_tmp=1; char _tc=getchar();
while( (_tc<'0'||_tc>'9')&&_tc!='-' ) _tc=getchar();
if( _tc == '-' ) _tc=getchar() , _tmp = -1;
while(_tc>='0'&&_tc<='9') _x*=10,_x+=(_tc-'0'),_tc=getchar();
return _x*_tmp;
}
ll mypow( ll _a , ll _x , ll _mod ){
if( _x == 0 ) return 1ll;
ll _tmp = mypow( _a , _x / 2 , _mod );
_tmp = ( _tmp * _tmp ) % _mod;
if( _x & 1 ) _tmp = ( _tmp * _a ) % _mod;
return _tmp;
}
bool equal( D _x , D _y ){
return _x > _y - eps && _x < _y + eps;
}
int __ = 1 , cs;
/*********default*********/
#define N 1000010
int n , m;
ll a[ N ] , pa[ N ] , b[ N ];
char c[ N ];
void build(){
}
void init(){
n = getint();
m = getint();
scanf( "%s" , c + 1 );
a[ 0 ] = 1500000;
for( int i = 1 ; i <= n ; i ++ )
if( c[ i ] == '/' ) a[ i ] = a[ i - 1 ] + 1 , b[ i ] = a[ i ] - 1;
else if( c[ i ] == '\\' ) a[ i ] = a[ i - 1 ] - 1 , b[ i ] = a[ i ];
else a[ i ] = a[ i - 1 ] , b[ i ] = a[ i ];
pa[ 0 ] = 0;
for( int i = 1 ; i <= n ; i ++ )
if( c[ i ] == '_' )
pa[ i ] = pa[ i - 1 ] + 2 * a[ i ];
else if( c[ i ] == '/' )
pa[ i ] = pa[ i - 1 ] + 2 * a[ i ] - 1;
else
pa[ i ] = pa[ i - 1 ] + 2 * a[ i ] + 1;
// for( int i = 1 ; i <= n ; i ++ )
// printf( "%lld " , pa[ i ] ); puts( "" );
}
int vl[ N ] , no[ N ] , pl , pr;
void pop_front(){ pl ++; }
void pop_back(){ pr --; }
void push( int tno , int tvl ){
while( pl < pr ){
if( tvl < vl[ pr - 1 ] ) pop_back();
else break;
}
vl[ pr ] = tvl;
no[ pr ++ ] = tno;
}
void solve(){
pl = pr = 0;
for( int i = 1 ; i < m ; i ++ )
push( i , b[ i ] );
ll fans = pa[ n ];
for( int i = m ; i <= n ; i ++ ){
while( pl < pr && no[ pl ] <= i - m )
pop_front();
push( i , b[ i ] );
ll ans = pa[ i ] - pa[ i - m ];
ll res = vl[ pl ] * (ll)m * 2;
ans -= res;
// printf( "%lld %lld\n" , ans , res );
fans = min( fans , ans );
}
printf( "Case #%d: %lld.%lld\n" , ++ cs , fans / 2 , ( fans % 2 ) * 5 );
}
int main(){
build();
__ = getint();
while( __ -- ){
init();
solve();
}
}
| [
"c.c.hsu01@gmail.com"
] | c.c.hsu01@gmail.com |
63601d52d33c9d54071905905b58be453a896972 | 992d3f90ab0f41ca157000c4b18d071087d14d85 | /draw/CPPCODER.CPP | df1cbad125fdc62a8c9606dc67eae4e1c7b1039d | [] | no_license | axemclion/visionizzer | cabc53c9be41c07c04436a4733697e4ca35104e3 | 5b0158f8a3614e519183055e50c27349328677e7 | refs/heads/master | 2020-12-25T19:04:17.853016 | 2009-05-22T14:44:53 | 2009-05-22T14:44:53 | 29,331,323 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,855 | cpp | # include <process.h>
# include <graphics.h>
# include <dos.h>
# include <stdio.h>
# include <ctype.h>
# include <stdlib.h>
# include <string.h>
# include <dir.h>
# include <conio.h>
# include <mouse.h>
int fc(char *file1,char *file2,char *dest);
void ccoder(char *);
int main(int argc,char *argv[])
{
if (argc < 1)
return 1;
ccoder(argv[1]);
char path[100],path1[100];
strcpy(path,argv[1]);
strcpy(path1,path);
strcat(path1,"prog.java");
fc("code.cpp",NULL,path1);
strcpy(path1,path);
strcat(path1,"code.h");
remove(path1);
remove("head");
fc("head","code.tmp",path1);
remove("head");
FILE *fp = fopen("end.bat","wt");
fprintf(fp,"cls");
fclose(fp);
strcpy(path1,path);
return 0;
}
void ccoder(char *path)
{
char object[100];
remove("code.cpp");
strcat(path,"\\");
char *path1 =(char *)calloc(1,100);
#ifdef AXE
printf("%s",path);
getch();getch();
click();
# endif
char *name;
if (!path1)
return;
strcpy(path1,path);
FILE *fp,*prog,*draw;
strcat(path1,"code.cpp");
prog=fopen("code.cpp","wt");
if (prog == NULL)
return ;
strcpy(path1,path);
/**********writing to file ***********/
fprintf(prog,"import java.awt.*;\n");
fprintf(prog,"import javax.swing.*;\n");
fprintf(prog,"import java.applet.*;\n");
fp = fopen ("object.tmp","rt");
if (fp != NULL)
{
fprintf(prog,"\n\nvoid redraw();\n\n");
draw = fopen("draw.ini","rt");
int type=0,c=0;
fgets(object,100,fp);
if (object[strlen(object)-1] == '\n')
object[strlen(object)-1] = NULL;
fgets(path1,100,fp);
do
{
rewind(draw);
while (path1[c] != '=' && path1[c]!= NULL)
c++;
type = atoi(path1+c+1);
c = 0;
fscanf(draw,"%d %s",&c,path1);
do{
char ss[100];
fscanf(draw,"%s\n",ss);
if (type == c)
break;
fscanf(draw,"%d %s",&c,path1);
}while(!feof(draw));
fprintf(prog,"%s %s(",path1,object);
{
FILE *head;
head = fopen("head","at");
fprintf(head,"extern %s %s;\n",path1,object);
fclose(head);
}
//fist arguement
fgets(path1,100,fp);
c=0;
while (path1[c] != '=' && path1[c]!= NULL)
c++;
name = path1+c+1;
if (name[strlen(name)-1] == '\n')
name[strlen(name)-1] = NULL;
if (isdigit(name[0])) fprintf(prog,"%d",atoi(name));
else fprintf(prog,"\"%s\"",name);
fgets(path1,100,fp);c=0;
do{
while (path1[c] != '=' && path1[c]!= NULL)
c++;
name = path1+c+1;
if (name[strlen(name)-1] == '\n')
name[strlen(name)-1] = NULL;
if (isdigit(name[0]))
fprintf(prog,",%d",atoi(name));
else
fprintf(prog,",\"%s\"",name);
fgets(path1,100,fp);c=0;
}while (strcmp(path1,"**********\n") != 0 && !(feof(fp)));
fprintf(prog,");\n");
fgets(object,100,fp);fgets(path1,100,fp);
object[strlen(object)-1] = NULL;
}while (!feof(fp));
fclose(draw);
fclose(fp);
}
fprintf(prog,"\n\nint main()\n{\n");
fprintf(prog,"\tint gdriver = VGA, gmode=VGAMED, errorcode;\n");fprintf(prog,"\tinitgraph(&gdriver, &gmode,\"\");\n");
fprintf(prog,"\terrorcode = graphresult();");fprintf(prog,"\n\tif (errorcode != grOk) // an error occurred \n");fprintf(prog,"\t\t{\n");
fprintf(prog,"\t\tprintf(\"Graphics error:\");\n");fprintf(prog,"\t\tprintf(\"Press any key to halt:\");\n");fprintf(prog,"\t\tgetch();\n");fprintf(prog,"\t\texit(1);\n\t\t}\n");
fprintf(prog,"\nredraw();");
fprintf(prog,"\nmouse_present();\nshow_mouse();");
fprintf(prog,"\nwhile(1)\n{\nfocus = -1;key = 0;\n");
fprintf(prog,"\tmouse1 = mouse;\n\tmouse = status();");
fprintf(prog,"\tif (kbhit()) \n\t\tkey = getch();\n");
//start of events
fp = fopen("object.tmp","rt");
draw = fopen("code.tmp","rt");
if (fp != NULL && draw != NULL)
{
fgets(object,100,fp);
do{
object[strlen(object)-1] = NULL;
fprintf(prog,"\tif (inarea(mouse.x,mouse.y,%s.x1,%s.y1,%s.x2,%s.y2))\n\t{\n\t\tfocus = %s.action();\n",
object,object,object,object,object);
//events are writen here
rewind(draw);
fgets(path1,100,draw);
do{
int op = 0;
while (path1[op++] != ' ');
name=path1+op;
if (path1[strlen(path1) -1] == '\n')
path1[strlen(path1) -1] = NULL;
if (strncmp(object,name,strlen(object)) == 0)
fprintf(prog,"\t\t%s;\n",name);
op = 1;fgetc(draw);
while (op != 0)
{
if (path1[0] == '\"')
while (fgetc(draw) == '\"');
else if (path1[0] == '\'')
while (fgetc(draw) == '\'');
else if (path1[0] =='{') op++;
else if (path1[0] =='}') op--;
path1[0] = fgetc(draw);
}//read till end of function
fgets(path1,100,draw);
}while (!feof(draw));
//events are completed here
fprintf(prog,"\t}//end of %s\n\n",object);
while (strcmp(object,"**********\n") != 0)
fgets(object,100,fp);
fgets(object,100,fp);
fgets(path1,100,fp);
}while(!feof(fp));
fclose(fp);
}
fclose(draw);
//end of events
fprintf(prog,"\n}//end of main program execution loop");
fprintf(prog,"\n}//end of function main");
fprintf(prog,"\n\nvoid redraw()\n\t{\n");
fprintf(prog,"char pattern[8];\n");
fp = fopen("draw.tmp","rt");
while (!feof(fp) && fp != NULL)
{
fscanf(fp,"%s ",&object);
int sx,sy,ex,ey,thk,ls,col,fs,fc;
unsigned int fonts,fontn,fontdir;
char cp[8];
sx=sy=ex=ey=thk=ls=col=fs=fc=fonts=fontn=fontdir=0;
if (strcmp(object,"object") == 0)
{
fgets(object,100,fp);
*(object + strlen(object) -1 ) = NULL;
fprintf(prog,"%s.draw();\n",object);
}//end of drawing objects
else if (strcmp(object,"print") == 0)
{
fscanf(fp,"%03d,%03d,",
&sx,&sy);
fgets(object,100,fp);
*(object + strlen(object) -1 ) = NULL;
fprintf(prog,"gotoxy(%d,%d);\n",sx,sy);
fprintf(prog,"printf(\"%s\");\n",object);
}//end of text
else if (strcmp(object,"line") == 0 || strcmp(object,"rectangle") == 0)
{
fscanf(fp,"%03d,%03d,%03d,%03d,%03d,%03d,%03d,%07d\n",
&sx,&sy,&ex,&ey,&col,&thk,&ls,&fontn);
fprintf(prog,"setcolor(%d);setlinestyle(%d,%d,%d);\n",col,ls,fontn,thk);
if (strcmp(object,"rectangle") == 0)
fprintf(prog,"rectangle(%d,%d,%d,%d);\n",sx,sy,ex,ey);
else
fprintf(prog,"line(%d,%d,%d,%d);\n",sx,sy,ex,ey);
}//end of drawing a line
else if (strcmp(object,"bar") == 0)
{
fscanf(fp,"%03d,%03d,%03d,%03d,%03d,%03d\n",
&sx,&sy,&ex,&ey,&fc,&fs);
fprintf(prog,"setfillstyle(%d,%d);\n",fs,fc);
fprintf(prog,"bar(%d,%d,%d,%d);\n",sx,sy,ex,ey);
}//end of drawing a rectangle
else if (strcmp(object,"barp") == 0)
{
fscanf(fp,"%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d\n",
&sx,&sy,&ex,&ey,&fc,
&cp[0],&cp[1],&cp[2],&cp[3],&cp[4],&cp[5],&cp[6],&cp[7]);
fprintf(prog,"\npattern[0] = %d;",cp[0]);fprintf(prog,"\npattern[1] = %d;",cp[1]);fprintf(prog,"\npattern[2] = %d;",cp[2]);fprintf(prog,"\npattern[3] = %d;",cp[3]);
fprintf(prog,"\npattern[4] = %d;",cp[4]);fprintf(prog,"\npattern[5] = %d;",cp[5]);fprintf(prog,"\npattern[6] = %d;",cp[6]);fprintf(prog,"\npattern[7] = %d;",cp[7]);
fprintf(prog,"\nsetfillpattern(pattern,%d);\n",fc);
fprintf(prog,"bar(%d,%d,%d,%d);\n",sx,sy,ex,ey);
}
else if (strcmp(object,"text") == 0)
{
fscanf(fp,"%02d,%03d,%03d,%02d,%02d,%02d,",
&col,&sx,&sy,
&fontn,&fontdir,&fonts);
fgets(object,100,fp);
*(object + strlen(object) -1 ) = NULL;
fprintf(prog,"setcolor(%d);\n",col);
fprintf(prog,"settextstyle(%d,%d,%d);\n",fontn,fontdir,fonts);
fprintf(prog,"outtextxy(%d,%d,\"%s\");\n",sx,sy,object);
}//end of text
else if (strcmp(object,"ellipse") == 0)
{
fscanf(fp,"%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d\n",
&sx,&sy,&ex,&ey,&fonts,&fontn,&col,&thk);
fprintf(prog,"setcolor(%d);\n",col);
fprintf(prog,"setlinestyle(0,0,%d);\n",thk);
fprintf(prog,"ellipse(%d,%d,%d,%d,%d,%d);\n",sx,sy,ex,ey,fonts,fontn);
}//end of ellipse
else if (strcmp(object,"pie") == 0)
{
fscanf(fp,"%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d\n",
&sx,&sy,&ex,&ey,&fonts,&fontn,
&col,&thk,&fc,&fs);
fprintf(prog,"setcolor(%d);\n",col);
fprintf(prog,"setlinestyle(0,0,%d);\n",thk);
fprintf(prog,"setfillstyle(%d,%d);\n",fs,fc);
fprintf(prog,"sector(%d,%d,%d,%d,%d,%d);\n",sx,sy,ex,ey,fonts,fontn);
}//end of drawing simple piechart
else if (strcmp(object,"piepattern") == 0)
{
int xradius,yradius;
fscanf(fp,"%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d\n",
&sx,&sy,
&ex,&ey,
&xradius,&yradius,
&col,&thk,&fc,
&cp[0],&cp[1],&cp[2],&cp[3],&cp[4],&cp[5],&cp[6],&cp[7]);
fprintf(prog,"setcolor(%d);\n",col);
fprintf(prog,"setlinestyle(0,0,%d);\n",thk);
fprintf(prog,"\npattern[0] = %d;",cp[0]);fprintf(prog,"\npattern[1] = %d;",cp[1]);fprintf(prog,"\npattern[2] = %d;",cp[2]);fprintf(prog,"\npattern[3] = %d;",cp[3]);
fprintf(prog,"\npattern[4] = %d;",cp[4]);fprintf(prog,"\npattern[5] = %d;",cp[5]);fprintf(prog,"\npattern[6] = %d;",cp[6]);fprintf(prog,"\npattern[7] = %d;",cp[7]);
fprintf(prog,"setfillpattern(pattern,%d);\n",fc);
fprintf(prog,"sector(%d,%d,%d,%d,%d,%d);\n",sx,sy,ex,ey,fonts,fontn);
}//end of complex pie chart
else if (strcmp(object,"fillellipse") == 0)
{
fscanf(fp,"%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d\n",
&sx,&sy,&ex,&ey,
&col,&thk,&fc,&fs);
fprintf(prog,"setcolor(%d);\n",col);
fprintf(prog,"setlinestyle(0,0,%d);\n",thk);
fprintf(prog,"setfillstyle(%d,%d);\n",fs,fc);
fprintf(prog,"fillellipse(%d,%d,%d,%d);\n",sx,sy,ex,ey);
}//end of fillellipse simple
else if (strcmp(object,"fillellipsep") == 0)
{
fscanf(fp,"%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d\n",
&sx,&sy,&ex,&ey,
&col,&thk,&fc,
&cp[0],&cp[1],&cp[2],&cp[3],&cp[4],&cp[5],&cp[6],&cp[7]);
fprintf(prog,"setcolor(%d);\n",col);
fprintf(prog,"setlinestyle(0,0,%d);\n",thk);
fprintf(prog,"\npattern[0] = %d;",cp[0]);fprintf(prog,"\npattern[1] = %d;",cp[1]);fprintf(prog,"\npattern[2] = %d;",cp[2]);fprintf(prog,"\npattern[3] = %d;",cp[3]);
fprintf(prog,"\npattern[4] = %d;",cp[4]);fprintf(prog,"\npattern[5] = %d;",cp[5]);fprintf(prog,"\npattern[6] = %d;",cp[6]);fprintf(prog,"\npattern[7] = %d;",cp[7]);
fprintf(prog,"setfillpattern(pattern,%d);\n",fc);
fprintf(prog,"fillellipse(%d,%d,%d,%d);\n",sx,sy,ex,ey);
}//end of complex ellipse filler
else if (strcmp(object,"fillstyle") == 0)
{
fscanf(fp,"%03d,%03d,%02d,%02d,%02d\n",
&sx,&sy,&col,&fc,&fs);
fprintf(prog,"setfillstyle(%d,%d);\n",fs,fc);
fprintf(prog,"floodfill(%d,%d,%d);\n",sx,sy,col);
}//end of floodfilling
else if (strcmp(object,"fillpattern") == 0)
{
fscanf(fp,"%03d,%03d,%02d,%02d,%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d\n",
&sx,&sy,&col,&fc,
&cp[0],&cp[1],&cp[2],&cp[3],&cp[4],&cp[5],&cp[6],&cp[7]);
fprintf(prog,"\npattern[0] = %d;",cp[0]);fprintf(prog,"\npattern[1] = %d;",cp[1]);fprintf(prog,"\npattern[2] = %d;",cp[2]);fprintf(prog,"\npattern[3] = %d;",cp[3]);
fprintf(prog,"\npattern[4] = %d;",cp[4]);fprintf(prog,"\npattern[5] = %d;",cp[5]);fprintf(prog,"\npattern[6] = %d;",cp[6]);fprintf(prog,"\npattern[7] = %d;",cp[7]);
fprintf(prog,"setfillpattern(pattern,%d);\n",fc);
fprintf(prog,"floodfill(%d,%d,%d);\n",sx,sy,col);
}//end of fill pattern
else if (strcmp(object,"polygon") == 0)
{
fscanf(fp,"%03d,%03d,%03d,%03d,%07d\n",
&fontdir,&col,&ls,&thk,&fontn);
int points[30];
fprintf(prog,"{\nint poly[] = {");
for (int i = 0; i < fontdir*2 && i < 30;i+=2)
{
fscanf(fp,"%03d,%03d",&points[i],&points[i+1]);
fprintf(prog,"%3d,%3d,",points[i],points[i+1]);
}//end of for next loop
fprintf(prog,"0};\nsetcolor(%d);\n",col);
fprintf(prog,"setlinestyle(%d,%d,%d);\n",ls,fontn,thk);
fprintf(prog,"drawpoly(%d,poly);}\n",fontdir);
}//end of simple polygon
else if (strcmp(object,"fillpolygon") == 0)
{
fscanf(fp,"%03d,%03d,%03d,%03d,%03d,%03d,%07d\n",
&fontdir,&col,&ls,&thk,&fc,&fs,&fontn);
int points[30];
fprintf(prog,"{\nint poly[] = {");
for (int i = 0; i < fontdir*2 && i < 30;i+=2)
{
fscanf(fp,"%03d,%03d",&points[i],&points[i+1]);
fprintf(prog,"%3d,%3d,",points[i],points[i+1]);
}//end of for next loop
fprintf(prog,"0};\nsetcolor(%d);\n",col);
fprintf(prog,"setlinestyle(%d,0,%d);\n",ls,fontn,thk);
fprintf(prog,"setfillstyle(%d,%d);\n",fs,fc);
fprintf(prog,"fillpoly(%d,poly);}\n",fontdir);
}//end of simple polygon filling simple
else if (strcmp(object,"fillpolygonp") == 0)
{
fscanf(fp,"%03d,%03d,%03d,%03d,%03d,%07d,%03d,%03d,%03d,%03d,%03d,%03d,%03d,%03d\n",
&fontdir,&col,&ls,&thk,&fc,&fontn,
&cp[0],&cp[1],&cp[2],&cp[3],&cp[4],&cp[5],&cp[6],&cp[7]);
int points[30];
fprintf(prog,"{\nint poly[] = {");
for (int i = 0; i < fonts*2 && i < 30;i+=2)
{
fscanf(fp,"%03d,%03d",&points[i],&points[i+1]);
fprintf(prog,"%3d,%3d,",points[i],points[i+1]);
}//end of for next loop
fprintf(prog,"0};\nsetcolor(%d);\n",col);
fprintf(prog,"setlinestyle(%d,%d,%d);\n",ls,fontn,thk);
fprintf(prog,"\npattern[0] = %d;",cp[0]);fprintf(prog,"\npattern[1] = %d;",cp[1]);fprintf(prog,"\npattern[2] = %d;",cp[2]);fprintf(prog,"\npattern[3] = %d;",cp[3]);
fprintf(prog,"\npattern[4] = %d;",cp[4]);fprintf(prog,"\npattern[5] = %d;",cp[5]);fprintf(prog,"\npattern[6] = %d;",cp[6]);fprintf(prog,"\npattern[7] = %d;",cp[7]);
fprintf(prog,"setfillpattern(pattern,%d);\n",fc);
fprintf(prog,"fillpoly(%d,poly);}\n",fontdir);
}//end of simple polygon filling simple
else if (strcmp(object,"bmp") == 0)
{
int sx,sy,ex,ey;
fscanf(fp,"%03d,%03d,%03d,%03d,%s\n",
&sx,&sy,&ex,&ey,&object);
fprintf(prog,"loadbmp(\"%s\",%d,%d,%d,%d);\n",object,sx,sy,ex,ey);
}//end of loading bitmaps
}//end of parsing all values
fclose(fp);
fprintf(prog,"\n\t}//end of redrawing all objects\n\n");
fclose(prog);
free(path);
free(path1);
}//end of function
int fc(char *file1,char *file2,char *dest)
{
FILE *src,*dst;
src = fopen(file1,"rt");
dst = fopen(dest,"at");
if (dst == NULL)
return 1;
char *buffer = (char *)calloc(1,100);
if (src != NULL)
{
fgets(buffer,100,src);
do{
fprintf(dst,"%s",buffer);
fgets(buffer,100,src);
}while (!feof(src));
fclose(src);
}
src = fopen(file2,"rt");
if (src != NULL)
{
fgets(buffer,100,src);
do{
fprintf(dst,"%s",buffer);
fgets(buffer,100,src);
}while (!feof(src));
fclose(src);
}
free(buffer);
fclose(dst);
return 0;
}
| [
"github@nparashuram.com"
] | github@nparashuram.com |
be25d908a6d455b2b3e2e842c7a68adcdf78391d | f7a3844b5d8800c56e4a9cf93cea55c75124af8a | /NMEExtensions/sources/iphone/ActivityIndicator.h | b98b1bd174fd7a6e0f171fa6fad99a05aa035df8 | [
"MIT"
] | permissive | cristibaluta/sdk.ralcr | 4b88b1b8e1d5d4c84196acba407b16cce1071454 | 7248ae917fc2fd7f0a5f162fec33e2df8d4b2203 | refs/heads/master | 2021-05-28T20:58:35.154651 | 2013-07-02T15:58:18 | 2013-07-02T15:58:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 187 | h | #ifndef ActivityIndicator
#define ActivityIndicator
namespace ralcr {
void new_activity_indicator (int x, int y, bool white, bool large);
void destroy_activity_indicator();
}
#endif
| [
"cristi.baluta@gmail.com"
] | cristi.baluta@gmail.com |
8cb63b9b78cd536d71ab063985999366b19faebc | 3d23b115ade7779122b269df86b3adcf01918cd3 | /graphs/mst.cpp | 00c01916447df63821c8d787fc354ec42d4ff3bf | [] | no_license | Pravesh-Jamgade/code | 19938fb15f2df8b7d62840e4b0186d246e40f307 | ea81ec55199eed885c6a03535aaecd06e5571474 | refs/heads/master | 2023-08-19T03:36:39.593886 | 2021-09-18T14:48:34 | 2021-09-18T14:48:34 | 407,887,780 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 961 | cpp | #include<bits/stdc++.h>
using namespace std;
const int MAX = 1e4 + 5;
int id[MAX], nodes, edges;
pair<long long, pair<int,int>> p[MAX];
void intialize(){
for(int i=0; i< MAX; i++){
id[i] = i;
}
}
int root(int x){
while(id[x] != x){
id[x] = id[id[x]];
x = id[x];
}
return x;
}
void union1(int x, int y){
int p = root(x);
int q = root(y);
id[p] = id[q];
}
long long kruskal(pair<long long, pair<int,int>> p[]){
int x,y;
long long cost, minCost=0;
for(int i=0; i< edges; i++){
x = p[i].second.first;
y = p[i].second.second;
cost = p[i].first;
if(root(x) != root(y)){
minCost += cost;
union1(x,y);
}
}
return minCost;
}
int main(){
freopen("input.txt", "r", stdin);
int x,y;
long long weight, cost, minCost;
intialize();
cin>>nodes>>edges;
for(int i=0; i< edges; i++){
cin>>x>>y>>weight;
p[i] = make_pair(weight, make_pair(x,y));
}
sort(p, p+edges);
minCost = kruskal(p);
cout<<minCost<<endl;
return 0;
} | [
"praveshjamgade@gmail.com"
] | praveshjamgade@gmail.com |
8593be8827ca07d71130a0b3aa9c0b4141b5b216 | b77349e25b6154dae08820d92ac01601d4e761ee | /List/Ultimate Grid/Examples/BasicDlg/Ex3Dlg.cpp | 89b362fda7fa827ec412e6d43d762dbb00ef1ade | [] | no_license | ShiverZm/MFC | e084c3460fe78f820ff1fec46fe1fc575c3e3538 | 3d05380d2e02b67269d2f0eb136a3ac3de0dbbab | refs/heads/master | 2023-02-21T08:57:39.316634 | 2021-01-26T10:18:38 | 2021-01-26T10:18:38 | 332,725,087 | 0 | 0 | null | 2021-01-25T11:35:20 | 2021-01-25T11:29:59 | null | UTF-8 | C++ | false | false | 3,165 | cpp | // Ex3Dlg.cpp : implementation file
//
#include "stdafx.h"
//: include the header file for the Ultimate Grid derived class
#include "MyCug.h"
#include "Ex3.h"
#include "Ex3Dlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CEx3Dlg dialog
CEx3Dlg::CEx3Dlg(CWnd* pParent /*=NULL*/)
: CDialog(CEx3Dlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CEx3Dlg)
//}}AFX_DATA_INIT
// Note that LoadIcon does not require a subsequent DestroyIcon in Win32
m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}
void CEx3Dlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CEx3Dlg)
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CEx3Dlg, CDialog)
//{{AFX_MSG_MAP(CEx3Dlg)
ON_WM_SYSCOMMAND()
ON_WM_PAINT()
ON_WM_QUERYDRAGICON()
ON_BN_CLICKED(IDC_CHECKXP, OnCheckxp)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CEx3Dlg message handlers
BOOL CEx3Dlg::OnInitDialog()
{
CDialog::OnInitDialog();
// Add "About..." menu item to system menu.
// IDM_ABOUTBOX must be in the system command range.
ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
ASSERT(IDM_ABOUTBOX < 0xF000);
CMenu* pSysMenu = GetSystemMenu(FALSE);
if (pSysMenu != NULL)
{
CString strAboutMenu;
strAboutMenu.LoadString(IDS_ABOUTBOX);
if (!strAboutMenu.IsEmpty())
{
pSysMenu->AppendMenu(MF_SEPARATOR);
pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
}
}
// Set the icon for this dialog. The framework does this automatically
// when the application's main window is not a dialog
SetIcon(m_hIcon, TRUE); // Set big icon
SetIcon(m_hIcon, FALSE); // Set small icon
// TODO: Add extra initialization here
// attach the grid to the static control
m_ctrl.AttachGrid(this, IDC_GRID);
return TRUE; // return TRUE unless you set the focus to a control
}
void CEx3Dlg::OnSysCommand(UINT nID, LPARAM lParam)
{
if ((nID & 0xFFF0) == IDM_ABOUTBOX)
{
CAboutDlg dlgAbout;
dlgAbout.DoModal();
}
else
{
CDialog::OnSysCommand(nID, lParam);
}
}
// If you add a minimize button to your dialog, you will need the code below
// to draw the icon. For MFC applications using the document/view model,
// this is automatically done for you by the framework.
void CEx3Dlg::OnPaint()
{
if (IsIconic())
{
CPaintDC dc(this); // device context for painting
SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
// Center icon in client rectangle
int cxIcon = GetSystemMetrics(SM_CXICON);
int cyIcon = GetSystemMetrics(SM_CYICON);
CRect rect;
GetClientRect(&rect);
int x = (rect.Width() - cxIcon + 1) / 2;
int y = (rect.Height() - cyIcon + 1) / 2;
// Draw the icon
dc.DrawIcon(x, y, m_hIcon);
}
else
{
CDialog::OnPaint();
}
}
// The system calls this to obtain the cursor to display while the user drags
// the minimized window.
HCURSOR CEx3Dlg::OnQueryDragIcon()
{
return (HCURSOR) m_hIcon;
}
void CEx3Dlg::OnCheckxp()
{
UGXPThemes::UseThemes(!UGXPThemes::UseThemes());
Invalidate();
}
| [
"w.z.y2006@163.com"
] | w.z.y2006@163.com |
302d1d8fe98694cace61f4c27a1b7caebc91a5ae | 5a57e7a5c719f385800496bddc70fe44af18e60d | /12019.cpp | 9e7b85c67bb27d0407111ba75332fc7a43785120 | [] | no_license | chensongyu0402/CPE-training | f7f4be21cfcb39b1d2f1fc8607303e7a536fbc33 | 728034d8ed3e71b5e950d2e0e4be6fe8fff75308 | refs/heads/main | 2023-07-12T19:54:57.812733 | 2021-08-20T02:40:32 | 2021-08-20T02:40:32 | 369,966,400 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 571 | cpp | #include<stdio.h>
#include<stdlib.h>
int main(){
char weeks[7][10]={"Saturday","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday"};
int month[12]={31,28,31,30,31,30,31,31,30,31,30,31};
int number=0;
int months=0;
int days=0;
int i,j;
scanf("%d",&number);
char ans[number];
for(i=0;i<number;i++)
{
int sum=0;
scanf("%d %d",&months,&days);
for(j=0;j<months-1;j++)
{
sum+=month[j];
}
sum=sum+days-1;
printf("%s\n",weeks[sum%7]);
}
}
| [
"noreply@github.com"
] | chensongyu0402.noreply@github.com |
3f4dab8b2f4bce87894c7641d042c740921bce99 | 4e3cebaccfabf7b8a36b99460705df12f09788e2 | /Lab/luhn2/luhn2/main.cpp | 09373176c75eda3458dbadeacdd928a712aebd8b | [] | no_license | ChristopherHerre/Chris_Herre_CSC5_40107 | 70ef50dc1182f7a7392949e8db8959690c86e270 | e969fff8617facf7176f3059f4bdfa5e36da030c | refs/heads/master | 2021-01-12T02:57:59.969109 | 2017-08-29T10:24:01 | 2017-08-29T10:24:01 | 78,141,144 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,236 | cpp |
/*
* File: main.cpp
* Author: Chris Herre
*
* Created on March 9, 2017, 1:20 PM
*/
#include <cstdlib>
#include <iostream>
using namespace std;
enum CrdCard
{
AMERICAN_EXPRESS,
VISA,
MASTER_CARD,
DISCOVER,
ALL
};
void luhn(string, short);
string genCC(CrdCard, short&);
short stringToNumber(char);
int main(int argc, char** argv)
{
srand(static_cast<unsigned int>(time(0)));
short ran = static_cast<short>(rand() % 5);
CrdCard card;
switch (ran)
{
case 0:
card = AMERICAN_EXPRESS;
break;
case 1:
card = DISCOVER;
break;
case 2:
card = MASTER_CARD;
break;
case 3:
card = VISA;
break;
case 4:
card = ALL;
break;
}
short len = 0;
string s = genCC(card, len);
cout << "string length: " << s.length() << "\ts= " << s << endl;
luhn(s, len);
return 0;
}
string genCC(CrdCard c, short& len)
{
string start = "";
string cc;
switch (c)
{
case AMERICAN_EXPRESS:
len = 15;
start = (rand() % 2 + 1 == 1 ? "34" : "37");
cout << "card number length: " << len << "\tprefix: " << start
<< endl;
break;
case VISA:
len = rand() % 2 + 1 == 1 ? 13 : 16;
start = "4";
cout << "card number length: " << len << "\tprefix: " << start
<< endl;
break;
case MASTER_CARD:
len = rand() % 2 + 1 == 1 ? 16 : 19;
switch (rand() % 5 + 1)
{
case 1:
start = "51";
break;
case 2:
start = "52";
break;
case 3:
start = "53";
break;
case 4:
start = "54";
break;
case 5:
start = "55";
break;
}
cout << "card number length: " << len << "\tprefix: " << start
<< endl;
break;
case DISCOVER:
len = 16;
switch (rand() % 10 + 1)
{
case 1:
start = "6011";
break;
case 2:
start = "622126";
break;
case 3:
start = "622925";
break;
case 4:
start = "644";
break;
case 5:
start = "645";
break;
case 6:
start = "646";
break;
case 7:
start = "647";
break;
case 8:
start = "648";
break;
case 9:
start = "649";
break;
case 10:
start = "65";
break;
}
cout << "card number length: " << len << "\tprefix: " << start
<< endl;
break;
case ALL:
// not sure how to handle?
cout << "Error - The ALL option is not yet handled!" << endl;
break;
}
// according to the wikipedia page, prepending a 0 to an odd-length
// credit card number will allows the number to be processed from left to
// right
if (len % 2 != 0)
{
cc += '0';
}
cc += start;
for (int i = start.size(); i < len; i++)
{
short c = rand() % 10;
cc += static_cast<char>(c + 48);
}
return cc;
}
void luhn(string number, short len)
{
// the 3rd line that shows the sums
short result[20] = {};
// tab each number in the array
for (int i = 0; i < len; i++)
{
cout << number[i] << "\t";
}
cout << "x" << endl;
for (int i = 0; i < len; i++)
{
short sum = 0;
// converts a string into a short
short num = stringToNumber(number[i]);
// every other number
if (i % 2 != 0)
{
// double and display every other number
short x2 = num * 2;
cout << x2 << "\t";
if (x2 > 9)
{
// sum the digits of a number greater than 9
while (x2 != 0)
{
sum = sum + x2 % 10;
x2 = x2 / 10;
}
// store the sum in the results array
result[i] = sum;
}
else
{
// if less than 9, just display the original
result[i] = x2;
}
}
else
{
// print the numbers from the first line that do not get doubled
cout << num << "\t";
result[i] = num;
}
}
cout << "x" << endl;
short total = 0;
short checkDigit = -1;
// add up the total of the sums
for (int i = 0; i < len; i++)
{
cout << result[i] << "\t";
total += result[i];
}
// print the total of the sums
cout << total << endl;
// print the check digit
cout << "check digit x = " << total * 9 % 10;
}
// example: converts a string "1" to a short 1
short stringToNumber(char s)
{
if (s == '1')
{
return 1;
}
else if (s == '2')
{
return 2;
}
else if (s == '3')
{
return 3;
}
else if (s == '4')
{
return 4;
}
else if (s == '5')
{
return 5;
}
else if (s == '6')
{
return 6;
}
else if (s == '7')
{
return 7;
}
else if (s == '8')
{
return 8;
}
else if (s == '9')
{
return 9;
}
return -1;
}
void flipDigit()
{
} | [
"rcc"
] | rcc |
bd2827fe45981ab628d20c90e9fadcb5838e9ebe | 89dedd7f3c7acc81d12e2bcb2e716f9af9e5fa04 | /third_party/WebKit/Source/core/page/PrintContext.cpp | 5b745438fc202ad1e093cc152bde688882dadd39 | [
"BSD-3-Clause",
"LGPL-2.0-or-later",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-only",
"GPL-1.0-or-later",
"GPL-2.0-only",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-other-copyleft",
"MIT",
"Apache-2.0"
] | permissive | bino7/chromium | 8d26f84a1b6e38a73d1b97fea6057c634eff68cb | 4666a6bb6fdcb1114afecf77bdaa239d9787b752 | refs/heads/master | 2022-12-22T14:31:53.913081 | 2016-09-06T10:05:11 | 2016-09-06T10:05:11 | 67,410,510 | 1 | 3 | BSD-3-Clause | 2022-12-17T03:08:52 | 2016-09-05T10:11:59 | null | UTF-8 | C++ | false | false | 12,914 | cpp | /*
* Copyright (C) 2007 Alp Toker <alp@atoker.com>
* Copyright (C) 2007 Apple Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "core/page/PrintContext.h"
#include "core/frame/FrameView.h"
#include "core/frame/LocalFrame.h"
#include "core/layout/LayoutView.h"
#include "core/layout/api/LayoutViewItem.h"
#include "platform/graphics/GraphicsContext.h"
namespace blink {
// By shrinking to a width of 75% (1.333f) we will render the correct physical
// dimensions in paged media (i.e. cm, pt,). The shrinkage used
// to be 80% (1.25f) to match other browsers - they have since moved on.
// Wide pages will be scaled down more than this.
const float printingMinimumShrinkFactor = 1.333f;
// This number determines how small we are willing to reduce the page content
// in order to accommodate the widest line. If the page would have to be
// reduced smaller to make the widest line fit, we just clip instead (this
// behavior matches MacIE and Mozilla, at least).
// TODO(rhogan): Decide if this quirk is still required.
const float printingMaximumShrinkFactor = 2;
PrintContext::PrintContext(LocalFrame* frame)
: m_frame(frame)
, m_isPrinting(false)
, m_linkedDestinationsValid(false)
{
}
PrintContext::~PrintContext()
{
if (m_isPrinting)
end();
}
void PrintContext::computePageRects(const FloatRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, float& outPageHeight)
{
m_pageRects.clear();
outPageHeight = 0;
if (!m_frame->document() || !m_frame->view() || m_frame->document()->layoutViewItem().isNull())
return;
if (userScaleFactor <= 0) {
DLOG(ERROR) << "userScaleFactor has bad value " << userScaleFactor;
return;
}
LayoutViewItem view = m_frame->document()->layoutViewItem();
const IntRect& documentRect = view.documentRect();
FloatSize pageSize = m_frame->resizePageRectsKeepingRatio(FloatSize(printRect.width(), printRect.height()), FloatSize(documentRect.width(), documentRect.height()));
float pageWidth = pageSize.width();
float pageHeight = pageSize.height();
outPageHeight = pageHeight; // this is the height of the page adjusted by margins
pageHeight -= headerHeight + footerHeight;
if (pageHeight <= 0) {
DLOG(ERROR) << "pageHeight has bad value " << pageHeight;
return;
}
computePageRectsWithPageSizeInternal(FloatSize(pageWidth / userScaleFactor, pageHeight / userScaleFactor));
}
void PrintContext::computePageRectsWithPageSize(const FloatSize& pageSizeInPixels)
{
m_pageRects.clear();
computePageRectsWithPageSizeInternal(pageSizeInPixels);
}
void PrintContext::computePageRectsWithPageSizeInternal(const FloatSize& pageSizeInPixels)
{
if (!m_frame->document() || !m_frame->view() || m_frame->document()->layoutViewItem().isNull())
return;
LayoutViewItem view = m_frame->document()->layoutViewItem();
IntRect docRect = view.documentRect();
int pageWidth = pageSizeInPixels.width();
// We scaled with floating point arithmetic and need to ensure results like 13329.99
// are treated as 13330 so that we don't mistakenly assign an extra page for the
// stray pixel.
int pageHeight = pageSizeInPixels.height() + LayoutUnit::epsilon();
bool isHorizontal = view.style()->isHorizontalWritingMode();
int docLogicalHeight = isHorizontal ? docRect.height() : docRect.width();
int pageLogicalHeight = isHorizontal ? pageHeight : pageWidth;
int pageLogicalWidth = isHorizontal ? pageWidth : pageHeight;
int inlineDirectionStart;
int inlineDirectionEnd;
int blockDirectionStart;
int blockDirectionEnd;
if (isHorizontal) {
if (view.style()->isFlippedBlocksWritingMode()) {
blockDirectionStart = docRect.maxY();
blockDirectionEnd = docRect.y();
} else {
blockDirectionStart = docRect.y();
blockDirectionEnd = docRect.maxY();
}
inlineDirectionStart = view.style()->isLeftToRightDirection() ? docRect.x() : docRect.maxX();
inlineDirectionEnd = view.style()->isLeftToRightDirection() ? docRect.maxX() : docRect.x();
} else {
if (view.style()->isFlippedBlocksWritingMode()) {
blockDirectionStart = docRect.maxX();
blockDirectionEnd = docRect.x();
} else {
blockDirectionStart = docRect.x();
blockDirectionEnd = docRect.maxX();
}
inlineDirectionStart = view.style()->isLeftToRightDirection() ? docRect.y() : docRect.maxY();
inlineDirectionEnd = view.style()->isLeftToRightDirection() ? docRect.maxY() : docRect.y();
}
unsigned pageCount = ceilf((float)docLogicalHeight / pageLogicalHeight);
for (unsigned i = 0; i < pageCount; ++i) {
int pageLogicalTop = blockDirectionEnd > blockDirectionStart ?
blockDirectionStart + i * pageLogicalHeight :
blockDirectionStart - (i + 1) * pageLogicalHeight;
int pageLogicalLeft = inlineDirectionEnd > inlineDirectionStart ? inlineDirectionStart : inlineDirectionStart - pageLogicalWidth;
IntRect pageRect(pageLogicalLeft, pageLogicalTop, pageLogicalWidth, pageLogicalHeight);
if (!isHorizontal)
pageRect = pageRect.transposedRect();
m_pageRects.append(pageRect);
}
}
void PrintContext::begin(float width, float height)
{
ASSERT(width > 0);
ASSERT(height > 0);
// This function can be called multiple times to adjust printing parameters without going back to screen mode.
m_isPrinting = true;
FloatSize originalPageSize = FloatSize(width, height);
FloatSize minLayoutSize = m_frame->resizePageRectsKeepingRatio(originalPageSize, FloatSize(width * printingMinimumShrinkFactor, height * printingMinimumShrinkFactor));
// This changes layout, so callers need to make sure that they don't paint to screen while in printing mode.
m_frame->setPrinting(true, minLayoutSize, originalPageSize, printingMaximumShrinkFactor / printingMinimumShrinkFactor);
}
void PrintContext::end()
{
ASSERT(m_isPrinting);
m_isPrinting = false;
m_frame->setPrinting(false, FloatSize(), FloatSize(), 0);
m_linkedDestinations.clear();
m_linkedDestinationsValid = false;
}
static LayoutBoxModelObject* enclosingBoxModelObject(LayoutObject* object)
{
while (object && !object->isBoxModelObject())
object = object->parent();
if (!object)
return nullptr;
return toLayoutBoxModelObject(object);
}
int PrintContext::pageNumberForElement(Element* element, const FloatSize& pageSizeInPixels)
{
element->document().updateStyleAndLayout();
LocalFrame* frame = element->document().frame();
FloatRect pageRect(FloatPoint(0, 0), pageSizeInPixels);
PrintContext printContext(frame);
printContext.begin(pageRect.width(), pageRect.height());
LayoutBoxModelObject* box = enclosingBoxModelObject(element->layoutObject());
if (!box)
return -1;
FloatSize scaledPageSize = pageSizeInPixels;
scaledPageSize.scale(frame->view()->contentsSize().width() / pageRect.width());
printContext.computePageRectsWithPageSize(scaledPageSize);
int top = box->pixelSnappedOffsetTop(box->offsetParent());
int left = box->pixelSnappedOffsetLeft(box->offsetParent());
size_t pageNumber = 0;
for (; pageNumber < printContext.pageCount(); pageNumber++) {
const IntRect& page = printContext.pageRect(pageNumber);
if (page.x() <= left && left < page.maxX() && page.y() <= top && top < page.maxY())
return pageNumber;
}
return -1;
}
void PrintContext::collectLinkedDestinations(Node* node)
{
for (Node* i = node->firstChild(); i; i = i->nextSibling())
collectLinkedDestinations(i);
if (!node->isLink() || !node->isElementNode())
return;
const AtomicString& href = toElement(node)->getAttribute(HTMLNames::hrefAttr);
if (href.isNull())
return;
KURL url = node->document().completeURL(href);
if (!url.isValid())
return;
if (url.hasFragmentIdentifier() && equalIgnoringFragmentIdentifier(url, node->document().baseURL())) {
String name = url.fragmentIdentifier();
if (Element* element = node->document().findAnchor(name))
m_linkedDestinations.set(name, element);
}
}
void PrintContext::outputLinkedDestinations(GraphicsContext& context, const IntRect& pageRect)
{
if (!m_linkedDestinationsValid) {
// Collect anchors in the top-level frame only because our PrintContext
// supports only one namespace for the anchors.
collectLinkedDestinations(frame()->document());
m_linkedDestinationsValid = true;
}
for (const auto& entry : m_linkedDestinations) {
LayoutObject* layoutObject = entry.value->layoutObject();
if (!layoutObject || !layoutObject->frameView())
continue;
IntRect boundingBox = layoutObject->absoluteBoundingBoxRect();
// TODO(bokan): boundingBox looks to be in content coordinates but
// convertToRootFrame doesn't apply scroll offsets when converting up to
// the root frame.
IntPoint point = layoutObject->frameView()->convertToRootFrame(boundingBox.location());
if (!pageRect.contains(point))
continue;
point.clampNegativeToZero();
context.setURLDestinationLocation(entry.key, point);
}
}
String PrintContext::pageProperty(LocalFrame* frame, const char* propertyName, int pageNumber)
{
Document* document = frame->document();
PrintContext printContext(frame);
// Any non-zero size is OK here. We don't care about actual layout. We just want to collect
// @page rules and figure out what declarations apply on a given page (that may or may not exist).
printContext.begin(800, 1000);
RefPtr<ComputedStyle> style = document->styleForPage(pageNumber);
// Implement formatters for properties we care about.
if (!strcmp(propertyName, "margin-left")) {
if (style->marginLeft().isAuto())
return String("auto");
return String::number(style->marginLeft().value());
}
if (!strcmp(propertyName, "line-height"))
return String::number(style->lineHeight().value());
if (!strcmp(propertyName, "font-size"))
return String::number(style->getFontDescription().computedPixelSize());
if (!strcmp(propertyName, "font-family"))
return style->getFontDescription().family().family().getString();
if (!strcmp(propertyName, "size"))
return String::number(style->pageSize().width()) + ' ' + String::number(style->pageSize().height());
return String("pageProperty() unimplemented for: ") + propertyName;
}
bool PrintContext::isPageBoxVisible(LocalFrame* frame, int pageNumber)
{
return frame->document()->isPageBoxVisible(pageNumber);
}
String PrintContext::pageSizeAndMarginsInPixels(LocalFrame* frame, int pageNumber, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft)
{
DoubleSize pageSize(width, height);
frame->document()->pageSizeAndMarginsInPixels(pageNumber, pageSize, marginTop, marginRight, marginBottom, marginLeft);
return "(" + String::number(floor(pageSize.width())) + ", " + String::number(floor(pageSize.height())) + ") " +
String::number(marginTop) + ' ' + String::number(marginRight) + ' ' + String::number(marginBottom) + ' ' + String::number(marginLeft);
}
int PrintContext::numberOfPages(LocalFrame* frame, const FloatSize& pageSizeInPixels)
{
frame->document()->updateStyleAndLayout();
FloatRect pageRect(FloatPoint(0, 0), pageSizeInPixels);
PrintContext printContext(frame);
printContext.begin(pageRect.width(), pageRect.height());
// Account for shrink-to-fit.
FloatSize scaledPageSize = pageSizeInPixels;
scaledPageSize.scale(frame->view()->contentsSize().width() / pageRect.width());
printContext.computePageRectsWithPageSize(scaledPageSize);
return printContext.pageCount();
}
DEFINE_TRACE(PrintContext)
{
visitor->trace(m_frame);
visitor->trace(m_linkedDestinations);
}
} // namespace blink
| [
"bino.zh@gmail.com"
] | bino.zh@gmail.com |
2b7d4497100d8dd733fd1c562ee56cbbf376c36f | b69757fb6048d2bca2aa62b19d6e50f68bc6381f | /Volume 015/UVa1583.cpp | 5619ec85be76d007d9627130cc0aceed526182ab | [] | no_license | absa1am/UVa-Solutions | afbf5304b5b994ecc009aac2f283ad6ee99df412 | c06d2c23b62d3f2a7409420b0c7afbf906ee5e5b | refs/heads/master | 2020-07-23T13:09:54.158083 | 2020-03-04T09:42:30 | 2020-03-04T09:42:30 | 205,831,241 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 506 | cpp | /*
* Problem: 1584 - Digit Generator
*/
#include <bits/stdc++.h>
#define MAX 100007
using namespace std;
int gen[MAX];
void digitSum(int n) {
int x, sum;
for(int i = 1; i <= n; i++) {
x = i;
sum = x;
while(x > 0) {
sum += (x % 10);
x /= 10;
}
if(!gen[sum]) gen[sum] = i;
}
}
int main()
{
int T, n;
digitSum(MAX);
cin >> T;
while(T--) {
cin >> n;
cout << gen[n] << "\n";
}
return 0;
}
| [
"salaam.mbstu@gmail.com"
] | salaam.mbstu@gmail.com |
aba668714a63e3b52f0f6f5056f1c59a328a48d1 | 3011f9e4204f2988c983b8815187f56a6bf58ebd | /src/ys_library/ysfontrenderer/src/yssystemfontrenderer.cpp | d0a2edc1f1eba15c05c12335e75b2d34f007aba2 | [] | no_license | hvantil/AR-BoardGames | 9e80a0f2bb24f8bc06902785d104178a214d0d63 | 71b9620df66d80c583191b8c8e8b925a6df5ddc3 | refs/heads/master | 2020-03-17T01:36:47.674272 | 2018-05-13T18:11:16 | 2018-05-13T18:11:16 | 133,160,216 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,094 | cpp | /* ////////////////////////////////////////////////////////////
File Name: yssystemfontrenderer.cpp
Copyright (c) 2017 Soji Yamakawa. All rights reserved.
http://www.ysflight.com
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER 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.
//////////////////////////////////////////////////////////// */
#include "yssystemfontrenderer.h"
#include <yssystemfont.h>
YsSystemFontRenderer::YsSystemFontRenderer()
{
fontCache=new YsSystemFontCache;
Initialize();
}
YsSystemFontRenderer::~YsSystemFontRenderer()
{
delete fontCache;
}
void YsSystemFontRenderer::Initialize(void)
{
RequestDefaultFontWithPixelHeight(10);
fontHeightCache=0;
}
YSRESULT YsSystemFontRenderer::RequestDefaultFontWithPixelHeight(unsigned int fontHeightInPix)
{
fontHeightCache=0;
return fontCache->RequestDefaultFontWithHeight(fontHeightInPix);
}
YSRESULT YsSystemFontRenderer::RenderString(YsBitmap &bmp,const wchar_t wStr[],const YsColor &fgCol,const YsColor &bgCol) const
{
unsigned char fg[3]={(unsigned char)fgCol.Ri(),(unsigned char)fgCol.Gi(),(unsigned char)fgCol.Bi()};
unsigned char bg[3]={(unsigned char)bgCol.Ri(),(unsigned char)bgCol.Gi(),(unsigned char)bgCol.Bi()};
YsSystemFontTextBitmap tmpBmp;
if(YSOK==fontCache->MakeRGBABitmap(tmpBmp,wStr,fg,bg,YSTRUE))
{
const unsigned int wid=tmpBmp.Width();
const unsigned int hei=tmpBmp.Height();
unsigned char *bmpBuf=tmpBmp.TransferBitmap();
bmp.SetDirect(wid,hei,bmpBuf);
return YSOK;
}
bmp.CleanUp();
return YSERR;
}
YSRESULT YsSystemFontRenderer::GetTightRenderSize(int &wid,int &hei,const wchar_t wStr[]) const
{
return fontCache->GetTightBitmapSize(wid,hei,wStr);
}
int YsSystemFontRenderer::GetFontHeight(void) const
{
if(0==fontHeightCache)
{
int x;
GetTightRenderSize(x,fontHeightCache,L"X");
}
return fontHeightCache;
}
| [
"harrison.vantil@outlook.com"
] | harrison.vantil@outlook.com |
7881f724449ff7a3c85e8a2ab95258bc607aa63b | 626a2409bd8c30a59d353166f84654ca2e514305 | /collections/StackADT.cpp | 13683942df291ba6c443f9ac425d36cc53effdfd | [] | no_license | wyouyou/smartinote | 8f93fb68dbe011d0eab3da2b32682b4b4a3d5eac | dae169c80f8d19528dc43de0ebdd9961d9ef3e30 | refs/heads/master | 2021-08-19T06:34:38.862511 | 2017-11-25T00:37:33 | 2017-11-25T00:37:33 | 111,965,179 | 0 | 0 | null | 2017-11-25T00:32:15 | 2017-11-25T00:32:14 | null | UTF-8 | C++ | false | false | 1,390 | cpp | //
// StackADT.cpp
// smartinote
//
// Created by Jaye Wang on 10/18/17.
// Copyright © 2017 JayeWang. All rights reserved.
//
#include "StackADT.hpp"
/**~*~*
Destructor
*~**/
template <class T>
Stack<T>::~Stack()
{
StackNode * Curr, next;
// Curr start at the top of the stack
Curr = top;
// Traverse the list deleting each node
while (Curr)
{
next = Curr->next;
delete Curr;
Curr = next;
}
}
/**~*~*
Member function push pushes the argument onto
the stack.
*~**/
template <class T>
bool Stack<T>::push(T item)
{
StackNode* newN = new StackNode;
newN->value = item;
if (!newN)
return false;
// update 2 links, and update the counter
newN->next = top;
top = newN;
count++;
return true;
}
/**~*~*
Member function pop pops the value at the top
of the stack off, and copies it into the variable
passed as an argument.
*~**/
template <class T>
bool Stack<T>::pop(T &item)
{
// empty stack case
if (isEmpty())
return false;
item = top->value;
StackNode *deletePtr = top;
top = top->next;
delete deletePtr;
count--;
return true;
}
/**~*~*
Member function isEmpty returns true if the stack
is empty, or false otherwise.
*~**/
template <class T>
bool Stack<T>::isEmpty()
{
return count == 0;
}
| [
"wang.jaye@yahoo.com"
] | wang.jaye@yahoo.com |
a3250c05e497674fdac373dc27c3df7f50b46e73 | a4fa50c7af93f09b2ddf463ddacd82ed404615f9 | /include/ir/instructions/IRInstruction.h | 4339f4444e48fc43233059c7a5a1e884c7694dd4 | [] | no_license | hadley-siqueira/hdc | 4cd0ab8b98afbc6ee207fc963443e5b89aa0a458 | 4df9e3f8d4070139de292fd98de93d8afbd659b2 | refs/heads/master | 2021-07-08T12:04:59.211561 | 2020-12-28T02:20:46 | 2020-12-28T02:20:46 | 136,125,618 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 233 | h | #ifndef HDC_IR_INSTRUCTION_H
#define HDC_IR_INSTRUCTION_H
#include "ir/IR.h"
namespace hdc {
class IRInstruction : public IR {
public:
virtual void accept(IRVisitor* visitor)=0;
};
}
#endif // IRINSTRUCTION_H
| [
"hadley.siqueira@gmail.com"
] | hadley.siqueira@gmail.com |
bbb859afa0b129c88714ec9aba359ec9a500ac4b | 248baea990108d445b554908ec70f6df680f0dd8 | /src/openSMOKEpp4kineticOptimizer/math/native-dae-solvers/interfaces/Band_Ida.h | 7539596d926bbbfc9e323a643e83bf6436024d64 | [] | no_license | olarrh/OpenSMOKEpp_KineticOptimizer | 7dbf5776441f5c22f30439ac550d58cd5d0ab7b7 | a90468b3583629c4ef3d50c3012f5b40f74c9bcc | refs/heads/master | 2020-06-23T11:37:39.476575 | 2018-07-22T21:43:48 | 2018-07-22T21:43:48 | null | 0 | 0 | null | null | null | null | MacCentralEurope | C++ | false | false | 17,262 | h | /*----------------------------------------------------------------------*\
| ___ ____ __ __ ___ _ _______ |
| / _ \ _ __ ___ _ __ / ___|| \/ |/ _ \| |/ / ____| _ _ |
| | | | | '_ \ / _ \ '_ \\___ \| |\/| | | | | ' /| _| _| |_ _| |_ |
| | |_| | |_) | __/ | | |___) | | | | |_| | . \| |__|_ _|_ _| |
| \___/| .__/ \___|_| |_|____/|_| |_|\___/|_|\_\_____||_| |_| |
| |_| |
| |
| Author: Alberto Cuoci <alberto.cuoci@polimi.it> |
| CRECK Modeling Group <http://creckmodeling.chem.polimi.it> |
| Department of Chemistry, Materials and Chemical Engineering |
| Politecnico di Milano |
| P.zza Leonardo da Vinci 32, 20133 Milano |
| |
|-------------------------------------------------------------------------|
| |
| This file is part of OpenSMOKE++ Suite. |
| |
| Copyright(C) 2015, 2014, 2013 Alberto Cuoci |
| Source-code or binary products cannot be resold or distributed |
| Non-commercial use only |
| Cannot modify source-code for any purpose (cannot create |
| derivative works) |
| |
\*-----------------------------------------------------------------------*/
#include <boost/timer/timer.hpp>
#include <sunmatrix/sunmatrix_sparse.h> /* access to sparse SUNMatrix */
#include <sunlinsol/sunlinsol_dense.h> /* access to dense SUNLinearSolver */
#include <sunlinsol/sunlinsol_band.h> /* access to dense SUNLinearSolver */
#include <sunlinsol/sunlinsol_lapackdense.h> /* access to dense SUNLinearSolver */
#include <sunlinsol/sunlinsol_lapackband.h> /* access to dense SUNLinearSolver */
#include <ida/ida_spils.h> /* access to IDASpils interface */
#include <sunlinsol/sunlinsol_spgmr.h> /* access to spgmr SUNLinearSolver */
namespace DaeSMOKE
{
static void IDAStatistics(void *mem, realtype cpuTime, N_Vector y, N_Vector yp);
void CheckSolver(const int flag_solver);
template<typename Object>
int Solve_Band_Ida(Object* object, const DaeSMOKE::DaeSolver_Parameters& parameters, const double t0, const double tEnd)
{
std::cout << "Band DAE solution (IDA)..." << std::endl;
const int neq = object->NumberOfEquations();
void *mem;
int flag;
int ier;
N_Vector y;
N_Vector yp;
N_Vector res;
N_Vector id;
N_Vector yInitial;
IDAUserData data;
SUNMatrix A;
SUNLinearSolver LS;
mem = NULL;
data = NULL;
y = NULL;
yp = NULL;
res = NULL;
id = NULL;
yInitial = NULL;
A = NULL;
LS = NULL;
// Memory allocation
{
y = N_VNew_Serial(neq);
if (check_flag((void *)y, "N_VNew_Serial", 0)) return(1);
yp = N_VNew_Serial(neq);
if (check_flag((void *)yp, "N_VNew_Serial", 0)) return(1);
res = N_VNew_Serial(neq);
if (check_flag((void *)res, "N_VNew_Serial", 0)) return(1);
id = N_VNew_Serial(neq);
if (check_flag((void *)id, "N_VNew_Serial", 0)) return(1);
yInitial = N_VNew_Serial(neq);
if (check_flag((void *)yInitial, "N_VNew_Serial", 0)) return(1);
}
// User data
data = (IDAUserData)malloc(sizeof *data);
//Initialize
{
object->UnknownsVector(NV_DATA_S(y));
object->UnknownsVector(NV_DATA_S(yInitial));
}
// Initialize and allocate memory
mem = IDACreate();
if (check_flag((void *)mem, "IDACreate", 0)) return(1);
// Set user data
flag = IDASetUserData(mem, data);
if (check_flag(&flag, "IDASetUserData", 1)) return(1);
if (parameters.sparse_linear_algebra() == true)
{
data->J = N_VNew_Serial(neq);
if (check_flag((void *)data->J, "N_VNew_Serial", 0)) return(1);
data->invJ = N_VNew_Serial(neq);
if (check_flag((void *)data->invJ, "N_VNew_Serial", 0)) return(1);
}
// Differential/Algebraic equations
{
object->AlgebraicDifferentialVector(NV_DATA_S(id));
flag = IDASetId(mem, id);
if (check_flag(&flag, "IDASetId", 1)) return(1);
}
// Assign the system
{
//Initialize yp vector to 0.
ida_initial_derivatives(t0, y, yp, data);
flag = IDAInit(mem, ida_equations, ida_print_solution, t0, y, yp);
if (check_flag(&flag, "IDAInit", 1)) return(1);
}
// Set optional input
{
// Tolerances
if (parameters.relative_tolerances().size() == neq)
{
// Allocate memory for absolute tolerances vector
N_Vector abstol;
abstol = N_VNew_Serial(neq);
if (check_flag((void *)abstol, "N_VNew_Serial", 0)) return(1);
// Fill the vector
for (int i=0;i<neq;i++)
NV_Ith_S(abstol,i) = parameters.absolute_tolerances()(i);
// Assign the vector
flag = IDASVtolerances(mem, parameters.relative_tolerance(), abstol);
if (check_flag(&flag, "IDASVtolerances", 1)) return(1);
// Free the memory
N_VDestroy_Serial(abstol);
}
else
{
flag = IDASStolerances(mem, parameters.relative_tolerance(), parameters.absolute_tolerance());
if (check_flag(&flag, "IDASStolerances", 1)) return(1);
}
// Maximum number of steps
flag = IDASetMaxNumSteps(mem, parameters.maximum_number_of_steps());
if (check_flag(&flag, "IDASetMaxNumSteps", 1)) return(1);
/*
// Maximum number of error test failures
flag = IDASetMaxErrTestFails(mem, parameters.maximum_err_test_fails());
if (check_flag(&flag, "IDASetMaxErrTestFails", 1)) return(1);
// Maximum number of non linear iterations
flag = IDASetMaxNonlinIters(mem, parameters.maximum_nl_iter());
if (check_flag(&flag, "IDASetMaxNonlinIters", 1)) return(1);
// Maximum number of convergence failures
flag = IDASetMaxConvFails(mem, parameters.maximum_conv_fails());
if (check_flag(&flag, "IDASetMaxConvFails", 1)) return(1);
// Maximum number of non linear convergence tests
flag = IDASetNonlinConvCoef(mem, parameters.coefficient_nonlinear_convergence_test());
if (check_flag(&flag, "IDASetNonlinConvCoef", 1)) return(1);
// Maximum order
flag = IDASetMaxOrd(mem, parameters.maximum_order());
if (check_flag(&flag, "IDASetMaxOrd", 1)) return(1);
// Initial step size
if (parameters.initial_step() > 0.)
{
flag = IDASetInitStep(mem, parameters.initial_step());
if (check_flag(&flag, "IDASetInitStep", 1)) return(1);
}
// Maximum step size
if (parameters.maximum_step() > 0.)
{
flag = IDASetMaxStep(mem, parameters.maximum_step());
if (check_flag(&flag, "IDASetInitStep", 1)) return(1);
}
*/
}
// Set minimum constraints
if (parameters.non_negative_unknowns() == true)
{
N_Vector constraints;
constraints = NULL;
constraints = N_VNew_Serial(neq);
if (check_flag((void *)constraints, "N_VNew_Serial", 0)) return(1);
// All the unknowns will be constrained to be >= 0
N_VConst(1., constraints);
flag = KINSetConstraints(mem, constraints);
if (check_flag(&flag, "KINSetConstraints", 1)) return(1);
N_VDestroy_Serial(constraints);
}
// Set maximum constraints
if (parameters.maximum_constraints() == true)
{
// Sundials IDA does not support this function
}
// Attach band linear solver
{
// Band solver
if (parameters.sparse_linear_algebra() == false)
{
int mu = object->UpperBand();
int ml = object->LowerBand();
#if OPENSMOKE_USE_MKL == 1
{
std::cout << "IDA with Lapack solver..." << std::endl;
/* Create banded SUNMatrix for use in linear solves -- since this will be factored,
set the storage bandwidth to be the sum of upper and lower bandwidths */
A = SUNBandMatrix(neq, mu, ml, (mu + ml));
if (check_flag((void *)A, "SUNBandMatrix", 0)) return(1);
/* Create banded SUNLinearSolver object for use by CVode */
LS = SUNLapackBand(y, A);
if (check_flag((void *)LS, "SUNLapackBand", 0)) return(1);
}
#else
{
/* Create banded SUNMatrix for use in linear solves -- since this will be factored,
set the storage bandwidth to be the sum of upper and lower bandwidths */
A = SUNBandMatrix(neq, mu, ml, (mu + ml));
if (check_flag((void *)A, "SUNBandMatrix", 0)) return(1);
/* Create banded SUNLinearSolver object for use by CVode */
LS = SUNBandLinearSolver(y, A);
if (check_flag((void *)LS, "SUNBandLinearSolver", 0)) return(1);
}
#endif
/* Attach the matrix and linear solver */
flag = IDADlsSetLinearSolver(mem, LS, A);
if (check_flag(&flag, "IDADlsSetLinearSolver", 1)) return(1);
}
// Iterative (sparse) solver
else
{
/* Create the linear solver SUNSPGMR with left preconditioning
and the default Krylov dimension */
LS = SUNSPGMR(y, PREC_LEFT, 0);
if (check_flag((void *)LS, "SUNSPGMR", 0)) return(1);
/* IDA recommends allowing up to 5 restarts (default is 0) */
ier = SUNSPGMRSetMaxRestarts(LS, 5);
if (check_flag(&ier, "SUNSPGMRSetMaxRestarts", 1)) return(1);
/* Attach the linear sovler */
ier = IDASpilsSetLinearSolver(mem, LS);
if (check_flag(&ier, "IDASpilsSetLinearSolver", 1)) return(1);
// TODO
std::cout << "IDASpilsSetPreconditioner not available" << std::endl;
getchar();
exit(-1);
/* Set the preconditioner solve and setup functions */
//ier = IDASpilsSetPreconditioner(mem, ida_preconditioner_setup, ida_preconditioner_solution);
//if (check_flag(&ier, "IDASpilsSetPreconditioner", 1)) return(1);
}
}
double increasing_factor = 10.;
unsigned int n_steps = 7;
double t_initial = t0;
double dt0 = 0.;
if (t0 == 0.)
t_initial = tEnd / std::pow(increasing_factor, double(n_steps-1));
else
{
double sum = 1.;
for (unsigned int i = 1; i <= n_steps - 1; i++)
sum += std::pow(increasing_factor, double(i));
dt0 = (tEnd - t0) / sum;
t_initial = t0 + dt0;
}
// Call IDACalcIC to correct the initial values.
std::cout << "Initial conditions..." << t0 << " " << tEnd << std::endl;
flag = IDACalcIC(mem, IDA_YA_YDP_INIT, t_initial);
if (check_flag(&flag, "IDACalcIC", 1)) return(1);
// Loop over output times, call IDASolve, and print results.
int flag_solver;
boost::timer::cpu_timer timer;
double tout = t_initial;
for (unsigned int iout = 1; iout <= n_steps; iout++)
{
std::cout << "Integrating to: " << tout << std::endl;
realtype tret;
flag_solver = IDASolve(mem, tout, &tret, y, yp, IDA_NORMAL);
if (check_flag(&flag_solver, "IDASolve", 1)) return(1);
CheckSolver(flag_solver);
if (flag_solver >= 0)
{
realtype sum_abs_yp = N_SumAbs(yp);
realtype norm2_yp = N_Norm2(yp);
// Get scaled norm of the system function
std::cout << " IDA solution: " << "||y'||sum = " << sum_abs_yp << " ||y'||2 = " << norm2_yp << std::endl;
// Check if the solution reached the steady state conditions
if (sum_abs_yp < parameters.minimum_yp()*neq)
break;
}
else
{
break;
}
if (t0 == 0.) tout *= increasing_factor;
else tout += dt0*std::pow(increasing_factor, double(iout));
}
boost::timer::cpu_times elapsed = timer.elapsed();
if (flag_solver >= 0)
{
// Give results back
object->CorrectedUnknownsVector(NV_DATA_S(y));
// Print remaining counters and free memory.
double cpuTime = elapsed.wall / 1.e9;
IDAStatistics(mem, cpuTime, y, yp);
}
else
{
// Recover initial solution
object->CorrectedUnknownsVector(NV_DATA_S(yInitial));
}
// Free memory
IDAFree(&mem);
N_VDestroy_Serial(y);
N_VDestroy_Serial(yInitial);
N_VDestroy_Serial(yp);
N_VDestroy_Serial(id);
N_VDestroy_Serial(res);
free(data);
SUNLinSolFree(LS);
SUNMatDestroy(A);
return flag_solver;
}
static void IDAStatistics(void *mem, realtype cpuTime, N_Vector y, N_Vector yp)
{
int flag;
realtype hused;
long int nst, nni, nje, nre, nreLS;
int kused;
int neq = NV_LENGTH_S(y);
check_flag(&flag, "IDAGetNumSteps", 1);
flag = IDAGetNumNonlinSolvIters(mem, &nni);
flag = IDAGetLastOrder(mem, &kused);
check_flag(&flag, "IDAGetLastOrder", 1);
flag = IDAGetLastStep(mem, &hused);
check_flag(&flag, "IDAGetLastStep", 1);
flag = IDADlsGetNumJacEvals(mem, &nje);
check_flag(&flag, "IDADlsGetNumJacEvals", 1);
flag = IDAGetNumResEvals(mem, &nre);
check_flag(&flag, "IDAGetNumResEvals", 1);
flag = IDADlsGetNumResEvals(mem, &nreLS);
check_flag(&flag, "IDADlsGetNumResEvals", 1);
flag = IDAGetNumSteps(mem, &nst);
check_flag(&flag, "IDAGetNumNonlinSolvIters", 1);
std::cout << std::endl;
std::cout << " * CPU time (s): " << cpuTime << std::endl;
std::cout << " * number of steps: " << nni << std::endl;
std::cout << " * number of functions: " << nre << std::endl;
std::cout << " * number of non linear iter.: " << nst << std::endl;
std::cout << " * number of Jacobians: " << nje << std::endl;
std::cout << " * dummy: " << 0 << std::endl;
std::cout << " * number of functions (Jacobian): " << nreLS << std::endl;
std::cout << " * last order: " << kused << std::endl;
std::cout << " * last step size: " << std::scientific << hused << std::endl;
std::cout << " * mean y': " << std::scientific << N_SumAbs(yp) / double(neq) << std::endl;
std::cout << std::endl;
}
void CheckSolver(const int flag_solver)
{
if (flag_solver >= 0)
{
std::string message("IDA successfully solved: ");
// IDASolve succeeded
if (flag_solver == IDA_SUCCESS) message += "IDA_SUCCESS";
// IDASolve succeeded by reaching the stop point specified through the optional input function IDASetStopTime.
else if (flag_solver == IDA_TSTOP_RETURN) message += "IDA_TSTOP_RETURN";
// IDASolve succeeded and found one or more roots.In this case,
// tret is the location of the root.If nrtfn > 1, call IDAGetRootInfo
// to see which gi were found to have a root.See ß4.5.9.3 for more information.
else if (flag_solver == IDA_ROOT_RETURN) message += "IDA_ROOT_RETURN";
}
else
{
std::string message("IDA solver error: ");
// The ida mem argument was NULL
if (flag_solver == IDA_MEM_NULL) message += "IDA_MEM_NULL";
// One of the inputs to IDASolve was illegal, or some other input to the solver was either illegal or missing.The latter category
// includes the following situations : (a)The tolerances have not been set. (b) A component of the error weight vector became zero during
// internal time - stepping. (c)The linear solver initialization function (called by the user after calling IDACreate) failed to set the linear
// solver - specific lsolve field in ida mem. (d)A root of one of the root functions was found both at a point t and also very near t.In
// any case, the user should see the printed error message for details.
else if (flag_solver == IDA_ILL_INPUT) message += "IDA_ILL_INPUT";
// The solver took mxstep internal steps but could not reach tout.
// The default value for mxstep is MXSTEP DEFAULT = 500.
else if (flag_solver == IDA_TOO_MUCH_WORK) message += "IDA_TOO_MUCH_WORK";
// The solver could not satisfy the accuracy demanded by the user for some internal step.
else if (flag_solver == IDA_TOO_MUCH_ACC) message += "IDA_TOO_MUCH_ACC";
// Error test failures occurred too many times(MXNEF = 10) during
// one internal time step or occurred with | h | = hmin.
else if (flag_solver == IDA_ERR_FAIL) message += "IDA_ERR_FAIL";
// Convergence test failures occurred too many times(MXNCF = 10)
// during one internal time step or occurred with | h | = hmin.
else if (flag_solver == IDA_CONV_FAIL) message += "IDA_CONV_FAIL";
// The linear solverís initialization function failed.
else if (flag_solver == IDA_LINIT_FAIL) message += "IDA_LINIT_FAIL";
// The linear solverís setup function failed in an unrecoverable manner.
else if (flag_solver == IDA_LSETUP_FAIL) message += "IDA_LSETUP_FAIL";
// The linear solverís solve function failed in an unrecoverable manner.
else if (flag_solver == IDA_LSOLVE_FAIL) message += "IDA_LSOLVE_FAIL";
// The inequality constraints were violated and the solver was unable to recover.
else if (flag_solver == IDA_CONSTR_FAIL) message += "IDA_CONSTR_FAIL";
// The userís residual function repeatedly returned a recoverable error flag, but the solver was unable to recover.
else if (flag_solver == IDA_REP_RES_ERR) message += "IDA_REP_RES_ERR";
// The userís residual function returned a nonrecoverable error flag.
else if (flag_solver == IDA_RES_FAIL) message += "IDA_RES_FAIL";
// The rootfinding function failed.
else if (flag_solver == IDA_RTFUNC_FAIL) message += "IDA_RTFUNC_FAIL";
std::cout << message << std::endl;
}
}
} | [
"alberto.cuoci@polimi.it"
] | alberto.cuoci@polimi.it |
b85803ffe2e1e786d1e8f4ed75c9fe837efaf2a2 | 2e78a0266c747f25e66153e8a3af3e0835dbbebe | /Alarme.h | 74cf9b3b7e3258eea732b2740f80efdb20f8b0b4 | [
"MIT"
] | permissive | peddrinn/supervisao_condensador | 18083b532f24a4df9c5754141c41dc243d0152f9 | 1f5af062b45b028cf47aa231ee382f9a3914ee29 | refs/heads/master | 2020-03-19T20:53:54.445915 | 2018-06-23T09:12:59 | 2018-06-23T09:12:59 | 136,921,603 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 185 | h | #ifndef ALARME_H
#define ALARME_H
class Alarme
{
bool status = false;
public:
void toca();
void enviaSms();
void reconhecerAlarme();
Alarme();
~Alarme();
};
#endif // ALARME_H
| [
"noreply@github.com"
] | peddrinn.noreply@github.com |
6b671b524cf6152b531cfd1692c71900a51b93b8 | a8bffa6f4002d1590dab9f7f014ed94e5222e6c1 | /BufferedOp/main.cpp | 572f31687f8891cb553a992548fd6cf1841d8afa | [] | no_license | kreuzerkrieg/CPPJunk | 6305c29bbaaa67633b9ab2fe7c1d4cc45a2228d1 | e4d357ce7750bd4ded61b841d8d823ae6432916d | refs/heads/master | 2022-02-05T03:29:19.600177 | 2022-01-26T15:58:45 | 2022-01-26T15:58:45 | 1,847,032 | 0 | 0 | null | 2020-03-16T08:10:34 | 2011-06-04T15:09:36 | C++ | UTF-8 | C++ | false | false | 164 | cpp | #include <iostream>
struct foo
{
std::string bar(int i)
{ return std::to_string(i); }
};
int main()
{
foo f;
std::cout << f.bar(42) << std::endl;
return 0;
} | [
"kreuzerkrieg@gmail.com"
] | kreuzerkrieg@gmail.com |
78af32310d01f3a3741fd16c6fa79f6fe492bc25 | 8491055b0dba74ff3e245f61d6596fe4353eab17 | /build-helloworld-Desktop_Qt_5_10_0_GCC_64bit-Debug/moc_window2.cpp | fc7f6d9c618b72df419519539ebc935994f2a1d9 | [] | no_license | Abiggg/helloword | 9e552682cf7cc350671c7614ec87b72629244469 | 6c28e3a5cc2e509501a38cc6ff092f22ddc471e7 | refs/heads/master | 2020-03-17T03:51:48.516541 | 2018-11-15T16:03:51 | 2018-11-15T16:03:51 | 133,253,237 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,610 | cpp | /****************************************************************************
** Meta object code from reading C++ file 'window2.h'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.10.0)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include "../helloworld/window2.h"
#include <QtCore/qbytearray.h>
#include <QtCore/qmetatype.h>
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'window2.h' doesn't include <QObject>."
#elif Q_MOC_OUTPUT_REVISION != 67
#error "This file was generated using the moc from 5.10.0. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
QT_BEGIN_MOC_NAMESPACE
QT_WARNING_PUSH
QT_WARNING_DISABLE_DEPRECATED
struct qt_meta_stringdata_StackedDlg_t {
QByteArrayData data[1];
char stringdata0[11];
};
#define QT_MOC_LITERAL(idx, ofs, len) \
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
qptrdiff(offsetof(qt_meta_stringdata_StackedDlg_t, stringdata0) + ofs \
- idx * sizeof(QByteArrayData)) \
)
static const qt_meta_stringdata_StackedDlg_t qt_meta_stringdata_StackedDlg = {
{
QT_MOC_LITERAL(0, 0, 10) // "StackedDlg"
},
"StackedDlg"
};
#undef QT_MOC_LITERAL
static const uint qt_meta_data_StackedDlg[] = {
// content:
7, // revision
0, // classname
0, 0, // classinfo
0, 0, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
0, // signalCount
0 // eod
};
void StackedDlg::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
{
Q_UNUSED(_o);
Q_UNUSED(_id);
Q_UNUSED(_c);
Q_UNUSED(_a);
}
const QMetaObject StackedDlg::staticMetaObject = {
{ &QDialog::staticMetaObject, qt_meta_stringdata_StackedDlg.data,
qt_meta_data_StackedDlg, qt_static_metacall, nullptr, nullptr}
};
const QMetaObject *StackedDlg::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
}
void *StackedDlg::qt_metacast(const char *_clname)
{
if (!_clname) return nullptr;
if (!strcmp(_clname, qt_meta_stringdata_StackedDlg.stringdata0))
return static_cast<void*>(this);
return QDialog::qt_metacast(_clname);
}
int StackedDlg::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = QDialog::qt_metacall(_c, _id, _a);
return _id;
}
QT_WARNING_POP
QT_END_MOC_NAMESPACE
| [
"550153292@qq.com"
] | 550153292@qq.com |
28fec04d730c445ddfbb16ac5f55d90a7eabd61b | 2fecc4cddee8782dfa8d7a8e4c7ab5a6e89dd01c | /t2 q3/c_1.cpp | 447511e88ebe8aadb52f2bf5e3ccc2bf33c65da5 | [] | no_license | baibolatovads/work | 4640deecbae9d0444c0c499439e22bb33a79f7c5 | 833ec34d7dc39ddef4c7b26cc0c446fc9c1ded7f | refs/heads/master | 2020-07-31T17:03:39.246947 | 2019-12-15T09:38:33 | 2019-12-15T09:38:33 | 210,684,631 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 205 | cpp | #include <iostream>
using namespace std;
int main(){
string s;
getline(cin,s);
for(int i = 0; i < s.size(); ++i){
if(s[i] != '\\'){
cout << s[i];
}else{
cout << endl;
}
}
return 0;
} | [
"baibolatovads@gmail.com"
] | baibolatovads@gmail.com |
6dfde1633cfd568d91a5e319662b0a106f8af4b3 | f2ee22679f4015815f567c38089d396971e4c51a | /CAAApplicationFrame.edu/CAAAfrGeoDocument.m/LocalInterfaces/CAAEAfrEditorDocument.h | d38d6a21cda0bae2b1e4fa0c92e54c56f7c27f68 | [] | no_license | poborskii/CAADoc_SelectAgent | 72f0a162fa7a502d6763df15d65d76554e9268fe | 51e0235ef461b5ac1fd710828c29be4bb538c43c | refs/heads/master | 2022-12-06T01:19:28.965598 | 2020-08-31T02:48:11 | 2020-08-31T02:48:11 | 291,596,517 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,864 | h | #ifndef CAAEAfrEditorDocument_H
#define CAAEAfrEditorDocument_H
// COPYRIGHT DASSAULT SYSTEMES 2000
//===========================================================================
// Abstract of the sample:
// ----------------------
//
// Application using a new document type (CAAGeometry) with its own workshop
// and commands.
//
//===========================================================================
// Abstract of the class:
// ----------------------
//
// Data Extension of the Late type CAAGeom.
//
//===========================================================================
// Usage:
// ------
// Launch CATIA V5, File/New In the Dialog Box the new document type
// appears.
//
//===========================================================================
// Inheritance:
// ------------
// CATBaseUnknown (System Framework)
//
//===========================================================================
// Main Method:
// ------------
//
// GetEditor
//
//===========================================================================
// System framework
#include "CATBaseUnknown.h" // Needed to derive from CATBaseUnknown
#include "CATEventSubscriber.h" // Needed for the callback
// ApplicationFrame framework
class CATFrmEditor ; // CATIEditor
class CAAEAfrEditorDocument: public CATBaseUnknown
{
// Used in conjunction with CATImplementClass in the .cpp file
CATDeclareClass;
public:
CAAEAfrEditorDocument();
virtual ~CAAEAfrEditorDocument();
// GetEditor
// ---------
// Retrieves the editor of the document made active.
//
// This method is called by the File->New and the File->Open dialog boxes
// and when swapping from a document to another.
//
//
// The editor is created the first time that GetEditor is called, and is
// kept as
//
CATFrmEditor * GetEditor();
// SetEditorToNullWhenClosed
// --------------------------
// To set to NULL, _Editor when the editor is closed
//
void SetEditorToNullWhenClosed (CATCallbackEvent iEvent,
void *iFrom,
CATNotification *iNotification,
CATSubscriberData iData,
CATCallback iCallBack );
private:
// Copy constructor, not implemented
// Set as private to prevent from compiler automatic creation as public.
CAAEAfrEditorDocument(const CAAEAfrEditorDocument &iObjectToCopy);
// Assignment operator, not implemented
// Set as private to prevent from compiler automatic creation as public.
CAAEAfrEditorDocument & operator = (const CAAEAfrEditorDocument &iObjectToCopy);
private:
// The value created by GetEditor
CATFrmEditor * _pEditor ;
};
#endif
| [
"poborsk_liu@613.com"
] | poborsk_liu@613.com |
b84dc78a7aeb2f6b3ec286a40cb4dd9d862b8c73 | 9c32ed1719782b466c1c7e388bd99495d3046827 | /FourDigitLCD.h | 9405296028ce67632490c4006247ee2ae6bd069f | [
"MIT"
] | permissive | jakesjews/ArduinoBreathalyzer | b3fe1aa3f4dbbd79ff93ea582ce8439780f3999e | 92cd9b883fcbc47b535c05815da39d16775a4a57 | refs/heads/master | 2021-01-10T10:29:39.180065 | 2016-02-28T20:25:36 | 2016-02-28T20:25:36 | 52,169,170 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 114 | h | #include <Arduino.h>
class FourDigitLCD {
public:
FourDigitLCD();
void init();
void display(String str);
};
| [
"jacobjewell@eflexsystems.com"
] | jacobjewell@eflexsystems.com |
5284307c5389c4a1c803e9e8d9d15140e72babe0 | 931a8f1634feb32916cf20ac6cd28a3ee2830ba0 | /Native/System/Preferences/Keyboard/mainwindow.h | a2116532c5da704ef1a536fefa1fe4c246b7624a | [] | no_license | PyroOS/Pyro | 2c4583bff246f80307fc722515c5e90668c00542 | ea709dc1f706c4dfc182d959df14696d604572f8 | refs/heads/master | 2021-01-10T19:47:17.787899 | 2012-04-15T12:20:14 | 2012-04-15T12:20:14 | 4,031,632 | 6 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,822 | h | #ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <gui/window.h>
#include <gui/layoutview.h>
#include <gui/tabview.h>
#include <gui/frameview.h>
#include <gui/checkbox.h>
#include <gui/listview.h>
#include <gui/textview.h>
#include <gui/stringview.h>
#include <gui/slider.h>
#include <gui/button.h>
#include <gui/imagebutton.h>
#include <gui/requesters.h>
#include <util/application.h>
#include <util/message.h>
#include <util/resources.h>
#include <storage/directory.h>
#include <storage/nodemonitor.h>
#include <appserver/keymap.h>
using namespace os;
#include <util/locale.h>
#include <util/settings.h>
#include <storage/file.h>
#include <iostream>
#include <sys/stat.h>
class LanguageInfo {
public:
LanguageInfo( char *s )
{
char bfr[256], *b;
uint i, j;
for( j = 0; j < 3 && *s; j++ ) {
for( b = bfr, i = 0; i < sizeof( bfr ) && *s && *s != '\t'; i++ )
*b++ = *s++;
*b = 0;
for( ; *s == '\t' ; s++ );
m_cInfo[j] = bfr;
}
m_bValid = false;
if( m_cInfo[0][0] != '#' && GetName() != "" && GetAlias() != "" && GetCode() != "" ) {
m_bValid = true;
}
}
bool IsValid() { return m_bValid; }
os::String& GetName() { return m_cInfo[0]; }
os::String& GetAlias() { return m_cInfo[1]; }
os::String& GetCode() { return m_cInfo[2]; }
private:
os::String m_cInfo[3];
bool m_bValid;
};
class MainWindow : public os::Window
{
public:
MainWindow();
void ShowData();
void SetCurrent();
void LoadLanguages();
void Apply();
void Undo();
void Default();
void HandleMessage( os::Message* );
private:
void LoadDatabase();
bool OkToQuit();
#include "mainwindowLayout.h"
NodeMonitor* m_pcMonitor;
os::String cPrimaryLanguage;
os::String cKeymap;
int iDelay, iRepeat, iDelay2, iRepeat2;
int iOrigRow, iOrigRow2;
std::vector<LanguageInfo> m_cDatabase;
};
#endif
| [
"mail@pyro-os.org"
] | mail@pyro-os.org |
d00156f2698792ec084b24eb12851ff5e5faf39f | 88bce4da9acf756244d6b8f4ee1e60d12a62f3d5 | /rgb_all_colors/rgb_all_colors.ino | ef3c35dfe53ca06b5eb682b4882038c338bb35c5 | [] | no_license | fialia/ALL-RGB-LED-COLORS-ARDUINO | e059f7a655e80e6cc756cf84a87437aef6c04f2e | 36a54f2a1ca7561e879f8bd4cd061ba554e32702 | refs/heads/master | 2020-04-15T13:25:59.698714 | 2019-01-08T19:18:07 | 2019-01-08T19:18:07 | 164,716,580 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,402 | ino | int red = 5;
int green = 6;
int blue = 9;
void setup(){
pinMode(red,OUTPUT);
pinMode(green,OUTPUT);
pinMode(blue,OUTPUT);
analogWrite(red,0);
analogWrite(green,0);
analogWrite(blue,0);
}
void loop(){
WHITE();
delay(100);
LIGHTYELLOW();
delay(100);
LIGHTYELLOW1();
delay(100);
YELLOW();
delay(100);
LIGHTORANGE();
delay(100);
ORANGE();
delay(100);
LIGHTRED();
delay(100);
LIGHTRED1();
delay(100);
RED();
delay(100);
REDTOROZE();
delay(100);
REDTOROZE1();
delay(100);
REDTOROZE2();
delay(100);
ROZE();
delay(100);
LIGHTPURPLE();
delay(100);
PURPLE();
delay(100);
DARKPURPLE();
delay(100);
DARKPURPLE1();
delay(100);
PURPLETOBLUE();
delay(100);
PURPLETOBLUE1();
delay(100);
BLUE();
delay(100);
LIGHTBLUE();
delay(100);
LIGHTBLUE1();
delay(100);
LIGHTBLUE2();
delay(100);
LIGHTBLUE3();
delay(100);
LIGHTBLUE4();
delay(100);
BLUETOGREEN();
delay(100);
BLUETOGREEN1();
delay(100);
LIGHTGREEN();
delay(100);
GREEN();
delay(100);
GREENTOWHITE();
delay(100);
GREENTOWHITE1();
delay(100);
GREENTOWHITE2();
delay(100);
GREENTOWHITE3();
delay(100);
GREENTOWHITE4();
delay(100);
}
void WHITE(){
analogWrite(red,255);
analogWrite(green,255);
analogWrite(blue,255);
}
void LIGHTYELLOW(){
analogWrite(red,255);
analogWrite(green,255);
analogWrite(blue,153);
}
void LIGHTYELLOW1(){
analogWrite(red,255);
analogWrite(green,255);
analogWrite(blue,51);
}
void YELLOW(){
analogWrite(red,255);
analogWrite(green,255);
analogWrite(blue,0);
}
void LIGHTORANGE(){
analogWrite(red,255);
analogWrite(green,204);
analogWrite(blue,0);
}
void ORANGE(){
analogWrite(red,255);
analogWrite(green,153);
analogWrite(blue,0);
}
void LIGHTRED(){
analogWrite(red,255);
analogWrite(green,102);
analogWrite(blue,0);
}
void LIGHTRED1(){
analogWrite(red,255);
analogWrite(green,51);
analogWrite(blue,0);
}
void RED(){
analogWrite(red,255);
analogWrite(green,0);
analogWrite(blue,0);
}
void REDTOROZE(){
analogWrite(red,255);
analogWrite(green,0);
analogWrite(blue,51);
}
void REDTOROZE1(){
analogWrite(red,255);
analogWrite(green,0);
analogWrite(blue,102);
}
void REDTOROZE2(){
analogWrite(red,255);
analogWrite(green,0);
analogWrite(blue,204);
}
void ROZE(){
analogWrite(red,255);
analogWrite(green,0);
analogWrite(blue,255);
}
void LIGHTPURPLE(){
analogWrite(red,204);
analogWrite(green,0);
analogWrite(blue,255);
}
void PURPLE(){
analogWrite(red,153);
analogWrite(green,0);
analogWrite(blue,255);
}
void DARKPURPLE(){
analogWrite(red,102);
analogWrite(green,0);
analogWrite(blue,255);
}
void DARKPURPLE1(){
analogWrite(red,51);
analogWrite(green,0);
analogWrite(blue,153);
}
void PURPLETOBLUE(){
analogWrite(red,51);
analogWrite(green,0);
analogWrite(blue,204);
}
void PURPLETOBLUE1(){
analogWrite(red,51);
analogWrite(green,0);
analogWrite(blue,255);
}
void BLUE(){
analogWrite(red,0);
analogWrite(green,0);
analogWrite(blue,255);
}
void LIGHTBLUE(){
analogWrite(red,0);
analogWrite(green,51);
analogWrite(blue,255);
}
void LIGHTBLUE1(){
analogWrite(red,0);
analogWrite(green,102);
analogWrite(blue,255);
}
void LIGHTBLUE2(){
analogWrite(red,0);
analogWrite(green,153);
analogWrite(blue,255);
}
void LIGHTBLUE3(){
analogWrite(red,0);
analogWrite(green,204);
analogWrite(blue,255);
}
void LIGHTBLUE4(){
analogWrite(red,0);
analogWrite(green,255);
analogWrite(blue,255);
}
void BLUETOGREEN(){
analogWrite(red,0);
analogWrite(green,255);
analogWrite(blue,204);
}
void BLUETOGREEN1(){
analogWrite(red,0);
analogWrite(green,255);
analogWrite(blue,153);
}
void LIGHTGREEN(){
analogWrite(red,0);
analogWrite(green,255);
analogWrite(blue,102);
}
void GREEN(){
analogWrite(red,0);
analogWrite(green,255);
analogWrite(blue,0);
}
void GREENTOWHITE(){
analogWrite(red,51);
analogWrite(green,255);
analogWrite(blue,102);
}
void GREENTOWHITE1(){
analogWrite(red,102);
analogWrite(green,255);
analogWrite(blue,102);
}
void GREENTOWHITE2(){
analogWrite(red,153);
analogWrite(green,255);
analogWrite(blue,153);
}
void GREENTOWHITE3(){
analogWrite(red,204);
analogWrite(green,255);
analogWrite(blue,153);
}
void GREENTOWHITE4(){
analogWrite(red,204);
analogWrite(green,255);
analogWrite(blue,204);
}
| [
"noreply@github.com"
] | fialia.noreply@github.com |
540caa209ed345d3c719b4f70abd5a0387fdfd71 | 9760944086e8dcbc68c3b693b5663ca9dbaed010 | /mem_checker/src/track.hh | 99059131459836b5516d761592757156426ce985 | [] | no_license | Nomyo/memory_checker | 32ceebeaece7677d0229e75d83dc8881ae197e90 | 7873465fb9fc7e1fa85b989ed7cb3a1867ef3c1c | refs/heads/master | 2021-01-01T17:59:21.484281 | 2015-12-20T08:55:46 | 2015-12-20T08:55:46 | 98,214,650 | 6 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,882 | hh | #ifndef BREAK_HH
# define BREAK_HH
#include <map>
#include <unistd.h>
#include <sys/ptrace.h>
#include <iostream>
#include <elf.h>
#include <link.h>
#include "tools.hh"
#include <string.h>
#include <sys/mman.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <capstone/capstone.h>
#include <sys/wait.h>
#include "alloc_obj.hh"
#include <list>
#include <asm/unistd.h>
#include <sys/reg.h>
#include <sys/user.h>
class Tracker
{
public:
using pair_name_map = std::pair<std::string, std::map<uintptr_t, unsigned long>>;
Tracker();
Tracker(pid_t pid, int state, char *name);
~Tracker();
void print_breaks();
int get_state();
void set_state(int state);
void set_pid(pid_t pid);
pid_t get_pid();
void print_lib_name(struct link_map *l_map);
/* functions that handle load objects and breakpoints */
void update_break(ElfW(Addr) l_addr, ElfW(Off) off,
ElfW(Xword) size, char *l_name);
void get_shdr(ElfW(Ehdr) *elf_addr, ElfW(Addr) l_addr, char *name);
void load_lo(struct link_map *l_map);
void update(struct link_map *l_map);
int treat_break(struct link_map *l_map, uintptr_t addr,
struct user_regs_struct regs);
void add_break(uintptr_t addr, std::string l_name);
int rem_break(uintptr_t addr, char *l_name, struct user_regs_struct regs);
void rem_loadobj(struct link_map *l_map);
void init_break();
void wrap_alloc_syscall(unsigned long sysnum, struct user_regs_struct regs);
int check_reg(struct user_regs_struct regs);
/* wrapper that analyse pid_ registers, print and fill ls_mem_ struct */
void wrap_mmap(struct user_regs_struct regs);
void wrap_mprotect(struct user_regs_struct regs);
void wrap_munmap(struct user_regs_struct regs);
void wrap_mremap(struct user_regs_struct regs);
void wrap_brk(struct user_regs_struct regs);
void wrap_free(struct user_regs_struct regs);
void wrap_malloc_b(struct user_regs_struct regs);
void wrap_realloc_b(struct user_regs_struct regs);
void wrap_calloc_b(struct user_regs_struct regs);
/* funciton in order to check memory */
void un_protect(struct S_mem map, struct user_regs_struct regs);
void un_protect_all(struct user_regs_struct regs);
void heap_valid(uintptr_t addr, struct user_regs_struct regs);
void re_protect(struct S_mem map, struct user_regs_struct regs);
void re_all_protect(struct user_regs_struct regs);
void is_invalid(uintptr_t addr, struct user_regs_struct regs);
void print_ls_mem();
void get_current_inst(uintptr_t addr);
void show_leaks();
private:
std::map<std::string, std::map<uintptr_t, unsigned long>> mbreak_;
pid_t pid_;
int p_state_;
char *binary_;
std::list<S_mem> ls_mem_;
uintptr_t brk_ = 0;
unsigned long brk_len_ = 0;
unsigned long mem_alloc_ = 0;
unsigned long nb_free_ = 0;
unsigned long nb_alloc_ = 0;
};
#endif /* !BREAK_HH */
| [
"kiaies_a@epita.fr"
] | kiaies_a@epita.fr |
0fb381967718cdcc89340b6743cd6b379c29e053 | 3495e626ced5ed878e6d2b28307a2214ad30feb3 | /ProjectManagement/projectlistwidget.h | 817e35c3a76485641d4992289007a17ef8dfd1bd | [] | no_license | zcharli/carleton-student-project-partner-finder | 240c51641ad5e6e66bc00c9e89f7952a1a511538 | 9567dafaec3ef7b2bd4e9208ae223cbc268b06dc | refs/heads/master | 2021-01-10T01:42:33.265387 | 2016-02-15T07:25:47 | 2016-02-15T07:25:47 | 48,532,910 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,488 | h | #ifndef PROJECTLISTWIDGET_H
#define PROJECTLISTWIDGET_H
#include "sidebarwidget.h"
#include "projectcellwidget.h"
// Subsystem dependencies
#include "DataAccessLayer/project.h"
#include "abstractprojectview.h"
#include <QScrollArea>
#include <QLabel>
#include <QPushButton>
#include <QFormLayout>
#include <QHBoxLayout>
#include <QString>
#include <QVector>
#include "abstractprojectview.h"
enum ListType
{
discoverProjectsList = 0,
myProjectsList,
noList
};
class ProjectListWidget : public AbstractProjectView
{
Q_OBJECT
QScrollArea scrollArea;
public:
explicit ProjectListWidget(QWidget *parent = 0);
~ProjectListWidget();
int listSize;
ListType listType;
/*!
* @param: none
* @desc: gets the list of projects from the database
* @return: void
*/
void refreshList();
/*!
* @param: none
* @desc: adds all of the content of the projects
* to the widget
* @return: void
*/
void displayList();
void viewWillAppear();
void viewWillDisappear();
void cleanUpList();
void setUpList();
signals:
void userToViewProject();
private:
/*
* List of projects
*/
QVector<Project*> projectList;
ProjectCellWidget **projectCells;
QWidget *items;
signals:
public slots:
void handleUserContextSwitch(DetailViewType);
void viewProjectSelected(int index);
};
#endif // PROJECTLISTWIDGET_H
| [
"dabeluchindubisi@yahoo.com"
] | dabeluchindubisi@yahoo.com |
bbccdf2dc039be25460956ffbea70e0da5a57cb9 | 6aeccfb60568a360d2d143e0271f0def40747d73 | /sandbox/task/libs/task/test/test_spin_condition_notify_one.cpp | 9986e1b111d430f14e9bba30eef99775d0d348d4 | [
"BSL-1.0"
] | permissive | ttyang/sandbox | 1066b324a13813cb1113beca75cdaf518e952276 | e1d6fde18ced644bb63e231829b2fe0664e51fac | refs/heads/trunk | 2021-01-19T17:17:47.452557 | 2013-06-07T14:19:55 | 2013-06-07T14:19:55 | 13,488,698 | 1 | 3 | null | 2023-03-20T11:52:19 | 2013-10-11T03:08:51 | C++ | UTF-8 | C++ | false | false | 4,476 | cpp | // Copyright (C) 2007 Anthony Williams
//
// 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)
#include <boost/bind.hpp>
#include <boost/thread.hpp>
#include <boost/test/unit_test.hpp>
#include <boost/task.hpp>
#include <libs/task/test/util.ipp>
#include "condition_test_common.hpp"
namespace tsk = boost::tasks;
void do_test_condition_notify_one_wakes_from_wait()
{
wait_for_flag data;
boost::thread thread(boost::bind(&wait_for_flag::wait_without_predicate, boost::ref(data)));
{
tsk::spin::mutex::scoped_lock lock(data.mutex);
data.flag=true;
data.cond_var.notify_one();
}
thread.join();
BOOST_CHECK(data.woken);
}
void do_test_condition_notify_one_wakes_from_wait_with_predicate()
{
wait_for_flag data;
boost::thread thread(boost::bind(&wait_for_flag::wait_with_predicate, boost::ref(data)));
{
tsk::spin::mutex::scoped_lock lock(data.mutex);
data.flag=true;
data.cond_var.notify_one();
}
thread.join();
BOOST_CHECK(data.woken);
}
void do_test_condition_notify_one_wakes_from_timed_wait()
{
wait_for_flag data;
boost::thread thread(boost::bind(&wait_for_flag::timed_wait_without_predicate, boost::ref(data)));
{
tsk::spin::mutex::scoped_lock lock(data.mutex);
data.flag=true;
data.cond_var.notify_one();
}
thread.join();
BOOST_CHECK(data.woken);
}
void do_test_condition_notify_one_wakes_from_timed_wait_with_predicate()
{
wait_for_flag data;
boost::thread thread(boost::bind(&wait_for_flag::timed_wait_with_predicate, boost::ref(data)));
{
tsk::spin::mutex::scoped_lock lock(data.mutex);
data.flag=true;
data.cond_var.notify_one();
}
thread.join();
BOOST_CHECK(data.woken);
}
void do_test_condition_notify_one_wakes_from_relative_timed_wait_with_predicate()
{
wait_for_flag data;
boost::thread thread(boost::bind(&wait_for_flag::relative_timed_wait_with_predicate, boost::ref( data)));
{
tsk::spin::mutex::scoped_lock lock(data.mutex);
data.flag=true;
data.cond_var.notify_one();
}
thread.join();
BOOST_CHECK(data.woken);
}
namespace
{
tsk::spin::mutex multiple_wake_mutex;
tsk::spin::condition multiple_wake_cond;
unsigned multiple_wake_count=0;
void wait_for_condvar_and_increase_count()
{
tsk::spin::mutex::scoped_lock lk(multiple_wake_mutex);
multiple_wake_cond.wait(lk);
++multiple_wake_count;
}
}
void do_test_multiple_notify_one_calls_wakes_multiple_threads()
{
boost::thread thread1(wait_for_condvar_and_increase_count);
boost::thread thread2(wait_for_condvar_and_increase_count);
boost::this_thread::sleep(boost::posix_time::milliseconds(200));
multiple_wake_cond.notify_one();
boost::thread thread3(wait_for_condvar_and_increase_count);
boost::this_thread::sleep(boost::posix_time::milliseconds(200));
multiple_wake_cond.notify_one();
multiple_wake_cond.notify_one();
boost::this_thread::sleep(boost::posix_time::milliseconds(200));
{
tsk::spin::mutex::scoped_lock lk(multiple_wake_mutex);
BOOST_CHECK(multiple_wake_count==3);
}
thread1.join();
thread2.join();
thread3.join();
}
void test_condition_notify_one()
{
timed_test(&do_test_condition_notify_one_wakes_from_wait, timeout_seconds, execution_monitor::use_mutex);
timed_test(&do_test_condition_notify_one_wakes_from_wait_with_predicate, timeout_seconds, execution_monitor::use_mutex);
timed_test(&do_test_condition_notify_one_wakes_from_timed_wait, timeout_seconds, execution_monitor::use_mutex);
timed_test(&do_test_condition_notify_one_wakes_from_timed_wait_with_predicate, timeout_seconds, execution_monitor::use_mutex);
timed_test(&do_test_condition_notify_one_wakes_from_relative_timed_wait_with_predicate, timeout_seconds, execution_monitor::use_mutex);
timed_test(&do_test_multiple_notify_one_calls_wakes_multiple_threads, timeout_seconds, execution_monitor::use_mutex);
}
boost::unit_test_framework::test_suite* init_unit_test_suite(int, char*[])
{
boost::unit_test_framework::test_suite* test =
BOOST_TEST_SUITE("Boost.Task: condition test suite");
test->add(BOOST_TEST_CASE(&test_condition_notify_one));
return test;
}
| [
"oliver.kowalke@gmail.com"
] | oliver.kowalke@gmail.com |
e4895e78e5f2611975897f2a169a08ebf85b9335 | 91a882547e393d4c4946a6c2c99186b5f72122dd | /Source/XPSP1/NT/windows/advcore/gdiplus/engine/imaging/api/decodedimg.cpp | 5ebcc1547bcde7a9ff3dcf9f9ae34afd6968184e | [] | no_license | IAmAnubhavSaini/cryptoAlgorithm-nt5src | 94f9b46f101b983954ac6e453d0cf8d02aa76fc7 | d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2 | refs/heads/master | 2023-09-02T10:14:14.795579 | 2021-11-20T13:47:06 | 2021-11-20T13:47:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 28,727 | cpp | /**************************************************************************\
*
* Copyright (c) 1999 Microsoft Corporation
*
* Module Name:
*
* decodedimg.cpp
*
* Abstract:
*
* Implementation of GpDecodedImage class
*
* Revision History:
*
* 05/26/1999 davidx
* Created it.
*
\**************************************************************************/
#include "precomp.hpp"
/**************************************************************************\
*
* Function Description:
*
* Create a GpDecodedImage object from a stream or a file
*
* Arguments:
*
* stream/filename - Specifies the input data stream or filename
* image - Returns a pointer to newly created image object
*
* Return Value:
*
* Status code
*
\**************************************************************************/
HRESULT
GpDecodedImage::CreateFromStream(
IStream* stream,
GpDecodedImage** image
)
{
if ( image == NULL )
{
return E_INVALIDARG;
}
GpDecodedImage* pImage = new GpDecodedImage(stream);
if ( pImage == NULL )
{
return E_OUTOFMEMORY;
}
else if ( pImage->IsValid() )
{
*image = pImage;
return S_OK;
}
else
{
delete pImage;
return E_FAIL;
}
}// CreateFromStream()
HRESULT
GpDecodedImage::CreateFromFile(
const WCHAR* filename,
GpDecodedImage** image
)
{
HRESULT hr;
IStream* stream;
hr = CreateStreamOnFileForRead(filename, &stream);
if (SUCCEEDED(hr))
{
hr = CreateFromStream(stream, image);
stream->Release();
}
return hr;
}
/**************************************************************************\
*
* Function Description:
*
* Construct a GpDecodedImage object from an input stream
*
* Arguments:
*
* stream - Pointer to the input stream
*
* Return Value:
*
* NONE
*
\**************************************************************************/
GpDecodedImage::GpDecodedImage(
IStream* stream
)
{
// Hold a reference to the input stream
inputStream = stream;
inputStream->AddRef();
// Initialize other fields to their default values
decoder = NULL;
decodeCache = NULL;
cacheFlags = IMGFLAG_READONLY;
gotProps = FALSE;
propset = NULL;
// Set override resolution to zero (i.e., no override)
xdpiOverride = 0.0;
ydpiOverride = 0.0;
SetValid ( GetImageDecoder() == S_OK );
}
/**************************************************************************\
*
* Function Description:
*
* GpDecodedImage destructor
*
* Arguments:
*
* NONE
*
* Return Value:
*
* NONE
*
\**************************************************************************/
GpDecodedImage::~GpDecodedImage()
{
if (decodeCache)
decodeCache->Release();
if (decoder)
{
decoder->TerminateDecoder();
decoder->Release();
}
if (inputStream)
inputStream->Release();
if (propset)
propset->Release();
SetValid(FALSE); // so we don't use a deleted object
}
/**************************************************************************\
*
* Function Description:
*
* Get the device-independent physical dimension of the image
* in unit of 0.01mm
*
* Arguments:
*
* size - Buffer for returning physical dimension information
*
* Return Value:
*
* Status code
*
\**************************************************************************/
HRESULT
GpDecodedImage::GetPhysicalDimension(
OUT SIZE* size
)
{
// Query basic image info
ImageInfo imageinfo;
HRESULT hr;
hr = InternalGetImageInfo(&imageinfo);
if (SUCCEEDED(hr))
{
size->cx = Pixel2HiMetric(imageinfo.Width, imageinfo.Xdpi);
size->cy = Pixel2HiMetric(imageinfo.Height, imageinfo.Ydpi);
}
return hr;
}
/**************************************************************************\
*
* Function Description:
*
* Get basic information about the decoded image object
*
* Arguments:
*
* imageInfo - Buffer for returning basic image info
*
* Return Value:
*
* Status code
*
\**************************************************************************/
HRESULT
GpDecodedImage::GetImageInfo(
OUT ImageInfo* imageInfo
)
{
// Query basic image info
HRESULT hr;
hr = InternalGetImageInfo(imageInfo);
if (SUCCEEDED(hr))
{
// Merge in our own image cache hints
GpLock lock(&objectLock);
if (lock.LockFailed())
hr = IMGERR_OBJECTBUSY;
else
imageInfo->Flags = (imageInfo->Flags & 0xffff) | cacheFlags;
}
return hr;
}
/**************************************************************************\
*
* Function Description:
*
* Set image flags
*
* Arguments:
*
* flags - New image flags
*
* Return Value:
*
* Status code
*
\**************************************************************************/
HRESULT
GpDecodedImage::SetImageFlags(
IN UINT flags
)
{
// Only the top half of the image flag is settable.
if (flags & 0xffff)
return E_INVALIDARG;
// Lock the image object
GpLock lock(&objectLock);
if (lock.LockFailed())
return IMGERR_OBJECTBUSY;
// If image caching is being turn off
// then blow away any cache we may current have
cacheFlags = flags;
if (!(flags & IMGFLAG_CACHING) && decodeCache)
{
decodeCache->Release();
decodeCache = NULL;
}
return S_OK;
}
/**************************************************************************\
*
* Function Description:
*
* Display the image in a GDI device context
*
* Arguments:
*
* hdc - Specifies the destination device context
* dstRect - Specifies the destination rectangle
* srcRect - Specifies the source rectangle
* NULL means the entire image
*
* Return Value:
*
* Status code
*
\**************************************************************************/
HRESULT
GpDecodedImage::Draw(
IN HDC hdc,
IN const RECT* dstRect,
IN OPTIONAL const RECT* srcRect
)
{
// Lock the current image object
GpLock lock(&objectLock);
if (lock.LockFailed())
return IMGERR_OBJECTBUSY;
// !!! TODO
// Eventually we'll create an IImageSink object
// on top of the destination hdc and then ask
// decoder to push image data into that sink.
// For now, always decode into a memory bitmap.
HRESULT hr;
if (decodeCache == NULL)
{
// Allocate a new GpMemoryBitmap object
GpMemoryBitmap* bmp = new GpMemoryBitmap();
if (bmp == NULL)
return E_OUTOFMEMORY;
// Ask the decoder to push data into the memory bitmap
hr = InternalPushIntoSink(bmp);
if (SUCCEEDED(hr))
hr = bmp->QueryInterface(IID_IImage, (VOID**) &decodeCache);
bmp->Release();
if (FAILED(hr))
return hr;
}
// Ask the memory bitmap to draw itself
hr = decodeCache->Draw(hdc, dstRect, srcRect);
// Blow away the memory bitmap cache if needed
if ((cacheFlags & IMGFLAG_CACHING) == 0)
{
decodeCache->Release();
decodeCache = NULL;
}
return hr;
}
/**************************************************************************\
*
* Function Description:
*
* Push image data into an IImageSink
*
* Arguments:
*
* sink - The sink for receiving image data
*
* Return Value:
*
* Status code
*
\**************************************************************************/
HRESULT
GpDecodedImage::PushIntoSink(
IN IImageSink* sink
)
{
// Lock the current image object
GpLock lock(&objectLock);
if (lock.LockFailed())
return IMGERR_OBJECTBUSY;
return InternalPushIntoSink(sink);
}
HRESULT
GpDecodedImage::InternalPushIntoSink(
IImageSink* sink
)
{
// Make sure we have a decoder object
HRESULT hr = GetImageDecoder();
if (FAILED(hr))
return hr;
// Start decoding
hr = decoder->BeginDecode(sink, propset);
if (FAILED(hr))
return hr;
// Decode the source image
while ((hr = decoder->Decode()) == E_PENDING)
Sleep(0);
// Stop decoding
return decoder->EndDecode(hr);
}
/**************************************************************************\
*
* Function Description:
*
* Ask the decoder if it can do the requested operation (color key output,
* channel seperation for now)
*
* Arguments:
*
* Guid - Guid for request the operation (DECODER_TRANSCOLOR,
* DECODER_OUTPUTCHANNEL)
*
* Return Value:
*
* Status code
*
* Revision History:
*
* 11/22/1999 minliu
* Created it.
*
\**************************************************************************/
HRESULT
GpDecodedImage::QueryDecoderParam(
IN GUID Guid
)
{
// Make sure we have a decoder object
HRESULT hResult = GetImageDecoder();
if ( FAILED(hResult) )
{
return hResult;
}
// Query decoder capability for the real codec decoder
hResult = decoder->QueryDecoderParam(Guid);
return hResult;
}// QueryDecoderParam()
/**************************************************************************\
*
* Function Description:
*
* Tell the decoder how to output decoded image data (color key output,
* channel seperation for now)
*
* Arguments:
*
* Guid - Guid for request the operation (DECODER_TRANSCOLOR,
* DECODER_OUTPUTCHANNEL)
* Length - Length of the input parameters
* Value - Value to set the decode parameter
*
* Return Value:
*
* Status code
*
* Revision History:
*
* 11/22/1999 minliu
* Created it.
*
\**************************************************************************/
HRESULT
GpDecodedImage::SetDecoderParam(
IN GUID Guid,
IN UINT Length,
IN PVOID Value
)
{
// Make sure we have a decoder object
HRESULT hResult = GetImageDecoder();
if ( FAILED(hResult) )
{
return hResult;
}
// Set decoder parameters for the real codec decoder
hResult = decoder->SetDecoderParam(Guid, Length, Value);
return hResult;
}// SetDecoderParam()
HRESULT
GpDecodedImage::GetPropertyCount(
OUT UINT* numOfProperty
)
{
// Make sure we have a decoder object
HRESULT hResult = GetImageDecoder();
if ( FAILED(hResult) )
{
return hResult;
}
// Get property item count from the real codec decoder
hResult = decoder->GetPropertyCount(numOfProperty);
return hResult;
}// GetPropertyItemCount()
HRESULT
GpDecodedImage::GetPropertyIdList(
IN UINT numOfProperty,
IN OUT PROPID* list
)
{
// Make sure we have a decoder object
HRESULT hResult = GetImageDecoder();
if ( FAILED(hResult) )
{
return hResult;
}
// Get property item list from the real codec decoder
hResult = decoder->GetPropertyIdList(numOfProperty, list);
return hResult;
}// GetPropertyIdList()
HRESULT
GpDecodedImage::GetPropertyItemSize(
IN PROPID propId,
OUT UINT* size
)
{
// Make sure we have a decoder object
HRESULT hResult = GetImageDecoder();
if ( FAILED(hResult) )
{
return hResult;
}
// Get property item size from the real codec decoder
hResult = decoder->GetPropertyItemSize(propId, size);
return hResult;
}// GetPropertyItemSize()
HRESULT
GpDecodedImage::GetPropertyItem(
IN PROPID propId,
IN UINT propSize,
IN OUT PropertyItem* buffer
)
{
// Make sure we have a decoder object
HRESULT hResult = GetImageDecoder();
if ( FAILED(hResult) )
{
return hResult;
}
// Get property item from the real codec decoder
hResult = decoder->GetPropertyItem(propId, propSize, buffer);
return hResult;
}// GetPropertyItem()
HRESULT
GpDecodedImage::GetPropertySize(
OUT UINT* totalBufferSize,
OUT UINT* numProperties
)
{
// Make sure we have a decoder object
HRESULT hResult = GetImageDecoder();
if ( FAILED(hResult) )
{
return hResult;
}
// Get property size from the real codec decoder
hResult = decoder->GetPropertySize(totalBufferSize, numProperties);
return hResult;
}// GetPropertySize()
HRESULT
GpDecodedImage::GetAllPropertyItems(
IN UINT totalBufferSize,
IN UINT numProperties,
IN OUT PropertyItem* allItems
)
{
// Make sure we have a decoder object
HRESULT hResult = GetImageDecoder();
if ( FAILED(hResult) )
{
return hResult;
}
// Get all property items from the real codec decoder
hResult = decoder->GetAllPropertyItems(totalBufferSize, numProperties,
allItems);
return hResult;
}// GetAllPropertyItems()
HRESULT
GpDecodedImage::RemovePropertyItem(
IN PROPID propId
)
{
// Make sure we have a decoder object
HRESULT hResult = GetImageDecoder();
if ( FAILED(hResult) )
{
return hResult;
}
// Remove this property item from the list
hResult = decoder->RemovePropertyItem(propId);
return hResult;
}// RemovePropertyItem()
HRESULT
GpDecodedImage::SetPropertyItem(
IN PropertyItem item
)
{
// Make sure we have a decoder object
HRESULT hResult = GetImageDecoder();
if ( FAILED(hResult) )
{
return hResult;
}
// Set this property item in the list
hResult = decoder->SetPropertyItem(item);
return hResult;
}// SetPropertyItem()
/**************************************************************************\
*
* Function Description:
*
* Ask the decoder for basic image info
*
* Arguments:
*
* imageinfo - Pointer to buffer for receiving image info
*
* Return Value:
*
* Status code
*
\**************************************************************************/
HRESULT
GpDecodedImage::InternalGetImageInfo(
ImageInfo* imageInfo
)
{
// Lock the current image object
HRESULT hr;
GpLock lock(&objectLock);
if (lock.LockFailed())
hr = IMGERR_OBJECTBUSY;
else
{
// Make sure we have a decoder object
hr = GetImageDecoder();
if (SUCCEEDED(hr))
hr = decoder->GetImageInfo(imageInfo);
if ((xdpiOverride > 0.0) && (ydpiOverride > 0.0))
{
imageInfo->Xdpi = static_cast<double>(xdpiOverride);
imageInfo->Ydpi = static_cast<double>(ydpiOverride);
}
}
return hr;
}
/**************************************************************************\
*
* Function Description:
*
* Ask the decoder for total number of frames in the image
*
* Arguments:
*
* dimensionID - Dimension ID (PAGE, RESOLUTION, TIME) the caller wants to
* get the total number of frame for
* count - Total number of frame
*
* Return Value:
*
* Status code
*
* Revision History:
*
* 11/19/1999 minliu
* Created it.
*
\**************************************************************************/
HRESULT
GpDecodedImage::GetFrameCount(
IN const GUID* dimensionID,
OUT UINT* count
)
{
// Lock the current image object
HRESULT hResult;
GpLock lock(&objectLock);
if ( lock.LockFailed() )
{
hResult = IMGERR_OBJECTBUSY;
}
else
{
// Make sure we have a decoder object
hResult = GetImageDecoder();
if ( SUCCEEDED(hResult) )
{
// Get the frame count from the decoder
hResult = decoder->GetFrameCount(dimensionID, count);
}
}
return hResult;
}// GetFrameCount()
/**************************************************************************\
*
* Function Description:
*
* Get the total number of dimensions the image supports
*
* Arguments:
*
* count -- number of dimensions this image format supports
*
* Return Value:
*
* Status code
*
\**************************************************************************/
STDMETHODIMP
GpDecodedImage::GetFrameDimensionsCount(
UINT* count
)
{
// Lock the current image object
HRESULT hResult;
GpLock lock(&objectLock);
if ( lock.LockFailed() )
{
hResult = IMGERR_OBJECTBUSY;
}
else
{
// Make sure we have a decoder object
hResult = GetImageDecoder();
if ( SUCCEEDED(hResult) )
{
// Get the frame dimension info from the deocder
hResult = decoder->GetFrameDimensionsCount(count);
}
}
return hResult;
}// GetFrameDimensionsCount()
/**************************************************************************\
*
* Function Description:
*
* Get an ID list of dimensions the image supports
*
* Arguments:
*
* dimensionIDs---Memory buffer to hold the result ID list
* count -- number of dimensions this image format supports
*
* Return Value:
*
* Status code
*
\**************************************************************************/
STDMETHODIMP
GpDecodedImage::GetFrameDimensionsList(
GUID* dimensionIDs,
UINT count
)
{
// Lock the current image object
HRESULT hResult;
GpLock lock(&objectLock);
if ( lock.LockFailed() )
{
hResult = IMGERR_OBJECTBUSY;
}
else
{
// Make sure we have a decoder object
hResult = GetImageDecoder();
if ( SUCCEEDED(hResult) )
{
// Get the frame dimension info from the deocder
hResult = decoder->GetFrameDimensionsList(dimensionIDs, count);
}
}
return hResult;
}// GetFrameDimensionsList()
/**************************************************************************\
*
* Function Description:
*
* Select the active frame in the bitmap image
*
* Arguments:
*
* dimensionID - Dimension ID (PAGE, RESOLUTION, TIME) of where the caller
* wants to set the active frame
* frameIndex - Index number of the frame to be selected
*
* Return Value:
*
* Status code
*
* Revision History:
*
* 11/19/1999 minliu
* Created it.
*
\**************************************************************************/
HRESULT
GpDecodedImage::SelectActiveFrame(
IN const GUID* dimensionID,
IN UINT frameIndex
)
{
// Lock the current image object
HRESULT hResult;
GpLock lock(&objectLock);
if ( lock.LockFailed() )
{
hResult = IMGERR_OBJECTBUSY;
}
else
{
// Make sure we have a decoder object
hResult = GetImageDecoder();
if ( SUCCEEDED(hResult) )
{
// Set the active frame in the decoder
hResult = decoder->SelectActiveFrame(dimensionID, frameIndex);
}
}
return hResult;
}// SelectActiveFrame()
/**************************************************************************\
*
* Function Description:
*
* Make sure we have a decoder object associated with the image
*
* Arguments:
*
* NONE
*
* Return Value:
*
* Status code
*
* Note:
*
* We assume the caller has already locked the current image object.
*
\**************************************************************************/
HRESULT
GpDecodedImage::GetImageDecoder()
{
ASSERT(inputStream != NULL);
if (decoder != NULL)
return S_OK;
// Create and initialize the decoder object
return CreateDecoderForStream(inputStream, &decoder, DECODERINIT_NONE);
}
/**************************************************************************\
*
* Function Description:
*
* Get a thumbnail representation for the image object
*
* Arguments:
*
* thumbWidth, thumbHeight - Specifies the desired thumbnail size in pixels
* thumbImage - Return a pointer to the thumbnail image
* The caller should Release it after using it.
*
* Return Value:
*
* Status code
*
\**************************************************************************/
HRESULT
GpDecodedImage::GetThumbnail(
IN OPTIONAL UINT thumbWidth,
IN OPTIONAL UINT thumbHeight,
OUT IImage** thumbImage
)
{
if (thumbWidth && !thumbHeight ||
!thumbWidth && thumbHeight)
{
return E_INVALIDARG;
}
// Ask the decoder for thumbnail image.
// If one is returned, check if the size matches the requested size.
// match: just return the thumbnail returned by the decoder
// mismatch: scale the thumbnail returned by the decoder to the desired size
HRESULT hr;
IImage* img = NULL;
{
GpLock lock(&objectLock);
if (lock.LockFailed())
return IMGERR_OBJECTBUSY;
hr = GetImageDecoder();
if (FAILED(hr))
return hr;
hr = decoder->GetThumbnail(thumbWidth, thumbHeight, &img);
if (SUCCEEDED(hr))
{
ImageInfo imginfo;
hr = img->GetImageInfo(&imginfo);
if (SUCCEEDED(hr) &&
imginfo.Width == thumbWidth || thumbWidth == 0 &&
imginfo.Height == thumbHeight || thumbHeight == 0)
{
*thumbImage = img;
return S_OK;
}
}
else
img = NULL;
}
if (thumbWidth == 0 && thumbHeight == 0)
thumbWidth = thumbHeight = DEFAULT_THUMBNAIL_SIZE;
// Otherwise, generate the thumbnail ourselves using the built-in scaler
// or scale the thumbnail returned by the decoder to the right size
GpMemoryBitmap* bmp;
hr = GpMemoryBitmap::CreateFromImage(
img ? img : this,
thumbWidth,
thumbHeight,
PIXFMT_DONTCARE,
INTERP_AVERAGING,
&bmp);
if (SUCCEEDED(hr))
{
hr = bmp->QueryInterface(IID_IImage, (VOID**) thumbImage);
bmp->Release();
}
if (img)
img->Release();
return hr;
}
/**************************************************************************\
*
* Function Description:
*
* Set the image resolution. Overrides the native resolution of the image.
*
* Arguments:
*
* Xdpi, Ydpi - new resolution
*
* Return Value:
*
* Status code
*
\**************************************************************************/
HRESULT
GpDecodedImage::SetResolution(
IN REAL Xdpi,
IN REAL Ydpi
)
{
HRESULT hr = S_OK;
if ((Xdpi > 0.0) && (Ydpi > 0.0))
{
xdpiOverride = Xdpi;
ydpiOverride = Ydpi;
}
else
{
hr = E_INVALIDARG;
}
return hr;
}
/**************************************************************************\
*
* Function Description:
*
* Get the encoder parameter list size from an encoder object specified by
* input clsid
*
* Arguments:
*
* clsid - Specifies the encoder class ID
* size--- The size of the encoder parameter list
*
* Return Value:
*
* Status code
*
* Revision History:
*
* 03/22/2000 minliu
* Created it.
*
\**************************************************************************/
HRESULT
GpDecodedImage::GetEncoderParameterListSize(
IN CLSID* clsidEncoder,
OUT UINT* size
)
{
return CodecGetEncoderParameterListSize(clsidEncoder, size);
}// GetEncoderParameterListSize()
/**************************************************************************\
*
* Function Description:
*
* Get the encoder parameter list from an encoder object specified by
* input clsid
*
* Arguments:
*
* clsid --- Specifies the encoder class ID
* size----- The size of the encoder parameter list
* pBuffer-- Buffer for storing the list
*
* Return Value:
*
* Status code
*
* Revision History:
*
* 03/22/2000 minliu
* Created it.
*
\**************************************************************************/
HRESULT
GpDecodedImage::GetEncoderParameterList(
IN CLSID* clsidEncoder,
IN UINT size,
OUT EncoderParameters* pBuffer
)
{
return CodecGetEncoderParameterList(clsidEncoder, size, pBuffer);
}// GetEncoderParameterList()
/**************************************************************************\
*
* Function Description:
*
* Save the bitmap image to the specified stream.
*
* Arguments:
*
* stream ------------ Target stream
* clsidEncoder ------ Specifies the CLSID of the encoder to use
* encoderParameters - Optional parameters to pass to the encoder before
* starting encoding
*
* Return Value:
*
* Status code
*
* Revision History:
*
* 03/22/2000 minliu
* Created it.
*
\**************************************************************************/
HRESULT
GpDecodedImage::SaveToStream(
IN IStream* stream,
IN CLSID* clsidEncoder,
IN EncoderParameters* encoderParams,
OUT IImageEncoder** ppEncoderPtr
)
{
if ( ppEncoderPtr == NULL )
{
WARNING(("GpDecodedImage::SaveToStream---Invalid input arg"));
return E_INVALIDARG;
}
// Get an image encoder.
IImageEncoder* pEncoder = NULL;
HRESULT hResult = CreateEncoderToStream(clsidEncoder, stream, &pEncoder);
if ( SUCCEEDED(hResult) )
{
*ppEncoderPtr = pEncoder;
// Pass encode parameters to the encoder.
// MUST do this before getting the sink interface.
if ( encoderParams != NULL )
{
hResult = pEncoder->SetEncoderParameters(encoderParams);
}
if ( (hResult == S_OK) || (hResult == E_NOTIMPL) )
{
// Note: if the codec doesn't support SetEncoderparameters(), it is
// still fine to save the image
// Get an image sink from the encoder.
IImageSink* encodeSink = NULL;
hResult = pEncoder->GetEncodeSink(&encodeSink);
if ( SUCCEEDED(hResult) )
{
// Push bitmap into the encoder sink.
hResult = this->PushIntoSink(encodeSink);
encodeSink->Release();
}
}
}
return hResult;
}// SaveToStream()
/**************************************************************************\
*
* Function Description:
*
* Save the bitmap image to the specified file.
*
* Arguments:
*
* filename ----- Target filename
* clsidEncoder ----- Specifies the CLSID of the encoder to use
* encoderParameters - Optional parameters to pass to the encoder before
* starting encoding
*
* Return Value:
*
* Status code
*
* Revision History:
*
* 03/06/2000 minliu
* Created it.
*
\**************************************************************************/
HRESULT
GpDecodedImage::SaveToFile(
IN const WCHAR* filename,
IN CLSID* clsidEncoder,
IN EncoderParameters* encoderParams,
OUT IImageEncoder** ppEncoderPtr
)
{
IStream* stream;
HRESULT hResult = CreateStreamOnFileForWrite(filename, &stream);
if ( SUCCEEDED(hResult) )
{
hResult = SaveToStream(stream, clsidEncoder,
encoderParams, ppEncoderPtr);
stream->Release();
}
return hResult;
}// SaveToFile()
/**************************************************************************\
*
* Function Description:
*
* Append the bitmap object to current encoder object
*
* Arguments:
*
* encoderParameters - Optional parameters to pass to the encoder before
* starting encoding
*
* Return Value:
*
* Status code
*
* Revision History:
*
* 04/21/2000 minliu
* Created it.
*
\**************************************************************************/
HRESULT
GpDecodedImage::SaveAppend(
IN const EncoderParameters* encoderParams,
IN IImageEncoder* destEncoderPtr
)
{
// The dest encoder pointer can't be NULL. Otherwise, it is a failure
if ( destEncoderPtr == NULL )
{
WARNING(("GpDecodedImage::SaveAppend---Called without an encoder"));
return E_FAIL;
}
HRESULT hResult = S_OK;
// Pass encode parameters to the encoder.
// MUST do this before getting the sink interface.
if ( encoderParams != NULL )
{
hResult = destEncoderPtr->SetEncoderParameters(encoderParams);
}
if ( (hResult == S_OK) || (hResult == E_NOTIMPL) )
{
// Note: if the codec doesn't support SetEncoderparameters(), it is
// still fine to save the image
// Get an image sink from the encoder.
IImageSink* encodeSink = NULL;
hResult = destEncoderPtr->GetEncodeSink(&encodeSink);
if ( SUCCEEDED(hResult) )
{
// Push bitmap into the encoder sink.
hResult = this->PushIntoSink(encodeSink);
encodeSink->Release();
}
}
return hResult;
}// SaveAppend()
| [
"support@cryptoalgo.cf"
] | support@cryptoalgo.cf |
0920bb13659f09d5f6d76a3683a975e5e01366e5 | 0b74b4859c1242fd0793611e36d5778c1c9ece38 | /extern/llvm/tools/clang/include/clang/AST/AST.h | b66b4831542acfe12ac0ee67fb714570526acec0 | [
"NCSA",
"MIT"
] | permissive | abduld/clreflect | 682b98694ec50dfcd65168fdf40e7d04ec44e0e5 | 76b47c518d9b046382618a5e5863f8fe6163e595 | refs/heads/master | 2022-07-15T21:02:58.217422 | 2015-04-07T16:06:07 | 2015-04-07T16:06:07 | 35,754,939 | 0 | 0 | MIT | 2020-02-22T09:59:11 | 2015-05-17T06:36:28 | C++ | UTF-8 | C++ | false | false | 907 | h | //===--- AST.h - "Umbrella" header for AST library --------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file defines the interface to the AST classes.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_CLANG_AST_AST_H
#define LLVM_CLANG_AST_AST_H
// This header exports all AST interfaces.
#include "clang/AST/ASTContext.h"
#include "clang/AST/Decl.h"
#include "clang/AST/DeclCXX.h"
#include "clang/AST/DeclObjC.h"
#include "clang/AST/DeclTemplate.h"
#include "clang/AST/Expr.h"
#include "clang/AST/ExprObjC.h"
#include "clang/AST/Type.h"
#include "clang/AST/StmtVisitor.h"
#endif
| [
"xxuejie@gmail.com"
] | xxuejie@gmail.com |
6d1ab072327bc485eb398f1cdb20b23c28b2e31e | 60e878fc3920b2a22bbcf8f20f2cdfdcc92b1906 | /fighter.h | ac8a0808f55191ad6798e2c16ca8748fe59bcbeb | [] | no_license | adaniele87/CIO_funMains | 69cc5d53214195a4c1722cc7aac571af83762a75 | c77bc3ccc20a569c6515973cde82f1e15ad2923a | refs/heads/master | 2021-01-17T15:27:30.989576 | 2013-11-12T04:23:57 | 2013-11-12T04:23:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 165 | h | #include "object.h"
class Fighter : public Object
{
bool punching;
public:
Fighter();
Fighter(int,int,int = 1);
void getInput();
void draw();
}; | [
"andrew_daniele@hotmail.com"
] | andrew_daniele@hotmail.com |
d1556af60e21acc93e2a2e61c7c7a641d8ba152b | 629330e0607d78026a99850a8184f3924af60f05 | /source/crisscross/md5.h | f1494c6d1a3122278dbb181474715f12cd4a8fd4 | [] | no_license | prophile/crisscross | 682092c8e87e4b948f934cd62f29b10cca000de6 | 1882aff64193627b58258861fb5b240e643254c1 | refs/heads/master | 2016-09-10T00:13:50.150868 | 2009-06-19T21:42:22 | 2009-06-19T22:30:21 | 108,875 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,386 | h | /*
* CrissCross
* A multi-purpose cross-platform library.
*
* A product of Uplink Laboratories.
*
* (c) 2006-2009 Steven Noonan.
* Licensed under the New BSD License.
*
*/
#ifndef __included_cc_md5_h
#define __included_cc_md5_h
#ifdef ENABLE_HASHES
#ifdef ENABLE_MD5
#define MD5_DIGEST_LENGTH 16
/* MD5 context. */
/* @cond */
typedef struct {
cc_uint32_t state[4]; /* state (ABCD) */
cc_uint32_t count[2]; /* number of bits, modulo 2^64 (lsb first) */
union {
cc_uint8_t buf8[64]; /* undigested input */
cc_uint32_t buf32[16]; /* realigned input */
} buf_un;
} cc_md5_ctx;
/* @endcond */
namespace CrissCross
{
namespace Crypto
{
/*! \brief An MD5 hash generator. */
/*!
* In recent years, MD5 hashes have waned in popularity because researchers
* have found that collisions for MD5 are easy to generate. However, this
* sort of attack can be rendered useless when a salt is added to the
* input dataset.
*
* \warning Because MD5 is known to have weaknesses, use at your own risk!
* \sa Hash MD2Hash MD4Hash
*/
class MD5Hash
{
private:
mutable char *m_hashString;
unsigned char *m_hash;
cc_md5_ctx m_state;
public:
/*! \brief The default constructor. */
MD5Hash();
/*! \brief The destructor. */
~MD5Hash();
/*! \brief Runs an MD5 hash on the data provided. */
/*!
* \param _data The data to hash. The buffer does not need to be null
* terminated.
* \param _length The data length in bytes.
* \return Zero on success, nonzero on failure.
*/
int Process(const void *_data, size_t _length);
/*! \brief Runs a hash on the file provided. */
/*!
* \param _reader The pre-opened CoreIOReader to run the hash on.
* \return Zero on success, nonzero on failure.
*/
int Process(CrissCross::IO::CoreIOReader *_reader);
/*! \brief Processes a piece of the dataset. */
/*!
* This function will process only a segment of a larger dataset. It is designed
* to be called multiple times before an eventual Finalize() call.
* \param _data The data segment to hash.
* \param _length The length of the data segment in bytes.
*/
int ProcessBlock(const void *_data, size_t _length);
/*! \brief Finalizes the ProcessBlock() calls and generates the final hash value. */
void Finalize();
/*! \brief Resets the internal MD5 context and hash buffer. */
void Reset();
/*! \brief Converts the internal hash data into an hex string, a human readable format. */
/*!
* The memory location returned by this function is freed when the class
* is destructed.
*/
const char *ToString() const;
/*! \brief Equality operator. */
/*!
* Compares two instances of MD5Hash to see if the hashes are equal.
* \param _other The other instance of MD5Hash to compare to.
*/
bool operator==(const MD5Hash &_other) const;
/*! \brief Inequality operator. */
/*!
* Compares two instances of MD5Hash to see if the hashes are not equal.
* \param _other The other instance of MD5Hash to compare to.
*/
inline bool operator!=(const MD5Hash &_other) const
{
return !(*this == _other);
};
};
}
}
#endif
#endif
#endif
| [
"steven@uplinklabs.net"
] | steven@uplinklabs.net |
be67146d136c318257d404ff54450a4a9b61add2 | f4af4a530909bcec17478131ca69f28d03a776b0 | /BaseLib/network/CStrMsgProcessor.cpp | 5d3af178446fc7398d3c978b1a51da67e6e91c29 | [] | no_license | eyes4/light-server-frame | 5b478fd1bd1b89dae21fdfc10c872f117eba5cc3 | 8b2cd17b02bc766162d2eb5cae4603065077d476 | refs/heads/master | 2016-08-11T06:41:20.392870 | 2012-06-06T13:45:42 | 2012-06-06T13:45:42 | 52,317,838 | 1 | 1 | null | null | null | null | GB18030 | C++ | false | false | 3,095 | cpp |
#include "../include/CStrMsgProcessor.h"
CStrMsgProcessor::CStrMsgProcessor(int nTimeOut, char *szTail)
{
m_nTimeOut = nTimeOut;
strcpy(m_szTail, szTail);
m_nTailSize = strlen(szTail);
InitMutex(&m_Mutex);
}
CStrMsgProcessor::~CStrMsgProcessor()
{
DestroyMutex(&m_Mutex);
}
void CStrMsgProcessor::OnAccept(SOCKET socket, const char *szClientIP)
{
EnterMutex(&m_Mutex);
//DEBUGMSG("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!Accept socket:%d\n", socket);
m_RecvStrMap[socket] = "";
m_TimeOutTick[socket] = 10000;
LeaveMutex(&m_Mutex);
TStrMsg *pMsg = new TStrMsg();
pMsg->socket = socket;
pMsg->msg = string("#1$");//特殊消息,表示Accept
sprintf(pMsg->clientip, "%s", szClientIP);
m_MsgQueue.push(pMsg);
}
void CStrMsgProcessor::OnRead(SOCKET socket, const char *szClientIP, char *buf, int len)
{
if (m_RecvStrMap.find(socket) == m_RecvStrMap.end()) return;
int nHead = 0;
m_TimeOutTick[socket] = m_nTimeOut / 10;
char *p = strstr(buf, m_szTail);//"$");
while (p != NULL)
{
m_RecvStrMap[socket].append(buf, nHead, p - &buf[nHead]);
nHead = (int)(p - buf + m_nTailSize);//1);
TStrMsg *pMsg = new TStrMsg();
pMsg->socket = socket;
pMsg->msg = m_RecvStrMap[socket];
sprintf(pMsg->clientip, "%s", szClientIP);
m_MsgQueue.push(pMsg);
p = strstr(&buf[nHead], m_szTail);//"$");
m_RecvStrMap[socket] = "";
//nHead = 0;
}
if (nHead < len)
{
//cout<<nHead<<" "<<len<<" "<<m_RecvStrMap[socket]<<endl;
m_RecvStrMap[socket].append(buf, nHead, len - nHead);
}
}
void CStrMsgProcessor::OnClose(SOCKET socket, const char *szClientIP)
{
//cout<<"----------------------------------onclose"<<endl;
EnterMutex(&m_Mutex);
TStrMsg *pMsg = new TStrMsg();
pMsg->socket = socket;
pMsg->msg = "#0$";//特殊消息,表示网络断线
sprintf(pMsg->clientip, "%s", szClientIP);
m_MsgQueue.push(pMsg);
m_RecvStrMap.erase(socket);
if (m_TimeOutTick.find(socket) != m_TimeOutTick.end())
m_TimeOutTick.erase(socket);
LeaveMutex(&m_Mutex);
}
int CStrMsgProcessor::MsgCount(void)
{
return (int)m_MsgQueue.size();
}
void *CStrMsgProcessor::GetMsg(void)
{
return (void *)m_MsgQueue.front();
}
void CStrMsgProcessor::PopMsg(void)
{
TStrMsg *pMsg = m_MsgQueue.front();
delete pMsg;
m_MsgQueue.pop();
}
void CStrMsgProcessor::CheckTimeout(void)
{
EnterMutex(&m_Mutex);
map<SOCKET, int>::iterator ClientIter;
for (ClientIter = m_TimeOutTick.begin(); ClientIter != m_TimeOutTick.end(); )
{
ClientIter->second--;
if (ClientIter->second <= 0)
{
map<SOCKET, int>::iterator itErase= ClientIter;
++ClientIter;
SOCKET s = itErase->first;
TStrMsg *pMsg = new TStrMsg();
pMsg->socket = s;
pMsg->msg = "#0$";//特殊消息,表示网络断线
sprintf(pMsg->clientip, "%s", "");
m_MsgQueue.push(pMsg);
m_TimeOutTick.erase(s);
m_RecvStrMap.erase(s);
DEBUGMSG("*******************************close socket:%d\n", s);
SocketClose(s);
}
else
{
++ClientIter;
}
}
LeaveMutex(&m_Mutex);
}
| [
"eyesfour@2c3afd96-2e2b-54bb-296e-4c59daaf94c1"
] | eyesfour@2c3afd96-2e2b-54bb-296e-4c59daaf94c1 |
de03342bfe7cb4d975103fc294c1daa9fae9f237 | b1af8bb863a6730e6e4e93129efbad89d33cf509 | /SDK/SCUM_Mulberry_parameters.hpp | d1874e487106294ced52e20fb1251d67aa433fae | [] | no_license | frankie-11/SCUM_SDK7.13.2020 | b3bbd8fb9b6c03120b865a6254eca6a2389ea654 | 7b48bcf9e8088aa8917c07dd6756eac90e3f693a | refs/heads/master | 2022-11-16T05:48:55.729087 | 2020-07-13T23:48:50 | 2020-07-13T23:48:50 | 279,433,512 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,325 | hpp | #pragma once
// SCUM (4.24) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "../SDK.hpp"
namespace SDK
{
//---------------------------------------------------------------------------
//Parameters
//---------------------------------------------------------------------------
// Function ConZ.FoodItem.OnRep_Temperature
struct AMulberry_C_OnRep_Temperature_Params
{
};
// Function ConZ.FoodItem.OnRep_ItemOpened
struct AMulberry_C_OnRep_ItemOpened_Params
{
};
// Function ConZ.FoodItem.OnRep_IsCooking
struct AMulberry_C_OnRep_IsCooking_Params
{
};
// Function ConZ.FoodItem.OnAudioComponentExpired
struct AMulberry_C_OnAudioComponentExpired_Params
{
};
// Function ConZ.FoodItem.IsCooking
struct AMulberry_C_IsCooking_Params
{
bool ReturnValue; // (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData)
};
// Function ConZ.FoodItem.GetVolume
struct AMulberry_C_GetVolume_Params
{
float ReturnValue; // (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData)
};
// Function ConZ.FoodItem.GetThermalConductivityFactor
struct AMulberry_C_GetThermalConductivityFactor_Params
{
float ReturnValue; // (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData)
};
// Function ConZ.FoodItem.GetTemperature
struct AMulberry_C_GetTemperature_Params
{
float ReturnValue; // (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData)
};
// Function ConZ.FoodItem.GetEnvironmentTemperature
struct AMulberry_C_GetEnvironmentTemperature_Params
{
float ReturnValue; // (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData)
};
// Function ConZ.FoodItem.GetCookingAmount
struct AMulberry_C_GetCookingAmount_Params
{
float ReturnValue; // (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData)
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"60810131+frankie-11@users.noreply.github.com"
] | 60810131+frankie-11@users.noreply.github.com |
4ca033ba46635a2b8a7ea726b2a7c2b7ad380581 | 5637549e7b1f7d01321d0d6e850454ebdf037392 | /src/items_chave.h | 5d691d403b46efe5d9394c8d9b1b1b0817e57b82 | [] | no_license | zipleen/space-wolf | 01ffd88ec41338a97194fe2d406f309d7c218736 | 83bb1d0aaca4671b7c66b22cd9d4a3e1027eb3cd | refs/heads/master | 2022-02-13T09:30:10.674525 | 2022-01-19T22:39:36 | 2022-01-19T22:39:36 | 8,300,751 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 425 | h | /*
* items_chave.h
* proj
*
* Created by zipleen on 1/12/08.
* Copyright 2008 __MyCompanyName__. All rights reserved.
*
*/
#ifndef ITEMS_CHAVE_H
#define ITEMS_CHAVE_H
#include "items.h"
class Items_Chave : public Items
{
int tipo;
public:
Items_Chave(){};
Items_Chave(GLfloat x,GLfloat y, int valor, int mapa_x, int mapa_y);
virtual ~Items_Chave(){};
virtual bool consume(Player *p);
};
#endif
| [
"zipleen@gmail.com"
] | zipleen@gmail.com |
9133832623fa70d2a7286cc3d3f3afae036c9d46 | 40d91f99f97512a0909c7a84a8b7f87c40768dc1 | /beijing45/beijing54/CalculateModel/ng_db_lib/DBMySqlReader.cpp | 58171b18b9ff152af1aa57ca8e147b63b4f54ea4 | [] | no_license | radtek/NG_Beijing54 | 85c8662a80ec8407a2bb27eec170113c15bcdf62 | 211871dc7f047c0f1348526c91fbe3cd34d89c16 | refs/heads/master | 2020-09-01T15:33:28.332873 | 2019-08-06T09:51:27 | 2019-08-06T09:51:27 | 218,994,155 | 1 | 0 | null | 2019-11-01T13:49:49 | 2019-11-01T13:49:48 | null | UTF-8 | C++ | false | false | 8,219 | cpp | #ifdef USE_MYSQL
#include "DBMySqlReader.h"
#include <stdio.h>
#include <new>
DBMySqlReader::DBMySqlReader(MYSQL * pcon)
{
p_con = pcon;
p_stmt = NULL;
lastRow = 0;
bResultEnd = true;
}
DBMySqlReader::~DBMySqlReader(void)
{
Close();
}
bool DBMySqlReader::Query( const char* sql )
{
if(sql)
{
Close();
int res = mysql_query(p_con,sql);
if(res)
{
DBText err = mysql_error(p_con);
throw err;
}
p_stmt = mysql_store_result(p_con);
lastRow = 0;
bResultEnd = false;
if(p_stmt == NULL)
{
const char * ex = mysql_error(p_con);
if(ex!=NULL&&*ex!='\0')
{
DBText err = ex;
throw err;
}
}
}
return (p_stmt != NULL);
}
void DBMySqlReader::Close()
{
if(p_stmt != NULL)
{
mysql_free_result(p_stmt);
fields.clear();
lastRow = 0;
p_stmt = NULL;
}
}
bool DBMySqlReader::Read( void )
{
if(p_stmt!=NULL)
{
//if(mysql_eof(p_stmt))
// return false;
data_row = mysql_fetch_row(p_stmt);
return data_row!=NULL;
}
return false;
}
bool DBMySqlReader::GetFields()
{
if(fields.empty())
{
if(p_stmt != NULL)
{
int cout = mysql_num_fields(p_stmt);
MYSQL_FIELD *pFilds = mysql_fetch_fields(p_stmt);
for(int i=0;i<cout;i++)
{
std::string field = pFilds[i].name;
fields.push_back(field);
}
}
}
return !fields.empty();
}
int DBMySqlReader::GetColumnIndex( const char *name )
{
if(GetFields())
{
int count = fields.size();
for(int index=0;index<count;index++)
{
std::string colnumName = fields[index];
if(strcmpnocase(colnumName.c_str(),name)==0)
return index;
}
}
return -1;
}
index_int DBMySqlReader::GetFieldsCount( void )
{
if(!fields.empty())
return fields.size();
else if(p_stmt!=NULL)
{
return mysql_num_fields(p_stmt);
}
return 0;
}
index_int DBMySqlReader::GetResultCount( void )
{
if(p_stmt!=NULL)
return (index_int)mysql_num_rows(p_stmt);
return 0;
}
DBText DBMySqlReader::GetName( index_int index )
{
if(GetFields())
{
if(index>0&&(unsigned int)index<fields.size())
return DBText(fields[index].c_str());
}
return DBText();
}
NGDBCom::DBBool DBMySqlReader::GetBoolean( const char* name )
{
if(p_stmt!=NULL)
{
int index = -1;
if(-1!=(index =GetColumnIndex(name)))
{
return GetBoolean(index);
}
}
return DBBool();
}
NGDBCom::DBBool DBMySqlReader::GetBoolean( index_int index )
{
DBBool val;
if(index<0||index>=GetFieldsCount())
return val;
if(data_row!=NULL)
{
const char * pData = data_row[index];
if(pData!=NULL)
{
int dbvalue = 0;
sscanf(pData,"%d",&dbvalue);
val = (dbvalue!=0);
}
}
return val;
}
NGDBCom::DBByte DBMySqlReader::GetByte( const char* name )
{
if(p_stmt!=NULL)
{
int index = -1;
if(-1!=(index =GetColumnIndex(name)))
{
return GetByte(index);
}
}
return DBByte();
}
NGDBCom::DBByte DBMySqlReader::GetByte( index_int index )
{
DBByte val;
if(index<0||index>=GetFieldsCount())
return val;
if(data_row!=NULL)
{
const char * pData = data_row[index];
if(pData!=NULL)
{
val = pData[0];
}
}
return val;
}
NGDBCom::DBBlob DBMySqlReader::GetBlob( const char*name )
{
if(p_stmt!=NULL)
{
int index = -1;
if(-1!=(index =GetColumnIndex(name)))
{
return GetBlob(index);
}
}
return DBBlob();
}
NGDBCom::DBBlob DBMySqlReader::GetBlob( index_int index )
{
DBBlob value;
if(p_stmt!=NULL)
{
if(!IsDBNull(index))
{
const void * v = data_row[index];
unsigned long *FieldLength = mysql_fetch_lengths(p_stmt);
unsigned int blobsize = FieldLength[index];
byte * bytes = new(std::nothrow) byte[blobsize];
if(bytes)
{
memcpy(bytes,v,blobsize);
value.SetValue(bytes,blobsize,true);
}
}
}
return value;
}
NGDBCom::DBChar DBMySqlReader::GetChar( const char*name )
{
if(p_stmt!=NULL)
{
int index = -1;
if(-1!=(index =GetColumnIndex(name)))
{
return GetChar(index);
}
}
return DBChar();
}
NGDBCom::DBChar DBMySqlReader::GetChar( index_int index )
{
DBChar val;
if(index<0||index>=GetFieldsCount())
return val;
if(data_row!=NULL)
{
const char * pData = data_row[index];
if(pData!=NULL)
{
val = pData[0];
}
}
return val;
}
NGDBCom::DBText DBMySqlReader::GetText( const char*name )
{
if(p_stmt!=NULL)
{
int index = -1;
if(-1!=(index =GetColumnIndex(name)))
{
return GetText(index);
}
}
return DBText();
}
NGDBCom::DBText DBMySqlReader::GetText( index_int index )
{
DBText val;
if(index<0||index>=GetFieldsCount())
return val;
if(data_row!=NULL)
{
const char * pData = data_row[index];
if(pData!=NULL)
{
val = pData;
}
}
return val;
}
NGDBCom::DBDatetime DBMySqlReader::GetDatetime( const char* name )
{
if(p_stmt!=NULL)
{
int index = -1;
if(-1!=(index =GetColumnIndex(name)))
{
return GetDatetime(index);
}
}
return DBDatetime();
}
NGDBCom::DBDatetime DBMySqlReader::GetDatetime( index_int index )
{
DBDatetime val;
if(index<0||index>=GetFieldsCount())
return val;
if(data_row!=NULL)
{
const char * pData = data_row[index];
if(pData!=NULL)
{
tm temp;
memset(&temp,0,sizeof(tm));
StringToTM((const char*)pData,temp);
val = temp;
}
}
return val;
}
NGDBCom::DBDouble DBMySqlReader::GetDouble( const char* name )
{
if(p_stmt!=NULL)
{
int index = -1;
if(-1!=(index =GetColumnIndex(name)))
{
return GetDouble(index);
}
}
return DBDouble();
}
NGDBCom::DBDouble DBMySqlReader::GetDouble( index_int index )
{
DBDouble val;
if(index<0||index>=GetFieldsCount())
return val;
if(data_row!=NULL)
{
const char * pData = data_row[index];
char *stop;
if(pData!=NULL)
{
double dbvalue = 0;
sscanf(pData,"%lf",&dbvalue);
val = dbvalue;
}
}
return val;
}
NGDBCom::DBFloat DBMySqlReader::GetFloat( const char*name )
{
if(p_stmt!=NULL)
{
int index = -1;
if(-1!=(index =GetColumnIndex(name)))
{
return GetFloat(index);
}
}
return DBFloat();
}
NGDBCom::DBFloat DBMySqlReader::GetFloat( index_int index )
{
DBFloat val;
if(index<0||index>=GetFieldsCount())
return val;
if(data_row!=NULL)
{
const char * pData = data_row[index];
char *stop;
if(pData!=NULL)
{
float dbvalue =0;
sscanf(pData,"%f",&dbvalue);
val = (float)dbvalue;
}
}
return val;
}
NGDBCom::DBInt16 DBMySqlReader::GetInt16( const char*name )
{
if(p_stmt!=NULL)
{
int index = -1;
if(-1!=(index =GetColumnIndex(name)))
{
return GetInt16(index);
}
}
return DBInt16();
}
NGDBCom::DBInt16 DBMySqlReader::GetInt16( index_int index )
{
DBInt16 val;
if(index<0||index>=GetFieldsCount())
return val;
if(data_row!=NULL)
{
const char * pData = data_row[index];
if(pData!=NULL)
{
long dbvalue = 0;
sscanf(pData,"%i",&dbvalue);
val = (short)dbvalue;
}
}
return val;
}
NGDBCom::DBInt32 DBMySqlReader::GetInt32( const char*name )
{
if(p_stmt!=NULL)
{
int index = -1;
if(-1!=(index =GetColumnIndex(name)))
{
return GetInt32(index);
}
}
return DBInt32();
}
NGDBCom::DBInt32 DBMySqlReader::GetInt32( index_int index )
{
DBInt32 val;
if(index<0||index>=GetFieldsCount())
return val;
if(data_row!=NULL)
{
const char * pData = data_row[index];
char *stop;
if(pData!=NULL)
{
int dbvalue = 0;
sscanf(pData,"%d",&dbvalue);
val = (int)dbvalue;
}
}
return val;
}
NGDBCom::DBInt64 DBMySqlReader::GetInt64( const char*name )
{
if(p_stmt!=NULL)
{
int index = -1;
if(-1!=(index =GetColumnIndex(name)))
{
return GetInt64(index);
}
}
return DBInt64();
}
NGDBCom::DBInt64 DBMySqlReader::GetInt64( index_int index )
{
DBInt64 val;
if(index<0||index>=GetFieldsCount())
return val;
if(data_row!=NULL)
{
const char * pData = data_row[index];
char *stop;
if(pData!=NULL)
{
long long dbvalue = 0;
sscanf(pData,"%lld",&dbvalue);
val = dbvalue;
}
}
return val;
}
bool DBMySqlReader::IsDBNull( const char*name )
{
if(p_stmt!=NULL)
{
int index = -1;
if(-1!=(index =GetColumnIndex(name)))
{
return IsDBNull(index);
}
}
return true;
}
bool DBMySqlReader::IsDBNull( index_int index )
{
if(index<0||index>=GetFieldsCount())
return true;
if(data_row!=NULL)
{
const char * pData = data_row[index];
if(pData && pData[0]!='\0')
return false;
}
return true;
}
#endif | [
"1037939838@qq.com"
] | 1037939838@qq.com |
13eda1e0cd13abc037734ef314b32a7d8418a3c3 | b28305dab0be0e03765c62b97bcd7f49a4f8073d | /chrome/browser/rlz/chrome_rlz_tracker_delegate.h | f1774e773219496eb02e5d286d709d2520ba8409 | [
"BSD-3-Clause"
] | permissive | svarvel/browser-android-tabs | 9e5e27e0a6e302a12fe784ca06123e5ce090ced5 | bd198b4c7a1aca2f3e91f33005d881f42a8d0c3f | refs/heads/base-72.0.3626.105 | 2020-04-24T12:16:31.442851 | 2019-08-02T19:15:36 | 2019-08-02T19:15:36 | 171,950,555 | 1 | 2 | NOASSERTION | 2019-08-02T19:15:37 | 2019-02-21T21:47:44 | null | UTF-8 | C++ | false | false | 2,673 | h | // Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_RLZ_CHROME_RLZ_TRACKER_DELEGATE_H_
#define CHROME_BROWSER_RLZ_CHROME_RLZ_TRACKER_DELEGATE_H_
#include "base/callback.h"
#include "base/macros.h"
#include "components/omnibox/browser/omnibox_event_global_tracker.h"
#include "components/rlz/rlz_tracker_delegate.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
class Profile;
namespace user_prefs {
class PrefRegistrySyncable;
}
// ChromeRLZTrackerDelegate implements RLZTrackerDelegate abstract interface
// and provides access to Chrome features.
class ChromeRLZTrackerDelegate : public rlz::RLZTrackerDelegate,
public content::NotificationObserver {
public:
ChromeRLZTrackerDelegate();
~ChromeRLZTrackerDelegate() override;
static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
static bool IsGoogleDefaultSearch(Profile* profile);
static bool IsGoogleHomepage(Profile* profile);
static bool IsGoogleInStartpages(Profile* profile);
private:
// RLZTrackerDelegate implementation.
void Cleanup() override;
bool IsOnUIThread() override;
scoped_refptr<network::SharedURLLoaderFactory> GetURLLoaderFactory() override;
bool GetBrand(std::string* brand) override;
bool IsBrandOrganic(const std::string& brand) override;
bool GetReactivationBrand(std::string* brand) override;
bool ShouldEnableZeroDelayForTesting() override;
bool GetLanguage(base::string16* language) override;
bool GetReferral(base::string16* referral) override;
bool ClearReferral() override;
void SetOmniboxSearchCallback(const base::Closure& callback) override;
void SetHomepageSearchCallback(const base::Closure& callback) override;
// content::NotificationObserver implementation:
void Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) override;
// Called when a URL is opened from the Omnibox.
void OnURLOpenedFromOmnibox(OmniboxLog* log);
content::NotificationRegistrar registrar_;
base::Closure on_omnibox_search_callback_;
base::Closure on_homepage_search_callback_;
// Subscription for receiving callbacks that a URL was opened from the
// omnibox.
std::unique_ptr<base::CallbackList<void(OmniboxLog*)>::Subscription>
omnibox_url_opened_subscription_;
DISALLOW_COPY_AND_ASSIGN(ChromeRLZTrackerDelegate);
};
#endif // CHROME_BROWSER_RLZ_CHROME_RLZ_TRACKER_DELEGATE_H_
| [
"artem@brave.com"
] | artem@brave.com |
e807fb983d3acd94aebfe9b634adced6c73f9e1f | 753a70bc416e8dced2853f278b08ef60cdb3c768 | /include/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/util/Macros.h | 2b40c5fd045f68774f50967686276c1fd8430e55 | [
"MIT",
"BSD-3-Clause",
"LGPL-2.0-or-later",
"LGPL-2.1-only",
"MPL-2.0",
"LGPL-2.1-or-later",
"Minpack",
"GPL-3.0-only"
] | permissive | finnickniu/tensorflow_object_detection_tflite | ef94158e5350613590641880cb3c1062f7dd0efb | a115d918f6894a69586174653172be0b5d1de952 | refs/heads/master | 2023-04-06T04:59:24.985923 | 2022-09-20T16:29:08 | 2022-09-20T16:29:08 | 230,891,552 | 60 | 19 | MIT | 2023-03-25T00:31:18 | 2019-12-30T09:58:41 | C++ | UTF-8 | C++ | false | false | 45,416 | h | // This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2008-2015 Gael Guennebaud <gael.guennebaud@inria.fr>
// Copyright (C) 2006-2008 Benoit Jacob <jacob.benoit.1@gmail.com>
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
#ifndef EIGEN_MACROS_H
#define EIGEN_MACROS_H
//------------------------------------------------------------------------------------------
// Eigen version and basic defaults
//------------------------------------------------------------------------------------------
#define EIGEN_WORLD_VERSION 3
#define EIGEN_MAJOR_VERSION 3
#define EIGEN_MINOR_VERSION 90
#define EIGEN_VERSION_AT_LEAST(x,y,z) (EIGEN_WORLD_VERSION>x || (EIGEN_WORLD_VERSION>=x && \
(EIGEN_MAJOR_VERSION>y || (EIGEN_MAJOR_VERSION>=y && \
EIGEN_MINOR_VERSION>=z))))
#ifdef EIGEN_DEFAULT_TO_ROW_MAJOR
#define EIGEN_DEFAULT_MATRIX_STORAGE_ORDER_OPTION Eigen::RowMajor
#else
#define EIGEN_DEFAULT_MATRIX_STORAGE_ORDER_OPTION Eigen::ColMajor
#endif
#ifndef EIGEN_DEFAULT_DENSE_INDEX_TYPE
#define EIGEN_DEFAULT_DENSE_INDEX_TYPE std::ptrdiff_t
#endif
// Upperbound on the C++ version to use.
// Expected values are 03, 11, 14, 17, etc.
// By default, let's use an arbitrarily large C++ version.
#ifndef EIGEN_MAX_CPP_VER
#define EIGEN_MAX_CPP_VER 99
#endif
/** Allows to disable some optimizations which might affect the accuracy of the result.
* Such optimization are enabled by default, and set EIGEN_FAST_MATH to 0 to disable them.
* They currently include:
* - single precision ArrayBase::sin() and ArrayBase::cos() for SSE and AVX vectorization.
*/
#ifndef EIGEN_FAST_MATH
#define EIGEN_FAST_MATH 1
#endif
#ifndef EIGEN_STACK_ALLOCATION_LIMIT
// 131072 == 128 KB
#define EIGEN_STACK_ALLOCATION_LIMIT 131072
#endif
//------------------------------------------------------------------------------------------
// Compiler identification, EIGEN_COMP_*
//------------------------------------------------------------------------------------------
/// \internal EIGEN_COMP_GNUC set to 1 for all compilers compatible with GCC
#ifdef __GNUC__
#define EIGEN_COMP_GNUC (__GNUC__*10+__GNUC_MINOR__)
#else
#define EIGEN_COMP_GNUC 0
#endif
/// \internal EIGEN_COMP_CLANG set to major+minor version (e.g., 307 for clang 3.7) if the compiler is clang
#if defined(__clang__)
#define EIGEN_COMP_CLANG (__clang_major__*100+__clang_minor__)
#else
#define EIGEN_COMP_CLANG 0
#endif
/// \internal EIGEN_COMP_LLVM set to 1 if the compiler backend is llvm
#if defined(__llvm__)
#define EIGEN_COMP_LLVM 1
#else
#define EIGEN_COMP_LLVM 0
#endif
/// \internal EIGEN_COMP_ICC set to __INTEL_COMPILER if the compiler is Intel compiler, 0 otherwise
#if defined(__INTEL_COMPILER)
#define EIGEN_COMP_ICC __INTEL_COMPILER
#else
#define EIGEN_COMP_ICC 0
#endif
/// \internal EIGEN_COMP_MINGW set to 1 if the compiler is mingw
#if defined(__MINGW32__)
#define EIGEN_COMP_MINGW 1
#else
#define EIGEN_COMP_MINGW 0
#endif
/// \internal EIGEN_COMP_SUNCC set to 1 if the compiler is Solaris Studio
#if defined(__SUNPRO_CC)
#define EIGEN_COMP_SUNCC 1
#else
#define EIGEN_COMP_SUNCC 0
#endif
/// \internal EIGEN_COMP_MSVC set to _MSC_VER if the compiler is Microsoft Visual C++, 0 otherwise.
#if defined(_MSC_VER)
#define EIGEN_COMP_MSVC _MSC_VER
#else
#define EIGEN_COMP_MSVC 0
#endif
#if defined(__NVCC__)
#if defined(__CUDACC_VER_MAJOR__) && (__CUDACC_VER_MAJOR__ >= 9)
#define EIGEN_COMP_NVCC ((__CUDACC_VER_MAJOR__ * 10000) + (__CUDACC_VER_MINOR__ * 100))
#elif defined(__CUDACC_VER__)
#define EIGEN_COMP_NVCC __CUDACC_VER__
#else
#error "NVCC did not define compiler version."
#endif
#else
#define EIGEN_COMP_NVCC 0
#endif
// For the record, here is a table summarizing the possible values for EIGEN_COMP_MSVC:
// name ver MSC_VER
// 2008 9 1500
// 2010 10 1600
// 2012 11 1700
// 2013 12 1800
// 2015 14 1900
// "15" 15 1900
// 2017-14.1 15.0 1910
// 2017-14.11 15.3 1911
// 2017-14.12 15.5 1912
// 2017-14.13 15.6 1913
// 2017-14.14 15.7 1914
/// \internal EIGEN_COMP_MSVC_LANG set to _MSVC_LANG if the compiler is Microsoft Visual C++, 0 otherwise.
#if defined(_MSVC_LANG)
#define EIGEN_COMP_MSVC_LANG _MSVC_LANG
#else
#define EIGEN_COMP_MSVC_LANG 0
#endif
// For the record, here is a table summarizing the possible values for EIGEN_COMP_MSVC_LANG:
// MSVC option Standard MSVC_LANG
// /std:c++14 (default as of VS 2019) C++14 201402L
// /std:c++17 C++17 201703L
// /std:c++latest >C++17 >201703L
/// \internal EIGEN_COMP_MSVC_STRICT set to 1 if the compiler is really Microsoft Visual C++ and not ,e.g., ICC or clang-cl
#if EIGEN_COMP_MSVC && !(EIGEN_COMP_ICC || EIGEN_COMP_LLVM || EIGEN_COMP_CLANG)
#define EIGEN_COMP_MSVC_STRICT _MSC_VER
#else
#define EIGEN_COMP_MSVC_STRICT 0
#endif
/// \internal EIGEN_COMP_IBM set to xlc version if the compiler is IBM XL C++
// XLC version
// 3.1 0x0301
// 4.5 0x0405
// 5.0 0x0500
// 12.1 0x0C01
#if defined(__IBMCPP__) || defined(__xlc__) || defined(__ibmxl__)
#define EIGEN_COMP_IBM __xlC__
#else
#define EIGEN_COMP_IBM 0
#endif
/// \internal EIGEN_COMP_PGI set to PGI version if the compiler is Portland Group Compiler
#if defined(__PGI)
#define EIGEN_COMP_PGI (__PGIC__*100+__PGIC_MINOR__)
#else
#define EIGEN_COMP_PGI 0
#endif
/// \internal EIGEN_COMP_ARM set to 1 if the compiler is ARM Compiler
#if defined(__CC_ARM) || defined(__ARMCC_VERSION)
#define EIGEN_COMP_ARM 1
#else
#define EIGEN_COMP_ARM 0
#endif
/// \internal EIGEN_COMP_EMSCRIPTEN set to 1 if the compiler is Emscripten Compiler
#if defined(__EMSCRIPTEN__)
#define EIGEN_COMP_EMSCRIPTEN 1
#else
#define EIGEN_COMP_EMSCRIPTEN 0
#endif
/// \internal EIGEN_GNUC_STRICT set to 1 if the compiler is really GCC and not a compatible compiler (e.g., ICC, clang, mingw, etc.)
#if EIGEN_COMP_GNUC && !(EIGEN_COMP_CLANG || EIGEN_COMP_ICC || EIGEN_COMP_MINGW || EIGEN_COMP_PGI || EIGEN_COMP_IBM || EIGEN_COMP_ARM || EIGEN_COMP_EMSCRIPTEN)
#define EIGEN_COMP_GNUC_STRICT 1
#else
#define EIGEN_COMP_GNUC_STRICT 0
#endif
#if EIGEN_COMP_GNUC
#define EIGEN_GNUC_AT_LEAST(x,y) ((__GNUC__==x && __GNUC_MINOR__>=y) || __GNUC__>x)
#define EIGEN_GNUC_AT_MOST(x,y) ((__GNUC__==x && __GNUC_MINOR__<=y) || __GNUC__<x)
#define EIGEN_GNUC_AT(x,y) ( __GNUC__==x && __GNUC_MINOR__==y )
#else
#define EIGEN_GNUC_AT_LEAST(x,y) 0
#define EIGEN_GNUC_AT_MOST(x,y) 0
#define EIGEN_GNUC_AT(x,y) 0
#endif
// FIXME: could probably be removed as we do not support gcc 3.x anymore
#if EIGEN_COMP_GNUC && (__GNUC__ <= 3)
#define EIGEN_GCC3_OR_OLDER 1
#else
#define EIGEN_GCC3_OR_OLDER 0
#endif
//------------------------------------------------------------------------------------------
// Architecture identification, EIGEN_ARCH_*
//------------------------------------------------------------------------------------------
#if defined(__x86_64__) || defined(_M_X64) || defined(__amd64)
#define EIGEN_ARCH_x86_64 1
#else
#define EIGEN_ARCH_x86_64 0
#endif
#if defined(__i386__) || defined(_M_IX86) || defined(_X86_) || defined(__i386)
#define EIGEN_ARCH_i386 1
#else
#define EIGEN_ARCH_i386 0
#endif
#if EIGEN_ARCH_x86_64 || EIGEN_ARCH_i386
#define EIGEN_ARCH_i386_OR_x86_64 1
#else
#define EIGEN_ARCH_i386_OR_x86_64 0
#endif
/// \internal EIGEN_ARCH_ARM set to 1 if the architecture is ARM
#if defined(__arm__)
#define EIGEN_ARCH_ARM 1
#else
#define EIGEN_ARCH_ARM 0
#endif
/// \internal EIGEN_ARCH_ARM64 set to 1 if the architecture is ARM64
#if defined(__aarch64__)
#define EIGEN_ARCH_ARM64 1
#else
#define EIGEN_ARCH_ARM64 0
#endif
#if EIGEN_ARCH_ARM || EIGEN_ARCH_ARM64
#define EIGEN_ARCH_ARM_OR_ARM64 1
#else
#define EIGEN_ARCH_ARM_OR_ARM64 0
#endif
/// \internal EIGEN_ARCH_MIPS set to 1 if the architecture is MIPS
#if defined(__mips__) || defined(__mips)
#define EIGEN_ARCH_MIPS 1
#else
#define EIGEN_ARCH_MIPS 0
#endif
/// \internal EIGEN_ARCH_SPARC set to 1 if the architecture is SPARC
#if defined(__sparc__) || defined(__sparc)
#define EIGEN_ARCH_SPARC 1
#else
#define EIGEN_ARCH_SPARC 0
#endif
/// \internal EIGEN_ARCH_IA64 set to 1 if the architecture is Intel Itanium
#if defined(__ia64__)
#define EIGEN_ARCH_IA64 1
#else
#define EIGEN_ARCH_IA64 0
#endif
/// \internal EIGEN_ARCH_PPC set to 1 if the architecture is PowerPC
#if defined(__powerpc__) || defined(__ppc__) || defined(_M_PPC)
#define EIGEN_ARCH_PPC 1
#else
#define EIGEN_ARCH_PPC 0
#endif
//------------------------------------------------------------------------------------------
// Operating system identification, EIGEN_OS_*
//------------------------------------------------------------------------------------------
/// \internal EIGEN_OS_UNIX set to 1 if the OS is a unix variant
#if defined(__unix__) || defined(__unix)
#define EIGEN_OS_UNIX 1
#else
#define EIGEN_OS_UNIX 0
#endif
/// \internal EIGEN_OS_LINUX set to 1 if the OS is based on Linux kernel
#if defined(__linux__)
#define EIGEN_OS_LINUX 1
#else
#define EIGEN_OS_LINUX 0
#endif
/// \internal EIGEN_OS_ANDROID set to 1 if the OS is Android
// note: ANDROID is defined when using ndk_build, __ANDROID__ is defined when using a standalone toolchain.
#if defined(__ANDROID__) || defined(ANDROID)
#define EIGEN_OS_ANDROID 1
#else
#define EIGEN_OS_ANDROID 0
#endif
/// \internal EIGEN_OS_GNULINUX set to 1 if the OS is GNU Linux and not Linux-based OS (e.g., not android)
#if defined(__gnu_linux__) && !(EIGEN_OS_ANDROID)
#define EIGEN_OS_GNULINUX 1
#else
#define EIGEN_OS_GNULINUX 0
#endif
/// \internal EIGEN_OS_BSD set to 1 if the OS is a BSD variant
#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__bsdi__) || defined(__DragonFly__)
#define EIGEN_OS_BSD 1
#else
#define EIGEN_OS_BSD 0
#endif
/// \internal EIGEN_OS_MAC set to 1 if the OS is MacOS
#if defined(__APPLE__)
#define EIGEN_OS_MAC 1
#else
#define EIGEN_OS_MAC 0
#endif
/// \internal EIGEN_OS_QNX set to 1 if the OS is QNX
#if defined(__QNX__)
#define EIGEN_OS_QNX 1
#else
#define EIGEN_OS_QNX 0
#endif
/// \internal EIGEN_OS_WIN set to 1 if the OS is Windows based
#if defined(_WIN32)
#define EIGEN_OS_WIN 1
#else
#define EIGEN_OS_WIN 0
#endif
/// \internal EIGEN_OS_WIN64 set to 1 if the OS is Windows 64bits
#if defined(_WIN64)
#define EIGEN_OS_WIN64 1
#else
#define EIGEN_OS_WIN64 0
#endif
/// \internal EIGEN_OS_WINCE set to 1 if the OS is Windows CE
#if defined(_WIN32_WCE)
#define EIGEN_OS_WINCE 1
#else
#define EIGEN_OS_WINCE 0
#endif
/// \internal EIGEN_OS_CYGWIN set to 1 if the OS is Windows/Cygwin
#if defined(__CYGWIN__)
#define EIGEN_OS_CYGWIN 1
#else
#define EIGEN_OS_CYGWIN 0
#endif
/// \internal EIGEN_OS_WIN_STRICT set to 1 if the OS is really Windows and not some variants
#if EIGEN_OS_WIN && !( EIGEN_OS_WINCE || EIGEN_OS_CYGWIN )
#define EIGEN_OS_WIN_STRICT 1
#else
#define EIGEN_OS_WIN_STRICT 0
#endif
/// \internal EIGEN_OS_SUN set to __SUNPRO_C if the OS is SUN
// compiler solaris __SUNPRO_C
// version studio
// 5.7 10 0x570
// 5.8 11 0x580
// 5.9 12 0x590
// 5.10 12.1 0x5100
// 5.11 12.2 0x5110
// 5.12 12.3 0x5120
#if (defined(sun) || defined(__sun)) && !(defined(__SVR4) || defined(__svr4__))
#define EIGEN_OS_SUN __SUNPRO_C
#else
#define EIGEN_OS_SUN 0
#endif
/// \internal EIGEN_OS_SOLARIS set to 1 if the OS is Solaris
#if (defined(sun) || defined(__sun)) && (defined(__SVR4) || defined(__svr4__))
#define EIGEN_OS_SOLARIS 1
#else
#define EIGEN_OS_SOLARIS 0
#endif
//------------------------------------------------------------------------------------------
// Detect GPU compilers and architectures
//------------------------------------------------------------------------------------------
// NVCC is not supported as the target platform for HIPCC
// Note that this also makes EIGEN_CUDACC and EIGEN_HIPCC mutually exclusive
#if defined(__NVCC__) && defined(__HIPCC__)
#error "NVCC as the target platform for HIPCC is currently not supported."
#endif
#if defined(__CUDACC__) && !defined(EIGEN_NO_CUDA)
// Means the compiler is either nvcc or clang with CUDA enabled
#define EIGEN_CUDACC __CUDACC__
#endif
#if defined(__CUDA_ARCH__) && !defined(EIGEN_NO_CUDA)
// Means we are generating code for the device
#define EIGEN_CUDA_ARCH __CUDA_ARCH__
#endif
#if defined(EIGEN_CUDACC)
#include <cuda.h>
#define EIGEN_CUDA_SDK_VER (CUDA_VERSION * 10)
#else
#define EIGEN_CUDA_SDK_VER 0
#endif
#if defined(__HIPCC__) && !defined(EIGEN_NO_HIP)
// Means the compiler is HIPCC (analogous to EIGEN_CUDACC, but for HIP)
#define EIGEN_HIPCC __HIPCC__
// We need to include hip_runtime.h here because it pulls in
// ++ hip_common.h which contains the define for __HIP_DEVICE_COMPILE__
// ++ host_defines.h which contains the defines for the __host__ and __device__ macros
#include <hip/hip_runtime.h>
#if defined(__HIP_DEVICE_COMPILE__)
// analogous to EIGEN_CUDA_ARCH, but for HIP
#define EIGEN_HIP_DEVICE_COMPILE __HIP_DEVICE_COMPILE__
#endif
#endif
// Unify CUDA/HIPCC
#if defined(EIGEN_CUDACC) || defined(EIGEN_HIPCC)
//
// If either EIGEN_CUDACC or EIGEN_HIPCC is defined, then define EIGEN_GPUCC
//
#define EIGEN_GPUCC
//
// EIGEN_HIPCC implies the HIP compiler and is used to tweak Eigen code for use in HIP kernels
// EIGEN_CUDACC implies the CUDA compiler and is used to tweak Eigen code for use in CUDA kernels
//
// In most cases the same tweaks are required to the Eigen code to enable in both the HIP and CUDA kernels.
// For those cases, the corresponding code should be guarded with
// #if defined(EIGEN_GPUCC)
// instead of
// #if defined(EIGEN_CUDACC) || defined(EIGEN_HIPCC)
//
// For cases where the tweak is specific to HIP, the code should be guarded with
// #if defined(EIGEN_HIPCC)
//
// For cases where the tweak is specific to CUDA, the code should be guarded with
// #if defined(EIGEN_CUDACC)
//
#endif
#if defined(EIGEN_CUDA_ARCH) || defined(EIGEN_HIP_DEVICE_COMPILE)
//
// If either EIGEN_CUDA_ARCH or EIGEN_HIP_DEVICE_COMPILE is defined, then define EIGEN_GPU_COMPILE_PHASE
//
#define EIGEN_GPU_COMPILE_PHASE
//
// GPU compilers (HIPCC, NVCC) typically do two passes over the source code,
// + one to compile the source for the "host" (ie CPU)
// + another to compile the source for the "device" (ie. GPU)
//
// Code that needs to enabled only during the either the "host" or "device" compilation phase
// needs to be guarded with a macro that indicates the current compilation phase
//
// EIGEN_HIP_DEVICE_COMPILE implies the device compilation phase in HIP
// EIGEN_CUDA_ARCH implies the device compilation phase in CUDA
//
// In most cases, the "host" / "device" specific code is the same for both HIP and CUDA
// For those cases, the code should be guarded with
// #if defined(EIGEN_GPU_COMPILE_PHASE)
// instead of
// #if defined(EIGEN_CUDA_ARCH) || defined(EIGEN_HIP_DEVICE_COMPILE)
//
// For cases where the tweak is specific to HIP, the code should be guarded with
// #if defined(EIGEN_HIP_DEVICE_COMPILE)
//
// For cases where the tweak is specific to CUDA, the code should be guarded with
// #if defined(EIGEN_CUDA_ARCH)
//
#endif
#if defined(EIGEN_USE_SYCL) && defined(__SYCL_DEVICE_ONLY__)
// EIGEN_USE_SYCL is a user-defined macro while __SYCL_DEVICE_ONLY__ is a compiler-defined macro.
// In most cases we want to check if both macros are defined which can be done using the define below.
#define SYCL_DEVICE_ONLY
#endif
//------------------------------------------------------------------------------------------
// Detect Compiler/Architecture/OS specific features
//------------------------------------------------------------------------------------------
#if EIGEN_GNUC_AT_MOST(4,3) && !EIGEN_COMP_CLANG
// see bug 89
#define EIGEN_SAFE_TO_USE_STANDARD_ASSERT_MACRO 0
#else
#define EIGEN_SAFE_TO_USE_STANDARD_ASSERT_MACRO 1
#endif
// Cross compiler wrapper around LLVM's __has_builtin
#ifdef __has_builtin
# define EIGEN_HAS_BUILTIN(x) __has_builtin(x)
#else
# define EIGEN_HAS_BUILTIN(x) 0
#endif
// A Clang feature extension to determine compiler features.
// We use it to determine 'cxx_rvalue_references'
#ifndef __has_feature
# define __has_feature(x) 0
#endif
// Some old compilers do not support template specializations like:
// template<typename T,int N> void foo(const T x[N]);
#if !( EIGEN_COMP_CLANG && ( (EIGEN_COMP_CLANG<309) \
|| (defined(__apple_build_version__) && (__apple_build_version__ < 9000000))) \
|| EIGEN_COMP_GNUC_STRICT && EIGEN_COMP_GNUC<49)
#define EIGEN_HAS_STATIC_ARRAY_TEMPLATE 1
#else
#define EIGEN_HAS_STATIC_ARRAY_TEMPLATE 0
#endif
// The macro EIGEN_COMP_CXXVER defines the c++ verson expected by the compiler.
// For instance, if compiling with gcc and -std=c++17, then EIGEN_COMP_CXXVER
// is defined to 17.
#if (defined(__cplusplus) && (__cplusplus > 201402L) || EIGEN_COMP_MSVC_LANG > 201402L)
#define EIGEN_COMP_CXXVER 17
#elif (defined(__cplusplus) && (__cplusplus > 201103L) || EIGEN_COMP_MSVC >= 1910)
#define EIGEN_COMP_CXXVER 14
#elif (defined(__cplusplus) && (__cplusplus >= 201103L) || EIGEN_COMP_MSVC >= 1900)
#define EIGEN_COMP_CXXVER 11
#else
#define EIGEN_COMP_CXXVER 03
#endif
// The macros EIGEN_HAS_CXX?? defines a rough estimate of available c++ features
// but in practice we should not rely on them but rather on the availabilty of
// individual features as defined later.
// This is why there is no EIGEN_HAS_CXX17.
// FIXME: get rid of EIGEN_HAS_CXX14 and maybe even EIGEN_HAS_CXX11.
#if EIGEN_MAX_CPP_VER>=11 && EIGEN_COMP_CXXVER>=11
#define EIGEN_HAS_CXX11 1
#else
#define EIGEN_HAS_CXX11 0
#endif
#if EIGEN_MAX_CPP_VER>=14 && EIGEN_COMP_CXXVER>=14
#define EIGEN_HAS_CXX14 1
#else
#define EIGEN_HAS_CXX14 0
#endif
// Do we support r-value references?
#ifndef EIGEN_HAS_RVALUE_REFERENCES
#if EIGEN_MAX_CPP_VER>=11 && \
(__has_feature(cxx_rvalue_references) || \
(defined(__cplusplus) && __cplusplus >= 201103L) || \
(EIGEN_COMP_MSVC >= 1600))
#define EIGEN_HAS_RVALUE_REFERENCES 1
#else
#define EIGEN_HAS_RVALUE_REFERENCES 0
#endif
#endif
// Does the compiler support C99?
// Need to include <cmath> to make sure _GLIBCXX_USE_C99 gets defined
#include <cmath>
#ifndef EIGEN_HAS_C99_MATH
#if EIGEN_MAX_CPP_VER>=11 && \
((defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901)) \
|| (defined(__GNUC__) && defined(_GLIBCXX_USE_C99)) \
|| (defined(_LIBCPP_VERSION) && !defined(_MSC_VER)) \
|| (EIGEN_COMP_MSVC >= 1900) || defined(SYCL_DEVICE_ONLY))
#define EIGEN_HAS_C99_MATH 1
#else
#define EIGEN_HAS_C99_MATH 0
#endif
#endif
// Does the compiler support result_of?
// It's likely that MSVC 2013 supports result_of but I couldn't not find a good source for that,
// so let's be conservative.
#ifndef EIGEN_HAS_STD_RESULT_OF
#if EIGEN_MAX_CPP_VER>=11 && \
(__has_feature(cxx_lambdas) || (defined(__cplusplus) && __cplusplus >= 201103L) || EIGEN_COMP_MSVC >= 1900)
#define EIGEN_HAS_STD_RESULT_OF 1
#else
#define EIGEN_HAS_STD_RESULT_OF 0
#endif
#endif
#ifndef EIGEN_HAS_ALIGNAS
#if EIGEN_MAX_CPP_VER>=11 && EIGEN_HAS_CXX11 && \
( __has_feature(cxx_alignas) \
|| EIGEN_HAS_CXX14 \
|| (EIGEN_COMP_MSVC >= 1800) \
|| (EIGEN_GNUC_AT_LEAST(4,8)) \
|| (EIGEN_COMP_CLANG>=305) \
|| (EIGEN_COMP_ICC>=1500) \
|| (EIGEN_COMP_PGI>=1500) \
|| (EIGEN_COMP_SUNCC>=0x5130))
#define EIGEN_HAS_ALIGNAS 1
#else
#define EIGEN_HAS_ALIGNAS 0
#endif
#endif
// Does the compiler support type_traits?
// - full support of type traits was added only to GCC 5.1.0.
// - 20150626 corresponds to the last release of 4.x libstdc++
#ifndef EIGEN_HAS_TYPE_TRAITS
#if EIGEN_MAX_CPP_VER>=11 && (EIGEN_HAS_CXX11 || EIGEN_COMP_MSVC >= 1700) \
&& ((!EIGEN_COMP_GNUC_STRICT) || EIGEN_GNUC_AT_LEAST(5, 1)) \
&& ((!defined(__GLIBCXX__)) || __GLIBCXX__ > 20150626)
#define EIGEN_HAS_TYPE_TRAITS 1
#define EIGEN_INCLUDE_TYPE_TRAITS
#else
#define EIGEN_HAS_TYPE_TRAITS 0
#endif
#endif
// Does the compiler support variadic templates?
#ifndef EIGEN_HAS_VARIADIC_TEMPLATES
#if EIGEN_MAX_CPP_VER>=11 && (__cplusplus > 199711L || EIGEN_COMP_MSVC >= 1900) \
&& (!defined(__NVCC__) || !EIGEN_ARCH_ARM_OR_ARM64 || (EIGEN_COMP_NVCC >= 80000) )
// ^^ Disable the use of variadic templates when compiling with versions of nvcc older than 8.0 on ARM devices:
// this prevents nvcc from crashing when compiling Eigen on Tegra X1
#define EIGEN_HAS_VARIADIC_TEMPLATES 1
#elif EIGEN_MAX_CPP_VER>=11 && (__cplusplus > 199711L || EIGEN_COMP_MSVC >= 1900) && defined(SYCL_DEVICE_ONLY)
#define EIGEN_HAS_VARIADIC_TEMPLATES 1
#else
#define EIGEN_HAS_VARIADIC_TEMPLATES 0
#endif
#endif
// Does the compiler fully support const expressions? (as in c++14)
#ifndef EIGEN_HAS_CONSTEXPR
#if defined(EIGEN_CUDACC)
// Const expressions are supported provided that c++11 is enabled and we're using either clang or nvcc 7.5 or above
#if EIGEN_MAX_CPP_VER>=14 && (__cplusplus > 199711L && (EIGEN_COMP_CLANG || EIGEN_COMP_NVCC >= 70500))
#define EIGEN_HAS_CONSTEXPR 1
#endif
#elif EIGEN_MAX_CPP_VER>=14 && (__has_feature(cxx_relaxed_constexpr) || (defined(__cplusplus) && __cplusplus >= 201402L) || \
(EIGEN_GNUC_AT_LEAST(4,8) && (__cplusplus > 199711L)) || \
(EIGEN_COMP_CLANG >= 306 && (__cplusplus > 199711L)))
#define EIGEN_HAS_CONSTEXPR 1
#endif
#ifndef EIGEN_HAS_CONSTEXPR
#define EIGEN_HAS_CONSTEXPR 0
#endif
#endif // EIGEN_HAS_CONSTEXPR
// Does the compiler support C++11 math?
// Let's be conservative and enable the default C++11 implementation only if we are sure it exists
#ifndef EIGEN_HAS_CXX11_MATH
#if EIGEN_MAX_CPP_VER>=11 && ((__cplusplus > 201103L) || (__cplusplus >= 201103L) && (EIGEN_COMP_GNUC_STRICT || EIGEN_COMP_CLANG || EIGEN_COMP_MSVC || EIGEN_COMP_ICC) \
&& (EIGEN_ARCH_i386_OR_x86_64) && (EIGEN_OS_GNULINUX || EIGEN_OS_WIN_STRICT || EIGEN_OS_MAC))
#define EIGEN_HAS_CXX11_MATH 1
#else
#define EIGEN_HAS_CXX11_MATH 0
#endif
#endif
// Does the compiler support proper C++11 containers?
#ifndef EIGEN_HAS_CXX11_CONTAINERS
#if EIGEN_MAX_CPP_VER>=11 && \
((__cplusplus > 201103L) \
|| ((__cplusplus >= 201103L) && (EIGEN_COMP_GNUC_STRICT || EIGEN_COMP_CLANG || EIGEN_COMP_ICC>=1400)) \
|| EIGEN_COMP_MSVC >= 1900)
#define EIGEN_HAS_CXX11_CONTAINERS 1
#else
#define EIGEN_HAS_CXX11_CONTAINERS 0
#endif
#endif
// Does the compiler support C++11 noexcept?
#ifndef EIGEN_HAS_CXX11_NOEXCEPT
#if EIGEN_MAX_CPP_VER>=11 && \
(__has_feature(cxx_noexcept) \
|| (__cplusplus > 201103L) \
|| ((__cplusplus >= 201103L) && (EIGEN_COMP_GNUC_STRICT || EIGEN_COMP_CLANG || EIGEN_COMP_ICC>=1400)) \
|| EIGEN_COMP_MSVC >= 1900)
#define EIGEN_HAS_CXX11_NOEXCEPT 1
#else
#define EIGEN_HAS_CXX11_NOEXCEPT 0
#endif
#endif
#ifndef EIGEN_HAS_CXX11_ATOMIC
#if EIGEN_MAX_CPP_VER>=11 && \
(__has_feature(cxx_atomic) \
|| (__cplusplus > 201103L) \
|| ((__cplusplus >= 201103L) && (EIGEN_COMP_MSVC==0 || EIGEN_COMP_MSVC >= 1700)))
#define EIGEN_HAS_CXX11_ATOMIC 1
#else
#define EIGEN_HAS_CXX11_ATOMIC 0
#endif
#endif
#ifndef EIGEN_HAS_CXX11_OVERRIDE_FINAL
#if EIGEN_MAX_CPP_VER>=11 && \
(__cplusplus >= 201103L || EIGEN_COMP_MSVC >= 1700)
#define EIGEN_HAS_CXX11_OVERRIDE_FINAL 1
#else
#define EIGEN_HAS_CXX11_OVERRIDE_FINAL 0
#endif
#endif
// NOTE: the required Apple's clang version is very conservative
// and it could be that XCode 9 works just fine.
// NOTE: the MSVC version is based on https://en.cppreference.com/w/cpp/compiler_support
// and not tested.
#ifndef EIGEN_HAS_CXX17_OVERALIGN
#if EIGEN_MAX_CPP_VER>=17 && EIGEN_COMP_CXXVER>=17 && ( \
(EIGEN_COMP_MSVC >= 1912) \
|| (EIGEN_GNUC_AT_LEAST(7,0)) \
|| ((!defined(__apple_build_version__)) && (EIGEN_COMP_CLANG>=500)) \
|| (( defined(__apple_build_version__)) && (__apple_build_version__>=10000000)) \
)
#define EIGEN_HAS_CXX17_OVERALIGN 1
#else
#define EIGEN_HAS_CXX17_OVERALIGN 0
#endif
#endif
#if defined(EIGEN_CUDACC) && EIGEN_HAS_CONSTEXPR
// While available already with c++11, this is useful mostly starting with c++14 and relaxed constexpr rules
#if defined(__NVCC__)
// nvcc considers constexpr functions as __host__ __device__ with the option --expt-relaxed-constexpr
#ifdef __CUDACC_RELAXED_CONSTEXPR__
#define EIGEN_CONSTEXPR_ARE_DEVICE_FUNC
#endif
#elif defined(__clang__) && defined(__CUDA__) && __has_feature(cxx_relaxed_constexpr)
// clang++ always considers constexpr functions as implicitly __host__ __device__
#define EIGEN_CONSTEXPR_ARE_DEVICE_FUNC
#endif
#endif
// Does the compiler support the __int128 and __uint128_t extensions for 128-bit
// integer arithmetic?
//
// Clang and GCC define __SIZEOF_INT128__ when these extensions are supported,
// but we avoid using them in certain cases:
//
// * Building using Clang for Windows, where the Clang runtime library has
// 128-bit support only on LP64 architectures, but Windows is LLP64.
#ifndef EIGEN_HAS_BUILTIN_INT128
#if defined(__SIZEOF_INT128__) && !(EIGEN_OS_WIN && EIGEN_COMP_CLANG)
#define EIGEN_HAS_BUILTIN_INT128 1
#else
#define EIGEN_HAS_BUILTIN_INT128 0
#endif
#endif
//------------------------------------------------------------------------------------------
// Preprocessor programming helpers
//------------------------------------------------------------------------------------------
// This macro can be used to prevent from macro expansion, e.g.:
// std::max EIGEN_NOT_A_MACRO(a,b)
#define EIGEN_NOT_A_MACRO
#define EIGEN_DEBUG_VAR(x) std::cerr << #x << " = " << x << std::endl;
// concatenate two tokens
#define EIGEN_CAT2(a,b) a ## b
#define EIGEN_CAT(a,b) EIGEN_CAT2(a,b)
#define EIGEN_COMMA ,
// convert a token to a string
#define EIGEN_MAKESTRING2(a) #a
#define EIGEN_MAKESTRING(a) EIGEN_MAKESTRING2(a)
// EIGEN_STRONG_INLINE is a stronger version of the inline, using __forceinline on MSVC,
// but it still doesn't use GCC's always_inline. This is useful in (common) situations where MSVC needs forceinline
// but GCC is still doing fine with just inline.
#ifndef EIGEN_STRONG_INLINE
#if EIGEN_COMP_MSVC || EIGEN_COMP_ICC
#define EIGEN_STRONG_INLINE __forceinline
#else
#define EIGEN_STRONG_INLINE inline
#endif
#endif
// EIGEN_ALWAYS_INLINE is the stronget, it has the effect of making the function inline and adding every possible
// attribute to maximize inlining. This should only be used when really necessary: in particular,
// it uses __attribute__((always_inline)) on GCC, which most of the time is useless and can severely harm compile times.
// FIXME with the always_inline attribute,
// gcc 3.4.x and 4.1 reports the following compilation error:
// Eval.h:91: sorry, unimplemented: inlining failed in call to 'const Eigen::Eval<Derived> Eigen::MatrixBase<Scalar, Derived>::eval() const'
// : function body not available
// See also bug 1367
#if EIGEN_GNUC_AT_LEAST(4,2) && !defined(SYCL_DEVICE_ONLY)
#define EIGEN_ALWAYS_INLINE __attribute__((always_inline)) inline
#else
#define EIGEN_ALWAYS_INLINE EIGEN_STRONG_INLINE
#endif
#if EIGEN_COMP_GNUC
#define EIGEN_DONT_INLINE __attribute__((noinline))
#elif EIGEN_COMP_MSVC
#define EIGEN_DONT_INLINE __declspec(noinline)
#else
#define EIGEN_DONT_INLINE
#endif
#if EIGEN_COMP_GNUC
#define EIGEN_PERMISSIVE_EXPR __extension__
#else
#define EIGEN_PERMISSIVE_EXPR
#endif
// GPU stuff
// Disable some features when compiling with GPU compilers (NVCC/clang-cuda/SYCL/HIPCC)
#if defined(EIGEN_CUDACC) || defined(SYCL_DEVICE_ONLY) || defined(EIGEN_HIPCC)
// Do not try asserts on device code
#ifndef EIGEN_NO_DEBUG
#define EIGEN_NO_DEBUG
#endif
#ifdef EIGEN_INTERNAL_DEBUGGING
#undef EIGEN_INTERNAL_DEBUGGING
#endif
#ifdef EIGEN_EXCEPTIONS
#undef EIGEN_EXCEPTIONS
#endif
#endif
#if defined(SYCL_DEVICE_ONLY)
#ifndef EIGEN_DONT_VECTORIZE
#define EIGEN_DONT_VECTORIZE
#endif
#define EIGEN_DEVICE_FUNC __attribute__((flatten)) __attribute__((always_inline))
// All functions callable from CUDA/HIP code must be qualified with __device__
#elif defined(EIGEN_GPUCC)
#define EIGEN_DEVICE_FUNC __host__ __device__
#else
#define EIGEN_DEVICE_FUNC
#endif
// this macro allows to get rid of linking errors about multiply defined functions.
// - static is not very good because it prevents definitions from different object files to be merged.
// So static causes the resulting linked executable to be bloated with multiple copies of the same function.
// - inline is not perfect either as it unwantedly hints the compiler toward inlining the function.
#define EIGEN_DECLARE_FUNCTION_ALLOWING_MULTIPLE_DEFINITIONS EIGEN_DEVICE_FUNC
#define EIGEN_DEFINE_FUNCTION_ALLOWING_MULTIPLE_DEFINITIONS EIGEN_DEVICE_FUNC inline
#ifdef NDEBUG
# ifndef EIGEN_NO_DEBUG
# define EIGEN_NO_DEBUG
# endif
#endif
// eigen_plain_assert is where we implement the workaround for the assert() bug in GCC <= 4.3, see bug 89
#ifdef EIGEN_NO_DEBUG
#ifdef SYCL_DEVICE_ONLY // used to silence the warning on SYCL device
#define eigen_plain_assert(x) EIGEN_UNUSED_VARIABLE(x)
#else
#define eigen_plain_assert(x)
#endif
#else
#if EIGEN_SAFE_TO_USE_STANDARD_ASSERT_MACRO
namespace Eigen {
namespace internal {
inline bool copy_bool(bool b) { return b; }
}
}
#define eigen_plain_assert(x) assert(x)
#else
// work around bug 89
#include <cstdlib> // for abort
#include <iostream> // for std::cerr
namespace Eigen {
namespace internal {
// trivial function copying a bool. Must be EIGEN_DONT_INLINE, so we implement it after including Eigen headers.
// see bug 89.
namespace {
EIGEN_DONT_INLINE bool copy_bool(bool b) { return b; }
}
inline void assert_fail(const char *condition, const char *function, const char *file, int line)
{
std::cerr << "assertion failed: " << condition << " in function " << function << " at " << file << ":" << line << std::endl;
abort();
}
}
}
#define eigen_plain_assert(x) \
do { \
if(!Eigen::internal::copy_bool(x)) \
Eigen::internal::assert_fail(EIGEN_MAKESTRING(x), __PRETTY_FUNCTION__, __FILE__, __LINE__); \
} while(false)
#endif
#endif
// eigen_assert can be overridden
#ifndef eigen_assert
#define eigen_assert(x) eigen_plain_assert(x)
#endif
#ifdef EIGEN_INTERNAL_DEBUGGING
#define eigen_internal_assert(x) eigen_assert(x)
#else
#define eigen_internal_assert(x)
#endif
#ifdef EIGEN_NO_DEBUG
#define EIGEN_ONLY_USED_FOR_DEBUG(x) EIGEN_UNUSED_VARIABLE(x)
#else
#define EIGEN_ONLY_USED_FOR_DEBUG(x)
#endif
#ifndef EIGEN_NO_DEPRECATED_WARNING
#if EIGEN_COMP_GNUC
#define EIGEN_DEPRECATED __attribute__((deprecated))
#elif EIGEN_COMP_MSVC
#define EIGEN_DEPRECATED __declspec(deprecated)
#else
#define EIGEN_DEPRECATED
#endif
#else
#define EIGEN_DEPRECATED
#endif
#if EIGEN_COMP_GNUC
#define EIGEN_UNUSED __attribute__((unused))
#else
#define EIGEN_UNUSED
#endif
// Suppresses 'unused variable' warnings.
namespace Eigen {
namespace internal {
template<typename T> EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void ignore_unused_variable(const T&) {}
}
}
#define EIGEN_UNUSED_VARIABLE(var) Eigen::internal::ignore_unused_variable(var);
#if !defined(EIGEN_ASM_COMMENT)
#if EIGEN_COMP_GNUC && (EIGEN_ARCH_i386_OR_x86_64 || EIGEN_ARCH_ARM_OR_ARM64)
#define EIGEN_ASM_COMMENT(X) __asm__("#" X)
#else
#define EIGEN_ASM_COMMENT(X)
#endif
#endif
#if EIGEN_COMP_MSVC
// NOTE MSVC often gives C4127 warnings with compiletime if statements. See bug 1362.
// This workaround is ugly, but it does the job.
# define EIGEN_CONST_CONDITIONAL(cond) (void)0, cond
#else
# define EIGEN_CONST_CONDITIONAL(cond) cond
#endif
#ifdef EIGEN_DONT_USE_RESTRICT_KEYWORD
#define EIGEN_RESTRICT
#endif
#ifndef EIGEN_RESTRICT
#define EIGEN_RESTRICT __restrict
#endif
#ifndef EIGEN_DEFAULT_IO_FORMAT
#ifdef EIGEN_MAKING_DOCS
// format used in Eigen's documentation
// needed to define it here as escaping characters in CMake add_definition's argument seems very problematic.
#define EIGEN_DEFAULT_IO_FORMAT Eigen::IOFormat(3, 0, " ", "\n", "", "")
#else
#define EIGEN_DEFAULT_IO_FORMAT Eigen::IOFormat()
#endif
#endif
// just an empty macro !
#define EIGEN_EMPTY
// When compiling CUDA/HIP device code with NVCC or HIPCC
// pull in math functions from the global namespace.
// In host mode, and when device code is compiled with clang,
// use the std versions.
#if (defined(EIGEN_CUDA_ARCH) && defined(__NVCC__)) || defined(EIGEN_HIP_DEVICE_COMPILE)
#define EIGEN_USING_STD_MATH(FUNC) using ::FUNC;
#else
#define EIGEN_USING_STD_MATH(FUNC) using std::FUNC;
#endif
// When compiling HIP device code with HIPCC, certain functions
// from the stdlib need to be pulled in from the global namespace
// (as opposed to from the std:: namespace). This is because HIPCC
// does not natively support all the std:: routines in device code.
// Instead it contains header files that declare the corresponding
// routines in the global namespace such they can be used in device code.
#if defined(EIGEN_HIP_DEVICE_COMPILE)
#define EIGEN_USING_STD(FUNC) using ::FUNC;
#else
#define EIGEN_USING_STD(FUNC) using std::FUNC;
#endif
#if EIGEN_COMP_MSVC_STRICT && (EIGEN_COMP_MSVC < 1900 || EIGEN_COMP_NVCC)
// for older MSVC versions, as well as 1900 && CUDA 8, using the base operator is sufficient (cf Bugs 1000, 1324)
#define EIGEN_INHERIT_ASSIGNMENT_EQUAL_OPERATOR(Derived) \
using Base::operator =;
#elif EIGEN_COMP_CLANG // workaround clang bug (see http://forum.kde.org/viewtopic.php?f=74&t=102653)
#define EIGEN_INHERIT_ASSIGNMENT_EQUAL_OPERATOR(Derived) \
using Base::operator =; \
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Derived& operator=(const Derived& other) { Base::operator=(other); return *this; } \
template <typename OtherDerived> \
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Derived& operator=(const DenseBase<OtherDerived>& other) { Base::operator=(other.derived()); return *this; }
#else
#define EIGEN_INHERIT_ASSIGNMENT_EQUAL_OPERATOR(Derived) \
using Base::operator =; \
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Derived& operator=(const Derived& other) \
{ \
Base::operator=(other); \
return *this; \
}
#endif
/** \internal
* \brief Macro to manually inherit assignment operators.
* This is necessary, because the implicitly defined assignment operator gets deleted when a custom operator= is defined.
*/
#define EIGEN_INHERIT_ASSIGNMENT_OPERATORS(Derived) EIGEN_INHERIT_ASSIGNMENT_EQUAL_OPERATOR(Derived)
/**
* Just a side note. Commenting within defines works only by documenting
* behind the object (via '!<'). Comments cannot be multi-line and thus
* we have these extra long lines. What is confusing doxygen over here is
* that we use '\' and basically have a bunch of typedefs with their
* documentation in a single line.
**/
#define EIGEN_GENERIC_PUBLIC_INTERFACE(Derived) \
typedef typename Eigen::internal::traits<Derived>::Scalar Scalar; /*!< \brief Numeric type, e.g. float, double, int or std::complex<float>. */ \
typedef typename Eigen::NumTraits<Scalar>::Real RealScalar; /*!< \brief The underlying numeric type for composed scalar types. \details In cases where Scalar is e.g. std::complex<T>, T were corresponding to RealScalar. */ \
typedef typename Base::CoeffReturnType CoeffReturnType; /*!< \brief The return type for coefficient access. \details Depending on whether the object allows direct coefficient access (e.g. for a MatrixXd), this type is either 'const Scalar&' or simply 'Scalar' for objects that do not allow direct coefficient access. */ \
typedef typename Eigen::internal::ref_selector<Derived>::type Nested; \
typedef typename Eigen::internal::traits<Derived>::StorageKind StorageKind; \
typedef typename Eigen::internal::traits<Derived>::StorageIndex StorageIndex; \
enum CompileTimeTraits \
{ RowsAtCompileTime = Eigen::internal::traits<Derived>::RowsAtCompileTime, \
ColsAtCompileTime = Eigen::internal::traits<Derived>::ColsAtCompileTime, \
Flags = Eigen::internal::traits<Derived>::Flags, \
SizeAtCompileTime = Base::SizeAtCompileTime, \
MaxSizeAtCompileTime = Base::MaxSizeAtCompileTime, \
IsVectorAtCompileTime = Base::IsVectorAtCompileTime }; \
using Base::derived; \
using Base::const_cast_derived;
// FIXME Maybe the EIGEN_DENSE_PUBLIC_INTERFACE could be removed as importing PacketScalar is rarely needed
#define EIGEN_DENSE_PUBLIC_INTERFACE(Derived) \
EIGEN_GENERIC_PUBLIC_INTERFACE(Derived) \
typedef typename Base::PacketScalar PacketScalar;
#define EIGEN_PLAIN_ENUM_MIN(a,b) (((int)a <= (int)b) ? (int)a : (int)b)
#define EIGEN_PLAIN_ENUM_MAX(a,b) (((int)a >= (int)b) ? (int)a : (int)b)
// EIGEN_SIZE_MIN_PREFER_DYNAMIC gives the min between compile-time sizes. 0 has absolute priority, followed by 1,
// followed by Dynamic, followed by other finite values. The reason for giving Dynamic the priority over
// finite values is that min(3, Dynamic) should be Dynamic, since that could be anything between 0 and 3.
#define EIGEN_SIZE_MIN_PREFER_DYNAMIC(a,b) (((int)a == 0 || (int)b == 0) ? 0 \
: ((int)a == 1 || (int)b == 1) ? 1 \
: ((int)a == Dynamic || (int)b == Dynamic) ? Dynamic \
: ((int)a <= (int)b) ? (int)a : (int)b)
// EIGEN_SIZE_MIN_PREFER_FIXED is a variant of EIGEN_SIZE_MIN_PREFER_DYNAMIC comparing MaxSizes. The difference is that finite values
// now have priority over Dynamic, so that min(3, Dynamic) gives 3. Indeed, whatever the actual value is
// (between 0 and 3), it is not more than 3.
#define EIGEN_SIZE_MIN_PREFER_FIXED(a,b) (((int)a == 0 || (int)b == 0) ? 0 \
: ((int)a == 1 || (int)b == 1) ? 1 \
: ((int)a == Dynamic && (int)b == Dynamic) ? Dynamic \
: ((int)a == Dynamic) ? (int)b \
: ((int)b == Dynamic) ? (int)a \
: ((int)a <= (int)b) ? (int)a : (int)b)
// see EIGEN_SIZE_MIN_PREFER_DYNAMIC. No need for a separate variant for MaxSizes here.
#define EIGEN_SIZE_MAX(a,b) (((int)a == Dynamic || (int)b == Dynamic) ? Dynamic \
: ((int)a >= (int)b) ? (int)a : (int)b)
#define EIGEN_LOGICAL_XOR(a,b) (((a) || (b)) && !((a) && (b)))
#define EIGEN_IMPLIES(a,b) (!(a) || (b))
// the expression type of a standard coefficient wise binary operation
#define EIGEN_CWISE_BINARY_RETURN_TYPE(LHS,RHS,OPNAME) \
CwiseBinaryOp< \
EIGEN_CAT(EIGEN_CAT(internal::scalar_,OPNAME),_op)< \
typename internal::traits<LHS>::Scalar, \
typename internal::traits<RHS>::Scalar \
>, \
const LHS, \
const RHS \
>
#define EIGEN_MAKE_CWISE_BINARY_OP(METHOD,OPNAME) \
template<typename OtherDerived> \
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const EIGEN_CWISE_BINARY_RETURN_TYPE(Derived,OtherDerived,OPNAME) \
(METHOD)(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const \
{ \
return EIGEN_CWISE_BINARY_RETURN_TYPE(Derived,OtherDerived,OPNAME)(derived(), other.derived()); \
}
#define EIGEN_SCALAR_BINARY_SUPPORTED(OPNAME,TYPEA,TYPEB) \
(Eigen::internal::has_ReturnType<Eigen::ScalarBinaryOpTraits<TYPEA,TYPEB,EIGEN_CAT(EIGEN_CAT(Eigen::internal::scalar_,OPNAME),_op)<TYPEA,TYPEB> > >::value)
#define EIGEN_EXPR_BINARYOP_SCALAR_RETURN_TYPE(EXPR,SCALAR,OPNAME) \
CwiseBinaryOp<EIGEN_CAT(EIGEN_CAT(internal::scalar_,OPNAME),_op)<typename internal::traits<EXPR>::Scalar,SCALAR>, const EXPR, \
const typename internal::plain_constant_type<EXPR,SCALAR>::type>
#define EIGEN_SCALAR_BINARYOP_EXPR_RETURN_TYPE(SCALAR,EXPR,OPNAME) \
CwiseBinaryOp<EIGEN_CAT(EIGEN_CAT(internal::scalar_,OPNAME),_op)<SCALAR,typename internal::traits<EXPR>::Scalar>, \
const typename internal::plain_constant_type<EXPR,SCALAR>::type, const EXPR>
// Workaround for MSVC 2010 (see ML thread "patch with compile for for MSVC 2010")
#if EIGEN_COMP_MSVC_STRICT && (EIGEN_COMP_MSVC_STRICT<=1600)
#define EIGEN_MSVC10_WORKAROUND_BINARYOP_RETURN_TYPE(X) typename internal::enable_if<true,X>::type
#else
#define EIGEN_MSVC10_WORKAROUND_BINARYOP_RETURN_TYPE(X) X
#endif
#define EIGEN_MAKE_SCALAR_BINARY_OP_ONTHERIGHT(METHOD,OPNAME) \
template <typename T> EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE \
EIGEN_MSVC10_WORKAROUND_BINARYOP_RETURN_TYPE(const EIGEN_EXPR_BINARYOP_SCALAR_RETURN_TYPE(Derived,typename internal::promote_scalar_arg<Scalar EIGEN_COMMA T EIGEN_COMMA EIGEN_SCALAR_BINARY_SUPPORTED(OPNAME,Scalar,T)>::type,OPNAME))\
(METHOD)(const T& scalar) const { \
typedef typename internal::promote_scalar_arg<Scalar,T,EIGEN_SCALAR_BINARY_SUPPORTED(OPNAME,Scalar,T)>::type PromotedT; \
return EIGEN_EXPR_BINARYOP_SCALAR_RETURN_TYPE(Derived,PromotedT,OPNAME)(derived(), \
typename internal::plain_constant_type<Derived,PromotedT>::type(derived().rows(), derived().cols(), internal::scalar_constant_op<PromotedT>(scalar))); \
}
#define EIGEN_MAKE_SCALAR_BINARY_OP_ONTHELEFT(METHOD,OPNAME) \
template <typename T> EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE friend \
EIGEN_MSVC10_WORKAROUND_BINARYOP_RETURN_TYPE(const EIGEN_SCALAR_BINARYOP_EXPR_RETURN_TYPE(typename internal::promote_scalar_arg<Scalar EIGEN_COMMA T EIGEN_COMMA EIGEN_SCALAR_BINARY_SUPPORTED(OPNAME,T,Scalar)>::type,Derived,OPNAME)) \
(METHOD)(const T& scalar, const StorageBaseType& matrix) { \
typedef typename internal::promote_scalar_arg<Scalar,T,EIGEN_SCALAR_BINARY_SUPPORTED(OPNAME,T,Scalar)>::type PromotedT; \
return EIGEN_SCALAR_BINARYOP_EXPR_RETURN_TYPE(PromotedT,Derived,OPNAME)( \
typename internal::plain_constant_type<Derived,PromotedT>::type(matrix.derived().rows(), matrix.derived().cols(), internal::scalar_constant_op<PromotedT>(scalar)), matrix.derived()); \
}
#define EIGEN_MAKE_SCALAR_BINARY_OP(METHOD,OPNAME) \
EIGEN_MAKE_SCALAR_BINARY_OP_ONTHELEFT(METHOD,OPNAME) \
EIGEN_MAKE_SCALAR_BINARY_OP_ONTHERIGHT(METHOD,OPNAME)
#if (defined(_CPPUNWIND) || defined(__EXCEPTIONS)) && !defined(EIGEN_CUDA_ARCH) && !defined(EIGEN_EXCEPTIONS) && !defined(EIGEN_USE_SYCL) && !defined(EIGEN_HIP_DEVICE_COMPILE)
#define EIGEN_EXCEPTIONS
#endif
#ifdef EIGEN_EXCEPTIONS
# define EIGEN_THROW_X(X) throw X
# define EIGEN_THROW throw
# define EIGEN_TRY try
# define EIGEN_CATCH(X) catch (X)
#else
# if defined(EIGEN_CUDA_ARCH)
# define EIGEN_THROW_X(X) asm("trap;")
# define EIGEN_THROW asm("trap;")
# elif defined(EIGEN_HIP_DEVICE_COMPILE)
# define EIGEN_THROW_X(X) asm("s_trap 0")
# define EIGEN_THROW asm("s_trap 0")
# else
# define EIGEN_THROW_X(X) std::abort()
# define EIGEN_THROW std::abort()
# endif
# define EIGEN_TRY if (true)
# define EIGEN_CATCH(X) else
#endif
#if EIGEN_HAS_CXX11_NOEXCEPT
# define EIGEN_INCLUDE_TYPE_TRAITS
# define EIGEN_NOEXCEPT noexcept
# define EIGEN_NOEXCEPT_IF(x) noexcept(x)
# define EIGEN_NO_THROW noexcept(true)
# define EIGEN_EXCEPTION_SPEC(X) noexcept(false)
#else
# define EIGEN_NOEXCEPT
# define EIGEN_NOEXCEPT_IF(x)
# define EIGEN_NO_THROW throw()
# if EIGEN_COMP_MSVC || EIGEN_COMP_CXXVER>=17
// MSVC does not support exception specifications (warning C4290),
// and they are deprecated in c++11 anyway. This is even an error in c++17.
# define EIGEN_EXCEPTION_SPEC(X) throw()
# else
# define EIGEN_EXCEPTION_SPEC(X) throw(X)
# endif
#endif
#if EIGEN_HAS_VARIADIC_TEMPLATES
// The all function is used to enable a variadic version of eigen_assert which can take a parameter pack as its input.
namespace Eigen {
namespace internal {
inline bool all(){ return true; }
template<typename T, typename ...Ts>
bool all(T t, Ts ... ts){ return t && all(ts...); }
}
}
#endif
#if EIGEN_HAS_CXX11_OVERRIDE_FINAL
// provide override and final specifiers if they are available:
# define EIGEN_OVERRIDE override
# define EIGEN_FINAL final
#else
# define EIGEN_OVERRIDE
# define EIGEN_FINAL
#endif
// Wrapping #pragma unroll in a macro since it is required for SYCL
#if defined(SYCL_DEVICE_ONLY)
#if defined(_MSC_VER)
#define EIGEN_UNROLL_LOOP __pragma(unroll)
#else
#define EIGEN_UNROLL_LOOP _Pragma("unroll")
#endif
#else
#define EIGEN_UNROLL_LOOP
#endif
#endif // EIGEN_MACROS_H
| [
"finn.niu@apptech.com.hk"
] | finn.niu@apptech.com.hk |
211ece9dcfbeff9fce97c05f1685fb048a40c114 | 271d1e144baf8b1174e89b4c8950221cddaccfec | /src/prevector.h | d539be4a0f4eb95825c87e4032add5cc65b87c1b | [
"MIT"
] | permissive | TON-beta/TelegramOpenNetwork | 61591a57cb0211ddf12fa94150db3bce09cc72fc | cb773a5a792e4b97d77d643189edd35da52e1a79 | refs/heads/master | 2020-06-26T15:01:29.600748 | 2019-08-07T23:50:08 | 2019-08-07T23:50:08 | 199,666,103 | 15 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 18,171 | h | // Copyright (c) 2015-2018 The ton Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef ton_PREVECTOR_H
#define ton_PREVECTOR_H
#include <assert.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <algorithm>
#include <cstddef>
#include <iterator>
#include <type_traits>
#pragma pack(push, 1)
/** Implements a drop-in replacement for std::vector<T> which stores up to N
* elements directly (without heap allocation). The types Size and Diff are
* used to store element counts, and can be any unsigned + signed type.
*
* Storage layout is either:
* - Direct allocation:
* - Size _size: the number of used elements (between 0 and N)
* - T direct[N]: an array of N elements of type T
* (only the first _size are initialized).
* - Indirect allocation:
* - Size _size: the number of used elements plus N + 1
* - Size capacity: the number of allocated elements
* - T* indirect: a pointer to an array of capacity elements of type T
* (only the first _size are initialized).
*
* The data type T must be movable by memmove/realloc(). Once we switch to C++,
* move constructors can be used instead.
*/
template<unsigned int N, typename T, typename Size = uint32_t, typename Diff = int32_t>
class prevector {
public:
typedef Size size_type;
typedef Diff difference_type;
typedef T value_type;
typedef value_type& reference;
typedef const value_type& const_reference;
typedef value_type* pointer;
typedef const value_type* const_pointer;
class iterator {
T* ptr;
public:
typedef Diff difference_type;
typedef T value_type;
typedef T* pointer;
typedef T& reference;
typedef std::random_access_iterator_tag iterator_category;
iterator(T* ptr_) : ptr(ptr_) {}
T& operator*() const { return *ptr; }
T* operator->() const { return ptr; }
T& operator[](size_type pos) { return ptr[pos]; }
const T& operator[](size_type pos) const { return ptr[pos]; }
iterator& operator++() { ptr++; return *this; }
iterator& operator--() { ptr--; return *this; }
iterator operator++(int) { iterator copy(*this); ++(*this); return copy; }
iterator operator--(int) { iterator copy(*this); --(*this); return copy; }
difference_type friend operator-(iterator a, iterator b) { return (&(*a) - &(*b)); }
iterator operator+(size_type n) { return iterator(ptr + n); }
iterator& operator+=(size_type n) { ptr += n; return *this; }
iterator operator-(size_type n) { return iterator(ptr - n); }
iterator& operator-=(size_type n) { ptr -= n; return *this; }
bool operator==(iterator x) const { return ptr == x.ptr; }
bool operator!=(iterator x) const { return ptr != x.ptr; }
bool operator>=(iterator x) const { return ptr >= x.ptr; }
bool operator<=(iterator x) const { return ptr <= x.ptr; }
bool operator>(iterator x) const { return ptr > x.ptr; }
bool operator<(iterator x) const { return ptr < x.ptr; }
};
class reverse_iterator {
T* ptr;
public:
typedef Diff difference_type;
typedef T value_type;
typedef T* pointer;
typedef T& reference;
typedef std::bidirectional_iterator_tag iterator_category;
reverse_iterator(T* ptr_) : ptr(ptr_) {}
T& operator*() { return *ptr; }
const T& operator*() const { return *ptr; }
T* operator->() { return ptr; }
const T* operator->() const { return ptr; }
reverse_iterator& operator--() { ptr++; return *this; }
reverse_iterator& operator++() { ptr--; return *this; }
reverse_iterator operator++(int) { reverse_iterator copy(*this); ++(*this); return copy; }
reverse_iterator operator--(int) { reverse_iterator copy(*this); --(*this); return copy; }
bool operator==(reverse_iterator x) const { return ptr == x.ptr; }
bool operator!=(reverse_iterator x) const { return ptr != x.ptr; }
};
class const_iterator {
const T* ptr;
public:
typedef Diff difference_type;
typedef const T value_type;
typedef const T* pointer;
typedef const T& reference;
typedef std::random_access_iterator_tag iterator_category;
const_iterator(const T* ptr_) : ptr(ptr_) {}
const_iterator(iterator x) : ptr(&(*x)) {}
const T& operator*() const { return *ptr; }
const T* operator->() const { return ptr; }
const T& operator[](size_type pos) const { return ptr[pos]; }
const_iterator& operator++() { ptr++; return *this; }
const_iterator& operator--() { ptr--; return *this; }
const_iterator operator++(int) { const_iterator copy(*this); ++(*this); return copy; }
const_iterator operator--(int) { const_iterator copy(*this); --(*this); return copy; }
difference_type friend operator-(const_iterator a, const_iterator b) { return (&(*a) - &(*b)); }
const_iterator operator+(size_type n) { return const_iterator(ptr + n); }
const_iterator& operator+=(size_type n) { ptr += n; return *this; }
const_iterator operator-(size_type n) { return const_iterator(ptr - n); }
const_iterator& operator-=(size_type n) { ptr -= n; return *this; }
bool operator==(const_iterator x) const { return ptr == x.ptr; }
bool operator!=(const_iterator x) const { return ptr != x.ptr; }
bool operator>=(const_iterator x) const { return ptr >= x.ptr; }
bool operator<=(const_iterator x) const { return ptr <= x.ptr; }
bool operator>(const_iterator x) const { return ptr > x.ptr; }
bool operator<(const_iterator x) const { return ptr < x.ptr; }
};
class const_reverse_iterator {
const T* ptr;
public:
typedef Diff difference_type;
typedef const T value_type;
typedef const T* pointer;
typedef const T& reference;
typedef std::bidirectional_iterator_tag iterator_category;
const_reverse_iterator(const T* ptr_) : ptr(ptr_) {}
const_reverse_iterator(reverse_iterator x) : ptr(&(*x)) {}
const T& operator*() const { return *ptr; }
const T* operator->() const { return ptr; }
const_reverse_iterator& operator--() { ptr++; return *this; }
const_reverse_iterator& operator++() { ptr--; return *this; }
const_reverse_iterator operator++(int) { const_reverse_iterator copy(*this); ++(*this); return copy; }
const_reverse_iterator operator--(int) { const_reverse_iterator copy(*this); --(*this); return copy; }
bool operator==(const_reverse_iterator x) const { return ptr == x.ptr; }
bool operator!=(const_reverse_iterator x) const { return ptr != x.ptr; }
};
private:
size_type _size = 0;
union direct_or_indirect {
char direct[sizeof(T) * N];
struct {
size_type capacity;
char* indirect;
};
} _union = {};
T* direct_ptr(difference_type pos) { return reinterpret_cast<T*>(_union.direct) + pos; }
const T* direct_ptr(difference_type pos) const { return reinterpret_cast<const T*>(_union.direct) + pos; }
T* indirect_ptr(difference_type pos) { return reinterpret_cast<T*>(_union.indirect) + pos; }
const T* indirect_ptr(difference_type pos) const { return reinterpret_cast<const T*>(_union.indirect) + pos; }
bool is_direct() const { return _size <= N; }
void change_capacity(size_type new_capacity) {
if (new_capacity <= N) {
if (!is_direct()) {
T* indirect = indirect_ptr(0);
T* src = indirect;
T* dst = direct_ptr(0);
memcpy(dst, src, size() * sizeof(T));
free(indirect);
_size -= N + 1;
}
} else {
if (!is_direct()) {
/* FIXME: Because malloc/realloc here won't call new_handler if allocation fails, assert
success. These should instead use an allocator or new/delete so that handlers
are called as necessary, but performance would be slightly degraded by doing so. */
_union.indirect = static_cast<char*>(realloc(_union.indirect, ((size_t)sizeof(T)) * new_capacity));
assert(_union.indirect);
_union.capacity = new_capacity;
} else {
char* new_indirect = static_cast<char*>(malloc(((size_t)sizeof(T)) * new_capacity));
assert(new_indirect);
T* src = direct_ptr(0);
T* dst = reinterpret_cast<T*>(new_indirect);
memcpy(dst, src, size() * sizeof(T));
_union.indirect = new_indirect;
_union.capacity = new_capacity;
_size += N + 1;
}
}
}
T* item_ptr(difference_type pos) { return is_direct() ? direct_ptr(pos) : indirect_ptr(pos); }
const T* item_ptr(difference_type pos) const { return is_direct() ? direct_ptr(pos) : indirect_ptr(pos); }
void fill(T* dst, ptrdiff_t count, const T& value = T{}) {
std::fill_n(dst, count, value);
}
template<typename InputIterator>
void fill(T* dst, InputIterator first, InputIterator last) {
while (first != last) {
new(static_cast<void*>(dst)) T(*first);
++dst;
++first;
}
}
public:
void assign(size_type n, const T& val) {
clear();
if (capacity() < n) {
change_capacity(n);
}
_size += n;
fill(item_ptr(0), n, val);
}
template<typename InputIterator>
void assign(InputIterator first, InputIterator last) {
size_type n = last - first;
clear();
if (capacity() < n) {
change_capacity(n);
}
_size += n;
fill(item_ptr(0), first, last);
}
prevector() {}
explicit prevector(size_type n) {
resize(n);
}
explicit prevector(size_type n, const T& val) {
change_capacity(n);
_size += n;
fill(item_ptr(0), n, val);
}
template<typename InputIterator>
prevector(InputIterator first, InputIterator last) {
size_type n = last - first;
change_capacity(n);
_size += n;
fill(item_ptr(0), first, last);
}
prevector(const prevector<N, T, Size, Diff>& other) {
size_type n = other.size();
change_capacity(n);
_size += n;
fill(item_ptr(0), other.begin(), other.end());
}
prevector(prevector<N, T, Size, Diff>&& other) {
swap(other);
}
prevector& operator=(const prevector<N, T, Size, Diff>& other) {
if (&other == this) {
return *this;
}
assign(other.begin(), other.end());
return *this;
}
prevector& operator=(prevector<N, T, Size, Diff>&& other) {
swap(other);
return *this;
}
size_type size() const {
return is_direct() ? _size : _size - N - 1;
}
bool empty() const {
return size() == 0;
}
iterator begin() { return iterator(item_ptr(0)); }
const_iterator begin() const { return const_iterator(item_ptr(0)); }
iterator end() { return iterator(item_ptr(size())); }
const_iterator end() const { return const_iterator(item_ptr(size())); }
reverse_iterator rbegin() { return reverse_iterator(item_ptr(size() - 1)); }
const_reverse_iterator rbegin() const { return const_reverse_iterator(item_ptr(size() - 1)); }
reverse_iterator rend() { return reverse_iterator(item_ptr(-1)); }
const_reverse_iterator rend() const { return const_reverse_iterator(item_ptr(-1)); }
size_t capacity() const {
if (is_direct()) {
return N;
} else {
return _union.capacity;
}
}
T& operator[](size_type pos) {
return *item_ptr(pos);
}
const T& operator[](size_type pos) const {
return *item_ptr(pos);
}
void resize(size_type new_size) {
size_type cur_size = size();
if (cur_size == new_size) {
return;
}
if (cur_size > new_size) {
erase(item_ptr(new_size), end());
return;
}
if (new_size > capacity()) {
change_capacity(new_size);
}
ptrdiff_t increase = new_size - cur_size;
fill(item_ptr(cur_size), increase);
_size += increase;
}
void reserve(size_type new_capacity) {
if (new_capacity > capacity()) {
change_capacity(new_capacity);
}
}
void shrink_to_fit() {
change_capacity(size());
}
void clear() {
resize(0);
}
iterator insert(iterator pos, const T& value) {
size_type p = pos - begin();
size_type new_size = size() + 1;
if (capacity() < new_size) {
change_capacity(new_size + (new_size >> 1));
}
T* ptr = item_ptr(p);
memmove(ptr + 1, ptr, (size() - p) * sizeof(T));
_size++;
new(static_cast<void*>(ptr)) T(value);
return iterator(ptr);
}
void insert(iterator pos, size_type count, const T& value) {
size_type p = pos - begin();
size_type new_size = size() + count;
if (capacity() < new_size) {
change_capacity(new_size + (new_size >> 1));
}
T* ptr = item_ptr(p);
memmove(ptr + count, ptr, (size() - p) * sizeof(T));
_size += count;
fill(item_ptr(p), count, value);
}
template<typename InputIterator>
void insert(iterator pos, InputIterator first, InputIterator last) {
size_type p = pos - begin();
difference_type count = last - first;
size_type new_size = size() + count;
if (capacity() < new_size) {
change_capacity(new_size + (new_size >> 1));
}
T* ptr = item_ptr(p);
memmove(ptr + count, ptr, (size() - p) * sizeof(T));
_size += count;
fill(ptr, first, last);
}
inline void resize_uninitialized(size_type new_size) {
// resize_uninitialized changes the size of the prevector but does not initialize it.
// If size < new_size, the added elements must be initialized explicitly.
if (capacity() < new_size) {
change_capacity(new_size);
_size += new_size - size();
return;
}
if (new_size < size()) {
erase(item_ptr(new_size), end());
} else {
_size += new_size - size();
}
}
iterator erase(iterator pos) {
return erase(pos, pos + 1);
}
iterator erase(iterator first, iterator last) {
// Erase is not allowed to the change the object's capacity. That means
// that when starting with an indirectly allocated prevector with
// size and capacity > N, the result may be a still indirectly allocated
// prevector with size <= N and capacity > N. A shrink_to_fit() call is
// necessary to switch to the (more efficient) directly allocated
// representation (with capacity N and size <= N).
iterator p = first;
char* endp = (char*)&(*end());
if (!std::is_trivially_destructible<T>::value) {
while (p != last) {
(*p).~T();
_size--;
++p;
}
} else {
_size -= last - p;
}
memmove(&(*first), &(*last), endp - ((char*)(&(*last))));
return first;
}
void push_back(const T& value) {
size_type new_size = size() + 1;
if (capacity() < new_size) {
change_capacity(new_size + (new_size >> 1));
}
new(item_ptr(size())) T(value);
_size++;
}
void pop_back() {
erase(end() - 1, end());
}
T& front() {
return *item_ptr(0);
}
const T& front() const {
return *item_ptr(0);
}
T& back() {
return *item_ptr(size() - 1);
}
const T& back() const {
return *item_ptr(size() - 1);
}
void swap(prevector<N, T, Size, Diff>& other) {
std::swap(_union, other._union);
std::swap(_size, other._size);
}
~prevector() {
if (!std::is_trivially_destructible<T>::value) {
clear();
}
if (!is_direct()) {
free(_union.indirect);
_union.indirect = nullptr;
}
}
bool operator==(const prevector<N, T, Size, Diff>& other) const {
if (other.size() != size()) {
return false;
}
const_iterator b1 = begin();
const_iterator b2 = other.begin();
const_iterator e1 = end();
while (b1 != e1) {
if ((*b1) != (*b2)) {
return false;
}
++b1;
++b2;
}
return true;
}
bool operator!=(const prevector<N, T, Size, Diff>& other) const {
return !(*this == other);
}
bool operator<(const prevector<N, T, Size, Diff>& other) const {
if (size() < other.size()) {
return true;
}
if (size() > other.size()) {
return false;
}
const_iterator b1 = begin();
const_iterator b2 = other.begin();
const_iterator e1 = end();
while (b1 != e1) {
if ((*b1) < (*b2)) {
return true;
}
if ((*b2) < (*b1)) {
return false;
}
++b1;
++b2;
}
return false;
}
size_t allocated_memory() const {
if (is_direct()) {
return 0;
} else {
return ((size_t)(sizeof(T))) * _union.capacity;
}
}
value_type* data() {
return item_ptr(0);
}
const value_type* data() const {
return item_ptr(0);
}
};
#pragma pack(pop)
#endif // ton_PREVECTOR_H
| [
"53483064+TON-beta@users.noreply.github.com"
] | 53483064+TON-beta@users.noreply.github.com |
7815e256a09994bf02d4443a8447c765eda76de8 | f580fd53d3d035fc4b6b1c0abb41470a91544236 | /Estuardo/Estuardo.ino | 1490effe1ad0c3b11b2fc14993157e22c2182ce3 | [] | no_license | gatoherz11/Arduino_projects | b9536770e0f400380daeb41a925f3dae352b3672 | 874e6f2bcf521e8592f9f9a07c88f2e47eed19ee | refs/heads/master | 2022-11-11T16:14:57.350004 | 2020-07-05T00:14:02 | 2020-07-05T00:14:02 | 277,204,241 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 603 | ino | #define echo 6
#define trig 7
long duracion;
long distancia;
void setup() {
pinMode(trig, OUTPUT);
pinMode(echo, INPUT);
pinMode(8, OUTPUT);
Serial.begin (115200);
delay (500);
}
void loop() {
digitalWrite(trig, LOW);
delayMicroseconds(30);
digitalWrite(trig, HIGH);
delayMicroseconds(30);
digitalWrite(trig, LOW);
duracion = pulseIn(echo, HIGH);
distancia = (duracion/2) / 29;
if (distancia<40){
tone(8, 1000);
delay (500);
noTone(8);
}
delay (10);
}
| [
"64179143+gatoherz11@users.noreply.github.com"
] | 64179143+gatoherz11@users.noreply.github.com |
c1569d495db517fad99d178efc35e8eaa42ceba7 | 99249e222a2f35ac11a7fd93bff10a3a13f6f948 | /ros2_mod_ws/install/include/robobo_msgs_aux/srv/play_sound__traits.hpp | eafe5c2d216c7b1826e092c441fdeabe7b1bda8e | [
"Apache-2.0"
] | permissive | mintforpeople/robobo-ros2-ios-port | 87aec17a0c89c3fc5a42411822a18f08af8a5b0f | 1a5650304bd41060925ebba41d6c861d5062bfae | refs/heads/master | 2020-08-31T19:41:01.124753 | 2019-10-31T16:01:11 | 2019-10-31T16:01:11 | 218,764,551 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,185 | hpp | // generated from rosidl_generator_cpp/resource/srv__traits.hpp.em
// generated code does not contain a copyright notice
#include "robobo_msgs_aux/srv/play_sound__struct.hpp"
#ifndef ROBOBO_MSGS_AUX__SRV__PLAY_SOUND__TRAITS_HPP_
#define ROBOBO_MSGS_AUX__SRV__PLAY_SOUND__TRAITS_HPP_
namespace rosidl_generator_traits
{
#ifndef __ROSIDL_GENERATOR_CPP_TRAITS
#define __ROSIDL_GENERATOR_CPP_TRAITS
template<typename T>
struct has_fixed_size : std::false_type {};
template<typename T>
struct has_bounded_size : std::false_type {};
#endif // __ROSIDL_GENERATOR_CPP_TRAITS
template<>
struct has_fixed_size<robobo_msgs_aux::srv::PlaySound>
: std::integral_constant<
bool,
has_fixed_size<robobo_msgs_aux::srv::PlaySound_Request>::value &&
has_fixed_size<robobo_msgs_aux::srv::PlaySound_Response>::value
>
{
};
template<>
struct has_bounded_size<robobo_msgs_aux::srv::PlaySound>
: std::integral_constant<
bool,
has_bounded_size<robobo_msgs_aux::srv::PlaySound_Request>::value &&
has_bounded_size<robobo_msgs_aux::srv::PlaySound_Response>::value
>
{
};
} // namespace rosidl_generator_traits
#endif // ROBOBO_MSGS_AUX__SRV__PLAY_SOUND__TRAITS_HPP_
| [
"lfllamas93@gmail.com"
] | lfllamas93@gmail.com |
73d7ff34d0dda8b53aa01d3a9530fef167ec1b24 | b22cde09ef90971a3691f344e1d71daefe30a25e | /Project3/fibo_heap.cpp | 67e85abc114aa50afdf421b157b663e545312949 | [] | no_license | jlpang1997/algorithm_completion_c_cpp_edition | 3147e67ace1392279fa754e0311912b414a5ede2 | 36f1fd888c99b6145981b289f55ddf44b26a169d | refs/heads/master | 2020-09-01T03:01:35.474356 | 2019-11-30T04:28:58 | 2019-11-30T04:28:58 | 218,864,379 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,550 | cpp | #include"fibo_heap.h"
#include<stdio.h>
#include<malloc.h>
#include<math.h>
void add_fibo_node(Fibo_node *node, Fibo_node *root)
{
node->left = root->left;
root->left->right = node;
node->right = root;
root->left = node;
}
int fibo_heap_insert(Fibo_heap &fibo_heap, int *, int, Fibo_node*, int x)
{
Fibo_node*node = (Fibo_node*)malloc(sizeof(Fibo_node));
node->child = NULL;
node->parent = NULL;
node->degreee = 0;
node->key = x;
node->marked = false;
fibo_heap.keynum++;
fibo_heap.rootnum++;
if (fibo_heap.min == NULL)
{
node->left = node->right = node;
fibo_heap.min = node;
}
else
{
add_fibo_node(node, fibo_heap.min);
if (x < fibo_heap.min->key)
fibo_heap.min = node;
}
return -1;
}
int fibo_heap_build(Fibo_heap &fibo_heap, int*data, int n, Fibo_node*, int)//�����˳�ʼ��
{
fibo_heap.rootnum = 0;
fibo_heap.keynum = 0;
fibo_heap.maxdegree = 0;
fibo_heap.min = NULL;
for (int i = 0; i < n; i++)
{
fibo_heap_insert(fibo_heap,NULL, -1,NULL,data[i]);
}
return 1;
}
void print_fibo(Fibo_heap fibo_heap)
{
if (fibo_heap.keynum == 0)
return;
Fibo_node*p= fibo_heap.min->left,*next_p=fibo_heap.min;
Fibo_node*end = p;
do
{
p = next_p;
next_p = p->right;
printf("%d\n", p->key);
} while (p != end);
printf("\n\n");
}
int fibo_heap_extract_min(Fibo_heap &fibo_heap, int *, int, Fibo_node*, int)
{
Fibo_node *z = fibo_heap.min;
//print_fibo(fibo_heap);
if (!z)
{
printf("heap is empty\n");
return -1;
}
else
{
int i = 0;
for (Fibo_node *x = z->child; i < z->degreee; i++)
{
//��z��ÿ�����Ӳ��뵽����
Fibo_node*tmp = x->right;
add_fibo_node(x, fibo_heap.min);
x->parent = NULL;
x = tmp;
}
if (z->right == z)
{
fibo_heap.min = NULL;
fibo_heap.keynum--;
}
else
{
//�Ӹ���ɾ����z��Ȼ�����CONSOLIDATE���е���
z->right->left = z->left;
z->left->right = z->right;
fibo_heap.min = z->right;
CONSOLIDATE(fibo_heap);
fibo_heap.keynum--;
}
return z->key;//��û�ͷ�
}
}
void CONSOLIDATE(Fibo_heap &fibo_heap)
{
//dnΪ��������Ĵ�С
int dn = (int)(log(fibo_heap.keynum)/log(2))+1;
//print_fibo(fibo_heap);
Fibo_node **A = (Fibo_node**)malloc(sizeof(Fibo_node*)*(dn + 1));
for (int i = 0; i < (dn + 1); i++)
A[i] = NULL;
Fibo_node*end = fibo_heap.min->left;
Fibo_node* w = fibo_heap.min->left,*next_w=fibo_heap.min;
do
{
//�����и�����б�����Ȼ���degree��ͬ�ĺϲ�
w = next_w;
next_w = w->right;
Fibo_node *x;
x = w;
int d = x->degreee;
while (A[d])
{
//ֻҪ�Ƕ�Ϊd�ĸ��Ѿ����ڶ�����кϲ�
Fibo_node *y = A[d];
if (x->key > y->key)
{
//��֤y��key��x��С
Fibo_node*tmp = x;
x = y;
y = tmp;
}
fib_heap_link(fibo_heap, y, x);//�ϲ���������ͬ�ĸ�
A[d] = NULL;
d++;//��ǰx�Ķ�++
}
A[d] = x;
} while (w != end);
int root_num = 0;
int min = -1;
for (int i = 0; i < (dn + 1); i++)//�ҵ���С�ĸ�
{
//�Ӹ����еõ���С�ĸ���min
if (A[i])
{
root_num++;
if (min == -1)
{
min = i;
}
else if (A[i]->key < A[min]->key)
{
min = i;
}
}
}
fibo_heap.min = A[min];
fibo_heap.rootnum = root_num;
free(A);
//print_fibo(fibo_heap);
return;
}
void fib_heap_link(Fibo_heap &fibo_heap, Fibo_node*y, Fibo_node*x)
{
y->left->right = y->right;
y->right->left = y->left;
if (x->child)
{
y->left = x->child->left;
x->child->left->right = y;
y->right = x->child;
x->child->left = y;
}
else
{
x->child = y;
y->left = y->right = y;
}
y->parent = x;
x->degreee++;
if (x->degreee > fibo_heap.maxdegree)
fibo_heap.maxdegree = x->degreee;
y->marked = false;
}
int fibo_heap_decrease(Fibo_heap &fibo_heap, int *, int, Fibo_node* x, int k)
//ֱ���ýڵ�
{
if (k > x->key)
{
printf("Ӧ������һ����С��ֵ\n");
return -1;
}
x->key = k;
Fibo_node*y = x->parent;
if (y&&x->key < y->key)//Ϊ�˱�����С�ѵ����ԣ�����cut
{
CUT(fibo_heap, x, y);
CASCADING_CUT(fibo_heap, y);
}
if (x->key < fibo_heap.min->key)//����min
fibo_heap.min = x;
return 1;
}
void CUT(Fibo_heap &fibo_heap, Fibo_node *&x, Fibo_node*&y)
{
if (y->degreee == 1)
{
y->child = NULL;
}
else
{
if (x == y->child)
{
y->child = x->right;
}
x->left->right = x->right;
x->right->left = x->left;
}
add_fibo_node(x, fibo_heap.min);
x->parent = NULL;
x->marked = false;
y->degreee--;
fibo_heap.rootnum++;
}
void CASCADING_CUT(Fibo_heap &fibo_heap, Fibo_node *&y)
{
Fibo_node *z = y->parent;
if (z)
{
if (y->marked == false)
{
y->marked = true;
}
else
{
CUT(fibo_heap, y,z);
CASCADING_CUT(fibo_heap, z);
}
}
}
Fibo_node *fibo_heap_search(Fibo_node *root, int cousins, int x)
{
Fibo_node*result;
if (!root)
{
return NULL;
}
else if (root->key == x)
{
return root;
}
if (cousins > 0)
{
result = fibo_heap_search(root->right, cousins - 1, x);
if (result)
return result;
}
if (root->child)
{
result = fibo_heap_search(root->child, root->degreee - 1, x);
if (result)
return result;
}
else
return NULL;
}
int fibo_heap_delete(Fibo_heap &fibo_heap, int *, int, Fibo_node*value, int)
{
fibo_heap_decrease(fibo_heap,NULL,-1, value, -MYINFINITY);
long a=fibo_heap_extract_min(fibo_heap,NULL,-1,NULL,-1);
return -1;
} | [
"JLPANG1997@outlook.com"
] | JLPANG1997@outlook.com |
5e803d16945fb5c17022063989f6933c748590b5 | a9931d6ad4d99ed9458b11ee4ce95f6a5de5d4aa | /Baekjoon-Judge-Project/10952.cpp | ff0d5d32de51aa74dc7c2d6755884954343e648d | [] | no_license | StevenKim1994/Baekjoon-Judge | 919498c9e1fd0b617078a7cfcada2ec4a54f0b93 | 7ed646455a85987199776533fa411c3ea2f2f69a | refs/heads/master | 2022-07-18T21:41:37.739027 | 2022-06-24T13:11:23 | 2022-06-24T13:11:23 | 112,476,967 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 229 | cpp | #include <iostream>
int main()
{
std::cin.tie(NULL);
std::ios_base::sync_with_stdio(false);
short A, B;
while (true)
{
std::cin >> A >> B;
if (A == 0 && B == 0)
break;
std::cout << A + B << '\n';
}
return 0;
} | [
"dev@donga.ac.kr"
] | dev@donga.ac.kr |
6f9ac6c7fece6679b56488c6f29f392d2f09d111 | 2013049b2718bc6f77f471f7b3a0d3da7b212f03 | /216-1m.cpp | 203ac9de7c10726631cd5b839b4b3dffdc5d01af | [] | no_license | sky58/TopcoderSRM_AcceptedCodes | 084a9de1bb7285681f0e5128c72f2fb064d626f1 | de20a696261e56824754ba0031ab992cb6b757ea | refs/heads/master | 2020-05-20T04:45:32.935744 | 2015-04-08T03:42:24 | 2015-04-08T03:42:24 | 33,550,779 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 878 | cpp | //SRM216DIV1-500 Refactoring
#include<vector>
#include<cmath>
#include<map>
#include<cstdlib>
#include<iostream>
#include<sstream>
#include<string>
#include<algorithm>
#include<cstring>
#include<cstdio>
#include<set>
#include<stack>
#include<bitset>
#include<functional>
#include<cstdlib>
#include<ctime>
#include<queue>
#include<deque>
using namespace std;
#define pb push_back
#define pf push_front
typedef long long lint;
#define mp make_pair
#define fi first
#define se second
typedef pair<int,int> pint;
#define All(s) s.begin(),s.end()
#define rAll(s) s.rbegin(),s.rend()
#define REP(i,a,b) for(i=a;i<b;i++)
#define rep(i,n) REP(i,0,n)
int rec(int a,int b){
int ret=1,i;
for(i=a;i*i<=b;i++){
int c=b;
while(c%i==0){
c/=i;
if(i<=c) ret+=rec(i+1,c);
}
}
return ret;
}
class Refactoring{
public:
int Refactoring::refactor(int a){
return rec(2,a)-1;
}
};
| [
"skyaozora@gmail.com"
] | skyaozora@gmail.com |
57c95729598d3a40028f050f77920a198025ab9b | 12154201c2c4dc8968b690fa8237ebfe1932f60a | /BOJ/1408.cpp | f9ad36c8837d2e7fb34019cc1b21e3dd52c98de0 | [] | no_license | heon24500/PS | 9cc028de3d9b1a26543b5bd498cfd5134d3d6de4 | df901f6fc71f8c9d659b4c5397d44de9a2031a9d | refs/heads/master | 2023-02-20T17:06:30.065944 | 2021-01-25T12:43:48 | 2021-01-25T12:43:48 | 268,433,390 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 715 | cpp | #include <iostream>
using namespace std;
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
char temp;
int n[3], s[3], r[3];
cin >> n[0] >> temp >> n[1] >> temp >> n[2];
cin >> s[0] >> temp >> s[1] >> temp >> s[2];
if (n[0] > s[0] || (n[0] == s[0] && n[1] > s[1]) || (n[0] == s[0] && n[1] == s[1] && n[2] > s[2])) s[0] += 24;
r[2] = s[2] - n[2];
if (r[2] < 0) {
r[2] += 60;
s[1]--;
}
r[1] = s[1] - n[1];
if (r[1] < 0) {
r[1] += 60;
s[0]--;
}
r[0] = s[0] - n[0];
if (r[0] < 10) cout << 0;
cout << r[0] << ":";
if (r[1] < 10) cout << 0;
cout << r[1] << ":";
if (r[2] < 10) cout << 0;
cout << r[2];
} | [
"heon24500@naver.com"
] | heon24500@naver.com |
4b75d1a13aa936796934ac81ab466019a88dce0b | 14988acd59ee96027a6668238b40555cc03cf3ca | /src/group-keys-distributor/group.hpp | 0f1022ed41f42fb9f4b54dbdd552496e1d24fa5f | [] | no_license | djuanes87/PFG-NDNMacaroons | b8b1a6321e0e82bc7ca5530882a737e895703783 | 93804f7d7585aff7ac461d958aec7eca222b3712 | refs/heads/master | 2021-01-12T14:55:05.382746 | 2017-04-18T22:02:56 | 2017-04-18T22:02:56 | 68,912,624 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 852 | hpp | #include <ndn-cxx/security/key-chain.hpp>
#include <NDNMacaroon/macaroon.hpp>
#include <NDNMacaroon/macaroon-utils.hpp>
class Group {
public:
std::string name;
Group();
void
setName(std::string);
std::string
getDischargueMacaroon(std::string gkd_location, uint8_t *caveat_key, uint8_t *identifier, size_t identifier_size);
void
addMember(std::string member);
bool
isMember(std::string name);
private:
ndn::SecTpmFileEnc m_secTpmFile;
std::string discharge;
std::set<std::string> members;
// Example caveats
std::string first_party_caveat = "time < 2018-02-27 08:22:00";
void
createDischargeMacaroon(std::string gkd_location, uint8_t *caveat_key, uint8_t *identifier, size_t identifier_size);
}; | [
"daniel.juanes@gmail.com"
] | daniel.juanes@gmail.com |
03e6c2ce9edd7fcf7e6b0369224ef81b6336f91f | 609b5ed11126da70fe95771eed71fd9d7e40c724 | /src/ai/agents/agent.h | 1c98c296428414c6d3e0063f8916108cb4946b9f | [] | no_license | trid/exp | 4930b65913f2cc30d665c6ee19b28e8d937096f3 | bcee0e50939ca941b84f77cd5299bef1775ae012 | refs/heads/master | 2023-02-21T23:25:42.292598 | 2023-02-05T16:19:34 | 2023-02-05T16:19:34 | 24,107,024 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 955 | h | #ifndef ACTOR_H
#define ACTOR_H
#include <string>
#include <unordered_map>
#include <unordered_set>
#include "actor.h"
#include "agent_needs.h"
#include "agent_movement_data.h"
#include "inventory.h"
namespace Core {
class GlobalMessageBus;
class World;
} // namespace Core
namespace Core::AI::Agents {
class Agent: public AgentNeeds, public AgentPositioningData, public Actor, public Inventory {
public:
explicit Agent(int id, Core::GlobalMessageBus& globalMessageBus);
int getID() const;
const std::string& getName() const;
void setName(const std::string& name);
void say(const std::string& message);
void setType(const std::string& type);
const std::string& getType() const;
private:
int _id;
std::string _name;
// TODO decide some better way to differentiate agent's color
std::string _type;
Core::GlobalMessageBus& _globalMessageBus;
};
} // namespace Core::AI::Agents
#endif // ACTOR_H | [
"hovyakov@gmail.com"
] | hovyakov@gmail.com |
0abd6f31d3f6189c54d29f194c0f4ca4767230f7 | 985548d3d330e121a5cffa3e3f9f17443ee9e196 | /2020/RoundG/D.cpp | 667b47a89782414cf8d413511f54e71521e15209 | [] | no_license | TYakumo/GoogleKickStart | 3d7c210d51c4876821fa874a6c9a7ed981758a70 | c25c00f62802794e918eeaabed038cd171411e10 | refs/heads/master | 2021-07-25T11:21:39.368943 | 2021-07-20T14:12:35 | 2021-07-20T14:12:35 | 248,889,725 | 0 | 0 | null | 2021-07-20T14:12:35 | 2020-03-21T02:06:35 | C++ | UTF-8 | C++ | false | false | 1,653 | cpp | #include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
#include <vector>
#include <map>
#include <queue>
#include <set>
#include <cmath>
using namespace std;
using VLL = vector <long long>;
using VD = vector <double>;
using VVD = vector <VD>;
int main()
{
int TC;
cin >> TC;
cout.precision(9);
for (int tc = 1; tc <= TC; tc++) {
int N;
cin >> N;
VLL val(N);
VLL sum(N);
VVD dp(N+1, VD(N+1));
VD frontdp(N+1);
VD reardp(N+1);
for (int i = 0; i < N; ++i) {
cin >> val[i];
sum[i] = val[i];
if (i) {
sum[i] += sum[i-1];
}
}
for (int l = 2; l <= N; ++l) {
for (int i = 0; i+l <= N; ++i) {
int j = i+l-1;
double prob = 1.0 / (j-i);
double rangeSum = i ? sum[j] - sum[i-1] : sum[j];
double total = rangeSum * (j-i) + frontdp[i] + reardp[j];
// for (int k = i; k < j; ++k) {
// // double total = dp[i][k] + dp[k+1][j] + rangeSum;
// dp[i][j] += total * prob;
// }
dp[i][j] += total * prob;
}
for (int i = 0; i < N; ++i) {
int tj = i+l-1;
// j = i+l-1, i = j-l+1
int ti = i-l+1;
frontdp[i] += dp[i][tj];
if (ti >= 0) {
reardp[i] += dp[ti][i];
}
}
}
cout << fixed << "Case #" << tc << ": " << dp[0][N-1] << endl;
}
return 0;
}
| [
"foxs91092@gmail.com"
] | foxs91092@gmail.com |
5369a6a873ef384967f78f6757db25f9590a353e | 26e2c4ab25a742a2fbe4245d8bcac7a19f79b4ef | /TebasakiChronicle/src/Object/Enemy/EnemyType/EnemyTypeManager.h | c3a94755ee14f7c0008f271282c6395491015c97 | [] | no_license | feveleK5563/TebasakiChronicle | 39e4ee0f18c8612366a22d9aed12d1d4012488ad | f4111b9d0b7b045e4e887992faab8e38626a8ba4 | refs/heads/master | 2020-03-11T01:34:19.538064 | 2018-07-18T08:45:59 | 2018-07-18T08:45:59 | 129,695,292 | 0 | 2 | null | null | null | null | SHIFT_JIS | C++ | false | false | 851 | h | #pragma once
#include "EnemyType.h"
#include "../../../Helper.h"
class EnemyTypeManager
{
public:
struct EnemyData //敵情報のまとめ
{
EnemyType::ParameterData* paramater;
EnemyType::CollisionData* collision;
std::vector<EnemyMovePattern::MoveSetUpData*> movesetupdata;
EnemyData(){}
~EnemyData()
{
Memory::SafeDelete(paramater);
Memory::SafeDelete(collision);
for (auto it : movesetupdata)
Memory::SafeDelete(it);
}
};
public:
std::vector<EnemyType*> eType;
//コンストラクタ
EnemyTypeManager();
//デストラクタ
~EnemyTypeManager();
//ファイルを読み込んで敵のデータを作る
//引数:読み込むファイルへのパス(string)
void CreateEnemyData(EnemyData* ed);
//指定番号の敵データのアドレス値を返す
EnemyType* GetEnemyTypeData(int enemyNum);
}; | [
"buncha102828@gmail.com"
] | buncha102828@gmail.com |
2f13451c0ccd7ec357b679c3676c54203785618a | 5a908aa642ecddf009849e33172ad3da9469c78f | /src/ast2ram/provenance/ConstraintTranslator.cpp | b234d6492336abdbe7526b6357e8110588106a00 | [
"UPL-1.0"
] | permissive | LittleLightLittleFire/souffle | 63a93a613d69d195a9c19ea190daecfed8b186b5 | 468213129729fe2ac17d6e666105e5adb6dae5eb | refs/heads/master | 2021-08-18T02:46:03.372142 | 2021-01-27T00:39:19 | 2021-01-27T00:39:19 | 93,007,429 | 0 | 0 | null | 2017-06-01T02:19:23 | 2017-06-01T02:19:22 | null | UTF-8 | C++ | false | false | 1,761 | cpp | /*
* Souffle - A Datalog Compiler
* Copyright (c) 2020 The Souffle Developers. All rights reserved
* Licensed under the Universal Permissive License v 1.0 as shown at:
* - https://opensource.org/licenses/UPL
* - <souffle root>/licenses/SOUFFLE-UPL.txt
*/
/************************************************************************
*
* @file ConstraintTranslator.cpp
*
***********************************************************************/
#include "ast2ram/provenance/ConstraintTranslator.h"
#include "ast/Atom.h"
#include "ast/TranslationUnit.h"
#include "ast2ram/ValueTranslator.h"
#include "ast2ram/utility/TranslatorContext.h"
#include "ast2ram/utility/Utils.h"
#include "ast2ram/utility/ValueIndex.h"
#include "ram/ExistenceCheck.h"
#include "ram/Negation.h"
#include "ram/UndefValue.h"
namespace souffle::ast2ram::provenance {
Own<ram::Condition> ConstraintTranslator::translateConstraint(const ast::Literal* lit) {
assert(lit != nullptr && "literal should be defined");
return ConstraintTranslator(context, symbolTable, index)(*lit);
}
Own<ram::Condition> ConstraintTranslator::visit_(type_identity<ast::Negation>, const ast::Negation& neg) {
// construct the atom and create a negation
const auto* atom = neg.getAtom();
VecOwn<ram::Expression> values;
// actual arguments
for (const auto* arg : atom->getArguments()) {
values.push_back(context.translateValue(symbolTable, index, arg));
}
// add rule + level number
values.push_back(mk<ram::UndefValue>());
values.push_back(mk<ram::UndefValue>());
return mk<ram::Negation>(
mk<ram::ExistenceCheck>(getConcreteRelationName(atom->getQualifiedName()), std::move(values)));
}
} // namespace souffle::ast2ram::provenance
| [
"azre6702@uni.sydney.edu.au"
] | azre6702@uni.sydney.edu.au |
19f59bb463aa01a1e22f4d2cb7e127c112bdc4b1 | fdbfbcf4d6a0ef6f3c1b600e7b8037eed0f03f9e | /systems/framework/abstract_value_cloner.cc | 588e5e0c2485a464a2e5f8ab9b8886dbf531e34e | [
"BSD-3-Clause"
] | permissive | RobotLocomotion/drake | 4529c397f8424145623dd70665531b5e246749a0 | 3905758e8e99b0f2332461b1cb630907245e0572 | refs/heads/master | 2023-08-30T21:45:12.782437 | 2023-08-30T15:59:07 | 2023-08-30T15:59:07 | 16,256,144 | 2,904 | 1,270 | NOASSERTION | 2023-09-14T20:51:30 | 2014-01-26T16:11:05 | C++ | UTF-8 | C++ | false | false | 866 | cc | #include "drake/systems/framework/abstract_value_cloner.h"
#include <utility>
namespace drake {
namespace systems {
namespace internal {
// We don't need to clone the model_value here (we can move it directly into
// our storage) because this constructor is private and the public constructor
// always makes a copy before calling us, which means we're guaranteed that
// nobody else has an alias of this model_value to mutate it out from under us.
AbstractValueCloner::AbstractValueCloner(
std::unique_ptr<AbstractValue> model_value)
: model_value_(std::move(model_value)) {
DRAKE_DEMAND(model_value_ != nullptr);
}
AbstractValueCloner::~AbstractValueCloner() = default;
std::unique_ptr<AbstractValue> AbstractValueCloner::operator()() const {
return model_value_->Clone();
}
} // namespace internal
} // namespace systems
} // namespace drake
| [
"noreply@github.com"
] | RobotLocomotion.noreply@github.com |
1e9a4c9775c8b0e628dd240804f59f844396559b | ca38e7094429cb01d0430e0f724be5a104347865 | /WristWatch1.4/menue.ino | f042be86562aad5fb9c49b613332059b8c51aae8 | [] | no_license | Jo-Dill/watch | 0678fcecfc238132f8217264999eaf8762afa9f3 | cf03ade3090ea903c23274622b5bb8d44f7e75a8 | refs/heads/main | 2023-04-21T02:44:49.667573 | 2021-05-11T18:43:35 | 2021-05-11T18:43:35 | 366,440,735 | 1 | 0 | null | 2021-05-11T16:27:09 | 2021-05-11T16:02:31 | null | UTF-8 | C++ | false | false | 1,380 | ino | unsigned long menueTimer = 0;
void menue(){
standbyTime= 5000;
pixels.clear();
pixels.setPixelColor(1, pixels.Color(255,0,0));
pixels.setPixelColor(2, pixels.Color(100,100,100));
pixels.setPixelColor(3, pixels.Color(0,0,255));
pixels.show();
if (digitalRead(downbuttonPin)== LOW && downButtonrelease ==0){
downButtonrelease = 1;
downButton = 1;
}
if (digitalRead(upbuttonPin)== LOW && upButtonrelease ==0){
upButtonrelease = 1;
upButton = 1;
}
if(upButton == 1 && downButton == 1 && upButtonrelease ==0 && downButtonrelease ==0){ //both pressed an released
runningProg=6; resetbuttons();
}
if(upButton == 1 && downButton == 0 && upButtonrelease ==0 && downButtonrelease ==0){ //just up pressed and released
runningProg=4; resetbuttons();
}
if(upButton == 0 && downButton == 1 && upButtonrelease ==0 && downButtonrelease ==0){ //just down pressed and released
runningProg=5; resetbuttons();
}
/*const int menueChangeTime =300;
if((millis()-menueTimer)> menueChangeTime){
pixels.clear();
pixels.setPixelColor(1, pixels.Color(255,0,0));
pixels.setPixelColor(2, pixels.Color(0,0,255));
pixels.show();
}
if((millis()-menueTimer)> (2*menueChangeTime)){
menueTimer= millis();
pixels.clear();
pixels.show();
}
*/
}
| [
"noreply@github.com"
] | Jo-Dill.noreply@github.com |
67115d0c8e8fee1cb898f133cb57562671ac2190 | 83b64d364dfbadafc64e27271a1a0afc32625a19 | /Week4/lecture6.cpp | 76897469581fe56e259ed4441d65bc683d86a74a | [] | no_license | JanMouwes/uni-gp-cpp-homework | f6af4b04994b1fdf04da04bd39d5a71845c7f7c3 | fecc2c45aaaa089cfe71a34d025f3e9be66ca58c | refs/heads/master | 2022-06-04T07:36:12.814474 | 2020-05-04T21:36:05 | 2020-05-04T21:36:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 698 | cpp | //
// Created by Jan Mouwes on 02/05/2020.
//
#include "lecture6.h"
#include <stack>
#include <iostream>
#include <vector>
#include <algorithm>
void print(double d) {
std::cout << d << std::endl;
}
void run_lecture6_ex1() {
std::stack<double> s;
s.push(5.1);
s.push(5.2);
s.push(5.3);
s.push(5.4);
s.push(5.5);
while (!s.empty()) {
print(s.top());
s.pop();
}
}
void run_lecture6_ex2() {
std::vector<int> favouriteNumberVector;
favouriteNumberVector.reserve(10);
for (int i = 0; i < 10; ++i) {
favouriteNumberVector.push_back(7);
}
for_each (favouriteNumberVector.begin(), favouriteNumberVector.end(), print);
} | [
"jan.mouwes@gmail.com"
] | jan.mouwes@gmail.com |
0e754574eb552a66b5d018aac1129dc282f8bde6 | be6b8917be00a203c418765a65b2665cbd41c36c | /source/common/vec.h | df85aef205d61fca75c86b09dad0321808ccef33 | [] | no_license | noahhendlish/Raytracing | ec072c5841552ff23f1f0aeea74df3f9c9c748cc | 43b50e66ff0129c8679bc89fe9b1ff4e67c4d113 | refs/heads/master | 2022-11-09T09:33:21.694918 | 2020-06-17T03:12:35 | 2020-06-17T03:12:35 | 272,866,461 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,640 | h | //////////////////////////////////////////////////////////////////////////////
//
// --- vec.h ---
//
//////////////////////////////////////////////////////////////////////////////
#ifndef __ANGEL_VEC_H__
#define __ANGEL_VEC_H__
#include "common.h"
namespace Angel {
//////////////////////////////////////////////////////////////////////////////
//
// vec2.h - 2D vector
//
struct vec2 {
GLfloat x;
GLfloat y;
//
// --- Constructors and Destructors ---
//
vec2( GLfloat s = GLfloat(0.0) ) :
x(s), y(s) {}
vec2( GLfloat x, GLfloat y ) :
x(x), y(y) {}
vec2( const vec2& v )
{ x = v.x; y = v.y; }
//
// --- Indexing Operator ---
//
GLfloat& operator [] ( int i ) { return *(&x + i); }
const GLfloat operator [] ( int i ) const { return *(&x + i); }
//
// --- (non-modifying) Arithematic Operators ---
//
vec2 operator - () const // unary minus operator
{ return vec2( -x, -y ); }
vec2 operator + ( const vec2& v ) const
{ return vec2( x + v.x, y + v.y ); }
vec2 operator - ( const vec2& v ) const
{ return vec2( x - v.x, y - v.y ); }
vec2 operator * ( const GLfloat s ) const
{ return vec2( s*x, s*y ); }
vec2 operator * ( const vec2& v ) const
{ return vec2( x*v.x, y*v.y ); }
friend vec2 operator * ( const GLfloat s, const vec2& v )
{ return v * s; }
vec2 operator / ( const GLfloat s ) const {
#ifdef DEBUG
if ( std::fabs(s) < DivideByZeroTolerance ) {
std::cerr << "[" << __FILE__ << ":" << __LINE__ << "] "
<< "Division by zero" << std::endl;
return vec2();
}
#endif // DEBUG
GLfloat r = GLfloat(1.0) / s;
return *this * r;
}
//
// --- (modifying) Arithematic Operators ---
//
vec2& operator += ( const vec2& v )
{ x += v.x; y += v.y; return *this; }
vec2& operator -= ( const vec2& v )
{ x -= v.x; y -= v.y; return *this; }
vec2& operator *= ( const GLfloat s )
{ x *= s; y *= s; return *this; }
vec2& operator *= ( const vec2& v )
{ x *= v.x; y *= v.y; return *this; }
vec2& operator /= ( const GLfloat s ) {
#ifdef DEBUG
if ( std::fabs(s) < DivideByZeroTolerance ) {
std::cerr << "[" << __FILE__ << ":" << __LINE__ << "] "
<< "Division by zero" << std::endl;
}
#endif // DEBUG
GLfloat r = GLfloat(1.0) / s;
*this *= r;
return *this;
}
//
// --- Insertion and Extraction Operators ---
//
friend std::ostream& operator << ( std::ostream& os, const vec2& v ) {
return os << "( " << v.x << ", " << v.y << " )";
}
friend std::istream& operator >> ( std::istream& is, vec2& v )
{ return is >> v.x >> v.y ; }
//
// --- Conversion Operators ---
//
operator const GLfloat* () const
{ return static_cast<const GLfloat*>( &x ); }
operator GLfloat* ()
{ return static_cast<GLfloat*>( &x ); }
};
//----------------------------------------------------------------------------
//
// Non-class vec2 Methods
//
inline
GLfloat dot( const vec2& u, const vec2& v ) {
return u.x * v.x + u.y * v.y;
}
inline
GLfloat length( const vec2& v ) {
return std::sqrt( dot(v,v) );
}
inline
vec2 normalize( const vec2& v ) {
return v / length(v);
}
//////////////////////////////////////////////////////////////////////////////
//
// vec3.h - 3D vector
//
//////////////////////////////////////////////////////////////////////////////
struct vec3 {
GLfloat x;
GLfloat y;
GLfloat z;
//
// --- Constructors and Destructors ---
//
vec3( GLfloat s = GLfloat(0.0) ) :
x(s), y(s), z(s) {}
vec3( GLfloat x, GLfloat y, GLfloat z ) :
x(x), y(y), z(z) {}
vec3( const vec3& v ) { x = v.x; y = v.y; z = v.z; }
vec3( const vec2& v, const float f ) { x = v.x; y = v.y; z = f; }
//
// --- Indexing Operator ---
//
GLfloat& operator [] ( int i ) { return *(&x + i); }
const GLfloat operator [] ( int i ) const { return *(&x + i); }
//
// --- (non-modifying) Arithematic Operators ---
//
vec3 operator - () const // unary minus operator
{ return vec3( -x, -y, -z ); }
vec3 operator + ( const vec3& v ) const
{ return vec3( x + v.x, y + v.y, z + v.z ); }
vec3 operator - ( const vec3& v ) const
{ return vec3( x - v.x, y - v.y, z - v.z ); }
vec3 operator * ( const GLfloat s ) const
{ return vec3( s*x, s*y, s*z ); }
vec3 operator * ( const vec3& v ) const
{ return vec3( x*v.x, y*v.y, z*v.z ); }
friend vec3 operator * ( const GLfloat s, const vec3& v )
{ return v * s; }
vec3 operator / ( const GLfloat s ) const {
#ifdef DEBUG
if ( std::fabs(s) < DivideByZeroTolerance ) {
std::cerr << "[" << __FILE__ << ":" << __LINE__ << "] "
<< "Division by zero" << std::endl;
return vec3();
}
#endif // DEBUG
GLfloat r = GLfloat(1.0) / s;
return *this * r;
}
//
// --- (modifying) Arithematic Operators ---
//
vec3& operator += ( const vec3& v )
{ x += v.x; y += v.y; z += v.z; return *this; }
vec3& operator -= ( const vec3& v )
{ x -= v.x; y -= v.y; z -= v.z; return *this; }
vec3& operator *= ( const GLfloat s )
{ x *= s; y *= s; z *= s; return *this; }
vec3& operator *= ( const vec3& v )
{ x *= v.x; y *= v.y; z *= v.z; return *this; }
vec3& operator /= ( const GLfloat s ) {
#ifdef DEBUG
if ( std::fabs(s) < DivideByZeroTolerance ) {
std::cerr << "[" << __FILE__ << ":" << __LINE__ << "] "
<< "Division by zero" << std::endl;
}
#endif // DEBUG
GLfloat r = GLfloat(1.0) / s;
*this *= r;
return *this;
}
//
// --- Insertion and Extraction Operators ---
//
friend std::ostream& operator << ( std::ostream& os, const vec3& v ) {
return os << "( " << v.x << ", " << v.y << ", " << v.z << " )";
}
friend std::istream& operator >> ( std::istream& is, vec3& v )
{ return is >> v.x >> v.y >> v.z ; }
//
// --- Conversion Operators ---
//
operator const GLfloat* () const
{ return static_cast<const GLfloat*>( &x ); }
operator GLfloat* ()
{ return static_cast<GLfloat*>( &x ); }
};
//----------------------------------------------------------------------------
//
// Non-class vec3 Methods
//
inline
GLfloat dot( const vec3& u, const vec3& v ) {
return u.x*v.x + u.y*v.y + u.z*v.z ;
}
inline
GLfloat length( const vec3& v ) {
return std::sqrt( dot(v,v) );
}
inline
vec3 normalize( const vec3& v ) {
return v / length(v);
}
inline
vec3 cross(const vec3& a, const vec3& b )
{
return vec3( a.y * b.z - a.z * b.y,
a.z * b.x - a.x * b.z,
a.x * b.y - a.y * b.x );
}
inline
vec3 reflect( const vec3& I, const vec3& N ) {
return I - 2.0 * dot(N, I) * N;
}
//////////////////////////////////////////////////////////////////////////////
//
// vec4 - 4D vector
//
//////////////////////////////////////////////////////////////////////////////
struct vec4 {
GLfloat x;
GLfloat y;
GLfloat z;
GLfloat w;
//
// --- Constructors and Destructors ---
//
vec4( GLfloat s = GLfloat(0.0) ) :
x(s), y(s), z(s), w(s) {}
vec4( GLfloat x, GLfloat y, GLfloat z, GLfloat w ) :
x(x), y(y), z(z), w(w) {}
vec4( const vec4& v ) { x = v.x; y = v.y; z = v.z; w = v.w; }
vec4( const vec3& v, const float w = 1.0 ) : w(w)
{ x = v.x; y = v.y; z = v.z; }
vec4( const vec2& v, const float z, const float w ) : z(z), w(w)
{ x = v.x; y = v.y; }
//
// --- Indexing Operator ---
//
GLfloat& operator [] ( int i ) { return *(&x + i); }
const GLfloat operator [] ( int i ) const { return *(&x + i); }
//
// --- (non-modifying) Arithematic Operators ---
//
vec4 operator - () const // unary minus operator
{ return vec4( -x, -y, -z, -w ); }
vec4 operator + ( const vec4& v ) const
{ return vec4( x + v.x, y + v.y, z + v.z, w + v.w ); }
vec4 operator - ( const vec4& v ) const
{ return vec4( x - v.x, y - v.y, z - v.z, w - v.w ); }
vec4 operator * ( const GLfloat s ) const
{ return vec4( s*x, s*y, s*z, s*w ); }
vec4 operator * ( const vec4& v ) const
{ return vec4( x*v.x, y*v.y, z*v.z, w*v.z ); }
friend vec4 operator * ( const GLfloat s, const vec4& v )
{ return v * s; }
vec4 operator / ( const GLfloat s ) const {
#ifdef DEBUG
if ( std::fabs(s) < DivideByZeroTolerance ) {
std::cerr << "[" << __FILE__ << ":" << __LINE__ << "] "
<< "Division by zero" << std::endl;
return vec4();
}
#endif // DEBUG
GLfloat r = GLfloat(1.0) / s;
return *this * r;
}
//
// --- (modifying) Arithematic Operators ---
//
vec4& operator += ( const vec4& v )
{ x += v.x; y += v.y; z += v.z; w += v.w; return *this; }
vec4& operator -= ( const vec4& v )
{ x -= v.x; y -= v.y; z -= v.z; w -= v.w; return *this; }
vec4& operator *= ( const GLfloat s )
{ x *= s; y *= s; z *= s; w *= s; return *this; }
vec4& operator *= ( const vec4& v )
{ x *= v.x, y *= v.y, z *= v.z, w *= v.w; return *this; }
vec4& operator /= ( const GLfloat s ) {
#ifdef DEBUG
if ( std::fabs(s) < DivideByZeroTolerance ) {
std::cerr << "[" << __FILE__ << ":" << __LINE__ << "] "
<< "Division by zero" << std::endl;
}
#endif // DEBUG
GLfloat r = GLfloat(1.0) / s;
*this *= r;
return *this;
}
//
// --- Insertion and Extraction Operators ---
//
friend std::ostream& operator << ( std::ostream& os, const vec4& v ) {
return os << "( " << v.x << ", " << v.y
<< ", " << v.z << ", " << v.w << " )";
}
friend std::istream& operator >> ( std::istream& is, vec4& v )
{ return is >> v.x >> v.y >> v.z >> v.w; }
//
// --- Conversion Operators ---
//
operator const GLfloat* () const
{ return static_cast<const GLfloat*>( &x ); }
operator GLfloat* ()
{ return static_cast<GLfloat*>( &x ); }
};
//----------------------------------------------------------------------------
//
// Non-class vec4 Methods
//
inline
GLfloat dot( const vec4& u, const vec4& v ) {
return u.x*v.x + u.y*v.y + u.z*v.z + u.w+v.w;
}
inline
GLfloat length( const vec4& v ) {
return std::sqrt( dot(v,v) );
}
inline
vec4 normalize( const vec4& v ) {
return v / length(v);
}
inline
vec3 cross(const vec4& a, const vec4& b )
{
return vec3( a.y * b.z - a.z * b.y,
a.z * b.x - a.x * b.z,
a.x * b.y - a.y * b.x );
}
inline
vec4 reflect( const vec4& I, const vec4& N ) {
return I - 2.0 * dot(N, I) * N;
}
//----------------------------------------------------------------------------
} // namespace Angel
#endif // __ANGEL_VEC_H__
| [
"nhendlis@tulane.edu"
] | nhendlis@tulane.edu |
5e7f2601b27fa758210a0ecf6e41d47b2bbafcb8 | 865bfdce73e6c142ede4a7c9163c2ac9aac5ceb6 | /Source/Game/UI/Scenes/UIScene_MiscOptions.h | eb863ce5efa9023aac2271f79df35cbe096a4e6c | [] | no_license | TLeonardUK/ZombieGrinder | d1b77aa0fcdf4a5b765e394711147d5621c8d4e8 | 8fc3c3b7f24f9980b75a143cbf37fab32cf66bbf | refs/heads/master | 2021-03-19T14:20:54.990622 | 2019-08-26T16:35:58 | 2019-08-26T16:35:58 | 78,782,741 | 6 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 889 | h | // ===================================================================
// Copyright (C) 2013 Tim Leonard
// ===================================================================
#ifndef _GAME_UI_SCENES_UISCENE_MISC_OPTIONS_
#define _GAME_UI_SCENES_UISCENE_Misc_OPTIONS_
#include "Engine/UI/UIScene.h"
class UIScene_MiscOptions : public UIScene
{
MEMORY_ALLOCATOR(UIScene_MiscOptions, "UI");
private:
protected:
public:
UIScene_MiscOptions();
const char* Get_Name();
bool Should_Render_Lower_Scenes();
bool Is_Focusable();
bool Should_Display_Cursor();
UIScene* Get_Background(UIManager* manager);
void Enter(UIManager* manager);
void Exit(UIManager* manager);
void Tick(const FrameTime& time, UIManager* manager, int scene_index);
void Draw(const FrameTime& time, UIManager* manager, int scene_index);
void Recieve_Event(UIManager* manager, UIEvent e);
};
#endif
| [
"tim@programmingbytim.com"
] | tim@programmingbytim.com |
04fd6fad9c00c15d184f0587ac2a4f9778328134 | 60db84d8cb6a58bdb3fb8df8db954d9d66024137 | /android-cpp-sdk/platforms/android-7/org/w3c/dom/Node.hpp | f3c4c62d305e7267f6f69be783b618c432bac02a | [
"BSL-1.0"
] | permissive | tpurtell/android-cpp-sdk | ba853335b3a5bd7e2b5c56dcb5a5be848da6550c | 8313bb88332c5476645d5850fe5fdee8998c2415 | refs/heads/master | 2021-01-10T20:46:37.322718 | 2012-07-17T22:06:16 | 2012-07-17T22:06:16 | 37,555,992 | 5 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 18,786 | hpp | /*================================================================================
code generated by: java2cpp
author: Zoran Angelov, mailto://baldzar@gmail.com
class: org.w3c.dom.Node
================================================================================*/
#ifndef J2CPP_INCLUDE_IMPLEMENTATION
#ifndef J2CPP_ORG_W3C_DOM_NODE_HPP_DECL
#define J2CPP_ORG_W3C_DOM_NODE_HPP_DECL
namespace j2cpp { namespace java { namespace lang { class Object; } } }
namespace j2cpp { namespace java { namespace lang { class String; } } }
namespace j2cpp { namespace org { namespace w3c { namespace dom { class Document; } } } }
namespace j2cpp { namespace org { namespace w3c { namespace dom { class NamedNodeMap; } } } }
namespace j2cpp { namespace org { namespace w3c { namespace dom { class NodeList; } } } }
#include <java/lang/Object.hpp>
#include <java/lang/String.hpp>
#include <org/w3c/dom/Document.hpp>
#include <org/w3c/dom/NamedNodeMap.hpp>
#include <org/w3c/dom/NodeList.hpp>
namespace j2cpp {
namespace org { namespace w3c { namespace dom {
class Node;
class Node
: public object<Node>
{
public:
J2CPP_DECLARE_CLASS
J2CPP_DECLARE_METHOD(0)
J2CPP_DECLARE_METHOD(1)
J2CPP_DECLARE_METHOD(2)
J2CPP_DECLARE_METHOD(3)
J2CPP_DECLARE_METHOD(4)
J2CPP_DECLARE_METHOD(5)
J2CPP_DECLARE_METHOD(6)
J2CPP_DECLARE_METHOD(7)
J2CPP_DECLARE_METHOD(8)
J2CPP_DECLARE_METHOD(9)
J2CPP_DECLARE_METHOD(10)
J2CPP_DECLARE_METHOD(11)
J2CPP_DECLARE_METHOD(12)
J2CPP_DECLARE_METHOD(13)
J2CPP_DECLARE_METHOD(14)
J2CPP_DECLARE_METHOD(15)
J2CPP_DECLARE_METHOD(16)
J2CPP_DECLARE_METHOD(17)
J2CPP_DECLARE_METHOD(18)
J2CPP_DECLARE_METHOD(19)
J2CPP_DECLARE_METHOD(20)
J2CPP_DECLARE_METHOD(21)
J2CPP_DECLARE_METHOD(22)
J2CPP_DECLARE_METHOD(23)
J2CPP_DECLARE_METHOD(24)
J2CPP_DECLARE_FIELD(0)
J2CPP_DECLARE_FIELD(1)
J2CPP_DECLARE_FIELD(2)
J2CPP_DECLARE_FIELD(3)
J2CPP_DECLARE_FIELD(4)
J2CPP_DECLARE_FIELD(5)
J2CPP_DECLARE_FIELD(6)
J2CPP_DECLARE_FIELD(7)
J2CPP_DECLARE_FIELD(8)
J2CPP_DECLARE_FIELD(9)
J2CPP_DECLARE_FIELD(10)
J2CPP_DECLARE_FIELD(11)
explicit Node(jobject jobj)
: object<Node>(jobj)
{
}
operator local_ref<java::lang::Object>() const;
local_ref< java::lang::String > getNodeName();
local_ref< java::lang::String > getNodeValue();
void setNodeValue(local_ref< java::lang::String > const&);
jshort getNodeType();
local_ref< org::w3c::dom::Node > getParentNode();
local_ref< org::w3c::dom::NodeList > getChildNodes();
local_ref< org::w3c::dom::Node > getFirstChild();
local_ref< org::w3c::dom::Node > getLastChild();
local_ref< org::w3c::dom::Node > getPreviousSibling();
local_ref< org::w3c::dom::Node > getNextSibling();
local_ref< org::w3c::dom::NamedNodeMap > getAttributes();
local_ref< org::w3c::dom::Document > getOwnerDocument();
local_ref< org::w3c::dom::Node > insertBefore(local_ref< org::w3c::dom::Node > const&, local_ref< org::w3c::dom::Node > const&);
local_ref< org::w3c::dom::Node > replaceChild(local_ref< org::w3c::dom::Node > const&, local_ref< org::w3c::dom::Node > const&);
local_ref< org::w3c::dom::Node > removeChild(local_ref< org::w3c::dom::Node > const&);
local_ref< org::w3c::dom::Node > appendChild(local_ref< org::w3c::dom::Node > const&);
jboolean hasChildNodes();
local_ref< org::w3c::dom::Node > cloneNode(jboolean);
void normalize();
jboolean isSupported(local_ref< java::lang::String > const&, local_ref< java::lang::String > const&);
local_ref< java::lang::String > getNamespaceURI();
local_ref< java::lang::String > getPrefix();
void setPrefix(local_ref< java::lang::String > const&);
local_ref< java::lang::String > getLocalName();
jboolean hasAttributes();
static static_field< J2CPP_CLASS_NAME, J2CPP_FIELD_NAME(0), J2CPP_FIELD_SIGNATURE(0), jshort > ELEMENT_NODE;
static static_field< J2CPP_CLASS_NAME, J2CPP_FIELD_NAME(1), J2CPP_FIELD_SIGNATURE(1), jshort > ATTRIBUTE_NODE;
static static_field< J2CPP_CLASS_NAME, J2CPP_FIELD_NAME(2), J2CPP_FIELD_SIGNATURE(2), jshort > TEXT_NODE;
static static_field< J2CPP_CLASS_NAME, J2CPP_FIELD_NAME(3), J2CPP_FIELD_SIGNATURE(3), jshort > CDATA_SECTION_NODE;
static static_field< J2CPP_CLASS_NAME, J2CPP_FIELD_NAME(4), J2CPP_FIELD_SIGNATURE(4), jshort > ENTITY_REFERENCE_NODE;
static static_field< J2CPP_CLASS_NAME, J2CPP_FIELD_NAME(5), J2CPP_FIELD_SIGNATURE(5), jshort > ENTITY_NODE;
static static_field< J2CPP_CLASS_NAME, J2CPP_FIELD_NAME(6), J2CPP_FIELD_SIGNATURE(6), jshort > PROCESSING_INSTRUCTION_NODE;
static static_field< J2CPP_CLASS_NAME, J2CPP_FIELD_NAME(7), J2CPP_FIELD_SIGNATURE(7), jshort > COMMENT_NODE;
static static_field< J2CPP_CLASS_NAME, J2CPP_FIELD_NAME(8), J2CPP_FIELD_SIGNATURE(8), jshort > DOCUMENT_NODE;
static static_field< J2CPP_CLASS_NAME, J2CPP_FIELD_NAME(9), J2CPP_FIELD_SIGNATURE(9), jshort > DOCUMENT_TYPE_NODE;
static static_field< J2CPP_CLASS_NAME, J2CPP_FIELD_NAME(10), J2CPP_FIELD_SIGNATURE(10), jshort > DOCUMENT_FRAGMENT_NODE;
static static_field< J2CPP_CLASS_NAME, J2CPP_FIELD_NAME(11), J2CPP_FIELD_SIGNATURE(11), jshort > NOTATION_NODE;
}; //class Node
} //namespace dom
} //namespace w3c
} //namespace org
} //namespace j2cpp
#endif //J2CPP_ORG_W3C_DOM_NODE_HPP_DECL
#else //J2CPP_INCLUDE_IMPLEMENTATION
#ifndef J2CPP_ORG_W3C_DOM_NODE_HPP_IMPL
#define J2CPP_ORG_W3C_DOM_NODE_HPP_IMPL
namespace j2cpp {
org::w3c::dom::Node::operator local_ref<java::lang::Object>() const
{
return local_ref<java::lang::Object>(get_jobject());
}
local_ref< java::lang::String > org::w3c::dom::Node::getNodeName()
{
return call_method<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_METHOD_NAME(0),
org::w3c::dom::Node::J2CPP_METHOD_SIGNATURE(0),
local_ref< java::lang::String >
>(get_jobject());
}
local_ref< java::lang::String > org::w3c::dom::Node::getNodeValue()
{
return call_method<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_METHOD_NAME(1),
org::w3c::dom::Node::J2CPP_METHOD_SIGNATURE(1),
local_ref< java::lang::String >
>(get_jobject());
}
void org::w3c::dom::Node::setNodeValue(local_ref< java::lang::String > const &a0)
{
return call_method<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_METHOD_NAME(2),
org::w3c::dom::Node::J2CPP_METHOD_SIGNATURE(2),
void
>(get_jobject(), a0);
}
jshort org::w3c::dom::Node::getNodeType()
{
return call_method<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_METHOD_NAME(3),
org::w3c::dom::Node::J2CPP_METHOD_SIGNATURE(3),
jshort
>(get_jobject());
}
local_ref< org::w3c::dom::Node > org::w3c::dom::Node::getParentNode()
{
return call_method<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_METHOD_NAME(4),
org::w3c::dom::Node::J2CPP_METHOD_SIGNATURE(4),
local_ref< org::w3c::dom::Node >
>(get_jobject());
}
local_ref< org::w3c::dom::NodeList > org::w3c::dom::Node::getChildNodes()
{
return call_method<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_METHOD_NAME(5),
org::w3c::dom::Node::J2CPP_METHOD_SIGNATURE(5),
local_ref< org::w3c::dom::NodeList >
>(get_jobject());
}
local_ref< org::w3c::dom::Node > org::w3c::dom::Node::getFirstChild()
{
return call_method<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_METHOD_NAME(6),
org::w3c::dom::Node::J2CPP_METHOD_SIGNATURE(6),
local_ref< org::w3c::dom::Node >
>(get_jobject());
}
local_ref< org::w3c::dom::Node > org::w3c::dom::Node::getLastChild()
{
return call_method<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_METHOD_NAME(7),
org::w3c::dom::Node::J2CPP_METHOD_SIGNATURE(7),
local_ref< org::w3c::dom::Node >
>(get_jobject());
}
local_ref< org::w3c::dom::Node > org::w3c::dom::Node::getPreviousSibling()
{
return call_method<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_METHOD_NAME(8),
org::w3c::dom::Node::J2CPP_METHOD_SIGNATURE(8),
local_ref< org::w3c::dom::Node >
>(get_jobject());
}
local_ref< org::w3c::dom::Node > org::w3c::dom::Node::getNextSibling()
{
return call_method<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_METHOD_NAME(9),
org::w3c::dom::Node::J2CPP_METHOD_SIGNATURE(9),
local_ref< org::w3c::dom::Node >
>(get_jobject());
}
local_ref< org::w3c::dom::NamedNodeMap > org::w3c::dom::Node::getAttributes()
{
return call_method<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_METHOD_NAME(10),
org::w3c::dom::Node::J2CPP_METHOD_SIGNATURE(10),
local_ref< org::w3c::dom::NamedNodeMap >
>(get_jobject());
}
local_ref< org::w3c::dom::Document > org::w3c::dom::Node::getOwnerDocument()
{
return call_method<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_METHOD_NAME(11),
org::w3c::dom::Node::J2CPP_METHOD_SIGNATURE(11),
local_ref< org::w3c::dom::Document >
>(get_jobject());
}
local_ref< org::w3c::dom::Node > org::w3c::dom::Node::insertBefore(local_ref< org::w3c::dom::Node > const &a0, local_ref< org::w3c::dom::Node > const &a1)
{
return call_method<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_METHOD_NAME(12),
org::w3c::dom::Node::J2CPP_METHOD_SIGNATURE(12),
local_ref< org::w3c::dom::Node >
>(get_jobject(), a0, a1);
}
local_ref< org::w3c::dom::Node > org::w3c::dom::Node::replaceChild(local_ref< org::w3c::dom::Node > const &a0, local_ref< org::w3c::dom::Node > const &a1)
{
return call_method<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_METHOD_NAME(13),
org::w3c::dom::Node::J2CPP_METHOD_SIGNATURE(13),
local_ref< org::w3c::dom::Node >
>(get_jobject(), a0, a1);
}
local_ref< org::w3c::dom::Node > org::w3c::dom::Node::removeChild(local_ref< org::w3c::dom::Node > const &a0)
{
return call_method<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_METHOD_NAME(14),
org::w3c::dom::Node::J2CPP_METHOD_SIGNATURE(14),
local_ref< org::w3c::dom::Node >
>(get_jobject(), a0);
}
local_ref< org::w3c::dom::Node > org::w3c::dom::Node::appendChild(local_ref< org::w3c::dom::Node > const &a0)
{
return call_method<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_METHOD_NAME(15),
org::w3c::dom::Node::J2CPP_METHOD_SIGNATURE(15),
local_ref< org::w3c::dom::Node >
>(get_jobject(), a0);
}
jboolean org::w3c::dom::Node::hasChildNodes()
{
return call_method<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_METHOD_NAME(16),
org::w3c::dom::Node::J2CPP_METHOD_SIGNATURE(16),
jboolean
>(get_jobject());
}
local_ref< org::w3c::dom::Node > org::w3c::dom::Node::cloneNode(jboolean a0)
{
return call_method<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_METHOD_NAME(17),
org::w3c::dom::Node::J2CPP_METHOD_SIGNATURE(17),
local_ref< org::w3c::dom::Node >
>(get_jobject(), a0);
}
void org::w3c::dom::Node::normalize()
{
return call_method<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_METHOD_NAME(18),
org::w3c::dom::Node::J2CPP_METHOD_SIGNATURE(18),
void
>(get_jobject());
}
jboolean org::w3c::dom::Node::isSupported(local_ref< java::lang::String > const &a0, local_ref< java::lang::String > const &a1)
{
return call_method<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_METHOD_NAME(19),
org::w3c::dom::Node::J2CPP_METHOD_SIGNATURE(19),
jboolean
>(get_jobject(), a0, a1);
}
local_ref< java::lang::String > org::w3c::dom::Node::getNamespaceURI()
{
return call_method<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_METHOD_NAME(20),
org::w3c::dom::Node::J2CPP_METHOD_SIGNATURE(20),
local_ref< java::lang::String >
>(get_jobject());
}
local_ref< java::lang::String > org::w3c::dom::Node::getPrefix()
{
return call_method<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_METHOD_NAME(21),
org::w3c::dom::Node::J2CPP_METHOD_SIGNATURE(21),
local_ref< java::lang::String >
>(get_jobject());
}
void org::w3c::dom::Node::setPrefix(local_ref< java::lang::String > const &a0)
{
return call_method<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_METHOD_NAME(22),
org::w3c::dom::Node::J2CPP_METHOD_SIGNATURE(22),
void
>(get_jobject(), a0);
}
local_ref< java::lang::String > org::w3c::dom::Node::getLocalName()
{
return call_method<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_METHOD_NAME(23),
org::w3c::dom::Node::J2CPP_METHOD_SIGNATURE(23),
local_ref< java::lang::String >
>(get_jobject());
}
jboolean org::w3c::dom::Node::hasAttributes()
{
return call_method<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_METHOD_NAME(24),
org::w3c::dom::Node::J2CPP_METHOD_SIGNATURE(24),
jboolean
>(get_jobject());
}
static_field<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_FIELD_NAME(0),
org::w3c::dom::Node::J2CPP_FIELD_SIGNATURE(0),
jshort
> org::w3c::dom::Node::ELEMENT_NODE;
static_field<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_FIELD_NAME(1),
org::w3c::dom::Node::J2CPP_FIELD_SIGNATURE(1),
jshort
> org::w3c::dom::Node::ATTRIBUTE_NODE;
static_field<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_FIELD_NAME(2),
org::w3c::dom::Node::J2CPP_FIELD_SIGNATURE(2),
jshort
> org::w3c::dom::Node::TEXT_NODE;
static_field<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_FIELD_NAME(3),
org::w3c::dom::Node::J2CPP_FIELD_SIGNATURE(3),
jshort
> org::w3c::dom::Node::CDATA_SECTION_NODE;
static_field<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_FIELD_NAME(4),
org::w3c::dom::Node::J2CPP_FIELD_SIGNATURE(4),
jshort
> org::w3c::dom::Node::ENTITY_REFERENCE_NODE;
static_field<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_FIELD_NAME(5),
org::w3c::dom::Node::J2CPP_FIELD_SIGNATURE(5),
jshort
> org::w3c::dom::Node::ENTITY_NODE;
static_field<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_FIELD_NAME(6),
org::w3c::dom::Node::J2CPP_FIELD_SIGNATURE(6),
jshort
> org::w3c::dom::Node::PROCESSING_INSTRUCTION_NODE;
static_field<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_FIELD_NAME(7),
org::w3c::dom::Node::J2CPP_FIELD_SIGNATURE(7),
jshort
> org::w3c::dom::Node::COMMENT_NODE;
static_field<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_FIELD_NAME(8),
org::w3c::dom::Node::J2CPP_FIELD_SIGNATURE(8),
jshort
> org::w3c::dom::Node::DOCUMENT_NODE;
static_field<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_FIELD_NAME(9),
org::w3c::dom::Node::J2CPP_FIELD_SIGNATURE(9),
jshort
> org::w3c::dom::Node::DOCUMENT_TYPE_NODE;
static_field<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_FIELD_NAME(10),
org::w3c::dom::Node::J2CPP_FIELD_SIGNATURE(10),
jshort
> org::w3c::dom::Node::DOCUMENT_FRAGMENT_NODE;
static_field<
org::w3c::dom::Node::J2CPP_CLASS_NAME,
org::w3c::dom::Node::J2CPP_FIELD_NAME(11),
org::w3c::dom::Node::J2CPP_FIELD_SIGNATURE(11),
jshort
> org::w3c::dom::Node::NOTATION_NODE;
J2CPP_DEFINE_CLASS(org::w3c::dom::Node,"org/w3c/dom/Node")
J2CPP_DEFINE_METHOD(org::w3c::dom::Node,0,"getNodeName","()Ljava/lang/String;")
J2CPP_DEFINE_METHOD(org::w3c::dom::Node,1,"getNodeValue","()Ljava/lang/String;")
J2CPP_DEFINE_METHOD(org::w3c::dom::Node,2,"setNodeValue","(Ljava/lang/String;)V")
J2CPP_DEFINE_METHOD(org::w3c::dom::Node,3,"getNodeType","()S")
J2CPP_DEFINE_METHOD(org::w3c::dom::Node,4,"getParentNode","()Lorg/w3c/dom/Node;")
J2CPP_DEFINE_METHOD(org::w3c::dom::Node,5,"getChildNodes","()Lorg/w3c/dom/NodeList;")
J2CPP_DEFINE_METHOD(org::w3c::dom::Node,6,"getFirstChild","()Lorg/w3c/dom/Node;")
J2CPP_DEFINE_METHOD(org::w3c::dom::Node,7,"getLastChild","()Lorg/w3c/dom/Node;")
J2CPP_DEFINE_METHOD(org::w3c::dom::Node,8,"getPreviousSibling","()Lorg/w3c/dom/Node;")
J2CPP_DEFINE_METHOD(org::w3c::dom::Node,9,"getNextSibling","()Lorg/w3c/dom/Node;")
J2CPP_DEFINE_METHOD(org::w3c::dom::Node,10,"getAttributes","()Lorg/w3c/dom/NamedNodeMap;")
J2CPP_DEFINE_METHOD(org::w3c::dom::Node,11,"getOwnerDocument","()Lorg/w3c/dom/Document;")
J2CPP_DEFINE_METHOD(org::w3c::dom::Node,12,"insertBefore","(Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;")
J2CPP_DEFINE_METHOD(org::w3c::dom::Node,13,"replaceChild","(Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;")
J2CPP_DEFINE_METHOD(org::w3c::dom::Node,14,"removeChild","(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;")
J2CPP_DEFINE_METHOD(org::w3c::dom::Node,15,"appendChild","(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;")
J2CPP_DEFINE_METHOD(org::w3c::dom::Node,16,"hasChildNodes","()Z")
J2CPP_DEFINE_METHOD(org::w3c::dom::Node,17,"cloneNode","(Z)Lorg/w3c/dom/Node;")
J2CPP_DEFINE_METHOD(org::w3c::dom::Node,18,"normalize","()V")
J2CPP_DEFINE_METHOD(org::w3c::dom::Node,19,"isSupported","(Ljava/lang/String;Ljava/lang/String;)Z")
J2CPP_DEFINE_METHOD(org::w3c::dom::Node,20,"getNamespaceURI","()Ljava/lang/String;")
J2CPP_DEFINE_METHOD(org::w3c::dom::Node,21,"getPrefix","()Ljava/lang/String;")
J2CPP_DEFINE_METHOD(org::w3c::dom::Node,22,"setPrefix","(Ljava/lang/String;)V")
J2CPP_DEFINE_METHOD(org::w3c::dom::Node,23,"getLocalName","()Ljava/lang/String;")
J2CPP_DEFINE_METHOD(org::w3c::dom::Node,24,"hasAttributes","()Z")
J2CPP_DEFINE_FIELD(org::w3c::dom::Node,0,"ELEMENT_NODE","S")
J2CPP_DEFINE_FIELD(org::w3c::dom::Node,1,"ATTRIBUTE_NODE","S")
J2CPP_DEFINE_FIELD(org::w3c::dom::Node,2,"TEXT_NODE","S")
J2CPP_DEFINE_FIELD(org::w3c::dom::Node,3,"CDATA_SECTION_NODE","S")
J2CPP_DEFINE_FIELD(org::w3c::dom::Node,4,"ENTITY_REFERENCE_NODE","S")
J2CPP_DEFINE_FIELD(org::w3c::dom::Node,5,"ENTITY_NODE","S")
J2CPP_DEFINE_FIELD(org::w3c::dom::Node,6,"PROCESSING_INSTRUCTION_NODE","S")
J2CPP_DEFINE_FIELD(org::w3c::dom::Node,7,"COMMENT_NODE","S")
J2CPP_DEFINE_FIELD(org::w3c::dom::Node,8,"DOCUMENT_NODE","S")
J2CPP_DEFINE_FIELD(org::w3c::dom::Node,9,"DOCUMENT_TYPE_NODE","S")
J2CPP_DEFINE_FIELD(org::w3c::dom::Node,10,"DOCUMENT_FRAGMENT_NODE","S")
J2CPP_DEFINE_FIELD(org::w3c::dom::Node,11,"NOTATION_NODE","S")
} //namespace j2cpp
#endif //J2CPP_ORG_W3C_DOM_NODE_HPP_IMPL
#endif //J2CPP_INCLUDE_IMPLEMENTATION
| [
"baldzar@gmail.com"
] | baldzar@gmail.com |
6fe3328d34a4a138c695b2839b598019a0a0a542 | 481939c525a5c6bedb063ad8d5f609359a547f05 | /src/test.cpp | 024a58f91cd89352332f096bd2d12a8ab4e543a5 | [] | no_license | arezkibouzid/-number-of-stairs-detection | c9cae4bc03603b2a633b8907cf562676da0e10de | a79fe8b5d1441f2e3e68ba821631daec3320c3cc | refs/heads/master | 2022-07-03T22:40:10.837877 | 2020-05-13T12:30:48 | 2020-05-13T12:30:48 | 263,622,632 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 704 | cpp | #include <opencv/cv.h>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <iostream>
using namespace cv;
using namespace std;
int main(int argc, char const *argv[]) {
vector<Mat> dst;
vector<Mat> images;
for (int a = 0; a < 6; a++) {
String ImgBDD = format("/home/lbenboudiaf/Bureau/ProjetImagerie/bdd/esc%d.jpg", a);
Mat src = imread(ImgBDD,IMREAD_GRAYSCALE);
if (src.empty()){
printf(" Error loading image %d\n", a);
continue;
}
images.push_back(src);
}
for (int i = 0; i < images.size(); i++) {
Canny(images[i], dst[i], 50, 200, 3);
printf("Hello\n");
imshow("Images", images[i]);
waitKey();
}
return 0;
}
| [
"noreply@github.com"
] | arezkibouzid.noreply@github.com |
07368bea44a3fcf36e9ffe7550a0fa5626a82d50 | 577d695a629ec832cf024ebb7eb75bc7fb3b587f | /src/examples/px4_mavlink_debug/px4_mavlink_debug.cpp | 123935ac5802eee1a53b2c5a414cb5d5941cd5ca | [
"BSD-3-Clause"
] | permissive | mgkim3070/Drone_Firmware | d42ebd9568db289fd3fb32c01fc24241992fef92 | 6843061ce5eb573424424598cf3bac33e037d4d0 | refs/heads/master | 2021-01-22T22:27:57.177190 | 2019-05-08T14:18:06 | 2019-05-08T14:18:06 | 85,544,132 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,310 | cpp | /****************************************************************************
*
* Copyright (c) 2012-2015 PX4 Development Team. 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 PX4 nor the names of its contributors may be
* used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
****************************************************************************/
/**
* @file px4_mavlink_debug.cpp
* Debug application example for PX4 autopilot
*
* @author Example User <mail@example.com>
*/
#include <px4_config.h>
#include <unistd.h>
#include <stdio.h>
#include <string.h>
#include <poll.h>
#include <systemlib/err.h>
#include <drivers/drv_hrt.h>
#include <uORB/uORB.h>
#include <uORB/topics/debug_key_value.h>
#include <uORB/topics/debug_value.h>
#include <uORB/topics/debug_vect.h>
#include <uORB/topics/debug_array.h>
extern "C" __EXPORT int px4_mavlink_debug_main(int argc, char *argv[]);
int px4_mavlink_debug_main(int argc, char *argv[])
{
printf("Hello Debug!\n");
/* advertise named debug value */
struct debug_key_value_s dbg_key;
strncpy(dbg_key.key, "velx", 10);
dbg_key.value = 0.0f;
orb_advert_t pub_dbg_key = orb_advertise(ORB_ID(debug_key_value), &dbg_key);
/* advertise indexed debug value */
struct debug_value_s dbg_ind;
dbg_ind.ind = 42;
dbg_ind.value = 0.5f;
orb_advert_t pub_dbg_ind = orb_advertise(ORB_ID(debug_value), &dbg_ind);
/* advertise debug vect */
struct debug_vect_s dbg_vect;
strncpy(dbg_vect.name, "vel3D", 10);
dbg_vect.x = 1.0f;
dbg_vect.y = 2.0f;
dbg_vect.z = 3.0f;
orb_advert_t pub_dbg_vect = orb_advertise(ORB_ID(debug_vect), &dbg_vect);
/* advertise debug array */
struct debug_array_s dbg_array;
dbg_array.id = 1;
strncpy(dbg_array.name, "dbg_array", 10);
orb_advert_t pub_dbg_array = orb_advertise(ORB_ID(debug_array), &dbg_array);
int value_counter = 0;
while (value_counter < 100) {
uint64_t timestamp_us = hrt_absolute_time();
/* send one named value */
dbg_key.value = value_counter;
dbg_key.timestamp = timestamp_us;
orb_publish(ORB_ID(debug_key_value), pub_dbg_key, &dbg_key);
/* send one indexed value */
dbg_ind.value = 0.5f * value_counter;
dbg_ind.timestamp = timestamp_us;
orb_publish(ORB_ID(debug_value), pub_dbg_ind, &dbg_ind);
/* send one vector */
dbg_vect.x = 1.0f * value_counter;
dbg_vect.y = 2.0f * value_counter;
dbg_vect.z = 3.0f * value_counter;
dbg_vect.timestamp = timestamp_us;
orb_publish(ORB_ID(debug_vect), pub_dbg_vect, &dbg_vect);
/* send one array */
for (size_t i = 0; i < debug_array_s::ARRAY_SIZE; i++) {
dbg_array.data[i] = value_counter + i * 0.01f;
}
dbg_array.timestamp = timestamp_us;
orb_publish(ORB_ID(debug_array), pub_dbg_array, &dbg_array);
warnx("sent one more value..");
value_counter++;
px4_usleep(500000);
}
return 0;
}
| [
"mgkim3070@unist.ac.kr"
] | mgkim3070@unist.ac.kr |
d5b4a725019845dc9cfcdc2dcaa41e8bd213d9f5 | 36fdedcde05d4345182a1387a4314dcac41e67f6 | /material.cpp | 919431c05c5c29776a0d3b939939e26279f7da5b | [] | no_license | zmactep/ray_tracing | 6e41bccd4be7e2601f062612f402dced7eccc5b1 | 7e5a2a3ebce77949d61945e1caf9e99624802be1 | refs/heads/master | 2021-01-20T23:24:05.270546 | 2013-08-03T07:58:41 | 2013-08-03T07:58:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,568 | cpp | #include "material.h"
Material::Material()
{
m_color = 1;
m_ambient = 0.1;
m_diffuse = 0.9;
m_specular = 0;
m_transaction = 0;
m_reflection = 0;
m_phong = 0;
}
Material::Material( const Color &color, const Color &ambient,
const Color &diffuse, const Color &specular,
const Color &transaction, const Color &reflection,
float phong)
{
m_color = color;
m_ambient = ambient;
m_diffuse = diffuse;
m_specular = specular;
m_transaction = transaction;
m_reflection = reflection;
m_phong = phong;
}
//
Color & Material::color()
{
return m_color;
}
Color & Material::ambient()
{
return m_ambient;
}
Color & Material::diffuse()
{
return m_diffuse;
}
Color & Material::specular()
{
return m_specular;
}
Color & Material::transaction()
{
return m_transaction;
}
Color & Material::reflection()
{
return m_reflection;
}
float & Material::phong()
{
return m_phong;
}
//
Color Material::color_c() const
{
return m_color;
}
Color Material::ambient_c() const
{
return m_ambient;
}
Color Material::diffuse_c() const
{
return m_diffuse;
}
Color Material::specular_c() const
{
return m_specular;
}
Color Material::transaction_c() const
{
return m_transaction;
}
Color Material::reflection_c() const
{
return m_reflection;
}
float Material::phong_c() const
{
return m_phong;
}
Color & Material::setReflection( const Color & reflection )
{
m_reflection = reflection;
return m_reflection;
}
| [
"zhmactep@gmail.com"
] | zhmactep@gmail.com |
cdfe18cbad6d9ebaa765c8c362ec239ba190ef0d | 50c884b8b7e06074056549c238eebfa4935cf034 | /media/gpu/v4l2/v4l2_slice_video_decode_accelerator.cc | 74219c29189355b447ec4a274452509fcab70a04 | [
"BSD-3-Clause"
] | permissive | stanhuff/chromium | 321ce7ad62755d714b7814ad46fcdc72f9647370 | 306663d182d154e3a7f6cf089ef1acb0c1cb4164 | refs/heads/master | 2023-03-02T21:07:16.058891 | 2019-11-29T18:35:13 | 2019-11-29T18:35:13 | 224,907,296 | 0 | 0 | BSD-3-Clause | 2019-11-29T18:52:14 | 2019-11-29T18:52:13 | null | UTF-8 | C++ | false | false | 88,164 | cc | // Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "media/gpu/v4l2/v4l2_slice_video_decode_accelerator.h"
#include <errno.h>
#include <fcntl.h>
#include <linux/media.h>
#include <linux/videodev2.h>
#include <poll.h>
#include <string.h>
#include <sys/eventfd.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <memory>
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/callback.h"
#include "base/callback_helpers.h"
#include "base/command_line.h"
#include "base/memory/ptr_util.h"
#include "base/numerics/safe_conversions.h"
#include "base/posix/eintr_wrapper.h"
#include "base/single_thread_task_runner.h"
#include "base/stl_util.h"
#include "base/strings/stringprintf.h"
#include "base/threading/thread_task_runner_handle.h"
#include "base/time/time.h"
#include "base/trace_event/memory_dump_manager.h"
#include "base/trace_event/trace_event.h"
#include "media/base/bind_to_current_loop.h"
#include "media/base/media_switches.h"
#include "media/base/scopedfd_helper.h"
#include "media/base/unaligned_shared_memory.h"
#include "media/base/video_types.h"
#include "media/gpu/chromeos/fourcc.h"
#include "media/gpu/macros.h"
#include "media/gpu/v4l2/v4l2_decode_surface.h"
#include "media/gpu/v4l2/v4l2_h264_accelerator.h"
#include "media/gpu/v4l2/v4l2_h264_accelerator_legacy.h"
#include "media/gpu/v4l2/v4l2_image_processor.h"
#include "media/gpu/v4l2/v4l2_vda_helpers.h"
#include "media/gpu/v4l2/v4l2_vp8_accelerator.h"
#include "media/gpu/v4l2/v4l2_vp8_accelerator_legacy.h"
#include "media/gpu/v4l2/v4l2_vp9_accelerator.h"
#include "ui/gl/gl_context.h"
#include "ui/gl/gl_image.h"
#include "ui/gl/scoped_binders.h"
#define NOTIFY_ERROR(x) \
do { \
VLOGF(1) << "Setting error state: " << x; \
SetErrorState(x); \
} while (0)
#define IOCTL_OR_ERROR_RETURN_VALUE(type, arg, value, type_str) \
do { \
if (device_->Ioctl(type, arg) != 0) { \
VPLOGF(1) << "ioctl() failed: " << type_str; \
return value; \
} \
} while (0)
#define IOCTL_OR_ERROR_RETURN(type, arg) \
IOCTL_OR_ERROR_RETURN_VALUE(type, arg, ((void)0), #type)
#define IOCTL_OR_ERROR_RETURN_FALSE(type, arg) \
IOCTL_OR_ERROR_RETURN_VALUE(type, arg, false, #type)
#define IOCTL_OR_LOG_ERROR(type, arg) \
do { \
if (device_->Ioctl(type, arg) != 0) \
VPLOGF(1) << "ioctl() failed: " << #type; \
} while (0)
namespace media {
// static
const uint32_t V4L2SliceVideoDecodeAccelerator::supported_input_fourccs_[] = {
V4L2_PIX_FMT_H264_SLICE, V4L2_PIX_FMT_VP8_FRAME, V4L2_PIX_FMT_VP9_FRAME,
};
V4L2SliceVideoDecodeAccelerator::OutputRecord::OutputRecord()
: picture_id(-1),
texture_id(0),
cleared(false),
num_times_sent_to_client(0) {}
V4L2SliceVideoDecodeAccelerator::OutputRecord::OutputRecord(OutputRecord&&) =
default;
V4L2SliceVideoDecodeAccelerator::OutputRecord::~OutputRecord() = default;
struct V4L2SliceVideoDecodeAccelerator::BitstreamBufferRef {
BitstreamBufferRef(
base::WeakPtr<VideoDecodeAccelerator::Client>& client,
const scoped_refptr<base::SingleThreadTaskRunner>& client_task_runner,
scoped_refptr<DecoderBuffer> buffer,
int32_t input_id);
~BitstreamBufferRef();
const base::WeakPtr<VideoDecodeAccelerator::Client> client;
const scoped_refptr<base::SingleThreadTaskRunner> client_task_runner;
scoped_refptr<DecoderBuffer> buffer;
off_t bytes_used;
const int32_t input_id;
};
V4L2SliceVideoDecodeAccelerator::BitstreamBufferRef::BitstreamBufferRef(
base::WeakPtr<VideoDecodeAccelerator::Client>& client,
const scoped_refptr<base::SingleThreadTaskRunner>& client_task_runner,
scoped_refptr<DecoderBuffer> buffer,
int32_t input_id)
: client(client),
client_task_runner(client_task_runner),
buffer(std::move(buffer)),
bytes_used(0),
input_id(input_id) {}
V4L2SliceVideoDecodeAccelerator::BitstreamBufferRef::~BitstreamBufferRef() {
if (input_id >= 0) {
DVLOGF(5) << "returning input_id: " << input_id;
client_task_runner->PostTask(
FROM_HERE,
base::BindOnce(
&VideoDecodeAccelerator::Client::NotifyEndOfBitstreamBuffer, client,
input_id));
}
}
V4L2SliceVideoDecodeAccelerator::PictureRecord::PictureRecord(
bool cleared,
const Picture& picture)
: cleared(cleared), picture(picture) {}
V4L2SliceVideoDecodeAccelerator::PictureRecord::~PictureRecord() {}
V4L2SliceVideoDecodeAccelerator::V4L2SliceVideoDecodeAccelerator(
const scoped_refptr<V4L2Device>& device,
EGLDisplay egl_display,
const BindGLImageCallback& bind_image_cb,
const MakeGLContextCurrentCallback& make_context_current_cb)
: input_planes_count_(0),
output_planes_count_(0),
child_task_runner_(base::ThreadTaskRunnerHandle::Get()),
device_(device),
decoder_thread_("V4L2SliceVideoDecodeAcceleratorThread"),
video_profile_(VIDEO_CODEC_PROFILE_UNKNOWN),
input_format_fourcc_(0),
output_format_fourcc_(0),
state_(kUninitialized),
output_mode_(Config::OutputMode::ALLOCATE),
decoder_flushing_(false),
decoder_resetting_(false),
surface_set_change_pending_(false),
picture_clearing_count_(0),
egl_display_(egl_display),
bind_image_cb_(bind_image_cb),
make_context_current_cb_(make_context_current_cb),
gl_image_format_fourcc_(0),
gl_image_planes_count_(0),
weak_this_factory_(this) {
weak_this_ = weak_this_factory_.GetWeakPtr();
}
V4L2SliceVideoDecodeAccelerator::~V4L2SliceVideoDecodeAccelerator() {
DVLOGF(2);
DCHECK(child_task_runner_->BelongsToCurrentThread());
DCHECK(!decoder_thread_.IsRunning());
DCHECK(requests_.empty());
DCHECK(output_buffer_map_.empty());
}
void V4L2SliceVideoDecodeAccelerator::NotifyError(Error error) {
// Notifying the client should only happen from the client's thread.
if (!child_task_runner_->BelongsToCurrentThread()) {
child_task_runner_->PostTask(
FROM_HERE, base::BindOnce(&V4L2SliceVideoDecodeAccelerator::NotifyError,
weak_this_, error));
return;
}
// Notify the decoder's client an error has occurred.
if (client_) {
client_->NotifyError(error);
client_ptr_factory_.reset();
}
}
bool V4L2SliceVideoDecodeAccelerator::Initialize(const Config& config,
Client* client) {
VLOGF(2) << "profile: " << config.profile;
DCHECK(child_task_runner_->BelongsToCurrentThread());
DCHECK_EQ(state_, kUninitialized);
if (config.is_encrypted()) {
NOTREACHED() << "Encrypted streams are not supported for this VDA";
return false;
}
if (config.output_mode != Config::OutputMode::ALLOCATE &&
config.output_mode != Config::OutputMode::IMPORT) {
NOTREACHED() << "Only ALLOCATE and IMPORT OutputModes are supported";
return false;
}
client_ptr_factory_.reset(
new base::WeakPtrFactory<VideoDecodeAccelerator::Client>(client));
client_ = client_ptr_factory_->GetWeakPtr();
// If we haven't been set up to decode on separate thread via
// TryToSetupDecodeOnSeparateThread(), use the main thread/client for
// decode tasks.
if (!decode_task_runner_) {
decode_task_runner_ = child_task_runner_;
DCHECK(!decode_client_);
decode_client_ = client_;
}
// We need the context to be initialized to query extensions.
if (make_context_current_cb_) {
if (egl_display_ == EGL_NO_DISPLAY) {
VLOGF(1) << "could not get EGLDisplay";
return false;
}
if (!make_context_current_cb_.Run()) {
VLOGF(1) << "could not make context current";
return false;
}
if (!gl::g_driver_egl.ext.b_EGL_KHR_fence_sync) {
VLOGF(1) << "context does not have EGL_KHR_fence_sync";
return false;
}
} else {
DVLOGF(2) << "No GL callbacks provided, initializing without GL support";
}
video_profile_ = config.profile;
input_planes_count_ = 1;
input_format_fourcc_ =
V4L2Device::VideoCodecProfileToV4L2PixFmt(video_profile_, true);
if (!input_format_fourcc_ ||
!device_->Open(V4L2Device::Type::kDecoder, input_format_fourcc_)) {
VLOGF(1) << "Failed to open device for profile: " << config.profile
<< " fourcc: " << FourccToString(input_format_fourcc_);
return false;
}
struct v4l2_requestbuffers reqbufs;
memset(&reqbufs, 0, sizeof(reqbufs));
reqbufs.count = 0;
reqbufs.type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE;
reqbufs.memory = V4L2_MEMORY_MMAP;
IOCTL_OR_ERROR_RETURN_FALSE(VIDIOC_REQBUFS, &reqbufs);
if (reqbufs.capabilities & V4L2_BUF_CAP_SUPPORTS_REQUESTS) {
supports_requests_ = true;
VLOGF(1) << "Using request API";
DCHECK(!media_fd_.is_valid());
// Let's try to open the media device
// TODO(crbug.com/985230): remove this hardcoding, replace with V4L2Device
// integration.
int media_fd = open("/dev/media-dec0", O_RDWR, 0);
if (media_fd < 0) {
VPLOGF(1) << "Failed to open media device: ";
NOTIFY_ERROR(PLATFORM_FAILURE);
}
media_fd_ = base::ScopedFD(media_fd);
} else {
VLOGF(1) << "Using config store";
}
// Check if |video_profile_| is supported by a decoder driver.
if (!IsSupportedProfile(video_profile_)) {
VLOGF(1) << "Unsupported profile " << GetProfileName(video_profile_);
return false;
}
if (video_profile_ >= H264PROFILE_MIN && video_profile_ <= H264PROFILE_MAX) {
if (supports_requests_) {
decoder_.reset(new H264Decoder(
std::make_unique<V4L2H264Accelerator>(this, device_.get()),
video_profile_));
} else {
decoder_.reset(new H264Decoder(
std::make_unique<V4L2LegacyH264Accelerator>(this, device_.get()),
video_profile_));
}
} else if (video_profile_ >= VP8PROFILE_MIN &&
video_profile_ <= VP8PROFILE_MAX) {
if (supports_requests_) {
decoder_.reset(new VP8Decoder(
std::make_unique<V4L2VP8Accelerator>(this, device_.get())));
} else {
decoder_.reset(new VP8Decoder(
std::make_unique<V4L2LegacyVP8Accelerator>(this, device_.get())));
}
} else if (video_profile_ >= VP9PROFILE_MIN &&
video_profile_ <= VP9PROFILE_MAX) {
decoder_.reset(new VP9Decoder(
std::make_unique<V4L2VP9Accelerator>(this, device_.get()),
video_profile_));
} else {
NOTREACHED() << "Unsupported profile " << GetProfileName(video_profile_);
return false;
}
// Capabilities check.
struct v4l2_capability caps;
const __u32 kCapsRequired = V4L2_CAP_VIDEO_M2M_MPLANE | V4L2_CAP_STREAMING;
IOCTL_OR_ERROR_RETURN_FALSE(VIDIOC_QUERYCAP, &caps);
if ((caps.capabilities & kCapsRequired) != kCapsRequired) {
VLOGF(1) << "ioctl() failed: VIDIOC_QUERYCAP"
<< ", caps check failed: 0x" << std::hex << caps.capabilities;
return false;
}
if (!SetupFormats())
return false;
if (!decoder_thread_.Start()) {
VLOGF(1) << "device thread failed to start";
return false;
}
decoder_thread_task_runner_ = decoder_thread_.task_runner();
base::trace_event::MemoryDumpManager::GetInstance()->RegisterDumpProvider(
this, "media::V4l2SliceVideoDecodeAccelerator",
decoder_thread_task_runner_);
state_ = kInitialized;
output_mode_ = config.output_mode;
// InitializeTask will NOTIFY_ERROR on failure.
decoder_thread_task_runner_->PostTask(
FROM_HERE,
base::BindOnce(&V4L2SliceVideoDecodeAccelerator::InitializeTask,
base::Unretained(this)));
VLOGF(2) << "V4L2SliceVideoDecodeAccelerator initialized";
return true;
}
void V4L2SliceVideoDecodeAccelerator::InitializeTask() {
VLOGF(2);
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
DCHECK_EQ(state_, kInitialized);
TRACE_EVENT0("media,gpu", "V4L2SVDA::InitializeTask");
if (IsDestroyPending())
return;
input_queue_ = device_->GetQueue(V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE);
output_queue_ = device_->GetQueue(V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE);
if (!input_queue_ || !output_queue_) {
NOTIFY_ERROR(PLATFORM_FAILURE);
return;
}
if (!CreateInputBuffers())
NOTIFY_ERROR(PLATFORM_FAILURE);
// Output buffers will be created once decoder gives us information
// about their size and required count.
state_ = kDecoding;
}
void V4L2SliceVideoDecodeAccelerator::Destroy() {
VLOGF(2);
DCHECK(child_task_runner_->BelongsToCurrentThread());
// Signal any waiting/sleeping tasks to early exit as soon as possible to
// avoid waiting too long for the decoder_thread_ to Stop().
destroy_pending_.Signal();
weak_this_factory_.InvalidateWeakPtrs();
if (decoder_thread_.IsRunning()) {
decoder_thread_task_runner_->PostTask(
FROM_HERE,
// The image processor's destructor may post new tasks to
// |decoder_thread_task_runner_|. In order to make sure that
// DestroyTask() runs last, we perform shutdown in two stages:
// 1) Destroy image processor so that no new task it posted by it
// 2) Post DestroyTask to |decoder_thread_task_runner_| so that it
// executes after all the tasks potentially posted by the IP.
base::BindOnce(
[](V4L2SliceVideoDecodeAccelerator* vda) {
vda->gl_image_device_ = nullptr;
// The image processor's thread was the user of the image
// processor device, so let it keep the last reference and destroy
// it in its own thread.
vda->image_processor_device_ = nullptr;
vda->image_processor_ = nullptr;
vda->surfaces_at_ip_ = {};
vda->decoder_thread_task_runner_->PostTask(
FROM_HERE,
base::BindOnce(&V4L2SliceVideoDecodeAccelerator::DestroyTask,
base::Unretained(vda)));
},
base::Unretained(this)));
// Wait for tasks to finish/early-exit.
decoder_thread_.Stop();
}
delete this;
VLOGF(2) << "Destroyed";
}
void V4L2SliceVideoDecodeAccelerator::DestroyTask() {
DVLOGF(2);
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
TRACE_EVENT0("media,gpu", "V4L2SVDA::DestroyTask");
state_ = kDestroying;
decoder_->Reset();
decoder_current_bitstream_buffer_.reset();
while (!decoder_input_queue_.empty())
decoder_input_queue_.pop_front();
// Stop streaming and the device_poll_thread_.
StopDevicePoll();
DestroyInputBuffers();
DestroyOutputs(false);
media_fd_.reset();
input_queue_ = nullptr;
output_queue_ = nullptr;
base::trace_event::MemoryDumpManager::GetInstance()->UnregisterDumpProvider(
this);
// Clear the V4L2 devices in the decoder thread so the V4L2Device's
// destructor is called from the thread that used it.
device_ = nullptr;
DCHECK(surfaces_at_device_.empty());
DCHECK(surfaces_at_display_.empty());
DCHECK(decoder_display_queue_.empty());
}
bool V4L2SliceVideoDecodeAccelerator::SetupFormats() {
DCHECK_EQ(state_, kUninitialized);
size_t input_size;
gfx::Size max_resolution, min_resolution;
device_->GetSupportedResolution(input_format_fourcc_, &min_resolution,
&max_resolution);
if (max_resolution.width() > 1920 && max_resolution.height() > 1088)
input_size = kInputBufferMaxSizeFor4k;
else
input_size = kInputBufferMaxSizeFor1080p;
struct v4l2_fmtdesc fmtdesc;
memset(&fmtdesc, 0, sizeof(fmtdesc));
fmtdesc.type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE;
bool is_format_supported = false;
while (device_->Ioctl(VIDIOC_ENUM_FMT, &fmtdesc) == 0) {
if (fmtdesc.pixelformat == input_format_fourcc_) {
is_format_supported = true;
break;
}
++fmtdesc.index;
}
if (!is_format_supported) {
DVLOGF(1) << "Input fourcc " << input_format_fourcc_
<< " not supported by device.";
return false;
}
struct v4l2_format format;
memset(&format, 0, sizeof(format));
format.type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE;
format.fmt.pix_mp.pixelformat = input_format_fourcc_;
format.fmt.pix_mp.plane_fmt[0].sizeimage = input_size;
format.fmt.pix_mp.num_planes = input_planes_count_;
IOCTL_OR_ERROR_RETURN_FALSE(VIDIOC_S_FMT, &format);
DCHECK_EQ(format.fmt.pix_mp.pixelformat, input_format_fourcc_);
// We have to set up the format for output, because the driver may not allow
// changing it once we start streaming; whether it can support our chosen
// output format or not may depend on the input format.
memset(&fmtdesc, 0, sizeof(fmtdesc));
fmtdesc.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
output_format_fourcc_ = 0;
while (device_->Ioctl(VIDIOC_ENUM_FMT, &fmtdesc) == 0) {
if (device_->CanCreateEGLImageFrom(fmtdesc.pixelformat)) {
output_format_fourcc_ = fmtdesc.pixelformat;
break;
}
++fmtdesc.index;
}
DCHECK(!image_processor_device_);
if (output_format_fourcc_ == 0) {
VLOGF(2) << "Could not find a usable output format. Trying image processor";
if (!V4L2ImageProcessor::IsSupported()) {
VLOGF(1) << "Image processor not available";
return false;
}
image_processor_device_ = V4L2Device::Create();
if (!image_processor_device_) {
VLOGF(1) << "Could not create a V4L2Device for image processor";
return false;
}
output_format_fourcc_ =
v4l2_vda_helpers::FindImageProcessorInputFormat(device_.get());
if (output_format_fourcc_ == 0) {
VLOGF(1) << "Can't find a usable input format from image processor";
return false;
}
gl_image_format_fourcc_ = v4l2_vda_helpers::FindImageProcessorOutputFormat(
image_processor_device_.get());
if (gl_image_format_fourcc_ == 0) {
VLOGF(1) << "Can't find a usable output format from image processor";
return false;
}
gl_image_planes_count_ =
V4L2Device::GetNumPlanesOfV4L2PixFmt(gl_image_format_fourcc_);
output_planes_count_ =
V4L2Device::GetNumPlanesOfV4L2PixFmt(output_format_fourcc_);
gl_image_device_ = image_processor_device_;
} else {
gl_image_format_fourcc_ = output_format_fourcc_;
output_planes_count_ = gl_image_planes_count_ =
V4L2Device::GetNumPlanesOfV4L2PixFmt(output_format_fourcc_);
gl_image_device_ = device_;
}
// Only set fourcc for output; resolution, etc., will come from the
// driver once it extracts it from the stream.
memset(&format, 0, sizeof(format));
format.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
format.fmt.pix_mp.pixelformat = output_format_fourcc_;
format.fmt.pix_mp.num_planes =
V4L2Device::GetNumPlanesOfV4L2PixFmt(output_format_fourcc_);
IOCTL_OR_ERROR_RETURN_FALSE(VIDIOC_S_FMT, &format);
DCHECK_EQ(format.fmt.pix_mp.pixelformat, output_format_fourcc_);
DCHECK_EQ(static_cast<size_t>(format.fmt.pix_mp.num_planes),
output_planes_count_);
return true;
}
bool V4L2SliceVideoDecodeAccelerator::ResetImageProcessor() {
VLOGF(2);
DCHECK(decoder_thread_.task_runner()->BelongsToCurrentThread());
DCHECK(image_processor_);
if (!image_processor_->Reset())
return false;
surfaces_at_ip_ = {};
return true;
}
bool V4L2SliceVideoDecodeAccelerator::CreateImageProcessor() {
VLOGF(2);
DCHECK(decoder_thread_.task_runner()->BelongsToCurrentThread());
DCHECK(!image_processor_);
const ImageProcessor::OutputMode image_processor_output_mode =
(output_mode_ == Config::OutputMode::ALLOCATE
? ImageProcessor::OutputMode::ALLOCATE
: ImageProcessor::OutputMode::IMPORT);
image_processor_ = v4l2_vda_helpers::CreateImageProcessor(
output_format_fourcc_, gl_image_format_fourcc_, coded_size_,
gl_image_size_, decoder_->GetVisibleRect().size(),
output_buffer_map_.size(), image_processor_device_,
image_processor_output_mode,
// Unretained(this) is safe for ErrorCB because |decoder_thread_| is owned
// by this V4L2VideoDecodeAccelerator and |this| must be valid when
// ErrorCB is executed.
decoder_thread_.task_runner(),
base::BindRepeating(&V4L2SliceVideoDecodeAccelerator::ImageProcessorError,
base::Unretained(this)));
if (!image_processor_) {
VLOGF(1) << "Error creating image processor";
NOTIFY_ERROR(PLATFORM_FAILURE);
return false;
}
DCHECK_EQ(gl_image_size_, image_processor_->output_config().size);
return true;
}
bool V4L2SliceVideoDecodeAccelerator::CreateInputBuffers() {
VLOGF(2);
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
DCHECK(!input_queue_->IsStreaming());
if (input_queue_->AllocateBuffers(kNumInputBuffers, V4L2_MEMORY_MMAP) <
kNumInputBuffers) {
NOTIFY_ERROR(PLATFORM_FAILURE);
return false;
}
// The remainder of this method only applies if requests are used.
if (!supports_requests_)
return true;
DCHECK(requests_.empty());
DCHECK(media_fd_.is_valid());
for (size_t i = 0; i < input_queue_->AllocatedBuffersCount(); i++) {
int request_fd;
int ret = HANDLE_EINTR(
ioctl(media_fd_.get(), MEDIA_IOC_REQUEST_ALLOC, &request_fd));
if (ret < 0) {
VPLOGF(1) << "Failed to create request: ";
return false;
}
requests_.push(base::ScopedFD(request_fd));
}
DCHECK_EQ(requests_.size(), input_queue_->AllocatedBuffersCount());
return true;
}
bool V4L2SliceVideoDecodeAccelerator::CreateOutputBuffers() {
VLOGF(2);
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
DCHECK(!output_queue_->IsStreaming());
DCHECK(output_buffer_map_.empty());
DCHECK(surfaces_at_display_.empty());
DCHECK(surfaces_at_ip_.empty());
DCHECK(surfaces_at_device_.empty());
gfx::Size pic_size = decoder_->GetPicSize();
size_t num_pictures = decoder_->GetRequiredNumOfPictures();
DCHECK_GT(num_pictures, 0u);
DCHECK(!pic_size.IsEmpty());
// Since VdaVideoDecoder doesn't allocate PictureBuffer with size adjusted by
// itself, we have to adjust here.
struct v4l2_format format;
memset(&format, 0, sizeof(format));
format.type = V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE;
if (device_->Ioctl(VIDIOC_G_FMT, &format) != 0) {
VPLOGF(1) << "Failed getting OUTPUT format";
NOTIFY_ERROR(PLATFORM_FAILURE);
return false;
}
format.fmt.pix_mp.width = pic_size.width();
format.fmt.pix_mp.height = pic_size.height();
if (device_->Ioctl(VIDIOC_S_FMT, &format) != 0) {
VPLOGF(1) << "Failed setting OUTPUT format to: " << input_format_fourcc_;
NOTIFY_ERROR(PLATFORM_FAILURE);
return false;
}
// Get the coded size from the CAPTURE queue
memset(&format, 0, sizeof(format));
format.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
if (device_->Ioctl(VIDIOC_G_FMT, &format) != 0) {
VPLOGF(1) << "Failed getting CAPTURE format";
NOTIFY_ERROR(PLATFORM_FAILURE);
return false;
}
coded_size_.SetSize(base::checked_cast<int>(format.fmt.pix_mp.width),
base::checked_cast<int>(format.fmt.pix_mp.height));
DCHECK_EQ(coded_size_.width() % 16, 0);
DCHECK_EQ(coded_size_.height() % 16, 0);
// Now that we know the desired buffers resolution, ask the image processor
// what it supports so we can request the correct picture buffers.
if (image_processor_device_) {
// Try to get an image size as close as possible to the final one (i.e.
// coded_size_ may include padding required by the decoder).
gl_image_size_ = pic_size;
size_t planes_count;
if (!V4L2ImageProcessor::TryOutputFormat(
output_format_fourcc_, gl_image_format_fourcc_, coded_size_,
&gl_image_size_, &planes_count)) {
VLOGF(1) << "Failed to get output size and plane count of IP";
return false;
}
if (gl_image_planes_count_ != planes_count) {
VLOGF(1) << "IP buffers planes count returned by V4L2 (" << planes_count
<< ") doesn't match the computed number ("
<< gl_image_planes_count_ << ")";
return false;
}
} else {
gl_image_size_ = coded_size_;
}
if (!gfx::Rect(coded_size_).Contains(gfx::Rect(pic_size))) {
VLOGF(1) << "Got invalid adjusted coded size: " << coded_size_.ToString();
return false;
}
DVLOGF(3) << "buffer_count=" << num_pictures
<< ", pic size=" << pic_size.ToString()
<< ", coded size=" << coded_size_.ToString();
VideoPixelFormat pixel_format =
Fourcc::FromV4L2PixFmt(gl_image_format_fourcc_).ToVideoPixelFormat();
child_task_runner_->PostTask(
FROM_HERE,
base::BindOnce(
&VideoDecodeAccelerator::Client::ProvidePictureBuffersWithVisibleRect,
client_, num_pictures, pixel_format, 1, gl_image_size_,
decoder_->GetVisibleRect(), device_->GetTextureTarget()));
// Go into kAwaitingPictureBuffers to prevent us from doing any more decoding
// or event handling while we are waiting for AssignPictureBuffers(). Not
// having Pictures available would not have prevented us from making decoding
// progress entirely e.g. in the case of H.264 where we could further decode
// non-slice NALUs and could even get another resolution change before we were
// done with this one. After we get the buffers, we'll go back into kIdle and
// kick off further event processing, and eventually go back into kDecoding
// once no more events are pending (if any).
state_ = kAwaitingPictureBuffers;
return true;
}
void V4L2SliceVideoDecodeAccelerator::DestroyInputBuffers() {
VLOGF(2);
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread() ||
!decoder_thread_.IsRunning());
if (!input_queue_)
return;
DCHECK(!input_queue_->IsStreaming());
input_queue_->DeallocateBuffers();
if (supports_requests_)
requests_ = {};
}
void V4L2SliceVideoDecodeAccelerator::DismissPictures(
const std::vector<int32_t>& picture_buffer_ids,
base::WaitableEvent* done) {
DVLOGF(3);
DCHECK(child_task_runner_->BelongsToCurrentThread());
for (auto picture_buffer_id : picture_buffer_ids) {
DVLOGF(4) << "dismissing PictureBuffer id=" << picture_buffer_id;
client_->DismissPictureBuffer(picture_buffer_id);
}
done->Signal();
}
void V4L2SliceVideoDecodeAccelerator::ServiceDeviceTask(bool event) {
DVLOGF(4);
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
DVLOGF(3) << "buffer counts: "
<< "INPUT[" << decoder_input_queue_.size() << "]"
<< " => DEVICE[" << input_queue_->FreeBuffersCount() << "+"
<< input_queue_->QueuedBuffersCount() << "/"
<< input_queue_->AllocatedBuffersCount() << "]->["
<< output_queue_->FreeBuffersCount() << "+"
<< output_queue_->QueuedBuffersCount() << "/"
<< output_buffer_map_.size() << "]"
<< " => DISPLAYQ[" << decoder_display_queue_.size() << "]"
<< " => CLIENT[" << surfaces_at_display_.size() << "]";
if (IsDestroyPending())
return;
Dequeue();
}
void V4L2SliceVideoDecodeAccelerator::Enqueue(
const scoped_refptr<V4L2DecodeSurface>& dec_surface) {
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
if (!EnqueueInputRecord(dec_surface.get())) {
VLOGF(1) << "Failed queueing an input buffer";
NOTIFY_ERROR(PLATFORM_FAILURE);
return;
}
if (!EnqueueOutputRecord(dec_surface.get())) {
VLOGF(1) << "Failed queueing an output buffer";
NOTIFY_ERROR(PLATFORM_FAILURE);
return;
}
surfaces_at_device_.push(dec_surface);
}
void V4L2SliceVideoDecodeAccelerator::Dequeue() {
DVLOGF(4);
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
while (input_queue_->QueuedBuffersCount() > 0) {
DCHECK(input_queue_->IsStreaming());
auto ret = input_queue_->DequeueBuffer();
if (ret.first == false) {
NOTIFY_ERROR(PLATFORM_FAILURE);
return;
} else if (!ret.second) {
// we're just out of buffers to dequeue.
break;
}
DVLOGF(4) << "Dequeued input=" << ret.second->BufferId()
<< " count: " << input_queue_->QueuedBuffersCount();
}
while (output_queue_->QueuedBuffersCount() > 0) {
DCHECK(output_queue_->IsStreaming());
auto ret = output_queue_->DequeueBuffer();
if (ret.first == false) {
NOTIFY_ERROR(PLATFORM_FAILURE);
return;
} else if (!ret.second) {
// we're just out of buffers to dequeue.
break;
}
const size_t buffer_id = ret.second->BufferId();
DVLOGF(4) << "Dequeued output=" << buffer_id << " count "
<< output_queue_->QueuedBuffersCount();
DCHECK(!surfaces_at_device_.empty());
auto surface = std::move(surfaces_at_device_.front());
surfaces_at_device_.pop();
DCHECK_EQ(static_cast<size_t>(surface->output_record()), buffer_id);
// If using an image processor, process the image before considering it
// decoded.
if (image_processor_) {
if (!ProcessFrame(std::move(ret.second), std::move(surface))) {
VLOGF(1) << "Processing frame failed";
NOTIFY_ERROR(PLATFORM_FAILURE);
}
} else {
DCHECK_EQ(decoded_buffer_map_.count(buffer_id), 0u);
decoded_buffer_map_.emplace(buffer_id, buffer_id);
surface->SetDecoded();
surface->SetReleaseCallback(
base::BindOnce(&V4L2SliceVideoDecodeAccelerator::ReuseOutputBuffer,
base::Unretained(this), std::move(ret.second)));
}
}
// A frame was decoded, see if we can output it.
TryOutputSurfaces();
ProcessPendingEventsIfNeeded();
ScheduleDecodeBufferTaskIfNeeded();
}
void V4L2SliceVideoDecodeAccelerator::NewEventPending() {
// Switch to event processing mode if we are decoding. Otherwise we are either
// already in it, or we will potentially switch to it later, after finishing
// other tasks.
if (state_ == kDecoding)
state_ = kIdle;
ProcessPendingEventsIfNeeded();
}
bool V4L2SliceVideoDecodeAccelerator::FinishEventProcessing() {
DCHECK_EQ(state_, kIdle);
state_ = kDecoding;
ScheduleDecodeBufferTaskIfNeeded();
return true;
}
void V4L2SliceVideoDecodeAccelerator::ProcessPendingEventsIfNeeded() {
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
// Process pending events, if any, in the correct order.
// We always first process the surface set change, as it is an internal
// event from the decoder and interleaving it with external requests would
// put the decoder in an undefined state.
using ProcessFunc = bool (V4L2SliceVideoDecodeAccelerator::*)();
const ProcessFunc process_functions[] = {
&V4L2SliceVideoDecodeAccelerator::FinishSurfaceSetChange,
&V4L2SliceVideoDecodeAccelerator::FinishFlush,
&V4L2SliceVideoDecodeAccelerator::FinishReset,
&V4L2SliceVideoDecodeAccelerator::FinishEventProcessing,
};
for (const auto& fn : process_functions) {
if (state_ != kIdle)
return;
if (!(this->*fn)())
return;
}
}
void V4L2SliceVideoDecodeAccelerator::ReuseOutputBuffer(
V4L2ReadableBufferRef buffer) {
DVLOGF(4) << "Reusing output buffer, index=" << buffer->BufferId();
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
DCHECK_EQ(decoded_buffer_map_.count(buffer->BufferId()), 1u);
decoded_buffer_map_.erase(buffer->BufferId());
ScheduleDecodeBufferTaskIfNeeded();
}
bool V4L2SliceVideoDecodeAccelerator::EnqueueInputRecord(
V4L2DecodeSurface* dec_surface) {
DVLOGF(4);
DCHECK_NE(dec_surface, nullptr);
// Enqueue an input (VIDEO_OUTPUT) buffer for an input video frame.
V4L2WritableBufferRef input_buffer = std::move(dec_surface->input_buffer());
DCHECK(input_buffer.IsValid());
const int index = input_buffer.BufferId();
input_buffer.PrepareQueueBuffer(*dec_surface);
if (!std::move(input_buffer).QueueMMap()) {
NOTIFY_ERROR(PLATFORM_FAILURE);
return false;
}
DVLOGF(4) << "Enqueued input=" << index
<< " count: " << input_queue_->QueuedBuffersCount();
return true;
}
bool V4L2SliceVideoDecodeAccelerator::EnqueueOutputRecord(
V4L2DecodeSurface* dec_surface) {
DVLOGF(4);
// Enqueue an output (VIDEO_CAPTURE) buffer.
V4L2WritableBufferRef output_buffer = std::move(dec_surface->output_buffer());
DCHECK(output_buffer.IsValid());
size_t index = output_buffer.BufferId();
OutputRecord& output_record = output_buffer_map_[index];
DCHECK_NE(output_record.picture_id, -1);
bool ret = false;
switch (output_buffer.Memory()) {
case V4L2_MEMORY_MMAP:
ret = std::move(output_buffer).QueueMMap();
break;
case V4L2_MEMORY_DMABUF: {
const auto& fds = output_record.output_frame->DmabufFds();
DCHECK_EQ(output_planes_count_, fds.size());
ret = std::move(output_buffer).QueueDMABuf(fds);
break;
}
default:
NOTREACHED();
}
if (!ret) {
NOTIFY_ERROR(PLATFORM_FAILURE);
return false;
}
DVLOGF(4) << "Enqueued output=" << index
<< " count: " << output_queue_->QueuedBuffersCount();
return true;
}
bool V4L2SliceVideoDecodeAccelerator::StartDevicePoll() {
DVLOGF(3) << "Starting device poll";
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
if (!input_queue_->Streamon())
return false;
if (!output_queue_->Streamon())
return false;
// We can use base::Unretained here because the client thread will flush
// all tasks posted to the decoder thread before deleting the SVDA.
return device_->StartPolling(
base::BindRepeating(&V4L2SliceVideoDecodeAccelerator::ServiceDeviceTask,
base::Unretained(this)),
base::BindRepeating(&V4L2SliceVideoDecodeAccelerator::OnPollError,
base::Unretained(this)));
}
void V4L2SliceVideoDecodeAccelerator::OnPollError() {
NOTIFY_ERROR(PLATFORM_FAILURE);
}
bool V4L2SliceVideoDecodeAccelerator::StopDevicePoll() {
DVLOGF(3) << "Stopping device poll";
if (decoder_thread_.IsRunning())
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
if (!device_->StopPolling())
return false;
// We may be called before the queue is acquired.
if (input_queue_) {
if (!input_queue_->Streamoff())
return false;
DCHECK_EQ(input_queue_->QueuedBuffersCount(), 0u);
}
// We may be called before the queue is acquired.
if (output_queue_) {
if (!output_queue_->Streamoff())
return false;
DCHECK_EQ(output_queue_->QueuedBuffersCount(), 0u);
}
// Mark as decoded to allow reuse.
while (!surfaces_at_device_.empty())
surfaces_at_device_.pop();
// Drop all surfaces that were awaiting decode before being displayed,
// since we've just cancelled all outstanding decodes.
while (!decoder_display_queue_.empty())
decoder_display_queue_.pop();
DVLOGF(3) << "Device poll stopped";
return true;
}
void V4L2SliceVideoDecodeAccelerator::Decode(BitstreamBuffer bitstream_buffer) {
Decode(bitstream_buffer.ToDecoderBuffer(), bitstream_buffer.id());
}
void V4L2SliceVideoDecodeAccelerator::Decode(
scoped_refptr<DecoderBuffer> buffer,
int32_t bitstream_id) {
DVLOGF(4) << "input_id=" << bitstream_id
<< ", size=" << (buffer ? buffer->data_size() : 0);
DCHECK(decode_task_runner_->BelongsToCurrentThread());
if (bitstream_id < 0) {
VLOGF(1) << "Invalid bitstream buffer, id: " << bitstream_id;
NOTIFY_ERROR(INVALID_ARGUMENT);
return;
}
decoder_thread_task_runner_->PostTask(
FROM_HERE,
base::BindOnce(&V4L2SliceVideoDecodeAccelerator::DecodeTask,
base::Unretained(this), std::move(buffer), bitstream_id));
}
void V4L2SliceVideoDecodeAccelerator::DecodeTask(
scoped_refptr<DecoderBuffer> buffer,
int32_t bitstream_id) {
DVLOGF(4) << "input_id=" << bitstream_id
<< " size=" << (buffer ? buffer->data_size() : 0);
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
if (IsDestroyPending())
return;
std::unique_ptr<BitstreamBufferRef> bitstream_record(new BitstreamBufferRef(
decode_client_, decode_task_runner_, std::move(buffer), bitstream_id));
// Skip empty buffer.
if (!bitstream_record->buffer)
return;
decoder_input_queue_.push_back(std::move(bitstream_record));
TRACE_COUNTER_ID1("media,gpu", "V4L2SVDA decoder input BitstreamBuffers",
this, decoder_input_queue_.size());
ScheduleDecodeBufferTaskIfNeeded();
}
bool V4L2SliceVideoDecodeAccelerator::TrySetNewBistreamBuffer() {
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
DCHECK(!decoder_current_bitstream_buffer_);
if (decoder_input_queue_.empty())
return false;
decoder_current_bitstream_buffer_ = std::move(decoder_input_queue_.front());
decoder_input_queue_.pop_front();
if (decoder_current_bitstream_buffer_->input_id == kFlushBufferId) {
// This is a buffer we queued for ourselves to trigger flush at this time.
InitiateFlush();
return false;
}
decoder_->SetStream(decoder_current_bitstream_buffer_->input_id,
*decoder_current_bitstream_buffer_->buffer);
return true;
}
void V4L2SliceVideoDecodeAccelerator::ScheduleDecodeBufferTaskIfNeeded() {
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
if (state_ == kDecoding) {
decoder_thread_task_runner_->PostTask(
FROM_HERE,
base::BindOnce(&V4L2SliceVideoDecodeAccelerator::DecodeBufferTask,
base::Unretained(this)));
}
}
void V4L2SliceVideoDecodeAccelerator::DecodeBufferTask() {
DVLOGF(4);
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
TRACE_EVENT0("media,gpu", "V4L2SVDA::DecodeBufferTask");
if (IsDestroyPending())
return;
if (state_ != kDecoding) {
DVLOGF(3) << "Early exit, not in kDecoding";
return;
}
while (true) {
TRACE_EVENT_BEGIN0("media,gpu", "V4L2SVDA::DecodeBufferTask AVD::Decode");
const AcceleratedVideoDecoder::DecodeResult res = decoder_->Decode();
TRACE_EVENT_END0("media,gpu", "V4L2SVDA::DecodeBufferTask AVD::Decode");
switch (res) {
case AcceleratedVideoDecoder::kConfigChange:
if (!IsSupportedProfile(decoder_->GetProfile())) {
VLOGF(2) << "Unsupported profile: " << decoder_->GetProfile();
NOTIFY_ERROR(PLATFORM_FAILURE);
return;
}
VLOGF(2) << "Decoder requesting a new set of surfaces";
InitiateSurfaceSetChange();
return;
case AcceleratedVideoDecoder::kRanOutOfStreamData:
decoder_current_bitstream_buffer_.reset();
if (!TrySetNewBistreamBuffer())
return;
break;
case AcceleratedVideoDecoder::kRanOutOfSurfaces:
// No more surfaces for the decoder, we'll come back once we have more.
DVLOGF(4) << "Ran out of surfaces";
return;
case AcceleratedVideoDecoder::kNeedContextUpdate:
DVLOGF(4) << "Awaiting context update";
return;
case AcceleratedVideoDecoder::kDecodeError:
VLOGF(1) << "Error decoding stream";
NOTIFY_ERROR(PLATFORM_FAILURE);
return;
case AcceleratedVideoDecoder::kTryAgain:
NOTREACHED() << "Should not reach here unless this class accepts "
"encrypted streams.";
DVLOGF(4) << "No key for decoding stream.";
NOTIFY_ERROR(PLATFORM_FAILURE);
return;
}
}
}
void V4L2SliceVideoDecodeAccelerator::InitiateSurfaceSetChange() {
VLOGF(2);
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
DCHECK_EQ(state_, kDecoding);
TRACE_EVENT_ASYNC_BEGIN0("media,gpu", "V4L2SVDA Resolution Change", this);
DCHECK(!surface_set_change_pending_);
surface_set_change_pending_ = true;
NewEventPending();
}
bool V4L2SliceVideoDecodeAccelerator::FinishSurfaceSetChange() {
VLOGF(2);
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
if (!surface_set_change_pending_)
return true;
if (!surfaces_at_device_.empty())
return false;
// Wait until all pending frames in image processor are processed.
if (image_processor_ && !surfaces_at_ip_.empty())
return false;
DCHECK_EQ(state_, kIdle);
DCHECK(decoder_display_queue_.empty());
// All output buffers should've been returned from decoder and device by now.
// The only remaining owner of surfaces may be display (client), and we will
// dismiss them when destroying output buffers below.
DCHECK_EQ(output_queue_->FreeBuffersCount() + surfaces_at_display_.size(),
output_buffer_map_.size());
if (!StopDevicePoll()) {
NOTIFY_ERROR(PLATFORM_FAILURE);
return false;
}
image_processor_ = nullptr;
// Dequeued decoded surfaces may be pended in pending_picture_ready_ if they
// are waiting for some pictures to be cleared. We should post them right away
// because they are about to be dismissed and destroyed for surface set
// change.
SendPictureReady();
// This will return only once all buffers are dismissed and destroyed.
// This does not wait until they are displayed however, as display retains
// references to the buffers bound to textures and will release them
// after displaying.
if (!DestroyOutputs(true)) {
NOTIFY_ERROR(PLATFORM_FAILURE);
return false;
}
if (!CreateOutputBuffers()) {
NOTIFY_ERROR(PLATFORM_FAILURE);
return false;
}
surface_set_change_pending_ = false;
VLOGF(2) << "Surface set change finished";
TRACE_EVENT_ASYNC_END0("media,gpu", "V4L2SVDA Resolution Change", this);
return true;
}
bool V4L2SliceVideoDecodeAccelerator::DestroyOutputs(bool dismiss) {
VLOGF(2);
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
std::vector<int32_t> picture_buffers_to_dismiss;
if (output_buffer_map_.empty())
return true;
for (auto& output_record : output_buffer_map_) {
picture_buffers_to_dismiss.push_back(output_record.picture_id);
}
if (dismiss) {
VLOGF(2) << "Scheduling picture dismissal";
base::WaitableEvent done(base::WaitableEvent::ResetPolicy::AUTOMATIC,
base::WaitableEvent::InitialState::NOT_SIGNALED);
child_task_runner_->PostTask(
FROM_HERE,
base::BindOnce(&V4L2SliceVideoDecodeAccelerator::DismissPictures,
weak_this_, picture_buffers_to_dismiss, &done));
done.Wait();
}
// At this point client can't call ReusePictureBuffer on any of the pictures
// anymore, so it's safe to destroy.
return DestroyOutputBuffers();
}
bool V4L2SliceVideoDecodeAccelerator::DestroyOutputBuffers() {
VLOGF(2);
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread() ||
!decoder_thread_.IsRunning());
DCHECK(surfaces_at_device_.empty());
DCHECK(decoder_display_queue_.empty());
if (!output_queue_ || output_buffer_map_.empty())
return true;
DCHECK(!output_queue_->IsStreaming());
DCHECK_EQ(output_queue_->QueuedBuffersCount(), 0u);
// Release all buffers waiting for an import buffer event.
output_wait_map_.clear();
// Release all buffers awaiting a fence since we are about to destroy them.
surfaces_awaiting_fence_ = {};
// It's ok to do this, client will retain references to textures, but we are
// not interested in reusing the surfaces anymore.
// This will prevent us from reusing old surfaces in case we have some
// ReusePictureBuffer() pending on ChildThread already. It's ok to ignore
// them, because we have already dismissed them (in DestroyOutputs()).
surfaces_at_display_.clear();
DCHECK_EQ(output_queue_->FreeBuffersCount(), output_buffer_map_.size());
output_buffer_map_.clear();
output_queue_->DeallocateBuffers();
return true;
}
void V4L2SliceVideoDecodeAccelerator::AssignPictureBuffers(
const std::vector<PictureBuffer>& buffers) {
VLOGF(2);
DCHECK(child_task_runner_->BelongsToCurrentThread());
decoder_thread_task_runner_->PostTask(
FROM_HERE,
base::BindOnce(&V4L2SliceVideoDecodeAccelerator::AssignPictureBuffersTask,
base::Unretained(this), buffers));
}
void V4L2SliceVideoDecodeAccelerator::AssignPictureBuffersTask(
const std::vector<PictureBuffer>& buffers) {
VLOGF(2);
DCHECK(!output_queue_->IsStreaming());
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
DCHECK_EQ(state_, kAwaitingPictureBuffers);
TRACE_EVENT1("media,gpu", "V4L2SVDA::AssignPictureBuffersTask",
"buffers_size", buffers.size());
if (IsDestroyPending())
return;
const uint32_t req_buffer_count = decoder_->GetRequiredNumOfPictures();
if (buffers.size() < req_buffer_count) {
VLOGF(1) << "Failed to provide requested picture buffers. "
<< "(Got " << buffers.size() << ", requested " << req_buffer_count
<< ")";
NOTIFY_ERROR(INVALID_ARGUMENT);
return;
}
// If a client allocate a different frame size, S_FMT should be called with
// the size.
if (!image_processor_device_ && coded_size_ != buffers[0].size()) {
const auto& new_frame_size = buffers[0].size();
v4l2_format format = {};
format.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
format.fmt.pix_mp.width = new_frame_size.width();
format.fmt.pix_mp.height = new_frame_size.height();
format.fmt.pix_mp.pixelformat = output_format_fourcc_;
format.fmt.pix_mp.num_planes = output_planes_count_;
if (device_->Ioctl(VIDIOC_S_FMT, &format) != 0) {
VPLOGF(1) << "Failed with frame size adjusted by client: "
<< new_frame_size.ToString();
NOTIFY_ERROR(PLATFORM_FAILURE);
return;
}
coded_size_.SetSize(format.fmt.pix_mp.width, format.fmt.pix_mp.height);
// If size specified by ProvidePictureBuffers() is adjusted by the client,
// the size must not be adjusted by a v4l2 driver again.
if (coded_size_ != new_frame_size) {
VLOGF(1) << "The size of PictureBuffer is invalid."
<< " size adjusted by the client = " << new_frame_size.ToString()
<< " size adjusted by a driver = " << coded_size_.ToString();
NOTIFY_ERROR(INVALID_ARGUMENT);
return;
}
if (!gfx::Rect(coded_size_).Contains(gfx::Rect(decoder_->GetPicSize()))) {
VLOGF(1) << "Got invalid adjusted coded size: " << coded_size_.ToString();
NOTIFY_ERROR(INVALID_ARGUMENT);
return;
}
gl_image_size_ = coded_size_;
}
const v4l2_memory memory =
(image_processor_device_ || output_mode_ == Config::OutputMode::ALLOCATE
? V4L2_MEMORY_MMAP
: V4L2_MEMORY_DMABUF);
if (output_queue_->AllocateBuffers(buffers.size(), memory) !=
buffers.size()) {
VLOGF(1) << "Could not allocate enough output buffers";
NOTIFY_ERROR(PLATFORM_FAILURE);
return;
}
DCHECK(output_buffer_map_.empty());
DCHECK(output_wait_map_.empty());
output_buffer_map_.resize(buffers.size());
// In import mode we will create the IP when importing the first buffer.
if (image_processor_device_ && output_mode_ == Config::OutputMode::ALLOCATE) {
if (!CreateImageProcessor()) {
NOTIFY_ERROR(PLATFORM_FAILURE);
return;
}
}
// Reserve all buffers until ImportBufferForPictureTask() is called
while (output_queue_->FreeBuffersCount() > 0) {
V4L2WritableBufferRef buffer = output_queue_->GetFreeBuffer();
DCHECK(buffer.IsValid());
int i = buffer.BufferId();
DCHECK_EQ(output_wait_map_.count(buffers[i].id()), 0u);
// The buffer will remain here until ImportBufferForPicture is called,
// either by the client, or by ourselves, if we are allocating.
output_wait_map_.emplace(buffers[i].id(), std::move(buffer));
}
// All available buffers should be in the wait map now.
DCHECK_EQ(output_buffer_map_.size(), output_wait_map_.size());
for (size_t i = 0; i < buffers.size(); i++) {
OutputRecord& output_record = output_buffer_map_[i];
DCHECK_EQ(output_record.picture_id, -1);
DCHECK_EQ(output_record.cleared, false);
output_record.picture_id = buffers[i].id();
output_record.texture_id = buffers[i].service_texture_ids().empty()
? 0
: buffers[i].service_texture_ids()[0];
output_record.client_texture_id = buffers[i].client_texture_ids().empty()
? 0
: buffers[i].client_texture_ids()[0];
// If we are in allocate mode, then we can already call
// ImportBufferForPictureTask().
if (output_mode_ == Config::OutputMode::ALLOCATE) {
std::vector<base::ScopedFD> passed_dmabuf_fds;
// If we are using an image processor, the DMABufs that we need to import
// are those of the image processor's buffers, not the decoders. So
// pass an empty FDs array in that case.
if (!image_processor_) {
passed_dmabuf_fds = gl_image_device_->GetDmabufsForV4L2Buffer(
i, gl_image_planes_count_, V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE);
if (passed_dmabuf_fds.empty()) {
NOTIFY_ERROR(PLATFORM_FAILURE);
return;
}
}
int plane_horiz_bits_per_pixel = VideoFrame::PlaneHorizontalBitsPerPixel(
Fourcc::FromV4L2PixFmt(gl_image_format_fourcc_).ToVideoPixelFormat(),
0);
ImportBufferForPictureTask(
output_record.picture_id, std::move(passed_dmabuf_fds),
gl_image_size_.width() * plane_horiz_bits_per_pixel / 8);
} // else we'll get triggered via ImportBufferForPicture() from client.
DVLOGF(3) << "buffer[" << i << "]: picture_id=" << output_record.picture_id;
}
if (!StartDevicePoll()) {
NOTIFY_ERROR(PLATFORM_FAILURE);
return;
}
}
void V4L2SliceVideoDecodeAccelerator::CreateGLImageFor(
size_t buffer_index,
int32_t picture_buffer_id,
std::vector<base::ScopedFD> passed_dmabuf_fds,
GLuint client_texture_id,
GLuint texture_id,
const gfx::Size& size,
uint32_t fourcc) {
DVLOGF(3) << "index=" << buffer_index;
DCHECK(child_task_runner_->BelongsToCurrentThread());
DCHECK_NE(texture_id, 0u);
TRACE_EVENT1("media,gpu", "V4L2SVDA::CreateGLImageFor", "picture_buffer_id",
picture_buffer_id);
if (!make_context_current_cb_) {
VLOGF(1) << "GL callbacks required for binding to GLImages";
NOTIFY_ERROR(INVALID_ARGUMENT);
return;
}
if (!make_context_current_cb_.Run()) {
VLOGF(1) << "No GL context";
NOTIFY_ERROR(INVALID_ARGUMENT);
return;
}
scoped_refptr<gl::GLImage> gl_image =
gl_image_device_->CreateGLImage(size, fourcc, passed_dmabuf_fds);
if (!gl_image) {
VLOGF(1) << "Could not create GLImage,"
<< " index=" << buffer_index << " texture_id=" << texture_id;
NOTIFY_ERROR(PLATFORM_FAILURE);
return;
}
gl::ScopedTextureBinder bind_restore(gl_image_device_->GetTextureTarget(),
texture_id);
bool ret = gl_image->BindTexImage(gl_image_device_->GetTextureTarget());
DCHECK(ret);
bind_image_cb_.Run(client_texture_id, gl_image_device_->GetTextureTarget(),
gl_image, true);
}
void V4L2SliceVideoDecodeAccelerator::ImportBufferForPicture(
int32_t picture_buffer_id,
VideoPixelFormat pixel_format,
gfx::GpuMemoryBufferHandle gpu_memory_buffer_handle) {
DVLOGF(3) << "picture_buffer_id=" << picture_buffer_id;
DCHECK(child_task_runner_->BelongsToCurrentThread());
if (output_mode_ != Config::OutputMode::IMPORT) {
VLOGF(1) << "Cannot import in non-import mode";
NOTIFY_ERROR(INVALID_ARGUMENT);
return;
}
decoder_thread_.task_runner()->PostTask(
FROM_HERE,
base::BindOnce(
&V4L2SliceVideoDecodeAccelerator::ImportBufferForPictureForImportTask,
base::Unretained(this), picture_buffer_id, pixel_format,
std::move(gpu_memory_buffer_handle.native_pixmap_handle)));
}
void V4L2SliceVideoDecodeAccelerator::ImportBufferForPictureForImportTask(
int32_t picture_buffer_id,
VideoPixelFormat pixel_format,
gfx::NativePixmapHandle handle) {
DCHECK(decoder_thread_.task_runner()->BelongsToCurrentThread());
if (pixel_format !=
Fourcc::FromV4L2PixFmt(gl_image_format_fourcc_).ToVideoPixelFormat()) {
VLOGF(1) << "Unsupported import format: "
<< VideoPixelFormatToString(pixel_format);
NOTIFY_ERROR(INVALID_ARGUMENT);
return;
}
std::vector<base::ScopedFD> dmabuf_fds;
for (auto& plane : handle.planes) {
dmabuf_fds.push_back(std::move(plane.fd));
}
// If the driver does not accept as many fds as we received from the client,
// we have to check if the additional fds are actually duplicated fds pointing
// to previous planes; if so, we can close the duplicates and keep only the
// original fd(s).
// Assume that an fd is a duplicate of a previous plane's fd if offset != 0.
// Otherwise, if offset == 0, return error as it may be pointing to a new
// plane.
while (dmabuf_fds.size() > gl_image_planes_count_) {
const size_t idx = dmabuf_fds.size() - 1;
if (handle.planes[idx].offset == 0) {
VLOGF(1) << "The dmabuf fd points to a new buffer, ";
NOTIFY_ERROR(INVALID_ARGUMENT);
return;
}
// Drop safely, because this fd is duplicate dmabuf fd pointing to previous
// buffer and the appropriate address can be accessed by associated offset.
dmabuf_fds.pop_back();
}
ImportBufferForPictureTask(picture_buffer_id, std::move(dmabuf_fds),
handle.planes[0].stride);
}
void V4L2SliceVideoDecodeAccelerator::ImportBufferForPictureTask(
int32_t picture_buffer_id,
std::vector<base::ScopedFD> passed_dmabuf_fds,
int32_t stride) {
DVLOGF(3) << "picture_buffer_id=" << picture_buffer_id;
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
if (IsDestroyPending())
return;
const auto iter =
std::find_if(output_buffer_map_.begin(), output_buffer_map_.end(),
[picture_buffer_id](const OutputRecord& output_record) {
return output_record.picture_id == picture_buffer_id;
});
if (iter == output_buffer_map_.end()) {
// It's possible that we've already posted a DismissPictureBuffer for this
// picture, but it has not yet executed when this ImportBufferForPicture was
// posted to us by the client. In that case just ignore this (we've already
// dismissed it and accounted for that).
DVLOGF(3) << "got picture id=" << picture_buffer_id
<< " not in use (anymore?).";
return;
}
if (!output_wait_map_.count(iter->picture_id)) {
VLOGF(1) << "Passed buffer is not waiting to be imported";
NOTIFY_ERROR(INVALID_ARGUMENT);
return;
}
// TODO(crbug.com/982172): This must be done in AssignPictureBuffers().
// However the size of PictureBuffer might not be adjusted by ARC++. So we
// keep this until ARC++ side is fixed.
int plane_horiz_bits_per_pixel = VideoFrame::PlaneHorizontalBitsPerPixel(
Fourcc::FromV4L2PixFmt(gl_image_format_fourcc_).ToVideoPixelFormat(), 0);
if (plane_horiz_bits_per_pixel == 0 ||
(stride * 8) % plane_horiz_bits_per_pixel != 0) {
VLOGF(1) << "Invalid format " << gl_image_format_fourcc_ << " or stride "
<< stride;
NOTIFY_ERROR(INVALID_ARGUMENT);
return;
}
int adjusted_coded_width = stride * 8 / plane_horiz_bits_per_pixel;
if (image_processor_device_ && !image_processor_) {
DCHECK_EQ(kAwaitingPictureBuffers, state_);
// This is the first buffer import. Create the image processor and change
// the decoder state. The client may adjust the coded width. We don't have
// the final coded size in AssignPictureBuffers yet. Use the adjusted coded
// width to create the image processor.
DVLOGF(3) << "Original gl_image_size=" << gl_image_size_.ToString()
<< ", adjusted coded width=" << adjusted_coded_width;
DCHECK_GE(adjusted_coded_width, gl_image_size_.width());
gl_image_size_.set_width(adjusted_coded_width);
if (!CreateImageProcessor())
return;
}
DCHECK_EQ(gl_image_size_.width(), adjusted_coded_width);
// Put us in kIdle to allow further event processing.
// ProcessPendingEventsIfNeeded() will put us back into kDecoding after all
// other pending events are processed successfully.
if (state_ == kAwaitingPictureBuffers) {
state_ = kIdle;
decoder_thread_.task_runner()->PostTask(
FROM_HERE,
base::BindOnce(
&V4L2SliceVideoDecodeAccelerator::ProcessPendingEventsIfNeeded,
base::Unretained(this)));
}
// If in import mode, build output_frame from the passed DMABUF FDs.
if (output_mode_ == Config::OutputMode::IMPORT) {
DCHECK_EQ(gl_image_planes_count_, passed_dmabuf_fds.size());
DCHECK(!iter->output_frame);
// TODO(acourbot): Create a more accurate layout from the GMBhandle instead
// of assuming the image size will be enough (we may have extra information
// between planes).
auto layout = VideoFrameLayout::Create(
Fourcc::FromV4L2PixFmt(gl_image_format_fourcc_).ToVideoPixelFormat(),
gl_image_size_);
if (!layout) {
VLOGF(1) << "Cannot create layout!";
NOTIFY_ERROR(INVALID_ARGUMENT);
return;
}
const gfx::Rect visible_rect = decoder_->GetVisibleRect();
iter->output_frame = VideoFrame::WrapExternalDmabufs(
*layout, visible_rect, visible_rect.size(),
DuplicateFDs(passed_dmabuf_fds), base::TimeDelta());
}
// We should only create the GL image if rendering is enabled
// (texture_id !=0). Moreover, if an image processor is in use, we will
// create the GL image when its buffer becomes visible in FrameProcessed().
if (iter->texture_id != 0 && !image_processor_) {
DCHECK_EQ(gl_image_planes_count_, passed_dmabuf_fds.size());
size_t index = iter - output_buffer_map_.begin();
child_task_runner_->PostTask(
FROM_HERE,
base::BindOnce(&V4L2SliceVideoDecodeAccelerator::CreateGLImageFor,
weak_this_, index, picture_buffer_id,
std::move(passed_dmabuf_fds), iter->client_texture_id,
iter->texture_id, gl_image_size_,
gl_image_format_fourcc_));
}
// Buffer is now ready to be used.
DCHECK_EQ(output_wait_map_.count(picture_buffer_id), 1u);
output_wait_map_.erase(picture_buffer_id);
ScheduleDecodeBufferTaskIfNeeded();
}
void V4L2SliceVideoDecodeAccelerator::ReusePictureBuffer(
int32_t picture_buffer_id) {
DCHECK(child_task_runner_->BelongsToCurrentThread());
DVLOGF(4) << "picture_buffer_id=" << picture_buffer_id;
std::unique_ptr<gl::GLFenceEGL> egl_fence;
if (make_context_current_cb_) {
if (!make_context_current_cb_.Run()) {
VLOGF(1) << "could not make context current";
NOTIFY_ERROR(PLATFORM_FAILURE);
return;
}
egl_fence = gl::GLFenceEGL::Create();
if (!egl_fence) {
VLOGF(1) << "gl::GLFenceEGL::Create() failed";
NOTIFY_ERROR(PLATFORM_FAILURE);
return;
}
}
decoder_thread_task_runner_->PostTask(
FROM_HERE,
base::BindOnce(&V4L2SliceVideoDecodeAccelerator::ReusePictureBufferTask,
base::Unretained(this), picture_buffer_id,
std::move(egl_fence)));
}
void V4L2SliceVideoDecodeAccelerator::ReusePictureBufferTask(
int32_t picture_buffer_id,
std::unique_ptr<gl::GLFenceEGL> egl_fence) {
DVLOGF(4) << "picture_buffer_id=" << picture_buffer_id;
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
if (IsDestroyPending())
return;
V4L2DecodeSurfaceByPictureBufferId::iterator it =
surfaces_at_display_.find(picture_buffer_id);
if (it == surfaces_at_display_.end()) {
// It's possible that we've already posted a DismissPictureBuffer for this
// picture, but it has not yet executed when this ReusePictureBuffer was
// posted to us by the client. In that case just ignore this (we've already
// dismissed it and accounted for that) and let the fence object get
// destroyed.
DVLOGF(3) << "got picture id=" << picture_buffer_id
<< " not in use (anymore?).";
return;
}
DCHECK_EQ(decoded_buffer_map_.count(it->second->output_record()), 1u);
const size_t output_map_index =
decoded_buffer_map_[it->second->output_record()];
DCHECK_LT(output_map_index, output_buffer_map_.size());
OutputRecord& output_record = output_buffer_map_[output_map_index];
if (!output_record.at_client()) {
VLOGF(1) << "picture_buffer_id not reusable";
NOTIFY_ERROR(INVALID_ARGUMENT);
return;
}
--output_record.num_times_sent_to_client;
// A output buffer might be sent multiple times. We only use the last fence.
// When the last fence is signaled, all the previous fences must be executed.
if (!output_record.at_client()) {
// Take ownership of the EGL fence.
if (egl_fence)
surfaces_awaiting_fence_.push(
std::make_pair(std::move(egl_fence), std::move(it->second)));
surfaces_at_display_.erase(it);
}
}
void V4L2SliceVideoDecodeAccelerator::Flush() {
VLOGF(2);
DCHECK(child_task_runner_->BelongsToCurrentThread());
decoder_thread_task_runner_->PostTask(
FROM_HERE, base::BindOnce(&V4L2SliceVideoDecodeAccelerator::FlushTask,
base::Unretained(this)));
}
void V4L2SliceVideoDecodeAccelerator::FlushTask() {
VLOGF(2);
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
if (IsDestroyPending())
return;
// Queue an empty buffer which - when reached - will trigger flush sequence.
decoder_input_queue_.push_back(std::make_unique<BitstreamBufferRef>(
decode_client_, decode_task_runner_, nullptr, kFlushBufferId));
ScheduleDecodeBufferTaskIfNeeded();
}
void V4L2SliceVideoDecodeAccelerator::InitiateFlush() {
VLOGF(2);
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
TRACE_EVENT_ASYNC_BEGIN0("media,gpu", "V4L2SVDA Flush", this);
// This will trigger output for all remaining surfaces in the decoder.
// However, not all of them may be decoded yet (they would be queued
// in hardware then).
if (!decoder_->Flush()) {
DVLOGF(1) << "Failed flushing the decoder.";
NOTIFY_ERROR(PLATFORM_FAILURE);
return;
}
// Put the decoder in an idle state, ready to resume.
decoder_->Reset();
DCHECK(!decoder_flushing_);
decoder_flushing_ = true;
NewEventPending();
}
bool V4L2SliceVideoDecodeAccelerator::FinishFlush() {
VLOGF(4);
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
if (!decoder_flushing_)
return true;
if (!surfaces_at_device_.empty())
return false;
// Even if all output buffers have been returned, the decoder may still
// be holding on an input device. Wait until the queue is actually drained.
if (input_queue_->QueuedBuffersCount() != 0)
return false;
// Wait until all pending image processor tasks are completed.
if (image_processor_ && !surfaces_at_ip_.empty())
return false;
DCHECK_EQ(state_, kIdle);
// At this point, all remaining surfaces are decoded and dequeued, and since
// we have already scheduled output for them in InitiateFlush(), their
// respective PictureReady calls have been posted (or they have been queued on
// pending_picture_ready_). So at this time, once we SendPictureReady(),
// we will have all remaining PictureReady() posted to the client and we
// can post NotifyFlushDone().
DCHECK(decoder_display_queue_.empty());
// Decoder should have already returned all surfaces and all surfaces are
// out of hardware. There can be no other owners of input buffers.
DCHECK_EQ(input_queue_->FreeBuffersCount(),
input_queue_->AllocatedBuffersCount());
SendPictureReady();
decoder_flushing_ = false;
VLOGF(2) << "Flush finished";
child_task_runner_->PostTask(
FROM_HERE, base::BindOnce(&Client::NotifyFlushDone, client_));
TRACE_EVENT_ASYNC_END0("media,gpu", "V4L2SVDA Flush", this);
return true;
}
void V4L2SliceVideoDecodeAccelerator::Reset() {
VLOGF(2);
DCHECK(child_task_runner_->BelongsToCurrentThread());
decoder_thread_task_runner_->PostTask(
FROM_HERE, base::BindOnce(&V4L2SliceVideoDecodeAccelerator::ResetTask,
base::Unretained(this)));
}
void V4L2SliceVideoDecodeAccelerator::ResetTask() {
VLOGF(2);
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
TRACE_EVENT_ASYNC_BEGIN0("media,gpu", "V4L2SVDA Reset", this);
if (IsDestroyPending())
return;
if (decoder_resetting_) {
// This is a bug in the client, multiple Reset()s before NotifyResetDone()
// are not allowed.
NOTREACHED() << "Client should not be requesting multiple Reset()s";
return;
}
// Put the decoder in an idle state, ready to resume.
decoder_->Reset();
// Drop all remaining inputs.
decoder_current_bitstream_buffer_.reset();
while (!decoder_input_queue_.empty())
decoder_input_queue_.pop_front();
decoder_resetting_ = true;
NewEventPending();
}
bool V4L2SliceVideoDecodeAccelerator::FinishReset() {
VLOGF(4);
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
if (!decoder_resetting_)
return true;
if (!surfaces_at_device_.empty())
return false;
// Drop all buffers in image processor.
if (image_processor_ && !ResetImageProcessor()) {
VLOGF(1) << "Fail to reset image processor";
NOTIFY_ERROR(PLATFORM_FAILURE);
return false;
}
DCHECK_EQ(state_, kIdle);
DCHECK(!decoder_flushing_);
SendPictureReady();
// Drop any pending outputs.
while (!decoder_display_queue_.empty())
decoder_display_queue_.pop();
// At this point we can have no input buffers in the decoder, because we
// Reset()ed it in ResetTask(), and have not scheduled any new Decode()s
// having been in kIdle since. We don't have any surfaces in the HW either -
// we just checked that surfaces_at_device_.empty(), and inputs are tied
// to surfaces. Since there can be no other owners of input buffers, we can
// simply mark them all as available.
DCHECK_EQ(input_queue_->QueuedBuffersCount(), 0u);
decoder_resetting_ = false;
VLOGF(2) << "Reset finished";
child_task_runner_->PostTask(
FROM_HERE, base::BindOnce(&Client::NotifyResetDone, client_));
TRACE_EVENT_ASYNC_END0("media,gpu", "V4L2SVDA Reset", this);
return true;
}
bool V4L2SliceVideoDecodeAccelerator::IsDestroyPending() {
return destroy_pending_.IsSignaled();
}
void V4L2SliceVideoDecodeAccelerator::SetErrorState(Error error) {
// We can touch decoder_state_ only if this is the decoder thread or the
// decoder thread isn't running.
if (decoder_thread_.IsRunning() &&
!decoder_thread_task_runner_->BelongsToCurrentThread()) {
decoder_thread_task_runner_->PostTask(
FROM_HERE,
base::BindOnce(&V4L2SliceVideoDecodeAccelerator::SetErrorState,
base::Unretained(this), error));
return;
}
// Notifying the client of an error will only happen if we are already
// initialized, as the API does not allow doing so before that. Subsequent
// errors and errors while destroying will be suppressed.
if (state_ != kError && state_ != kUninitialized && state_ != kDestroying)
NotifyError(error);
state_ = kError;
}
bool V4L2SliceVideoDecodeAccelerator::SubmitSlice(
const scoped_refptr<V4L2DecodeSurface>& dec_surface,
const uint8_t* data,
size_t size) {
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
V4L2WritableBufferRef& input_buffer = dec_surface->input_buffer();
DCHECK(input_buffer.IsValid());
const size_t plane_size = input_buffer.GetPlaneSize(0);
const size_t bytes_used = input_buffer.GetPlaneBytesUsed(0);
if (bytes_used + size > plane_size) {
VLOGF(1) << "Input buffer too small";
return false;
}
uint8_t* mapping = static_cast<uint8_t*>(input_buffer.GetPlaneMapping(0));
DCHECK_NE(mapping, nullptr);
memcpy(mapping + bytes_used, data, size);
input_buffer.SetPlaneBytesUsed(0, bytes_used + size);
return true;
}
void V4L2SliceVideoDecodeAccelerator::DecodeSurface(
const scoped_refptr<V4L2DecodeSurface>& dec_surface) {
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
DVLOGF(3) << "Submitting decode for surface: " << dec_surface->ToString();
Enqueue(dec_surface);
if (!dec_surface->Submit()) {
VLOGF(1) << "Error while submitting frame for decoding!";
NOTIFY_ERROR(PLATFORM_FAILURE);
}
}
void V4L2SliceVideoDecodeAccelerator::SurfaceReady(
const scoped_refptr<V4L2DecodeSurface>& dec_surface,
int32_t bitstream_id,
const gfx::Rect& visible_rect,
const VideoColorSpace& /* color_space */) {
DVLOGF(4);
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
dec_surface->SetVisibleRect(visible_rect);
decoder_display_queue_.push(std::make_pair(bitstream_id, dec_surface));
TryOutputSurfaces();
}
void V4L2SliceVideoDecodeAccelerator::TryOutputSurfaces() {
while (!decoder_display_queue_.empty()) {
scoped_refptr<V4L2DecodeSurface> dec_surface =
decoder_display_queue_.front().second;
if (!dec_surface->decoded())
break;
int32_t bitstream_id = decoder_display_queue_.front().first;
decoder_display_queue_.pop();
OutputSurface(bitstream_id, dec_surface);
}
}
void V4L2SliceVideoDecodeAccelerator::OutputSurface(
int32_t bitstream_id,
const scoped_refptr<V4L2DecodeSurface>& dec_surface) {
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
DCHECK_EQ(decoded_buffer_map_.count(dec_surface->output_record()), 1u);
const size_t output_map_index =
decoded_buffer_map_[dec_surface->output_record()];
DCHECK_LT(output_map_index, output_buffer_map_.size());
OutputRecord& output_record = output_buffer_map_[output_map_index];
if (!output_record.at_client()) {
bool inserted =
surfaces_at_display_
.insert(std::make_pair(output_record.picture_id, dec_surface))
.second;
DCHECK(inserted);
} else {
// The surface is already sent to client, and not returned back yet.
DCHECK(surfaces_at_display_.find(output_record.picture_id) !=
surfaces_at_display_.end());
CHECK(surfaces_at_display_[output_record.picture_id].get() ==
dec_surface.get());
}
DCHECK_NE(output_record.picture_id, -1);
++output_record.num_times_sent_to_client;
// TODO(hubbe): Insert correct color space. http://crbug.com/647725
Picture picture(output_record.picture_id, bitstream_id,
dec_surface->visible_rect(), gfx::ColorSpace(),
true /* allow_overlay */);
DVLOGF(4) << dec_surface->ToString()
<< ", bitstream_id: " << picture.bitstream_buffer_id()
<< ", picture_id: " << picture.picture_buffer_id()
<< ", visible_rect: " << picture.visible_rect().ToString();
pending_picture_ready_.push(PictureRecord(output_record.cleared, picture));
SendPictureReady();
output_record.cleared = true;
}
void V4L2SliceVideoDecodeAccelerator::CheckGLFences() {
DVLOGF(4);
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
while (!surfaces_awaiting_fence_.empty() &&
surfaces_awaiting_fence_.front().first->HasCompleted()) {
// Buffer at the front of the queue goes back to V4L2Queue's free list
// and can be reused.
surfaces_awaiting_fence_.pop();
}
// If we have no free buffers available, then preemptively schedule a
// call to DecodeBufferTask() in a short time, otherwise we may starve out
// of buffers because fences will not call back into us once they are
// signaled. The delay chosen roughly corresponds to the time a frame is
// displayed, which should be optimal in most cases.
if (output_queue_->FreeBuffersCount() == 0) {
constexpr int64_t kRescheduleDelayMs = 17;
decoder_thread_.task_runner()->PostDelayedTask(
FROM_HERE,
base::BindOnce(&V4L2SliceVideoDecodeAccelerator::DecodeBufferTask,
base::Unretained(this)),
base::TimeDelta::FromMilliseconds(kRescheduleDelayMs));
}
}
scoped_refptr<V4L2DecodeSurface>
V4L2SliceVideoDecodeAccelerator::CreateSurface() {
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
DCHECK_EQ(state_, kDecoding);
TRACE_COUNTER_ID2(
"media,gpu", "V4L2 input buffers", this, "free",
input_queue_->FreeBuffersCount(), "in use",
input_queue_->AllocatedBuffersCount() - input_queue_->FreeBuffersCount());
TRACE_COUNTER_ID2("media,gpu", "V4L2 output buffers", this, "free",
output_queue_->FreeBuffersCount(), "in use",
output_queue_->AllocatedBuffersCount() -
output_queue_->AllocatedBuffersCount());
TRACE_COUNTER_ID2("media,gpu", "V4L2 output buffers", this, "at client",
GetNumOfOutputRecordsAtClient(), "at device",
GetNumOfOutputRecordsAtDevice());
// Release some output buffers if their fence has been signaled.
CheckGLFences();
if (input_queue_->FreeBuffersCount() == 0 ||
output_queue_->FreeBuffersCount() == 0)
return nullptr;
V4L2WritableBufferRef input_buffer = input_queue_->GetFreeBuffer();
DCHECK(input_buffer.IsValid());
// All buffers that are returned to the output free queue have their GL
// fence signaled, so we can use them directly.
V4L2WritableBufferRef output_buffer = output_queue_->GetFreeBuffer();
DCHECK(output_buffer.IsValid());
int input = input_buffer.BufferId();
int output = output_buffer.BufferId();
scoped_refptr<V4L2DecodeSurface> dec_surface;
if (supports_requests_) {
// Here we just borrow the older request to use it, before
// immediately putting it back at the back of the queue.
base::ScopedFD request = std::move(requests_.front());
requests_.pop();
auto ret = V4L2RequestDecodeSurface::Create(std::move(input_buffer),
std::move(output_buffer),
nullptr, request.get());
requests_.push(std::move(request));
// Not being able to create the decode surface at this stage is a
// fatal error.
if (!ret) {
NOTIFY_ERROR(PLATFORM_FAILURE);
return nullptr;
}
dec_surface = std::move(ret).value();
} else {
dec_surface = new V4L2ConfigStoreDecodeSurface(
std::move(input_buffer), std::move(output_buffer), nullptr);
}
DVLOGF(4) << "Created surface " << input << " -> " << output;
return dec_surface;
}
void V4L2SliceVideoDecodeAccelerator::SendPictureReady() {
DVLOGF(4);
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
bool send_now =
(decoder_resetting_ || decoder_flushing_ || surface_set_change_pending_);
while (!pending_picture_ready_.empty()) {
bool cleared = pending_picture_ready_.front().cleared;
const Picture& picture = pending_picture_ready_.front().picture;
if (cleared && picture_clearing_count_ == 0) {
DVLOGF(4) << "Posting picture ready to decode task runner for: "
<< picture.picture_buffer_id();
// This picture is cleared. It can be posted to a thread different than
// the main GPU thread to reduce latency. This should be the case after
// all pictures are cleared at the beginning.
decode_task_runner_->PostTask(
FROM_HERE,
base::BindOnce(&Client::PictureReady, decode_client_, picture));
pending_picture_ready_.pop();
} else if (!cleared || send_now) {
DVLOGF(4) << "cleared=" << pending_picture_ready_.front().cleared
<< ", decoder_resetting_=" << decoder_resetting_
<< ", decoder_flushing_=" << decoder_flushing_
<< ", surface_set_change_pending_="
<< surface_set_change_pending_
<< ", picture_clearing_count_=" << picture_clearing_count_;
DVLOGF(4) << "Posting picture ready to GPU for: "
<< picture.picture_buffer_id();
// If the picture is not cleared, post it to the child thread because it
// has to be cleared in the child thread. A picture only needs to be
// cleared once. If the decoder is resetting or flushing or changing
// resolution, send all pictures to ensure PictureReady arrive before
// reset done, flush done, or picture dismissed.
child_task_runner_->PostTaskAndReply(
FROM_HERE, base::BindOnce(&Client::PictureReady, client_, picture),
// Unretained is safe. If Client::PictureReady gets to run, |this| is
// alive. Destroy() will wait the decode thread to finish.
base::BindOnce(&V4L2SliceVideoDecodeAccelerator::PictureCleared,
base::Unretained(this)));
picture_clearing_count_++;
pending_picture_ready_.pop();
} else {
// This picture is cleared. But some pictures are about to be cleared on
// the child thread. To preserve the order, do not send this until those
// pictures are cleared.
break;
}
}
}
void V4L2SliceVideoDecodeAccelerator::PictureCleared() {
DVLOGF(4) << "clearing count=" << picture_clearing_count_;
DCHECK(decoder_thread_task_runner_->BelongsToCurrentThread());
DCHECK_GT(picture_clearing_count_, 0);
picture_clearing_count_--;
SendPictureReady();
}
bool V4L2SliceVideoDecodeAccelerator::TryToSetupDecodeOnSeparateThread(
const base::WeakPtr<Client>& decode_client,
const scoped_refptr<base::SingleThreadTaskRunner>& decode_task_runner) {
decode_client_ = decode_client;
decode_task_runner_ = decode_task_runner;
return true;
}
// static
VideoDecodeAccelerator::SupportedProfiles
V4L2SliceVideoDecodeAccelerator::GetSupportedProfiles() {
scoped_refptr<V4L2Device> device = V4L2Device::Create();
if (!device)
return SupportedProfiles();
return device->GetSupportedDecodeProfiles(
base::size(supported_input_fourccs_), supported_input_fourccs_);
}
bool V4L2SliceVideoDecodeAccelerator::IsSupportedProfile(
VideoCodecProfile profile) {
DCHECK(device_);
if (supported_profiles_.empty()) {
SupportedProfiles profiles = GetSupportedProfiles();
for (const SupportedProfile& profile : profiles)
supported_profiles_.push_back(profile.profile);
}
return std::find(supported_profiles_.begin(), supported_profiles_.end(),
profile) != supported_profiles_.end();
}
size_t V4L2SliceVideoDecodeAccelerator::GetNumOfOutputRecordsAtDevice() const {
DCHECK(decoder_thread_.task_runner()->BelongsToCurrentThread());
return output_queue_->QueuedBuffersCount();
}
size_t V4L2SliceVideoDecodeAccelerator::GetNumOfOutputRecordsAtClient() const {
DCHECK(decoder_thread_.task_runner()->BelongsToCurrentThread());
return std::count_if(output_buffer_map_.begin(), output_buffer_map_.end(),
[](const auto& r) { return r.at_client(); });
}
void V4L2SliceVideoDecodeAccelerator::ImageProcessorError() {
DCHECK(decoder_thread_.task_runner()->BelongsToCurrentThread());
VLOGF(1) << "Image processor error";
NOTIFY_ERROR(PLATFORM_FAILURE);
}
bool V4L2SliceVideoDecodeAccelerator::ProcessFrame(
V4L2ReadableBufferRef buffer,
scoped_refptr<V4L2DecodeSurface> surface) {
DVLOGF(4);
DCHECK(decoder_thread_.task_runner()->BelongsToCurrentThread());
scoped_refptr<VideoFrame> input_frame = buffer->GetVideoFrame();
DCHECK(input_frame);
if (image_processor_->output_mode() == ImageProcessor::OutputMode::IMPORT) {
// In IMPORT mode we can decide ourselves which IP buffer to use, so choose
// the one with the same index number as our decoded buffer.
const OutputRecord& output_record = output_buffer_map_[buffer->BufferId()];
const scoped_refptr<VideoFrame>& output_frame = output_record.output_frame;
// We will set a destruction observer to the output frame, so wrap the
// imported frame into another one that we can destruct.
scoped_refptr<VideoFrame> wrapped_frame = VideoFrame::WrapVideoFrame(
output_frame, output_frame->format(), output_frame->visible_rect(),
output_frame->coded_size());
DCHECK(output_frame != nullptr);
image_processor_->Process(
std::move(input_frame), std::move(wrapped_frame),
base::BindOnce(&V4L2SliceVideoDecodeAccelerator::FrameProcessed,
base::Unretained(this), surface, buffer->BufferId()));
} else {
// In ALLOCATE mode we cannot choose which IP buffer to use. We will get
// the surprise when FrameProcessed() is invoked...
if (!image_processor_->Process(
std::move(input_frame),
base::BindOnce(&V4L2SliceVideoDecodeAccelerator::FrameProcessed,
base::Unretained(this), surface)))
return false;
}
surfaces_at_ip_.push(std::make_pair(std::move(surface), std::move(buffer)));
return true;
}
void V4L2SliceVideoDecodeAccelerator::FrameProcessed(
scoped_refptr<V4L2DecodeSurface> surface,
size_t ip_buffer_index,
scoped_refptr<VideoFrame> frame) {
DVLOGF(4);
DCHECK(decoder_thread_.task_runner()->BelongsToCurrentThread());
if (IsDestroyPending())
return;
// TODO(crbug.com/921825): Remove this workaround once reset callback is
// implemented.
if (surfaces_at_ip_.empty() || surfaces_at_ip_.front().first != surface ||
output_buffer_map_.empty()) {
// This can happen if image processor is reset.
// V4L2SliceVideoDecodeAccelerator::Reset() makes
// |buffers_at_ip_| empty.
// During ImageProcessor::Reset(), some FrameProcessed() can have been
// posted to |decoder_thread|. |bitsream_buffer_id| is pushed to
// |buffers_at_ip_| in ProcessFrame(). Although we
// are not sure a new bitstream buffer id is pushed after Reset() and before
// FrameProcessed(), We should skip the case of mismatch of bitstream buffer
// id for safety.
// For |output_buffer_map_|, it is cleared in Destroy(). Destroy() destroys
// ImageProcessor which may call FrameProcessed() in parallel similar to
// Reset() case.
DVLOGF(4) << "Ignore processed frame after reset";
return;
}
DCHECK_LT(ip_buffer_index, output_buffer_map_.size());
OutputRecord& ip_output_record = output_buffer_map_[ip_buffer_index];
// If the picture has not been cleared yet, this means it is the first time
// we are seeing this buffer from the image processor. Schedule a call to
// CreateGLImageFor before the picture is sent to the client. It is
// guaranteed that CreateGLImageFor will complete before the picture is sent
// to the client as both events happen on the child thread due to the picture
// uncleared status.
if (ip_output_record.texture_id != 0 && !ip_output_record.cleared) {
DCHECK(frame->HasDmaBufs());
child_task_runner_->PostTask(
FROM_HERE,
base::BindOnce(&V4L2SliceVideoDecodeAccelerator::CreateGLImageFor,
weak_this_, ip_buffer_index, ip_output_record.picture_id,
media::DuplicateFDs(frame->DmabufFds()),
ip_output_record.client_texture_id,
ip_output_record.texture_id, gl_image_size_,
gl_image_format_fourcc_));
}
DCHECK(!surfaces_at_ip_.empty());
DCHECK_EQ(surfaces_at_ip_.front().first, surface);
V4L2ReadableBufferRef decoded_buffer =
std::move(surfaces_at_ip_.front().second);
surfaces_at_ip_.pop();
DCHECK_EQ(decoded_buffer->BufferId(),
static_cast<size_t>(surface->output_record()));
// Keep the decoder buffer until the IP frame is itself released.
// We need to keep this V4L2 frame because the decode surface still references
// its index and we will use its OutputRecord to reference the IP buffer.
frame->AddDestructionObserver(
base::BindOnce(&V4L2SliceVideoDecodeAccelerator::ReuseOutputBuffer,
base::Unretained(this), decoded_buffer));
// This holds the IP video frame until everyone is done with it
surface->SetReleaseCallback(
base::BindOnce([](scoped_refptr<VideoFrame> frame) {}, frame));
DCHECK_EQ(decoded_buffer_map_.count(decoded_buffer->BufferId()), 0u);
decoded_buffer_map_.emplace(decoded_buffer->BufferId(), ip_buffer_index);
surface->SetDecoded();
TryOutputSurfaces();
ProcessPendingEventsIfNeeded();
ScheduleDecodeBufferTaskIfNeeded();
}
// base::trace_event::MemoryDumpProvider implementation.
bool V4L2SliceVideoDecodeAccelerator::OnMemoryDump(
const base::trace_event::MemoryDumpArgs& args,
base::trace_event::ProcessMemoryDump* pmd) {
// OnMemoryDump() must be performed on |decoder_thread_|.
DCHECK(decoder_thread_.task_runner()->BelongsToCurrentThread());
// VIDEO_OUTPUT queue's memory usage.
const size_t input_queue_buffers_count =
input_queue_->AllocatedBuffersCount();
size_t input_queue_memory_usage = 0;
std::string input_queue_buffers_memory_type =
V4L2Device::V4L2MemoryToString(input_queue_->GetMemoryType());
input_queue_memory_usage += input_queue_->GetMemoryUsage();
// VIDEO_CAPTURE queue's memory usage.
const size_t output_queue_buffers_count = output_buffer_map_.size();
size_t output_queue_memory_usage = 0;
std::string output_queue_buffers_memory_type =
V4L2Device::V4L2MemoryToString(output_queue_->GetMemoryType());
if (output_mode_ == Config::OutputMode::ALLOCATE) {
// Call QUERY_BUF here because the length of buffers on VIDIOC_CATURE queue
// are not recorded nowhere in V4L2VideoDecodeAccelerator.
for (uint32_t index = 0; index < output_buffer_map_.size(); ++index) {
struct v4l2_buffer v4l2_buffer = {};
struct v4l2_plane v4l2_planes[VIDEO_MAX_PLANES];
DCHECK_LT(output_planes_count_, base::size(v4l2_planes));
v4l2_buffer.m.planes = v4l2_planes;
v4l2_buffer.length =
std::min(output_planes_count_, base::size(v4l2_planes));
v4l2_buffer.index = index;
v4l2_buffer.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
v4l2_buffer.memory = V4L2_MEMORY_MMAP;
IOCTL_OR_ERROR_RETURN_FALSE(VIDIOC_QUERYBUF, &v4l2_buffer);
for (size_t i = 0; i < output_planes_count_; ++i)
output_queue_memory_usage += v4l2_buffer.m.planes[i].length;
}
}
const size_t total_usage =
input_queue_memory_usage + output_queue_memory_usage;
using ::base::trace_event::MemoryAllocatorDump;
auto dump_name = base::StringPrintf("gpu/v4l2/slice_decoder/0x%" PRIxPTR,
reinterpret_cast<uintptr_t>(this));
MemoryAllocatorDump* dump = pmd->CreateAllocatorDump(dump_name);
dump->AddScalar(MemoryAllocatorDump::kNameSize,
MemoryAllocatorDump::kUnitsBytes,
static_cast<uint64_t>(total_usage));
dump->AddScalar("input_queue_memory_usage", MemoryAllocatorDump::kUnitsBytes,
static_cast<uint64_t>(input_queue_memory_usage));
dump->AddScalar("input_queue_buffers_count",
MemoryAllocatorDump::kUnitsObjects,
static_cast<uint64_t>(input_queue_buffers_count));
dump->AddString("input_queue_buffers_memory_type", "",
input_queue_buffers_memory_type);
dump->AddScalar("output_queue_memory_usage", MemoryAllocatorDump::kUnitsBytes,
static_cast<uint64_t>(output_queue_memory_usage));
dump->AddScalar("output_queue_buffers_count",
MemoryAllocatorDump::kUnitsObjects,
static_cast<uint64_t>(output_queue_buffers_count));
dump->AddString("output_queue_buffers_memory_type", "",
output_queue_buffers_memory_type);
return true;
}
} // namespace media
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
872ac6169ed38c7baba41cb29ffbca027ca5927b | d4954c36aaee9e59391082b3f66daf2fac999e5c | /CourseWork-3sem/MainMenu.cpp | 906282380bec41c5ae30d7bd45f3486a2bab376c | [] | no_license | Sintexer/CourseWork-3sem | 621a4730f41e6ba69d1779a382cb3b55c3b608c7 | 44a73620e41d260fabb3787379912b393d3f3dd3 | refs/heads/master | 2020-09-22T00:04:45.616950 | 2019-12-18T16:55:46 | 2019-12-18T16:55:46 | 224,980,299 | 1 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 5,297 | cpp | #include "MainMenu.h"
#include "Interface.h"
#include "PhysTest.h"
#include "MathTest.h"
#include "PersonalityTest.h"
#include "ProfTest.h"
#include "TeachingTest.h"
void MainMenu::init() //Метод вывода меню на экран пользователя и работы с ним
{
size_t answer{}; //Переменная для ввода пользователя
do {
system("cls");
cout << "Главное меню\n\n"
<< "Выберите вид тестов:\n"
<< "1: Психологические тесты\n"
<< "2: Тесты по предметам обучения\n"
<< "3: Тесты обучающие\n\n"
<< "0: Выход" << endl;
inputSafe(cin, answer, 0, 3); //Метод безопасного ввода числа в диапазоне
switch (answer){
case 1:
if (!psychoTestMenu()) //Меню психологических тестов, вернет false, если пользователь решил выйти
return; //Выход из меню
break;
case 2:
if (!ratingTestMenu()) //Меню тестов оценивания знаний, вернет false, если пользователь решил выйти
return; //Выход из меню
break;
case 3:
if (!teachingTestMenu()) //Меню обучающих тестов, вернет false, если пользователь решил выйти
return; //Выход из меню
break;
case 0:
return;//Выход из программы
default:
cout << "Некорректный ввод, выберите цифру из меню\n" << endl;
system("pause");
break;
}
} while (answer);
system("cls");
}
bool MainMenu::psychoTestMenu()
{
size_t answer{};//Переменная для ввода пользователя
do {
system("cls");
cout << "Психологические тесты\n\n"
<< "Выберите вид тестов:\n"
<< "1: Личностные\n"
<< "2: Тесты на проф пригодность\n\n"
<< "3: Главное меню\n"
<< "0: Выход" << endl;
inputSafe(cin, answer, 0, 3);//Метод безопасного ввода числа в диапазоне
switch (answer){
case 1: {
Interface<PersTest> inter;//Инициализация интерфейса Личностных тестов
inter.init(); //Вводит тесты из файла в дерево
if (!inter.chooseTest()) //Вернет false, если пользователь решил выйти из программы
return false;
break;
}
case 2: {
Interface<ProfTest> inter;//Инициализация интерфейса тестов на проф пригодность
inter.init(); //Вводит тесты из файла в дерево
if (!inter.chooseTest()) //Вернет false, если пользователь решил выйти из программы
return false;
}
case 3:
return true; //Возврат в главное меню
break;
case 0:
return false; //Выход из программы
break;
default:
cout << "Некорректный ввод, выберите цифру из меню" << endl;
system("pause");
break;
}
} while (answer);
system("cls");
return false;//Выход из программы
}
bool MainMenu::ratingTestMenu()
{
size_t answer{};//Переменная для ввода пользователя
do {
system("cls");
cout << "Тесты по предметам обучения\n\n"
<< "Выберите предмет:\n"
<< "1: Математика\n"
<< "2: Физика\n\n"
<< "3: Главное меню\n"
<< "0: Выход" << endl;
inputSafe(cin, answer, 0, 3);//Метод безопасного ввода числа в диапазоне
switch (answer){
case 1: {
Interface<MathTest> inter; //Инициализация интерфейса тестов по математике
inter.init(); //Вводит тесты из файла в дерево
if (!inter.chooseTest()) //Вернет false, если пользователь решил выйти из программы
return false;
break;
}
case 2: {
Interface<PhysTest> inter;
inter.init(); //Инициализация интерфейса тестов по физике
if (!inter.chooseTest()) //Вернет false, если пользователь решил выйти из программы
return false;//Выход из программы
break;
}
case 3:
return true;//Возврат в главное меню
case 0:
return false;//Выход из программы
default:
cout << "Некорректный ввод, выберите цифру из меню" << endl;
system("pause");
break;
}
} while (answer);
system("cls");
return false;//Выход из программы
}
bool MainMenu::teachingTestMenu()
{
Interface<TeachingTest> inter;
inter.init(); //Вводит тесты из файла в дерево
if (!inter.chooseTest()) //Вернет false, если пользователь решил выйти из программы
return false;
return true;//Возврат в главное меню
} | [
"neonlightnight@gmail.com"
] | neonlightnight@gmail.com |
f3e4793a154c668eca641ad70900a6b2b5f0cf83 | 6e940594f5e7732fecd2903eaaf5bf9e8d88e7ec | /Course Work/ChosenParam.h | ba339af725683d539282c93aa2e3db8b27b7dbb5 | [] | no_license | GlobeDaBoarder/AHP-Calculator | d674b95e302283316b96d3d59c992a29571a96a9 | ae10a2a2be38511647f162106ecc28d4b044b404 | refs/heads/master | 2023-04-05T02:37:52.736720 | 2021-05-04T23:57:19 | 2021-05-04T23:57:19 | 364,923,477 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 473 | h | #pragma once
#include <vector>
#include <string>
#include "IChosenParam.h"
class ChosenParam : public IChosenParam
{
private:
std::vector<std::string> m_chosenParam;
std::vector<Val> m_chosenValues;
void LogInputError();
public:
ChosenParam();
~ChosenParam();
void ChooseParams(std::vector<Phone>& phones) override;
void printChosen() override;
std::vector<std::string> getChosenParam() const override;
std::vector<Val> getChosenValues() const override;
};
| [
"gleb.ivashyn@stud.vgtu.lt"
] | gleb.ivashyn@stud.vgtu.lt |
2b60b01e5731a59649b04ab25c8af0d799bca4bb | 5b41e312db8aeb5532ba59498c93e2ec1dccd4ff | /SMC_DBClasses/CHDE_PP_BURNER_STEP_ENTRY.cpp | 6597733fbda4e56a03ccbcf772b874c1b69c9ea1 | [] | no_license | frankilfrancis/KPO_HMI_vs17 | 10d96c6cb4aebffb83254e6ca38fe6d1033eba79 | de49aa55eccd8a7abc165f6057088a28426a1ceb | refs/heads/master | 2020-04-15T16:40:14.366351 | 2019-11-14T15:33:25 | 2019-11-14T15:33:25 | 164,845,188 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 11,820 | cpp | //## Copyright (C) 2010 SMS Siemag AG, Germany
//## Version generated by DBClassCodeUtility BETA 0.6.3
//## ALL METHODS MARKED AS - //##DBClassCodeUtility - WILL BE OVERWRITTEN, IF DB CLASS RE-GENERATED
//## MANUALLY IMPLEMENTED METHODS MUST BE LOCATED BELOW THE MARK - "YOUR-CODE" -
#include "CGTE_PP_BURNER_STEP_ENTRY.h"
#include "CHDE_PP_BURNER_STEP_ENTRY.h"
//##DBClassCodeUtility ! DO NOT EDIT !
const std::string CHDE_PP_BURNER_STEP_ENTRY::HEATID("HEATID");
//##DBClassCodeUtility ! DO NOT EDIT !
const std::string CHDE_PP_BURNER_STEP_ENTRY::TREATID("TREATID");
//##DBClassCodeUtility ! DO NOT EDIT !
const std::string CHDE_PP_BURNER_STEP_ENTRY::PLANT("PLANT");
//##DBClassCodeUtility ! DO NOT EDIT !
const std::string CHDE_PP_BURNER_STEP_ENTRY::PRACNO("PRACNO");
//##DBClassCodeUtility ! DO NOT EDIT !
const std::string CHDE_PP_BURNER_STEP_ENTRY::TREATMODENO("TREATMODENO");
//##DBClassCodeUtility ! DO NOT EDIT !
const std::string CHDE_PP_BURNER_STEP_ENTRY::LIQ_ADD_AMOUNT("LIQ_ADD_AMOUNT");
//##DBClassCodeUtility ! DO NOT EDIT !
const std::string CHDE_PP_BURNER_STEP_ENTRY::PRACPHASE("PRACPHASE");
//##DBClassCodeUtility ! DO NOT EDIT !
const std::string CHDE_PP_BURNER_STEP_ENTRY::BURNERNAME("BURNERNAME");
//##DBClassCodeUtility ! DO NOT EDIT !
const std::string CHDE_PP_BURNER_STEP_ENTRY::STEPNO("STEPNO");
//##DBClassCodeUtility ! DO NOT EDIT !
const std::string CHDE_PP_BURNER_STEP_ENTRY::FLAMEPROFILENO("FLAMEPROFILENO");
//##DBClassCodeUtility ! DO NOT EDIT !
const std::string CHDE_PP_BURNER_STEP_ENTRY::SPECEGY("SPECEGY");
//##DBClassCodeUtility ! DO NOT EDIT !
const std::string CHDE_PP_BURNER_STEP_ENTRY::ELEC_ENERGY("ELEC_ENERGY");
//##DBClassCodeUtility ! DO NOT EDIT !
const std::string CHDE_PP_BURNER_STEP_ENTRY::DISPLAY_ORDER("DISPLAY_ORDER");
//##DBClassCodeUtility ! DO NOT EDIT !
CHDE_PP_BURNER_STEP_ENTRY::CHDE_PP_BURNER_STEP_ENTRY(cCBS_StdConnection* Connection)
:CSMC_DBData("HDE_PP_BURNER_STEP_ENTRY",Connection)
{
//please implement virtual method, to initialize your members
doOnConstruct();
}
//##DBClassCodeUtility ! DO NOT EDIT !
CHDE_PP_BURNER_STEP_ENTRY::CHDE_PP_BURNER_STEP_ENTRY(cCBS_Connection* Connection)
:CSMC_DBData("HDE_PP_BURNER_STEP_ENTRY",Connection)
{
//please implement virtual method, to initialize your members
doOnConstruct();
}
//##DBClassCodeUtility ! DO NOT EDIT !
CHDE_PP_BURNER_STEP_ENTRY::CHDE_PP_BURNER_STEP_ENTRY()
:CSMC_DBData("HDE_PP_BURNER_STEP_ENTRY")
{
//please implement virtual method, to initialize your members
doOnConstruct();
}
//##DBClassCodeUtility ! DO NOT EDIT !
CHDE_PP_BURNER_STEP_ENTRY::~CHDE_PP_BURNER_STEP_ENTRY()
{
//please implement virtual method, to destruct your members
doOnDestruct();
}
//##DBClassCodeUtility ! DO NOT EDIT !
std::string CHDE_PP_BURNER_STEP_ENTRY::getHEATID(long Row)
{
return getString(CHDE_PP_BURNER_STEP_ENTRY::HEATID, Row);
}
//##DBClassCodeUtility ! DO NOT EDIT !
void CHDE_PP_BURNER_STEP_ENTRY::setHEATID(const std::string& value)
{
setString(CHDE_PP_BURNER_STEP_ENTRY::HEATID, value);
}
//##DBClassCodeUtility ! DO NOT EDIT !
std::string CHDE_PP_BURNER_STEP_ENTRY::getTREATID(long Row)
{
return getString(CHDE_PP_BURNER_STEP_ENTRY::TREATID, Row);
}
//##DBClassCodeUtility ! DO NOT EDIT !
void CHDE_PP_BURNER_STEP_ENTRY::setTREATID(const std::string& value)
{
setString(CHDE_PP_BURNER_STEP_ENTRY::TREATID, value);
}
//##DBClassCodeUtility ! DO NOT EDIT !
std::string CHDE_PP_BURNER_STEP_ENTRY::getPLANT(long Row)
{
return getString(CHDE_PP_BURNER_STEP_ENTRY::PLANT, Row);
}
//##DBClassCodeUtility ! DO NOT EDIT !
void CHDE_PP_BURNER_STEP_ENTRY::setPLANT(const std::string& value)
{
setString(CHDE_PP_BURNER_STEP_ENTRY::PLANT, value);
}
//##DBClassCodeUtility ! DO NOT EDIT !
long CHDE_PP_BURNER_STEP_ENTRY::getPRACNO(long Row)
{
return getLong(CHDE_PP_BURNER_STEP_ENTRY::PRACNO, Row);
}
//##DBClassCodeUtility ! DO NOT EDIT !
void CHDE_PP_BURNER_STEP_ENTRY::setPRACNO(long value)
{
setLong(CHDE_PP_BURNER_STEP_ENTRY::PRACNO, value);
}
//##DBClassCodeUtility ! DO NOT EDIT !
long CHDE_PP_BURNER_STEP_ENTRY::getTREATMODENO(long Row)
{
return getLong(CHDE_PP_BURNER_STEP_ENTRY::TREATMODENO, Row);
}
//##DBClassCodeUtility ! DO NOT EDIT !
void CHDE_PP_BURNER_STEP_ENTRY::setTREATMODENO(long value)
{
setLong(CHDE_PP_BURNER_STEP_ENTRY::TREATMODENO, value);
}
//##DBClassCodeUtility ! DO NOT EDIT !
long CHDE_PP_BURNER_STEP_ENTRY::getLIQ_ADD_AMOUNT(long Row)
{
return getLong(CHDE_PP_BURNER_STEP_ENTRY::LIQ_ADD_AMOUNT, Row);
}
//##DBClassCodeUtility ! DO NOT EDIT !
void CHDE_PP_BURNER_STEP_ENTRY::setLIQ_ADD_AMOUNT(long value)
{
setLong(CHDE_PP_BURNER_STEP_ENTRY::LIQ_ADD_AMOUNT, value);
}
//##DBClassCodeUtility ! DO NOT EDIT !
std::string CHDE_PP_BURNER_STEP_ENTRY::getPRACPHASE(long Row)
{
return getString(CHDE_PP_BURNER_STEP_ENTRY::PRACPHASE, Row);
}
//##DBClassCodeUtility ! DO NOT EDIT !
void CHDE_PP_BURNER_STEP_ENTRY::setPRACPHASE(const std::string& value)
{
setString(CHDE_PP_BURNER_STEP_ENTRY::PRACPHASE, value);
}
//##DBClassCodeUtility ! DO NOT EDIT !
std::string CHDE_PP_BURNER_STEP_ENTRY::getBURNERNAME(long Row)
{
return getString(CHDE_PP_BURNER_STEP_ENTRY::BURNERNAME, Row);
}
//##DBClassCodeUtility ! DO NOT EDIT !
void CHDE_PP_BURNER_STEP_ENTRY::setBURNERNAME(const std::string& value)
{
setString(CHDE_PP_BURNER_STEP_ENTRY::BURNERNAME, value);
}
//##DBClassCodeUtility ! DO NOT EDIT !
long CHDE_PP_BURNER_STEP_ENTRY::getSTEPNO(long Row)
{
return getLong(CHDE_PP_BURNER_STEP_ENTRY::STEPNO, Row);
}
//##DBClassCodeUtility ! DO NOT EDIT !
void CHDE_PP_BURNER_STEP_ENTRY::setSTEPNO(long value)
{
setLong(CHDE_PP_BURNER_STEP_ENTRY::STEPNO, value);
}
//##DBClassCodeUtility ! DO NOT EDIT !
long CHDE_PP_BURNER_STEP_ENTRY::getFLAMEPROFILENO(long Row)
{
return getLong(CHDE_PP_BURNER_STEP_ENTRY::FLAMEPROFILENO, Row);
}
//##DBClassCodeUtility ! DO NOT EDIT !
void CHDE_PP_BURNER_STEP_ENTRY::setFLAMEPROFILENO(long value)
{
setLong(CHDE_PP_BURNER_STEP_ENTRY::FLAMEPROFILENO, value);
}
//##DBClassCodeUtility ! DO NOT EDIT !
double CHDE_PP_BURNER_STEP_ENTRY::getSPECEGY(long Row)
{
return getDouble(CHDE_PP_BURNER_STEP_ENTRY::SPECEGY, Row);
}
//##DBClassCodeUtility ! DO NOT EDIT !
void CHDE_PP_BURNER_STEP_ENTRY::setSPECEGY(double value)
{
setDouble(CHDE_PP_BURNER_STEP_ENTRY::SPECEGY, value);
}
//##DBClassCodeUtility ! DO NOT EDIT !
long CHDE_PP_BURNER_STEP_ENTRY::getELEC_ENERGY(long Row)
{
return getLong(CHDE_PP_BURNER_STEP_ENTRY::ELEC_ENERGY, Row);
}
//##DBClassCodeUtility ! DO NOT EDIT !
void CHDE_PP_BURNER_STEP_ENTRY::setELEC_ENERGY(long value)
{
setLong(CHDE_PP_BURNER_STEP_ENTRY::ELEC_ENERGY, value);
}
//##DBClassCodeUtility ! DO NOT EDIT !
long CHDE_PP_BURNER_STEP_ENTRY::getDISPLAY_ORDER(long Row)
{
return getLong(CHDE_PP_BURNER_STEP_ENTRY::DISPLAY_ORDER, Row);
}
//##DBClassCodeUtility ! DO NOT EDIT !
void CHDE_PP_BURNER_STEP_ENTRY::setDISPLAY_ORDER(long value)
{
setLong(CHDE_PP_BURNER_STEP_ENTRY::DISPLAY_ORDER, value);
}
//##DBClassCodeUtility ! DO NOT EDIT !
bool CHDE_PP_BURNER_STEP_ENTRY::select(const std::string& HEATID, const std::string& TREATID, const std::string& PLANT, long PRACNO, long TREATMODENO, long LIQ_ADD_AMOUNT, const std::string& PRACPHASE, const std::string& BURNERNAME, long STEPNO)
{
cleanWhereStatement();
m_Statement = "Select * from " + m_TableName;
addWhereClause(CHDE_PP_BURNER_STEP_ENTRY::HEATID,HEATID);
addWhereClause(CHDE_PP_BURNER_STEP_ENTRY::TREATID,TREATID);
addWhereClause(CHDE_PP_BURNER_STEP_ENTRY::PLANT,PLANT);
addWhereClause(CHDE_PP_BURNER_STEP_ENTRY::PRACNO,PRACNO);
addWhereClause(CHDE_PP_BURNER_STEP_ENTRY::TREATMODENO,TREATMODENO);
addWhereClause(CHDE_PP_BURNER_STEP_ENTRY::LIQ_ADD_AMOUNT,LIQ_ADD_AMOUNT);
addWhereClause(CHDE_PP_BURNER_STEP_ENTRY::PRACPHASE,PRACPHASE);
addWhereClause(CHDE_PP_BURNER_STEP_ENTRY::BURNERNAME,BURNERNAME);
addWhereClause(CHDE_PP_BURNER_STEP_ENTRY::STEPNO,STEPNO);
m_Statement += getWhereStatement() + ";";
return CSMC_DBData::select();
}
//## ------------------------------------END-GENERATED-CODE----------------------
//## ------------------------------------YOUR-CODE-------------------------------
bool CHDE_PP_BURNER_STEP_ENTRY::selectByHeatPlant(const std::string& HEATID, const std::string& TREATID, const std::string& PLANT)
{
cleanWhereStatement();
m_Statement = "Select * from " + m_TableName;
addWhereClause(CHDE_PP_BURNER_STEP_ENTRY::HEATID,HEATID);
addWhereClause(CHDE_PP_BURNER_STEP_ENTRY::TREATID,TREATID);
addWhereClause(CHDE_PP_BURNER_STEP_ENTRY::PLANT,PLANT);
m_Statement += getWhereStatement() + ";";
return CSMC_DBData::select();
}
bool CHDE_PP_BURNER_STEP_ENTRY::selectOrdered(const std::string& HEATID, const std::string& TREATID, const std::string& PLANT, long PRACNO, long TREATMODENO, long LIQ_ADD_AMOUNT, const std::string& PRACPHASE, const std::string& BURNERNAME, long STEPNO)
{
cleanWhereStatement();
m_Statement = "Select * from " + m_TableName;
addWhereClause(CHDE_PP_BURNER_STEP_ENTRY::HEATID,HEATID);
addWhereClause(CHDE_PP_BURNER_STEP_ENTRY::TREATID,TREATID);
addWhereClause(CHDE_PP_BURNER_STEP_ENTRY::PLANT,PLANT);
addWhereClause(CHDE_PP_BURNER_STEP_ENTRY::PRACNO,PRACNO);
addWhereClause(CHDE_PP_BURNER_STEP_ENTRY::TREATMODENO,TREATMODENO);
addWhereClause(CHDE_PP_BURNER_STEP_ENTRY::LIQ_ADD_AMOUNT,LIQ_ADD_AMOUNT);
addWhereClause(CHDE_PP_BURNER_STEP_ENTRY::PRACPHASE,PRACPHASE);
addWhereClause(CHDE_PP_BURNER_STEP_ENTRY::BURNERNAME,BURNERNAME);
addWhereClause(CHDE_PP_BURNER_STEP_ENTRY::STEPNO,STEPNO);
m_Statement += getWhereStatement() +" order by HEATID,TREATID,PLANT,PRACNO,TREATMODENO,PRACPHASE,STEPNO;";
return CSMC_DBData::select();
}
bool CHDE_PP_BURNER_STEP_ENTRY::copy(const std::string& HEATID, const std::string& TREATID, const std::string& PLANT, long PLANTNO,long PRACNO, long TREATMODENO, long LIQ_ADD_AMOUNT,bool Commit, cCBS_ODBC_DBError &Error)
{
bool result = true;
//some data found -> delete them
if (exists(HEATID, TREATID, PLANT))
{
result = deleteRows();
if (!result)
setLastError(std::string("ERROR_DELETE_DATA"), 0, getActStatement());
}
// preparing setting for source table
CGTE_PP_BURNER_STEP_ENTRY GTE_PP_BURNER_STEP_ENTRY(m_pCBS_StdConnection);
GTE_PP_BURNER_STEP_ENTRY.addWhereClause(CGTE_PP_BURNER_STEP_ENTRY::PRACNO,PRACNO);
GTE_PP_BURNER_STEP_ENTRY.addWhereClause(CGTE_PP_BURNER_STEP_ENTRY::PLANT,PLANT);
GTE_PP_BURNER_STEP_ENTRY.addWhereClause(CGTE_PP_BURNER_STEP_ENTRY::PLANTNO,PLANTNO);
GTE_PP_BURNER_STEP_ENTRY.addWhereClause(CGTE_PP_BURNER_STEP_ENTRY::TREATMODENO,TREATMODENO);
GTE_PP_BURNER_STEP_ENTRY.addWhereClause(CGTE_PP_BURNER_STEP_ENTRY::LIQ_ADD_AMOUNT,LIQ_ADD_AMOUNT, "<=");
// preparing setting for aim table
setHEATID (HEATID);
setTREATID(TREATID);
setPLANT (PLANT);
result = result && copyByInsert(>E_PP_BURNER_STEP_ENTRY);
if (!result)
Error = getLastError();
if(Commit)
{
if (result)
commit();
else
rollback();
}
return result;
}
bool CHDE_PP_BURNER_STEP_ENTRY::exists(const std::string& HEATID, const std::string& TREATID, const std::string& PLANT)
{
cleanWhereStatement();
m_Statement = "Select HEATID from " + m_TableName;
addWhereClause(CHDE_PP_BURNER_STEP_ENTRY::HEATID,HEATID);
addWhereClause(CHDE_PP_BURNER_STEP_ENTRY::TREATID,TREATID);
addWhereClause(CHDE_PP_BURNER_STEP_ENTRY::PLANT,PLANT);
std::string sWhereStatement = getWhereStatement();
//to avoid the exception like 'Select HEATID from PP_HEAT AND ROWNUM = 1 '
if(sWhereStatement.length() > 0 )
{
// do not use ROWNUM in "addWhereClause", ROWNUM is not a table column and where statement will be used for deletion at "deleteRows"
m_Statement += sWhereStatement + " AND ROWNUM = 1 ;";
}
else
{
return false;
}
return CSMC_DBData::select();
}
| [
"52784069+FrankilPacha@users.noreply.github.com"
] | 52784069+FrankilPacha@users.noreply.github.com |
8a6ebae30f420bcfde8dffef165a913fe8757613 | 1dfcd7de98e5384cce5d2f41d2c263befc7a4d5d | /Day62/Restore Array from Adjacent Pairs.cpp | e89609993def9c6deeba946719fe119c621ea723 | [] | no_license | krishna-NIT/100DaysCodingChallenege | 6a3bc1c49131e17cdd77dd24ae286bb1dc3f9e6f | 769c2cd6ddcdee7aa629fd092d4e2d13324b7070 | refs/heads/main | 2023-03-19T09:46:36.312000 | 2021-03-11T15:32:29 | 2021-03-11T15:32:29 | 346,909,151 | 3 | 0 | null | 2021-03-12T02:29:32 | 2021-03-12T02:29:32 | null | UTF-8 | C++ | false | false | 1,344 | cpp | /*
Platform :- Leetcode
Contest :- Weekly Contest 226
Problem :- Restore the Array From Adjacent Pairs
Hint :- Start and end point have only one connection , find one and add the next element according use bool array to skip already used element
*/
class Solution {
public:
vector<int> restoreArray(vector<vector<int>>& A) {
map<int,vector<int>>P;
map<int,int>Q;
set<int>Z;
for(auto x:A){
P[x[0]].push_back(x[1]);
P[x[1]].push_back(x[0]);
Z.insert(x[0]);
Z.insert(x[1]);
}
vector<int>ans;
for(auto x:P){
if(x.second.size()==1){
ans.push_back(x.first);
ans.push_back(x.second[0]);
break;
}
}
Q[ans[0]]++;
Q[ans[1]]++;
int n=Z.size();
int temp=ans[1];
while(1){
int f=0;
for(int i=0;i<P[temp].size();++i){
if(Q[P[temp][i]]==0){
f=1;
Q[P[temp][i]]++;
ans.push_back(P[temp][i]);
temp=P[temp][i];
break;
}
}
if(n==ans.size() || f==0)break;
}
return ans;
}
};
| [
"noreply@github.com"
] | krishna-NIT.noreply@github.com |
3455cff77aa2a661f2dacaea187ca7ec21b5dfc2 | 62c45c77da533177b2cf234733cf34f18dfaf94a | /base/process/process_metrics.cc | f4a3ea1ac0577373a28635dad6ff943560f7344c | [
"Apache-2.0"
] | permissive | eval1749/elang | ff76d95c0000ed1d61434b387d319f950f68509a | 5208b386ba3a3e866a5c0f0271280f79f9aac8c4 | refs/heads/master | 2020-04-29T17:44:53.579355 | 2015-12-11T18:51:34 | 2015-12-11T18:51:34 | 28,262,329 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,697 | cc | // Copyright 2013 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/process/process_metrics.h"
#include <utility>
#include "base/logging.h"
#include "base/values.h"
namespace base {
SystemMetrics::SystemMetrics() {
committed_memory_ = 0;
}
SystemMetrics SystemMetrics::Sample() {
SystemMetrics system_metrics;
system_metrics.committed_memory_ = GetSystemCommitCharge();
#if defined(OS_LINUX) || defined(OS_ANDROID)
GetSystemMemoryInfo(&system_metrics.memory_info_);
GetSystemDiskInfo(&system_metrics.disk_info_);
#endif
#if defined(OS_CHROMEOS)
GetSwapInfo(&system_metrics.swap_info_);
#endif
return system_metrics;
}
scoped_ptr<Value> SystemMetrics::ToValue() const {
scoped_ptr<DictionaryValue> res(new DictionaryValue());
res->SetInteger("committed_memory", static_cast<int>(committed_memory_));
#if defined(OS_LINUX) || defined(OS_ANDROID)
res->Set("meminfo", memory_info_.ToValue());
res->Set("diskinfo", disk_info_.ToValue());
#endif
#if defined(OS_CHROMEOS)
res->Set("swapinfo", swap_info_.ToValue());
#endif
return std::move(res);
}
ProcessMetrics* ProcessMetrics::CreateCurrentProcessMetrics() {
#if !defined(OS_MACOSX) || defined(OS_IOS)
return CreateProcessMetrics(base::GetCurrentProcessHandle());
#else
return CreateProcessMetrics(base::GetCurrentProcessHandle(), nullptr);
#endif // !defined(OS_MACOSX) || defined(OS_IOS)
}
double ProcessMetrics::GetPlatformIndependentCPUUsage() {
#if defined(OS_WIN)
return GetCPUUsage() * processor_count_;
#else
return GetCPUUsage();
#endif
}
#if defined(OS_MACOSX) || defined(OS_LINUX)
int ProcessMetrics::CalculateIdleWakeupsPerSecond(
uint64 absolute_idle_wakeups) {
TimeTicks time = TimeTicks::Now();
if (last_absolute_idle_wakeups_ == 0) {
// First call, just set the last values.
last_idle_wakeups_time_ = time;
last_absolute_idle_wakeups_ = absolute_idle_wakeups;
return 0;
}
int64 wakeups_delta = absolute_idle_wakeups - last_absolute_idle_wakeups_;
int64 time_delta = (time - last_idle_wakeups_time_).InMicroseconds();
if (time_delta == 0) {
NOTREACHED();
return 0;
}
last_idle_wakeups_time_ = time;
last_absolute_idle_wakeups_ = absolute_idle_wakeups;
// Round to average wakeups per second.
int64 wakeups_delta_for_ms = wakeups_delta * Time::kMicrosecondsPerSecond;
return (wakeups_delta_for_ms + time_delta / 2) / time_delta;
}
#else
int ProcessMetrics::GetIdleWakeupsPerSecond() {
NOTIMPLEMENTED(); // http://crbug.com/120488
return 0;
}
#endif // defined(OS_MACOSX) || defined(OS_LINUX)
} // namespace base
| [
"eval1749@gmail.com"
] | eval1749@gmail.com |
adab037a3d742a6b5a15c6e3f6ff49bf47b238f0 | 98afe4757d95f8f4d4a9b850be724f6e91bb6a47 | /bfs/Course Schedule.cpp | c2677e5c111b4eb90fea054b096054c4972b54cf | [] | no_license | zRegle/algorithm | 89f8ec7920ebbb2addb037a3dfff9cb7f3bd8eae | e4d3157c1538e85b03d3a8711a5d7f072e396cf0 | refs/heads/master | 2021-12-26T17:47:12.755252 | 2021-08-17T08:32:28 | 2021-08-17T08:32:28 | 143,532,531 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 2,207 | cpp | #include <stack>
#include <vector>
using namespace std;
/**
* leetcode 207. Course Schedule
* 有一系列课程, 有些课程需要在学习了某一门课程后才能学习
* 给定一系列这样的关系, 问是否可以完成所有课程
* 例如:
* Input: 2, [[0,1]]
* Output: true
* Explanation: There are a total of 2 courses to take.
* To take course 1 you should have finished course 0. So it is possible.
*
* Input: 2, [[1,0],[0,1]]
* Output: false
* Explanation: There are a total of 2 courses to take.
* To take course 1 you should have finished course 0, and to take course 0 you should
* also have finished course 1. So it is impossible.
*
* 实质上就是判断图是否存在环路, 可利用拓扑排序
*/
/*
* 拓扑排序
* 两个数组结构: 一个栈(队列)用来保存入度为0的顶点, 一个数组用来统计顶点的入度
* 过程:
* 1.初始化: 将入度为0的顶点入栈(队列)
* 2.循环中: 弹出栈顶元素, 输出该顶点, 将与该顶点指向的邻居的入度数减一
* 将入度为0的顶点入栈(队列)
* 当栈为空时, 判断是否还有节点未输出, 如果是, 说明在循环中找不到入度为0的顶点, 说明有环
*/
class Solution {
public:
bool canFinish(int numCourses, vector<vector<int>>& prerequisites) {
vector<int> indegree(numCourses, 0);
vector<vector<int>> graph(numCourses, vector<int>());
/* 构建邻接矩阵并且统计入度 */
for (vector<int>& edge : prerequisites) {
graph[edge[0]].push_back(edge[1]);
indegree[edge[1]]++;
}
/* 入度为0的入栈 */
stack<int> s;
for (int i = 0; i < numCourses; i++) {
if (indegree[i] == 0)
s.push(i);
}
/* 拓扑排序 */
int node;
while (!s.empty()) {
node = s.top(); s.pop();
numCourses--; /* 输出该节点 */
for (int neighbor : graph[node])
if (--indegree[neighbor] == 0)
s.push(neighbor);
}
/* 还有节点未输出, 有环 */
return numCourses == 0;
}
}; | [
"zregle@163.com"
] | zregle@163.com |
84b6cd9b01ddd272b9164847c44394f2a18be480 | b89d9b5aeb327c22c7d5ef2dafc407a453a93575 | /src/BasicRenderer.cpp | 4c48f64198e8276dac18e998e31449121461672a | [] | no_license | peterkain/OpenGL-2D-Playground | a070db4ac08d1459ab2ebd80c42067f194b72f22 | a1baeaf816794681e132a966d125f60352d13d57 | refs/heads/master | 2020-03-18T03:59:42.703849 | 2018-06-19T05:45:25 | 2018-06-19T05:45:25 | 134,266,360 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,286 | cpp | #include "BasicRenderer.h"
#include "types/IntTypes.h"
#include "ShaderProgram.h"
#include "math/Matrix4x4.h"
#include "Input.h"
#include <array>
#include <iostream>
#include <GLFW/glfw3.h>
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
GLuint BasicRenderer::_vao;
std::array<GLuint, 2> BasicRenderer::_buffers;
Matrix4x4 BasicRenderer::_projection = Matrix::orthographic(0, 960, 0, 540, 5, -5);
const std::array<GLfloat, 8> QUAD_VERTEX_POSITIONS =
{
1.0f, 1.0f,
1.0f, -1.0f,
-1.0f, -1.0f,
-1.0f, 1.0f
};
const std::array<uintl8, 6> QUAD_VERTEX_ORDER =
{
0, 1, 2,
2, 3, 0
};
void BasicRenderer::init()
{
glGenVertexArrays(1, &_vao);
glGenBuffers(2, _buffers.data());
glBindVertexArray(_vao);
glBindBuffer(GL_ARRAY_BUFFER, _buffers[vertex_buffers::VBO]);
glBufferData(GL_ARRAY_BUFFER, sizeof(QUAD_VERTEX_POSITIONS), QUAD_VERTEX_POSITIONS.data(), GL_STATIC_DRAW);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, _buffers[vertex_buffers::EBO]);
glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(QUAD_VERTEX_ORDER), QUAD_VERTEX_ORDER.data(), GL_STATIC_DRAW);
glEnableVertexAttribArray(0);
glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, sizeof(GL_FLOAT) * 2, 0);
glBindBuffer(GL_ARRAY_BUFFER, 0);
glBindVertexArray(0);
}
void BasicRenderer::update_proj(const uintl16& w, const uintl16& h)
{
_projection = Matrix::orthographic(0, w, 0, h, 5, -5);
}
void BasicRenderer::draw_rect(const GLuint& program, const Vector2& pos, const GLfloat& angle, const Vector3& rotation, const Vector2& scale, const Vector4& color)
{
glUseProgram(program);
Matrix4x4 model {1.0f};
model.translate_by(pos.x + scale.x, pos.y + scale.y, 0.0f);
model.rotate_by(angle, rotation.x, rotation.y, rotation.z);
model.scale_by(scale.x, scale.y, 1);
Matrix4x4 mvp {1.0f};
mvp *= _projection;
mvp *= *Input::camera.get_view_matrix();
mvp *= model;
ShaderProgram::set_vec4(program, "u_color", color);
ShaderProgram::set_mat4(program, "u_mvp", mvp);
glBindVertexArray(_vao);
glDrawElements(GL_TRIANGLES, 6, GL_UNSIGNED_BYTE, nullptr);
glBindVertexArray(0);
}
| [
"noreply@github.com"
] | peterkain.noreply@github.com |
9d8da1d8b0b808fcf48cfd911b6b00c744af0c99 | 39eac74fa6a244d15a01873623d05f480f45e079 | /SearchReportDescDlg.h | 611b0190b2b5964b3fd33c07902746ef3ef6cc77 | [] | no_license | 15831944/Practice | a8ac8416b32df82395bb1a4b000b35a0326c0897 | ae2cde9c8f2fb6ab63bd7d8cd58701bd3513ec94 | refs/heads/master | 2021-06-15T12:10:18.730367 | 2016-11-30T15:13:53 | 2016-11-30T15:13:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,994 | h | #if !defined(AFX_CSearchReportDescDlg_H__2726141B_F9F6_47A5_9B5A_77D262B3764A__INCLUDED_)
#define AFX_CSearchReportDescDlg_H__2726141B_F9F6_47A5_9B5A_77D262B3764A__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// CSearchReportDescDlg.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CSearchReportDescDlg dialog
class CSearchReportDescDlg : public CNxDialog
{
// Construction
public:
CSearchReportDescDlg(CWnd* pParent); // standard constructor
CView* m_pReportView;
// (z.manning, 04/28/2008) - pLID 29807 - Added NxIconButton
// Dialog Data
//{{AFX_DATA(CSearchReportDescDlg)
enum { IDD = IDD_SEARCH_REPORT_DESC };
CNxEdit m_nxeditSearchText;
CNxIconButton m_btnCancel;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CSearchReportDescDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
//}}AFX_VIRTUAL
// Implementation
protected:
NXDATALISTLib::_DNxDataListPtr m_pReportList;
CStringArray m_arySearchParts;
void AddReport(long nRepID);
CString GetTabNameFromCategory(CString strCat);
void BuildSearchArray(CString strSearchString);
void ClearSearchArray();
// Generated message map functions
//{{AFX_MSG(CSearchReportDescDlg)
afx_msg void OnSearchButton();
virtual void OnCancel();
virtual void OnOK();
virtual BOOL OnInitDialog();
afx_msg void OnDblClickCellReportDescList(long nRowIndex, short nColIndex);
afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
afx_msg void OnRButtonDownReportDescList(long nRow, short nCol, long x, long y, long nFlags);
DECLARE_EVENTSINK_MAP()
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_CSearchReportDescDlg_H__2726141B_F9F6_47A5_9B5A_77D262B3764A__INCLUDED_)
| [
"h.shah@WALD"
] | h.shah@WALD |
a8c9815412ea56ea3b8b635cdae344c6b36daf7d | f5c5afb6e8c4afc8bad23333de836fb7d607d971 | /server/game/ray_cast_callback/portal_ray_cast_callback.cpp | 2298b1cc3d978a1a927e379ac7f2a58703ef8c9b | [
"MIT"
] | permissive | dima1997/PORTAL_2D_copy | 471fa199c2886a9e1e3b53f7796b8f4cd922099d | 7618d970feded3fc05fda0c422a5d76a1d3056c7 | refs/heads/master | 2020-09-05T14:36:04.176004 | 2019-06-26T01:03:51 | 2019-06-26T01:03:51 | 220,131,617 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 807 | cpp | //
// Created by franciscosicardi on 06/06/19.
//
#include <Box2D/Dynamics/b2Fixture.h>
#include "../model/body.h"
#include "portal_ray_cast_callback.h"
PortalRaycastCallback::PortalRaycastCallback(Chell *chell): chell(chell), lastFixture(), point(), normal() {}
float32 PortalRaycastCallback::ReportFixture(b2Fixture *fixture, const b2Vec2 &point, const b2Vec2 &normal, float32 fraction) {
lastFixture = fixture;
this->point = b2Vec2(point);
this->normal = b2Vec2(normal);
if (((Body *)fixture->GetBody()->GetUserData()) == chell) {
return -1;
}
return fraction;
}
b2Fixture *PortalRaycastCallback::getFixture() {
return lastFixture;
}
b2Vec2 PortalRaycastCallback::getPoint() {
return point;
}
b2Vec2 PortalRaycastCallback::getNormal() {
return normal;
}
| [
"francisco.sicardi@despegar.com"
] | francisco.sicardi@despegar.com |
904143a9a35e2043356c97f30bccdf16d9d043f0 | 07cbe159795612509c2e7e59eb9c8ff6c6ed6b0d | /partitioned/RayleighBenard/Ra_1e+05_multiFluidBoussinesqFoam_hiRes_lowB/ref_200/divu.stable | 6a5a0b63d64a5e27e18897969abba96d8ef914c2 | [] | no_license | AtmosFOAM/danRun | aacaaf8a22e47d1eb6390190cb98fbe846001e7a | 94d19c4992053d7bd860923e9605c0cbb77ca8a2 | refs/heads/master | 2021-03-22T04:32:10.679600 | 2020-12-03T21:09:40 | 2020-12-03T21:09:40 | 118,792,506 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 477,593 | stable | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: dev
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "200";
object divu.stable;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 -1 0 0 0 0];
internalField nonuniform List<scalar>
25000
(
-7.17826938883e-06
-1.55042667083e-06
-1.02241311844e-06
-1.02278813974e-06
-1.02227300725e-06
-1.02241854809e-06
-1.02104487557e-06
-1.02082596165e-06
-1.02155365179e-06
-1.02064592674e-06
-1.02058686079e-06
-1.02071881137e-06
-1.02060754428e-06
-1.02088228672e-06
-1.02073409973e-06
-1.01994658829e-06
-1.02065223233e-06
-1.01944714469e-06
-1.02017237522e-06
-1.019262278e-06
-1.01895765692e-06
-1.01931703958e-06
-1.01923813923e-06
-1.01876194203e-06
-1.01920379178e-06
-1.01943503428e-06
-1.01864442418e-06
-1.01976708802e-06
-1.02016478297e-06
-1.02077155877e-06
-1.02186578745e-06
-1.0224156199e-06
-1.02331392421e-06
-1.02327748675e-06
-1.02291988189e-06
-1.02174718385e-06
-1.02136377211e-06
-1.02069974413e-06
-1.01977164351e-06
-1.01978604657e-06
-1.01955215266e-06
-1.01917936737e-06
-1.01909925896e-06
-1.01981175767e-06
-1.0201315477e-06
-1.02025709053e-06
-1.02093721336e-06
-1.02137394389e-06
-1.02181549182e-06
-1.02217071285e-06
-1.02232765813e-06
-1.02244488472e-06
-1.02232956756e-06
-1.02195519037e-06
-1.02203836367e-06
-1.02190722549e-06
-1.02147038245e-06
-1.02239699305e-06
-1.02321438595e-06
-1.022545976e-06
-1.02208495206e-06
-1.02213391332e-06
-1.02179127536e-06
-1.02157593076e-06
-1.02192353236e-06
-1.02202534651e-06
-1.02189512962e-06
-1.02204380561e-06
-1.02212629185e-06
-1.0220005564e-06
-1.02193078934e-06
-1.02186276687e-06
-1.02166240798e-06
-1.02153014201e-06
-1.02175276914e-06
-1.02208347493e-06
-1.02234134851e-06
-1.02237854088e-06
-1.02233599783e-06
-1.02234541869e-06
-1.02248462739e-06
-1.02264549808e-06
-1.02243952314e-06
-1.02185813372e-06
-1.02138948588e-06
-1.02137768222e-06
-1.02154460078e-06
-1.02176547146e-06
-1.02185154105e-06
-1.02185112021e-06
-1.02176322264e-06
-1.02158055168e-06
-1.02140797589e-06
-1.02135438012e-06
-1.02126527388e-06
-1.02104430574e-06
-1.02084385029e-06
-1.02072230288e-06
-1.02061737138e-06
-1.02044359338e-06
-1.0203827918e-06
-1.02054129747e-06
-1.02088654428e-06
-1.02105948347e-06
-1.02114650576e-06
-1.02128977761e-06
-1.02146053056e-06
-1.02169401235e-06
-1.02205795269e-06
-1.02255663963e-06
-1.02286490665e-06
-1.02294770598e-06
-1.02278660665e-06
-1.02244704671e-06
-1.02205774166e-06
-1.0216367995e-06
-1.02127960647e-06
-1.02102735749e-06
-1.02085484417e-06
-1.02078926678e-06
-1.0209096107e-06
-1.02120875241e-06
-1.02142477283e-06
-1.02173514437e-06
-1.02222678164e-06
-1.02233248809e-06
-1.02241439214e-06
-1.02266408364e-06
-1.02255994511e-06
-1.02226205423e-06
-1.0223327463e-06
-1.02222750312e-06
-1.0220038107e-06
-1.02185537832e-06
-1.02160937016e-06
-1.02151016781e-06
-1.02207425589e-06
-1.02275897278e-06
-1.02289767922e-06
-1.02263884734e-06
-1.02213129154e-06
-1.02170311035e-06
-1.0213356241e-06
-1.02083831671e-06
-1.02036380218e-06
-1.0201319682e-06
-1.02013119015e-06
-1.02013807404e-06
-1.02023883099e-06
-1.02034270042e-06
-1.02032278059e-06
-1.02027503551e-06
-1.02027618967e-06
-1.02045525519e-06
-1.02087733255e-06
-1.02127566115e-06
-1.02143367698e-06
-1.02176625483e-06
-1.0219182566e-06
-1.02167290652e-06
-1.02213575528e-06
-1.02262036399e-06
-1.02129237915e-06
-1.02000213401e-06
-1.02065647241e-06
-1.021202671e-06
-1.02080559755e-06
-1.02085762874e-06
-1.02107285412e-06
-1.0208307026e-06
-1.02070689454e-06
-1.020902912e-06
-1.02080074055e-06
-1.02042332398e-06
-1.0202220527e-06
-1.0202264713e-06
-1.02019709808e-06
-1.02000442047e-06
-1.01965524371e-06
-1.0193558665e-06
-1.01924700007e-06
-1.01918810579e-06
-1.01913710625e-06
-1.01921952443e-06
-1.01950365154e-06
-1.01980888775e-06
-1.0200143606e-06
-1.02036687638e-06
-1.020612837e-06
-1.0205765933e-06
-1.02042419038e-06
-1.02032707919e-06
-1.02027196463e-06
-1.02053259265e-06
-1.02101296435e-06
-1.02156161333e-06
-1.02198701911e-06
-1.02239112803e-06
-1.02276525834e-06
-1.02296103655e-06
-1.02277350197e-06
-1.02242669092e-06
-1.02211877349e-06
-1.02167812976e-06
-1.02114693359e-06
-1.02084166274e-06
-1.02080852183e-06
-1.0209236277e-06
-1.0210257372e-06
-1.02114460565e-06
-1.02139413176e-06
-1.02149096033e-06
-1.02151395148e-06
-1.02137583376e-06
-1.02102239383e-06
-1.02095809582e-06
-1.02120974034e-06
-1.02095362449e-06
-1.02057143111e-06
-1.02066113909e-06
-1.02065478382e-06
-1.02058348084e-06
-1.02112025032e-06
-1.02191294256e-06
-1.02182368791e-06
-1.02182150098e-06
-1.02198325292e-06
-1.02205260517e-06
-1.02218721898e-06
-1.02229684159e-06
-1.02235083454e-06
-1.02221814079e-06
-1.02213979363e-06
-1.02229283554e-06
-1.0223905274e-06
-1.02196042837e-06
-1.02174191674e-06
-1.02225540982e-06
-1.0226455281e-06
-1.02266305676e-06
-1.0228071468e-06
-1.02321878671e-06
-1.02358561812e-06
-1.02369585586e-06
-1.02355331377e-06
-1.0230459836e-06
-1.02236501392e-06
-1.02225918283e-06
-1.02258117232e-06
-1.02320317551e-06
-1.02388533523e-06
-1.02351654629e-06
-1.02214016003e-06
-1.02147289021e-06
-1.02115486428e-06
-1.02067705998e-06
-1.02037281488e-06
-1.02020932373e-06
-1.01973454765e-06
-1.01957031998e-06
-1.02024053337e-06
-1.02062915127e-06
-1.02081974019e-06
-1.02121154462e-06
-1.02106879943e-06
-1.02116455817e-06
-1.02169492253e-06
-1.02201442672e-06
-1.02189694166e-06
-1.02191210372e-06
-1.02210954839e-06
-1.02201803702e-06
-1.02196945491e-06
-1.02184081824e-06
-1.02147168152e-06
-1.02097460969e-06
-1.02063201265e-06
-1.02061040336e-06
-1.02063889831e-06
-1.02043075134e-06
-1.02042710127e-06
-1.02065512329e-06
-1.0205978366e-06
-1.02045366132e-06
-1.02071148979e-06
-1.02083280431e-06
-1.02079995678e-06
-1.02082329392e-06
-1.02114936544e-06
-1.02118498053e-06
-1.02100490532e-06
-1.02118696299e-06
-1.02136495754e-06
-1.02130865404e-06
-1.0209542265e-06
-1.02110434562e-06
-1.02114354821e-06
-1.02129136974e-06
-1.02118399259e-06
-1.02130022222e-06
-1.02172000441e-06
-1.02170758435e-06
-1.02130725466e-06
-1.02074798387e-06
-1.02036934347e-06
-1.02044702476e-06
-1.02094535531e-06
-1.02138979133e-06
-1.02189827442e-06
-1.02230719556e-06
-1.02272523205e-06
-1.02316487793e-06
-1.02339261836e-06
-1.02313840111e-06
-1.02264071198e-06
-1.0220379817e-06
-1.02157828866e-06
-1.02158153243e-06
-1.02172364264e-06
-1.02183323859e-06
-1.02198313372e-06
-1.02202355395e-06
-1.02219873026e-06
-1.02247879604e-06
-1.02202402364e-06
-1.0213084987e-06
-1.02130257784e-06
-1.02149055659e-06
-1.02162065524e-06
-1.02130781384e-06
-1.02082464631e-06
-1.02004039653e-06
-1.01965282996e-06
-1.02009000082e-06
-1.02055626562e-06
-1.02076823781e-06
-1.02086223856e-06
-1.02067279241e-06
-1.02048906214e-06
-1.02037961954e-06
-1.02018493468e-06
-1.019732498e-06
-1.01944687336e-06
-1.01939388991e-06
-1.01949346511e-06
-1.01978391124e-06
-1.02007182358e-06
-1.02025616389e-06
-1.02041573888e-06
-1.02046142136e-06
-1.0203257202e-06
-1.02011168922e-06
-1.01984963684e-06
-1.01968890242e-06
-1.0196425292e-06
-1.01975400046e-06
-1.0201235148e-06
-1.02059638545e-06
-1.0209377207e-06
-1.02124377367e-06
-1.02162537967e-06
-1.02201644043e-06
-1.02238954617e-06
-1.02237314872e-06
-1.02198262706e-06
-1.02148354522e-06
-1.02091654682e-06
-1.02064079707e-06
-1.02077845427e-06
-1.0212720425e-06
-1.02188156873e-06
-1.02242921998e-06
-1.02262643563e-06
-1.02259362586e-06
-1.02279255779e-06
-1.02264875954e-06
-1.02199737255e-06
-1.02164810106e-06
-1.02153326944e-06
-1.02110376844e-06
-1.02106887505e-06
-1.02147125853e-06
-1.02193113077e-06
-1.02243420248e-06
-1.02267284232e-06
-1.02256005083e-06
-1.02216704416e-06
-1.02154912585e-06
-1.02094011599e-06
-1.02065152572e-06
-1.02084044059e-06
-1.02114644834e-06
-1.02131948166e-06
-1.02148393814e-06
-1.02191024879e-06
-1.02213755728e-06
-1.02185575639e-06
-1.02175494278e-06
-1.02195891047e-06
-1.02173072621e-06
-1.0218254991e-06
-1.02279767936e-06
-1.02272721228e-06
-1.02163463538e-06
-1.0210855864e-06
-1.02110039122e-06
-1.02119162574e-06
-1.02158254744e-06
-1.0216370705e-06
-1.02150157995e-06
-1.02134011793e-06
-1.02107117435e-06
-1.0208747243e-06
-1.02084103378e-06
-1.02085579265e-06
-1.02096127842e-06
-1.02121511096e-06
-1.02164234648e-06
-1.02215363243e-06
-1.02239497374e-06
-1.02241238137e-06
-1.02228987745e-06
-1.02186288372e-06
-1.02105396373e-06
-1.02001694663e-06
-1.01917512089e-06
-1.01891726329e-06
-1.01922652562e-06
-1.01987932557e-06
-1.02066746728e-06
-1.02115359058e-06
-1.02131048305e-06
-1.02126419724e-06
-1.02117835668e-06
-1.02116876697e-06
-1.02150140544e-06
-1.02200279992e-06
-1.02261763933e-06
-1.02285828104e-06
-1.02271601336e-06
-1.02249344272e-06
-1.02189347383e-06
-1.02093741231e-06
-1.01970756288e-06
-1.0187078309e-06
-1.01850539526e-06
-1.01897088683e-06
-1.01969127988e-06
-1.02079342573e-06
-1.02208244331e-06
-1.02270184131e-06
-1.02302706602e-06
-1.02355575095e-06
-1.02394363359e-06
-1.02427201352e-06
-1.02456623984e-06
-1.02453005274e-06
-1.02396451356e-06
-1.02309926808e-06
-1.02197479082e-06
-1.02095607292e-06
-1.0199375868e-06
-1.01952473283e-06
-1.01970946044e-06
-1.0197652041e-06
-1.01946327053e-06
-1.01921988884e-06
-1.01983933553e-06
-1.02132218351e-06
-1.02178215792e-06
-1.02254936203e-06
-1.02410186474e-06
-1.02175231828e-06
-1.01872736491e-06
-1.02061305947e-06
-1.02227464416e-06
-1.02105304215e-06
-1.02086851685e-06
-1.02112078817e-06
-1.02088193478e-06
-1.02206106938e-06
-1.02336073381e-06
-1.0230200564e-06
-1.022341985e-06
-1.02200019188e-06
-1.02138688846e-06
-1.02117790979e-06
-1.02217877438e-06
-1.02199366712e-06
-1.02021629659e-06
-1.01995993833e-06
-1.02048337721e-06
-1.02075440723e-06
-1.02177115961e-06
-1.02190932644e-06
-1.02124886542e-06
-1.02176472972e-06
-1.02269792568e-06
-1.02904647246e-06
-1.69890025606e-06
5.22102905226e-07
1.03942627432e-06
1.03423930099e-06
1.03090558936e-06
1.02551069534e-06
1.02255454792e-06
1.02116311845e-06
1.0221694352e-06
1.02245231136e-06
1.02178650688e-06
1.0225512428e-06
1.02213412285e-06
1.02171425825e-06
1.02238800663e-06
1.02308012244e-06
1.02287036685e-06
1.02329003854e-06
1.02471689836e-06
1.02374728397e-06
1.02335072511e-06
1.0242073109e-06
1.02473858137e-06
1.02413148462e-06
1.02480681922e-06
1.02566680243e-06
1.02422240026e-06
1.02319370081e-06
1.02365229094e-06
1.02245917762e-06
1.02125123865e-06
1.02058535635e-06
1.02046607193e-06
1.02017183778e-06
1.0207820013e-06
1.02211121606e-06
1.022992472e-06
1.02379636641e-06
1.02417054268e-06
1.02490632304e-06
1.02529716448e-06
1.02485259807e-06
1.02435410658e-06
1.0243072394e-06
1.02347121481e-06
1.02202405521e-06
1.02095336639e-06
1.02039496638e-06
1.01991091945e-06
1.01971570673e-06
1.020032679e-06
1.02015344695e-06
1.0198237583e-06
1.01998884558e-06
1.02106922564e-06
1.0210342727e-06
1.0200525242e-06
1.02078653663e-06
1.02133414689e-06
1.02043155216e-06
1.02040966801e-06
1.0210424899e-06
1.02071168838e-06
1.02045920144e-06
1.02063452651e-06
1.02066740748e-06
1.02058814367e-06
1.02052555217e-06
1.02038581879e-06
1.02011147329e-06
1.02020497334e-06
1.02081069994e-06
1.02125827437e-06
1.02121324245e-06
1.02095679242e-06
1.02059745828e-06
1.02030592746e-06
1.02008295737e-06
1.01977969459e-06
1.01953255896e-06
1.0193373807e-06
1.01939219737e-06
1.01983973744e-06
1.02060882942e-06
1.02127895549e-06
1.02155198546e-06
1.02138144881e-06
1.02102594464e-06
1.02073749862e-06
1.02082315162e-06
1.02110812162e-06
1.02125302821e-06
1.02141678079e-06
1.0217735421e-06
1.02217177542e-06
1.02226384247e-06
1.02239389242e-06
1.02264584699e-06
1.02299215084e-06
1.02338190975e-06
1.02355055291e-06
1.02343198216e-06
1.02325089357e-06
1.02289075512e-06
1.02268653933e-06
1.02261443646e-06
1.02240260127e-06
1.02202734379e-06
1.02133637425e-06
1.02043265998e-06
1.0197198791e-06
1.01956499169e-06
1.01985412083e-06
1.02032410434e-06
1.02094821934e-06
1.02156552742e-06
1.02199207341e-06
1.02228345619e-06
1.02245560436e-06
1.02245222581e-06
1.02226347008e-06
1.0218713267e-06
1.0214767356e-06
1.02095563236e-06
1.0204603507e-06
1.02017289591e-06
1.0198632123e-06
1.01960439503e-06
1.01935852572e-06
1.01876931259e-06
1.01899883826e-06
1.02003750973e-06
1.02088497125e-06
1.02129729156e-06
1.02098038369e-06
1.02004645221e-06
1.01958715852e-06
1.01977988604e-06
1.01974839193e-06
1.02013348466e-06
1.02087765636e-06
1.02147137341e-06
1.02228341659e-06
1.02316129276e-06
1.02371168164e-06
1.02419099292e-06
1.02464394093e-06
1.02464309019e-06
1.02425204292e-06
1.02397295149e-06
1.02390930978e-06
1.02382152159e-06
1.02368332689e-06
1.02336494997e-06
1.02280316003e-06
1.02198133404e-06
1.02099974234e-06
1.02037886881e-06
1.01974384307e-06
1.01908104691e-06
1.02001860365e-06
1.0214056645e-06
1.02073555929e-06
1.02008106283e-06
1.02152986498e-06
1.0224628556e-06
1.02226890866e-06
1.02266591171e-06
1.02296789343e-06
1.02259767307e-06
1.02245217149e-06
1.02288928369e-06
1.02327678078e-06
1.0233784494e-06
1.02368341859e-06
1.02403460734e-06
1.02436552517e-06
1.02481844099e-06
1.02511412388e-06
1.02515100349e-06
1.02538207468e-06
1.02554106391e-06
1.0253379431e-06
1.02503601953e-06
1.02474311678e-06
1.0243411119e-06
1.02376814888e-06
1.02335036997e-06
1.02319170127e-06
1.02312303444e-06
1.02322410224e-06
1.02328326617e-06
1.0229783947e-06
1.02253538979e-06
1.02210665634e-06
1.02150794496e-06
1.02065451808e-06
1.0197405566e-06
1.01922568496e-06
1.01918127636e-06
1.01922472769e-06
1.01955715416e-06
1.02027139756e-06
1.02100413217e-06
1.02134060738e-06
1.0215737073e-06
1.02191097271e-06
1.02208442198e-06
1.02194128611e-06
1.02154529366e-06
1.02135051838e-06
1.02135436693e-06
1.02155064717e-06
1.02174176194e-06
1.02201777795e-06
1.0223380599e-06
1.02276219746e-06
1.02302951201e-06
1.02293774594e-06
1.02304451921e-06
1.02300994264e-06
1.02268177952e-06
1.02300843674e-06
1.02367544429e-06
1.02324589217e-06
1.02275214369e-06
1.02281257647e-06
1.02264014134e-06
1.02254556815e-06
1.02271435096e-06
1.02235218921e-06
1.02164885296e-06
1.02130373405e-06
1.0209476577e-06
1.02052751454e-06
1.01973786881e-06
1.01876731083e-06
1.01845750313e-06
1.01825520519e-06
1.01755724909e-06
1.01691251313e-06
1.01668967623e-06
1.01682655802e-06
1.0172764816e-06
1.01773447432e-06
1.01795714192e-06
1.01822241527e-06
1.01874830161e-06
1.01909497621e-06
1.01972266408e-06
1.02070353523e-06
1.02063040821e-06
1.02006683042e-06
1.02105479321e-06
1.02264642296e-06
1.02365807446e-06
1.02474901753e-06
1.02548189161e-06
1.02476724367e-06
1.0235953396e-06
1.02343595161e-06
1.02302571e-06
1.02203483767e-06
1.02155907689e-06
1.02060512314e-06
1.01982578183e-06
1.01973058174e-06
1.01965131147e-06
1.01945806217e-06
1.0195492566e-06
1.02001762635e-06
1.02049650665e-06
1.02118554084e-06
1.02179543554e-06
1.022192441e-06
1.0227350245e-06
1.02333746475e-06
1.02389676306e-06
1.02430285685e-06
1.02425768559e-06
1.02406289955e-06
1.02394585083e-06
1.02368864666e-06
1.02352725782e-06
1.02377198784e-06
1.023716982e-06
1.02334033271e-06
1.02286747635e-06
1.02276669579e-06
1.02252514688e-06
1.02224974872e-06
1.02262399986e-06
1.02276628059e-06
1.02263392931e-06
1.02226590413e-06
1.02202071853e-06
1.02174897104e-06
1.02134845585e-06
1.02081510229e-06
1.02114402679e-06
1.02193202538e-06
1.02249884691e-06
1.02310392499e-06
1.0234917012e-06
1.0238951665e-06
1.02398137555e-06
1.02366295956e-06
1.02305362524e-06
1.02216862679e-06
1.02086225868e-06
1.01946136772e-06
1.01849567954e-06
1.01818926166e-06
1.01852062148e-06
1.01941329436e-06
1.0201610577e-06
1.02043394683e-06
1.02048306977e-06
1.02038858832e-06
1.02016166253e-06
1.02015248493e-06
1.02041724784e-06
1.02100955771e-06
1.02191219535e-06
1.02207645253e-06
1.02139043871e-06
1.02123088524e-06
1.02148641875e-06
1.02213876221e-06
1.02307738689e-06
1.02360807723e-06
1.02339964106e-06
1.02328124898e-06
1.02318523436e-06
1.0229216133e-06
1.02260040919e-06
1.02226719427e-06
1.02183327856e-06
1.02184050873e-06
1.02242500191e-06
1.0232928185e-06
1.02392941678e-06
1.02455890469e-06
1.02495108487e-06
1.02493506717e-06
1.02471820507e-06
1.02443414058e-06
1.02406287427e-06
1.02386630508e-06
1.02393766928e-06
1.02408117745e-06
1.02427308499e-06
1.0247197391e-06
1.02525728386e-06
1.02528812622e-06
1.02473492306e-06
1.02397894528e-06
1.02326692298e-06
1.02261797009e-06
1.02206189932e-06
1.02156734261e-06
1.02082345096e-06
1.0200622909e-06
1.01973546827e-06
1.02020497588e-06
1.02107860534e-06
1.02184389951e-06
1.02238632421e-06
1.02206194945e-06
1.02097185362e-06
1.01988726605e-06
1.01912869016e-06
1.018562449e-06
1.01859283534e-06
1.01965751945e-06
1.02055011463e-06
1.02090737908e-06
1.02175767084e-06
1.02304665929e-06
1.02377135109e-06
1.02369215907e-06
1.02308285783e-06
1.02188127722e-06
1.02037665035e-06
1.01952519853e-06
1.01970965521e-06
1.0203237867e-06
1.02094193197e-06
1.02139523034e-06
1.0215112423e-06
1.02146341014e-06
1.02119700705e-06
1.02050426497e-06
1.01977877733e-06
1.01972459718e-06
1.02009041552e-06
1.02054208186e-06
1.0212681178e-06
1.02158658556e-06
1.02055102219e-06
1.01989687073e-06
1.02084512083e-06
1.02158100181e-06
1.02190689578e-06
1.02254592867e-06
1.02268405301e-06
1.02194290199e-06
1.02152829212e-06
1.02164469626e-06
1.02225763301e-06
1.0230692225e-06
1.02353726707e-06
1.02363224186e-06
1.02364099822e-06
1.02357760654e-06
1.02323088869e-06
1.0225758734e-06
1.0217206975e-06
1.0209089295e-06
1.02028111654e-06
1.02020814406e-06
1.02068510614e-06
1.02151684599e-06
1.02267723537e-06
1.02395536673e-06
1.02495349355e-06
1.02528519789e-06
1.02472535661e-06
1.02348031434e-06
1.02220673631e-06
1.02135457797e-06
1.02079453281e-06
1.02038386614e-06
1.02030763304e-06
1.02037844966e-06
1.02040375238e-06
1.01985989159e-06
1.01929205367e-06
1.01895919915e-06
1.018878429e-06
1.01944022027e-06
1.02068083904e-06
1.02181633361e-06
1.02287652902e-06
1.02414361455e-06
1.02478688343e-06
1.0242529848e-06
1.02353969864e-06
1.02285931498e-06
1.02148998427e-06
1.0197061201e-06
1.01830047624e-06
1.0182051636e-06
1.0187259357e-06
1.01880702476e-06
1.01912416337e-06
1.01949815997e-06
1.01937875734e-06
1.02004385989e-06
1.02176333127e-06
1.02330923776e-06
1.02430752654e-06
1.02477380738e-06
1.02440050355e-06
1.02413818433e-06
1.0239486984e-06
1.02270397184e-06
1.02156173372e-06
1.0208907859e-06
1.01896402708e-06
1.0185697261e-06
1.02135604252e-06
1.02139625881e-06
1.02033858604e-06
1.02359993628e-06
1.02534166968e-06
1.02305814755e-06
1.02238163498e-06
1.02297632565e-06
1.02167185716e-06
1.02010526538e-06
1.01976429629e-06
1.02057925449e-06
1.02221859263e-06
1.02336231464e-06
1.0230804161e-06
1.02248593788e-06
1.02245369356e-06
1.02283137359e-06
1.02394862632e-06
1.02449912119e-06
1.02429360214e-06
1.02346605897e-06
1.0219570927e-06
1.02226525083e-06
1.02280037272e-06
1.02569414181e-06
1.03309391694e-06
1.0439778186e-06
1.07165148276e-06
1.03698474145e-06
-1.00803467759e-08
1.92332486433e-09
1.11057290217e-09
3.29932832543e-10
2.20911163669e-09
1.80571505429e-09
5.49114201409e-10
1.6183704246e-09
1.46554381688e-09
5.11612135306e-10
1.24696442374e-09
4.47853847784e-10
1.29433040027e-09
1.13781480524e-09
2.69818067831e-09
2.7712201176e-09
3.17140295111e-09
3.417683498e-09
3.85449955357e-09
4.07691902351e-09
3.82331270042e-09
3.92028706733e-09
4.19266454051e-09
3.97572309733e-09
3.95632628107e-09
4.21617421458e-09
2.42738150546e-09
2.00205400921e-09
1.6014967342e-09
-5.54466073207e-10
-1.46855036032e-09
-1.97567110343e-09
-1.45534638723e-09
-1.32564414954e-09
-2.9436692494e-10
1.46709918113e-10
1.05636506995e-09
2.26907781064e-09
2.67405802701e-09
2.7159450768e-09
2.81320415266e-09
3.16272509857e-09
3.00602061519e-09
2.37421556346e-09
1.39127321521e-09
5.542435153e-10
6.94389986863e-10
6.75555574006e-10
-2.57332844541e-11
-8.2389867752e-10
-8.46833682753e-10
-8.08025915363e-10
-1.27559329032e-09
-5.97446324895e-10
2.88764040221e-10
-6.76871466159e-10
-1.12734942863e-09
-4.58605548004e-10
-6.29264614633e-10
-1.01453344788e-09
-5.26198254416e-10
-6.23731239556e-10
-1.22831238766e-09
-1.11682771109e-09
-8.30400978879e-10
-9.94583333809e-10
-9.55667887355e-10
-5.47341467329e-10
-2.39047626671e-10
2.87346398235e-11
4.76906124963e-10
8.05530768059e-10
7.51506794924e-10
3.27603650757e-10
-5.95360400384e-11
-2.95290561429e-10
-2.65617779677e-10
-4.56214062974e-10
-9.79259501941e-10
-1.46921914578e-09
-1.38911375765e-09
-9.01560481476e-10
-4.14821680424e-10
-8.00783889543e-11
-7.64286563335e-11
-2.35818128271e-10
-3.69876127009e-10
-4.34906737427e-10
-5.13308451132e-10
-3.06451993984e-10
-7.33415785828e-11
1.53248059553e-10
3.19938214342e-10
5.05574431519e-10
5.73013712471e-10
7.50469828074e-10
1.24155872564e-09
1.71224105103e-09
1.89846502967e-09
1.77130473786e-09
1.55791442737e-09
1.38261447384e-09
1.12223381947e-09
8.32520202373e-10
7.88882123722e-10
8.45691564703e-10
5.13285448894e-10
-1.84262912071e-10
-1.02557431059e-09
-1.49033197138e-09
-1.46464511492e-09
-1.09600494133e-09
-5.02950376388e-10
6.09615964886e-11
4.62646113538e-10
7.78517405063e-10
1.00757660746e-09
1.1704175269e-09
1.04558890504e-09
8.69320501679e-10
8.68878985755e-10
5.33530701003e-10
4.03192976849e-11
-9.99196592877e-11
-4.88782691554e-10
-1.21459638315e-09
-1.46127267971e-09
-1.61429765196e-09
-1.89830991676e-09
-2.03925805538e-09
-1.94252471897e-09
-1.75942740364e-09
-8.6500275123e-10
-3.37012069218e-10
-8.04739321648e-10
-1.25884204912e-09
-1.42421104427e-09
-1.21482037042e-09
-6.17943357549e-10
5.60862866024e-11
6.45402683391e-10
1.25236658812e-09
1.72567822289e-09
2.13388817589e-09
2.38140369681e-09
2.36524527279e-09
2.0271084497e-09
1.68610929052e-09
1.72214800133e-09
1.92711324566e-09
1.96509250895e-09
1.83489422759e-09
1.4803235889e-09
1.23711237177e-09
1.0166565889e-09
6.02059795722e-10
4.95820900071e-10
6.75426824998e-10
-1.90798459473e-10
-9.25914716882e-10
4.2525151474e-10
1.27954622434e-09
4.30188935964e-10
5.50437002174e-10
1.60508998031e-09
1.69755715256e-09
1.48417398892e-09
1.67618582309e-09
1.21590864894e-09
9.41339266261e-10
1.2264749085e-09
1.48595635799e-09
1.65630537748e-09
1.92634361035e-09
2.24409806787e-09
2.47230494337e-09
2.65507273641e-09
2.95000166771e-09
3.18112699522e-09
3.33037144767e-09
3.47009440276e-09
3.4404439615e-09
3.22361337377e-09
2.94445990171e-09
2.51007885411e-09
2.06480935679e-09
1.76835200747e-09
1.76890474941e-09
1.71313678838e-09
1.76344773965e-09
1.87659940353e-09
1.75646607058e-09
1.25482504831e-09
6.69489918131e-10
1.03551313049e-10
-1.90421926858e-10
-5.5739728366e-10
-8.25820727626e-10
-6.9767740114e-10
-4.92786325128e-10
-3.26897225279e-10
-3.21388652386e-11
4.01908504324e-10
6.54195097142e-10
7.18168266335e-10
9.00557700345e-10
7.31575368522e-10
3.09341726293e-10
1.34587182572e-10
1.59677039623e-10
1.33200060241e-10
4.82210668795e-10
8.3992358797e-10
7.87705171442e-10
5.69270091542e-10
7.21717493202e-10
1.06167766059e-09
1.30223978217e-09
1.45547577151e-09
1.88939365091e-09
1.65591627172e-09
1.34332293152e-09
1.2603405232e-09
8.07943488469e-10
2.79725272232e-10
1.15299765907e-10
2.70345282314e-10
2.65767916267e-10
2.14712370096e-10
5.45965674065e-12
-7.82800321282e-11
-4.83570050796e-10
-1.1765086467e-09
-1.27914849936e-09
-1.26228237932e-09
-1.7033555166e-09
-2.14979905453e-09
-2.23346515741e-09
-2.26035506535e-09
-2.46969184673e-09
-2.53730625174e-09
-2.49496794515e-09
-2.29975236767e-09
-1.71265392666e-09
-1.13395138209e-09
-1.19036779979e-09
-1.73863364476e-09
-2.45271434185e-09
-3.09848212291e-09
-2.70170069578e-09
-1.94513379882e-09
-1.86155022209e-09
-1.10628111858e-09
4.3506852072e-10
8.18610280253e-10
1.3083356136e-09
2.63495168051e-09
2.97563701398e-09
2.54536968776e-09
2.42593423055e-09
2.21835493666e-09
1.45546401893e-09
9.23198785146e-10
7.77008733505e-10
3.01519694663e-10
-8.68252181374e-11
-5.26778260227e-10
-9.38073424854e-10
-6.43259637095e-10
-2.99750507534e-10
-8.06834351764e-11
2.85467732098e-10
8.44240173748e-10
1.33543656509e-09
1.54799463924e-09
1.61862972256e-09
1.52777696864e-09
1.32341560586e-09
1.07343529846e-09
1.05448005106e-09
1.47315880189e-09
1.65755559811e-09
1.61289726827e-09
1.77860317078e-09
1.82194711724e-09
1.59234750782e-09
1.37888377016e-09
1.40198945254e-09
1.47151444624e-09
1.17551115953e-09
1.14679991899e-09
1.42897835746e-09
1.36088791993e-09
9.76944613836e-10
8.63366707093e-10
1.05137461652e-09
1.02692453404e-09
4.33750484515e-10
-2.64337820249e-10
-9.25654016023e-11
3.28222196567e-10
7.79054847468e-10
1.22321976089e-09
1.43552443983e-09
1.56392065859e-09
1.64270541648e-09
9.3228384878e-10
-2.04958256313e-10
-1.07245107265e-09
-1.40875174007e-09
-1.16182003661e-09
-9.05128607766e-10
-8.62387748764e-10
-5.94615434907e-10
-1.33284869415e-10
2.48847056717e-10
3.49675529417e-10
8.27318255407e-11
-5.0686049223e-10
-9.60015072199e-10
-1.2024749711e-09
-1.11371920605e-09
-5.9959678273e-10
-3.33076621797e-10
-6.56714673158e-10
-5.86608511866e-10
-2.17439869126e-10
-1.94738750865e-10
4.45115178507e-10
1.58756590095e-09
1.92813847316e-09
1.84963948302e-09
1.59471962359e-09
1.37967955762e-09
1.01413539533e-09
8.15504051617e-10
9.01516224004e-10
1.19681922623e-09
1.86705448041e-09
2.78800492248e-09
3.33302996646e-09
3.67266746724e-09
3.88429796089e-09
3.69497370932e-09
3.2631406427e-09
2.84053486185e-09
2.42784331047e-09
2.2802633307e-09
2.30495002654e-09
2.48541304293e-09
2.91804544395e-09
3.3312403976e-09
3.5797554174e-09
3.52170057329e-09
3.02168024268e-09
2.36201474207e-09
1.73037634407e-09
1.10321943858e-09
6.15275097886e-10
2.97269600971e-10
-1.84976854966e-10
-3.89774704415e-10
-1.31950580765e-10
4.62707629305e-10
1.25452239285e-09
1.77007429015e-09
1.53013304372e-09
7.15943904876e-10
-2.50979462161e-10
-1.10730446673e-09
-1.45215164365e-09
-1.62394691895e-09
-1.8670081583e-09
-1.53665716941e-09
-8.24717890729e-10
-3.56688591644e-10
2.69633351121e-11
7.19130019307e-10
1.04308168751e-09
7.15481319007e-10
3.82042458277e-10
-3.18565279814e-10
-1.22236722223e-09
-1.46871150834e-09
-1.00459462797e-09
-1.88519676147e-10
6.27317682934e-10
1.16411104897e-09
1.21379863693e-09
9.29543697196e-10
6.43525234863e-10
1.41009174619e-10
-7.14104043435e-10
-1.1050741231e-09
-7.75087345143e-10
-8.27224975904e-10
-1.08217321094e-09
-2.00685133913e-10
-5.03181351685e-10
-1.76840568818e-09
-1.43656007658e-09
-3.15179847943e-10
3.8111733948e-10
9.90391526572e-10
1.12668860397e-09
6.47076102857e-10
3.89194698604e-10
6.14784348172e-10
1.1944976148e-09
1.85548602206e-09
2.14643654548e-09
2.36143288338e-09
2.4469581177e-09
2.29466614658e-09
1.97324086002e-09
1.35124444982e-09
4.07903380008e-10
-3.21947005916e-10
-6.94855749104e-10
-7.2413185474e-10
-3.19840593795e-10
5.75391942759e-10
1.9026613103e-09
3.06255625277e-09
3.59323470268e-09
3.50779602453e-09
2.52137372082e-09
1.11472611647e-09
1.62263454728e-11
-5.24902452826e-10
-5.47590600895e-10
-1.1192449843e-10
4.44759636428e-10
5.82021431409e-10
2.30543204122e-10
-4.99955691403e-10
-1.15890783146e-09
-1.53100929931e-09
-1.77062210871e-09
-1.51563903944e-09
-4.6122023945e-10
9.74653283835e-10
2.40908314534e-09
3.25976299295e-09
3.16856994354e-09
2.40098873968e-09
1.37187062853e-09
5.66340283987e-10
3.4909512656e-10
-3.42761252408e-10
-1.6460317678e-09
-2.45510361003e-09
-2.41255492163e-09
-2.40069381339e-09
-2.65007640669e-09
-2.86265901832e-09
-2.12518639466e-09
-1.05659271005e-09
4.30382946214e-10
2.06738613689e-09
2.63294474182e-09
2.30043009991e-09
1.93306894607e-09
1.9073108859e-09
2.26771345232e-09
1.20633437084e-09
-5.09678570846e-10
-5.33909748247e-10
-1.70810334803e-09
-3.87238243079e-09
-1.06713885258e-09
1.66213052894e-09
-4.85118559373e-10
-3.12542981438e-10
1.86099155093e-09
8.22798275842e-10
2.02864390867e-10
1.20841648371e-09
-3.07773974187e-10
-2.09109797722e-09
-1.5124595954e-09
-1.03666244832e-10
7.55185670773e-10
1.20072881268e-09
1.20515434807e-09
4.15447743651e-10
7.53274870323e-10
2.00610902063e-09
2.10658867457e-09
2.18079876633e-09
1.79856853144e-09
6.11826191483e-11
-3.75835136142e-10
7.50249639212e-11
-2.57624515042e-10
1.66687348992e-10
-4.0262698414e-09
-6.41701519988e-10
1.0477498952e-08
4.36826753066e-08
1.54448860046e-08
5.23893223657e-09
2.74015984294e-09
-2.32177448315e-10
-1.42006301805e-09
2.19864659756e-10
1.86582405918e-10
-4.69749331833e-10
8.67408113042e-10
5.11250981633e-10
-2.20354562437e-10
3.47306907659e-10
6.42312389562e-10
9.83260726766e-10
1.37640873989e-09
1.6945932784e-09
2.58554424869e-09
2.88873376293e-09
2.151495238e-09
3.15290184572e-09
3.28140214365e-09
2.22608321233e-09
3.73132714581e-09
2.76619750339e-09
2.63976857159e-09
3.64656702709e-09
3.68192701966e-09
1.48896099562e-09
1.13154252627e-09
4.27627865674e-10
-5.43317637313e-10
-8.38983804915e-10
-1.41985041278e-09
-8.89128155392e-10
3.87666015893e-10
9.60150809228e-10
1.08013895544e-09
1.63647866552e-09
2.4594668885e-09
2.45571897947e-09
1.83337062708e-09
2.16050660977e-09
2.09627059567e-09
1.5939635408e-09
1.07164999124e-09
3.85354886496e-10
-4.62418367554e-10
-9.49968837928e-10
-1.11246215622e-09
-1.35909401002e-09
-9.38777203354e-10
-2.88707474302e-10
-5.88605524388e-10
-6.54581344166e-10
-2.10351526846e-10
-8.55352504862e-10
-1.85400654667e-09
-1.53552889837e-09
-1.38964406645e-09
-1.87342385054e-09
-1.68165702065e-09
-1.18792268037e-09
-1.15744362913e-09
-1.07750023605e-09
-8.01586029744e-10
-8.23250273799e-10
-7.39800693714e-10
-4.66105290215e-10
1.01721245427e-11
4.69855952106e-10
7.87079319973e-10
8.44909647414e-10
6.55220218766e-10
3.62267097695e-10
1.82784416062e-10
-4.5665769648e-11
-3.57196652593e-10
-6.78668631845e-10
-1.00181276001e-09
-1.23115201268e-09
-1.17242203037e-09
-8.94930119323e-10
-6.483488228e-10
-5.19041831864e-10
-5.93989954015e-10
-6.64303323637e-10
-6.99625285751e-10
-6.33550786635e-10
-6.81445523483e-10
-7.15380654436e-10
-6.62049368964e-10
-5.75172428877e-10
-5.57886948113e-10
-5.46895213315e-10
-2.93599910136e-10
-2.23261738331e-11
4.79656361533e-10
1.12467732423e-09
1.62637282131e-09
1.72800518122e-09
1.331586668e-09
8.83493109892e-10
7.23699973816e-10
6.99484995919e-10
7.98151840539e-10
8.35807113725e-10
4.53324092437e-10
-2.01011506295e-10
-8.19857059812e-10
-1.15073068126e-09
-1.1931458561e-09
-9.34428747961e-10
-4.66230333454e-10
-3.87941089842e-12
3.64781514999e-10
4.95351220301e-10
5.02709077877e-10
5.40778338416e-10
3.49710469526e-10
2.89799405651e-10
5.88345273515e-10
6.66173307686e-10
6.13393625952e-10
4.82939805344e-10
4.03942601007e-11
-9.16777957769e-10
-1.85947303261e-09
-2.55695601322e-09
-2.86214431015e-09
-2.54349392007e-09
-1.8893357615e-09
-1.73326139123e-09
-1.99658535275e-09
-1.81712686449e-09
-1.49873543819e-09
-1.4905461119e-09
-1.2517232666e-09
-6.78419604159e-10
-3.25026447136e-10
1.00058519751e-10
6.32612062371e-10
1.16022486181e-09
1.60217256061e-09
1.94925129877e-09
2.10047823183e-09
2.09273253905e-09
2.01872642341e-09
1.97477769543e-09
2.00375109266e-09
2.21182981835e-09
2.45290005382e-09
2.45092223189e-09
2.10949680338e-09
1.73505614817e-09
1.52953906187e-09
9.30719273047e-10
-7.2523066823e-11
-5.04366827234e-11
1.74484446091e-10
-9.39241800925e-10
-1.11436620688e-09
-2.15277963112e-10
-5.85370186093e-10
-6.43959630416e-10
1.47416264181e-10
1.06640018691e-10
-2.60342405542e-10
-2.43921136612e-11
2.31093881417e-10
1.21337893211e-10
2.26676075201e-10
6.38412755752e-10
1.09189778445e-09
1.41594897902e-09
1.82637434669e-09
2.0519263033e-09
2.0716250074e-09
2.26687414855e-09
2.45301630909e-09
2.49983796108e-09
2.67674280382e-09
2.74356830352e-09
2.61428460599e-09
2.52668414095e-09
2.30638834142e-09
2.00262062131e-09
1.80179757985e-09
1.87362120922e-09
1.94914049627e-09
1.82635242972e-09
1.57579897219e-09
1.14276158354e-09
5.33669402648e-10
1.23166107948e-10
-3.06368005374e-10
-5.97515940416e-10
-6.11956581617e-10
-5.31609365581e-10
-4.14102496512e-10
-2.09183627231e-10
-7.16827042602e-11
8.13563499135e-11
3.43394568355e-10
3.99759952314e-10
1.49412588489e-10
1.26707023305e-10
3.34209343075e-10
3.59453571881e-10
4.27263959144e-10
5.10706445327e-10
4.48814171388e-10
4.431392624e-10
5.64344383196e-10
4.8371129354e-10
2.24465530967e-10
1.3152240561e-10
2.29680924582e-10
2.73150337798e-10
3.55509945298e-10
8.61509534416e-10
1.08736348473e-09
8.80780200881e-10
1.11916393384e-09
1.57031835138e-09
1.47359730026e-09
1.38098261193e-09
1.16574074036e-09
8.36854364085e-10
8.42776394936e-10
5.75418703707e-10
1.39032623237e-10
-2.43058221797e-11
-4.76337448218e-10
-1.06132465961e-09
-1.40487487027e-09
-1.84364937189e-09
-2.24566094954e-09
-2.2944475062e-09
-2.36125701816e-09
-2.52455035907e-09
-2.51705538804e-09
-2.47470098782e-09
-2.58662347455e-09
-2.36521012092e-09
-1.99374593949e-09
-1.94702942547e-09
-1.95087400214e-09
-2.18653910861e-09
-3.20371455813e-09
-3.51376572746e-09
-2.29249546584e-09
-1.46287199041e-09
-9.91664617091e-10
3.77484203411e-10
1.50999345897e-09
1.58876974653e-09
2.11442462931e-09
2.49990572371e-09
1.9862431334e-09
1.42148762159e-09
6.7841102795e-10
-1.09169206132e-10
-7.40863931821e-10
-1.62412183125e-09
-2.51777462489e-09
-2.53814280266e-09
-1.9687906548e-09
-1.73145731693e-09
-1.23728760171e-09
-5.95228263244e-10
-1.68984131768e-11
3.89188557616e-10
8.38200511197e-10
1.35432092643e-09
1.71099707727e-09
1.78887863334e-09
1.76105180108e-09
1.8545827673e-09
1.7792533215e-09
1.34866226988e-09
1.33937190664e-09
1.36188932463e-09
1.1420544169e-09
1.0825263178e-09
1.21843751875e-09
1.23458588425e-09
1.00765305219e-09
1.00142376013e-09
1.35548353209e-09
1.36024428077e-09
1.0938151494e-09
1.19268295259e-09
1.04742474307e-09
8.90697601564e-10
5.33138101232e-10
3.67183594558e-10
6.95940374793e-10
9.57776708226e-10
7.44349620465e-10
6.5324287329e-10
7.99782114264e-10
8.3461999705e-10
1.11924869007e-09
1.12934902857e-09
7.8119604088e-10
5.52711232698e-10
4.46160628923e-10
1.31295612539e-10
-5.35824148587e-10
-1.39767487846e-09
-1.89075922684e-09
-1.62575607544e-09
-9.17272730889e-10
-2.01883103198e-10
2.22216129097e-10
1.62236879069e-10
-2.68552854718e-10
-7.72863142503e-10
-1.03994957143e-09
-1.10890017092e-09
-1.27083317692e-09
-1.56704568077e-09
-1.53211944186e-09
-8.94409776395e-10
-6.45567391595e-10
-7.19143214492e-10
-2.99876133108e-11
5.04420772645e-10
1.08626183898e-09
2.14590079714e-09
2.33519413201e-09
1.9421885263e-09
1.50366696989e-09
1.05850171056e-09
5.6457329385e-10
4.62168704593e-10
5.20328951367e-10
6.6246298574e-10
1.30426027339e-09
2.22549373034e-09
2.91298961017e-09
3.13150589935e-09
3.07243646859e-09
2.75745075001e-09
2.30981458969e-09
1.99156509435e-09
1.75423461522e-09
1.56390583551e-09
1.6051525284e-09
1.90197473715e-09
2.44138649379e-09
2.8544153231e-09
2.94879655158e-09
2.86724167832e-09
2.4346951982e-09
1.84880822606e-09
1.31989639572e-09
9.16137177344e-10
4.74730944354e-10
-5.67987471902e-11
-5.39284913451e-10
-5.30426219373e-10
-4.64654746293e-11
6.02498558788e-10
1.06819462621e-09
1.41612802061e-09
1.07662323931e-09
1.21519581778e-10
-1.05339081963e-09
-2.19099751947e-09
-2.57687539587e-09
-2.00876513066e-09
-1.66444241272e-09
-1.17912142571e-09
-3.61402065297e-10
1.31117629741e-10
6.25737437092e-10
8.06316179359e-10
8.40962897396e-10
6.00423539826e-10
-1.46850949098e-10
-7.30878683923e-10
-9.74081113079e-10
-1.21226275444e-09
-1.18272735084e-09
-7.40740265011e-10
-1.83745586698e-10
3.29770255157e-10
4.9243657993e-10
2.84340278306e-10
4.38074852408e-11
-4.2122948467e-11
-3.7552909255e-10
-6.33905481682e-10
-1.00250584472e-11
3.93500167075e-10
-6.3331594675e-11
-1.24089056223e-10
-1.82753022903e-10
-8.41785789904e-10
-6.87483311644e-10
2.4352146941e-10
3.11850373185e-10
3.20093221372e-10
7.09797727931e-11
-1.15742181803e-10
1.49727049471e-10
5.94233423047e-10
1.00823549322e-09
1.36638251678e-09
1.63013205941e-09
1.83049367967e-09
1.8603666259e-09
1.72944836654e-09
1.34819724879e-09
6.32171499359e-10
-2.21572489936e-10
-8.546657729e-10
-1.04814186234e-09
-8.8205818314e-10
-2.41163462034e-10
8.21362607936e-10
2.00493069192e-09
2.89647098539e-09
2.89605689216e-09
2.03593516828e-09
6.52577740669e-10
-5.9433517288e-10
-1.31079767368e-09
-1.43546006533e-09
-1.00111395783e-09
-9.17487030225e-11
7.07300039528e-10
9.22965427569e-10
4.77367228524e-10
-2.27256822166e-10
-9.83906271751e-10
-1.57632407968e-09
-1.7467956013e-09
-1.72472245209e-09
-1.37127762606e-09
-1.27332451257e-10
1.02623017878e-09
1.39657304742e-09
1.57048489923e-09
1.76616165968e-09
1.51318688403e-09
4.80615811634e-10
-2.3881109272e-10
-4.13233070131e-10
-6.09061687701e-10
-1.31715402067e-09
-1.72083255916e-09
-1.80075287059e-09
-2.0717928258e-09
-2.14651595482e-09
-1.76614268085e-09
-1.3382616582e-09
-5.34987491793e-10
3.44632295249e-10
3.50223136218e-10
-8.35013549733e-11
-1.65509602619e-10
-2.87428560431e-10
2.29619832331e-10
1.85254364136e-10
-1.56709692626e-09
-1.70733911255e-09
-8.4778892416e-10
-1.92962236901e-09
-1.0643817074e-09
2.05157256116e-09
2.19237969195e-09
1.04866609963e-09
1.29855931814e-09
7.80519896829e-10
2.3876312948e-10
2.21589218837e-10
-5.70058361579e-10
-1.08191010133e-09
-4.32618054404e-10
-7.32048224665e-13
-1.59030859363e-10
3.47970028578e-10
1.46613144598e-10
-5.14990737975e-10
3.74324611699e-10
1.16828787431e-09
8.24737028379e-10
2.23695154502e-10
-7.75522614199e-10
-1.13786912123e-09
-9.69600308788e-10
-6.71188325069e-10
1.67206532543e-09
1.84784959652e-09
4.3643146026e-09
-2.46792244784e-09
-1.2242989338e-09
6.03048410226e-09
-3.35106827422e-09
3.52677075369e-09
8.24092563361e-09
5.39333459027e-09
1.48537899916e-09
1.55312723538e-09
7.99957397145e-10
4.93958062861e-10
8.07228116206e-10
-2.94833322456e-10
-1.47848118636e-10
1.4428346518e-09
-7.10205362537e-11
5.8334248517e-10
2.75217077013e-09
2.92579621893e-09
1.96500081763e-09
2.97968032575e-09
3.30952067289e-09
2.50503651991e-09
2.69888953901e-09
2.4871120322e-09
2.84126047791e-09
3.20731566577e-09
2.66734370933e-09
3.25326977072e-09
2.60310991207e-09
2.11130881861e-09
1.16963740956e-09
2.3328293219e-10
-1.27982252583e-09
-7.17525844784e-10
-3.21892848747e-10
-5.69205081764e-10
-6.4018326637e-10
3.83292996544e-10
1.1445769869e-09
1.79288414627e-09
2.21332207865e-09
2.16884946078e-09
2.29756289338e-09
2.42177688697e-09
2.42033904854e-09
2.20644247705e-09
1.22191448312e-09
5.19473871606e-10
1.81571676639e-10
4.93968439015e-11
-3.23852459471e-11
-7.50561823793e-10
-1.20627804315e-09
-5.30906063537e-10
-2.33322107464e-10
-8.93714309406e-10
-8.83702379969e-10
-8.48664544469e-10
-1.67571910793e-09
-1.6972439886e-09
-1.4305147164e-09
-1.8097921018e-09
-1.9600865707e-09
-1.59499104471e-09
-1.45131038111e-09
-1.56142254667e-09
-1.46368320313e-09
-1.13898667533e-09
-8.36866434305e-10
-1.97488060993e-10
6.99150735543e-10
1.30972967101e-09
1.54804927286e-09
1.55820922131e-09
1.28494728692e-09
8.76685876672e-10
5.26717062096e-10
2.63137561328e-10
-1.35938623639e-10
-6.04201730287e-10
-1.12912392957e-09
-1.58289642007e-09
-1.7055286855e-09
-1.50278086755e-09
-1.23137520586e-09
-1.04855373211e-09
-9.47529700677e-10
-9.68829402927e-10
-1.05023064559e-09
-1.056894942e-09
-9.95034325914e-10
-8.75641485048e-10
-5.34057026101e-10
-2.93636306083e-10
-1.38314656935e-10
-1.22827506528e-10
-1.25413868692e-10
2.91336346933e-10
1.03704054265e-09
1.69239660433e-09
1.91974040619e-09
1.71886971912e-09
1.34647448966e-09
9.35726825952e-10
7.28199836348e-10
8.16688944831e-10
1.02880378252e-09
9.81621506254e-10
5.37724467004e-10
-1.32402578722e-10
-6.63794521533e-10
-9.49699269692e-10
-8.86244643482e-10
-4.66874184373e-10
-1.90459593355e-11
2.6934885393e-10
3.35952960397e-10
1.99422472486e-10
1.08530755048e-10
1.88566792355e-10
5.11027470814e-10
9.09037029543e-10
1.03888665096e-09
1.10465007723e-09
8.86487318421e-10
2.52001301533e-10
-3.25800052914e-10
-1.14502289681e-09
-2.26970175629e-09
-2.91490800744e-09
-3.11693935464e-09
-3.15455684222e-09
-2.65602421911e-09
-1.86989765238e-09
-1.55361322054e-09
-1.39773025324e-09
-1.3268663122e-09
-1.09727951416e-09
-4.40971705088e-10
-5.18898736235e-11
2.06813470226e-10
7.02377507555e-10
1.17748633448e-09
1.53387714111e-09
1.88350438965e-09
2.03684657574e-09
1.86204311586e-09
1.43439566255e-09
1.1975627094e-09
1.29286577443e-09
1.54585672808e-09
1.87070741588e-09
2.1160826963e-09
2.33116871381e-09
2.26194452268e-09
1.77418695275e-09
1.75920188112e-09
1.82952128585e-09
1.10986494145e-09
2.49753064333e-10
-1.23483957062e-10
-5.03977192078e-10
-8.55354304807e-10
-3.66345428987e-10
-8.1846292299e-11
-3.84998199599e-10
2.92678867685e-10
9.11967287084e-10
5.06782935776e-10
-8.21516079718e-11
-1.09790187162e-10
4.88056149043e-11
3.51046875759e-10
8.69384346787e-10
1.21535527173e-09
1.41602478847e-09
1.70220397531e-09
1.71344537307e-09
1.58659774229e-09
1.67081039318e-09
2.05908923741e-09
2.29058694179e-09
2.51019357413e-09
2.865652221e-09
2.80112165119e-09
2.44791537081e-09
2.29552101459e-09
2.09098373365e-09
1.97310755821e-09
2.13740738602e-09
2.19509541193e-09
1.87002354265e-09
1.37145063254e-09
8.74922936411e-10
4.1076756898e-10
1.79518045259e-12
-7.07174043377e-11
3.12409044353e-11
3.48304183076e-11
9.68697583424e-11
1.39470327513e-11
1.59390742487e-10
3.47382611229e-10
3.19404477707e-10
2.91677912969e-10
4.40191587743e-10
3.50934008619e-10
6.49307928794e-11
-2.99186860047e-11
-5.7639109753e-11
3.22258343464e-10
7.1357147147e-10
8.58538407535e-10
8.11509020721e-10
5.94563130622e-10
3.70822130462e-10
2.70717447415e-10
2.99069545984e-10
7.79343156307e-10
8.25864535111e-10
3.75308811044e-10
3.60956684786e-10
8.05864982113e-10
9.22182001502e-10
1.0022607875e-09
1.1648309211e-09
1.04985413944e-09
1.42308639628e-09
1.37551946118e-09
6.68975398555e-10
5.57229306439e-10
6.69816078755e-10
6.40223923952e-10
5.14769027101e-10
4.55534319033e-12
-7.06690175806e-10
-1.09120247628e-09
-1.20782959575e-09
-1.45300158827e-09
-1.49595166441e-09
-1.34023312739e-09
-1.34483124574e-09
-1.4166219467e-09
-1.34996553595e-09
-1.50575120033e-09
-1.97747613064e-09
-2.41602701556e-09
-3.15184453684e-09
-3.92802698971e-09
-3.61957157751e-09
-3.27567397747e-09
-3.8157005212e-09
-3.44335987243e-09
-2.38113648439e-09
-1.35808273209e-09
-1.70688309119e-10
9.05163441996e-10
1.3535931663e-09
2.13702558592e-09
2.75694147145e-09
2.35528575352e-09
1.89618426111e-09
1.49212180494e-09
5.56206514155e-10
-2.49423462637e-10
-4.37383038248e-10
-7.28916320342e-10
-1.29398216385e-09
-1.30061019666e-09
-9.067722752e-10
-3.52845338464e-10
2.8131319431e-10
7.01142639397e-10
1.02702141344e-09
1.39962432479e-09
1.39209219019e-09
1.18557676968e-09
9.3877889742e-10
4.81210005247e-10
1.57800755766e-10
3.03307357698e-10
5.53263392301e-10
8.99988705963e-10
1.24523944114e-09
1.27533134539e-09
1.02121701429e-09
6.83250868331e-10
7.24760353186e-10
8.61339121975e-10
9.69606449777e-10
1.00308712108e-09
1.154110978e-09
1.1059959067e-09
9.71566907533e-10
8.74343830573e-10
9.10649886153e-10
6.38715040635e-10
2.10937038371e-10
1.7549569755e-11
-5.83514909314e-11
1.12775607724e-10
2.93680140038e-10
7.07488292601e-10
6.99264661474e-10
5.44124859712e-10
6.18005402712e-10
1.07960384237e-09
1.28863590365e-09
9.62354788957e-10
4.24679026347e-10
-5.92550368581e-11
-3.41189106319e-10
-2.71697252777e-10
1.82595315956e-10
6.37786586646e-10
7.432684466e-10
7.38711409344e-10
4.72378416222e-10
-1.64805082965e-10
-9.08348179998e-10
-1.550597995e-09
-1.59612453361e-09
-1.19561749824e-09
-9.2050564389e-10
-1.07708084886e-09
-9.24682151595e-10
-4.68820560207e-10
-1.32402347111e-10
6.17732287526e-10
1.19023105691e-09
1.46600386165e-09
1.96963631132e-09
2.22800317133e-09
1.69823456716e-09
9.1588910257e-10
2.74244069091e-10
-4.43999847874e-10
-5.68549478263e-10
-5.98534656354e-12
6.34605554412e-10
1.42794000094e-09
2.24647071304e-09
2.86611533626e-09
3.01014375982e-09
3.00615465816e-09
2.81745255229e-09
2.31698271189e-09
1.83021235886e-09
1.63844219377e-09
1.71292931824e-09
1.9905550605e-09
2.40463537533e-09
2.79799048802e-09
3.09314187134e-09
3.05681156945e-09
2.90296222238e-09
2.49768332102e-09
1.93661483775e-09
1.5170878893e-09
1.23169580783e-09
8.14144987253e-10
3.88695160924e-10
2.05924297389e-10
2.72816606816e-10
6.68693124825e-10
1.43279159391e-09
1.78758214353e-09
1.32304449955e-09
3.94980145392e-10
-5.24128635289e-10
-1.14751195606e-09
-1.85659637637e-09
-2.25622371509e-09
-1.93931073186e-09
-1.41426612308e-09
-9.56266792588e-10
-4.63464559123e-10
2.54679513833e-11
2.1631887396e-10
4.46555981551e-10
6.17064349108e-10
4.47808531521e-10
-1.24339989734e-10
-8.19870718218e-10
-1.27707326864e-09
-1.46772810309e-09
-1.2466999377e-09
-6.483080064e-10
-4.67608773696e-11
5.43865455872e-10
9.47439809305e-10
8.83751825518e-10
4.24591781954e-10
2.86005333322e-10
4.57396097451e-10
2.12858320854e-10
2.52753784428e-10
6.47850608609e-10
1.61276767223e-10
-4.91621416597e-10
-3.65621136408e-10
-5.31546314566e-10
-5.00651820136e-10
4.52529152016e-10
7.7027768031e-10
5.9850749836e-10
5.0116663088e-10
3.22457290328e-10
4.98323670672e-10
9.61714432049e-10
1.43499239726e-09
1.81937467818e-09
2.129906274e-09
2.25775382717e-09
2.29950259883e-09
1.9386331055e-09
1.16301202372e-09
2.58432081548e-10
-4.77684654121e-10
-8.46441082982e-10
-8.45335069711e-10
-4.88868559519e-10
3.38992220491e-10
1.36518650625e-09
2.20034712208e-09
2.57950289207e-09
2.10314077402e-09
8.28801621856e-10
-5.72700257341e-10
-1.62465885014e-09
-2.02137244846e-09
-1.62931742547e-09
-7.84064729714e-10
3.324000807e-10
1.12128040448e-09
1.18536416441e-09
6.35187677805e-10
-4.21062195662e-11
-6.39730103743e-10
-1.12707093346e-09
-1.24395957436e-09
-1.19094357043e-09
-7.12267887764e-10
-1.26077466067e-10
4.62685712328e-10
9.58147788066e-10
8.63544901649e-10
6.86109286891e-10
7.4808205543e-10
3.85398402814e-10
-5.68286156895e-10
-1.27671666777e-09
-1.88484968972e-09
-2.13743978503e-09
-2.12346331789e-09
-2.40703194918e-09
-2.92538710202e-09
-2.95304865698e-09
-2.59511963852e-09
-1.82309061172e-09
-7.19523148473e-10
2.51077506225e-11
6.64522758109e-11
3.3353023441e-10
6.98321913804e-10
2.19470471798e-10
4.08488415077e-10
1.62652814598e-09
3.43982409221e-10
-2.25912707934e-09
-1.04881673584e-09
1.71156983036e-10
-1.20059191098e-10
1.62231161596e-09
2.25987707407e-09
8.48590640844e-10
1.1617383244e-09
1.64640811513e-09
3.5714424243e-10
-6.04011889028e-10
-9.91694951459e-10
-8.53453033478e-10
4.34771423914e-11
5.75257767447e-10
4.03211823332e-10
1.29424728516e-10
4.20625973695e-11
5.22200047147e-10
6.23031907979e-10
3.26035263376e-10
1.33644011385e-10
-7.86054198348e-10
-1.10053932046e-09
-3.28022614428e-10
-1.0281381205e-09
1.32008009599e-09
-2.02065956436e-10
-1.05976124855e-09
5.60528859758e-09
2.73305831871e-09
5.32790743609e-09
1.10099300189e-08
5.02669352032e-09
-9.96718534462e-09
-1.86888481273e-09
2.81263325246e-09
2.43052652555e-09
2.72797357993e-09
1.73045845333e-09
5.39754593221e-10
1.07780474439e-09
-1.76602981371e-10
-1.24384056623e-09
7.19861749894e-10
1.45683377708e-09
7.1951510166e-10
2.30682562218e-09
2.43789613571e-09
2.85744066009e-09
2.62393379356e-09
2.46404330164e-09
3.13702537779e-09
2.00388672381e-09
2.74302408485e-09
2.04076868239e-09
3.20707834434e-09
2.08620858541e-09
3.0752981694e-09
2.71928524535e-09
1.36615222969e-09
1.00006543692e-09
6.26262068124e-10
-3.03005496331e-10
-1.38585029852e-09
-1.47589879466e-09
-7.62913681746e-10
-5.31913820986e-10
-1.67223785546e-10
-1.71342906768e-10
3.31006499743e-10
1.1977888672e-09
1.52909394605e-09
1.86334542902e-09
2.22174709186e-09
2.56940371824e-09
2.61770365448e-09
2.50507537755e-09
2.03879390448e-09
1.16956572939e-09
2.12485414599e-10
-4.69650123099e-11
1.62107494786e-10
-2.325755538e-10
-4.28808100207e-10
-3.01969363279e-11
-2.14013462036e-10
-6.08454365078e-10
-7.82514235904e-10
-1.69403995412e-09
-2.19237897727e-09
-1.85203965675e-09
-2.08054111194e-09
-2.37088945037e-09
-1.92211802767e-09
-1.48316612559e-09
-1.5621951466e-09
-1.64161221458e-09
-1.31022327946e-09
-9.3309572986e-10
-1.11004832408e-10
8.92510993225e-10
1.54612481401e-09
1.63563459719e-09
1.49513025421e-09
1.38946437635e-09
1.22579304698e-09
9.41039416598e-10
6.03733744584e-10
6.71697127173e-11
-5.65296024712e-10
-1.11443044903e-09
-1.48533897686e-09
-1.73513259289e-09
-1.80181653221e-09
-1.66894395608e-09
-1.47752869781e-09
-1.28222481715e-09
-1.13469211241e-09
-1.00949397242e-09
-9.8250602041e-10
-8.82648035708e-10
-6.98056368975e-10
-6.32394692541e-10
-7.18664257065e-10
-8.17134695919e-10
-6.4752503032e-10
-2.29364451897e-10
4.41725140894e-10
1.25711886647e-09
1.78592640588e-09
1.76248328676e-09
1.18702720772e-09
5.42155719868e-10
2.75087396269e-10
5.31578819455e-10
8.64589399152e-10
9.37896500847e-10
7.08685150155e-10
2.2712299096e-10
-3.65082635211e-10
-8.22884673203e-10
-1.02328229237e-09
-8.95990392814e-10
-5.34698653558e-10
-2.88699533369e-10
-1.41052796816e-10
2.58569512644e-11
9.95261595441e-11
-2.09011732482e-11
-7.39804928879e-11
2.9131157122e-10
7.31437725668e-10
1.16516549911e-09
1.50898718383e-09
1.20497551824e-09
2.61211302527e-10
-6.65446500478e-10
-1.45387344987e-09
-2.3797528693e-09
-2.95108745807e-09
-3.11287797724e-09
-2.9098485473e-09
-2.52502766214e-09
-2.04250856747e-09
-1.43654077349e-09
-9.27325953182e-10
-3.77480232944e-10
-5.07294384858e-11
1.38864487197e-10
3.25509679432e-10
5.88760319659e-10
9.83436591981e-10
1.40267131406e-09
1.65299241986e-09
1.77789081607e-09
1.60398690518e-09
1.25620830605e-09
1.18847997511e-09
1.39387402987e-09
1.53347141232e-09
1.58443823179e-09
1.55675211288e-09
1.59442686782e-09
1.7994613571e-09
2.20233648484e-09
2.06889936125e-09
1.72725772758e-09
1.75787712159e-09
1.14399507527e-09
2.62395348708e-10
6.45271816801e-11
-4.6356705011e-10
-1.08622139315e-09
-8.01118944013e-10
-3.43804082315e-10
-5.72995620377e-10
-3.51747649939e-10
6.43154763828e-12
-2.56175374018e-10
-3.13443271582e-10
6.06025603981e-11
4.59580489543e-10
8.31819494368e-10
1.16198054935e-09
1.42562167177e-09
1.37766541915e-09
1.16088575927e-09
1.07323838977e-09
1.06442289438e-09
1.20662871479e-09
1.68486161099e-09
2.12391182183e-09
2.30037991321e-09
2.5523088993e-09
2.6989722306e-09
2.54450349069e-09
2.5096978481e-09
2.50840548758e-09
2.43872453393e-09
2.22955578272e-09
2.07751273341e-09
1.69479953092e-09
1.06439240119e-09
4.05268525207e-10
-6.85006132356e-11
-3.53362134441e-10
-4.76694049089e-10
-3.49936203807e-10
-2.03250955529e-10
9.50697074504e-11
2.20693057979e-10
2.50969297766e-10
2.48787976169e-10
2.84696243902e-10
1.67056920055e-10
7.39408940976e-11
1.19878455443e-11
-7.8322807292e-11
2.29504212333e-10
6.66406347626e-10
9.54698669905e-10
1.23690442518e-09
1.47405861558e-09
1.44512037021e-09
1.33002786268e-09
9.98703090306e-10
6.37616544782e-10
2.1729402064e-10
3.39043360105e-10
1.02108455951e-09
1.30966672587e-09
1.21922308887e-09
1.0777816826e-09
7.24918642468e-10
7.33198813044e-10
1.28286930334e-09
1.0901953541e-09
6.12978050412e-10
9.85274653477e-10
1.46232212706e-09
1.40350479448e-09
6.2851792862e-10
-1.73811160777e-10
-3.43432049563e-10
-3.57465691433e-10
-5.77450312231e-10
-7.36424420387e-10
-9.02600849693e-10
-1.25119005936e-09
-1.56372531162e-09
-1.55344741384e-09
-1.61879007649e-09
-2.08707944116e-09
-2.39078013978e-09
-2.42034158964e-09
-2.82588402412e-09
-3.33609241408e-09
-3.5954145155e-09
-4.33830878529e-09
-4.78404992115e-09
-3.93347605854e-09
-3.09255053647e-09
-2.69169060599e-09
-2.33015476243e-09
-1.84375314336e-09
-5.92072959636e-10
9.85230396005e-10
1.62588302451e-09
1.76038740961e-09
2.1100083054e-09
1.94203733092e-09
1.28625468227e-09
1.0471036117e-09
6.01351040903e-10
-4.48515380516e-10
-1.10272360667e-09
-1.23645020377e-09
-9.95968232678e-10
-6.56820264004e-10
-1.88078795498e-10
1.09062056464e-10
4.52662453826e-10
7.67318253072e-10
1.07980840083e-09
1.37290996443e-09
1.61823357584e-09
1.68082867537e-09
1.5700107196e-09
1.39346258362e-09
1.25879832105e-09
1.2059527825e-09
9.51536060638e-10
7.14430998153e-10
6.6318719891e-10
4.75794500099e-10
5.13146747249e-10
4.52017226478e-10
3.29713292191e-10
3.49310458217e-10
6.31570635362e-10
7.58954437992e-10
7.3822669474e-10
5.59547423857e-10
2.62205613328e-10
3.05440927813e-10
5.01671568396e-10
9.30343508056e-10
9.58958822113e-10
8.44803821235e-10
5.15208172325e-10
2.61401779061e-10
1.22746826639e-10
3.29518262855e-10
5.10473723025e-10
8.1424747824e-10
8.58791670386e-10
7.7973321498e-10
7.7399964896e-10
8.50631143214e-10
1.01942448081e-09
1.03175219833e-09
7.64343049844e-10
4.50275091464e-10
5.34422309059e-10
8.39742111161e-10
8.30165133143e-10
6.782921257e-10
2.49671431533e-10
-5.21019283219e-10
-1.07690456013e-09
-1.39119190004e-09
-1.47773833846e-09
-1.23970873951e-09
-8.19431319877e-10
-6.13097693816e-10
-4.59570325148e-10
-2.95034228083e-10
-1.27848770778e-11
5.5123985706e-10
1.19608564276e-09
1.28520266735e-09
1.01043195553e-09
1.0680831355e-09
7.51485513222e-10
1.69692674829e-10
-3.62972040865e-10
-7.69234876873e-10
-7.8826389555e-10
-9.10596417199e-11
8.84934071754e-10
1.82960302453e-09
2.57985208141e-09
3.09424354357e-09
3.15504716842e-09
2.9547253587e-09
2.54915158399e-09
2.09612278842e-09
1.82027803881e-09
1.66305538303e-09
1.70682496355e-09
1.93386388649e-09
2.15318739807e-09
2.29172175418e-09
2.38468573772e-09
2.17961376724e-09
2.01498380833e-09
1.94407359812e-09
1.69329170639e-09
1.55080530632e-09
1.37585425095e-09
9.48727722902e-10
4.46918299894e-10
5.04346286685e-10
8.76438966568e-10
1.33416815973e-09
1.70645650422e-09
1.67042308737e-09
1.0958088532e-09
1.4261366678e-10
-1.12957942154e-09
-1.62949974931e-09
-1.5222300675e-09
-1.55250861016e-09
-1.65521341635e-09
-1.69631270234e-09
-1.44665657034e-09
-7.29469221098e-10
3.12104112492e-11
2.63675850766e-10
3.5927961249e-10
3.5036692006e-10
1.50955670761e-10
-1.80177460408e-10
-6.53745957922e-10
-1.15477356952e-09
-1.41324059118e-09
-1.15096954455e-09
-5.348449785e-10
3.31482108743e-11
5.57850816864e-10
1.11631827371e-09
1.38525419908e-09
1.23242404441e-09
1.11319356917e-09
1.47974411248e-09
1.3116428008e-09
8.7679662623e-10
8.40451924771e-10
2.20872734843e-10
-8.19811214154e-10
-7.19754494347e-10
-3.37599274809e-10
-6.48554069471e-11
7.77838554478e-10
1.05109882789e-09
4.71632974289e-10
4.17160126633e-10
6.01194339808e-10
8.69279632339e-10
1.06640516323e-09
1.1404765004e-09
1.33060193926e-09
1.5636412436e-09
1.6511141243e-09
1.62961981623e-09
1.19196276283e-09
3.48868307019e-10
-3.37878901561e-10
-7.0176806735e-10
-6.60527091939e-10
-3.72515137565e-10
-3.67701237568e-11
5.7084493755e-10
1.30174458554e-09
1.87789893736e-09
1.91489754825e-09
1.16151023431e-09
-1.4271573425e-10
-1.3136583157e-09
-2.00002711231e-09
-1.94044194436e-09
-1.10420231444e-09
5.78758554618e-11
9.88674431969e-10
1.35848329927e-09
1.19830005158e-09
7.31126652818e-10
1.12112010349e-10
-5.56382061733e-10
-9.82257522119e-10
-1.24970859873e-09
-1.18797768457e-09
-6.00563723779e-10
-2.59387428833e-10
-6.04253293418e-10
-6.30303950529e-10
-3.06357788039e-11
2.38025635098e-10
-1.03660950876e-11
-4.04424880392e-10
-6.64815302114e-10
-6.98768935442e-10
-1.0826586667e-09
-1.74400992169e-09
-2.48709413863e-09
-2.91322413241e-09
-3.23578020796e-09
-3.34959094288e-09
-2.73161857446e-09
-1.39349201801e-09
-3.04252117071e-10
2.82205967037e-11
-3.39732209649e-11
6.02577121094e-10
1.62589498885e-09
1.20873930914e-09
-2.94582812462e-10
2.81108212337e-10
3.74820125973e-10
-1.79436010118e-09
-2.18451131174e-09
-1.20344810607e-09
-1.09163001616e-09
8.62128556682e-10
2.35369915493e-09
7.18067628233e-10
9.14057519553e-10
1.53709795742e-09
-9.06984351074e-11
-6.94682319108e-10
4.13347631337e-10
5.20088182251e-10
8.28158935607e-11
7.09879254852e-10
8.78938349037e-10
4.0966621439e-10
1.03045623792e-09
1.61768067508e-09
1.13786170969e-09
6.23712922469e-10
5.47801617978e-11
-1.07446192887e-09
-1.44550767603e-09
-2.4393600204e-09
-3.1679074579e-09
-2.88916987902e-09
3.1119164625e-10
-1.34125094335e-09
1.84640053491e-10
3.88697702023e-10
-1.05864507088e-10
1.05721718509e-08
5.71799511917e-08
8.00982582297e-09
1.33531292475e-09
1.83451348628e-09
1.32509918972e-09
1.57561659541e-09
2.46766870853e-09
6.98659032917e-10
-3.23773897165e-10
5.84738395467e-10
6.3570839131e-10
-6.27053196896e-10
1.63419273536e-09
2.26295016254e-09
2.94767677403e-09
2.46095787825e-09
3.24612459783e-09
3.07888334223e-09
1.29519776201e-09
2.09273973883e-09
2.47606746372e-09
1.9490199529e-09
2.38109921494e-09
2.76174200421e-09
2.8137427068e-09
1.65569996068e-09
1.80317898471e-09
1.53478336048e-09
1.17379898831e-09
-1.80570060179e-10
-3.90631689999e-10
-6.08152080195e-10
-1.4512257837e-09
-1.85140777018e-09
-1.28351495421e-09
-6.01705100675e-10
-5.15922262458e-10
-3.10593852747e-10
-5.9361339493e-11
6.43622220136e-10
1.69948012911e-09
2.37323258173e-09
2.90589009764e-09
2.76926156567e-09
2.50386708505e-09
2.13583635167e-09
1.49103379112e-09
5.36165926381e-10
6.70062353584e-11
5.68826669795e-10
6.45903068105e-10
3.18217572789e-11
-6.06230162438e-10
-1.25711674889e-09
-1.49276216185e-09
-8.92898934315e-10
-1.03106726631e-09
-1.74509957664e-09
-1.75400586338e-09
-1.56828867515e-09
-1.5071247933e-09
-1.45941569232e-09
-1.47424030415e-09
-1.54926592981e-09
-1.65243486043e-09
-1.46669249943e-09
-7.41230697087e-10
3.74797997237e-10
1.38348495901e-09
1.75729203358e-09
1.61821811749e-09
1.45585164238e-09
1.60011342352e-09
1.76100563778e-09
1.57219352351e-09
1.12756581246e-09
3.99961969672e-10
-4.03516966951e-10
-1.11481944891e-09
-1.69346323057e-09
-1.95963634622e-09
-1.97446026983e-09
-1.91403378641e-09
-1.81314729195e-09
-1.62793295012e-09
-1.38004113481e-09
-1.12039758439e-09
-9.56948389413e-10
-8.64766534917e-10
-1.06590107275e-09
-1.11773472456e-09
-9.58514976849e-10
-9.09898779687e-10
-6.53906047149e-10
-3.62555512413e-11
6.33762544872e-10
1.29085428293e-09
1.59025628935e-09
1.4269550075e-09
8.5151438682e-10
2.24673795193e-10
-8.71884893927e-11
1.53793866409e-10
7.21998390504e-10
9.24200613364e-10
6.24708186182e-10
9.73393322326e-11
-5.22352089561e-10
-9.30721072992e-10
-1.01800146546e-09
-8.57218306687e-10
-3.44136992733e-10
5.48398776206e-11
-1.9442582513e-11
-2.32449345891e-10
-2.4496383417e-10
-6.13741015339e-11
3.14959884074e-10
8.09433578242e-10
1.21906760538e-09
1.33325918749e-09
1.21973422031e-09
8.77767855383e-10
-8.64650703162e-11
-1.28638316658e-09
-2.27248579477e-09
-3.05708783454e-09
-3.20036994266e-09
-2.66916842344e-09
-2.34960925634e-09
-2.19748658594e-09
-1.68220224517e-09
-1.26023870057e-09
-8.55499888595e-10
-1.85023547658e-10
3.64686223792e-10
6.83148589103e-10
9.95401355878e-10
1.1478007943e-09
1.38640743444e-09
1.89874124182e-09
2.38357358346e-09
2.56620743942e-09
2.5292480038e-09
2.28940173094e-09
1.91319924719e-09
1.66565302133e-09
1.66823266017e-09
1.71232750133e-09
1.66334443303e-09
1.50069377836e-09
1.51718847446e-09
1.93277544915e-09
1.92484129154e-09
1.26763393348e-09
9.01504789059e-10
9.57413622259e-10
2.24357428388e-10
-8.13711941659e-10
-1.24677775885e-09
-1.67595167142e-09
-1.26027925228e-09
-7.08794682103e-10
-9.57207740314e-10
-1.05573381864e-09
-5.45674585898e-10
-1.78774297391e-10
-2.83438505854e-10
-1.86722483992e-10
4.43613283213e-10
1.09614660759e-09
1.36096912921e-09
1.35638964558e-09
1.12455566913e-09
7.7378217325e-10
6.9521414992e-10
6.74198838982e-10
8.67236377112e-10
1.42677765998e-09
2.08959322318e-09
2.41542413986e-09
2.54793482116e-09
2.67291262671e-09
2.6175139191e-09
2.59427895832e-09
2.63278422907e-09
2.68318057185e-09
2.59300480901e-09
2.23049545989e-09
1.57910912401e-09
8.61324934173e-10
3.90573456484e-10
2.50359645802e-11
-3.4429708196e-10
-3.71489804183e-10
-1.75018394485e-10
-5.91622867504e-11
3.78411969186e-13
1.0534908754e-10
2.71802073104e-10
4.15724829304e-10
3.11692030964e-10
1.51316718555e-10
2.16171490227e-10
3.20499267791e-10
2.56668347193e-10
3.93890225748e-10
8.88061105637e-10
1.21009371482e-09
1.55439482019e-09
1.94108145424e-09
1.78969887887e-09
1.6126730163e-09
1.55027019325e-09
1.40946367126e-09
8.43094349929e-10
1.93000056922e-10
1.2974617752e-10
1.00955739401e-10
5.25681286386e-10
9.30111394559e-10
8.43207534706e-10
3.27351446697e-10
2.18723176981e-10
5.67853640696e-10
4.79111692878e-10
1.23463522392e-10
-1.56246238549e-10
1.19490937869e-11
4.85256705153e-10
4.34356801286e-10
-4.80864839321e-11
-4.48263811731e-10
-8.79182082767e-10
-1.05978051855e-09
-1.04210082336e-09
-1.12924060836e-09
-1.33115505177e-09
-1.37399374308e-09
-1.32412256073e-09
-1.52826808893e-09
-1.82787084215e-09
-2.03459982084e-09
-2.5473368159e-09
-3.08554366817e-09
-2.83817828384e-09
-2.51401051635e-09
-2.78390718884e-09
-2.9047783669e-09
-2.43503094089e-09
-1.93667529472e-09
-9.61434275902e-10
-6.28645512958e-10
-6.27149970411e-10
4.18875633049e-10
1.36505892192e-09
1.52320431421e-09
1.42525702408e-09
9.61103933052e-10
3.13441154e-10
-1.28699456555e-10
-4.24020246473e-10
-1.06688077223e-09
-1.34971396716e-09
-1.50623400911e-09
-1.38778471001e-09
-9.10357553908e-10
-3.27509100704e-10
2.98970866645e-11
5.22406723186e-10
1.14009427678e-09
1.67000888826e-09
1.9633186102e-09
2.14525069936e-09
2.07350150301e-09
1.89750182086e-09
1.57608182825e-09
1.16544110246e-09
7.1920529936e-10
2.99660139706e-10
4.04741988351e-11
-1.76681331918e-10
-3.99497583858e-10
-4.88846007267e-10
-4.0045938977e-10
-1.90024641936e-10
1.02886974521e-10
3.50783024996e-10
8.42679621422e-10
9.33302405899e-10
9.56250434264e-10
9.95961456414e-10
9.07749115946e-10
6.09782195102e-10
6.26378641033e-10
8.16995041362e-10
1.18998901724e-09
1.40157918419e-09
1.16922744561e-09
6.5064031162e-10
5.71412237866e-10
4.63746726973e-10
4.32302322873e-10
4.82206963026e-10
6.49840289002e-10
9.35375095521e-10
1.20723624917e-09
1.08803796119e-09
7.87096895907e-10
7.06849841517e-10
5.92735868797e-10
6.17723764257e-10
7.76785116807e-10
3.62313684507e-10
-4.03938154084e-10
-9.24696974672e-10
-1.40437130919e-09
-1.46480922755e-09
-9.81261834889e-10
-8.13108430684e-10
-7.94705581114e-10
-5.94331467111e-10
-2.75317683351e-10
3.09456605137e-10
7.73096605959e-10
9.37748481839e-10
1.13604528724e-09
1.76789209505e-09
2.09499845806e-09
1.67259699743e-09
1.48137793316e-09
6.7892380052e-10
-1.7474268526e-10
-7.52026132e-10
-9.7716748938e-10
-6.52147183234e-10
1.27174373734e-10
1.1167523781e-09
1.97634682396e-09
2.36655076232e-09
2.54412952565e-09
2.47518591418e-09
2.23771450995e-09
1.97025792762e-09
1.66579744044e-09
1.39755565858e-09
1.30862609296e-09
1.26262288656e-09
1.38025416359e-09
1.6184563455e-09
1.75453451782e-09
1.76827190992e-09
1.70786257891e-09
1.56785586779e-09
1.70144461027e-09
1.74195650207e-09
1.72996230378e-09
1.42422449092e-09
1.16335655437e-09
8.54176823131e-10
8.69723689362e-10
1.00807148646e-09
1.21085900909e-09
1.46205679399e-09
1.38795051671e-09
1.07757477495e-09
5.69792922629e-10
-5.21349626068e-10
-1.59054491583e-09
-1.85941482557e-09
-1.53464329564e-09
-1.00241370342e-09
-6.57055633284e-10
-8.40688776358e-10
-1.06642739785e-09
-8.29189562946e-10
-8.52763125142e-11
5.33406504797e-10
7.43014760233e-10
5.56770002823e-10
-1.36353246267e-10
-9.88963058446e-10
-1.52397956112e-09
-1.69525004657e-09
-1.45357545309e-09
-7.43234988799e-10
6.05632792452e-11
6.0403444128e-10
1.184620893e-09
1.85553493821e-09
2.14369554687e-09
1.91828568004e-09
1.90432022432e-09
2.03145309344e-09
1.56661242342e-09
1.07373242174e-09
4.97171494105e-10
-5.71527434347e-10
-6.38557598386e-10
-1.72936811017e-10
1.39350154713e-10
5.96555669751e-10
8.43674024867e-10
3.19027653924e-10
-2.60408527051e-10
-2.92998013818e-10
1.59786412752e-10
7.28532614417e-10
1.01886014511e-09
1.30960780415e-09
1.6060094081e-09
1.74773157271e-09
1.50915140234e-09
7.93172663237e-10
-4.39377165564e-11
-4.6238639206e-10
-5.55670130541e-10
-4.66772540419e-10
-6.24707974424e-11
3.83394216982e-10
7.64688639287e-10
1.12526590625e-09
1.3610614558e-09
1.1423094797e-09
4.18529778908e-10
-5.40303258812e-10
-1.27352949455e-09
-1.69707900246e-09
-1.58848599049e-09
-8.80137959448e-10
2.1731689053e-10
8.9894420846e-10
9.74904005587e-10
6.82213464729e-10
2.68191383408e-10
-2.50380821626e-10
-5.06963618492e-10
-8.15403889971e-10
-1.00709888088e-09
-9.71417829734e-10
-5.16343449591e-10
-1.19525877978e-11
-2.33472985208e-10
-5.70675372141e-10
-4.36756286807e-10
3.7060735467e-10
4.61878966385e-10
-2.06427223202e-10
-1.19438315947e-09
-1.70529882194e-09
-1.71171276717e-09
-2.19244292826e-09
-2.86172029406e-09
-3.22462054888e-09
-3.6691408985e-09
-3.77303457168e-09
-2.86395391994e-09
-1.48071989444e-09
-2.74749959519e-10
5.60711247127e-10
1.0953165153e-09
1.1959431824e-09
1.79468155018e-09
2.2827190645e-09
5.97408102534e-10
-1.17981948674e-09
-1.04164766073e-09
-9.96923474084e-10
-1.43980905012e-09
-1.12705949852e-09
-1.10122012319e-09
-2.81940422208e-10
1.30048430639e-09
8.24520664401e-10
2.37821122963e-10
9.32520276852e-10
1.96385594673e-10
-8.45626237287e-10
-4.78188215208e-11
6.17420102946e-10
6.31741947776e-10
1.01030553586e-09
1.37949755141e-09
1.59750392676e-09
1.87006282381e-09
1.66444769344e-09
1.17194080978e-09
3.98467168278e-10
3.66930861102e-10
8.99363066252e-10
7.27654453009e-10
1.77594433435e-10
2.39273000962e-09
-3.47063491566e-10
-5.24760585395e-09
3.51623514614e-09
-1.11481881364e-09
9.50796389117e-10
9.64603026157e-10
-3.07631975466e-08
3.21931600505e-10
1.40818403741e-08
6.74808194485e-09
5.02796851666e-09
4.20071760037e-09
2.99093771126e-09
1.9590122947e-09
1.31725481759e-09
1.29692009763e-09
1.42515410958e-10
2.73822458441e-10
9.43508729397e-10
1.33582283859e-09
1.98184639713e-09
2.11157182234e-09
1.8817319732e-09
1.96715058725e-09
1.99692411299e-09
1.85857261012e-09
4.16496158681e-10
1.51726576622e-09
7.20074169875e-10
1.89788042804e-09
1.39947416173e-09
2.03909682464e-09
2.21969218993e-09
1.7423949475e-09
9.80723968968e-10
7.0488705442e-10
8.90525971513e-10
4.83745174858e-10
-3.31266962375e-10
-1.24946719434e-09
-1.2062215037e-09
-4.73368174221e-10
-6.92539643389e-10
-7.34910348993e-10
-2.77247012647e-10
2.96774510213e-10
9.74381386259e-10
1.71014554446e-09
2.54439930564e-09
3.10504787233e-09
3.19757266929e-09
2.65572526942e-09
2.10426065746e-09
2.2295508064e-09
1.91684868865e-09
8.37406417809e-10
2.54196281537e-10
1.21265471894e-10
-1.38381466659e-10
-4.3781036637e-10
-1.02618105087e-09
-1.47230801024e-09
-1.30048314172e-09
-1.54048113936e-09
-2.2108991409e-09
-2.01972057539e-09
-1.3137056966e-09
-1.14170072771e-09
-1.33476689291e-09
-1.63146806859e-09
-2.02629201582e-09
-2.11832193378e-09
-1.40640969397e-09
-2.3348590246e-10
6.6626415197e-10
1.25716630031e-09
1.5457866361e-09
1.48578917487e-09
1.34423895795e-09
1.56139512398e-09
1.84217151116e-09
1.66756286886e-09
9.6056140845e-10
-7.20575163394e-11
-1.0269156402e-09
-1.44469579495e-09
-1.6272536297e-09
-1.92363765772e-09
-2.17778714069e-09
-2.11403181778e-09
-1.86736375332e-09
-1.54426727075e-09
-1.24506452884e-09
-9.64855441976e-10
-6.96740715049e-10
-4.50603528489e-10
-4.51194757486e-10
-6.69331575909e-10
-8.15548520847e-10
-6.75892269602e-10
-2.38063268507e-10
6.01540352767e-10
1.42654324361e-09
1.86269469596e-09
1.6512566376e-09
1.05875391462e-09
4.72255384687e-10
1.11903004969e-10
9.33404896886e-11
3.25374577677e-10
7.0124078934e-10
7.03296326545e-10
2.04938139281e-10
-5.14131634808e-10
-1.12549629921e-09
-1.32222160704e-09
-1.13983000251e-09
-8.15544709198e-10
-5.09017249872e-10
-2.33706554543e-10
-1.15668701695e-11
-2.6609540038e-12
-1.56845937876e-10
3.66934672751e-12
3.12932722473e-10
7.13133343678e-10
1.13501599663e-09
1.09601616452e-09
6.23927539442e-10
2.35924192678e-10
-2.94584982984e-10
-1.02007373157e-09
-1.58237415478e-09
-2.17607848994e-09
-2.77768218489e-09
-2.57310101706e-09
-1.63929737941e-09
-7.52097918043e-10
-1.83134240669e-10
6.60469705457e-11
2.63928478343e-10
3.06788345474e-10
8.8909236825e-11
1.93480112845e-10
6.58985280217e-10
1.08705201484e-09
1.43186133997e-09
1.63689159409e-09
1.82459875388e-09
1.77112175227e-09
1.59977715144e-09
1.57400913863e-09
1.50658150438e-09
1.23492745028e-09
1.03521529253e-09
1.07061195236e-09
1.21515177207e-09
1.06468992151e-09
7.01314904723e-10
9.25543160586e-10
2.02737928848e-09
2.38946130948e-09
1.48637934507e-09
7.00325993757e-10
5.19390227103e-10
2.44348464734e-10
-2.63896291091e-10
-1.31256161979e-09
-1.72056976719e-09
-9.19958354727e-10
-5.15951538035e-10
-7.58933473927e-10
-3.88744229278e-10
1.29995046388e-10
4.10643743351e-10
6.98517472535e-10
1.07403121261e-09
1.40400517919e-09
1.58283437491e-09
1.43944016727e-09
1.05200073269e-09
5.7357831287e-10
5.15490275655e-10
8.10871628428e-10
1.12066228218e-09
1.49414451962e-09
1.99609116196e-09
2.34869107263e-09
2.61972848674e-09
2.81846189792e-09
2.7981462362e-09
2.69656453945e-09
2.76596808981e-09
2.77221220494e-09
2.58621880456e-09
2.2987665272e-09
1.76645947117e-09
1.00249525681e-09
3.92695485775e-10
4.34837068967e-11
-3.66980624288e-10
-6.67227757826e-10
-7.77432673495e-10
-7.35625456559e-10
-5.82020902014e-10
-3.04076357735e-10
-1.24725389725e-10
7.74836093995e-11
3.56824487492e-10
4.64204971798e-10
5.16166207947e-10
6.95197209261e-10
9.88883860865e-10
1.20293543938e-09
1.47826688702e-09
1.88113396794e-09
2.05156419671e-09
2.18756359496e-09
2.2281985183e-09
1.88307557922e-09
1.60616674447e-09
1.61537971008e-09
1.64568940767e-09
1.06068779672e-09
5.51017378562e-10
1.36252925802e-10
6.8978267026e-11
1.97258673883e-10
2.20750762098e-10
3.10030575838e-10
8.85996462828e-13
-4.34331390298e-10
-3.62288273518e-10
-8.92620260476e-11
3.8805543929e-11
1.10551352144e-10
3.8213213789e-10
5.60295777466e-10
5.38548206546e-10
5.42900261828e-10
3.2592430206e-10
-1.39096362466e-10
-4.76069785807e-10
-6.69477900851e-10
-1.06277816815e-09
-1.3588441353e-09
-1.37603339842e-09
-1.82554361913e-09
-2.49431043582e-09
-2.7048980731e-09
-3.11527537165e-09
-3.8539380766e-09
-3.8686844967e-09
-3.03685663788e-09
-2.54396181312e-09
-2.59397063833e-09
-2.24427012144e-09
-1.99357049779e-09
-1.35704493144e-09
-4.54001242338e-10
3.09962535269e-10
1.07412732438e-09
1.49315788505e-09
1.32252929176e-09
1.69890711132e-09
2.06523806134e-09
1.39922367821e-09
2.8843631788e-10
-1.20285031257e-10
-5.55305482858e-10
-8.99926343162e-10
-7.36818714223e-10
-6.57578782008e-10
-6.85577456079e-10
-5.88635382299e-10
-5.06819199374e-10
-1.82874413312e-10
4.9874782242e-10
1.20810149333e-09
1.55593853773e-09
1.74976805167e-09
1.62848140395e-09
1.34821238951e-09
1.16873351952e-09
1.09824153183e-09
1.01757456085e-09
7.04970698923e-10
3.67150242636e-10
4.41774268805e-11
-2.93151326781e-10
-5.28700177984e-10
-2.9757834448e-10
-4.88361080904e-11
8.98197972433e-11
-1.12943373187e-11
2.88137738766e-10
3.88201128957e-10
3.85592479238e-10
4.38482063497e-10
7.23823746505e-10
7.89790248921e-10
6.07228179008e-10
6.17230685203e-10
6.90730460423e-10
1.31363806632e-09
1.55264209726e-09
1.23866974772e-09
7.29589711535e-10
6.09888497737e-10
1.02682458415e-09
1.4399987855e-09
1.72160124156e-09
1.63532458313e-09
1.48443413391e-09
1.40840445656e-09
1.32773769735e-09
1.41825163809e-09
1.24680031111e-09
7.47058495523e-10
4.14371058896e-10
-1.32039730983e-10
-8.49393628078e-10
-1.08518388367e-09
-1.15129946389e-09
-1.38989848073e-09
-9.76314738961e-10
-3.97107256881e-10
-4.89373285276e-12
3.40550443477e-10
6.38738651679e-10
1.16636712123e-09
1.49423695209e-09
1.73591609837e-09
1.87581205993e-09
1.96704264349e-09
2.16013513288e-09
1.6450250162e-09
9.72426328337e-10
-5.37785453376e-11
-9.45592642206e-10
-1.4218729157e-09
-1.20536070647e-09
-5.01177536429e-10
2.3529347077e-10
9.78376840671e-10
1.7558514423e-09
2.36536618675e-09
2.75672547805e-09
2.74879470856e-09
2.36988595455e-09
2.01152156116e-09
1.81150150693e-09
1.60678401973e-09
1.51887766992e-09
1.38968841656e-09
1.1280924552e-09
8.96669924996e-10
9.20854197948e-10
1.12543573636e-09
1.57597425507e-09
1.70727410277e-09
1.78457814119e-09
1.69923957175e-09
1.44581578426e-09
9.67868973444e-10
6.4832367651e-10
4.8627907392e-10
5.75753281721e-10
9.18771555689e-10
1.08929389929e-09
1.07578478257e-09
5.53744189377e-10
-3.1170812459e-11
-1.01349609721e-11
1.35306419423e-10
-5.50800538128e-10
-1.36886278806e-09
-1.63454400588e-09
-1.45409659011e-09
-9.53609491414e-10
-6.94949875641e-10
-4.14497266805e-10
-3.31107296664e-11
3.44050383615e-10
8.71471118332e-10
1.31674829189e-09
1.13611555127e-09
2.95122795966e-10
-7.19689166931e-10
-1.17856248984e-09
-1.08922126621e-09
-8.79387064741e-10
-3.88586528948e-10
4.48742808862e-10
9.99768234237e-10
1.24746777307e-09
1.96030867862e-09
2.93075178519e-09
3.13976605877e-09
2.66151982181e-09
2.37330288546e-09
1.69082768755e-09
1.08216844638e-09
7.99150598262e-10
1.25897259807e-10
1.52820837311e-10
8.58980770492e-10
8.26797753661e-10
4.42266765525e-10
3.26813124999e-10
-1.61980016328e-10
-6.34666223147e-10
-7.58388937621e-10
-3.03574490714e-10
5.7973708943e-10
1.14043690161e-09
1.37687852554e-09
1.56134049035e-09
1.56917681567e-09
1.25112483782e-09
6.52339036196e-10
6.08470352825e-11
-1.46912358987e-10
-9.74439408016e-11
-1.20507377406e-10
-1.0638310301e-10
4.78078100925e-11
3.85403379133e-10
8.32837098575e-10
9.96664705518e-10
6.2202902097e-10
-5.94384194912e-11
-8.46501010563e-10
-1.29936844636e-09
-1.33395068402e-09
-8.99717973057e-10
-2.90131654324e-10
1.99314052269e-10
2.67633188696e-10
1.05353957979e-11
-3.53686230423e-10
-5.69956611746e-10
-8.24251149105e-10
-9.18368791523e-10
-7.66237650789e-10
-6.60401095788e-10
-6.42743211695e-10
-3.49081547563e-10
-4.12085764004e-11
-2.11362143032e-10
-7.54022006322e-10
-1.12233578644e-09
-7.98209650537e-10
-5.16029094489e-10
-8.51582255335e-10
-1.29550767019e-09
-1.910109271e-09
-2.30324351984e-09
-2.72569739064e-09
-3.38488002953e-09
-3.74156306252e-09
-3.58710152239e-09
-2.9026213975e-09
-1.43598850801e-09
8.69369206073e-11
1.15588657081e-09
2.16751326631e-09
3.13340865299e-09
2.73238852741e-09
2.37776124338e-09
3.54147778676e-09
2.68473064215e-09
-6.37474878521e-10
-2.2352966544e-09
-2.14239323371e-09
-1.36278919125e-09
-3.15995805369e-10
-7.64835387745e-10
-1.19984758077e-09
6.1150590715e-10
1.41429588835e-09
1.81077591733e-10
-2.87739491006e-10
-2.4931144253e-10
-4.69422588874e-10
-2.88883657156e-10
3.66985494727e-10
8.7939553507e-10
7.95276693078e-10
1.57228097966e-09
2.38359687687e-09
1.8931902114e-09
1.46099292061e-09
1.45756794289e-09
9.76839052355e-10
1.44602161327e-09
2.2346618032e-09
-8.71707017008e-10
-2.61973314542e-10
-3.25907742566e-09
2.71696511623e-09
-2.19216594848e-09
1.64090187157e-10
2.25816929683e-09
5.56387948612e-09
1.48251833596e-08
1.52691834193e-08
-2.37747886377e-08
4.27586212829e-09
3.80345703053e-09
3.69552173964e-09
3.55806650351e-09
3.53553330953e-09
2.22169796395e-09
5.56599325684e-10
-2.35712752078e-10
3.98833933544e-10
-8.14735580975e-11
2.01943200186e-09
1.66582115737e-09
1.91658377909e-09
2.75829100669e-09
2.28669567243e-09
1.81270958767e-09
1.25051084481e-09
2.36214852034e-09
2.30677522372e-09
1.39793163532e-09
1.36239248867e-09
1.73172994243e-09
2.80283345183e-09
2.14110129671e-09
1.78716423865e-09
1.97766819536e-09
2.60248480176e-09
1.24657627089e-09
6.38685076845e-10
6.52256026967e-10
7.61245450356e-11
-6.01046532559e-10
-1.03934966035e-09
-7.92439132705e-10
-1.00976237598e-09
-9.9837359449e-10
-4.88737163533e-10
4.30441815004e-10
1.40529033993e-09
2.14510416266e-09
3.30376391934e-09
4.06619775692e-09
3.89513098289e-09
3.17277281514e-09
2.266162535e-09
1.7619060338e-09
1.98218965723e-09
1.51784873665e-09
3.67366236037e-10
-4.90501533162e-10
-1.0795570438e-09
-1.00209376319e-09
-1.24051236202e-09
-2.09038774009e-09
-2.23744070655e-09
-1.96922857083e-09
-1.86702801063e-09
-1.58019216151e-09
-1.153567924e-09
-1.1946251462e-09
-1.54540763187e-09
-2.06030247976e-09
-2.42958785423e-09
-2.05654120349e-09
-1.03951663172e-09
4.12038118401e-11
7.53141780271e-10
1.03959847627e-09
1.20247867687e-09
1.58105391165e-09
2.15652026096e-09
2.71392109157e-09
2.76580355366e-09
2.18189779158e-09
1.1094458719e-09
1.7161776896e-10
-5.48465691808e-10
-1.17835411974e-09
-1.6404012751e-09
-1.89473562301e-09
-2.23944753936e-09
-2.45673817186e-09
-2.22780337743e-09
-1.74944173223e-09
-1.28998353307e-09
-1.11848710158e-09
-1.17469938433e-09
-1.3926985599e-09
-1.63295839659e-09
-1.70340782088e-09
-1.58970952958e-09
-1.24046090477e-09
-5.64004934742e-10
3.76125403745e-10
1.15075058654e-09
1.25897005698e-09
8.4891420743e-10
3.46042393348e-10
7.34400858676e-11
4.71721118655e-11
2.21084916596e-10
4.46573133968e-10
4.44773612471e-10
1.10790638951e-10
-4.08853062761e-10
-9.69078536492e-10
-1.3109228228e-09
-1.32094830476e-09
-9.7917559274e-10
-4.40859049706e-10
-6.8210292693e-11
1.2528083158e-10
1.72013756863e-10
2.48874161771e-10
2.67132803982e-10
4.39352389851e-10
7.83115629296e-10
1.14236390157e-09
1.24679692297e-09
9.40634746607e-10
1.94669452982e-10
-7.24805034174e-10
-1.46385642137e-09
-2.14895797728e-09
-2.53831191808e-09
-2.2692948099e-09
-2.05008416545e-09
-2.06436805262e-09
-1.78076479886e-09
-1.34902871751e-09
-7.42278265085e-10
-3.30541902172e-11
1.57381897973e-10
1.49068057838e-10
1.46821726462e-10
1.16621190244e-10
2.77773443624e-10
7.76472561649e-10
1.41711915504e-09
2.04893627699e-09
2.36909440226e-09
2.37436718236e-09
2.33567471733e-09
2.29429546379e-09
1.95123780279e-09
1.27583151834e-09
5.5791010917e-10
1.29586723567e-10
2.74004994041e-10
1.02774742655e-09
1.60310006169e-09
1.31141876059e-09
1.46967416129e-09
2.11721306177e-09
2.18700815311e-09
1.64694291055e-09
7.24594970003e-10
1.55135143081e-10
-1.5111787757e-10
-8.96482518957e-10
-1.39306797214e-09
-1.01383988671e-09
-5.73676039297e-10
-6.96443406485e-10
-4.05790323972e-10
2.56839156681e-10
6.93012975988e-10
9.4552487957e-10
1.29071049909e-09
1.55168219717e-09
1.38275036969e-09
1.02177076208e-09
6.90477329921e-10
4.4255078626e-10
2.66051354667e-10
4.52666053716e-10
8.95255379974e-10
1.41990377586e-09
1.85729761377e-09
2.08573392932e-09
2.31941888452e-09
2.57406155242e-09
2.76371095876e-09
2.69391163226e-09
2.45448887587e-09
2.50473910547e-09
2.47126817504e-09
2.27838056174e-09
1.95947286886e-09
1.40669302649e-09
6.06141859253e-10
-8.59571152456e-11
-5.985795491e-10
-1.03823284741e-09
-1.05889113396e-09
-8.38570876353e-10
-6.66364207737e-10
-2.23938570595e-10
1.50661326812e-10
3.46815522671e-10
5.77497322559e-10
7.82074837562e-10
7.678408724e-10
8.86643172483e-10
1.24276038746e-09
1.46999306919e-09
1.43248009754e-09
1.79856519624e-09
2.24692853435e-09
2.40213673402e-09
2.23993331275e-09
2.0150073135e-09
1.51458109529e-09
8.64851555849e-10
8.67693774904e-10
1.42391553565e-09
1.59790182049e-09
1.15257626017e-09
3.33712915594e-10
-2.93254453042e-11
-3.04051264384e-10
-1.01203613005e-09
-6.52477314325e-10
3.56198530144e-12
8.20584343476e-11
1.38954060931e-10
7.03024640727e-11
-3.06074084941e-10
-3.20831092948e-10
7.23577895192e-12
2.66311393781e-10
2.88929714572e-10
-6.06568763858e-11
-6.23854165213e-10
-1.0245659708e-09
-1.41878696291e-09
-2.07607013042e-09
-2.74080718787e-09
-2.79751350259e-09
-2.82381218153e-09
-3.46016601195e-09
-3.79903805964e-09
-3.40169321002e-09
-3.38833253583e-09
-3.90904815773e-09
-3.67440139662e-09
-2.78616855505e-09
-2.29526108135e-09
-2.46776590556e-09
-2.37935938279e-09
-1.32898537688e-09
-4.70114561852e-10
-2.11185721951e-10
2.82279685373e-10
1.12160391812e-09
1.33989526712e-09
1.24695330643e-09
1.23745203198e-09
1.28927477825e-09
1.06325038902e-09
7.35105590088e-10
4.17087281799e-10
1.860465517e-10
4.27733427155e-10
6.1097502925e-10
7.0669695207e-10
7.31447678305e-10
6.77755530328e-10
4.76509395906e-10
7.0635940944e-10
1.24407413557e-09
1.72296072944e-09
2.02949348272e-09
2.13671896e-09
2.0321023442e-09
1.59261718193e-09
1.08737896955e-09
7.7278415668e-10
2.63193465503e-10
-3.27297765984e-10
-5.90402716543e-10
-6.04976765434e-10
-7.96330402065e-10
-6.96700692743e-10
-2.03343387999e-10
3.91475334815e-10
4.41254190576e-10
4.03729783979e-10
7.01926462511e-10
7.27245124337e-10
4.77964810268e-10
6.0648088419e-10
1.16370468491e-09
1.37483855257e-09
1.32991563081e-09
6.17499909331e-10
3.31252192238e-10
2.26530491414e-10
2.37050005344e-10
6.98334195781e-11
-5.24487036105e-11
1.56128924486e-10
5.11106880153e-10
9.31797651868e-10
1.2650509065e-09
1.44230567973e-09
1.37960067768e-09
1.01639210286e-09
7.33927790774e-10
5.38483408525e-10
2.1011329883e-10
5.41414989555e-11
-1.77282301794e-10
-5.49461802554e-10
-6.02710528784e-10
-1.68806043091e-10
-2.22501155684e-10
-5.06624381796e-10
-4.31522205528e-10
-1.43663564118e-10
2.54059485716e-10
5.72905980469e-10
9.36433886705e-10
1.48099772124e-09
1.59026486556e-09
1.45144654166e-09
1.23079323467e-09
1.39394809231e-09
1.23746844325e-09
6.87897161684e-10
-1.59842316927e-10
-8.61865341194e-10
-1.13667840467e-09
-5.90619556978e-10
3.50838505654e-10
1.14791683781e-09
1.76406977947e-09
2.10058411095e-09
2.29133635419e-09
2.52232393297e-09
2.58948136371e-09
2.32731704324e-09
1.97892095709e-09
1.60023963142e-09
1.24260792153e-09
1.03614872284e-09
8.61229642967e-10
6.27009786458e-10
3.37596839589e-10
2.24883012331e-10
4.08068286735e-10
9.91466887838e-10
1.5868704869e-09
1.91683090096e-09
1.93157689753e-09
1.50610716593e-09
1.03515600022e-09
6.63825226477e-10
5.60767998334e-10
7.34146325275e-10
9.0054510073e-10
8.28176935057e-10
1.07834155152e-09
1.17228110526e-09
8.04136022432e-10
2.22067686573e-10
9.70855399857e-11
1.7578760628e-10
-3.7709152423e-10
-1.05154562453e-09
-1.24059150666e-09
-9.50178055066e-10
-6.81033759592e-10
-6.98315984573e-10
-2.75504877633e-10
4.41604015183e-10
7.41558710596e-10
6.06062661672e-10
2.29182128055e-10
-3.32906818161e-10
-1.00195950847e-09
-1.38483110612e-09
-1.20492384923e-09
-9.82384577061e-10
-9.2565793355e-10
-5.54577881556e-10
1.54772401221e-10
6.8074089795e-10
1.14538844446e-09
2.16934455154e-09
3.11461807409e-09
3.21756815256e-09
2.91861803822e-09
2.15630786745e-09
1.43254404853e-09
1.20021222846e-09
9.6540982504e-10
9.32999591621e-10
1.70878076263e-09
1.62774554408e-09
4.19655432756e-10
-4.72849247427e-10
-8.58999643445e-10
-5.8640863856e-10
-3.79985544644e-10
-1.33190637e-10
3.56208906298e-10
9.38927551702e-10
1.37242863795e-09
1.6310072562e-09
1.44433686474e-09
8.97020596637e-10
5.58454751355e-10
5.19683512261e-10
6.24605483437e-10
6.44686093518e-10
3.56717337824e-10
-1.07468152216e-10
-2.96831684937e-10
-7.05353981332e-11
3.57228098692e-10
6.24285304983e-10
4.82809203451e-10
1.05497953581e-10
-4.0138180865e-10
-7.91129619769e-10
-6.70670099724e-10
-3.02955309629e-10
5.27743877787e-12
1.21409467495e-10
-2.128479447e-10
-6.16432039013e-10
-8.08769080895e-10
-7.26535734244e-10
-4.3726508891e-10
-3.628765379e-10
8.85657649649e-11
6.87290368457e-10
4.26496759052e-10
4.34409317329e-11
3.73995751157e-11
5.9260330814e-10
3.76555564133e-10
-6.1849748915e-10
-9.91324109847e-10
-1.1022153869e-09
-1.52953927363e-09
-2.12535389543e-09
-3.0929215369e-09
-3.80602015223e-09
-4.05411652599e-09
-4.55983331199e-09
-4.90778470584e-09
-4.26679591114e-09
-2.83952464271e-09
-1.3907459372e-09
-3.07994732149e-10
6.4800053344e-10
1.63210035222e-09
2.94188179812e-09
2.85902249412e-09
1.23799286252e-09
1.17532428289e-09
2.23188438217e-09
1.10235535909e-09
-6.54191073735e-10
-2.16871562958e-09
-2.29415824445e-09
-1.24115737761e-11
8.35375656318e-10
-2.25374291441e-10
7.03505331924e-10
1.93891177934e-09
1.05036807668e-09
2.96647640559e-10
7.76327877834e-10
7.05817943629e-10
2.33228510323e-10
8.58635604566e-10
1.13069178755e-09
5.53620734325e-10
1.24600918233e-09
1.80338777833e-09
8.22498637937e-10
6.1077809409e-10
1.01946132674e-09
6.21211422417e-10
1.16176497947e-09
1.94603278533e-10
1.2399770372e-09
-1.06140089258e-09
2.96425236177e-09
-2.26171307092e-09
-1.52159177524e-09
-1.6312643307e-09
-1.82152317725e-09
-1.25519948981e-09
1.27895452882e-09
4.8123347653e-08
1.04327315931e-08
7.79162441828e-09
6.10629482159e-09
4.72874057552e-09
2.77527211146e-09
1.99916377398e-09
1.6574152024e-09
1.60759823015e-09
8.14379827138e-12
1.06129289588e-09
1.10425694806e-09
1.76088578262e-09
2.68772215076e-09
2.38301496523e-09
2.55171407042e-09
1.77444635659e-09
2.3029466348e-09
1.84366726547e-09
1.11556430851e-09
2.25771909882e-09
1.7093650036e-09
2.61120295454e-09
1.28198317453e-09
1.59496356908e-09
2.09731456377e-09
1.70062817639e-09
9.94904571054e-10
1.39391616976e-09
1.6802651867e-09
6.49466323955e-10
5.391589173e-10
4.50744347717e-11
-4.40172105985e-10
-7.91568382835e-10
-1.07817553307e-09
-8.19329464165e-10
-5.33657861825e-10
-2.35241378243e-10
6.75940762238e-11
1.23763541462e-09
3.18094414199e-09
4.12936439193e-09
3.91990500253e-09
3.28989121373e-09
2.53984946817e-09
1.89266039229e-09
1.30490253612e-09
1.3601705889e-09
1.26535837946e-09
3.09591812771e-10
-6.58359322869e-10
-1.17619206814e-09
-1.0639851901e-09
-9.50713379888e-10
-1.82943721783e-09
-2.28433033292e-09
-1.68516633109e-09
-1.1209659435e-09
-8.74921295284e-10
-8.39124094747e-10
-9.50453023136e-10
-1.48137081279e-09
-2.02498002796e-09
-2.08685706854e-09
-1.52745435497e-09
-6.88577011504e-10
7.96878008865e-12
3.8634644444e-10
4.92223127627e-10
8.00259576149e-10
1.59003500199e-09
2.56288812906e-09
3.08914673457e-09
2.73187967236e-09
1.86747471464e-09
9.3848582402e-10
1.38227306662e-10
-4.92939293984e-10
-9.43302900391e-10
-1.46237697245e-09
-2.08517954626e-09
-2.52138669101e-09
-2.60394191019e-09
-2.28855046282e-09
-1.6298116692e-09
-1.09560111837e-09
-1.08756192867e-09
-1.47885896305e-09
-1.84736149379e-09
-1.91680993689e-09
-1.81045118608e-09
-1.39847320702e-09
-7.21313564366e-10
-1.03281056599e-10
3.44293270312e-10
7.27205949063e-10
9.59325375621e-10
7.77992774031e-10
2.80415974661e-10
-1.60487332516e-11
2.40321881861e-10
5.45210967709e-10
6.58330947265e-10
4.6273833425e-10
-1.2893789633e-10
-8.18253308805e-10
-1.27701439985e-09
-1.26102961759e-09
-9.36049757264e-10
-5.01669239055e-10
1.62507506095e-11
2.39289348698e-10
5.76943363012e-10
7.93619684875e-10
8.19821802066e-10
9.08587466806e-10
8.72677928524e-10
9.00288661505e-10
9.73098978377e-10
9.02462677444e-10
5.69170565171e-10
-5.31830811757e-12
-8.03057590671e-10
-1.58260811123e-09
-2.33830312674e-09
-2.63299016396e-09
-2.44043199354e-09
-2.02366187264e-09
-1.42287421452e-09
-8.5541285596e-10
-5.80525465346e-10
-4.8127205041e-10
-3.53314806475e-10
-3.77654298215e-10
-4.33272599114e-10
-3.50118951165e-10
-1.2795660866e-10
3.12943098627e-10
9.69864159551e-10
1.54809374209e-09
1.88816857657e-09
2.11010306721e-09
2.24546486141e-09
2.03395226415e-09
1.61948549054e-09
1.33466473279e-09
9.65765790636e-10
4.6874210378e-10
5.32953130412e-12
-2.69924836334e-10
2.31041788891e-10
1.20193128182e-09
1.65888141643e-09
1.91964389737e-09
2.40548336119e-09
2.70599243967e-09
2.14830721775e-09
8.00026853846e-10
-1.08129261431e-10
-2.43777988044e-10
-5.78260922761e-10
-1.40808406635e-09
-1.23966956424e-09
-2.62558826067e-10
4.15143023548e-11
4.27108422719e-12
4.09544790894e-10
9.44938706301e-10
1.19739494394e-09
1.34219940849e-09
1.58105814682e-09
1.52018972395e-09
1.21721027389e-09
7.83276565556e-10
4.94677193834e-10
4.7431706288e-10
7.50861885214e-10
9.84864266014e-10
1.33152224056e-09
1.76617762096e-09
2.07066775429e-09
2.08193413952e-09
1.96510839082e-09
2.02217088289e-09
2.20268334483e-09
2.28393794491e-09
2.42026789777e-09
2.38690877569e-09
2.33443931978e-09
2.2579975609e-09
1.89506215421e-09
1.15123847751e-09
2.83267722836e-10
-1.45826039232e-10
-5.93191149006e-10
-9.78025745514e-10
-6.83913036338e-10
-4.23663433843e-10
-1.63018690479e-10
2.02729289112e-10
7.15525999995e-10
1.14008855931e-09
1.5970691871e-09
1.66473822574e-09
1.47848923317e-09
1.3998418005e-09
1.64223764253e-09
1.71820590999e-09
1.67863591882e-09
1.7931496911e-09
2.05054606311e-09
1.88038095565e-09
1.81578812892e-09
1.62904425735e-09
1.12120184217e-09
3.79675001189e-10
3.25696450197e-10
5.81310453129e-10
8.23698949798e-10
6.41412046479e-10
9.53660101633e-11
2.4986031988e-10
-3.0911747432e-10
-1.10186598581e-09
-9.68398580794e-10
-9.87529455182e-10
-1.03866737531e-09
-6.46381006445e-10
-2.71835319147e-10
-2.55245755359e-10
-4.31793256071e-10
-5.05130639194e-10
-6.05594675969e-10
-8.78356225644e-10
-1.33525087959e-09
-1.78013121821e-09
-1.96841478393e-09
-2.0513350743e-09
-2.36336168328e-09
-2.69850805655e-09
-2.47327437258e-09
-2.59773400572e-09
-3.14031620667e-09
-3.01839851941e-09
-2.32507621758e-09
-2.09073947052e-09
-2.07380389377e-09
-2.04779362955e-09
-1.5476119921e-09
-1.06270362925e-09
-1.10345247852e-09
-8.73080586811e-10
-3.44362621135e-10
1.35052997753e-10
4.98983768245e-10
8.22734218976e-10
8.48385235355e-10
8.34810050067e-10
8.91402015339e-10
5.09525469641e-10
7.51805268159e-11
-7.97244350615e-11
1.57741675218e-10
3.4699339959e-10
6.63433050223e-10
5.51180855921e-10
2.20586861223e-10
-4.7124254504e-11
1.07141197498e-11
-1.07690498364e-10
1.00918046435e-10
6.2174674724e-10
9.92799270664e-10
1.24411225205e-09
1.59821522268e-09
1.79335128494e-09
1.55452653381e-09
9.42569793375e-10
5.46130845489e-10
2.16942078451e-11
-6.24806653762e-10
-8.46740720888e-10
-6.33357027848e-10
-4.36113547619e-10
-4.34112008764e-10
-1.86714013662e-10
6.60562455565e-10
1.29725467564e-09
1.24308310702e-09
1.37533332569e-09
1.46322781704e-09
1.12451585858e-09
6.4797173432e-10
6.81569719689e-10
1.16718577857e-09
1.58635141452e-09
1.18488744699e-09
8.060974331e-10
4.02941090426e-10
3.00368682766e-10
3.6754368944e-10
4.71635991844e-10
3.4980131381e-10
4.20859754788e-10
6.60721697759e-10
7.83653706976e-10
9.76869545541e-10
1.06308479408e-09
7.65699996626e-10
4.14121184176e-10
3.40613123915e-10
5.40322317054e-11
-3.66600094736e-10
-5.21368260793e-10
-5.52421335672e-10
-5.09492858872e-10
-2.05547791244e-10
1.60262021752e-10
1.70590741511e-10
-4.52595114706e-11
9.35522479254e-11
6.16216469127e-10
1.21606402655e-09
1.36633338886e-09
1.84499318967e-09
2.15283323242e-09
2.28168208441e-09
2.24763609802e-09
1.95321152191e-09
1.43215007233e-09
8.70143817704e-10
4.01022243163e-10
1.92593269349e-10
1.57998114443e-10
5.6584638437e-10
1.22894612713e-09
1.6757327134e-09
2.00227534951e-09
2.30617171274e-09
2.39182664898e-09
2.32785406213e-09
2.24129364766e-09
1.90168637537e-09
1.50464730465e-09
1.23139405235e-09
9.13419154495e-10
5.59075626506e-10
2.21671910428e-10
-1.05747404783e-10
-2.75142135773e-10
-1.39301767956e-10
4.09566688019e-10
9.35865951114e-10
1.34142659681e-09
1.40468894654e-09
1.25626759836e-09
7.1734500325e-10
3.54070359864e-10
1.93109959447e-10
-2.41912609736e-12
3.5657969497e-11
3.24839252854e-10
5.84720819533e-10
9.50520256376e-10
1.36259204434e-09
1.25984673608e-09
4.86884702477e-10
-2.06936184124e-10
-2.08059190993e-10
1.53395853568e-10
1.37763503184e-10
-3.23881787987e-10
-6.06358805566e-10
-3.95029485062e-10
-2.83910620843e-11
5.90728400712e-10
1.30171430411e-09
1.48900218259e-09
1.03545839099e-09
4.59587371686e-10
9.38855553901e-11
-8.23358376379e-11
-4.33172649226e-10
-6.32421903474e-10
-6.38191891911e-10
-9.89857101721e-10
-1.32810530965e-09
-9.38816590386e-10
4.17892174857e-11
8.54255597196e-10
1.58526281837e-09
2.35834047196e-09
2.60348112426e-09
2.5648187289e-09
2.34032450469e-09
1.81758870921e-09
1.63847173405e-09
1.75316338324e-09
1.48850200964e-09
1.69916799747e-09
1.66298391463e-09
6.11678595992e-10
-4.25203975016e-10
-9.37131021291e-10
-6.11777804726e-10
-6.56524649505e-12
5.27577435813e-10
9.44216425425e-10
1.35969159177e-09
1.78908393295e-09
2.17488541757e-09
2.21675340912e-09
1.83271460006e-09
1.45490190669e-09
1.21201309148e-09
9.95387803351e-10
6.63806591753e-10
1.94108187775e-10
-3.01135035825e-10
-4.75886403174e-10
-2.26685074927e-10
1.70232023058e-10
4.12155220706e-10
3.34022360552e-10
-8.24247760973e-12
-3.68456790957e-10
-9.73817262316e-10
-1.13074070371e-09
-9.73109142772e-10
-8.86154857989e-10
-1.03521486901e-09
-1.428327095e-09
-2.00114667811e-09
-2.33360668639e-09
-2.17706695092e-09
-1.91739883655e-09
-1.73793203678e-09
-1.25404816028e-09
-1.88822490426e-10
3.63928764579e-10
-1.13866427341e-10
-6.10230593168e-10
-4.42096670721e-11
9.21358817826e-10
7.01973922826e-10
3.50057541277e-12
-4.28685809825e-10
-7.39940242392e-10
-1.24087828026e-09
-1.91434252991e-09
-2.56402760013e-09
-2.52730321615e-09
-2.26647212554e-09
-2.30431459301e-09
-2.1007780815e-09
-1.16701404264e-09
-1.87006240029e-10
5.41774978558e-10
1.07969849831e-09
1.10351028852e-09
1.70682390476e-09
2.80666484655e-09
1.72332834174e-09
-7.4637070477e-10
-1.13481916735e-09
-6.09624011699e-10
-7.02010318773e-10
-1.79012239534e-09
-3.1950404643e-09
-2.23132534042e-09
-3.25230582076e-10
-2.52580354432e-10
5.03741716919e-10
1.75953127106e-09
1.00842766382e-09
3.32547437963e-10
9.20097956345e-10
1.21429891577e-09
8.00449099771e-10
9.64897581865e-10
1.64942387006e-09
1.70561434171e-09
1.67409878684e-09
1.83420495453e-09
1.44551424053e-09
1.78346895154e-09
2.45269104844e-09
3.14956284184e-09
4.29946343081e-09
3.56742325296e-10
8.20789748966e-10
4.26827525418e-10
-2.20141448947e-09
1.29653342709e-09
3.44832618541e-10
8.33307625377e-10
1.96919744237e-09
1.42912457652e-09
-5.45686280247e-09
1.2674441981e-08
-2.07691589282e-09
3.57422619808e-09
6.11936919865e-09
3.92956583681e-09
3.01346370546e-09
1.89634625616e-09
1.74452068256e-09
1.57125924617e-09
6.2138760527e-10
8.20622883475e-10
2.31569490417e-09
1.7769353629e-09
2.25197769774e-09
2.91371519977e-09
3.1048786775e-09
2.25108661908e-09
2.54999522881e-09
2.90607623313e-09
2.41384791743e-09
2.45213047145e-09
2.69848796599e-09
2.56905933979e-09
2.52018496302e-09
1.6627132876e-09
2.43364201861e-09
1.74090025199e-09
1.25596245474e-09
1.18195400976e-09
1.36794296322e-09
7.24020469907e-10
4.21108782475e-10
-4.75922402074e-11
-8.1999057338e-10
-9.40540302433e-10
-8.93404189468e-10
-7.71178605729e-10
-1.11913719936e-09
-9.91289434435e-10
3.13499599273e-10
1.44913191825e-09
2.11572821301e-09
2.73104428612e-09
2.98307724551e-09
2.60672102529e-09
2.74734712925e-09
2.86959007717e-09
1.92482138626e-09
6.49105911436e-10
4.40956882011e-11
6.51948554007e-11
-2.43394917394e-10
-9.48351216757e-10
-1.38003689964e-09
-1.35071600714e-09
-1.76300251795e-09
-2.18703949333e-09
-1.42670883855e-09
-6.50608336127e-10
-4.66896630746e-10
-6.95125952615e-10
-1.27152324407e-09
-1.84050912959e-09
-1.90123376861e-09
-1.41330186872e-09
-9.36309002285e-10
-7.74579972408e-10
-5.91731817117e-10
-1.54897973856e-10
3.39099899554e-10
1.0277872371e-09
2.03729973836e-09
2.99983536885e-09
3.35070288539e-09
2.88604115107e-09
1.91240473029e-09
1.03372409103e-09
5.6030255373e-10
2.61891575863e-10
-4.29687108648e-10
-1.34202841372e-09
-2.20408560787e-09
-2.67062246138e-09
-2.55427952146e-09
-1.92892526089e-09
-1.22905242976e-09
-8.83760295847e-10
-1.1831453616e-09
-1.75609962295e-09
-2.16051380955e-09
-2.11995278984e-09
-1.75021697913e-09
-1.20771651685e-09
-4.07490186749e-10
3.10598087912e-10
6.26405851967e-10
5.97223872868e-10
5.04605478767e-10
4.68163580277e-10
4.31851277828e-10
3.72668662287e-10
5.17649362638e-10
5.62152897203e-10
2.42371278077e-10
-2.76829425404e-10
-8.14336628457e-10
-1.13345925595e-09
-1.25913141675e-09
-1.22291144089e-09
-8.9533881272e-10
-4.10226950201e-10
1.65597905804e-10
4.594103418e-10
4.10220173938e-10
3.40783801054e-10
3.24872075381e-10
4.48903745122e-10
5.29554198953e-10
6.00782681796e-10
4.22605489692e-10
8.85950934807e-11
-3.66981683079e-10
-1.00355690673e-09
-1.81865570602e-09
-2.18415930337e-09
-2.43059837777e-09
-2.80089978149e-09
-2.44540195935e-09
-1.65882180649e-09
-9.9289699709e-10
-4.13734725394e-10
1.67839578498e-11
2.52670351682e-10
1.71061056555e-10
-1.97676314065e-11
2.84624246101e-11
3.41868003226e-10
6.1286899492e-10
8.75060420446e-10
1.34861536543e-09
2.00827530739e-09
2.49222080554e-09
2.71245021886e-09
2.87284437775e-09
2.7175595216e-09
1.88387750766e-09
8.43078997457e-10
1.01682070153e-10
-5.95870737734e-11
-1.13086521755e-10
-3.83052015671e-10
-2.54423286367e-11
1.30413343021e-09
2.39346057554e-09
2.30784714391e-09
1.93751925718e-09
2.28607839717e-09
2.63972905221e-09
1.53251680619e-09
-3.62765153068e-10
-1.13120000732e-09
-8.94396276808e-10
-7.23506532666e-10
-4.53468723312e-10
6.11594845609e-11
3.58140035538e-10
3.9996578132e-10
6.4536795504e-10
1.01118081206e-09
1.29142655957e-09
1.48532288323e-09
1.65484763378e-09
1.59230007397e-09
1.29111707491e-09
9.58960304421e-10
7.6031540818e-10
5.93736426466e-10
7.88411067524e-10
1.13758642399e-09
1.38151243104e-09
1.59998890967e-09
1.8408859269e-09
1.94472327239e-09
1.90714423217e-09
1.72235764198e-09
1.55827761922e-09
1.66552554287e-09
2.09310353948e-09
2.58685090289e-09
2.75422249569e-09
2.69026854355e-09
2.46619571824e-09
1.81532331959e-09
6.92853469096e-10
-4.74368096616e-11
-3.72650874595e-10
-8.63811822906e-10
-8.57366749211e-10
-5.79300655704e-10
-2.63402259124e-10
-6.58991632964e-13
4.17627477061e-10
9.46669856356e-10
1.49206251263e-09
1.86689957926e-09
2.08169993491e-09
1.98740653315e-09
1.81209866516e-09
1.6708944612e-09
1.59121110724e-09
1.42657966603e-09
1.25605668715e-09
1.02498334629e-09
9.42864137324e-10
1.15369317899e-09
1.62759646628e-09
1.6063724676e-09
1.3214576892e-09
1.09382568438e-09
9.63228978244e-10
5.67618059658e-10
-1.62377804175e-10
-3.20829928278e-10
6.33373121474e-11
-3.10614393296e-10
-8.3312593681e-10
-1.00920333424e-09
-1.08451938632e-09
-1.16094293399e-09
-1.4215245734e-09
-1.41844814974e-09
-1.01272868536e-09
-9.32634943937e-10
-1.14091695753e-09
-1.23024589919e-09
-1.58268783821e-09
-2.33389001891e-09
-2.86309079337e-09
-2.78591677451e-09
-2.45909249994e-09
-2.64237348907e-09
-2.46427549455e-09
-1.95131318872e-09
-2.06743293546e-09
-2.09062808569e-09
-1.51927048145e-09
-1.27644519371e-09
-1.61279181267e-09
-1.59077065011e-09
-8.6422093982e-10
-4.31781185852e-10
-3.60514586527e-10
5.38361435781e-11
4.09928476966e-10
3.02918304877e-10
6.09336311665e-11
3.383245203e-10
9.16476202281e-10
5.17743065658e-10
4.1588258919e-10
5.4232364415e-10
5.42743772491e-10
5.72501310478e-10
6.43683630025e-10
4.95571025351e-10
3.44049960098e-10
1.17496175278e-10
-2.87718457457e-10
-5.40945309786e-10
-4.29326272612e-10
-2.45428219983e-10
-8.34344393704e-11
2.10074335314e-10
5.4633498043e-10
6.59924216239e-10
6.57707954532e-10
8.40340539938e-10
9.88726312737e-10
3.47027280908e-10
-8.42107450666e-11
-7.80934731215e-11
-3.79220462134e-10
-5.12825510003e-10
-1.20083860932e-10
3.9986731374e-10
6.24439888496e-10
5.96093930916e-10
8.43057821633e-10
1.53426338813e-09
1.69125459216e-09
1.47458610535e-09
1.45558757986e-09
1.83009430364e-09
1.79509003182e-09
1.61199284884e-09
1.57604657051e-09
1.65252988693e-09
1.40560463548e-09
8.42252028602e-10
2.63776753566e-10
7.70895273208e-11
1.45304902211e-10
4.86105008649e-10
8.0998626724e-10
9.55052941435e-10
1.0782407546e-09
1.05358531957e-09
9.70976737327e-10
1.03418233585e-09
8.57674222171e-10
3.49981308311e-10
-7.69351555662e-11
-3.75629465954e-10
-5.51564138329e-10
-4.68390585107e-10
-2.24271454543e-10
1.45410993088e-10
9.65066988454e-11
-8.18979216041e-11
-2.29122412232e-13
2.08133359316e-10
5.31116339466e-10
1.05311352222e-09
1.64853448546e-09
1.65244523658e-09
1.59396502311e-09
1.85786660816e-09
1.95293758616e-09
1.81232529941e-09
1.58629234721e-09
1.23566706887e-09
5.90442632971e-10
3.44038313395e-10
6.79155252273e-10
1.11293628291e-09
1.54904707768e-09
1.94777386155e-09
2.15450707541e-09
2.31523835341e-09
2.52752175065e-09
2.58569766753e-09
2.32011302802e-09
1.93500356932e-09
1.5312623504e-09
1.20652008282e-09
1.05395928462e-09
8.09741051202e-10
4.75307032638e-10
4.71225604381e-11
-3.42817950676e-10
-2.69760511943e-10
1.21605979138e-10
6.95817660895e-10
1.11027765825e-09
1.17484528575e-09
8.99653175037e-10
8.22823898589e-10
6.41615175567e-10
4.43368384812e-10
4.81880008308e-10
6.38001309498e-10
7.25263914274e-10
6.80167880162e-10
6.74047220085e-10
6.18363062374e-10
9.01823273447e-10
1.36149873656e-09
1.22034196645e-09
4.76496055137e-10
1.95723373726e-11
-5.43715312665e-11
-8.40557909768e-11
-2.27653974739e-10
-2.46269535458e-10
-1.43457735112e-10
-1.06402161252e-11
3.17453549071e-10
7.4427006306e-10
8.81472883373e-10
5.45849630551e-10
1.04929170956e-10
-6.09423264891e-11
4.0483939714e-11
-1.70600905906e-11
-3.68423756672e-10
-7.35394004806e-10
-1.2247960892e-09
-1.47659103233e-09
-1.02439487015e-09
1.25120318837e-10
1.18606042549e-09
1.80087336103e-09
2.4878518096e-09
2.79727040413e-09
2.60582401739e-09
2.28405187084e-09
1.8876578157e-09
1.91340888785e-09
2.21934532994e-09
1.83151774251e-09
1.34521346936e-09
9.46828675034e-10
1.50576729396e-10
-5.63340807972e-10
-8.77264922953e-10
-5.62184343301e-10
2.45943110136e-10
6.55202219316e-10
1.0405054368e-09
1.71603348224e-09
2.25182311423e-09
2.43324401901e-09
2.34267840925e-09
2.20106170025e-09
2.09948466218e-09
1.70711782519e-09
1.00648012331e-09
2.58096021226e-10
-3.44284164708e-10
-6.70989431145e-10
-4.96099150394e-10
-4.53861428963e-11
3.36493579176e-10
4.51673119343e-10
3.76729761753e-10
2.90201958059e-11
-2.03098595477e-10
-4.342903092e-10
-5.24856765986e-10
-6.33365921694e-10
-9.6916535737e-10
-1.69635754215e-09
-2.22301679425e-09
-2.58370629308e-09
-2.69556842871e-09
-2.2220257657e-09
-1.55140352333e-09
-1.24062374686e-09
-1.10122859352e-09
-5.50404126708e-10
6.03612618872e-10
1.16733612692e-09
6.26529836414e-10
4.27564444082e-10
8.69211170736e-10
8.43439727613e-10
3.47465832216e-10
-2.65545040722e-10
-6.5056344338e-10
-9.14880286329e-10
-1.03133037592e-09
-1.36853249815e-09
-1.98090682583e-09
-2.24747529411e-09
-2.1006908371e-09
-1.73989800025e-09
-1.2486383726e-09
-7.74109339726e-10
3.34484840541e-11
9.45189666281e-10
1.2303568605e-09
8.35813148835e-10
2.18321302199e-09
2.76725494461e-09
5.32743066242e-10
-1.50479977058e-09
-1.70931248756e-09
-1.10067526924e-09
-1.25374767534e-09
-2.52585987201e-09
-2.76204569199e-09
-1.14990228304e-09
-3.31794240384e-10
1.82918670784e-10
8.46922621213e-10
8.03202486245e-10
7.41077145896e-10
4.3167091275e-10
2.02531824556e-10
-5.99764971709e-11
-6.87377189334e-10
-2.72084346834e-10
4.36979215291e-10
1.37470906241e-10
-2.20756691329e-10
4.37044013311e-10
1.39185766794e-09
1.6731259695e-09
4.1837735533e-09
9.13259912301e-10
6.88426620804e-09
-3.06967196481e-09
2.82224432355e-09
7.11339116137e-10
-3.42055197507e-10
-1.04578838129e-09
3.78285761277e-10
1.95108872499e-09
5.02679961119e-09
2.96365478003e-09
1.79138978957e-08
9.80450313798e-09
1.05586087359e-09
4.91671412717e-09
2.97942695702e-09
2.39957996507e-09
4.52893270304e-10
1.38154461829e-10
7.40400393041e-10
1.38335345715e-09
6.61788112239e-10
1.17370941457e-09
1.87085818774e-09
1.27507998836e-09
2.01766530289e-09
1.52337562663e-09
2.37296343701e-09
1.85134445446e-09
1.87380925053e-09
2.76745389148e-09
1.77753066825e-09
2.98710891058e-09
2.04608718903e-09
2.65626567644e-09
2.01419532654e-09
1.96492447879e-09
1.70854846384e-09
1.38208693113e-09
2.25682696137e-09
1.90180114834e-09
1.57861657435e-09
1.09228117274e-09
6.81897097923e-10
4.3029570182e-10
2.09132858194e-10
-2.29859330896e-11
-3.89719011999e-10
5.15953179161e-11
7.1108415922e-10
1.5544054081e-09
2.54810973347e-09
2.74877437977e-09
2.54052624749e-09
2.41300882541e-09
1.90515751639e-09
1.71279294594e-09
1.96008590896e-09
1.64159643859e-09
5.03055408473e-10
-3.19906980003e-10
-3.65415942676e-10
-2.46858858631e-10
-1.01518973959e-09
-2.01809538387e-09
-2.27418774865e-09
-2.11051324292e-09
-1.94952129052e-09
-1.46629026466e-09
-9.52748800061e-10
-1.06892625092e-09
-1.37817681529e-09
-1.58535673315e-09
-1.41756940599e-09
-1.04159826812e-09
-7.73818714781e-10
-5.93066502814e-10
-6.49881105402e-10
-6.52019387138e-10
-1.76670002853e-10
8.807202946e-10
2.15352303488e-09
3.08878971018e-09
3.45342130035e-09
3.23880432734e-09
2.65290126157e-09
1.92363299904e-09
1.31814208461e-09
7.27371332246e-10
1.86868597175e-10
-6.37781080932e-10
-1.79454517788e-09
-2.71911043892e-09
-2.89313335794e-09
-2.50613459225e-09
-1.86352796462e-09
-1.55797311087e-09
-1.6843322154e-09
-2.23717494996e-09
-2.85188285341e-09
-3.15502705138e-09
-2.87544646297e-09
-2.11779243231e-09
-1.25806754337e-09
-4.764501036e-10
4.9967744108e-11
1.43520839066e-10
1.25149117957e-11
-2.26954007887e-11
1.68786137817e-10
3.71783512857e-10
4.3530632522e-10
2.5833573155e-10
-3.47478325952e-11
-3.85711275609e-10
-8.62132156572e-10
-1.21237180993e-09
-1.28580575481e-09
-1.00622643694e-09
-4.84561291103e-10
-7.41878042017e-11
1.28084934152e-10
2.79791923137e-10
7.08892884985e-10
9.15516408073e-10
9.24147462047e-10
7.76276897038e-10
6.61886791578e-10
6.12292377241e-10
5.45021867603e-10
2.59414322129e-10
-3.14862581164e-10
-9.41444933621e-10
-1.56192123732e-09
-2.30613597854e-09
-2.89694951599e-09
-2.79612349505e-09
-2.54355820193e-09
-2.39325495829e-09
-1.97383780649e-09
-1.3421243402e-09
-6.91688375277e-10
-3.27591051142e-10
-1.36896829661e-10
9.83989704496e-11
1.92709736379e-10
1.20824167728e-10
2.8456918896e-10
8.18152088368e-10
1.33309052206e-09
1.65024379795e-09
1.87638465421e-09
2.08829450992e-09
2.21601691397e-09
2.08491315439e-09
1.78936472437e-09
1.29990334767e-09
5.60513041417e-10
-3.35641040514e-10
-7.8640825812e-10
-3.05149548479e-10
4.73892064099e-10
5.7361918221e-10
8.49369064123e-10
2.36239352462e-09
3.46779269661e-09
3.12456732308e-09
2.10830778088e-09
1.63498831105e-09
1.31769823934e-09
2.94966094871e-10
-8.73034741153e-11
2.59374193943e-10
1.60220728896e-10
8.61809437019e-11
4.47465800815e-10
7.39042599226e-10
6.15132690471e-10
5.42889012172e-10
8.87043977886e-10
1.14969825398e-09
1.1247439222e-09
1.0535512265e-09
9.84409091684e-10
7.33401571556e-10
4.92416251139e-10
5.51572608659e-10
7.23313832671e-10
8.46945491102e-10
1.08016690752e-09
1.32468075544e-09
1.58904990268e-09
1.80637611057e-09
1.68813369926e-09
1.31658566156e-09
1.17174980385e-09
1.27180853536e-09
1.53873402803e-09
1.9569273231e-09
2.53053168223e-09
2.76701142264e-09
2.53539365135e-09
2.09016602922e-09
1.46198649026e-09
6.06175317054e-10
3.36538895438e-11
-1.45352124298e-10
-5.03937593288e-10
-6.59460889217e-10
-5.01009400389e-10
-3.18667347284e-10
2.82282200002e-11
4.00347581421e-10
8.83375319373e-10
1.38321793188e-09
1.92323785817e-09
2.28099365839e-09
2.35768698605e-09
2.33407678967e-09
2.15044851704e-09
1.6981096298e-09
1.52439968946e-09
1.38100039962e-09
1.08156726474e-09
6.55013542727e-10
3.99827291433e-10
8.89606940766e-10
1.56174780732e-09
1.83559906489e-09
1.7163617075e-09
1.43748886144e-09
7.88655065953e-10
7.71319848473e-11
-7.52221161336e-10
-1.06188793652e-09
-9.21134354095e-10
-9.36457603628e-10
-1.31738483715e-09
-2.1172986121e-09
-2.47958730913e-09
-2.309816072e-09
-2.17982150207e-09
-1.97790494107e-09
-1.73206887472e-09
-1.65868702237e-09
-1.88303386284e-09
-2.34458296284e-09
-2.94900449817e-09
-3.40550104663e-09
-3.55931799469e-09
-3.20397327376e-09
-3.02703486734e-09
-2.89148587886e-09
-2.07855617212e-09
-1.86025545283e-09
-2.22262122986e-09
-2.34450884745e-09
-1.68239547456e-09
-1.15258398935e-09
-1.23328717098e-09
-1.06096805874e-09
-4.13573365618e-10
8.14769462293e-11
4.03149778169e-10
9.3860112638e-10
1.32513857675e-09
1.47630110884e-09
1.13133660462e-09
9.02355421897e-10
8.0211129605e-10
9.31023357876e-10
9.08425471755e-10
8.49487436977e-10
1.3297777762e-09
1.69319175651e-09
1.58048767013e-09
1.09044692289e-09
7.41262249065e-10
9.18916398323e-11
-4.70470898025e-10
-5.29470130933e-10
-1.86537830809e-10
-1.95428288623e-10
-1.6632127194e-10
2.70499971706e-10
6.54348198347e-10
5.42633869967e-10
2.38821362995e-10
3.8357336445e-10
-1.28641011282e-10
-9.11380346191e-10
-8.69450521236e-10
-5.61527786888e-10
-4.21143934342e-10
-1.55793075923e-10
5.03652566701e-10
1.20974304318e-09
1.59676637282e-09
1.53834566342e-09
1.67388829916e-09
1.72107396355e-09
1.688088383e-09
1.41685657483e-09
1.72135433145e-09
1.89726486339e-09
1.79698378573e-09
1.50695949283e-09
7.36174492728e-10
1.29309637915e-11
-3.11586257724e-10
-2.54005699124e-10
-1.1128805905e-10
1.37892305132e-10
2.70193769295e-10
4.13260598702e-10
6.35127750224e-10
9.00284214582e-10
1.22343744836e-09
1.20953340253e-09
1.13379764561e-09
1.13070597536e-09
1.05684978455e-09
7.79173749718e-10
4.82688501256e-10
3.2813294047e-10
5.37647387006e-10
6.59847983274e-10
7.70680550356e-10
6.22771657106e-10
1.42518375573e-10
-2.15404713652e-10
-2.8577494036e-10
-3.71132991554e-10
-1.12745590994e-10
5.18004692959e-10
8.23262873414e-10
8.30489546761e-10
1.01537312222e-09
1.17517425217e-09
1.15166236456e-09
9.48013258469e-10
9.59533639847e-10
8.70838914116e-10
1.03587788405e-09
1.50021816936e-09
1.92328444498e-09
2.18885722603e-09
2.2443692243e-09
2.27745475473e-09
2.42344893e-09
2.56120232173e-09
2.38943505146e-09
1.81757219206e-09
1.19222682535e-09
8.04905340106e-10
6.70445635993e-10
6.91656188025e-10
4.9491542185e-10
9.03458047036e-11
-3.15617605158e-10
-5.68801258806e-10
-2.65308930288e-10
3.52434315727e-10
7.68907710397e-10
9.04674386348e-10
8.70268755063e-10
4.34311485023e-10
1.0929435525e-10
1.31339234735e-10
2.62453158707e-10
3.89733411559e-10
3.68436885683e-10
4.49248064015e-10
6.46339078314e-10
1.06711455332e-09
1.19643573206e-09
1.04512091933e-09
1.02533825309e-09
9.97202147924e-10
8.40248848621e-10
6.19279446144e-10
7.40500078231e-10
9.4474905033e-10
7.3256999696e-10
5.44095425317e-10
8.03093536632e-10
1.12326902608e-09
1.08918187918e-09
7.91242698667e-10
4.44479692039e-10
3.16734418099e-10
2.24138893887e-10
2.47646175756e-10
4.66323824715e-10
3.52567299899e-10
-2.84968988511e-10
-1.00356040074e-09
-1.54168043213e-09
-1.72872055348e-09
-1.25920172049e-09
-1.99287370731e-10
1.12534764493e-09
1.7353231753e-09
1.79331613307e-09
1.93900918813e-09
2.08310728015e-09
2.17045077657e-09
1.78001432767e-09
1.58322273951e-09
1.84975944406e-09
1.55855417548e-09
6.8396322304e-10
4.33727455806e-11
-2.05515498113e-10
-4.59426276607e-10
-5.39894284174e-10
-4.39335025675e-10
1.23316244538e-10
5.31478657809e-10
9.48010709512e-10
1.65766634767e-09
2.41931795032e-09
2.96523957867e-09
3.18961140662e-09
3.07793053604e-09
2.71774883346e-09
2.14638784109e-09
1.25311960041e-09
2.44762875603e-10
-4.05832119754e-10
-4.95050100089e-10
-4.99410625701e-11
5.35673800239e-10
8.81595279634e-10
7.88755809934e-10
4.2451173734e-10
-8.94826781303e-11
-5.1281153396e-10
-8.09280688795e-10
-1.14608470555e-09
-1.50530629628e-09
-1.93195467423e-09
-2.62469209981e-09
-3.02729194184e-09
-2.89302282014e-09
-2.62125568714e-09
-2.2898430351e-09
-1.89002146114e-09
-1.5378128797e-09
-1.21788662969e-09
-1.18847298708e-09
-7.73816478085e-10
1.16119005585e-10
5.96111612729e-10
5.95289461374e-10
8.18563481683e-10
1.18412924331e-09
1.10665511009e-09
7.20725511742e-10
3.10932454168e-10
-1.37390438111e-10
-2.29468001675e-10
-1.58799195852e-10
-6.72921513298e-10
-1.38402684834e-09
-1.6715653113e-09
-1.46106407138e-09
-1.0478915641e-09
-6.40340814498e-10
-6.36917954358e-11
8.9846732891e-10
1.88827022052e-09
1.21146548468e-09
8.19190127245e-10
1.41811950095e-09
1.05371660968e-09
-4.76851597217e-10
-1.36791247004e-09
-1.31735476748e-09
-9.8384147373e-10
-2.03473873425e-09
-2.90902073141e-09
-1.15462025656e-09
4.29416693379e-10
5.00093122498e-10
8.49574893129e-10
1.44515711027e-09
1.24517459018e-09
7.72760426523e-10
5.01766489025e-10
1.7463458268e-10
-4.44621570057e-10
-3.32352646855e-10
2.81189951016e-10
4.90524826568e-10
1.08486963445e-09
2.94917686938e-09
2.99084453763e-09
1.46603954291e-09
3.2509315098e-09
1.87843616801e-09
1.31168091728e-09
4.13504883004e-09
5.95597993125e-10
-1.01217472582e-10
-1.41665836912e-10
-4.09016116603e-10
2.72140674525e-10
6.13947691378e-10
1.3965201608e-09
1.57356571688e-09
1.29009263091e-08
2.45188075555e-08
-4.89589702194e-09
2.10286178255e-09
3.31960047084e-09
2.18240241146e-09
1.21199106862e-09
1.04576169976e-09
5.03146040999e-10
3.46125614335e-10
1.06103920951e-09
1.05772985178e-09
2.40131807668e-09
1.62807715748e-09
2.14645856834e-09
1.4251032876e-09
2.23556325802e-09
2.93845533809e-09
2.75267877814e-09
3.53546215876e-09
3.07481705468e-09
2.76875247901e-09
3.00952156118e-09
2.42794196333e-09
2.32794162416e-09
1.73620864237e-09
1.37349865232e-09
1.00041684972e-09
1.90084040122e-09
1.10920616157e-09
2.87590131966e-10
3.56020653225e-10
3.77053328338e-10
-1.05798650277e-11
-4.10290477672e-10
-4.35697654442e-10
-3.99003340134e-10
-3.14651564081e-10
3.54588320511e-10
1.53482878262e-09
2.45156745924e-09
2.4978061408e-09
2.14964849442e-09
1.91397936454e-09
1.89905633807e-09
1.59110649867e-09
1.43339319906e-09
1.54481106591e-09
1.33778435514e-09
7.93502159054e-10
3.12349752047e-10
1.50843862412e-10
-5.08299812966e-10
-1.57743199877e-09
-1.78112690544e-09
-1.3865709118e-09
-1.26149675626e-09
-1.23298329791e-09
-1.23199163409e-09
-1.44659145468e-09
-1.43114093845e-09
-9.22831384605e-10
-5.44431062122e-10
-6.01726620606e-10
-9.63619084893e-10
-1.21795375705e-09
-1.24879422666e-09
-9.47620756719e-10
-2.09504493899e-10
7.65151331034e-10
1.82259615623e-09
2.64868155518e-09
2.91766639671e-09
2.59822316724e-09
2.13587489166e-09
1.74120158396e-09
1.36958536011e-09
9.84364516575e-10
3.20560889438e-10
-6.13005790741e-10
-1.70474147426e-09
-2.21640104341e-09
-1.98949997508e-09
-1.41111199738e-09
-9.49501063982e-10
-1.03288425786e-09
-1.5000288575e-09
-2.15410177014e-09
-2.54836553742e-09
-2.39263810655e-09
-1.79457185941e-09
-1.07113076004e-09
-5.61745897872e-10
-3.90208597042e-10
-1.71755411814e-10
1.37680970411e-11
1.11092182681e-10
1.92280290675e-10
2.86626208472e-10
2.88574384251e-10
1.89730297987e-10
-1.52163539744e-10
-6.90214537949e-10
-1.19031676605e-09
-1.59281157599e-09
-1.64379152447e-09
-1.48798277844e-09
-1.24845668403e-09
-8.25398455232e-10
-3.3872932264e-10
7.28096815966e-11
1.77726994092e-10
3.46913778493e-10
4.52440107677e-10
3.35352414037e-10
1.30025274876e-10
1.79674746354e-11
7.271799028e-11
2.12416169655e-10
2.05860346402e-10
-2.14202244504e-10
-1.0448244578e-09
-1.87391020627e-09
-2.36180033686e-09
-2.60400926916e-09
-2.52101389064e-09
-2.11393880297e-09
-1.47017719298e-09
-7.25921211841e-10
-2.64905319089e-10
-8.72318998312e-11
3.46328478726e-11
1.72895306402e-10
4.22699933866e-10
7.44588123932e-10
1.08260382131e-09
1.35298605544e-09
1.64555885872e-09
1.95607817257e-09
2.19640556014e-09
2.4450673284e-09
2.69030030729e-09
2.72347181157e-09
2.38645010735e-09
1.80454948402e-09
1.09106822156e-09
4.71867655355e-10
1.49779141997e-10
-3.97319438634e-10
-7.0285608117e-10
1.58556097397e-11
9.71335032264e-10
1.28794154839e-09
1.85286932553e-09
2.79074867396e-09
2.88109871382e-09
2.01721404608e-09
1.2447589617e-09
8.29239326131e-10
5.17528660443e-11
-5.8986146249e-10
1.65364548227e-10
1.10994308024e-09
1.19249999347e-09
1.00618429705e-09
9.00482102655e-10
7.12378266745e-10
4.95388383872e-10
5.63090557713e-10
7.9535938467e-10
9.73349276612e-10
9.35788765237e-10
8.34726511443e-10
6.79705611931e-10
7.05778980113e-10
8.48124560965e-10
1.02687413558e-09
1.31149181718e-09
1.64164641353e-09
1.85509956328e-09
1.90353121313e-09
1.87889144821e-09
1.71393262877e-09
1.32474470643e-09
1.05930787417e-09
1.10981179013e-09
1.40318885119e-09
1.83489401584e-09
2.55824829433e-09
2.87533846627e-09
2.52003779105e-09
2.10839121363e-09
1.85098383019e-09
1.18554839408e-09
3.76796253839e-10
8.34314747551e-11
-2.21613041638e-10
-7.461580995e-10
-8.68172348519e-10
-6.68321700878e-10
-2.26358967242e-10
2.87049301429e-10
8.9222215499e-10
1.46015944019e-09
1.8828631857e-09
2.00102936404e-09
2.03583183026e-09
1.90186933449e-09
1.84294209938e-09
1.28241804654e-09
5.45273648147e-10
1.24846727195e-10
3.70423177944e-10
8.49556893679e-10
1.00086238905e-09
9.018721896e-10
8.94223693845e-10
9.79221544278e-10
1.070945551e-09
1.2437090379e-09
1.19728038273e-09
1.20486498044e-09
1.2626034048e-09
9.5850883586e-10
1.46470843063e-10
-3.8201567086e-10
-3.78577987644e-10
-6.06493801442e-10
-1.11088582791e-09
-1.25318228085e-09
-1.06423845295e-09
-7.15420120877e-10
-6.38162245758e-10
-1.09159253495e-09
-1.64892412062e-09
-2.17268609652e-09
-2.718135504e-09
-3.21173717775e-09
-3.49658249945e-09
-3.15532986566e-09
-2.75883204899e-09
-2.80354353014e-09
-2.32441680243e-09
-1.51574258922e-09
-1.1798982608e-09
-1.09961944267e-09
-1.07182066838e-09
-9.82967335728e-10
-6.37884842468e-10
-1.94252183376e-10
2.06169513428e-10
3.91340021302e-10
5.99060875572e-10
6.95542163429e-10
6.02358268957e-10
4.50243327728e-10
4.80019938845e-10
8.40637266167e-10
7.08263539506e-10
4.00038096758e-10
5.37576659755e-10
3.6233613088e-10
2.44798874504e-11
-1.82735923425e-10
-1.58495534541e-10
-4.40562588174e-10
-3.9385634443e-10
-3.50725426755e-10
-5.07883919789e-10
-6.68048956269e-10
-4.35576105214e-10
-9.95475471261e-11
1.18242411305e-10
2.84725043022e-10
5.39481213337e-10
6.05893678599e-10
1.58121569495e-10
2.77310116602e-11
3.58887859752e-11
-3.50777519282e-10
-3.25719743603e-10
-5.26168396505e-11
5.08279060659e-11
4.89288581981e-11
2.18326130287e-10
4.33146391204e-10
7.31658165992e-10
1.09191440747e-09
1.59166808152e-09
1.81311722228e-09
1.79510040797e-09
1.8016284909e-09
2.16990041691e-09
2.27483826996e-09
1.87442737282e-09
1.53644735671e-09
1.58040757257e-09
1.53753034127e-09
1.18733150431e-09
9.16934764743e-10
5.49521730135e-10
3.59216720293e-10
4.70878744389e-10
6.96740926808e-10
8.97743962773e-10
9.4275656414e-10
1.10225583272e-09
1.23997746072e-09
1.2909188692e-09
1.25085251673e-09
8.68216394232e-10
4.59511138721e-10
4.62303806348e-10
6.3054403143e-10
8.51600148906e-10
1.01392215479e-09
8.12856014866e-10
6.68304760219e-10
6.57050233449e-10
6.12724152286e-10
6.46672809295e-10
5.21973042317e-10
3.42139477286e-10
8.09596632085e-10
1.48265451769e-09
1.76803347014e-09
1.94792378638e-09
1.86556264364e-09
1.88117489022e-09
1.82240162982e-09
1.89263768122e-09
2.00508485192e-09
2.16039416615e-09
2.29392298105e-09
2.29614919539e-09
2.21898999961e-09
2.03659415992e-09
2.04986166049e-09
1.9869038191e-09
1.75052487561e-09
1.33190679351e-09
7.3162004951e-10
3.34365408896e-10
3.14685445399e-10
4.23846816477e-10
5.02797063424e-10
4.13885709017e-10
7.47396461669e-11
-1.06008714448e-10
-3.51323855533e-11
3.00149512991e-10
7.19341883423e-10
9.19078181616e-10
7.39760459649e-10
4.81833845013e-10
1.671043539e-10
-1.24738730494e-10
-1.49317509041e-10
-1.44546172449e-12
3.8009163552e-10
6.25807846706e-10
8.00036594725e-10
8.47361596038e-10
1.01456632334e-09
1.20816777366e-09
9.59816019456e-10
8.30598390495e-10
8.61518481202e-10
9.01656513836e-10
7.85522394007e-10
6.68965419448e-10
6.93391652655e-10
7.90129379737e-10
8.23942829112e-10
7.83396420718e-10
6.19761725528e-10
2.72366408805e-10
-1.25972857498e-10
-4.64030059494e-10
-4.46114889143e-10
-2.50721752387e-10
-7.37249006961e-11
1.9137777707e-10
1.59526797154e-10
-4.27479740787e-10
-9.1005219853e-10
-9.10319013908e-10
-4.09459961867e-10
2.75424621261e-10
8.19437460866e-10
1.33788599909e-09
1.91587417724e-09
2.19508503578e-09
2.19477840985e-09
2.11671839453e-09
2.43864343053e-09
2.49706668103e-09
2.24494817132e-09
2.28888080567e-09
2.07360822916e-09
1.47582616158e-09
6.64354410311e-10
3.00451056721e-11
-2.56117140503e-10
-1.05267719438e-10
-1.60487597214e-10
-1.92972104835e-11
3.40825517426e-10
1.02998380529e-09
2.03490708204e-09
2.89206016719e-09
3.31792885132e-09
3.2686395806e-09
2.75397135042e-09
1.89325924458e-09
1.03633252899e-09
1.53936379702e-10
-4.63208437535e-10
-5.67701810041e-10
-1.64948655049e-10
4.63604001922e-10
1.00718061956e-09
1.1988328353e-09
1.0482718819e-09
5.99452840068e-10
-1.43954096419e-10
-7.88962062456e-10
-1.10986049452e-09
-1.32538887499e-09
-1.54661016389e-09
-1.70042033568e-09
-2.00101369393e-09
-2.22700716646e-09
-2.23355303708e-09
-2.09385866935e-09
-1.97432283873e-09
-2.22435383575e-09
-2.33084662953e-09
-1.91427201442e-09
-1.28548599987e-09
-8.21096163135e-10
-1.16642895463e-10
7.0102225484e-10
9.98667594332e-10
9.39029619172e-10
1.25053932629e-09
1.53994793212e-09
1.17529717783e-09
5.55728999331e-10
6.31886578652e-13
-4.22952773201e-10
-9.19621976768e-10
-1.55174233651e-09
-2.40342803575e-09
-2.99138070949e-09
-3.0021736033e-09
-2.38196167976e-09
-1.3288727215e-09
-2.97201838335e-10
4.5279162635e-10
1.68175088249e-09
2.16032365065e-09
1.14426612581e-09
1.9893076986e-10
1.56821373921e-10
1.29797634771e-10
-5.06195359609e-10
-1.41197342989e-09
-8.80846502509e-10
-7.80260069473e-10
-1.67921867749e-09
-5.82513028156e-10
1.35031154891e-09
1.69419464352e-09
1.64125402552e-09
1.9734047609e-09
1.75690261018e-09
7.93956896632e-10
-1.29352571897e-10
-5.25582779101e-10
-9.01344064558e-10
-7.05212315071e-10
-2.2318619358e-10
-4.73243660378e-10
-6.15513008265e-10
5.87809525175e-10
1.43542861923e-09
4.89172961984e-09
-1.82941074805e-09
5.42715778053e-09
1.5788956717e-09
7.77245055697e-10
-2.78756001843e-10
5.30777102771e-10
6.82141890445e-10
9.56322220307e-10
1.9073377792e-09
2.53757433767e-09
2.59706569672e-09
2.70858436049e-09
-4.37289652866e-10
3.07102471877e-08
-2.81058999723e-09
-2.23401297597e-09
5.80915524018e-10
1.65316902623e-09
1.52712035929e-09
8.78410435752e-10
1.22724570849e-09
4.57370686463e-10
8.52193919002e-10
1.42045477079e-09
1.50629944241e-09
2.3483793645e-09
2.16003671824e-09
2.38101427341e-09
1.94591547127e-09
2.39511546616e-09
2.93848509012e-09
1.8817616723e-09
2.77618097781e-09
1.80597062332e-09
2.77926925994e-09
1.57577562584e-09
8.26044317854e-10
1.27278283501e-09
8.44121906773e-10
3.84236591248e-10
-1.77476695856e-11
9.84735093489e-11
-1.82889236389e-10
-4.25264326114e-10
-6.25121326502e-10
-7.2846739288e-10
-3.86009854723e-10
-7.58365538336e-10
-3.73726182922e-10
5.40592520564e-10
1.14717568398e-09
1.46602853148e-09
1.55204980947e-09
1.97183764407e-09
2.21280496503e-09
2.20450065402e-09
2.53286652855e-09
2.20454215863e-09
1.59325203313e-09
1.43915979936e-09
1.48410929677e-09
1.2729126428e-09
9.45428529572e-10
5.8602313269e-10
5.86049390711e-11
-9.49540451015e-10
-1.63276273198e-09
-1.57116607254e-09
-1.55963075435e-09
-1.65349407513e-09
-1.70894762812e-09
-1.60410739562e-09
-1.25477332636e-09
-6.18190691169e-10
-2.43140807509e-11
-1.05021709306e-10
-7.31009444634e-10
-1.17116971863e-09
-8.56014937567e-10
-2.34758887101e-10
5.32132884882e-10
1.30825181028e-09
1.84986278208e-09
2.19393518855e-09
2.33794201277e-09
2.19874358283e-09
1.80087187872e-09
1.63085923719e-09
1.46515651106e-09
9.69400832529e-10
8.19644136905e-11
-7.1278118973e-10
-1.37376419715e-09
-1.62267033442e-09
-1.41664862824e-09
-9.09161966902e-10
-6.10211852564e-10
-9.89345493821e-10
-1.82514720771e-09
-2.57274611025e-09
-2.79406650201e-09
-2.6005359907e-09
-1.95199674431e-09
-1.21864832407e-09
-6.90166680588e-10
-4.22858329027e-10
-1.76690225764e-10
4.03382500471e-11
7.59822435005e-11
1.11013408617e-10
1.59415835838e-10
8.24616220305e-11
-2.98370743802e-10
-8.68654310266e-10
-1.36403517672e-09
-1.74451560036e-09
-1.90136873802e-09
-1.65808689952e-09
-1.17295343767e-09
-8.22188200362e-10
-6.52575358388e-10
-3.27128782911e-10
1.10166375669e-10
3.15548571972e-10
2.91494530336e-10
1.85659457643e-10
4.32039742659e-11
-4.9757679937e-11
-1.20763181356e-10
-1.51883807113e-10
-2.57768219475e-10
-5.36642488293e-10
-8.09668629885e-10
-1.31047638349e-09
-1.83670063123e-09
-2.21859481904e-09
-2.27640761025e-09
-2.09129417122e-09
-1.72372665898e-09
-1.24588773898e-09
-7.09512913103e-10
-1.62514917634e-10
3.48731511198e-10
7.86639709873e-10
1.01376968886e-09
1.32612579365e-09
1.60698328423e-09
1.77860994704e-09
1.9498884793e-09
2.12094720652e-09
2.27626890861e-09
2.45515379674e-09
2.55370862125e-09
2.58068492655e-09
2.43528748599e-09
1.94602346797e-09
1.35216697458e-09
5.86440719933e-10
-3.30585947885e-10
-5.60242837907e-10
-5.42123109099e-10
-6.69880241501e-10
-2.35980838006e-10
6.428243151e-10
1.36032136076e-09
1.6090983255e-09
1.99789068346e-09
2.18351880088e-09
1.36456965451e-09
5.58716484536e-10
5.9396406657e-10
1.04207541237e-09
1.09690809021e-09
1.07176794058e-09
1.19112038856e-09
1.15109850532e-09
1.0140549272e-09
8.4328630877e-10
6.56008277044e-10
3.62892260949e-10
1.59825654201e-10
9.04549396049e-11
5.42147143659e-11
8.1321092167e-11
2.44750170109e-10
2.52469816632e-10
3.93618963446e-10
8.95872231718e-10
1.39643884563e-09
1.79789180505e-09
2.11882708305e-09
2.38649161197e-09
2.45876046303e-09
2.35461437403e-09
2.00304869059e-09
1.45026270723e-09
1.06891661592e-09
1.21026185086e-09
1.50922255311e-09
1.61446470274e-09
1.94617635741e-09
2.26096090567e-09
2.02338806924e-09
1.37436813164e-09
1.06145002049e-09
9.80780720175e-10
5.81527928839e-10
2.3684989381e-10
-6.08737168203e-11
-6.37216956989e-10
-1.15845053954e-09
-1.17811864458e-09
-7.79862387504e-10
-5.98962407992e-11
7.3187458291e-10
1.52495407252e-09
2.50411399515e-09
2.96843289288e-09
2.80928006078e-09
2.29624236902e-09
1.77888226813e-09
1.42490296431e-09
1.08266311362e-09
4.35824285867e-10
6.52558417729e-11
5.60691341853e-11
5.66715016657e-10
1.31163750685e-09
1.77651862269e-09
1.66111737165e-09
1.23957979198e-09
1.16665378894e-09
1.21984168761e-09
7.90966354168e-10
4.83999920017e-10
8.14739392624e-10
6.00182135436e-10
-2.3908013156e-10
-1.0496860034e-09
-1.47365182801e-09
-1.50232431679e-09
-1.30267738057e-09
-9.21466814527e-10
-4.98731305277e-10
-2.91541117148e-10
-5.80529276994e-10
-1.22138169939e-09
-1.9141403008e-09
-2.14076650694e-09
-2.33684446983e-09
-2.83635419839e-09
-2.73293909882e-09
-1.79602748553e-09
-1.16287882779e-09
-1.10415572762e-09
-8.37902779116e-10
-1.25600501814e-09
-1.68035666626e-09
-1.60718953676e-09
-1.183476975e-09
-7.8288460106e-10
-7.2357450706e-10
-1.8555654314e-10
1.36803656036e-10
6.64107711965e-11
1.83902923068e-10
2.58945383514e-10
7.52520481604e-11
-1.14403194767e-10
-4.6136190571e-11
-7.68868746882e-11
2.41747438311e-11
3.66656845944e-10
4.28412959337e-10
1.43272023138e-10
-2.56925421693e-10
-4.74470587602e-10
-7.24394434953e-10
-8.62455299641e-10
-6.73339100541e-10
-4.99889622833e-10
-4.59608971026e-10
-3.8027544167e-10
-2.5790459178e-10
-9.86556214326e-11
2.72151685953e-12
1.9795075274e-10
3.79690141903e-10
1.19038622275e-10
-1.94621913258e-10
-9.42019221959e-11
-3.46154413456e-10
-3.00324848811e-10
1.34365683456e-10
5.977748678e-10
6.19286116528e-10
7.68076771076e-10
1.06423591185e-09
1.24529089839e-09
1.04346242882e-09
1.1470630286e-09
1.69966012361e-09
1.94049488392e-09
1.91425973244e-09
2.09662169082e-09
2.53030383037e-09
2.76253908868e-09
2.04738610082e-09
1.08570880587e-09
6.5066434618e-10
4.28357690437e-10
5.20231330819e-10
8.08241379369e-10
8.23343976818e-10
6.11568375829e-10
5.81808720261e-10
5.36505163077e-10
5.22913248889e-10
7.56694342331e-10
8.32463980562e-10
5.09932468972e-10
3.32247826528e-10
3.86088628787e-10
4.43658917113e-10
5.01213958846e-10
1.11211021403e-09
1.76767051653e-09
2.28045833356e-09
2.45833186435e-09
2.13128227902e-09
1.66813228676e-09
1.45073704568e-09
1.36891535705e-09
1.41011207499e-09
1.30425540295e-09
1.40087475718e-09
1.73426438412e-09
1.78913475493e-09
1.76974595901e-09
1.51383157701e-09
1.26713418404e-09
1.14382466282e-09
1.34630667126e-09
1.59079468467e-09
1.78570088336e-09
1.89971998839e-09
1.93724841839e-09
1.95964841644e-09
2.03079706643e-09
1.96962646456e-09
1.63837051361e-09
1.06317839122e-09
5.36287475609e-10
1.43533121044e-10
9.45322650454e-11
2.8022390994e-10
4.11310728857e-10
4.73543086525e-10
4.50172600477e-10
3.16852155678e-10
4.21274377416e-10
6.93212611066e-10
9.44863558596e-10
1.08464517072e-09
1.08442833028e-09
7.76106643416e-10
3.11168564602e-10
-2.43301743769e-11
-9.9419645151e-11
1.15966433776e-10
2.73379036693e-10
3.75254653875e-10
5.14091824259e-10
6.83862214361e-10
6.96420324837e-10
5.64669855606e-10
6.52425221798e-10
7.73781114459e-10
5.7759324904e-10
4.22892633862e-10
3.67266656726e-10
1.83370854029e-10
2.71674462296e-10
6.14354055435e-10
8.40847595036e-10
8.83058105534e-10
8.38790469645e-10
6.8635206771e-10
2.45972862168e-10
-3.76638282194e-10
-7.33953201763e-10
-5.6175098007e-10
-1.51000563507e-11
3.91149650647e-10
5.67733997293e-10
6.81455793758e-10
4.76564453048e-10
3.39857570526e-10
3.06342170869e-10
7.9056380176e-10
1.51825997114e-09
1.74800156446e-09
1.69997903151e-09
1.56624608167e-09
1.63989305533e-09
1.86422549625e-09
1.9737333038e-09
2.18541446062e-09
2.18597816104e-09
1.7840436634e-09
1.58034748617e-09
1.37620449907e-09
9.44888969585e-10
4.76834021283e-10
1.87665125783e-10
1.03342678246e-10
1.39609876191e-10
-7.36200538991e-11
-8.48423140079e-11
2.94610446912e-10
9.77484703219e-10
2.03775544209e-09
2.97108961172e-09
3.4022145588e-09
3.25250910867e-09
2.56086308504e-09
1.46663373652e-09
5.74085473848e-10
-8.79321843204e-11
-3.38079648369e-10
-9.509977712e-11
4.91761071154e-10
1.04806097069e-09
1.35752954017e-09
1.20239376181e-09
7.53266399993e-10
2.34711982651e-10
-3.98063133562e-10
-1.00070166455e-09
-1.24736358802e-09
-1.25243308021e-09
-1.23387204723e-09
-1.27469734122e-09
-1.46799534199e-09
-1.43697403084e-09
-1.70556479028e-09
-2.23893889607e-09
-2.55546028538e-09
-2.78414944026e-09
-3.00578492828e-09
-2.99915986008e-09
-2.27929302799e-09
-1.41204500417e-09
-7.28222812117e-10
1.0482667997e-10
7.722347367e-10
7.77605203518e-10
8.72928650276e-10
1.57503870718e-09
1.68899788463e-09
1.2426790723e-09
8.35469253458e-10
1.91833480795e-10
-1.02522242134e-09
-2.01250623696e-09
-2.42415154383e-09
-2.32906870737e-09
-1.97687833714e-09
-1.35372636224e-09
-1.41109759782e-10
1.28746551587e-09
1.90684057086e-09
1.96282606054e-09
2.07004433804e-09
1.03745527116e-09
-1.64507350884e-10
-6.49050007262e-10
-6.99743235089e-10
-9.78125695402e-10
-2.39643831987e-09
-2.75687709694e-09
-1.98520170639e-09
-1.90703877657e-09
-1.36130857766e-09
3.95720663947e-10
1.58684655822e-09
1.80136252255e-09
1.64107021937e-09
1.67444945848e-09
1.01403852255e-09
-1.69030030366e-10
-6.6619088362e-10
-8.39880812806e-10
-1.01887602698e-09
-1.08735313505e-10
1.67657297008e-09
4.79583066714e-09
4.11676520035e-09
8.68971100588e-10
-4.80007641978e-10
4.43005007678e-09
-6.82513737909e-11
8.24725487555e-10
2.09511058405e-09
7.11045195704e-10
1.12525785944e-10
1.45751500333e-10
-1.34092091814e-10
7.92086766999e-10
1.57983926641e-09
3.97281745668e-09
4.69865100061e-09
-2.36192736003e-08
3.07451870851e-08
1.2509727107e-08
2.96731311533e-09
-1.39120418202e-09
-9.91975531123e-10
1.28446828979e-09
3.8265814535e-10
-4.13363089688e-10
2.71927222222e-11
-4.59147761586e-10
1.15079251467e-09
3.26451156553e-10
5.59367429356e-10
1.01209362241e-09
1.54233074168e-09
1.47979959314e-09
1.47167993531e-09
2.2693300147e-09
2.36492509434e-09
2.88974480263e-09
2.45961125468e-09
2.23636418061e-09
2.13600639353e-09
1.78481785151e-09
2.29283962591e-09
1.65647965451e-09
1.69703156862e-09
1.21817483265e-09
9.74972615256e-10
7.09532394861e-10
6.32880148299e-10
2.32603294129e-10
-2.60626955672e-10
-2.36035048115e-10
1.26244331558e-10
5.51973255243e-10
7.66208216394e-10
1.14452870602e-09
1.27525384187e-09
9.17862689337e-10
1.28121949492e-09
1.84289466554e-09
1.74054428639e-09
1.60325125707e-09
1.59949974815e-09
1.21053459547e-09
1.11754562445e-09
1.30739366002e-09
1.09397269753e-09
3.99597957263e-10
-3.46485179821e-10
-8.25085053042e-10
-1.47024717908e-09
-1.91746405808e-09
-1.77465515021e-09
-1.85294937014e-09
-2.09533462426e-09
-1.79923456403e-09
-1.01817616601e-09
-2.82222484179e-10
2.30821348566e-10
4.14428657136e-10
5.82312387227e-11
-4.35257276718e-10
-5.97435782892e-10
-1.78964112181e-10
4.67671507074e-10
1.08560687075e-09
1.48909885023e-09
1.67062330478e-09
1.80096632289e-09
1.77255408498e-09
1.68863958969e-09
1.54232989465e-09
1.28636606711e-09
9.28666594579e-10
4.57934810406e-10
-2.14608926198e-10
-8.18052561997e-10
-9.52170064799e-10
-9.11606080472e-10
-8.10577072721e-10
-8.5551852332e-10
-1.1753581642e-09
-1.85790154827e-09
-2.64317181762e-09
-3.06972617491e-09
-2.78262181634e-09
-2.22071498221e-09
-1.63805541735e-09
-1.09120586441e-09
-7.00348016614e-10
-6.72210429139e-10
-6.40774071851e-10
-2.50125864709e-10
2.21371213732e-10
4.47953797672e-10
2.38309755095e-10
-2.31081599439e-10
-8.55292789039e-10
-1.64425569853e-09
-2.2250877898e-09
-2.29374192776e-09
-1.9614572553e-09
-1.41012986268e-09
-8.54523259607e-10
-3.1769749456e-10
-7.62537175601e-11
1.04868608101e-10
3.36837898069e-10
5.73564125069e-10
6.15952194848e-10
3.654371185e-10
4.83865453537e-11
-1.95685998398e-10
-4.27420236723e-10
-5.51634018548e-10
-6.25610699787e-10
-8.95252521238e-10
-1.26163651669e-09
-1.85425740077e-09
-2.50125634422e-09
-2.87998808323e-09
-2.88279643255e-09
-2.51454070604e-09
-2.07105146021e-09
-1.49809084612e-09
-8.76688841287e-10
-3.78321336661e-10
1.39889608821e-10
7.72255396363e-10
1.22005397525e-09
1.60796753652e-09
2.02329320155e-09
2.3738847971e-09
2.48233593105e-09
2.43532560247e-09
2.4805275157e-09
2.66220253036e-09
2.74834493407e-09
2.69756107371e-09
2.38570980056e-09
1.77563855546e-09
1.13589744029e-09
5.16984865291e-10
-2.59138718784e-10
-7.97963481587e-10
-2.2886322015e-10
2.04450883578e-10
2.8845791722e-10
9.98137695814e-10
1.70351200594e-09
2.20947443148e-09
2.28774366394e-09
2.15720106369e-09
1.64806861734e-09
1.04132197656e-09
1.31507963698e-09
1.70834136429e-09
1.52937092583e-09
1.40343957294e-09
1.61584282535e-09
1.32246301143e-09
6.1874909764e-10
1.16204979429e-10
-1.80234423374e-10
-5.91812708763e-10
-8.70986086091e-10
-8.60771451082e-10
-7.53007631428e-10
-6.26506913585e-10
-3.44124604877e-10
1.26942921981e-10
5.97428643083e-10
1.13095457953e-09
1.68851295826e-09
2.03696939551e-09
2.39267664655e-09
2.5716699549e-09
2.43942905359e-09
2.18771966078e-09
1.87015133875e-09
1.6220503063e-09
1.29553985744e-09
1.17688959977e-09
1.4051094984e-09
1.54963068338e-09
1.46931671338e-09
1.44072850438e-09
1.39827690713e-09
1.08982138906e-09
9.26737900558e-10
8.5787242788e-10
3.97635381924e-10
3.6083603553e-12
-9.38072048425e-11
-5.03323070885e-10
-8.97024831801e-10
-9.00546794796e-10
-6.96357644399e-10
-8.89943636362e-11
9.36046792648e-10
1.81624785605e-09
2.66846633901e-09
3.46212477564e-09
3.59673779272e-09
2.99192154003e-09
2.0512939932e-09
1.32138367969e-09
1.01570812376e-09
9.04308044598e-10
1.01164173033e-09
1.05300891365e-09
1.05392116814e-09
1.08657905281e-09
1.29516896289e-09
1.45365618592e-09
1.02615365465e-09
3.83217319445e-10
3.85931821812e-10
6.50938573097e-10
5.35673164964e-10
3.08455306314e-10
-1.55157801212e-10
-7.74388437082e-10
-1.11831684795e-09
-1.33282497723e-09
-1.46655284488e-09
-1.41446285972e-09
-1.13518932075e-09
-7.1803914675e-10
-4.85847087117e-10
-6.3717121721e-10
-1.18716326239e-09
-2.12257647439e-09
-2.71757138006e-09
-2.59882667822e-09
-2.52860087063e-09
-2.78998676782e-09
-2.60698784066e-09
-1.98845219533e-09
-1.66785700105e-09
-1.3538796752e-09
-1.17599259188e-09
-1.39540461841e-09
-1.50770932875e-09
-1.3022411586e-09
-4.73132275546e-10
3.36671032578e-10
6.44027101885e-10
9.45607465282e-10
9.5349228323e-10
6.11837732307e-10
3.5477466776e-10
3.15102185609e-10
3.35868389451e-10
4.49600191493e-10
5.28982292895e-10
5.50944639608e-10
3.1129731361e-10
-1.09373129314e-11
-6.54290811865e-10
-1.07619347597e-09
-1.15516066358e-09
-1.15289273286e-09
-1.01691811032e-09
-5.51897022278e-10
-1.93733799212e-10
-2.05241588834e-10
-2.15544474088e-10
-9.25002330049e-11
-1.2208624682e-10
-1.00062543158e-10
1.55934530425e-10
4.0753211488e-10
2.49034462756e-10
-1.69951231636e-10
2.90168076741e-11
-1.45444027373e-11
-1.36882218342e-10
-1.63940685842e-10
2.00085275767e-10
3.0642602713e-10
1.84423636573e-10
1.15797027186e-10
3.9067361813e-10
6.73892213055e-10
8.70932828894e-10
1.25514993838e-09
1.88243331648e-09
2.20664915309e-09
2.33602962413e-09
2.141565259e-09
1.9108110378e-09
1.80099723959e-09
1.49562047453e-09
1.55856984558e-09
1.61620832006e-09
1.34645903131e-09
1.17872956709e-09
1.07785916626e-09
6.02323858243e-10
5.51838577004e-10
8.76225514265e-10
9.66701762042e-10
9.51203600206e-10
1.0134469693e-09
7.85564613305e-10
3.62318343188e-10
4.18875580109e-10
8.95433256893e-10
1.03613474679e-09
1.27089162219e-09
1.66369383412e-09
2.12839559074e-09
2.35120845455e-09
2.06715595569e-09
1.21600727534e-09
4.80635293392e-10
9.98965247003e-11
1.70571259753e-10
4.54514067848e-10
8.33728600752e-10
1.02197659108e-09
8.57092310536e-10
6.67641109905e-10
7.16859441613e-10
1.05152078264e-09
1.33739112009e-09
1.60396559701e-09
1.75775398418e-09
1.76042923186e-09
1.68510089779e-09
1.90515328123e-09
1.9891302452e-09
1.92709397566e-09
1.55849022449e-09
8.52545437675e-10
-9.26692160779e-11
-6.81883968913e-10
-8.37762171647e-10
-6.54313469996e-10
-2.8459798808e-10
-1.58776325963e-10
-1.29850997847e-10
1.1546753137e-11
2.77219484076e-10
7.20590409987e-10
1.24719079329e-09
1.60368324387e-09
1.43930040683e-09
8.16754907522e-10
-7.19808598577e-12
-5.52447593693e-10
-6.37227121384e-10
-5.44410098057e-10
-2.32965400714e-10
8.804272212e-11
8.22227587394e-11
1.30959763975e-11
5.37189565698e-10
1.47421256382e-09
2.02571656281e-09
2.13608029715e-09
1.88267493263e-09
1.51205778414e-09
1.31681986617e-09
1.40422831944e-09
1.53742874364e-09
1.49451922582e-09
1.60824441041e-09
1.93678890302e-09
1.8686578079e-09
1.35362323597e-09
6.20677368144e-10
-7.08022135116e-11
-5.15503828182e-10
-8.33797210421e-10
-7.61274249477e-10
-1.44827387387e-10
2.87579544054e-10
1.94543986227e-10
7.32691969704e-11
2.67361714636e-10
6.96539756483e-10
1.01368244446e-09
1.03822607114e-09
1.21111481304e-09
1.14020375579e-09
8.44087813697e-10
9.19744796545e-10
1.25105834573e-09
1.67063272802e-09
1.65405714028e-09
1.55585298741e-09
1.52071594317e-09
9.16174976189e-10
4.64540820362e-10
4.71085420428e-10
3.10993652299e-10
8.02911001032e-11
-1.90967601365e-10
-3.62920689493e-10
-3.56810723207e-10
-3.71390516039e-10
-1.2118309794e-10
6.76969695511e-10
1.72949347104e-09
2.79759333544e-09
3.43509976594e-09
3.42184412383e-09
2.84213223363e-09
2.07142542526e-09
1.231963682e-09
6.36893390403e-10
4.47128364065e-10
5.84323137565e-10
1.04075107636e-09
1.54968235239e-09
1.74472947618e-09
1.58654776735e-09
1.16122796058e-09
5.79691561409e-10
8.81168375029e-12
-4.36938557709e-10
-8.42138790885e-10
-1.04188610051e-09
-1.18583257363e-09
-1.23577702433e-09
-1.4526140707e-09
-1.89489063004e-09
-2.03103762378e-09
-2.41252135795e-09
-2.98965869151e-09
-3.55896520547e-09
-3.67731857809e-09
-3.34986368749e-09
-2.92404603711e-09
-2.21919180521e-09
-1.38764516133e-09
-5.09458765796e-10
3.81315121673e-10
1.21966576284e-09
1.6340411694e-09
1.94068652512e-09
2.1660783925e-09
2.12455916676e-09
1.49096327562e-09
8.12606140146e-10
3.38905505493e-10
-4.83129381905e-10
-1.43149203361e-09
-1.71869083635e-09
-1.46887371515e-09
-8.44406298085e-10
-1.79345674054e-10
6.40389095376e-10
1.73309632569e-09
2.63235393634e-09
2.055723552e-09
9.77935112989e-10
-1.35184764316e-10
-1.10411845817e-09
-1.49853172677e-09
-1.48964719818e-09
-1.58467582454e-09
-2.56297770279e-09
-3.16180627958e-09
-2.51615499202e-09
-1.85574839051e-09
-1.49160596187e-09
-5.81051049289e-10
8.50973556283e-10
2.21836107765e-09
2.42872456884e-09
2.15819394513e-09
1.5244164316e-09
1.82150358961e-10
-4.67501835787e-11
1.09471321609e-09
1.39372198746e-09
6.0814424514e-10
-2.48458480352e-10
-7.19883137476e-10
6.33243525433e-10
9.3468273079e-09
-1.85439102022e-09
1.98367408247e-09
2.84003625061e-09
1.75579003241e-09
2.15330682972e-09
5.66708240393e-10
1.06922578295e-09
1.13465568999e-09
1.09689072604e-09
1.83085409219e-09
1.64961106434e-09
3.8451712856e-09
7.79284202814e-09
-2.03508451427e-08
-1.74543137003e-08
4.23870448696e-09
5.86778516672e-09
4.50781363056e-09
1.92741754225e-09
4.33575413392e-10
1.07143526839e-09
9.53777309817e-10
8.05771854811e-10
4.64495080582e-10
5.22589682303e-10
1.58222154657e-09
1.40743354505e-09
1.07451698601e-09
1.1672971634e-09
1.37682029203e-09
1.83741595056e-09
1.31733655627e-09
1.9771297471e-09
1.38304088876e-09
2.37441728965e-09
2.17773785396e-09
1.64606136101e-09
1.8893275294e-09
1.96461711171e-09
1.51773078731e-09
1.2668747802e-09
1.4084362203e-09
1.00977254038e-09
6.76885627491e-10
4.41084783986e-10
-3.32457890698e-10
-4.45084473563e-10
-6.74577886226e-10
-1.06090029611e-10
9.26209351999e-10
1.37174021193e-09
1.41000577235e-09
1.13270327905e-09
1.08382185469e-09
1.42763845721e-09
1.97579413496e-09
2.29241250955e-09
2.19465813117e-09
2.07820634752e-09
1.90296370106e-09
1.71782347461e-09
1.49811752766e-09
1.16909859072e-09
4.10101165809e-10
-3.47559217599e-10
-6.0623587991e-10
-1.09774411173e-09
-1.98446394069e-09
-2.43121495158e-09
-2.4377455756e-09
-2.15519698374e-09
-1.65581812178e-09
-8.70990638893e-10
-8.29946175126e-11
3.54497899744e-10
2.15718009963e-10
-2.71040219907e-10
-6.40125244613e-10
-4.27918371505e-10
1.84792175314e-10
7.62545063595e-10
1.07148111405e-09
1.1904813022e-09
1.24676653567e-09
1.23995967302e-09
1.36329508168e-09
1.60100026701e-09
1.69513315602e-09
1.47635047498e-09
1.13679995389e-09
7.22312427969e-10
5.04375932838e-10
2.51440459843e-10
2.27595211828e-10
2.46824977313e-10
2.40362539442e-10
4.59854187064e-12
-6.77448904401e-10
-1.50124265571e-09
-2.13918424939e-09
-2.52035076972e-09
-2.46033848541e-09
-2.06147744681e-09
-1.58909564245e-09
-1.1088982651e-09
-6.99162170487e-10
-3.51234917073e-10
-4.7373705707e-11
2.91677489453e-10
5.63016023776e-10
4.35369852691e-10
-1.75329890851e-10
-1.02025542013e-09
-1.75157011426e-09
-2.32799043443e-09
-2.84624754321e-09
-2.93546298244e-09
-2.62097913089e-09
-2.15252925347e-09
-1.57428188324e-09
-9.43830601917e-10
-4.22006213882e-10
-1.11089218065e-10
-7.36037749846e-11
-1.51730282391e-10
-2.65537205668e-10
-4.63978178726e-10
-5.25547944871e-10
-5.07840085834e-10
-3.35011483276e-10
-3.29816418452e-10
-6.1821101996e-10
-9.05944512252e-10
-1.16726487027e-09
-1.20041731631e-09
-1.46028240555e-09
-1.79833444594e-09
-1.96204832548e-09
-1.61876731248e-09
-1.04234392181e-09
-6.72324672707e-10
-2.15833735839e-10
2.0953562236e-10
5.56851317986e-10
9.59805431544e-10
1.32984172719e-09
1.62313196737e-09
1.91628922339e-09
2.22490483068e-09
2.53955300663e-09
2.78942179684e-09
2.95437722816e-09
3.02404060587e-09
2.90745922618e-09
2.6149431741e-09
2.23638043305e-09
1.72527567048e-09
1.15303715198e-09
8.18747976047e-10
5.80676660727e-10
-3.46033287744e-10
-7.17552949838e-10
4.09154182974e-10
1.09373468127e-09
1.5478959599e-09
1.90012529365e-09
1.7003796781e-09
1.69337895079e-09
2.08593382909e-09
2.03682412936e-09
1.10680863481e-09
9.12157922437e-10
1.81044610388e-09
2.26407332823e-09
1.78973868942e-09
1.23267984836e-09
9.93290761531e-10
6.3397896179e-10
5.24101636114e-14
-6.15983852704e-10
-1.10437225042e-09
-1.4666517095e-09
-1.5129797216e-09
-1.30491082116e-09
-8.69598381425e-10
-3.18176491691e-10
3.23638689531e-10
9.73761358141e-10
1.46827062769e-09
2.12028122686e-09
2.54692600492e-09
2.76698262352e-09
2.90747193167e-09
2.81607834721e-09
2.47792077181e-09
2.04950505962e-09
1.67614225383e-09
1.42651783262e-09
1.17746515866e-09
1.0010963819e-09
8.26668581136e-10
3.60432000814e-10
1.25841990908e-10
3.53421956143e-10
3.481788222e-10
4.18385148033e-10
7.60251033676e-10
6.34830018143e-10
-4.2893748449e-11
-2.38277144326e-10
-2.47925696628e-10
-3.95075648357e-10
-2.31544926461e-10
2.99315185538e-10
8.27060757391e-10
1.5321750284e-09
2.29259208053e-09
2.73173631204e-09
3.02972673805e-09
3.06417217988e-09
2.47347003719e-09
1.55615283707e-09
7.17005766554e-10
4.49591535875e-10
6.09164496325e-10
1.13792311958e-09
1.5661272853e-09
1.64465274522e-09
1.2855528096e-09
7.91826304368e-10
8.37541625443e-10
1.03608279323e-09
1.10829475412e-09
1.41840632748e-09
1.64892210891e-09
1.79772155143e-09
1.65867156402e-09
1.19455870705e-09
5.49921317928e-10
-1.19199982052e-10
-5.83963995595e-10
-6.45239629549e-10
-4.10982080074e-10
-2.4521603823e-10
-2.65417774022e-10
-2.60299153922e-10
-2.80965910802e-10
-3.9918037002e-10
-8.99852227779e-10
-1.98141843373e-09
-2.56285149488e-09
-2.24005401495e-09
-1.9184567807e-09
-1.57656548407e-09
-1.38482687096e-09
-1.32943430434e-09
-1.40845654909e-09
-9.84293789324e-10
-8.12568023663e-10
-9.14809135562e-10
-6.38021638289e-10
-3.95979856028e-10
-1.91535325198e-11
3.57196334956e-10
4.10715688212e-10
1.38309892375e-11
-3.64783844339e-10
-3.19049041506e-10
-3.92602100393e-10
-6.19697774541e-10
-5.29134189726e-10
-5.85382775782e-10
-8.22153260253e-10
-1.17410561423e-09
-1.15864175723e-09
-1.21488982713e-09
-1.51261237897e-09
-1.70035384359e-09
-1.79627439564e-09
-1.72825256778e-09
-1.37922925373e-09
-7.9001365386e-10
-2.51245218749e-10
-1.54264181453e-10
-7.7644969176e-11
1.42213443712e-10
1.26718670008e-10
-2.43953959139e-11
2.4990351856e-10
5.4118629066e-10
2.55272860413e-10
1.36480724725e-10
5.65631661517e-11
-1.35472755518e-10
-2.41167220742e-10
-1.50659209229e-10
-5.23440950415e-11
5.67266435106e-11
4.09726777246e-10
8.15384408213e-10
1.21218503917e-09
1.76361746387e-09
2.11497350666e-09
2.39492255441e-09
2.46302400337e-09
2.30341419698e-09
2.48759537037e-09
2.82672322202e-09
2.99013355935e-09
2.47524854168e-09
1.90677984918e-09
1.7328994964e-09
1.65018387037e-09
1.35216951568e-09
1.33911843203e-09
1.37042095811e-09
9.69643930985e-10
6.50146491412e-10
5.22188188686e-10
1.88094677366e-10
1.06788831792e-10
1.62430426097e-10
-2.13638649956e-10
-4.51188192981e-10
1.06395808505e-10
9.36987846253e-10
1.50330136929e-09
1.91213283271e-09
2.44655725936e-09
2.66313850177e-09
2.49056993833e-09
1.8040734515e-09
1.04330149256e-09
8.92542333444e-10
1.1698024751e-09
1.30538068622e-09
1.40296269339e-09
1.44254200192e-09
1.34532930111e-09
8.88760119577e-10
5.36968490099e-10
7.08532790104e-10
9.4034972002e-10
1.23096818668e-09
1.5504879866e-09
1.68343277228e-09
1.68050659109e-09
1.73274395998e-09
1.68016311923e-09
1.38449483404e-09
9.19820605994e-10
3.00368894525e-10
-4.72010380407e-10
-9.20531690153e-10
-8.97972661669e-10
-6.24529250472e-10
-1.56823915019e-10
8.18327000672e-11
1.30513377612e-10
2.58353519242e-10
7.37263406521e-10
1.46287333375e-09
2.07321817049e-09
2.24104419646e-09
1.89032173432e-09
1.38222055058e-09
7.54934207866e-10
1.79116975158e-10
-1.51488454485e-10
-2.89755571696e-10
-3.60627665425e-10
-6.81154250029e-11
2.53270898042e-10
1.7103289271e-10
3.30317438441e-11
5.51307487346e-10
1.26347627226e-09
1.603500073e-09
1.41289309591e-09
5.51331839544e-10
-3.93894990308e-10
-7.12905280057e-10
-2.01126107206e-10
4.4340470135e-10
8.18804197859e-10
1.2097307612e-09
1.23300426198e-09
8.35076230171e-10
2.97410631956e-10
-2.83666251838e-10
-4.86921124894e-10
-4.51429173854e-10
-4.37863517688e-10
-2.41152821182e-10
1.35814109796e-10
2.38875149587e-10
9.23435319097e-11
4.00864271519e-10
1.01102276101e-09
1.58434463465e-09
1.77554792294e-09
1.67878711421e-09
1.51910361596e-09
1.10043725299e-09
1.20247592401e-09
1.89491773509e-09
2.58897737911e-09
2.68769313988e-09
2.21431437775e-09
1.75527461286e-09
1.1426101764e-09
7.61863360891e-10
7.71640662202e-10
6.75965537952e-10
4.41995344404e-10
-4.33835452507e-11
-5.33474055675e-10
-8.30906551669e-10
-8.87475302945e-10
-5.55870242075e-10
3.03267547149e-10
1.34247988228e-09
2.23584087307e-09
2.69006525565e-09
2.54186032438e-09
1.9300026868e-09
1.24828685393e-09
6.9088581156e-10
2.95323119258e-10
4.0171808073e-10
7.72846413602e-10
1.32595723409e-09
1.83680365162e-09
1.98386381785e-09
1.8798447838e-09
1.56114440223e-09
1.10183655141e-09
7.11806678324e-10
5.74715242844e-10
6.70415566323e-10
8.93551149685e-10
8.05239494604e-10
4.46621838362e-10
-1.55617740103e-10
-1.04069517218e-09
-1.43050651077e-09
-1.76706742907e-09
-2.69041465674e-09
-3.44982670428e-09
-3.71729133342e-09
-3.62843588319e-09
-3.37636607786e-09
-2.85619128649e-09
-2.34293040155e-09
-1.8687252529e-09
-1.35758115624e-09
-3.13575574158e-10
1.84987495818e-10
3.10435669345e-10
1.87508742325e-10
1.25285278503e-10
6.17686071291e-11
-2.25446712758e-10
-6.49662412083e-10
-1.11314825291e-09
-1.70443357778e-09
-1.80760896702e-09
-1.35415411387e-09
-1.72914152885e-10
9.54357103869e-10
9.55326956594e-10
9.6309424872e-10
2.24631443546e-09
2.58582895764e-09
1.51885120014e-09
1.21711858257e-10
-8.6066594254e-10
-1.15399429921e-09
-9.9587188268e-10
-9.24027395127e-10
-1.74414248235e-09
-2.88478838934e-09
-2.45818151601e-09
-1.36518544746e-09
-9.02574168155e-10
-3.93539977624e-10
6.7804352153e-10
1.62091104699e-09
1.2743496342e-09
7.35622809581e-10
4.92744608755e-10
-8.72975872363e-10
-2.15813968208e-09
-1.95448913876e-09
-1.19069602505e-09
1.53672105423e-10
6.31672491074e-09
6.13315720096e-09
-1.44364610937e-09
9.60960149209e-10
5.10908420334e-09
3.16623965002e-09
3.51116755977e-09
8.99932695909e-10
2.58354789791e-09
1.65259939658e-09
2.04234890176e-09
1.11524000077e-09
5.54705783531e-10
7.16764362164e-10
6.1836115655e-10
1.79116297532e-09
1.32644893672e-08
3.47539312324e-08
-2.66964816173e-08
-3.86283361661e-09
-3.14154355741e-10
2.55991821978e-09
2.28165773222e-09
3.84987485955e-10
-2.41210842939e-10
8.56066553637e-11
-2.11372836823e-10
1.27998409736e-09
9.1289611165e-10
5.40832230888e-10
8.23860455158e-10
1.11761931632e-09
1.20827280574e-09
1.50518898222e-09
1.22512664381e-09
1.27701736447e-09
2.51639639641e-09
2.10154688963e-09
1.87087089324e-09
2.52840621187e-09
2.3446617369e-09
2.55464628672e-09
2.38251648635e-09
1.9413889272e-09
1.3412567667e-09
1.43159240701e-09
1.16673113364e-09
6.77745789449e-10
-4.14910618883e-11
-2.58586453303e-10
-2.09220526104e-10
-1.28026488879e-10
4.73735363004e-10
8.51264723859e-10
9.69096324184e-10
1.35018830562e-09
1.86734681266e-09
2.20154705013e-09
1.97298283261e-09
1.86167338598e-09
1.94709327058e-09
2.05070149365e-09
2.17091579766e-09
2.12604083915e-09
1.90959173387e-09
1.73529861135e-09
1.47969794918e-09
5.97266648032e-10
-5.96223103441e-10
-1.23246343144e-09
-1.59568047659e-09
-2.18145458159e-09
-2.56279432016e-09
-2.54602815e-09
-2.11235066914e-09
-1.30211283311e-09
-4.60494543972e-10
1.45766323409e-10
3.33200103319e-10
2.18295954738e-10
5.73221076725e-11
-5.32314679328e-11
1.08751354191e-10
4.74613272949e-10
8.76449554479e-10
9.76142844212e-10
8.20895310447e-10
8.08692318534e-10
9.31461379788e-10
1.03361863542e-09
1.13992952888e-09
1.24493027412e-09
1.06915696152e-09
7.63727680408e-10
4.77438167533e-10
3.8491972332e-10
4.8071364394e-10
6.17753833927e-10
4.83757880352e-10
-1.07613418366e-10
-8.0454577462e-10
-1.5065048479e-09
-2.20889082578e-09
-2.66371617824e-09
-2.67211366288e-09
-2.41412013264e-09
-1.94525520908e-09
-1.51909006343e-09
-1.0492900155e-09
-5.15575402467e-10
-9.82558218815e-14
4.01181061841e-10
6.88820745234e-10
7.621746455e-10
4.0940321066e-10
-3.40053235137e-10
-1.30654408598e-09
-2.25844310023e-09
-2.85993813674e-09
-3.07835405251e-09
-2.82340899385e-09
-2.00669008523e-09
-1.14621811324e-09
-5.9773039857e-10
-3.30596959313e-10
3.89419162335e-11
4.3616987531e-10
6.66594177182e-10
8.06263133921e-10
7.31083030621e-10
4.65306538146e-10
1.17424600994e-10
-1.69307486596e-10
-2.87331575159e-10
-2.50755421947e-10
-3.53202468731e-10
-7.20189763403e-10
-1.35416597234e-09
-1.88591319253e-09
-2.06782820206e-09
-2.17152497317e-09
-2.29145393295e-09
-2.39113875235e-09
-2.12517697142e-09
-1.51873642717e-09
-7.12961819506e-10
-1.2626444859e-10
1.81078703464e-10
4.31544651901e-10
7.69388825111e-10
1.08499245423e-09
1.39262719737e-09
1.70222748047e-09
2.15837039268e-09
2.59858612086e-09
2.73709803059e-09
2.7503871305e-09
2.76734557714e-09
2.45464557697e-09
1.8636689956e-09
1.1519529498e-09
1.56675684254e-10
-3.07557663148e-10
-2.44284301988e-12
3.40552984575e-10
1.30308395639e-10
4.22605066176e-10
1.28211565578e-09
1.78098079226e-09
2.41690941214e-09
2.5289549304e-09
1.67655433536e-09
1.32847969821e-09
2.00389699409e-09
2.30383771346e-09
1.95597441103e-09
1.80155056387e-09
1.74544140737e-09
1.42191378504e-09
1.09485827048e-09
7.3801048958e-10
8.26333579606e-11
-5.66448624795e-10
-1.0958595693e-09
-1.53941726598e-09
-1.84096417157e-09
-1.69159246566e-09
-1.24670242586e-09
-7.82708259388e-10
-1.59992347638e-10
5.41797742569e-10
1.30822714044e-09
1.80938815973e-09
2.11456375447e-09
2.28941591874e-09
2.42666236125e-09
2.65437721648e-09
2.82627365928e-09
2.6190411195e-09
2.20367479689e-09
1.9661002664e-09
1.81511367893e-09
1.47651522289e-09
1.08189570177e-09
9.36696466919e-10
5.90389587533e-10
1.56341953272e-10
2.26712603497e-10
4.56319518575e-10
5.61852200507e-10
8.05170884935e-10
1.12548486427e-09
8.59661361465e-10
2.53677897373e-10
-1.74365120324e-10
-2.79319278752e-10
-3.67983299539e-10
-3.8252854931e-11
7.45970905219e-10
1.67881083113e-09
2.34793721331e-09
2.33334537672e-09
2.05680097791e-09
1.84200612798e-09
1.50447069828e-09
1.32359697679e-09
1.15939201666e-09
1.0140792794e-09
9.5319201005e-10
9.16880978151e-10
1.20022048703e-09
1.55307323703e-09
1.53724843812e-09
1.22411094543e-09
8.08361552168e-10
7.79387575906e-10
7.00435472765e-10
8.07417428069e-10
1.10818781621e-09
1.48580293915e-09
1.69318053332e-09
1.31938510546e-09
4.10107518556e-10
-2.64630880414e-10
-6.50282016684e-10
-7.62705735157e-10
-4.2067213699e-10
1.36521382307e-10
6.48756933862e-10
1.00404829172e-09
9.4125773934e-10
5.27411840871e-10
3.45254017433e-10
-7.24839974283e-11
-8.40710693336e-10
-1.20057857021e-09
-1.3714234216e-09
-1.33685261889e-09
-1.40005313522e-09
-1.89690995659e-09
-2.56246778896e-09
-2.73430451593e-09
-2.56623200337e-09
-2.34483622569e-09
-2.07686507084e-09
-1.62160010829e-09
-1.282429905e-09
-1.31180881926e-09
-1.25817172842e-09
-1.26501130771e-09
-1.55317615153e-09
-1.51549504384e-09
-1.00796359564e-09
-3.8550099968e-10
1.21936889382e-10
3.93745647811e-10
2.77163897539e-10
-2.41303910684e-10
-7.79974407611e-10
-1.20807481179e-09
-1.5198401111e-09
-1.3329219625e-09
-1.02221968954e-09
-9.15737483672e-10
-8.30518345882e-10
-8.17467685747e-10
-7.68649365348e-10
-6.76166073002e-10
-5.14452236779e-10
-2.0502347785e-10
1.77450014318e-10
2.76045496411e-10
2.99616729268e-10
4.50663879587e-10
2.58332343418e-10
-4.79429118475e-11
1.04693272281e-11
-1.35410922113e-10
-2.40728457676e-10
-8.54283549283e-11
1.48336644888e-10
2.0595182596e-10
5.90769905326e-10
1.22047029194e-09
1.68037953615e-09
1.8697824559e-09
1.97468790993e-09
2.09832634463e-09
2.45986287641e-09
2.52259583055e-09
2.18506505953e-09
1.86659422389e-09
2.03992215237e-09
2.04356116473e-09
1.83853832215e-09
1.52708944258e-09
1.403466678e-09
1.18063073254e-09
5.36500080879e-10
3.67298049885e-10
2.13803821381e-10
-7.76021940121e-11
-1.5505361616e-10
-3.29588143073e-10
-5.08800832954e-10
-4.02936114108e-10
-3.42276696623e-10
-4.61923488554e-10
-1.88220885275e-10
1.08031852642e-09
2.52446057358e-09
3.28724677687e-09
3.48000860577e-09
3.3428223026e-09
2.85059451629e-09
2.42258114475e-09
1.86271693057e-09
1.52300843784e-09
1.74897904048e-09
1.92956519428e-09
1.65267308844e-09
1.13776895959e-09
7.93313270707e-10
5.40502311555e-10
3.66255140569e-10
3.78850202857e-10
4.44454439869e-10
6.03242970055e-10
1.00681348372e-09
1.41570778639e-09
1.64928707424e-09
1.60165205886e-09
1.31176477355e-09
7.45901872033e-10
4.80686962402e-11
-5.5213334447e-10
-1.05038988778e-09
-1.21635794698e-09
-1.05862177748e-09
-9.44889816618e-10
-7.99383955839e-10
-5.38938265218e-10
-2.16034906164e-10
2.0694624264e-10
7.90933955158e-10
1.3016651762e-09
1.5149836477e-09
1.49558913431e-09
1.16061555576e-09
7.9980662528e-10
5.94990670502e-10
3.25072610431e-10
5.59880307806e-11
-5.43600334559e-11
-6.1324846568e-10
-7.70433216735e-10
-2.28966134654e-10
5.64575411432e-10
1.46715847343e-09
2.13472800905e-09
2.68238436088e-09
2.67415374173e-09
2.12761060296e-09
1.29594548034e-09
4.13567965783e-10
-5.25102193783e-12
4.64306271644e-10
1.19307269362e-09
1.54705940899e-09
1.5829601593e-09
1.35799456126e-09
8.97566297613e-10
3.80074694861e-10
-1.06232754662e-10
-3.49337139755e-10
-3.41275927196e-10
-6.28715287297e-10
-1.15997096368e-09
-1.24206878506e-09
-9.94631826445e-10
-9.32218203727e-10
-8.19270595375e-10
-2.3012191111e-10
2.24682265523e-10
1.91321025862e-10
2.10709610025e-10
4.1415675956e-10
9.22521370547e-10
1.51433651453e-09
2.28353306316e-09
2.93106095222e-09
2.6569356795e-09
2.03804512736e-09
1.85009868076e-09
1.55029899237e-09
1.37964938207e-09
1.48394454887e-09
1.35117848713e-09
1.04503282791e-09
4.42491070437e-10
-6.82900196691e-11
-3.68358905712e-10
-3.03724442015e-10
2.02720607025e-10
1.12264952736e-09
1.94616598126e-09
2.27404460009e-09
2.13659063451e-09
1.65770531118e-09
1.05974028449e-09
6.07571227351e-10
4.12846823107e-10
2.61111458518e-10
4.43575907884e-10
7.80222376507e-10
1.07530070324e-09
1.33956905356e-09
1.22455637888e-09
8.75655884608e-10
5.735675132e-10
2.71501164649e-10
2.3261642314e-10
4.31073701583e-10
6.12665707013e-10
7.97813556755e-10
4.72790074235e-10
-3.6566412333e-10
-1.2123607985e-09
-1.98129137879e-09
-2.44669363166e-09
-2.40762550752e-09
-2.78364587918e-09
-3.35974432682e-09
-3.28586018393e-09
-2.79114762647e-09
-2.15637012437e-09
-1.29247169235e-09
-5.40928792644e-10
-2.796450688e-10
-2.4946036151e-10
1.52675213818e-10
7.00024079451e-10
7.49634640353e-10
6.97675415907e-10
7.76836150542e-10
8.58929948515e-10
6.37445232368e-10
1.83801914389e-11
-7.27818989159e-10
-1.4809710397e-09
-1.87395197558e-09
-1.76700474863e-09
-8.55428737828e-10
8.02079214678e-10
1.146044895e-09
7.18275468942e-11
-1.6695188797e-10
-2.74711419519e-10
-5.25254447955e-10
-1.04211310534e-09
-1.64952127885e-09
-2.26677790443e-09
-2.48773491905e-09
-1.92244799995e-09
-1.87118810708e-09
-2.52765812296e-09
-2.09548243151e-09
-9.55311286484e-10
2.5075986887e-11
7.71886301756e-10
1.65850321622e-09
2.60178875243e-09
2.19685978156e-09
1.09033860855e-09
9.69705843799e-10
1.08642346345e-09
1.00544917834e-09
2.64993495219e-09
2.96286068664e-09
5.69115296271e-10
-2.52356991844e-09
1.79846736394e-09
7.13796231662e-09
-4.99920116019e-10
5.03741293402e-09
2.57818194419e-10
2.6807008829e-09
1.34776070919e-09
1.83947604056e-09
4.91741589397e-10
5.4763559952e-10
1.18979414672e-09
1.04687004237e-09
4.31083865978e-10
-1.85287525476e-09
-5.47220214563e-09
-1.25344104941e-09
2.50651994989e-08
1.03180579434e-08
5.07954054117e-09
7.14211404861e-10
1.13359774584e-09
1.33562272705e-09
1.05317154398e-09
7.91876702828e-10
9.2320789075e-10
5.83730638018e-10
7.80026288379e-10
1.87607972235e-09
1.3392255817e-09
1.24586624552e-09
1.84198897556e-09
6.92980735797e-10
1.19531066055e-09
1.67016146007e-09
1.60366471503e-09
1.04607788127e-09
1.7901596681e-09
1.77144092487e-09
1.65626048473e-09
1.80760864938e-09
1.85968095273e-09
2.23898760047e-09
1.90867863235e-09
1.84392931628e-09
1.45304478695e-09
8.91170987103e-10
6.84669860276e-10
-5.03533558572e-10
-3.47959440666e-10
4.99992537336e-10
6.88729265676e-10
5.68783471114e-10
6.65828035881e-10
6.7729770902e-10
3.98173247845e-10
6.46842639401e-10
1.23019507721e-09
1.67107487922e-09
1.83603539273e-09
1.76986856702e-09
1.66438924817e-09
1.84283876136e-09
1.86216212399e-09
1.16001416236e-09
5.21721473532e-10
4.36667507166e-10
2.81444484417e-10
-4.32941409231e-10
-9.23973185018e-10
-1.21794232211e-09
-1.74609870494e-09
-2.20617227354e-09
-2.00373097563e-09
-1.44957152835e-09
-8.20865558415e-10
-1.95747831803e-10
3.35080092945e-10
3.79941710689e-10
1.64445199841e-10
1.00433331831e-10
2.48887926056e-10
5.88001854594e-10
9.82422998773e-10
1.2000773914e-09
1.12932097061e-09
8.87355421313e-10
7.71628486103e-10
8.94086262749e-10
1.01191892187e-09
1.03191948733e-09
8.62699456888e-10
6.46166707109e-10
6.04368595778e-10
8.84869909008e-10
1.14688981036e-09
9.75314816567e-10
5.529079561e-10
2.70806174116e-10
-2.74379806121e-10
-1.04723977225e-09
-1.68877278562e-09
-2.05794108425e-09
-2.19657835486e-09
-2.25896063736e-09
-2.13978140762e-09
-1.79518214665e-09
-1.43864056817e-09
-1.08727097285e-09
-5.65737540636e-10
1.62766698177e-10
6.75746791693e-10
8.27460556942e-10
7.21118958546e-10
1.94649865345e-10
-8.35227849068e-10
-2.10763396617e-09
-3.13823674079e-09
-3.57203704143e-09
-3.26832151973e-09
-2.69540029267e-09
-2.09348851595e-09
-1.31382052251e-09
-6.01338758925e-10
-2.31293357676e-10
-1.67073013681e-11
1.92060485625e-10
3.1941612441e-10
4.36317259043e-10
3.88873673117e-10
3.12952839506e-10
-5.45736975169e-11
-3.91768408215e-10
-6.33658783336e-10
-8.37447922423e-10
-7.80262928209e-10
-9.18653076956e-10
-1.24901969625e-09
-1.83469117791e-09
-2.34331339776e-09
-2.44022949972e-09
-2.14704153877e-09
-1.57509069383e-09
-1.16836537783e-09
-9.56769665461e-10
-6.13820001161e-10
-1.41200815824e-10
2.27788547099e-10
5.01713708285e-10
7.04370999597e-10
1.06734748738e-09
1.56190800243e-09
1.95441587041e-09
2.36969621917e-09
2.95650158679e-09
3.16398823645e-09
2.90568892732e-09
2.45995477948e-09
2.00892413463e-09
1.65612051254e-09
1.38535796062e-09
7.88497888401e-10
1.14214769641e-10
9.29677951918e-11
5.82787466831e-10
8.76592703048e-10
1.17476693521e-09
1.8666717274e-09
2.39109523603e-09
2.418011402e-09
2.19735677814e-09
1.89332531315e-09
1.58311474281e-09
1.57923872005e-09
1.48779431361e-09
1.35323465961e-09
1.60983143252e-09
1.7676260473e-09
1.31063864324e-09
6.80015202473e-10
3.49793902272e-10
-4.56612168459e-11
-7.93245931587e-10
-1.46315433693e-09
-1.72248120291e-09
-1.81145883765e-09
-1.64431255562e-09
-1.06335457407e-09
-3.47785745972e-10
3.56951542434e-10
9.27631520317e-10
1.34441323498e-09
1.67501082957e-09
2.03201467629e-09
2.38298849545e-09
2.48556482064e-09
2.54057706947e-09
2.6999670708e-09
2.86373496192e-09
2.69199394967e-09
2.34946271964e-09
2.06769170403e-09
1.69146211523e-09
1.04496421824e-09
4.94154786263e-10
-1.16187509375e-11
-5.47768583693e-10
-6.06081719914e-10
-2.76547786949e-10
8.01437163704e-11
4.97917306615e-10
8.76602867443e-10
8.27549495402e-10
5.89314702723e-10
4.25993197965e-10
4.56207710226e-10
7.66347976831e-10
1.31208029332e-09
1.94497484118e-09
2.68803364712e-09
3.263778035e-09
3.12099114998e-09
2.47825916147e-09
1.64840192481e-09
8.82212766653e-10
4.27703781002e-10
7.86895302065e-10
1.25842329721e-09
1.90163640043e-09
2.21096944464e-09
1.85794834684e-09
1.52254955774e-09
8.64477379045e-10
3.94570710842e-10
1.7200200428e-10
4.04762171558e-10
1.11953159908e-09
1.69462059521e-09
1.73226919801e-09
1.37896434417e-09
1.117071286e-09
8.36747426176e-10
9.68963340012e-12
-9.60678087238e-10
-1.53329268837e-09
-1.73473660499e-09
-1.45993328239e-09
-8.77729421263e-10
-3.68464414253e-10
7.15768251418e-11
3.35115880087e-10
6.13412790072e-11
-4.53302387217e-10
-8.55921711003e-10
-1.26007585849e-09
-1.61192487445e-09
-1.88067657015e-09
-2.11841923669e-09
-1.69967579372e-09
-1.58187383955e-09
-2.08757114378e-09
-1.8499970368e-09
-1.13734163146e-09
-6.00189758733e-10
-3.21427404143e-10
-2.32145049305e-10
-3.17956263125e-10
-6.9539075629e-10
-9.50485739784e-10
-8.81798355783e-10
-1.09729137262e-09
-1.10716121228e-09
-8.54505366036e-10
-6.01481007521e-10
-6.64870173967e-10
-5.44459755363e-10
-3.68633714964e-10
-4.12744014483e-10
-6.21935847346e-10
-8.39490754134e-10
-1.27928508342e-09
-1.51301768423e-09
-1.2096303878e-09
-1.06040605238e-09
-1.07829750581e-09
-9.58622338275e-10
-9.41173883078e-10
-9.64404608689e-10
-8.23694648459e-10
-4.00270501423e-10
4.30445203136e-11
2.11042493973e-10
3.03986572242e-10
3.16897895457e-10
6.47251756315e-11
-2.84318467207e-10
-1.41125006375e-10
-2.47777465863e-10
-4.38652105362e-10
-5.26803671215e-10
-1.9724940946e-10
4.82901953559e-11
4.89247077367e-10
1.20125365547e-09
1.93364408144e-09
2.36890678447e-09
2.25976870679e-09
1.908605364e-09
2.0347247582e-09
2.19320271681e-09
2.35087027664e-09
2.17996952107e-09
2.28143909184e-09
2.35679042814e-09
1.88168745103e-09
1.20004356302e-09
8.08590992218e-10
1.00116012113e-09
8.68060116653e-10
5.71289841605e-10
4.07335603236e-10
3.3715722949e-11
-4.98976944832e-10
-9.36998857681e-10
-1.25939569103e-09
-1.27433227002e-09
-9.35729155293e-10
-4.38097298781e-10
-1.35690442985e-10
3.55539538511e-10
1.34254552733e-09
2.25440783527e-09
2.38286969908e-09
2.10845982329e-09
1.65394956709e-09
1.44292231971e-09
1.46867974461e-09
1.32382271107e-09
1.13896624066e-09
1.23313174044e-09
1.0368136437e-09
6.7425431964e-10
4.56521535933e-10
2.75614568399e-10
3.14717209135e-10
6.32796821433e-10
9.45031482878e-10
1.06554457776e-09
1.33433253706e-09
1.89949319532e-09
2.27975571973e-09
2.19991862929e-09
1.73705196955e-09
8.83655263762e-10
-7.57510035059e-11
-6.11223209903e-10
-8.45125005541e-10
-9.32896677117e-10
-8.33360988453e-10
-7.99246736502e-10
-9.44395149376e-10
-8.30279482591e-10
-3.32566310916e-10
3.65795413437e-10
1.03616015778e-09
1.35675535206e-09
1.35069991352e-09
1.1698024751e-09
9.52941711814e-10
6.72687308688e-10
8.16367813465e-10
7.91455727453e-10
3.0557221792e-10
8.06968288849e-12
-5.70396221846e-10
-9.93852556134e-10
-2.96316688905e-10
9.28863106223e-10
2.3152612233e-09
3.06738455233e-09
2.72553391328e-09
1.7252928229e-09
4.87874883992e-10
-4.03426228547e-10
-9.558618579e-10
-1.10109388881e-09
-4.36203544869e-10
3.89029103663e-10
7.79017578018e-10
7.01959708554e-10
3.01375804941e-10
-3.3755109981e-11
-8.52149026256e-11
-4.99652030091e-11
-6.21184317363e-11
4.16083759515e-11
-2.44076778916e-10
-1.08788168361e-09
-1.80064212103e-09
-1.90102145451e-09
-1.36396190837e-09
-9.33847048084e-10
-4.46289801447e-10
6.67233263541e-11
1.43597495548e-10
2.38362694654e-10
3.68361923267e-10
8.16102692152e-10
1.57578706079e-09
2.05569136475e-09
2.31791074236e-09
1.92364062233e-09
1.22007980975e-09
1.19912252057e-09
1.55264612067e-09
1.74494801068e-09
1.65360101304e-09
1.06935919063e-09
4.42286723738e-10
-8.6195343262e-11
-4.4178686842e-10
-5.32056493098e-10
-2.73164929264e-10
2.3874862404e-10
8.89427052143e-10
1.36479538879e-09
1.483986477e-09
1.29370984276e-09
8.72567178966e-10
3.84403033222e-10
1.76098996767e-10
3.21758170509e-10
5.50261401657e-10
9.16980928039e-10
1.39897062711e-09
1.46695264443e-09
1.14132099225e-09
7.39787564704e-10
4.49703344224e-10
5.8075797589e-10
8.02740747409e-10
1.09093354332e-09
1.47076344566e-09
1.70108525654e-09
1.63241883661e-09
1.01047218959e-09
2.26463575811e-10
-6.08296711071e-10
-1.38660733422e-09
-1.91349147356e-09
-2.21798118337e-09
-2.44259780384e-09
-2.38559629814e-09
-2.42579436424e-09
-2.53476557642e-09
-2.29001477103e-09
-2.03655180827e-09
-1.57234133076e-09
-1.61057819794e-09
-1.74733434072e-09
-1.53476239642e-09
-5.04236595918e-10
1.44816587717e-10
3.15596429334e-10
6.99026433458e-10
1.0250517442e-09
7.54870680395e-10
3.88762711801e-10
2.80828267948e-10
1.42271888986e-10
6.0862705392e-11
1.72841308052e-10
-6.89518700383e-11
5.71318640725e-10
1.4936324882e-09
1.41398598017e-09
9.53431296858e-10
-1.61223404147e-10
-1.13125061754e-09
-1.58932772948e-09
-2.16094367877e-09
-2.82365124528e-09
-3.38639791257e-09
-3.06308628364e-09
-2.77784200942e-09
-3.083714077e-09
-2.48562580701e-09
-1.18226232976e-09
2.34386721999e-10
1.3870156041e-09
2.0815068114e-09
2.92422518458e-09
3.20792341191e-09
1.9603858645e-09
1.08940216069e-09
3.35899517912e-10
-1.135115523e-09
-1.85929872911e-09
-9.83590963736e-10
5.15211728871e-09
2.88976640197e-09
-3.26965813772e-09
5.23507569556e-09
-1.01988823135e-09
2.93268132625e-09
1.05014213064e-09
2.65535850415e-09
1.16768235163e-09
1.69692378367e-09
1.00348840294e-09
-2.16787918454e-10
-1.19849232806e-10
6.36689255463e-11
1.97932287422e-09
3.19217241074e-09
-8.78622193989e-10
-1.12369516835e-08
-3.7495283486e-09
1.0916954071e-08
6.09018298438e-09
3.18557487111e-09
1.03230446381e-09
4.60129472772e-10
5.16714661781e-10
1.04016747066e-09
9.22701788564e-10
1.72814922976e-09
9.96027736742e-10
1.394070118e-09
1.28888683716e-09
8.1108275139e-10
1.21183267346e-09
1.51807108279e-09
8.99346972626e-10
1.3013766556e-09
1.72746149194e-09
1.45194200299e-09
9.21894566166e-10
1.86522128936e-09
2.13411941588e-09
1.90197023729e-09
2.08747373499e-09
2.80822825761e-09
3.00322604174e-09
2.76098435971e-09
2.11502305809e-09
1.44329289663e-09
9.30370401352e-10
8.51425660119e-10
3.22274860607e-10
1.63394349591e-10
8.35598849499e-10
1.02583906132e-09
8.71601137889e-10
7.0138732604e-10
4.14354118237e-10
6.5258721685e-10
1.08969941631e-09
1.40310245383e-09
1.7405188754e-09
2.04240819407e-09
1.97627779078e-09
1.77011335955e-09
1.68456472594e-09
1.29244437554e-09
7.2439358792e-10
4.56673578347e-10
4.05861765908e-10
-3.16643785573e-10
-1.18857653686e-09
-1.62206682344e-09
-1.89813646029e-09
-2.09550911305e-09
-1.92964778e-09
-1.37047686228e-09
-6.28242854671e-10
-2.3908140211e-11
2.82937168228e-10
2.12267091857e-10
-2.32805946762e-11
1.01264588789e-10
5.66047448815e-10
1.01655695665e-09
1.3511983527e-09
1.43345717651e-09
1.41422113769e-09
1.35131845933e-09
1.28144491156e-09
1.40664305155e-09
1.53617577677e-09
1.56300956878e-09
1.36912033902e-09
1.19341224796e-09
1.07785662516e-09
1.14014658107e-09
1.35294243324e-09
1.50185124889e-09
9.54806454848e-10
1.7159616962e-11
-7.64274016659e-10
-1.36936936671e-09
-1.71322577978e-09
-1.98702155668e-09
-2.10275844453e-09
-1.96349182844e-09
-1.6551015319e-09
-1.16343024624e-09
-6.85329275426e-10
-2.91065084632e-10
7.08178836211e-11
6.09290280718e-10
1.05166255478e-09
1.02569083056e-09
4.72706217973e-10
-5.12259268478e-10
-1.59989107737e-09
-2.69110414156e-09
-3.65670984297e-09
-4.1858149027e-09
-3.99846392026e-09
-3.24335437657e-09
-2.45829544194e-09
-1.64068206652e-09
-9.29313727751e-10
-5.49709136175e-10
-4.21665283121e-10
-3.19174296503e-10
-1.13053910987e-10
1.57535422695e-11
5.15339080274e-11
1.75705338205e-10
2.2871075422e-10
9.65861081842e-11
-7.54935054899e-11
-3.4131023203e-10
-5.93606406908e-10
-8.27069651237e-10
-1.0926870074e-09
-1.44441550645e-09
-1.87545535319e-09
-2.15860904421e-09
-2.15830845339e-09
-1.81469471526e-09
-1.26837974599e-09
-6.49430113297e-10
-3.04009865648e-10
-2.16847634277e-10
-3.06060744172e-10
-1.04847008761e-10
3.52019693099e-10
9.33969020829e-10
1.69496417295e-09
2.41663327939e-09
2.90376319791e-09
3.35181694547e-09
3.665708721e-09
3.68174474875e-09
3.19321087313e-09
2.29899310852e-09
1.328422947e-09
9.21596410568e-10
1.01464636796e-09
5.95396399284e-10
2.48456786286e-10
7.16562768323e-10
1.35394743784e-09
1.79901835887e-09
1.80564046245e-09
1.70730925464e-09
2.12941372434e-09
2.28376938535e-09
1.57281990437e-09
9.5615366075e-10
1.28803260443e-09
1.87188182706e-09
1.66086770869e-09
1.28732024972e-09
1.49450112049e-09
1.62231881574e-09
1.2232972644e-09
7.5518598841e-10
2.6861871153e-10
-4.2436520064e-10
-1.13984207272e-09
-1.49272245718e-09
-1.43203831692e-09
-1.09940231107e-09
-4.60177323516e-10
2.63253128386e-10
8.65332882321e-10
1.41877457506e-09
1.75466676084e-09
1.88459621511e-09
1.86979134975e-09
2.08160231436e-09
2.43699319859e-09
2.77029621641e-09
3.04262027357e-09
3.17056671783e-09
3.05994717954e-09
2.82349073253e-09
2.39394634894e-09
1.67631674262e-09
7.91281238666e-10
9.25976417938e-12
-3.94705494959e-10
-6.74738822486e-10
-6.48112341789e-10
-7.95838275922e-11
2.36146856464e-10
3.27184263569e-10
7.96854715459e-10
1.05839477265e-09
7.13642198721e-10
5.53684261796e-10
8.28826821086e-10
1.33227525285e-09
1.87225028639e-09
2.2466549427e-09
2.38565813155e-09
2.4245979302e-09
2.16793254762e-09
1.67478064837e-09
1.1613135109e-09
8.40340116422e-10
4.46851807808e-10
5.12861085387e-10
1.1713012999e-09
1.54788028979e-09
1.71251215452e-09
1.69842176144e-09
1.45203406489e-09
1.21095790019e-09
7.81210758077e-10
5.98219163051e-10
9.51012342814e-10
1.590317911e-09
2.30779219265e-09
2.7032334416e-09
2.10148027181e-09
1.07871996349e-09
1.14528595348e-10
-7.48152015058e-10
-1.55019099567e-09
-1.93437168274e-09
-1.79702486683e-09
-1.22293685188e-09
-3.46345842902e-10
2.93979725004e-10
5.43765505984e-10
5.58429340367e-10
4.00680465369e-10
1.69622582852e-10
-5.17037381334e-11
-4.81427269198e-10
-9.78472131877e-10
-1.3332611992e-09
-1.535532667e-09
-1.51620083405e-09
-9.5798155785e-10
-7.13471945098e-10
-1.31061238522e-09
-1.34161972032e-09
-7.31664518739e-10
-1.64418412424e-10
1.98771951183e-10
-4.37611101869e-11
-7.48076629125e-10
-1.42965524266e-09
-1.45263101135e-09
-1.3230999802e-09
-1.00285588109e-09
-7.31706129233e-10
-3.95160457531e-10
-2.50246011039e-10
-1.03519046388e-10
1.00616079189e-10
5.98080434936e-11
-2.30081465287e-10
-4.83483653436e-10
-6.96103746273e-10
-1.26740015238e-09
-1.56525632367e-09
-1.51126813768e-09
-1.65852100391e-09
-1.88458350962e-09
-2.00689210259e-09
-1.8225785803e-09
-1.60839359409e-09
-1.2421340066e-09
-5.310066487e-10
-4.15164728767e-11
1.95513838951e-10
3.42634144527e-10
2.71601114537e-10
-6.90518199261e-11
1.71807927856e-10
2.17562953601e-10
2.25145592545e-10
-1.91886843871e-11
3.01345523513e-10
6.99727141463e-10
9.1883508316e-10
1.32332634976e-09
1.77193193928e-09
1.99379316158e-09
2.20792647877e-09
1.86048034007e-09
1.78859434791e-09
2.10262736618e-09
2.53977365872e-09
2.4939723638e-09
1.87461075546e-09
1.69670219191e-09
1.73402080921e-09
1.52915313248e-09
1.06967852206e-09
7.64041717874e-10
7.21788538091e-10
3.5116080169e-10
1.00986232587e-10
2.99726843551e-11
1.33670269406e-11
-1.99101870516e-10
-7.60482273671e-10
-1.3052540548e-09
-1.22986896952e-09
-5.41614889331e-10
2.56560350493e-10
1.05573847733e-09
1.66924782915e-09
2.06381695181e-09
2.12623735079e-09
2.00820669772e-09
1.71438536788e-09
1.53664990346e-09
1.513088835e-09
1.47066857797e-09
1.23981313632e-09
1.15836837735e-09
9.37101772184e-10
6.87269827908e-10
6.51419158415e-10
5.4394253587e-10
3.42797198369e-10
3.64949651039e-10
7.98994320684e-10
1.29694659388e-09
1.65104535582e-09
1.9512245679e-09
2.18216164234e-09
2.08310558608e-09
1.70768491375e-09
1.11863321476e-09
2.91223479793e-10
-3.96308504812e-10
-6.9688831054e-10
-7.85474827813e-10
-7.67879412399e-10
-6.7687249848e-10
-6.35628770213e-10
-4.46975898134e-10
-2.25649577149e-11
3.92364295893e-10
8.30786855326e-10
1.05307879387e-09
1.26516822057e-09
1.30318221221e-09
1.42437229817e-09
1.37598299996e-09
1.11109377449e-09
6.80814589817e-10
-4.38483545805e-11
-6.53978891982e-10
-7.51918770574e-10
-8.12733195088e-10
-3.51046028726e-10
6.31829827444e-10
1.43596309702e-09
2.08195319776e-09
1.76226644632e-09
4.61093396266e-10
-9.98641468659e-10
-1.97429425137e-09
-1.98290921172e-09
-1.43668487497e-09
-6.72081283084e-10
3.46317890814e-11
3.27762469435e-10
4.52676429869e-10
5.45187462544e-10
6.25123444084e-10
8.71734545579e-10
9.47054832831e-10
5.69980328669e-10
1.51845902388e-10
-2.57847840573e-10
-8.40040690275e-10
-1.1249046467e-09
-1.26824549126e-09
-1.30151440433e-09
-8.44688360056e-10
-2.34316418265e-10
8.23044974188e-11
1.54848634186e-10
1.37552221403e-10
3.58918352938e-10
7.640025426e-10
1.20451642638e-09
1.42310259578e-09
1.44554812185e-09
1.19844150608e-09
7.78311470178e-10
8.88634970459e-10
1.4727107744e-09
1.83535903692e-09
1.47647287124e-09
5.68851657266e-10
-2.52065146642e-10
-5.82138004319e-10
-6.34972954953e-10
-4.11765056154e-10
8.20377382887e-12
3.97648352116e-10
7.18358478171e-10
8.17290232344e-10
6.14750678612e-10
1.9705840353e-10
-1.79884810525e-10
-3.96757432274e-10
-2.90470043987e-10
2.09022320394e-10
7.84139903888e-10
1.12792940135e-09
1.37140563391e-09
1.2268603085e-09
7.03920801585e-10
2.84501426324e-10
2.80707565753e-10
8.24168139876e-10
1.59237620106e-09
2.43838762658e-09
2.929487165e-09
2.89267341905e-09
2.26716076332e-09
1.03463549848e-09
-2.04704146429e-10
-9.76173284459e-10
-1.31075807489e-09
-1.67463580573e-09
-2.25749527036e-09
-3.10749833865e-09
-3.30249336992e-09
-2.82620716719e-09
-3.10346434424e-09
-3.23632315608e-09
-2.94854371225e-09
-2.57251550553e-09
-2.4136680288e-09
-2.05445199673e-09
-1.85788810162e-09
-9.19455534794e-10
6.21212904725e-10
1.46571894094e-09
1.83612708405e-09
2.17951021746e-09
1.74041892551e-09
7.26801279073e-10
2.64154000865e-10
3.49769550074e-10
7.05582680228e-10
1.41745119196e-09
1.36419568946e-09
1.04067653746e-09
1.32914377204e-09
1.74162086527e-09
1.25503008322e-09
1.53451876856e-10
-1.3167355864e-09
-1.79618672773e-09
-2.11318118494e-09
-2.73974416152e-09
-3.65371981666e-09
-3.62003585745e-09
-2.62337369303e-09
-2.25643309105e-09
-2.07300387115e-09
-1.57318751667e-09
-8.70643143626e-10
-2.58601699896e-10
-7.03829322027e-11
3.21946847098e-10
6.07158934064e-10
-3.26484190838e-10
-1.04967263616e-09
-6.55578090186e-10
1.82045231584e-09
1.61247332828e-09
-4.51395504295e-10
-3.70065094765e-10
2.68496738785e-09
-1.75905873255e-10
8.53480562049e-10
2.63082843e-09
2.33248394422e-09
1.28958394527e-09
1.95222459617e-09
5.83709038678e-10
-7.52080553867e-12
-1.16330657943e-10
4.45665538165e-10
7.58263894382e-12
-6.02603802632e-10
2.63088433417e-12
3.2969037995e-09
5.5741239261e-09
8.03385339482e-10
1.17612163735e-08
-3.1370314129e-09
2.82767549881e-10
2.27659332222e-09
1.27778731742e-09
4.44820199284e-10
-4.05057931641e-10
9.51086286143e-10
8.16705779611e-10
7.70440840032e-10
9.24427194678e-10
1.48643228463e-09
1.85362106727e-09
2.56915638462e-09
1.47887505668e-09
1.92276415499e-09
2.29285921355e-09
2.420990311e-09
1.68464921748e-09
2.49510437039e-09
2.05164990586e-09
1.9561195713e-09
2.43387135278e-09
1.99915731535e-09
2.81908552593e-09
2.65970653603e-09
3.07254467705e-09
2.7112609846e-09
1.79741789012e-09
1.44277620653e-09
3.68948493583e-10
2.35035549237e-10
2.26594018885e-10
2.72078841119e-10
7.78136134358e-10
8.98620641874e-10
7.62882765043e-10
7.6031540818e-10
9.62154889182e-10
8.46838976709e-10
1.14316328891e-09
1.91578777988e-09
2.56750170576e-09
2.82559349182e-09
2.52013308225e-09
2.21595931573e-09
2.31688583249e-09
2.26164911994e-09
1.43203455821e-09
5.68182924755e-10
3.10579876704e-10
-1.6543739306e-10
-1.08782281482e-09
-1.64893216743e-09
-1.68681910413e-09
-1.4651497348e-09
-1.02591444725e-09
-5.76359333794e-10
-2.57519191789e-10
4.78499499816e-11
2.47859628059e-10
2.19208315101e-10
-1.41638731857e-11
-8.51958443843e-11
2.79699490667e-10
8.29972750785e-10
1.24122450497e-09
1.19657080735e-09
8.61989166823e-10
6.47207657662e-10
6.80354121531e-10
7.82384216346e-10
8.75794798011e-10
8.80212921864e-10
6.46337384248e-10
5.47697644683e-10
6.29594931013e-10
9.12826654949e-10
9.28219784699e-10
3.83844414993e-10
-3.49911428093e-10
-9.60982172066e-10
-1.39748154319e-09
-1.69757006981e-09
-1.8790426436e-09
-1.76820160618e-09
-1.60687147589e-09
-1.49937367752e-09
-1.43799682313e-09
-1.09244126196e-09
-4.08692550017e-10
2.26131538896e-10
6.13443283258e-10
8.8651145886e-10
9.81209742363e-10
7.01549956366e-10
-9.59942439123e-12
-1.10098189517e-09
-2.27627568487e-09
-3.23717527122e-09
-3.81454680939e-09
-3.819344404e-09
-3.2889958999e-09
-2.33861646275e-09
-1.46973430063e-09
-1.00601129058e-09
-6.44833053734e-10
-1.86872408823e-10
2.11798894395e-10
3.48284701318e-10
3.93880908385e-10
4.33220083071e-10
4.76100702509e-10
1.74004919563e-10
-2.07282302962e-10
-3.44201155479e-10
-5.04423366683e-10
-6.26593363885e-10
-1.12738645324e-09
-1.80005078615e-09
-2.10903405869e-09
-2.27081711339e-09
-2.30582006172e-09
-2.30773644729e-09
-2.04829729651e-09
-1.56602934711e-09
-1.25133214913e-09
-1.04917672484e-09
-7.19350353752e-10
-4.18041676173e-10
-4.05929528543e-10
-4.07332215104e-10
-6.74106935908e-11
6.40016824396e-10
1.62974094194e-09
2.56183886699e-09
3.1762630144e-09
3.36217192325e-09
3.21205735621e-09
2.67136319169e-09
2.05365425051e-09
1.63214185683e-09
8.40225343457e-10
-1.07611300784e-10
1.1186933541e-10
6.78072744167e-10
6.98494708525e-10
7.33062970135e-10
9.68631303096e-10
1.45249209795e-09
1.90137043209e-09
1.81389733962e-09
1.33000181642e-09
1.42842111566e-09
1.66623493296e-09
1.28958479231e-09
1.13128958106e-09
1.45324892189e-09
1.61500468624e-09
1.5587553458e-09
1.53563304041e-09
1.59364802103e-09
1.42937953344e-09
1.0307939923e-09
5.94424428977e-10
-6.91987801424e-11
-8.40278918291e-10
-1.19523072182e-09
-1.1073770998e-09
-8.21986765339e-10
-1.99575481047e-10
6.47784248871e-10
1.21594978298e-09
1.54390029373e-09
1.66250989382e-09
1.70274713519e-09
1.86780124584e-09
2.34582323083e-09
2.98761458925e-09
3.38575797918e-09
3.72502897939e-09
4.09185946709e-09
4.1124936132e-09
3.6870598805e-09
3.04954985011e-09
2.38372816698e-09
1.35246597721e-09
2.25320081332e-10
-4.29579535464e-10
-6.87911878882e-10
-7.79261841144e-10
-2.69159965583e-10
4.66199310872e-10
4.91741589397e-10
1.91074539275e-10
1.56040409543e-10
2.90152830148e-10
3.68990421714e-10
7.86917324922e-10
1.68737687532e-09
2.57851567517e-09
3.05056459558e-09
2.92915428105e-09
2.39073270593e-09
1.45987483712e-09
4.25278302157e-10
7.83801937742e-12
2.18922441481e-10
8.40294376642e-10
6.63575775274e-10
4.22463611674e-10
6.90504223217e-10
4.86889784675e-10
1.85942578405e-10
-1.75503744363e-10
-9.65070164828e-11
9.65446565094e-11
-2.67962843331e-11
1.08265871964e-10
5.46398772598e-10
1.06558396479e-09
1.56089664509e-09
1.43080021945e-09
6.73862143386e-10
-2.34932634734e-10
-8.32662609788e-10
-1.06035523041e-09
-7.78659177202e-10
-2.39798839016e-10
3.66381560236e-10
1.07576826543e-09
1.46701532487e-09
1.32147981793e-09
1.13588727589e-09
6.12637754925e-10
-4.55857885619e-10
-1.03308542818e-09
-1.38463290042e-09
-1.57478502081e-09
-2.29881861973e-09
-2.69130742946e-09
-2.62725903316e-09
-2.75440121964e-09
-2.45590596199e-09
-1.66229707679e-09
-9.47921347536e-10
-8.10754526123e-10
-1.07804847812e-09
-8.61287664724e-10
-1.59857140004e-10
4.34426257988e-11
-5.47704632705e-10
-6.73103201865e-10
-4.75255787144e-10
-3.3995794393e-10
-1.83320482038e-10
5.0279875749e-11
8.11468945475e-11
-1.70021005975e-10
-2.99532925945e-10
-2.38240404272e-10
-2.06136479143e-10
-2.8456071863e-10
-3.8389883686e-10
-7.76382776157e-10
-1.21606487358e-09
-1.54892764603e-09
-1.73508177091e-09
-1.59574739219e-09
-1.40982535433e-09
-1.18842449445e-09
-9.07894805613e-10
-5.35002950145e-10
-2.13621709298e-12
1.85218153477e-10
1.93752010421e-10
4.2949229107e-10
5.62377360934e-10
5.68189701018e-11
-8.0342769113e-11
-8.6701445448e-11
5.57025806773e-11
-2.13274425789e-10
-2.77964026037e-10
6.91111122324e-11
2.61378273897e-10
2.68818611305e-10
6.28150316321e-10
8.92729527726e-10
1.22985753458e-09
1.55316662241e-09
1.55204176266e-09
1.4622317063e-09
1.31457141722e-09
1.3165505097e-09
1.0342626981e-09
6.92208916728e-10
5.84735536731e-10
5.63017717842e-10
6.23552621484e-10
6.15466633211e-10
8.13508653751e-10
1.01895395401e-09
9.41499567246e-10
3.3208053752e-10
-2.73844904814e-10
-3.06483625371e-10
-1.43902427409e-10
-5.03887194827e-10
-9.11797086401e-10
-5.284460681e-10
4.89754450102e-12
6.46043040299e-10
1.39913241041e-09
1.84753471202e-09
1.78880907076e-09
1.68928354649e-09
1.58617337879e-09
1.75121436043e-09
2.07532897659e-09
2.33869862495e-09
2.22087464792e-09
1.99096745966e-09
1.61859907056e-09
1.04267087653e-09
5.77272011795e-10
4.9072154997e-10
6.02753939222e-10
5.71215726222e-10
7.36224520611e-10
1.0939954086e-09
1.46909156144e-09
1.79150517663e-09
1.94347453407e-09
1.61369517331e-09
1.02795156149e-09
5.34437555652e-10
4.65148142985e-12
-4.8454477396e-10
-7.03280444677e-10
-9.23698746343e-10
-1.11419984431e-09
-1.0315099469e-09
-8.27576600456e-10
-6.39514110342e-10
-4.36570098377e-10
-4.51166170124e-10
-4.80337984828e-10
-5.95738600595e-10
-3.51924401892e-10
1.32586914267e-10
5.4683938855e-10
8.19644136905e-10
7.92517059736e-10
3.80646442101e-10
-8.19851659977e-11
-6.02712222849e-10
-4.51697259782e-10
5.15501287084e-10
1.44132269799e-09
2.60594853124e-09
3.18319216743e-09
2.7827234603e-09
1.82328648808e-09
1.60443922078e-10
-1.03301703027e-09
-1.38726463178e-09
-1.10472715723e-09
-4.73878035116e-10
5.0281913922e-11
2.76726510901e-10
1.49767071778e-10
-2.9740173811e-11
5.76285218412e-11
2.80464890814e-10
5.10865475763e-10
4.29050986905e-10
-2.05291140261e-10
-9.58723558712e-10
-1.46254129684e-09
-2.25410798561e-09
-2.83770013374e-09
-2.37374884831e-09
-2.17736425949e-09
-1.82691708305e-09
-1.00662666001e-09
-6.40563584163e-10
-3.69444431373e-10
-6.64319470202e-11
4.84988195708e-10
9.88869461305e-10
1.07086394467e-09
8.85791480855e-10
8.95069879759e-10
1.22029749722e-09
1.50143959087e-09
1.88561307817e-09
2.21447658455e-09
2.30342902006e-09
1.93498408756e-09
1.14091314589e-09
3.90470965498e-10
5.44985233428e-11
4.84151327156e-11
2.74314214007e-10
6.59792767313e-10
9.14526173618e-10
9.15263886375e-10
6.50813106342e-10
8.32154813536e-11
-6.06518788914e-10
-9.51388676905e-10
-8.40614555097e-10
-5.94427817109e-10
-2.64616057338e-10
4.07219559722e-11
1.14172417993e-10
1.18152625813e-11
-5.38980616865e-10
-1.23863745459e-09
-1.59248123314e-09
-1.47346632779e-09
-8.44230962265e-10
-5.85697872038e-11
6.64368598113e-10
1.31097999752e-09
1.48538323433e-09
9.91239459491e-10
2.67157579696e-10
5.76719322797e-11
-4.7243516743e-10
-1.01826150457e-09
-8.62552284914e-10
-8.62520097662e-10
-9.23547974479e-10
-1.23573340213e-09
-1.16145793002e-09
-1.06872010428e-09
-1.34176329241e-09
-1.58198141273e-09
-1.72113314998e-09
-1.36928911033e-09
-4.73289188399e-10
2.44777963378e-10
6.2608959104e-10
1.41862157973e-09
1.86900847954e-09
1.35662617953e-09
6.98565859292e-10
1.19473150177e-10
-7.94048071788e-10
-1.36596302371e-09
-1.30504822579e-09
-1.0580542654e-09
-5.38983157964e-10
2.65449961274e-10
-1.64902068237e-10
-9.80249207001e-10
-2.52297233669e-10
2.33957276295e-10
-2.13675072373e-10
-1.37692998279e-09
-2.08063224988e-09
-2.52736504956e-09
-2.6034641836e-09
-2.41003573977e-09
-2.09875790792e-09
-1.41298648129e-09
-4.24741283269e-10
5.17881873182e-10
7.03732760271e-10
9.85609655008e-10
1.84351638772e-09
2.21467606081e-09
2.21528147761e-09
2.59394099218e-09
3.1067303974e-09
1.49993271926e-09
-3.22133353165e-10
-2.42050781985e-10
1.79153821091e-10
1.9062476478e-12
-1.61841526441e-10
-2.124828735e-09
2.97042299679e-09
-9.64728598792e-10
6.32412162595e-10
-1.14547822996e-09
1.73385950237e-10
-7.14844985506e-11
-9.05343542376e-10
-8.49845943672e-10
-1.54578854193e-09
-5.93089081536e-10
-6.06672948911e-10
-4.54798247402e-10
-9.68802403752e-10
-1.30842873428e-10
3.51671986074e-09
5.35297209391e-09
1.08724729828e-08
-1.4332220984e-10
-5.45935350285e-09
1.38634814213e-09
2.28410819853e-09
2.46207913811e-09
1.84447522902e-09
1.06668299004e-09
1.84531717977e-09
1.31483823259e-09
1.3852957037e-09
2.02985177766e-09
1.57531399289e-09
2.00097917734e-09
2.29409154061e-09
1.83025545166e-09
2.04938721616e-09
1.47676001541e-09
8.50046849299e-10
1.03629940206e-09
7.96571277059e-10
6.21393163924e-10
9.34779207843e-10
9.72512831577e-10
1.78549801897e-09
1.42568816385e-09
1.68734447631e-09
1.86872493527e-09
1.37172877698e-09
6.36671044254e-10
3.15367730438e-10
4.93083289585e-10
7.19069985847e-10
8.67538767874e-10
6.95597855845e-10
7.95568919445e-10
9.8779034133e-10
8.26470375427e-10
1.02338181874e-09
1.18474074816e-09
1.24413808655e-09
1.616206626e-09
2.04593439223e-09
2.57341992496e-09
2.69527747289e-09
2.33064588272e-09
2.03508644127e-09
2.04911330688e-09
1.75578579724e-09
1.07327290637e-09
4.96304555884e-10
-1.70614458434e-10
-8.19883847229e-10
-1.25922162576e-09
-1.26470955223e-09
-9.08115457696e-10
-4.87247232579e-10
-1.11776585302e-10
5.95879208064e-11
-3.25709579208e-11
-1.11505746517e-10
-5.34477789717e-12
1.48227801154e-10
2.07109402362e-10
5.02715536503e-10
1.06097547028e-09
1.36736277212e-09
1.24677055246e-09
1.01766895209e-09
8.7400427624e-10
9.9311796681e-10
1.15983025033e-09
1.32128796497e-09
1.19805525906e-09
8.9600775699e-10
8.57015018779e-10
9.17738175493e-10
7.37623395523e-10
5.03342129126e-10
1.46901771075e-10
-6.5269521355e-10
-1.48819284261e-09
-1.83549752681e-09
-1.7053081393e-09
-1.55238438749e-09
-1.35839181971e-09
-1.21064047459e-09
-1.10326464896e-09
-9.38226208422e-10
-6.96952261528e-10
-1.98098136473e-10
3.78922730053e-10
7.45775240608e-10
8.86015097553e-10
8.19527246358e-10
3.40065940631e-10
-6.20931901545e-10
-1.87877244009e-09
-3.14998678183e-09
-4.1432438738e-09
-4.55823496082e-09
-4.43664084014e-09
-3.82105456352e-09
-2.95909604871e-09
-2.05714995548e-09
-1.49271261042e-09
-1.31571448818e-09
-1.30042766106e-09
-1.09676578868e-09
-6.04287280615e-10
-1.78183968367e-10
8.15480969969e-12
1.11138981251e-10
1.97622315715e-10
-3.91691328216e-11
-2.8542786861e-10
-4.42255807036e-10
-4.25666984401e-10
-5.38662555993e-10
-1.03871491503e-09
-1.54136991515e-09
-1.75743591669e-09
-1.6330777753e-09
-1.49752195761e-09
-1.41619832435e-09
-1.18981225205e-09
-8.1391713539e-10
-7.02951795893e-10
-6.91913897799e-10
-5.66399285126e-10
-3.66375207489e-10
4.08981388252e-11
6.84077784246e-10
1.35414987871e-09
2.10879905999e-09
2.97667537049e-09
3.61723895466e-09
3.75798703137e-09
3.69623494138e-09
3.10182194735e-09
1.9736562238e-09
1.23526118127e-09
1.15086874763e-09
6.45839752392e-10
1.64553937696e-10
5.44155988173e-10
7.2935127176e-10
6.40465328341e-10
1.0211388755e-09
1.64374959634e-09
1.88589598717e-09
1.68878379705e-09
1.31273081462e-09
1.1254933346e-09
1.27975243385e-09
1.15787540417e-09
1.01298957151e-09
1.33928190939e-09
1.57364872611e-09
1.58027930002e-09
1.70196405323e-09
1.85971716339e-09
1.6879676808e-09
1.09255031746e-09
4.91827139724e-10
-3.01384910545e-11
-6.86152803209e-10
-9.77454951187e-10
-5.73018424092e-10
3.49972837982e-12
5.26169786168e-10
1.11258113788e-09
1.54589420929e-09
1.69485681152e-09
1.83785206665e-09
1.95295262099e-09
2.05283622844e-09
2.32725224522e-09
3.06421855493e-09
3.75326863434e-09
4.04909870281e-09
3.96997650818e-09
3.69433504648e-09
3.33731192976e-09
2.58521824689e-09
1.7368347056e-09
7.14622215841e-10
-2.81887482649e-10
-6.62454303652e-10
-5.24859730601e-10
-1.41778068777e-10
2.21080681431e-10
5.54162835412e-10
6.11007216502e-10
4.35346135769e-10
2.08032985912e-10
2.92223825704e-10
7.56611333102e-10
1.51519032374e-09
2.29645031561e-09
2.90980889557e-09
2.99498398765e-09
2.32375696376e-09
1.6943022167e-09
1.51780765555e-09
1.02469895497e-09
3.22748352024e-10
-2.83510397775e-10
-8.94991952728e-11
6.33059295767e-10
6.48675195183e-10
2.75370411152e-10
-2.54728218228e-11
-3.37018951361e-10
-5.46799154485e-10
-2.8443578127e-10
4.37353497974e-10
1.14099901385e-09
1.65004545989e-09
1.75796108373e-09
1.61409836099e-09
1.26421086158e-09
5.6509697197e-10
-3.18125669714e-10
-9.57486043576e-10
-1.2893018833e-09
-1.40041820642e-09
-1.07343977186e-09
-4.713674824e-10
-9.52276790951e-11
1.31313823747e-10
1.82298430908e-10
-4.12156067739e-10
-9.64035302324e-10
-9.0336741451e-10
-1.25444817159e-09
-1.62905611581e-09
-2.02099689523e-09
-1.86476759734e-09
-1.33700508482e-09
-1.26668017438e-09
-1.34593365912e-09
-6.78446285696e-10
-2.62523462441e-10
-5.64785475603e-10
-3.49708563702e-10
3.43872506696e-10
8.55847172103e-10
6.37318600942e-10
2.61321946206e-10
3.72346789767e-10
3.55126186433e-10
-2.77797160546e-11
-4.62595820956e-10
-8.46356379688e-10
-8.94360172028e-10
-7.42231042998e-10
-3.8919284572e-10
-1.33542420371e-10
-2.71766338901e-10
-4.9379490314e-10
-7.05237302543e-10
-8.16771848181e-10
-9.13753944268e-10
-1.12063051845e-09
-1.38582044061e-09
-1.70436750921e-09
-2.18646520499e-09
-2.4163558761e-09
-2.10212571091e-09
-1.56409122985e-09
-1.11932354661e-09
-9.50117703968e-10
-4.70743642634e-10
1.45922600988e-10
3.64533334345e-10
7.04698377831e-10
1.20927421044e-09
9.90881164555e-10
4.51672695827e-10
8.0679888226e-12
-3.65061882904e-10
-7.99101893868e-10
-1.00428715501e-09
-6.976713925e-10
-3.26139871945e-10
-1.03354960224e-10
5.06889926625e-11
5.20807524982e-10
1.05953911416e-09
1.37291250552e-09
1.37885274758e-09
1.10450025828e-09
9.51625422614e-10
1.20137573409e-09
1.30902758658e-09
1.02926470079e-09
8.77201455039e-10
9.50671345878e-10
1.05745731893e-09
1.13943846153e-09
7.4645837268e-10
2.41375590847e-10
2.03699141837e-10
2.46753403029e-10
-4.25180893369e-10
-1.25747123218e-09
-1.43928600727e-09
-1.23778025725e-09
-1.16913840127e-09
-9.66423088203e-10
-8.8977338274e-10
-9.67338730819e-10
-7.66912100774e-10
-1.96313438053e-10
3.28490388374e-10
7.04700918929e-10
7.6799460888e-10
9.71936425656e-10
1.53361244331e-09
2.16492388659e-09
2.4688299907e-09
2.60034710236e-09
2.67240970089e-09
2.40818158465e-09
1.98554221364e-09
1.60048400043e-09
1.48666648924e-09
1.48382850535e-09
1.67524365775e-09
2.10064440911e-09
2.40483209874e-09
2.35933531216e-09
2.20268757999e-09
1.80334097976e-09
1.18136892176e-09
6.60232536232e-10
2.15171779591e-10
-2.73764860201e-10
-5.10064606112e-10
-6.72858409343e-10
-7.10633537692e-10
-4.89325004398e-10
-1.71153171388e-10
1.28800676992e-10
2.06637075614e-10
-3.78911718625e-11
-2.49556235052e-10
-3.00992310774e-10
-1.28449158319e-10
3.83553459176e-10
9.31396581768e-10
1.16485580269e-09
7.49680062495e-10
-1.72493177511e-10
-7.68861123585e-10
-7.64158396662e-10
-6.6355714055e-10
1.91861432883e-10
1.21166877259e-09
1.55139547652e-09
1.40786616713e-09
5.33614239628e-10
-5.11374330806e-10
-1.50115308198e-09
-2.18433766998e-09
-2.27034677188e-09
-1.76576469239e-09
-1.20621615681e-09
-8.86898817615e-10
-7.35234127337e-10
-6.36445309974e-10
-4.71577123054e-10
-1.17981101641e-10
3.04076781251e-10
5.54809968583e-10
6.17335823167e-10
1.78086983094e-10
-6.386543719e-10
-9.4002191827e-10
-9.84503006462e-10
-1.49768638789e-09
-1.2495302983e-09
-9.22365516484e-10
-7.58555273716e-10
-3.34006266926e-10
-1.1711162232e-10
-5.81234008406e-11
-2.6374149582e-10
-3.20081045273e-10
5.88349085163e-12
4.35075085225e-10
2.19925328491e-10
-4.98512770777e-11
4.35872143229e-10
1.14677588443e-09
1.65719878548e-09
1.79837207273e-09
1.40210295495e-09
7.93571615755e-10
1.81396764336e-10
-2.39248691117e-11
1.35745923643e-10
3.61456381285e-10
4.98548134403e-10
6.53813164692e-10
6.87425893728e-10
4.15869460179e-10
-2.19205774002e-11
-5.33411798753e-10
-9.4539761287e-10
-9.19497462925e-10
-4.47902975695e-10
9.29788066201e-12
4.05406485698e-10
7.03233010832e-10
5.33607886881e-10
-5.68020294429e-12
-6.15031470034e-10
-9.70078882403e-10
-7.82294219096e-10
-2.63828740213e-10
4.32498411e-10
1.12473778121e-09
1.56072766202e-09
2.01354215826e-09
2.37255876702e-09
2.0203302803e-09
7.91124537571e-10
2.51477305776e-10
2.17975458646e-10
-6.69774362382e-10
-9.09521955905e-10
-9.77963912109e-10
-1.63397314207e-09
-2.24053640021e-09
-2.84600275069e-09
-3.30999892886e-09
-3.50730000733e-09
-3.31781640769e-09
-3.26725542288e-09
-2.48280931659e-09
-9.06084921198e-10
6.1811133477e-10
9.94044303217e-10
8.92425654656e-10
1.06384542966e-09
8.99717973057e-10
3.72542454378e-10
3.91515992396e-10
1.45215328477e-10
-5.23116113279e-10
-1.18183118999e-10
6.56066828197e-10
1.4466729816e-10
5.00331350515e-10
1.00110993443e-09
3.19953143298e-10
-2.29275725196e-10
-7.89206007945e-11
-3.90912481421e-10
-1.19688211843e-09
-2.04536179795e-09
-2.51508053072e-09
-2.57844537144e-09
-2.41605560292e-09
-1.73069922244e-09
-5.37802394035e-10
2.59014204941e-10
9.22241002641e-10
1.57126305782e-09
1.99152438383e-09
2.52769878054e-09
3.19723893831e-09
2.10780549034e-09
6.76213506847e-10
9.47828915066e-10
4.31166769328e-10
6.76492392445e-11
-1.48185703617e-09
-9.59393879411e-10
-2.15161191679e-11
-2.86076907606e-11
-2.05894143016e-09
1.34511500178e-09
-1.79018211117e-09
1.44902603913e-09
-6.09677374775e-10
-2.66758627178e-10
-7.57098377047e-10
-2.18307834375e-09
-1.68867283573e-09
-1.42479073244e-09
-1.24192140133e-09
-2.12820416129e-10
6.35727873068e-10
6.95101494538e-10
3.8368983148e-10
1.10067526924e-09
1.30243174102e-10
2.97012187658e-09
3.50151062184e-08
-4.25000898867e-09
-2.13334395722e-09
9.86595177842e-10
9.96213236958e-10
1.93283008278e-09
1.07137809366e-09
1.11069948066e-09
1.33162473154e-09
1.55916996843e-09
1.59201621206e-09
2.2284865095e-09
1.96500335873e-09
2.48482451385e-09
1.87448539458e-09
1.97957211367e-09
1.78647687142e-09
1.40337826893e-09
1.1933576011e-09
1.13073943316e-09
1.75188266942e-09
1.20696138698e-09
1.7464923635e-09
2.51105034796e-09
2.99218157914e-09
2.68280618329e-09
2.14871379356e-09
2.1287416037e-09
1.63938737666e-09
1.07642090432e-09
6.06432391554e-10
6.09827299606e-10
9.53231397082e-10
5.42151061187e-10
2.30734315931e-10
2.11410106272e-10
1.20706430148e-10
3.04762454422e-12
6.36159012838e-10
1.52284580752e-09
1.99919596123e-09
2.19739912979e-09
2.16920309704e-09
2.08901364089e-09
1.75761877654e-09
1.54123658687e-09
1.70774293551e-09
1.52934255022e-09
6.22748787217e-10
-1.10554740276e-10
-6.03713415793e-10
-1.08421233688e-09
-1.06220430333e-09
-5.64803686812e-10
-3.40604653585e-11
2.74407758208e-10
4.03046651907e-10
4.45300043448e-10
3.164195336e-10
2.59132577795e-10
3.65973078597e-10
5.56466976786e-10
7.86422445922e-10
1.02002545069e-09
1.28514469854e-09
1.41055348503e-09
1.25222699974e-09
9.72652565544e-10
8.73819146601e-10
1.15800097681e-09
1.38884328944e-09
1.43454241101e-09
1.22811539956e-09
8.36980148478e-10
5.17031875619e-10
4.96959735868e-10
4.34309367441e-10
-8.92145922025e-11
-9.35358154862e-10
-1.5416719618e-09
-1.94400964713e-09
-2.16525041779e-09
-2.02595161445e-09
-1.73223235208e-09
-1.39942040161e-09
-1.06276292156e-09
-8.14033390662e-10
-5.40522216829e-10
-1.99917563244e-10
1.65340831304e-10
6.04439323029e-10
9.49774655624e-10
1.05767902981e-09
7.84495657726e-10
4.55491967386e-11
-1.02574249956e-09
-2.25408596275e-09
-3.3788711778e-09
-4.14513275727e-09
-4.2811738719e-09
-3.82931228773e-09
-3.04362993684e-09
-2.24153462854e-09
-1.47148850586e-09
-1.04432555539e-09
-1.00906272677e-09
-1.01432830708e-09
-9.79847289867e-10
-7.03912331256e-10
-2.67377808262e-10
2.24951198484e-10
2.28100255223e-10
5.72566743773e-11
6.16186822974e-11
-3.19454876167e-10
-8.9197122148e-10
-1.27347877845e-09
-1.67846301822e-09
-1.91521253863e-09
-2.01944208684e-09
-2.05446373276e-09
-1.92204489167e-09
-1.71800008098e-09
-1.54999670749e-09
-1.30945226772e-09
-1.1120606626e-09
-1.16092599333e-09
-1.13863378023e-09
-8.25244506994e-10
-3.786000105e-10
1.25589575089e-10
9.38884776538e-10
1.99524243495e-09
2.91974289798e-09
3.69552724536e-09
4.07753359885e-09
3.94274778706e-09
3.42982698585e-09
2.93560613101e-09
2.31296322291e-09
1.50156241065e-09
1.10670190866e-09
1.05063002162e-09
5.96547517059e-10
6.83872378757e-10
1.4228357804e-09
1.58878139323e-09
1.3277055101e-09
1.19850672762e-09
1.63565704356e-09
2.14428338773e-09
1.78830847429e-09
1.40109498575e-09
1.5496594825e-09
1.48125479574e-09
1.19235811545e-09
1.17429344379e-09
1.37236532224e-09
1.51502345825e-09
1.57820237524e-09
1.76910750792e-09
1.75650111657e-09
1.21309538783e-09
3.56366030909e-10
-3.1341108433e-10
-6.88090391076e-10
-8.18814362254e-10
-5.06269263233e-10
1.76759788345e-10
8.48791361183e-10
1.39305774157e-09
1.82713773514e-09
1.89175819632e-09
1.80595111179e-09
1.84180347534e-09
2.1584108385e-09
2.72177838095e-09
3.29420155264e-09
3.80601930519e-09
4.15905924948e-09
4.22962979948e-09
3.90188141197e-09
3.05828360683e-09
2.15597159537e-09
1.39881307899e-09
8.38929383048e-10
3.34874475697e-10
1.97578905277e-10
2.99169495871e-10
4.03400288163e-10
6.37062796992e-10
9.43175421932e-10
6.37093290178e-10
3.54347763154e-11
4.26921546075e-11
4.74368096616e-10
9.64003962105e-10
1.82001630563e-09
2.67577030411e-09
3.09875399402e-09
3.17742217899e-09
2.73790864112e-09
1.51824726565e-09
6.8210292693e-10
5.74273091645e-10
6.22509923926e-10
6.80964091132e-10
1.11674094315e-10
-5.92525804626e-10
-5.24066907763e-10
-6.91349985615e-10
-9.59960015057e-10
-9.75421542718e-10
-8.89746065927e-10
-5.27126708406e-10
3.17679177472e-11
6.04872223039e-10
1.11445392773e-09
1.14536568045e-09
6.87816799434e-10
2.04960585654e-10
-2.53718766713e-10
-9.4821272687e-10
-1.41523831838e-09
-1.24389329403e-09
-7.302520913e-10
-1.80425641062e-10
2.26704133168e-10
-6.14336055985e-11
-7.88966297621e-10
-1.11124285229e-09
-1.28334470058e-09
-1.90512278804e-09
-2.39267156435e-09
-2.63551760439e-09
-2.64176108425e-09
-2.04322049866e-09
-1.73207056879e-09
-1.61447020846e-09
-9.42258085251e-10
-6.09836616969e-10
-6.84872724667e-10
-3.0376464961e-10
4.02208512806e-10
8.94022947036e-10
1.05189548884e-09
1.28584514184e-09
1.53943748889e-09
1.78320637133e-09
1.72123024113e-09
1.441888516e-09
1.19467390353e-09
1.11590322757e-09
8.86409814906e-10
6.86393148808e-10
4.40335477465e-10
7.68830101003e-11
-2.76286569929e-10
-4.86094314858e-10
-6.34573684798e-10
-8.62316386238e-10
-1.07645160926e-09
-1.29413378275e-09
-1.70106153962e-09
-2.25528705547e-09
-2.49272224905e-09
-2.40314978542e-09
-2.37685830626e-09
-2.28392608645e-09
-2.07754057962e-09
-1.64901729424e-09
-1.09724224471e-09
-3.88402722799e-10
6.16244421215e-10
1.1371959418e-09
1.2464403221e-09
1.52962884736e-09
1.47092099379e-09
6.76988541994e-10
3.35840093257e-11
-3.7877534632e-10
-8.50231343663e-10
-1.42119677165e-09
-1.35309108753e-09
-1.04049103724e-09
-6.00074562252e-10
-4.32296817158e-10
-3.63557975906e-10
1.26190121449e-10
5.16019247731e-10
1.10920531454e-09
1.4549575991e-09
1.03108071296e-09
6.26164553456e-10
6.99864678438e-10
8.21423660483e-10
7.55732801117e-10
6.22055173112e-10
4.12870116513e-10
5.99193859745e-10
1.07373792746e-09
9.00891537205e-10
1.49737637383e-10
-8.9006645614e-11
-1.48459464665e-11
-2.36526327224e-10
-4.78899722883e-10
-6.68403016041e-10
-7.27393778619e-10
-5.43863761806e-10
-2.00680739929e-10
-2.3118239636e-10
-4.35405428075e-10
-6.14588471803e-10
-5.56424413381e-10
-1.65017264718e-10
3.84486889484e-10
7.18866697939e-10
1.07130778993e-09
1.59710942117e-09
1.95734829847e-09
1.94759386705e-09
2.03103465917e-09
1.97893196852e-09
1.71481650765e-09
1.37843388979e-09
1.23977607863e-09
1.23366304185e-09
1.21054465399e-09
1.42614196175e-09
1.87627070181e-09
2.10396440768e-09
1.9743798017e-09
1.54253466486e-09
8.1955943361e-10
1.52007262165e-10
-2.4178597831e-10
-6.10678991235e-10
-7.5662234453e-10
-6.91615106927e-10
-5.01224970274e-10
-1.57387191929e-10
1.98451349212e-11
5.85765634674e-11
1.7166816742e-10
1.8031891491e-10
8.57426041517e-11
3.31771794011e-10
7.04918606397e-10
1.02856396631e-09
9.38795414562e-10
7.48570449334e-10
5.1407615415e-10
2.35271871429e-11
-3.85596502644e-10
6.78532683057e-11
7.88846865976e-10
1.15265048144e-09
1.67069244385e-09
1.77315674893e-09
1.36573305426e-09
8.01739554466e-10
-2.17840145133e-10
-1.00374399513e-09
-1.19163114943e-09
-1.09194532417e-09
-6.34176638104e-10
-3.78649575162e-10
-5.1099914815e-10
-5.21559160843e-10
-2.43114973004e-10
1.04447632726e-10
4.21541192794e-10
6.46586835451e-10
6.10771317826e-10
4.95537144033e-10
3.05867832418e-10
-6.40051976263e-11
-3.69964509603e-10
-5.50170769131e-10
-7.64010165896e-10
-8.76268289429e-10
-8.08686918699e-10
-5.69215457917e-10
-4.73901381462e-10
-6.86461758476e-10
-9.32201263068e-10
-9.89322623932e-10
-9.78352700232e-10
-9.20382612355e-10
-6.16943223396e-10
-3.52120066503e-10
-2.73229958895e-10
6.09575730821e-11
8.41061364976e-10
1.26465915377e-09
1.14865079186e-09
5.78071187381e-10
2.99892014975e-12
-3.59643836657e-10
-3.573928466e-10
5.7571135359e-11
5.28933429682e-10
7.02729026228e-10
6.48341067155e-10
4.60018670275e-10
6.74570686446e-11
-4.52401779436e-10
-8.7862092344e-10
-1.08039751224e-09
-9.47621921389e-10
-3.97909397082e-10
1.41164393407e-10
4.17145091798e-10
5.07439651008e-10
3.10852621313e-10
-2.79951165331e-10
-8.34548528645e-10
-1.03926453353e-09
-7.60075697856e-10
-4.11115911279e-10
7.7852492248e-11
7.66414892433e-10
1.27810071961e-09
1.4102666585e-09
1.68868723529e-09
1.66110276033e-09
8.65661742863e-10
-3.94463243536e-12
-1.05015144801e-11
-3.75864094081e-10
-1.10118348901e-09
-9.05274932708e-10
-1.39616991267e-09
-2.47399773871e-09
-3.14821309484e-09
-3.53056503778e-09
-3.32674180562e-09
-2.46544418825e-09
-1.54123436341e-09
-6.24889451233e-10
3.89109585028e-10
1.60995239941e-09
2.31867635426e-09
2.2034729913e-09
2.0784361052e-09
1.73929872444e-09
8.89185965391e-10
8.86734652042e-10
1.39494764413e-09
8.59662208498e-10
4.98405197593e-10
1.63205037728e-09
1.5931588595e-09
5.68012671132e-10
1.70305291408e-10
-1.07321615516e-10
-8.20670740837e-10
-1.07253259957e-09
-1.31272403836e-09
-1.81138165177e-09
-2.8029768651e-09
-3.50421257224e-09
-2.96626279447e-09
-2.20498685093e-09
-2.33497337405e-09
-2.25008966131e-09
-1.89304663931e-09
-1.74189276284e-09
-8.28286837582e-10
1.91552265857e-11
2.67554414632e-10
1.11289329599e-09
9.98699702174e-10
2.34736758365e-10
-8.04731698352e-10
-1.09541344764e-09
-7.43504199692e-10
-7.63118451961e-10
-3.66000914217e-09
-2.40572603613e-10
-1.03779853126e-09
-1.95232708716e-09
4.22319616073e-10
-1.47801023604e-09
9.7775596552e-10
9.19869310389e-11
-7.24110678916e-10
-1.07011347347e-09
-1.54059622996e-09
-1.3729557042e-09
-6.82369742308e-10
-6.16655232194e-10
4.84731544725e-10
1.29753673761e-09
1.43742931105e-09
2.10929415075e-09
2.14285529018e-09
-2.55327409335e-09
-2.19050593331e-08
3.45313284328e-08
9.62988623712e-09
-2.93285157987e-10
2.78572195693e-10
7.67578715703e-10
1.51919594255e-10
9.04417735365e-10
7.03274515446e-10
8.09608067029e-10
2.0700511143e-09
2.24004088594e-09
2.4863068215e-09
2.62217154152e-09
2.57657851082e-09
2.766204412e-09
2.28143909184e-09
2.30434275685e-09
2.56647764293e-09
2.05373886281e-09
1.46132193997e-09
2.16482573665e-09
2.46116328374e-09
2.64728924478e-09
2.48012686912e-09
2.90163227477e-09
3.00389879766e-09
2.47646811031e-09
1.47071135313e-09
9.57472914566e-10
8.43023516798e-10
3.20990758659e-10
3.43311770885e-10
7.22943467514e-10
7.91924136673e-10
3.11127907021e-10
-1.15202410057e-10
2.29526446948e-10
7.15888530097e-10
1.36387127585e-09
2.30370938797e-09
2.58681066883e-09
2.60149313794e-09
2.59656001805e-09
2.79177316031e-09
2.67709421661e-09
1.96149875991e-09
1.64280091944e-09
1.44414712936e-09
5.2108873992e-10
-5.62287575442e-10
-8.38460973828e-10
-5.88687051309e-10
-1.6768330092e-10
2.18079220182e-10
3.86700610091e-10
4.24911113375e-10
3.08094682037e-10
3.07276024693e-10
4.15393004147e-10
4.42275288794e-10
4.08989223307e-10
4.2821687121e-10
6.28395002964e-10
7.24819433734e-10
6.69844136721e-10
4.91732113216e-10
3.55047796181e-10
3.1553143279e-10
5.3107626422e-10
9.04159072679e-10
1.1527201499e-09
1.04573702992e-09
7.55543648072e-10
5.44739593873e-10
3.81190025495e-10
1.85634893687e-10
-3.46300526639e-10
-9.75187761624e-10
-1.65985846893e-09
-2.3565854197e-09
-2.71072269516e-09
-2.5135118257e-09
-1.89954126444e-09
-1.41056989629e-09
-1.33606233715e-09
-1.21122577435e-09
-7.9374525751e-10
-3.02424643488e-10
2.17069133393e-10
6.73240421203e-10
1.0720218387e-09
1.22427177581e-09
1.06077070007e-09
6.14237800163e-10
-2.9467429202e-11
-8.54053156321e-10
-1.90197860174e-09
-3.02992324969e-09
-3.72919214633e-09
-3.85425317286e-09
-3.36253784148e-09
-2.48218007698e-09
-1.70707801464e-09
-1.19556159406e-09
-8.29578562827e-10
-7.48124486487e-10
-8.2497239766e-10
-7.7657335857e-10
-7.25056391201e-10
-7.60337854553e-10
-4.91542113138e-10
-1.95285140055e-10
-5.4227430448e-10
-7.53640576798e-10
-8.90732647553e-10
-1.38862803719e-09
-1.87943767859e-09
-2.14251044189e-09
-2.12055148331e-09
-1.9647052296e-09
-1.75988309413e-09
-1.54386503598e-09
-1.49170675879e-09
-1.71387555993e-09
-1.8261020256e-09
-1.51257045083e-09
-1.20014997154e-09
-1.08506741664e-09
-8.03902453097e-10
-2.69498778762e-10
3.02492406123e-10
1.00312502581e-09
1.84771258894e-09
2.61955611554e-09
3.18786821281e-09
3.39137253707e-09
3.25564482464e-09
2.71873605036e-09
2.07509180737e-09
1.61198586082e-09
1.14499711524e-09
8.50680271125e-10
1.06079865215e-09
1.12223818698e-09
8.18140653423e-10
7.9422806629e-10
1.02271774491e-09
1.49062213311e-09
1.94872719713e-09
1.97628710814e-09
2.1839126712e-09
2.09560609832e-09
1.63790930417e-09
1.40578500717e-09
1.21511873778e-09
9.10314778744e-10
8.32330572872e-10
1.18332493259e-09
1.56114651981e-09
1.54187990839e-09
1.46716143805e-09
1.39042237061e-09
1.00280887076e-09
2.43796622769e-10
-4.42537445491e-10
-8.16202430282e-10
-7.74755731744e-10
-3.230562485e-10
4.50426339785e-10
1.14383450958e-09
1.53555510676e-09
1.77475869999e-09
1.84054912543e-09
1.88136753728e-09
2.22396716521e-09
2.62201611097e-09
3.24135389651e-09
3.71292847847e-09
4.02923620372e-09
4.19137228587e-09
3.93010666735e-09
3.67997402638e-09
2.99013387699e-09
2.01717720015e-09
1.18222548382e-09
7.9156414767e-10
7.06188308785e-10
9.4722423942e-10
1.57242772812e-09
1.69674760082e-09
1.01278204844e-09
4.84081870455e-10
2.99983494534e-10
-1.36873748013e-10
-3.36776911697e-10
3.64607873244e-10
1.2631946338e-09
1.73863761523e-09
1.82387708181e-09
1.61472177724e-09
1.36437102528e-09
1.14533931655e-09
7.39332708011e-10
2.3039211462e-10
2.48204370468e-10
7.74391401698e-11
-1.56917935677e-10
-1.56297060526e-10
-9.84276848665e-10
-2.00955390363e-09
-2.4912992337e-09
-2.39909567398e-09
-1.95162786146e-09
-1.40153840749e-09
-5.85404798638e-10
3.17947581037e-11
3.05266293442e-10
6.65314972143e-10
8.743117492e-10
5.90345118303e-10
1.16472535962e-10
1.70094803721e-11
5.35199885305e-11
1.47289712165e-10
5.67506992463e-10
8.51586172862e-10
7.89077258937e-10
8.53068904036e-10
7.86412493285e-10
-2.10305575309e-10
-1.51475410177e-09
-2.25904110549e-09
-2.55891872091e-09
-2.74345247176e-09
-2.56812088685e-09
-2.9409636144e-09
-3.00403199359e-09
-2.4419180599e-09
-1.62597884511e-09
-1.59329946697e-09
-1.72906868402e-09
-1.44389047837e-09
-1.1508729828e-09
-7.75904202542e-10
-2.5329757958e-10
4.27004555304e-10
1.22489434502e-09
1.51659851602e-09
1.56855848162e-09
1.44606947063e-09
1.29293523113e-09
1.07270242968e-09
6.48393556728e-10
2.19951162996e-10
-2.5738218421e-10
-7.70705537828e-10
-9.78848585083e-10
-9.93470802355e-10
-9.30929443097e-10
-9.74651589769e-10
-1.09409975247e-09
-1.30937635239e-09
-1.4373291494e-09
-1.49478784114e-09
-1.5760187243e-09
-1.5256655802e-09
-1.33084757881e-09
-1.29601758402e-09
-1.3403415476e-09
-1.31829497405e-09
-1.20923524693e-09
-9.44300281686e-10
-3.98268115535e-10
6.38555269045e-10
1.44708802775e-09
1.48436001853e-09
1.25973873938e-09
1.21366353518e-09
5.93841246793e-10
-2.60225462055e-10
-7.64358296438e-10
-1.08356350964e-09
-1.85156743589e-09
-2.24244095379e-09
-2.11608820202e-09
-1.55169913783e-09
-8.72947920276e-10
-6.95231090579e-10
-2.74613163698e-10
6.61287092251e-11
-9.00163088871e-11
1.68716257599e-11
2.1104884672e-11
-4.23070722539e-11
6.66100356974e-11
1.68577648598e-10
3.73839950034e-10
6.55314451182e-10
7.03091768088e-10
3.44081723834e-10
3.23911328261e-10
6.04167848969e-10
4.31753022006e-10
2.23710718732e-10
5.34491342245e-10
7.73847606546e-10
8.55217826624e-10
7.42210925966e-10
4.39413587981e-10
-1.04598404591e-10
-3.02058725254e-10
-4.2652344059e-10
-6.428963129e-10
-8.42257375498e-10
-8.71207267569e-10
-7.45774393575e-10
4.19510007787e-11
8.54755346634e-10
1.41544202981e-09
2.04202702924e-09
2.43510537391e-09
2.50242585849e-09
2.48003793066e-09
2.29690559582e-09
2.06635466252e-09
1.86520763095e-09
1.59437837519e-09
1.46708668739e-09
1.37205848456e-09
1.40022100656e-09
1.5376603873e-09
1.62009482486e-09
1.51478660666e-09
1.27560493703e-09
6.65274711608e-10
-1.42653053812e-10
-8.02287584783e-10
-1.20764494257e-09
-1.19956721287e-09
-8.43538936347e-10
-5.3698161911e-10
-2.04800708185e-10
-1.09844079633e-10
-4.74639147159e-10
-8.51131739686e-10
-6.592779301e-10
-3.15853503833e-10
1.79189819992e-10
6.27058490852e-10
8.95359565027e-10
8.80070620329e-10
6.26146236368e-10
5.06136067302e-10
5.23229192178e-10
4.73809901903e-10
7.14352859363e-10
1.6542223117e-09
2.33269485542e-09
2.68701847814e-09
2.57932670922e-09
1.64793012745e-09
9.19396242488e-10
3.50963443014e-10
6.62839280127e-11
2.95915195288e-11
-6.702285838e-11
-3.44195543886e-11
5.34947921954e-11
-1.64522703356e-10
-4.67478965897e-10
-4.01568791173e-10
-9.99913923904e-11
1.4369935126e-10
2.33122525326e-10
1.40903930776e-10
-5.31191301882e-11
-3.67962970749e-10
-6.11180858256e-10
-7.78680776543e-10
-1.29708696312e-09
-1.17951624894e-09
-1.01122011968e-09
-9.88512013401e-10
-7.30128848006e-10
-6.32769186983e-10
-4.95028924265e-10
-4.82391192692e-10
-4.10131658995e-10
-6.38681476955e-10
-6.51092203698e-10
-1.41329988348e-10
2.3576060944e-10
5.16884915403e-10
7.33627941111e-10
1.13217049532e-09
1.25203836285e-09
9.09811641173e-10
2.27090380192e-10
-2.05103098947e-10
-7.79926762008e-11
2.57918567824e-10
6.74205615246e-10
9.94470996064e-10
9.65881834149e-10
6.34590506343e-10
1.43229512672e-10
-4.11296646934e-10
-8.86979021047e-10
-1.02579438033e-09
-8.06140525901e-10
-5.29040261713e-10
-2.29075401904e-10
-2.18678495993e-11
2.5196689082e-11
-1.40776875834e-10
-4.28031159236e-10
-9.83166388471e-10
-1.4959719932e-09
-1.7076040221e-09
-1.5108086223e-09
-1.18861846499e-09
-7.52278759577e-10
4.49156160941e-11
9.80561762158e-10
1.14192323268e-09
1.03050028363e-09
1.05545895645e-09
9.04909861507e-10
4.82791839276e-10
4.3957706534e-10
9.29726232796e-10
6.60883057535e-10
2.8023238027e-10
-1.02359272994e-10
-1.1299771035e-09
-1.84674527732e-09
-2.16087845723e-09
-1.81553274849e-09
-1.13619496061e-09
-1.95097310499e-10
9.07322211341e-10
1.58826713339e-09
1.92827511017e-09
2.03027508237e-09
1.39219965749e-09
8.23316871764e-10
4.99381403064e-10
-9.32989850742e-11
-4.76149406904e-10
-9.74829043171e-11
1.51703600853e-10
-4.87012604452e-10
-1.11909400068e-09
-1.33974862454e-09
-1.78792222726e-09
-1.84070932053e-09
-1.39978801391e-09
-1.38693513597e-09
-1.37275665146e-09
-1.07292562286e-09
-8.86799450062e-10
-1.16019542741e-09
-1.33234809768e-09
-7.02548608211e-10
5.88984359873e-11
3.06771616573e-10
5.9745299528e-10
7.30701442278e-10
3.10699308349e-10
9.46422099219e-10
1.78607442489e-09
1.28619793107e-09
4.52427402183e-10
5.79037863732e-10
2.16251323082e-10
-4.55701925678e-10
-1.00406523238e-09
-1.88359769562e-09
-1.54251539486e-09
-2.33971125284e-09
-1.53620394061e-09
-1.31341182911e-09
3.35941737211e-11
2.35423913843e-10
-6.25295815289e-10
-3.54220708212e-11
-1.1000340653e-09
-1.49308445788e-09
-1.27509375264e-09
-1.97729423031e-09
-1.21414126176e-09
-7.12982360055e-10
-5.79190117904e-10
4.33207377577e-10
1.50895107905e-09
8.99921684481e-10
5.25958332334e-10
4.4649630808e-09
8.74362550001e-09
-2.13249425612e-08
-2.33450970821e-08
1.07235641672e-08
4.65057425756e-09
1.5940507852e-09
1.4974399013e-09
7.88789691252e-10
1.16682981297e-09
2.26055644743e-09
2.73193451775e-09
1.9896083953e-09
2.47400747959e-09
2.17531486327e-09
2.53195152121e-09
1.46893110163e-09
1.07594063663e-09
1.62538740435e-09
1.01773851467e-09
1.12793022192e-09
9.46448205039e-10
1.0802012653e-09
5.73817282041e-10
1.15514816984e-09
1.63586710774e-09
1.56364674931e-09
1.4580825154e-09
1.29922572131e-09
1.69798426892e-09
1.49636035781e-09
9.60958031627e-10
7.91687814481e-10
8.73083022031e-10
8.08046561791e-10
1.9247299067e-10
2.01537937272e-10
5.51414213498e-10
5.76218726325e-10
8.66784061518e-10
1.49134804034e-09
1.91577592142e-09
2.48918673352e-09
2.96505153736e-09
2.83825578735e-09
2.29229392494e-09
2.04877618776e-09
2.14606046286e-09
1.63111101774e-09
8.8436168924e-10
2.01000918383e-10
-3.84464019594e-10
-7.19787422753e-10
-7.12166667327e-10
-5.21779071772e-10
-7.44368318882e-11
4.63100017318e-10
6.80131881261e-10
4.80506544384e-10
1.92363299904e-10
3.52882396156e-10
8.71237548997e-10
1.23339580296e-09
1.30123382467e-09
1.20079350482e-09
1.19401321783e-09
1.21129004298e-09
1.16700768989e-09
9.98310649354e-10
9.0421418276e-10
8.75191895841e-10
9.95109182451e-10
1.23760052745e-09
1.4596944191e-09
1.40203741578e-09
1.09623914594e-09
6.72897584617e-10
2.11258699133e-10
3.87559925016e-12
-2.38347448061e-10
-9.98454909653e-10
-1.99972959199e-09
-2.51537868632e-09
-2.50475689316e-09
-2.29281400316e-09
-1.92721594841e-09
-1.39464652392e-09
-1.10701022866e-09
-1.01328688008e-09
-7.1678892612e-10
-1.40497354961e-10
3.66085945737e-10
8.07744171029e-10
1.27489131177e-09
1.46302579968e-09
1.13812428991e-09
2.22066627782e-10
-1.01830639732e-09
-2.27133324762e-09
-3.39308184956e-09
-4.2206991076e-09
-4.4280891955e-09
-4.20009926632e-09
-3.61018232317e-09
-2.82629907027e-09
-2.09452613131e-09
-1.69756244651e-09
-1.60906147957e-09
-1.48158852672e-09
-1.23963144776e-09
-8.57904191616e-10
-4.75827110867e-10
-3.39425583723e-10
-4.65720737257e-10
-3.35491539199e-10
-2.56900645979e-10
-5.6824835805e-10
-1.0172954635e-09
-1.31971460127e-09
-1.53496049625e-09
-1.7117004852e-09
-1.6388469167e-09
-1.40035268048e-09
-1.17143182239e-09
-9.62335783655e-10
-8.78869951126e-10
-1.0493792716e-09
-1.35559438752e-09
-1.4187530816e-09
-1.16876591853e-09
-9.73704395176e-10
-7.47295876506e-10
-1.33880333577e-10
6.22782668535e-10
1.38873719856e-09
2.12171165375e-09
2.76026988741e-09
3.09530064069e-09
3.24710419143e-09
3.15037133479e-09
2.65059817899e-09
1.93256919663e-09
1.59738555391e-09
1.56593606761e-09
1.22936159679e-09
9.99091454912e-10
1.03367835125e-09
1.18397079521e-09
1.79328140472e-09
2.31334269367e-09
2.30970976936e-09
1.98343183105e-09
2.19120054268e-09
2.87538886473e-09
2.71079850461e-09
1.99004377023e-09
1.5814664167e-09
1.35179343305e-09
1.12144451711e-09
9.4350237665e-10
1.06134202379e-09
1.45184581181e-09
1.64425103985e-09
1.46930612547e-09
1.16568335388e-09
7.26391315126e-10
1.40661467595e-10
-3.10115914407e-10
-4.99822918988e-10
-3.66625293967e-10
1.72618538387e-10
8.72417942348e-10
1.3134808623e-09
1.56058245377e-09
1.76536521048e-09
1.9384165827e-09
2.0086464137e-09
2.22289577441e-09
2.59503027655e-09
3.07558764291e-09
3.51245039117e-09
3.57925376214e-09
3.54311425441e-09
3.28252583874e-09
2.77508195256e-09
2.23384568696e-09
1.61915091252e-09
1.11334730565e-09
1.20304089499e-09
1.64533439499e-09
1.76479229857e-09
1.87695555441e-09
1.82637413494e-09
1.26182582856e-09
4.55264115523e-10
-1.71776587637e-10
-3.54206308652e-10
-2.51756826649e-10
4.46657413746e-11
6.48176716293e-10
1.08663908627e-09
1.54084441061e-09
8.96600468295e-10
6.87212229668e-10
7.30330441847e-10
8.41867740342e-10
5.28955981934e-10
3.19515227264e-10
4.43478499095e-10
1.22368308791e-10
-4.95606600735e-10
-7.94375873539e-10
-1.05632377709e-09
-1.41667827439e-09
-1.39005369952e-09
-9.73635785507e-10
-7.22722603673e-10
-2.63605229394e-10
5.66225166916e-10
7.53661752621e-10
4.10852484033e-10
1.60296750103e-10
-1.91777153104e-10
-6.13143221837e-10
-5.63806517274e-10
-2.23559099835e-10
-2.75916747403e-11
4.98885465274e-10
1.12360233354e-09
1.01348932095e-09
3.80254265846e-10
-8.03046526303e-11
-7.32525951247e-10
-1.66193285262e-09
-2.28120711069e-09
-2.42535348359e-09
-2.7449085214e-09
-2.77973512806e-09
-2.52193302727e-09
-2.0655288054e-09
-2.21934321235e-09
-2.08410423793e-09
-1.59641824228e-09
-1.06540905248e-09
-9.48860707074e-10
-9.27190216152e-10
-4.84025119247e-10
3.73781240063e-10
1.23445311183e-09
1.83190949525e-09
2.05492607048e-09
2.21107320617e-09
1.98500604178e-09
1.49501950465e-09
1.30121370764e-09
1.16159663167e-09
8.78230017735e-10
4.44054693257e-10
-1.70035511414e-10
-9.16905012711e-10
-1.45752498244e-09
-1.67475131985e-09
-1.54110392033e-09
-1.34130472994e-09
-1.41140168265e-09
-1.52963392956e-09
-1.57919043917e-09
-1.73098297848e-09
-1.81830656963e-09
-1.68186650249e-09
-1.75555243967e-09
-2.04387525513e-09
-2.22523856167e-09
-1.89554708057e-09
-1.14882739823e-09
-3.34909204048e-10
7.68929733254e-10
1.78366165154e-09
2.13700906878e-09
1.72870615392e-09
1.28730457961e-09
7.98918087718e-10
-1.31549298906e-10
-1.0568972184e-09
-1.39678274101e-09
-1.6925386941e-09
-1.95898561316e-09
-1.8319467647e-09
-1.53332529914e-09
-9.34706786526e-10
-5.26762590117e-10
-4.72956092692e-10
-3.37732788378e-10
-3.90422896378e-10
-2.66454754108e-10
-1.48985472126e-10
-1.89087188222e-10
-4.65088850678e-11
1.66138577522e-10
1.78577997506e-10
2.33421210319e-10
2.68359095931e-10
-5.89265998328e-11
-3.10331272534e-10
1.18488474376e-10
4.59245170375e-10
2.7981436951e-10
3.29157850336e-10
6.00476055869e-10
7.57862400765e-10
5.75509759748e-10
1.88551228125e-10
-5.56634477552e-10
-1.07833646933e-09
-1.12388566606e-09
-1.2749590744e-09
-1.22430481009e-09
-8.00012454286e-10
-6.59916592942e-10
-2.14499235431e-10
6.84208650837e-10
1.39005560534e-09
2.14206416141e-09
2.64488240066e-09
2.70743239568e-09
2.56948079824e-09
2.42515231326e-09
2.18394274087e-09
2.01326136684e-09
1.89826563282e-09
1.95233682804e-09
1.88973251703e-09
1.71996768558e-09
1.60219872599e-09
1.40792990635e-09
1.04617356953e-09
7.00234514199e-10
3.11048285924e-10
-2.20970990664e-10
-6.67928254074e-10
-8.11860751152e-10
-6.19506345095e-10
-1.5065666813e-10
2.94255010711e-10
5.42511897222e-10
6.01376451892e-10
6.53299571558e-10
5.57761878405e-10
7.59558160725e-10
1.22235663431e-09
1.63101106785e-09
2.01005068845e-09
1.90557086847e-09
1.24460141358e-09
4.91951653568e-10
1.16605943651e-10
2.80788880916e-10
7.74296534008e-10
1.00030610016e-09
1.15219689529e-09
1.1632621102e-09
9.88693278452e-10
7.25873354479e-10
3.66888085938e-10
9.6416913353e-11
-2.49863072737e-10
-2.91684900991e-10
-1.31863124613e-10
1.53734362344e-11
1.26317864605e-10
2.9604551263e-10
4.37382561792e-10
3.98641233549e-10
4.14436068674e-10
6.30294368469e-10
7.44106373943e-10
5.99160190185e-10
4.57363063166e-10
2.73018624174e-10
-2.4153737414e-10
-5.49847202545e-10
-4.7446127024e-10
-8.04101082323e-10
-7.20665795919e-10
-5.87708728255e-10
-5.28327483487e-10
-3.03584231592e-10
-3.11942752716e-10
-4.1360195298e-10
-6.7263902781e-10
-1.94213643377e-10
4.19293167352e-10
5.58071892463e-10
8.87073888737e-10
1.19570558966e-09
1.36217975105e-09
1.48540271608e-09
1.4008290174e-09
9.61984635559e-10
3.4568303962e-10
-2.4591018173e-10
-4.99519469435e-10
-2.15623671668e-10
1.24271591823e-10
2.74172918323e-10
3.20829504761e-10
1.5240420298e-10
-3.01092075373e-10
-7.93388233122e-10
-1.18919105926e-09
-1.38319167386e-09
-1.20318489059e-09
-6.77571935937e-10
-1.52847942365e-10
2.89086415667e-10
5.46888516461e-10
6.26591775698e-10
5.97469935939e-10
5.87352127384e-10
5.46222748564e-10
5.36120186602e-10
6.86182237604e-10
9.58502483113e-10
1.16912061358e-09
1.14561460226e-09
1.49832928589e-09
2.33601522457e-09
2.55385261685e-09
2.01466701801e-09
1.00420838095e-09
2.11194112871e-10
7.9458466716e-11
-1.12695192533e-10
-9.95661818509e-11
-8.22418169807e-11
-7.11562309319e-10
-1.66124506187e-09
-2.68528079004e-09
-3.25364413282e-09
-3.18199107471e-09
-2.47178782975e-09
-1.33639246825e-09
-1.84750908928e-10
8.43198482042e-10
1.01335746174e-09
6.87833210697e-10
7.8781825034e-10
7.21029808328e-10
5.14546045677e-10
6.45578019211e-10
6.15659121448e-10
-5.71154316334e-12
-6.24912109364e-10
-8.87954803002e-10
-6.79683800832e-10
-1.14607708225e-09
-1.86181992268e-09
-2.11449323898e-09
-1.91552181154e-09
-1.52376483827e-09
-1.16458898731e-09
-1.19540489297e-09
-1.13065176525e-09
-5.17009429246e-10
-2.69995140069e-10
-3.6343388558e-10
2.69984975674e-10
7.7369090545e-10
5.95084691159e-10
8.93776460449e-10
1.5367845817e-09
1.20954949615e-09
9.34481899278e-10
1.96214335199e-09
1.7002356825e-09
3.01630126583e-10
8.48693343589e-10
-4.03867215075e-10
-1.20054659471e-09
-1.71349471274e-09
-3.42614345132e-10
-2.58076518292e-09
-1.60459126319e-09
-1.04124426129e-09
-1.79214045134e-09
1.64198607375e-10
-1.24976365587e-09
-6.26605751742e-10
-2.37584271375e-11
-1.16514972312e-09
-2.43185954365e-09
-9.48892047293e-10
-1.06220049168e-09
-5.14454777877e-10
1.38337420946e-11
2.93034436234e-10
5.03421326706e-10
8.93040388817e-10
4.61218757142e-10
-1.18522440397e-09
7.7970314531e-10
1.27557283448e-08
2.79731654625e-08
-4.00498721745e-08
3.044302481e-09
4.10688244344e-09
2.03535325665e-09
7.44178583502e-10
1.6056686891e-09
1.75947504924e-09
1.64176245705e-09
2.46093564363e-09
2.08234791511e-09
1.99786950763e-09
1.51134818229e-09
1.4167233789e-09
2.18991432315e-09
1.11220254062e-09
1.55511649226e-09
1.31849974427e-09
1.421683895e-09
1.14125543984e-09
1.25008785773e-09
1.40144078695e-09
1.49783620684e-09
1.93031651251e-09
2.04341446921e-09
1.69524051745e-09
1.36069913746e-09
1.29121533073e-09
1.17042377377e-09
1.11490669331e-09
7.46711635531e-10
5.82057747947e-10
3.88124048959e-10
-9.76637458514e-11
-3.802093731e-10
-2.55988603253e-10
7.90942425487e-11
6.52344965427e-10
1.32630282354e-09
1.98120921659e-09
2.24519889307e-09
2.26943674085e-09
2.06576004539e-09
1.65313641546e-09
1.67061324627e-09
1.83481735935e-09
1.28381649793e-09
5.19553069187e-10
-7.40594787102e-11
-4.75838545812e-10
-5.81639737188e-10
-2.19229067408e-10
3.08428413018e-10
6.65331674574e-10
6.20984841104e-10
4.60839286382e-10
3.95786309e-10
4.95972942485e-10
7.70649633653e-10
1.16367292118e-09
1.43608676383e-09
1.39820279175e-09
1.24237879912e-09
1.09065232838e-09
8.78605147451e-10
6.12282212846e-10
3.92299444933e-10
3.70141989475e-10
5.45929463406e-10
8.44804085933e-10
1.16849042107e-09
1.30258791272e-09
1.10654986625e-09
8.00322044829e-10
6.18365391715e-10
4.73160439391e-10
6.78522095145e-11
-7.73087394475e-10
-1.72339059866e-09
-2.68736110296e-09
-3.26976486387e-09
-3.26776586611e-09
-2.80174951436e-09
-2.28641212815e-09
-1.77118993842e-09
-1.31738949583e-09
-9.9188574563e-10
-7.00988373522e-10
-1.56870501831e-11
6.93356606667e-10
1.15226804606e-09
1.38498950129e-09
1.36309285257e-09
1.155171675e-09
5.30116417072e-10
-5.67119051373e-10
-1.81110128386e-09
-3.08719284132e-09
-4.00615497942e-09
-4.19620969103e-09
-3.8287049651e-09
-3.25763281097e-09
-2.59836504526e-09
-1.9681157813e-09
-1.4960363677e-09
-1.30518375106e-09
-1.40691029044e-09
-1.48957138873e-09
-1.48605747255e-09
-1.33170816429e-09
-8.98145032874e-10
-5.64912954062e-10
-7.16893958205e-10
-8.8763314224e-10
-1.17491368366e-09
-1.74621051329e-09
-2.12330280515e-09
-2.11527155638e-09
-1.79024653861e-09
-1.1389543822e-09
-6.11456011615e-10
-5.05011948702e-10
-7.03117761411e-10
-9.38298100343e-10
-1.26076862556e-09
-1.62651522872e-09
-1.6632319894e-09
-1.21297447387e-09
-5.57451440829e-10
-7.40692195891e-11
3.82693297218e-10
1.00042299071e-09
1.71387460701e-09
2.48086844647e-09
3.08389407151e-09
3.24875675271e-09
3.20496091417e-09
3.17130914221e-09
3.01470122059e-09
2.51466802568e-09
1.7137661868e-09
1.3868512797e-09
1.4172851735e-09
1.31376250075e-09
1.42079612507e-09
1.48374846074e-09
1.47130554674e-09
1.58730416777e-09
2.31577198417e-09
2.63298328182e-09
2.12817451514e-09
2.06414475356e-09
2.16683818105e-09
1.65122127397e-09
8.64034592572e-10
5.29088966107e-10
6.51644469179e-10
8.86142152495e-10
1.16934804193e-09
1.47102221422e-09
1.66081688671e-09
1.49080339816e-09
1.23078376511e-09
7.77015509768e-10
7.50666008845e-11
-4.45141860045e-10
-4.10383863055e-10
-1.31743481209e-10
1.92819321267e-10
8.00614271195e-10
1.35718336839e-09
1.63627809077e-09
1.67085300953e-09
1.72958696231e-09
2.03708385084e-09
2.36668480529e-09
2.83254085606e-09
3.16746128329e-09
3.44881322936e-09
3.65177227616e-09
3.33706671373e-09
2.7562049763e-09
2.137798927e-09
1.76112591646e-09
1.75316888895e-09
1.8600619058e-09
2.07973100682e-09
2.43090747862e-09
2.52747346977e-09
2.38942658113e-09
2.04398028722e-09
1.10549403968e-09
3.17008856773e-10
1.71298014022e-10
-1.9142097575e-11
-3.8175859636e-10
-2.03338729318e-10
1.7761433871e-10
5.17918295599e-11
2.37912073126e-10
3.64064925125e-10
-2.06882715169e-10
-2.9221704944e-10
-9.72139713564e-11
2.17158071852e-10
3.25567277673e-10
2.12036910653e-10
1.37918139637e-10
-3.30410612065e-10
-7.41496030158e-10
-9.89509394697e-10
-1.2053833646e-09
-1.01387726204e-09
-4.18940589888e-10
-9.77031328834e-11
-2.62327268435e-10
-1.99357992103e-10
-5.79531008961e-11
-2.29918782021e-10
-2.69450709642e-10
-3.92235017489e-10
-8.02029451492e-10
-9.93599928557e-10
-7.18687550471e-10
-4.82998091799e-10
-2.5943941548e-10
1.7047554503e-10
1.61026892504e-10
-2.95028351792e-10
-5.6627032436e-10
-8.23415974619e-10
-1.45833069606e-09
-2.220336782e-09
-2.71066975561e-09
-2.80900604562e-09
-2.63016943836e-09
-2.36837865942e-09
-2.13662536286e-09
-1.66974673156e-09
-9.77427740253e-10
-6.40900703276e-10
-6.78698701515e-10
-6.47653249932e-10
-1.73402043863e-10
3.46709220036e-10
5.85788504563e-10
9.93191870435e-10
1.51443053519e-09
1.8940668905e-09
2.08434479529e-09
2.07925158617e-09
1.83772988214e-09
1.31518085742e-09
8.48554218428e-10
5.42536461178e-10
2.20322798702e-10
3.3361663177e-11
-3.48275383956e-10
-8.16090701342e-10
-1.37138797857e-09
-1.63319673049e-09
-1.46543624369e-09
-1.39773607659e-09
-1.44766464543e-09
-1.22602809862e-09
-1.04486511538e-09
-1.29610016974e-09
-1.5628943723e-09
-1.74876304708e-09
-1.90874724202e-09
-2.03713117881e-09
-1.78514904139e-09
-1.10190685515e-09
-4.09291402311e-10
3.4506936425e-10
8.78916114422e-10
9.98509543278e-10
6.72534842757e-10
9.54758597486e-11
-3.2006579868e-10
-6.10346530803e-10
-1.05853283902e-09
-1.28387917837e-09
-1.38882063131e-09
-1.75100006109e-09
-1.790254956e-09
-1.21697628103e-09
-6.73391193067e-10
-3.86620988994e-10
-1.34410576202e-10
1.10155787757e-10
2.14190491922e-10
5.43917971915e-11
3.36934883341e-11
2.81542422602e-10
3.82053469705e-10
3.90149291501e-10
8.87836641906e-11
-4.89889975374e-11
1.71717930606e-10
2.01961453746e-10
-2.6092384072e-10
-3.8456778113e-10
4.75321008681e-11
3.19114157164e-10
3.36756582906e-10
3.71996541643e-10
4.25075861283e-10
4.4920782995e-10
5.10017172267e-10
1.33926073356e-10
-6.07266719007e-10
-8.07677255426e-10
-1.08045489873e-09
-1.42893102949e-09
-1.22795806319e-09
-7.32904574974e-10
-2.64994257549e-10
3.60948690912e-10
8.62579389968e-10
1.35639112789e-09
1.77474917087e-09
2.03737597133e-09
1.98907476454e-09
1.86690635553e-09
1.7588723853e-09
1.75414509442e-09
1.71435868634e-09
1.72542496004e-09
1.78283050046e-09
1.75281202338e-09
1.62587156971e-09
1.34722199623e-09
8.95012281519e-10
4.04691378133e-10
1.73209767384e-11
-3.5978402061e-10
-5.50021267816e-10
-6.15526560792e-10
-5.77878910902e-10
-3.5694730727e-10
-4.04483643302e-11
2.54601163286e-11
8.51335874626e-11
3.35881597871e-10
7.72582139322e-10
1.38979980139e-09
2.08414913067e-09
2.28750056549e-09
2.0318711042e-09
1.67817132125e-09
1.16449327259e-09
7.41900064874e-10
7.23217906189e-10
9.27441784937e-10
1.23629710256e-09
1.62159460257e-09
1.58241594063e-09
1.20360840706e-09
9.4293317051e-10
7.13159813457e-10
4.74008531129e-10
4.2340085363e-10
3.64204262045e-10
5.98968125464e-10
9.65525868553e-10
1.0887376104e-09
1.08584578698e-09
1.05687827927e-09
1.08606712728e-09
1.08144899777e-09
1.00807529811e-09
1.09198936989e-09
1.13124955875e-09
7.32721192341e-10
4.64089351801e-10
5.83790777357e-10
3.57020575619e-10
2.62596307275e-10
1.95198742695e-10
-2.08481913374e-10
-3.20474068561e-10
-4.29218699428e-10
-4.17339909376e-10
-5.66715016657e-10
-8.93806953635e-10
-1.04839639574e-09
-1.14504624315e-09
-8.46363791226e-10
-1.92776228466e-10
2.70344117643e-10
5.69522083844e-10
8.85893971841e-10
8.35062677644e-10
7.59654722481e-10
3.98489191135e-10
-4.58837747528e-12
-3.19084511011e-10
-3.98801746292e-10
-3.0728957722e-10
1.56438091512e-10
6.17553934151e-10
6.35573289555e-10
2.71590738383e-10
-2.348790599e-10
-8.17308575902e-10
-1.21453282921e-09
-1.28947160753e-09
-1.15616439762e-09
-8.52192013178e-10
-3.61683068478e-10
8.22333466512e-11
3.42964910893e-10
6.8237905967e-10
9.62418316428e-10
1.19980946429e-09
1.13825049782e-09
9.97274569241e-10
9.19660093251e-10
9.68611821338e-10
1.15156585575e-09
1.68558624767e-09
1.85850887089e-09
2.05522973179e-09
2.47089759813e-09
1.92606059547e-09
8.85921076896e-10
2.1163372297e-10
-6.31235210315e-10
-1.11879838618e-09
-1.04389018046e-09
-1.04203433127e-09
-1.14196643136e-09
-1.47408127371e-09
-1.97675721142e-09
-2.27511313215e-09
-2.55858371938e-09
-2.38915553059e-09
-1.67079112318e-09
-7.2057325757e-10
5.93946914153e-11
1.12126754016e-09
1.7493930543e-09
1.50178518032e-09
1.32163270738e-09
1.3797749547e-09
1.2146861157e-09
1.52832992233e-09
2.089787829e-09
1.95567371433e-09
1.35242913128e-09
5.63844421999e-10
4.00980315033e-10
5.57461181708e-10
5.57517085883e-12
-8.36791471889e-10
-1.12295477686e-09
-1.48583809102e-09
-1.40756801153e-09
-1.31599951477e-09
-1.81046346805e-09
-1.71753463638e-09
-1.05061223393e-09
-1.21674588807e-09
-1.60685792336e-09
-1.65975089575e-09
-2.10034016546e-09
-2.29298933899e-09
-1.05991265569e-09
-2.28154253574e-10
-7.18867544972e-10
5.75304777775e-12
-4.06622401494e-10
-1.80167211309e-09
-1.81652695341e-09
-1.31888599129e-09
-1.2317856992e-09
-1.80124261445e-09
-1.87392127064e-09
-2.6576901741e-09
-1.25219516983e-09
-2.98502669184e-10
-1.90770200337e-09
1.1363836372e-09
-2.9178590967e-10
-4.15298983489e-10
-8.47016430112e-10
-6.90871412e-10
-8.51938962085e-10
-4.21176968627e-10
7.09178335089e-11
4.91070739302e-10
8.36441647282e-10
1.40939421456e-09
5.97776561866e-10
9.47161558982e-10
2.50727681618e-10
-2.12378095524e-09
-5.6031644507e-09
-4.4913481571e-09
4.08835590589e-08
-9.56971227539e-09
-1.40869287128e-09
1.1559221462e-09
2.02506095931e-09
9.36167071327e-10
1.26269869601e-09
1.91112825164e-09
2.75515253786e-09
2.26218529179e-09
2.6743815936e-09
1.5734606848e-09
2.51021686754e-09
1.80878401348e-09
2.50776873056e-09
2.79343366252e-09
2.30814011143e-09
2.6022896136e-09
2.4292471617e-09
2.70404264924e-09
2.45306718401e-09
2.57796711546e-09
1.74461417382e-09
1.48431025534e-09
2.26193266422e-09
2.3579133556e-09
1.84175540622e-09
1.39847214822e-09
1.2777225194e-09
7.54050328986e-10
2.87877276135e-10
-2.28163994452e-10
-7.22216713246e-10
-7.97878778292e-10
-5.67086864121e-10
-1.54043105854e-10
4.45934047609e-10
1.23279970352e-09
1.94188232389e-09
2.55936426024e-09
2.72997363647e-09
2.81108127634e-09
2.93966087773e-09
2.62615111406e-09
2.10527836754e-09
1.73597539067e-09
9.61731372708e-10
2.32222552819e-11
-3.63555011291e-10
-1.5241256743e-10
1.21362880683e-11
2.89151637204e-11
2.12696749319e-10
4.46473607597e-10
3.31667608959e-10
1.89846341501e-10
1.91292650258e-10
4.48091017009e-10
9.817505729e-10
1.5433711099e-09
1.82010820871e-09
1.61740962454e-09
1.1573940777e-09
6.75132481048e-10
4.0916784138e-10
3.39331668945e-10
1.90465257888e-10
1.79665984857e-10
4.37981705254e-10
8.15118889854e-10
1.07565291013e-09
1.09143350451e-09
9.55464917085e-10
8.13404468699e-10
6.88864790948e-10
3.12046302494e-10
-3.59026349639e-10
-1.28127285799e-09
-2.25966367471e-09
-3.08065925268e-09
-3.38157617752e-09
-3.14850066252e-09
-2.74390817549e-09
-2.3965137058e-09
-2.02477720327e-09
-1.51451185035e-09
-8.98034495074e-10
-3.41898072896e-10
3.60313416202e-10
1.05150670072e-09
1.49964388103e-09
1.66833472764e-09
1.52839302629e-09
1.07402337756e-09
1.90345243907e-10
-1.038093934e-09
-2.22717403195e-09
-3.34464172937e-09
-4.13840053941e-09
-4.49009539537e-09
-3.98043058881e-09
-3.02737029239e-09
-2.14828985357e-09
-1.48669782946e-09
-1.05776203904e-09
-8.77825559502e-10
-8.63255745777e-10
-8.10848123264e-10
-6.80448248067e-10
-6.98737383464e-10
-8.48698214029e-10
-8.62324433051e-10
-9.16970551885e-10
-1.09589546232e-09
-1.36733924049e-09
-1.92983349197e-09
-2.29831654095e-09
-2.15938937331e-09
-1.88482147294e-09
-1.37179050451e-09
-6.93880261625e-10
-3.95666347959e-10
-7.22621171478e-10
-1.13450036532e-09
-1.20926870473e-09
-1.23202360958e-09
-1.34341098325e-09
-1.40479291983e-09
-1.30571865237e-09
-8.85883807446e-10
-6.41508872933e-11
9.04316091411e-10
1.49641965011e-09
1.77952601317e-09
2.0278629443e-09
2.2079400313e-09
2.28194148825e-09
2.37504819685e-09
2.35764759901e-09
2.0233973866e-09
1.50621008043e-09
9.20867962234e-10
1.02472944816e-09
1.33621395605e-09
1.04707502434e-09
1.02397050664e-09
1.3848819281e-09
1.88849214316e-09
2.3413066394e-09
2.44417116754e-09
2.27005507491e-09
2.11325572384e-09
1.69484177669e-09
1.17679981428e-09
8.45167780704e-10
8.49075990723e-10
1.04656087534e-09
1.18173547526e-09
1.42674526097e-09
1.78434520713e-09
2.03559127291e-09
1.78642975521e-09
1.31850419119e-09
9.02754162657e-10
3.69354222364e-10
-1.34162819065e-10
-2.36427436128e-10
1.65683032615e-10
6.49332386871e-10
1.05131897704e-09
1.31279593028e-09
1.56234497879e-09
1.89453121014e-09
2.15349799447e-09
2.49721078251e-09
2.87461393546e-09
3.27118533812e-09
3.58323291116e-09
3.48452138556e-09
3.24770558482e-09
2.93617449012e-09
2.43093585423e-09
1.81828327622e-09
1.4994168762e-09
1.50382187104e-09
1.85216755873e-09
2.42780310287e-09
2.77664176374e-09
2.45878841511e-09
1.68110290228e-09
1.3269033699e-09
9.71688245003e-10
1.79518468775e-10
-2.33744671025e-10
2.48761718147e-10
2.95521324968e-10
-4.78980191013e-11
8.24340934597e-11
2.37029464795e-10
-5.53912113659e-10
-3.20836598662e-10
-3.61688150675e-10
-4.02814988396e-11
4.04674225715e-10
6.91575296379e-10
8.84635280882e-10
8.5697287889e-10
4.82813438616e-10
-1.98372151632e-10
-4.56690942523e-10
-3.76980907021e-10
-6.17367586903e-10
-8.24183174711e-10
-4.46405209686e-10
-6.3022215891e-11
-8.4006292489e-11
8.20563167653e-14
1.3941867091e-10
-1.81712337048e-10
-4.2626043686e-10
-3.18187820757e-10
-3.76130062426e-10
-4.79744638248e-10
-2.1170826187e-10
2.14845671906e-11
1.97954987905e-10
6.66650504873e-10
8.17788287717e-10
1.67174657635e-10
-6.26372394165e-10
-1.03925098101e-09
-1.44883376265e-09
-1.94102089138e-09
-2.4000178811e-09
-3.21977806152e-09
-3.93965781086e-09
-3.52110071514e-09
-2.59614412487e-09
-2.22471594234e-09
-2.53347554524e-09
-2.17022038361e-09
-1.0614169862e-09
-2.47396301036e-10
-7.32387037843e-11
-1.40861579128e-11
2.19689853332e-10
5.26712191657e-10
8.57942731615e-10
1.1513693441e-09
1.40790809526e-09
1.45136554413e-09
1.22729314233e-09
6.98018676009e-10
2.48786493861e-10
-7.15255796485e-12
-2.28874866853e-10
-3.47787810615e-10
-6.29047112454e-10
-1.06228601554e-09
-1.45753935553e-09
-1.70674693064e-09
-1.6303105716e-09
-1.26940042069e-09
-8.54653279164e-10
-4.57741051619e-10
-2.40601402733e-10
-3.83376852806e-10
-6.15388917938e-10
-9.4037131936e-10
-1.28842859233e-09
-1.56455709797e-09
-1.25906788928e-09
-4.07154338185e-10
1.63282541242e-10
3.89239591351e-10
5.62959272569e-10
6.17046561416e-10
4.54376424994e-10
3.11977481067e-10
2.17379147452e-10
3.50713991811e-11
-7.98669060032e-10
-1.37972265042e-09
-1.66755376326e-09
-1.73045697102e-09
-1.79268424649e-09
-1.48946932126e-09
-7.59249840733e-10
-1.45441486274e-10
-9.599212633e-11
-4.01620671941e-10
-4.59279051693e-10
-2.15677034744e-10
-1.62316288408e-10
-1.11329669543e-10
1.81597828782e-10
6.29305047222e-10
6.84503206544e-10
4.72950481099e-10
6.06406557049e-10
1.03695319238e-09
1.29400588077e-09
1.19278163193e-09
1.17468223191e-09
1.41592653265e-09
1.49289133437e-09
1.56326621976e-09
1.44393452409e-09
9.90010414685e-10
8.37122661771e-10
7.65647480583e-10
2.08075337559e-10
-3.48291477581e-11
-3.15394411976e-10
-5.08484889665e-10
-8.79029616837e-10
-8.50371104099e-10
-3.2264077884e-10
6.38018250157e-10
1.18415206026e-09
1.23096079499e-09
1.08042440554e-09
9.66564542705e-10
1.11035389122e-09
1.43836951762e-09
1.66674865844e-09
1.80361774777e-09
1.79147637751e-09
1.73102660068e-09
1.7650031039e-09
1.77011076551e-09
1.70704794167e-09
1.52602991025e-09
1.03024807957e-09
4.11419149074e-10
-6.72065586505e-11
-4.10541199425e-10
-4.95008595474e-10
-2.9332200392e-10
-7.37249006961e-11
-4.59633958498e-11
-9.47702813035e-11
-3.28689441116e-10
-2.95446786068e-10
2.82611695818e-10
1.01666992967e-09
1.58554996254e-09
1.8904369308e-09
1.86463207206e-09
1.54981533656e-09
1.42695744272e-09
1.2961764027e-09
1.04331419806e-09
1.02403911631e-09
1.27258653512e-09
1.45268691553e-09
1.58813680116e-09
1.49219676735e-09
1.17578676287e-09
7.09986828037e-10
4.070493061e-10
5.64503413632e-10
9.9920580436e-10
1.19007218529e-09
1.32829864492e-09
1.77900635846e-09
2.24308798108e-09
2.43746086666e-09
2.40784846247e-09
2.2970712437e-09
2.03148242196e-09
1.50790689919e-09
1.15857314756e-09
1.21322456035e-09
9.67636886416e-10
3.37614627281e-10
2.58764330221e-11
-3.66482357157e-10
-4.40978904868e-10
-4.60723242868e-10
-3.40500468533e-10
-5.98149256363e-11
-1.91570053549e-10
-4.25129224359e-10
-7.18318667623e-10
-8.36594960245e-10
-9.00911865996e-10
-7.25544705696e-10
-5.1901943843e-11
8.78375707402e-10
1.54517274897e-09
1.66953497332e-09
1.72953963434e-09
1.47503079765e-09
1.27333615928e-09
8.34519729524e-10
3.36218716984e-10
-1.022000308e-10
-1.2963203983e-10
1.27291687797e-10
6.02151910555e-10
9.51159554493e-10
7.63425924921e-10
1.49478868817e-10
-5.7829586287e-10
-1.13027708552e-09
-1.37926938191e-09
-1.24291920614e-09
-8.42485227361e-10
-4.58573473248e-10
-1.5185056107e-10
8.62398124917e-11
1.39411035206e-10
3.62324272419e-10
5.41467505598e-10
5.49333053546e-10
2.63990523506e-10
4.27887163635e-11
1.54362437275e-10
3.19954837364e-10
4.26504805865e-10
1.03777883775e-09
1.52703946764e-09
1.6847874956e-09
1.80199483265e-09
1.37140478688e-09
1.73347833754e-10
-5.86261995981e-10
-9.20022623352e-10
-1.16748838109e-09
-8.6362039346e-10
-1.51623979756e-10
3.17563663354e-10
-1.87317101121e-11
-7.38952813734e-10
-1.02520759826e-09
-1.06749614167e-09
-1.10411549356e-09
-6.13024001949e-10
4.73069171591e-10
1.28041703708e-09
1.56289320763e-09
1.62697770871e-09
1.22042656387e-09
7.19465020837e-10
7.0389856697e-10
7.06170944609e-10
5.83134326823e-10
4.60534778037e-10
4.51383857592e-10
5.04731686676e-10
3.87011047666e-10
1.45850603188e-10
-4.20712794572e-11
-2.06374495401e-10
-8.74808851661e-10
-1.22065833326e-09
-1.38751281244e-09
-1.49654374044e-09
-1.35527897363e-09
-1.31464934425e-09
-1.12512995746e-09
-5.68469221891e-10
-6.44797054834e-10
-1.07276383957e-09
-9.8028647645e-10
-1.26092289144e-09
-1.88420615644e-09
-6.1166197297e-10
6.28450165985e-10
1.43352703026e-10
1.23761254473e-10
3.45101127986e-10
6.72985887802e-10
1.1310748582e-10
-4.9335052848e-10
-1.80983624016e-09
-7.91888561289e-10
-1.55780179846e-09
-1.62439420528e-09
-1.56986693576e-09
1.79062341533e-10
-1.38753165892e-09
1.6350742849e-10
-1.45849290287e-09
-1.2063807459e-09
-1.10891732334e-09
-1.88018105588e-09
-6.53396980347e-10
-2.12292714603e-10
-1.02882315839e-10
1.29666344665e-10
8.29792438646e-10
1.53865737154e-09
-1.96228734759e-10
2.92764232724e-10
1.39664552167e-09
1.94704583673e-09
-6.99269743672e-10
-1.22748076013e-08
2.00077556121e-08
2.15411777906e-08
-4.19601656752e-09
-1.1619098221e-09
1.8296690931e-09
2.45599659452e-09
2.53078409805e-09
1.65891318016e-09
2.11659006904e-09
1.340351712e-09
2.0254747349e-09
1.25544216475e-09
1.63391533207e-09
1.81421984742e-09
1.4144046262e-09
2.1466387746e-09
1.11708388562e-09
1.39562977035e-09
1.69227275223e-09
1.27301275151e-09
1.48392268483e-09
1.70658737081e-09
1.51133844141e-09
9.97110668365e-10
5.99942425112e-10
9.32810703273e-10
1.43390226586e-09
1.04981305834e-09
1.10343744368e-09
8.74338748375e-10
4.51282213638e-10
1.03927554496e-10
-1.81205758406e-10
-1.72262784549e-10
-5.01723025647e-11
3.13879070033e-10
1.17754096811e-09
1.80069633114e-09
2.10373253242e-09
2.40971386725e-09
2.52093522245e-09
2.75101224082e-09
3.07768489649e-09
2.7390673822e-09
1.81734730482e-09
1.11073124439e-09
7.06946403273e-10
2.31957431507e-10
-4.22728732986e-11
2.11436364294e-11
2.80887136738e-10
5.67969472452e-10
7.13553260261e-10
4.71621168768e-10
5.9890735085e-11
-1.7849821759e-10
2.3181174184e-11
7.19366023862e-10
1.49631461803e-09
1.94076212281e-09
1.8953857208e-09
1.55100118268e-09
1.28547181207e-09
9.86182884555e-10
5.85648955885e-10
4.04918065325e-10
4.1190852236e-10
4.91814275411e-10
6.54767267898e-10
8.66778661683e-10
1.09647769159e-09
1.23182053343e-09
1.21372970963e-09
9.65833553271e-10
7.14515066173e-10
4.0572814646e-10
-4.27266076726e-10
-1.60253953763e-09
-2.73562292272e-09
-3.61456995384e-09
-4.05554928222e-09
-3.88608594157e-09
-3.24369996602e-09
-2.55137843361e-09
-2.02079106622e-09
-1.54828220692e-09
-1.15106949444e-09
-6.33561162788e-10
1.57777674118e-10
1.0227355326e-09
1.63585016708e-09
1.66532606661e-09
1.18168973548e-09
4.66013810657e-10
-4.66954017228e-10
-1.51526994484e-09
-2.50345246242e-09
-3.30924422251e-09
-3.80400040216e-09
-4.19265723485e-09
-4.14887494884e-09
-3.52844787893e-09
-2.67899495854e-09
-1.82736262239e-09
-1.05603239776e-09
-7.12000225352e-10
-7.89383037831e-10
-1.11941672023e-09
-1.2600839053e-09
-1.0135291315e-09
-5.18294378227e-10
-4.2540408655e-10
-8.27303008814e-10
-1.41671279098e-09
-1.84800502707e-09
-2.06287674524e-09
-2.01897174533e-09
-1.51442926464e-09
-7.59806870775e-10
-6.92473257182e-11
4.02579751465e-10
4.86436780867e-10
9.53191586534e-11
-6.3920568447e-10
-1.28384857931e-09
-1.57875400544e-09
-1.57979098553e-09
-1.21519857064e-09
-6.43997455732e-10
-2.79339607543e-10
1.16458559918e-11
4.92969363654e-10
1.15782881736e-09
1.74584925374e-09
2.1605252445e-09
2.43725302595e-09
2.34787199177e-09
2.01804922057e-09
2.03404120261e-09
1.9703756652e-09
1.65151180627e-09
9.95686382464e-10
3.14545684963e-10
6.35193395278e-10
1.1526957977e-09
1.44431060671e-09
1.34220756119e-09
1.30797980682e-09
1.98327767105e-09
2.47194537788e-09
1.97564759826e-09
1.27308628456e-09
9.95540692798e-10
7.77162046468e-10
4.71053656693e-10
5.10858275983e-10
1.12209419138e-09
1.78466962074e-09
2.05333407205e-09
2.12079643465e-09
2.32384336112e-09
2.26611001895e-09
1.63754380945e-09
9.85754074125e-10
5.42810899853e-10
4.4182170265e-10
6.22247767228e-10
8.51921597909e-10
9.82118502836e-10
1.07539080637e-09
1.28108719896e-09
1.55117270686e-09
1.89422877967e-09
2.43237660433e-09
2.97149798748e-09
3.35053834924e-09
3.60326566388e-09
3.57935350027e-09
3.28223001248e-09
2.73839039111e-09
2.21787233964e-09
1.85224209763e-09
1.53686335576e-09
1.63286141132e-09
2.07227542282e-09
2.46759501667e-09
2.6691473535e-09
2.86759192645e-09
2.62324917919e-09
1.89463652015e-09
1.21118596381e-09
8.45110182464e-10
4.80372713179e-10
7.59695380063e-11
2.09179021489e-10
5.45364704189e-10
2.83598489202e-10
-5.73373542655e-11
9.79771480419e-11
2.2942649706e-10
5.60269942961e-11
2.16050152757e-10
5.3607359979e-10
9.15613816862e-10
9.31766735166e-10
4.98356069682e-10
5.07699690123e-10
7.38702515498e-10
4.26761456848e-10
2.93938643906e-10
5.89133014156e-10
6.52686319704e-10
1.43769231478e-10
-2.90517266073e-10
-3.25022847246e-10
-4.41309459475e-10
-5.26257493783e-10
-1.33650526259e-10
1.37099164656e-11
-4.34068386568e-10
-8.09893517132e-10
-1.03559518681e-09
-1.11463119584e-09
-6.09372019397e-10
-1.36436679012e-10
-5.42291668656e-11
1.24427022369e-10
3.69701929389e-10
3.84954028154e-10
-1.00680030177e-10
-8.34001345361e-10
-1.33856277841e-09
-2.04328402613e-09
-2.49006171856e-09
-2.63967145397e-09
-3.25595399166e-09
-3.98719329986e-09
-3.84484856604e-09
-2.59672180134e-09
-1.37085675656e-09
-1.05351755694e-09
-1.48001558654e-09
-1.57804948579e-09
-8.00442747024e-10
1.73063230684e-10
8.60882782975e-10
1.16280852406e-09
1.45026524833e-09
1.38241452113e-09
1.08513856741e-09
1.09917940906e-09
1.27946698375e-09
1.23190269563e-09
9.42010328113e-10
6.10580947171e-10
2.39768134072e-10
-1.82337182665e-10
-4.94582537902e-10
-6.97602571073e-10
-9.78338684484e-10
-1.25752485995e-09
-1.21107542601e-09
-9.54928851108e-10
-7.96781658867e-10
-4.92121060157e-10
-1.16425525633e-10
-1.63772549802e-10
-4.45626574649e-10
-7.55054486545e-10
-7.64332038416e-10
-5.54887048582e-10
-1.99064601066e-10
4.22311145743e-10
9.56950718754e-10
1.18825254676e-09
1.2024293372e-09
9.93091920547e-10
5.72816194976e-10
1.92821121212e-10
-1.79808154043e-10
-3.03468188079e-10
-1.18920461179e-09
-1.4409860024e-09
-1.46979613403e-09
-1.55171946662e-09
-1.54557254853e-09
-1.31011348281e-09
-8.11864139284e-10
-1.2852708535e-10
-1.56478325577e-10
-4.19540500973e-10
-5.60080207581e-10
-4.59102445324e-10
-2.6867038054e-11
3.77362813002e-10
6.15431481344e-10
1.05413736006e-09
1.46766314625e-09
1.53091781975e-09
1.51798045027e-09
1.55988041731e-09
1.56167718595e-09
1.32743742417e-09
9.32028891863e-10
8.69741477054e-10
9.23171044817e-10
1.12474709857e-09
1.26404081971e-09
9.77681003105e-10
8.57409947891e-10
6.6572723896e-10
2.30492911541e-10
-6.50978701283e-11
-1.65611034814e-10
2.58944748239e-10
7.44497914923e-10
1.09244973229e-09
1.28283902191e-09
1.72168340375e-09
2.1246000361e-09
2.05512131157e-09
1.8244759341e-09
1.56590811552e-09
1.4190410728e-09
1.62030838304e-09
2.05530427069e-09
2.40879568353e-09
2.39691922282e-09
1.99035907825e-09
1.44733949065e-09
9.60940190996e-10
6.82111099474e-10
6.4588925088e-10
6.25532878635e-10
5.37211588555e-10
3.68557164361e-10
2.37597823903e-10
1.65076133508e-10
3.3740456311e-10
4.31299859379e-10
3.8489685343e-10
3.6971378785e-10
5.87423278151e-10
7.73243672054e-10
1.19170335899e-09
1.79608593081e-09
2.23906891563e-09
2.38596645154e-09
2.06037122178e-09
1.38784823748e-09
1.03922048782e-09
1.09456392653e-09
1.04455933649e-09
1.0898789873e-09
1.03083147351e-09
7.25155917573e-10
4.03010653007e-10
-9.23138857565e-11
-4.24400776024e-10
-3.4700779915e-10
-3.37073796745e-10
-1.06804925418e-10
4.7665550909e-10
1.0335974596e-09
1.57133802023e-09
2.18447361877e-09
2.81602710172e-09
3.19344229841e-09
3.13808588951e-09
2.82951927778e-09
2.56806964135e-09
2.187127373e-09
1.49369961556e-09
9.52771881708e-10
6.97645557995e-10
4.93206109362e-10
2.53665191879e-10
7.61452973428e-11
2.77545591761e-10
1.0878274735e-10
1.29153042699e-10
2.89596329501e-10
2.22755265568e-10
2.20991742972e-10
-1.33828664567e-10
-3.21402416671e-10
-8.92171333013e-11
1.71525018852e-10
7.29701096368e-10
1.56527284081e-09
2.20205950506e-09
2.30659268812e-09
2.04648157551e-09
1.56187793276e-09
1.03076116978e-09
4.43718209419e-10
-9.59569744627e-11
-3.71852546042e-10
-1.80548884356e-10
3.15000965172e-10
7.9924334837e-10
9.71221529849e-10
5.2583148915e-10
-2.88076328878e-10
-1.02044452024e-09
-1.3404795875e-09
-1.32530602458e-09
-1.01371907864e-09
-5.19583138856e-10
-1.06105064445e-10
1.89045683608e-10
3.88606010706e-10
5.28759893807e-10
7.11633460086e-10
1.00267863944e-09
1.12037132637e-09
1.0942700061e-09
9.7860511605e-10
1.16952803643e-09
1.42277902919e-09
1.58918119278e-09
2.17399137429e-09
2.35684969398e-09
2.09774909168e-09
2.02745213332e-09
1.48834784964e-09
2.31126492185e-10
-8.85788939756e-10
-1.54354305758e-09
-1.49250593438e-09
-1.28229946193e-09
-1.02356223676e-09
-5.75134524153e-10
-9.21390158046e-10
-1.79189947047e-09
-2.15259532204e-09
-1.74636297922e-09
-1.20989085043e-09
-5.00939308413e-10
4.1428402626e-10
9.82265463052e-10
8.38791422557e-10
7.35039600927e-10
6.23053295561e-10
8.05924320742e-11
-5.80374905239e-10
-7.68416431288e-10
-4.26733928277e-10
-3.99755081874e-10
-3.66583577594e-10
7.23196730366e-11
2.47624152899e-10
7.14056397832e-10
8.58132466995e-10
5.6005394956e-10
-2.16734555379e-10
-1.53243760861e-09
-2.21986921981e-09
-1.84547133976e-09
-1.1037720217e-09
-9.42169146791e-10
-7.74696333559e-10
6.3834096971e-11
1.96123702673e-10
-1.30289760914e-10
4.17049377075e-10
9.16509130687e-10
4.48157509096e-10
3.13905328055e-10
5.81935351686e-10
3.56998129246e-10
-5.23409186679e-10
-4.83962862326e-10
-5.38546088963e-10
7.20029462418e-10
-1.53229954224e-10
-1.1922235431e-09
-8.57963378043e-11
-1.27986248858e-09
-5.96330676625e-10
-7.25746617174e-10
-3.4267459035e-10
-1.76392853672e-09
-2.11066210896e-10
-1.53579778831e-09
-2.80568821756e-09
-1.28761628774e-09
-7.45621080611e-10
-2.73994829646e-10
-2.33992851679e-10
3.2538262449e-10
6.8167771639e-10
8.71574879868e-10
2.66480800371e-10
-1.56989933477e-10
-6.61320126536e-10
3.4379627373e-10
3.07461270799e-09
4.77958245762e-09
-3.2822679172e-09
-2.14454141514e-09
3.3204018593e-08
-3.16491743159e-09
-8.80138382965e-10
5.48969676412e-10
2.15518639583e-09
2.00034580846e-09
1.55446893557e-09
8.12739124319e-10
1.38833612846e-09
6.09303833245e-10
1.3858022294e-09
1.53607857974e-09
1.56207571495e-09
1.54977277315e-09
1.33906115142e-09
1.17437317076e-09
4.03901837547e-10
1.54074897382e-09
1.48838967189e-09
1.33828961029e-09
9.47174899751e-10
4.81689425895e-10
8.47178001647e-10
6.52520936522e-10
4.73718634103e-10
7.96017423391e-10
8.05167496803e-10
5.27585482626e-10
5.83628994064e-10
5.74838909654e-11
-4.28181931101e-10
-7.6438201336e-10
-9.36272103412e-10
-8.1230544345e-10
-6.40367919553e-10
4.8224126786e-11
9.04434676024e-10
1.69556175469e-09
2.43333592208e-09
2.87460705332e-09
3.06689369674e-09
3.13003492076e-09
2.74332118166e-09
2.0584925027e-09
1.42176597779e-09
9.67226075437e-10
6.87041129012e-10
5.26606312539e-10
6.15655733316e-10
8.16873492134e-10
6.0513812521e-10
3.37217368829e-10
4.19285544056e-11
-2.5692457466e-10
-3.66859710335e-10
-1.29833633672e-10
5.11689638821e-10
1.1389183833e-09
1.49884428192e-09
1.53755453465e-09
1.09822946161e-09
4.53399160732e-10
1.02194948603e-10
4.76021928445e-11
-6.45640276133e-12
2.35151169234e-11
1.40400793205e-10
4.5295743305e-10
8.32939086636e-10
1.15392134849e-09
1.25445854774e-09
1.31706952914e-09
1.23656063569e-09
8.40442607408e-10
2.38594146407e-10
-7.42988502211e-10
-2.00757438763e-09
-3.23491877545e-09
-4.04427188556e-09
-4.16494612846e-09
-3.71381341614e-09
-2.99012032446e-09
-2.43760285055e-09
-2.15795026434e-09
-1.5007153777e-09
-6.68760463945e-10
-4.08608693755e-11
4.27890551767e-10
9.49135992782e-10
1.57168318616e-09
1.72415928106e-09
1.18070717727e-09
2.5079713832e-10
-9.51724525469e-10
-2.21103890134e-09
-3.35342376697e-09
-4.23942615903e-09
-4.64571737064e-09
-4.70516214288e-09
-4.46846556203e-09
-3.76172414073e-09
-2.87288249424e-09
-2.17655195489e-09
-1.7602708367e-09
-1.48379081239e-09
-1.18460183476e-09
-9.54036078382e-10
-8.68617040816e-10
-9.05225804797e-10
-8.86090483485e-10
-6.92933090193e-10
-8.303864205e-10
-1.36730959434e-09
-2.06223723536e-09
-2.59095933032e-09
-2.3759408637e-09
-1.5756754642e-09
-7.23050723061e-10
5.30625510343e-11
5.34498872897e-10
4.60948394814e-10
-9.57923324335e-11
-8.05871592941e-10
-1.08240370978e-09
-9.86006066427e-10
-9.60593595701e-10
-9.54078430029e-10
-6.81234929917e-10
-6.27524358973e-11
7.37339639486e-10
1.49048703135e-09
2.09704817191e-09
2.33922632648e-09
2.28922046589e-09
2.5220753288e-09
2.95754259028e-09
2.81101436073e-09
2.08252367445e-09
1.41325499074e-09
1.04805504146e-09
8.37560577805e-10
5.86677889158e-10
2.86787568248e-10
3.25469868884e-10
8.10180237785e-10
1.28813890706e-09
1.5350337646e-09
1.69709234323e-09
1.76872930771e-09
1.44365669728e-09
6.55690745568e-10
1.13250846147e-10
1.49462351675e-10
3.99890183629e-10
6.15803964082e-10
9.48688759386e-10
1.57126094023e-09
2.17454194571e-09
2.4661330378e-09
2.39827553433e-09
2.10682039102e-09
1.66723993755e-09
1.33447838554e-09
1.0832757302e-09
7.74368531808e-10
6.74095289205e-10
8.23625191757e-10
1.13164575841e-09
1.27927618958e-09
1.2907882673e-09
1.56207732961e-09
2.08150211136e-09
2.81013956099e-09
3.44793210334e-09
3.62614931775e-09
3.64859304387e-09
3.30554544139e-09
2.60336973943e-09
1.7930020956e-09
1.2335781268e-09
1.02556758726e-09
1.16204915902e-09
1.6086045053e-09
2.24901054133e-09
2.72525947461e-09
2.67900300536e-09
2.59095181291e-09
2.12594088926e-09
1.40716736494e-09
7.90590906814e-10
7.72220456254e-10
5.97163310012e-10
2.32240340511e-10
1.58608613439e-10
4.72378416222e-10
6.12909652501e-10
4.10518753052e-10
-8.189961567e-12
8.84166871662e-11
-5.23025904271e-11
-2.55291495138e-10
-2.35285423957e-10
3.9216524315e-10
1.27341239224e-09
1.20778682059e-09
7.11309469984e-10
1.04602724459e-09
1.15686743496e-09
7.45750253136e-10
4.7797899807e-10
4.98575027699e-10
1.98150017241e-10
-3.37826809035e-10
-6.30241852426e-10
-6.20916972589e-10
-6.57250768499e-10
-7.20181253369e-10
-8.58229928724e-10
-1.3381556732e-09
-1.75196080821e-09
-2.22159102604e-09
-2.61860743863e-09
-2.27165766124e-09
-1.46516032271e-09
-9.00501478533e-10
-4.06278082601e-10
-2.45896629203e-10
-3.57869302633e-10
-2.28138159948e-10
-3.65312604657e-10
-7.53571331854e-10
-1.03770853401e-09
-1.35241769633e-09
-1.52244600797e-09
-1.67413520926e-09
-1.73991663498e-09
-1.45614704512e-09
-1.33119020364e-09
-1.31418347613e-09
-6.57899807495e-10
3.13123516644e-10
2.02378193956e-10
-5.34380380929e-10
-7.35251703271e-10
-2.45631084374e-10
4.00776180092e-10
1.13329959024e-09
1.52430778638e-09
1.0884419959e-09
3.8228587437e-10
-5.83559113846e-11
1.48754232131e-10
6.34432759691e-10
7.06465288559e-10
4.3476824754e-10
-9.85668947314e-11
-8.61356803788e-10
-1.38018497159e-09
-1.48125682068e-09
-1.48654583999e-09
-1.20888669287e-09
-7.38076769908e-10
-5.34264760931e-10
-6.20668897815e-10
-5.19647089844e-10
-4.40898860254e-10
-5.20464053122e-10
-5.60574874822e-10
-3.88487426093e-10
-1.55705831529e-10
1.1129165894e-11
5.4289052095e-10
9.89718188318e-10
8.39264808095e-10
6.4360612651e-10
7.49113397453e-10
8.31071458396e-10
5.11549454868e-10
-7.27855411576e-12
8.25238789521e-11
-5.19360792708e-10
-1.20305275345e-09
-1.29991097097e-09
-7.92412027651e-10
-2.10429242119e-10
4.25058073591e-11
-2.64926494913e-10
-2.02796628232e-11
4.12385190151e-10
1.54376413318e-10
-2.17699749422e-10
-2.554833481e-10
1.74312180765e-10
6.61104133134e-10
8.23023692485e-10
1.01865382641e-09
1.50473116091e-09
1.72970099412e-09
1.48530848367e-09
1.15169968695e-09
9.84593638987e-10
8.02711524773e-10
5.27751501083e-10
4.740000608e-10
5.89728901834e-10
9.46487320756e-10
1.20073865943e-09
9.39163026861e-10
7.19902619234e-10
6.41773994245e-10
7.65765218163e-10
4.79049647715e-10
4.53760632042e-10
3.15241099013e-10
7.8532744408e-10
1.48560769806e-09
2.008779292e-09
1.9852224587e-09
1.81266998888e-09
1.48261089549e-09
1.10826468445e-09
9.33659853803e-10
1.12098500174e-09
1.53414734462e-09
2.03572891576e-09
2.36873483678e-09
2.45244286779e-09
2.34540945523e-09
1.99599904713e-09
1.44089240526e-09
1.0297656149e-09
8.74432769032e-10
8.91469672096e-10
9.36377982531e-10
8.60494418368e-10
7.91130466801e-10
5.31209089574e-10
2.56532398405e-10
-4.52328299328e-11
2.8408638018e-11
2.58788894177e-10
6.17445513934e-10
9.33675947429e-10
1.19624260855e-09
1.37250592971e-09
1.28407314892e-09
1.35950058584e-09
1.36004692209e-09
1.07384380657e-09
8.14806731743e-10
9.8314605968e-10
1.19740643182e-09
1.28472536429e-09
1.15192415068e-09
8.04893058128e-10
4.42875411637e-10
-1.66865490609e-11
-4.11312422923e-10
-2.87480017683e-10
-1.4469016805e-11
3.36772676532e-10
9.71405759515e-10
1.54164379796e-09
2.13241815021e-09
2.67239636013e-09
3.02863830071e-09
3.24318309063e-09
3.28248565761e-09
2.97083878409e-09
2.57925979362e-09
2.31666242755e-09
1.95399256569e-09
1.45101487249e-09
8.20053677335e-10
3.85115811447e-10
-7.68995801824e-11
-3.75194938052e-10
-8.30752974008e-11
-1.40476179137e-10
-3.995166421e-10
-5.26662216713e-10
-1.02826157555e-09
-1.59412447706e-09
-1.72490212895e-09
-1.75039951473e-09
-1.31732681539e-09
-5.82077653221e-10
2.39323230016e-10
1.08741158032e-09
1.50680469756e-09
1.56474429225e-09
1.3051795159e-09
9.48463448622e-10
4.49947289713e-10
1.12397883969e-10
-5.96472131127e-11
1.77654149258e-10
8.43468209096e-10
1.5393426212e-09
1.79663269058e-09
1.49615939924e-09
8.18687413191e-10
5.90248556547e-11
-3.38746686815e-10
-3.14013271816e-10
-1.3176137478e-10
2.02866826087e-10
6.55611865625e-10
9.21699325071e-10
1.01987616113e-09
1.07533966676e-09
1.18871290917e-09
1.09970075784e-09
9.85720616324e-10
6.42078926106e-10
4.76247662726e-10
4.08912778584e-10
5.99294444907e-10
9.36758300324e-10
1.05925705219e-09
1.68241580335e-09
2.26434607284e-09
1.95015783578e-09
1.45002045581e-09
5.83161855394e-10
-6.05655662341e-10
-1.11711279062e-09
-1.63958812347e-09
-1.84437527913e-09
-1.44146372898e-09
-1.42083508858e-09
-1.3009968672e-09
-1.23945568842e-09
-1.83535353121e-09
-2.25285776498e-09
-1.55485814721e-09
-3.55749390924e-10
5.69032498801e-10
1.40849297151e-09
1.92120212036e-09
1.72306115578e-09
1.33237957025e-09
1.03056031709e-09
7.41383798293e-10
5.41456070653e-10
6.30937266476e-10
1.16146470629e-09
1.65562203365e-09
1.9800729219e-09
2.8406325618e-09
3.06275678782e-09
2.60761633911e-09
1.65027175004e-09
6.39645400449e-11
-8.07722148172e-10
-1.72882304447e-09
-3.03516214847e-09
-3.50403384829e-09
-2.67427613799e-09
-2.01346761936e-09
-2.51070729962e-09
-2.82236968443e-09
-2.72026579187e-09
-2.88752599983e-09
-2.69246447647e-09
-1.8173159646e-09
-9.45131221008e-10
-1.1595652349e-09
-1.18575295253e-09
-4.29727766229e-10
-3.95196350552e-10
-1.62765427628e-10
-6.80051413131e-10
9.30231911465e-10
-4.50920107053e-11
-1.69338318595e-09
-1.02628497123e-09
-4.96579874679e-10
6.55201901679e-10
1.20436808973e-09
4.95926355673e-10
-1.32309913317e-09
-1.33628934198e-09
-1.30768503936e-09
-1.75670482799e-09
-1.56286218504e-09
-3.04964048264e-10
-3.54960167975e-10
-1.14191899751e-10
-2.16712532522e-10
-1.01172156319e-10
3.22377351593e-10
-7.45561788305e-10
-3.45591136546e-10
-1.37870112869e-09
-1.5019774568e-09
1.1867804035e-09
3.68297125246e-09
3.61764383641e-09
-2.58742016197e-08
2.14755310961e-08
1.56445375995e-09
1.62743658881e-09
4.11696128848e-10
1.26862835016e-09
1.05088709612e-09
1.68517120153e-09
7.16508981731e-10
1.70584981687e-09
1.61092961074e-09
2.0710408723e-09
2.58072579589e-09
1.56102179421e-09
2.20297620647e-09
1.83328899428e-09
2.49015446867e-09
2.00829981841e-09
1.65053348322e-09
2.45766397888e-09
1.70997698491e-09
9.900782832e-10
1.09682783384e-09
1.28876698199e-09
1.09759461041e-09
9.00796881274e-10
1.01691387516e-09
9.07145181455e-10
-2.8617008123e-11
-6.44847453294e-10
-1.0785698269e-09
-1.3222527355e-09
-1.32767755801e-09
-1.04927476891e-09
-6.26133530874e-10
-2.50800526451e-10
2.45134723067e-10
8.77139886332e-10
1.7475450137e-09
2.75763265033e-09
3.29523937976e-09
3.32566226212e-09
3.11057264473e-09
2.52564472564e-09
1.75254504919e-09
1.16082646696e-09
9.03447035607e-10
1.0039551181e-09
1.01085758958e-09
8.67273646562e-10
7.60606787514e-10
5.29858919056e-10
6.26550271084e-12
-4.71800739752e-10
-6.75895445976e-10
-4.36977097708e-10
1.48852911469e-10
8.61379991315e-10
1.39653117223e-09
1.44090426372e-09
1.1368719517e-09
8.01060657559e-10
4.71300990314e-10
1.50848309335e-10
3.62254815717e-12
9.03162644295e-11
4.02876398285e-10
6.29817171282e-10
7.17021727831e-10
7.9068570833e-10
1.16861093797e-09
1.50727591258e-09
1.52263510807e-09
1.29717685449e-09
6.57852585408e-10
-3.11303454599e-10
-1.47091760565e-09
-2.55299203138e-09
-3.43045463726e-09
-3.9533666156e-09
-4.1104061005e-09
-3.90051260672e-09
-3.33071947234e-09
-2.60153930123e-09
-2.14318393897e-09
-1.71650295025e-09
-9.73596610233e-10
-6.9582909584e-11
6.84736352363e-10
1.15482269743e-09
1.46509679524e-09
1.59367131444e-09
1.22509255073e-09
4.42666194499e-10
-4.22747367711e-10
-1.44660776007e-09
-2.51032274666e-09
-3.48123426245e-09
-4.05937321246e-09
-4.02780852968e-09
-3.64806841284e-09
-3.03936851408e-09
-2.30630215582e-09
-1.54544041139e-09
-9.9258115968e-10
-7.57016638367e-10
-8.06963206651e-10
-9.34679257955e-10
-1.02251869217e-09
-8.65278036938e-10
-8.48289944148e-10
-1.21576481216e-09
-1.74594348615e-09
-2.240993798e-09
-2.66483214415e-09
-3.00117759844e-09
-2.83391304943e-09
-2.03976312193e-09
-9.46479221004e-10
-6.53112099344e-11
3.18481952948e-10
2.79866303218e-10
1.56096525476e-11
-6.91837453076e-10
-1.53949783999e-09
-1.88101623036e-09
-1.6534252537e-09
-1.09660718176e-09
-4.34075374589e-10
3.07993885116e-10
8.37358136931e-10
1.09511703904e-09
1.55945541853e-09
2.30451788091e-09
2.7023836558e-09
2.55190359404e-09
2.25179304456e-09
2.11924085865e-09
1.91841104092e-09
1.45612417523e-09
1.08595722475e-09
6.32140688536e-10
2.35975755809e-10
1.13933554702e-10
4.59221453453e-10
1.12917877495e-09
1.67984505836e-09
1.90842113434e-09
1.8808552941e-09
1.65827451732e-09
1.1613880498e-09
4.16827454443e-10
-7.74975854431e-11
-1.42139751846e-10
1.02451176069e-10
6.92169066475e-10
1.35524255121e-09
1.86714183069e-09
2.13126999705e-09
2.30261586843e-09
2.460546432e-09
2.39276939666e-09
1.90932491849e-09
1.41244268614e-09
1.2850766712e-09
1.28714618445e-09
1.23394637437e-09
9.99220415679e-10
8.49765899059e-10
1.00512952928e-09
1.45778531272e-09
1.97214479939e-09
2.37327425839e-09
2.89859497344e-09
3.64087477377e-09
3.89914888368e-09
3.59907094497e-09
3.03724754358e-09
2.24223385424e-09
1.38950503393e-09
8.35677200047e-10
7.91031787463e-10
1.0779167645e-09
1.58909521894e-09
2.24079305119e-09
2.60294368186e-09
2.31362983784e-09
1.97845466545e-09
1.72196461869e-09
1.35395336707e-09
8.24901670408e-10
1.01585423694e-09
1.52853702189e-09
1.55728023792e-09
1.37430248659e-09
1.32151285222e-09
1.17084856079e-09
8.8699426764e-10
5.40241001891e-10
5.54687995839e-10
1.04031316032e-09
1.47479616952e-09
1.30307802715e-09
7.78443607317e-10
7.77424626682e-10
1.20186775435e-09
9.37975486669e-10
5.04950644693e-10
5.94828887209e-10
4.12882398491e-10
-2.21933220092e-10
-5.71612772916e-10
-7.27848423554e-10
-7.95007971876e-10
-6.51619269949e-10
-5.20437689221e-10
-5.28849996937e-10
-5.80208688258e-10
-8.48777676307e-10
-1.47482359221e-09
-1.69253276487e-09
-1.4887222382e-09
-1.20131760645e-09
-6.88502684363e-10
-1.98951945684e-10
-2.06318591226e-10
-3.92321520729e-10
-3.33816108029e-10
-3.05678097038e-10
-3.03450400387e-10
1.1868371547e-10
2.64295455367e-10
-4.04808903954e-10
-1.33203638956e-09
-1.45825107496e-09
-1.34090990671e-09
-1.71670369706e-09
-1.89122805958e-09
-1.26406792477e-09
-7.42037284211e-10
-1.07103673939e-09
-1.04404010529e-09
-5.81132364452e-10
-1.58148674549e-10
2.05797665964e-10
6.02620743291e-10
8.21155243683e-10
7.61916300451e-10
7.06253530322e-10
6.82549313293e-10
4.90922508537e-10
2.2548482924e-10
1.97079155838e-11
2.13594604243e-10
4.16357774673e-10
3.45065129085e-10
6.49398984836e-12
-6.46315149633e-10
-1.35529496138e-09
-1.51779550426e-09
-1.37661425126e-09
-1.0888146904e-09
-9.02773220898e-10
-6.64325822949e-10
-5.04717075357e-10
-3.64536722477e-10
-2.28054727202e-10
-7.30879319197e-11
2.24469660253e-10
6.92008977248e-10
1.20350676311e-09
1.34665617823e-09
1.32098684476e-09
1.56198296485e-09
1.7215817598e-09
1.65827282326e-09
1.49821408941e-09
1.46988761359e-09
1.24809288338e-09
6.62182406076e-10
3.21110190304e-12
-6.09677374775e-10
-1.25249660768e-09
-1.4083591403e-09
-9.71571354456e-10
-4.36866559909e-10
-1.95034418303e-10
-2.22684961833e-10
-6.75918739382e-10
-7.36381645223e-10
-3.67436116255e-10
-5.95116878411e-11
-9.78884213406e-11
2.17230069653e-10
1.07435414392e-09
1.86878348642e-09
2.1480012271e-09
2.47585072917e-09
2.89984662344e-09
3.03843084861e-09
2.65019605009e-09
2.07098877977e-09
1.59699253062e-09
1.36990850318e-09
1.24534129685e-09
1.03552488307e-09
9.41784593833e-10
7.920842259e-10
4.29598170188e-10
-1.08088180333e-10
-6.03548244368e-10
-4.65907931538e-10
-4.13100509475e-10
1.68376597387e-10
8.49282666762e-10
1.6650584042e-09
2.20806666273e-09
2.6970774179e-09
2.54967674442e-09
1.86283382112e-09
1.00156987332e-09
6.36865438316e-10
7.52277912544e-10
1.10346412522e-09
1.44481586187e-09
1.85527828723e-09
2.08518166384e-09
2.00934722759e-09
1.78493220096e-09
1.66413789114e-09
1.56686070995e-09
1.45270364443e-09
1.35630573638e-09
1.29696509625e-09
1.2257665772e-09
1.08476566115e-09
9.74983626684e-10
7.67518152847e-10
5.59155247603e-10
2.86856601434e-10
3.15020023413e-11
-1.0936042382e-11
2.46844035555e-10
5.2087613465e-10
5.08187581101e-10
4.54242593789e-10
2.81549516503e-10
3.54273224255e-10
7.60679632348e-10
1.10886099565e-09
1.35554494197e-09
1.38724769112e-09
1.57629866869e-09
1.98588737956e-09
2.01315675827e-09
1.78314580847e-09
1.60891282529e-09
1.29921640395e-09
1.07346264175e-09
1.14936695822e-09
1.15507426622e-09
1.10389992367e-09
1.38169708422e-09
1.74901059246e-09
2.24516522351e-09
2.98372363753e-09
3.4342207575e-09
3.29905258974e-09
2.91773815628e-09
2.44392213986e-09
2.00704043923e-09
1.71423459602e-09
1.38975723799e-09
8.62535767771e-10
2.50368963165e-10
-8.52585248224e-11
-5.70322953496e-10
-1.01302133525e-09
-9.28577656119e-10
-4.76584781838e-10
-2.73226570763e-10
-4.76917665787e-10
-3.08909527732e-10
-4.58505710612e-10
-7.45957352691e-10
-5.1479189699e-10
8.58417070065e-11
7.2103679635e-10
1.17670409956e-09
1.73399841577e-09
1.85994543877e-09
1.56867960733e-09
1.02079582715e-09
3.99059244308e-10
-3.20882338441e-10
-5.43497843573e-10
-2.88396083815e-10
3.29046465503e-10
1.11107259867e-09
1.60249146852e-09
1.49187362428e-09
8.73326544003e-10
2.03400350965e-10
-2.60605991607e-10
-3.03900704277e-10
4.23239070337e-11
4.69850565505e-10
6.69600297112e-10
7.74184196263e-10
9.0645400257e-10
9.26760558689e-10
7.18876438818e-10
3.67184123954e-10
-1.03248234073e-10
-4.58716621816e-10
-7.54543725678e-10
-8.26187466422e-10
-5.26252252767e-10
1.5299871423e-10
6.64523605142e-10
6.94212956977e-10
1.14229423311e-09
1.965100344e-09
2.01827707243e-09
1.76081971405e-09
1.37490218592e-09
4.50694372773e-10
-1.60162918897e-10
-2.69081191519e-10
-3.80332192877e-10
2.41225666016e-10
3.46586400259e-10
-5.00827711822e-10
-6.26218234169e-10
-7.28236152885e-10
-9.57384823139e-10
-4.98675824619e-10
6.87109950439e-10
1.79069668368e-09
2.31583784098e-09
2.12651083655e-09
1.43371554803e-09
3.21035916103e-10
-6.48253796292e-10
-8.90896760186e-10
-9.25394294545e-10
-6.85874341127e-10
-1.37973620295e-10
3.40694015561e-10
6.73255244279e-10
8.87182732471e-10
8.98617253742e-10
6.39996919122e-10
4.80484521528e-10
-6.48791662213e-10
-1.772695963e-09
-1.80803587163e-09
-2.11442801744e-09
-2.42444800537e-09
-2.33820903991e-09
-1.97777534503e-09
-1.58109965143e-09
-1.82839600258e-09
-1.40135587189e-09
-5.97176862539e-10
-6.84503418302e-10
-7.21830466222e-10
-3.54872076549e-10
-4.9734386531e-10
-8.36290875417e-10
-1.07222173848e-09
4.6586812099e-12
-1.13731960861e-10
-2.89757265761e-11
-6.55073470308e-10
-1.05492045526e-09
-5.96232844319e-11
1.06638001694e-09
7.32722684575e-10
-2.88353361591e-10
7.48596389718e-10
-6.49063348031e-10
-1.31392131943e-09
-1.78593762907e-09
-2.29476048488e-09
-1.49828269908e-09
-1.87836078207e-09
-8.41868587375e-10
-7.85864462968e-10
5.21507174196e-10
-1.71400505009e-10
-7.61865478474e-10
-7.47287194419e-10
-7.16399290964e-10
-7.80680621331e-10
1.85990647525e-10
-1.36197561611e-09
8.44432556106e-10
4.23308781148e-09
7.38522012777e-09
-2.67428451833e-08
1.32321792954e-09
3.85119961908e-09
1.91618503833e-09
3.27698412568e-10
4.97816509694e-10
1.31406573855e-09
8.12175847409e-10
1.65389959215e-09
1.8124133379e-09
2.33181436467e-09
1.65483619883e-09
2.26199386235e-09
1.88919433347e-09
1.33934162521e-09
1.5695589334e-09
1.44713096173e-09
2.50448028396e-09
1.08691967917e-09
9.61916925863e-10
1.6170513296e-09
9.72856091679e-10
3.48775133394e-10
2.9858483138e-10
4.33125638897e-10
-6.45578866244e-11
-2.67305386945e-10
1.55090462093e-10
4.30813662468e-10
2.04824848624e-10
1.0513415293e-10
-1.54637722983e-10
-5.90586099177e-10
-5.28119960415e-10
-2.50805608649e-10
1.02358002445e-10
6.79034973595e-10
1.2950862713e-09
2.02802049242e-09
3.01728212998e-09
3.61814612694e-09
3.46667969531e-09
3.03358158499e-09
2.61852273534e-09
2.26547940292e-09
1.79755299187e-09
1.54557763072e-09
1.61010629471e-09
1.56442496083e-09
1.32356436602e-09
8.16760836752e-10
1.99610090284e-10
-3.79478383666e-10
-6.57363212123e-10
-5.66630736879e-10
-2.96281960554e-10
1.31871171426e-10
7.32999866181e-10
1.14499415063e-09
1.1524696399e-09
8.83908950129e-10
4.71613333713e-10
1.37473023823e-10
1.67850378169e-10
4.06984084563e-10
4.59150514443e-10
4.41330105903e-10
4.84356150311e-10
7.32897772241e-10
1.26016395653e-09
1.686628707e-09
1.94262167777e-09
1.81195975176e-09
1.29082389563e-09
4.7567909186e-10
-5.68594582767e-10
-1.76268191598e-09
-2.84287889318e-09
-3.64773298779e-09
-3.91077144626e-09
-3.79114455961e-09
-3.51324533159e-09
-3.17004621609e-09
-2.74366126538e-09
-2.25488725592e-09
-1.81592090133e-09
-1.14773387869e-09
-2.10722315519e-10
6.6877062834e-10
1.35608450196e-09
1.58919898047e-09
1.40247819055e-09
9.89353117118e-10
2.54670619987e-10
-5.89704337878e-10
-1.46157144411e-09
-2.43176721706e-09
-3.31388935119e-09
-4.12679703507e-09
-4.40022435264e-09
-4.06718116217e-09
-3.42632958681e-09
-2.68045185521e-09
-1.98964142958e-09
-1.47638096816e-09
-1.17944128653e-09
-9.81772595756e-10
-6.24060841252e-10
-3.46899378933e-10
-3.46650351246e-10
-4.51122124411e-10
-8.78723202668e-10
-1.67182365635e-09
-2.25692648774e-09
-2.3650616784e-09
-2.13054663091e-09
-1.44636381458e-09
-6.23339804456e-10
7.50310255007e-11
5.25177530084e-10
5.56949467929e-10
1.45689508109e-10
-4.04242133033e-10
-7.68036748769e-10
-1.07830724669e-09
-1.41653639637e-09
-1.44802569322e-09
-1.21541350525e-09
-7.4360958912e-10
-1.56709565572e-11
8.69729195076e-10
1.59537554473e-09
2.03012409875e-09
2.22907689147e-09
2.31458952617e-09
2.44888194128e-09
2.42258283882e-09
2.09965152768e-09
1.52067486207e-09
7.80448534304e-10
1.96584488596e-10
3.87127938213e-11
2.73485762845e-10
1.79820859537e-10
3.89739340789e-10
1.25427791796e-09
1.98818453292e-09
2.20009523566e-09
1.90164148263e-09
1.3094832903e-09
8.16014600726e-10
2.007442674e-10
-3.34686434383e-10
-2.60905629512e-10
1.42306617336e-10
4.50231045751e-10
8.66184362192e-10
1.54664785685e-09
2.09584114996e-09
2.23224140656e-09
2.20031207609e-09
2.29158284078e-09
2.33470909977e-09
2.24557455218e-09
2.03370069537e-09
1.70432769866e-09
1.29461701504e-09
8.67978166216e-10
6.80861811904e-10
7.13738125202e-10
1.0858266758e-09
1.9847638433e-09
2.95061417841e-09
3.51840130055e-09
3.76006543846e-09
3.68900138589e-09
3.05355515128e-09
2.23622034383e-09
1.33717491493e-09
5.76859294992e-10
1.1678382057e-10
2.58572900775e-10
7.8501870057e-10
1.24025189939e-09
1.67739925072e-09
2.0064656215e-09
1.81666501978e-09
1.18679310899e-09
1.02448126751e-09
1.14281769947e-09
1.08512713246e-09
1.18074868188e-09
1.63489725501e-09
1.85908739439e-09
1.75879615234e-09
1.92471720121e-09
2.08333004981e-09
1.98900191971e-09
1.90890224905e-09
1.60532818186e-09
1.53148639061e-09
1.82258959173e-09
1.9305913747e-09
1.63746969407e-09
1.0485598731e-09
7.53053794724e-10
7.64387095558e-10
3.85022637823e-10
2.52651716958e-10
1.34359330709e-10
-2.65937005219e-10
-7.11919121948e-10
-8.67265387991e-10
-6.76202283661e-10
-1.67574033669e-10
3.44223178336e-10
4.5098538153e-10
3.92853761823e-10
1.56210451407e-10
-3.38213373696e-10
-4.96624946096e-10
-1.40483167159e-10
1.53036618954e-10
4.50199282015e-10
6.59211438014e-10
4.81866455781e-10
-1.31759363077e-10
-5.47674986552e-10
-5.09733416229e-10
-4.22278958491e-10
-3.92520149955e-10
-1.68858559134e-10
-4.16824913344e-11
-1.20657895161e-09
-2.89457670208e-09
-3.4780401012e-09
-3.09101973617e-09
-2.72091377207e-09
-2.54997828815e-09
-2.32004441835e-09
-1.89908344313e-09
-1.56320184526e-09
-1.2112655849e-09
-7.38234953311e-10
-9.98067392079e-11
3.5437825634e-10
6.17473466021e-10
7.06398372956e-10
6.53308041888e-10
5.22355477693e-10
3.40467857764e-10
4.16799078839e-10
5.50170769131e-10
4.81076174041e-10
1.94199879092e-10
-1.30679819586e-10
-4.29539513157e-10
-8.04183985672e-10
-1.11010909869e-09
-1.15833965764e-09
-1.20048274961e-09
-1.23068932093e-09
-9.974740455e-10
-6.83479355469e-10
-5.75351152829e-10
-5.1753501319e-10
-1.00943033907e-10
5.59494060782e-10
1.05324989453e-09
1.33409806775e-09
1.69255563476e-09
2.11119573971e-09
2.18901943284e-09
2.12551229059e-09
2.11727743627e-09
2.09828272243e-09
2.05471727686e-09
1.9180840862e-09
1.18334907303e-09
1.22197208136e-10
-6.55949090617e-10
-7.05684324181e-10
-7.58201213944e-10
-8.48022281737e-10
-1.25186133297e-09
-9.1539782346e-10
-6.20992040884e-10
-4.98782974287e-10
-5.66338934028e-10
-9.82493420795e-10
-1.11319187511e-09
-5.84606470085e-10
1.0169202279e-10
4.88701164632e-10
9.46908719647e-10
1.67154646481e-09
2.14014344803e-09
2.19094495049e-09
2.21914924181e-09
2.3003180798e-09
2.18098066666e-09
1.96939776566e-09
1.74668866339e-09
1.77130682897e-09
1.93567992513e-09
1.95342145373e-09
1.94668415366e-09
1.87359113955e-09
1.83227541348e-09
1.51822693686e-09
1.30528793611e-09
1.37743566146e-09
1.86022157151e-09
2.53920572313e-09
3.19591121416e-09
4.11273205298e-09
4.70427953455e-09
4.65258426674e-09
3.94232850575e-09
3.02310632853e-09
1.89256721866e-09
9.77790270355e-10
7.40956470171e-10
1.12801833981e-09
1.47681761365e-09
1.59980256242e-09
1.42286627359e-09
1.10359160368e-09
7.83238660832e-10
6.42367764341e-10
7.98595791682e-10
1.09034914352e-09
1.32144037796e-09
1.34679096234e-09
1.08023318785e-09
7.59839163906e-10
4.49874868396e-10
2.15161615196e-10
1.59699591875e-11
2.59734182946e-11
-6.50097787018e-12
-3.1250433556e-11
-3.01190516484e-10
-4.99421637129e-10
-4.97739429696e-10
-7.1072501725e-10
-9.70537974261e-10
-9.09413535688e-10
-2.83327438659e-10
2.32499532593e-10
8.16901444222e-10
1.23315799846e-09
1.40894359303e-09
1.81013058411e-09
2.15898618563e-09
1.97904165928e-09
1.7255950019e-09
1.61450493681e-09
1.51668618393e-09
1.63568838378e-09
1.56184743957e-09
1.3454343332e-09
1.38215427025e-09
1.61860838792e-09
1.82533503727e-09
2.11121013927e-09
2.47670273843e-09
2.69166455973e-09
2.58712931203e-09
2.15669040871e-09
1.59705404639e-09
1.18031267167e-09
9.47768881605e-10
4.63647624119e-10
-3.17262119625e-10
-7.57626925606e-10
-9.1327092373e-10
-6.91094605181e-10
-6.35266240111e-10
-5.53604640699e-10
1.65949847993e-10
2.4026428362e-10
-3.37703565741e-11
3.32748422999e-10
3.54279153486e-10
4.07577007626e-10
1.13635060292e-09
2.00756464675e-09
2.33868083726e-09
2.49747071575e-09
2.31110059746e-09
1.73043748926e-09
9.52280179082e-10
2.67451500128e-10
-1.69143162204e-10
6.47133171702e-13
6.5396957462e-10
1.38813326407e-09
1.92066372504e-09
1.98457236091e-09
1.49016050015e-09
6.80652806524e-10
5.13456549549e-11
-4.14588746363e-11
1.94748015288e-10
4.60650609793e-10
7.58508700139e-10
1.0171149396e-09
1.1193007826e-09
1.10771432479e-09
8.76400850085e-10
5.74695761086e-10
1.52398591386e-10
-1.74924162069e-10
-4.83863759471e-10
-5.60914535034e-10
-5.51588702285e-10
-4.51033185952e-10
9.34971907838e-11
8.3342620999e-10
1.12071268064e-09
1.45637997918e-09
2.0202430359e-09
1.97397216709e-09
1.61558320975e-09
1.1679000391e-09
6.66254940487e-10
2.65179757764e-10
3.06860555032e-10
-3.64089489081e-10
-4.92010945874e-10
3.213388892e-11
-9.89175240199e-10
-1.59970388309e-09
-1.36586815602e-09
-1.11514640363e-09
-5.38444021493e-10
1.0501281546e-10
6.10702496399e-10
8.43311084484e-10
4.76989875346e-10
7.14213151867e-11
-7.3836237883e-10
-2.07580966779e-09
-2.53778186074e-09
-2.23845862839e-09
-1.99671838986e-09
-1.65485123367e-09
-1.51963470561e-09
-1.01504362641e-09
-4.65659750885e-10
-1.66740129733e-10
-8.32005735737e-10
-1.50265000096e-09
-1.36008080341e-09
-1.54255033497e-09
-1.10709408492e-09
-4.37256195065e-10
2.22989046661e-10
1.30425879108e-09
1.7696390211e-09
1.89635853814e-09
1.22417013185e-09
4.75948660095e-10
1.49693591669e-10
-2.32629128634e-11
8.29228314703e-11
-1.30288913881e-10
-2.45604826353e-10
3.35706262051e-10
3.01283690108e-10
2.57405265858e-10
-1.25951893433e-09
-4.68994519598e-10
-6.55557126121e-10
-4.57193233061e-10
-9.68774875181e-11
5.24001580347e-11
2.82376908873e-10
-9.96599219284e-10
5.99428276113e-10
-1.27184728711e-09
-1.68990145702e-09
-1.4422510461e-09
-2.05982319146e-09
-1.7064160584e-09
-1.11164815756e-09
-9.66163049088e-10
-6.4283871466e-10
5.7211315763e-10
-6.1986718113e-11
-6.5483185416e-10
-1.35049916671e-09
-6.492592244e-11
-1.07251989408e-09
9.8545676556e-10
-1.44859574639e-11
-1.31933343645e-09
9.27337599885e-10
8.89581445074e-09
2.71672519415e-09
-8.39965828444e-09
3.49013911982e-09
3.86421851548e-09
2.24852010925e-09
4.57581597667e-10
1.97236703966e-09
1.59979324506e-09
1.85748946674e-09
1.89736184866e-09
2.06739312491e-09
1.60891303705e-09
1.04362908255e-09
1.40476962643e-09
7.25644337946e-10
1.57497337976e-09
1.12581690118e-09
1.64776131643e-09
1.90523621105e-09
7.3049709558e-12
-1.81686343725e-10
6.51557542423e-10
7.50727418734e-11
-2.59211987134e-10
-1.25419533225e-10
1.9737667616e-10
6.83724995024e-11
-1.3069379563e-10
-1.80207106561e-10
-5.66954726981e-10
-9.08309851758e-10
-1.32711766923e-09
-1.68886341815e-09
-1.67969343946e-09
-1.2803860145e-09
-5.70861242934e-10
4.28245458572e-10
1.23222372112e-09
2.03832634229e-09
2.83879365327e-09
3.17671236538e-09
2.97938164076e-09
2.6610310838e-09
2.47668113909e-09
2.44644629804e-09
2.2652320693e-09
2.02069619853e-09
1.78380564714e-09
1.51838617905e-09
1.07584449839e-09
5.4794307248e-10
-1.22412354504e-10
-6.97497750746e-10
-8.87721445425e-10
-6.71418453333e-10
-3.00220663759e-10
9.34137580385e-11
5.13306624717e-10
7.47444742547e-10
5.82060712562e-10
1.23212377123e-10
-1.76554700493e-10
-1.7563863436e-10
-5.86985362118e-11
2.60411597546e-10
6.89773233784e-10
8.5371466078e-10
1.05022715158e-09
1.24731811293e-09
1.68912857916e-09
2.13301444817e-09
2.20248085102e-09
1.89534993365e-09
1.27055069143e-09
3.60641006194e-10
-8.41274605521e-10
-2.05143375364e-09
-2.94399006312e-09
-3.43383218114e-09
-3.43851457927e-09
-3.20575416053e-09
-2.87348092301e-09
-2.57961639449e-09
-2.31023027111e-09
-2.02009861679e-09
-1.58105645275e-09
-9.32706094704e-10
-1.5900841299e-10
5.92618131217e-10
1.13396366407e-09
1.36354347409e-09
1.19084870274e-09
7.41225826648e-10
2.48502526065e-11
-9.37419833056e-10
-1.85820732716e-09
-2.80980733879e-09
-3.59951987243e-09
-4.1376085636e-09
-4.39045128649e-09
-4.28711580803e-09
-3.78696064036e-09
-3.00149682398e-09
-2.20424739117e-09
-1.55103082884e-09
-1.02800026589e-09
-7.82320900633e-10
-8.05700704044e-10
-7.99674911657e-10
-7.10298112645e-10
-7.65928272005e-10
-1.16848851524e-09
-1.87492246358e-09
-2.48173601996e-09
-2.69938028873e-09
-2.42031215524e-09
-1.57710091477e-09
-4.30924200267e-10
4.52135705212e-10
8.4823744134e-10
7.90404241928e-10
4.01048236487e-10
-1.54539149523e-10
-6.84599662421e-10
-1.10370044741e-09
-1.3021524319e-09
-1.03496817067e-09
-4.60895402315e-10
2.27101603378e-10
1.158539478e-09
2.0227752409e-09
2.46792663006e-09
2.7982207751e-09
3.24238494737e-09
3.35873169893e-09
2.76880205029e-09
1.92232009797e-09
1.27831925411e-09
7.94420342769e-10
3.7710838548e-10
3.53534611525e-11
-3.55379449284e-10
-2.37517355773e-10
1.9422296074e-10
5.47586471609e-10
1.27992099341e-09
2.19071434577e-09
2.48614419118e-09
2.05423616214e-09
1.14244669904e-09
3.50692815987e-10
-2.26350073396e-10
-6.67968488139e-10
-7.65175683232e-10
-4.38125250868e-10
9.9773704923e-11
5.77569743876e-10
9.6659037721e-10
1.47727501144e-09
2.06389318477e-09
2.42295045112e-09
2.66205768773e-09
2.62789219029e-09
2.27321577835e-09
1.84452012176e-09
1.58976966892e-09
1.31397531778e-09
9.31251527376e-10
6.28048884126e-10
6.02239049069e-10
8.23667861042e-10
1.35564573889e-09
2.0886055563e-09
2.85560581467e-09
3.22542332435e-09
3.10197928372e-09
2.327182365e-09
1.21371393364e-09
2.55349728653e-10
-3.62105102644e-10
-4.59870492449e-10
9.92616735064e-11
9.3400247863e-10
1.4758291262e-09
1.73884894995e-09
1.84487629912e-09
1.62205200037e-09
9.51611023054e-10
7.52561668581e-10
1.03522926857e-09
1.31603424312e-09
1.59240330611e-09
2.06895420663e-09
2.40249968764e-09
2.09070601272e-09
1.81287242976e-09
1.96397124909e-09
1.92498232252e-09
1.93863734067e-09
2.03428430107e-09
1.99982869484e-09
2.27982475292e-09
2.73470855065e-09
2.78081509507e-09
2.31877641003e-09
1.5467905819e-09
8.93921303083e-10
2.1316981722e-10
-1.57750145547e-10
-4.02593489281e-10
-7.96778058977e-10
-1.216634715e-09
-1.37124745051e-09
-1.30804545187e-09
-1.14255914266e-09
-9.63065290781e-10
-1.27355403203e-09
-1.8295565436e-09
-2.02850515409e-09
-1.95786096516e-09
-1.55987215874e-09
-8.58870867967e-10
-2.01894749901e-10
1.37263383168e-10
-2.73274004608e-11
-3.06831332396e-10
-7.29293250004e-10
-7.63011090535e-10
-5.90746188404e-11
9.63516918161e-10
1.6767610114e-09
1.36748133027e-09
8.43951441392e-10
5.95726742133e-10
2.77409219456e-10
-2.01588759249e-10
-7.62405038461e-10
-9.99592898417e-10
-7.8646839746e-10
-9.787889222e-10
-1.38633458961e-09
-1.47759900154e-09
-5.5157853789e-10
4.57241937455e-10
1.31747674023e-09
1.78544973809e-09
1.62776862573e-09
8.18098301776e-10
2.33212734335e-10
2.66582020808e-10
6.3809829477e-10
7.49937136994e-10
4.38152779439e-10
-3.91316516137e-11
-6.84807079614e-10
-1.44359359332e-09
-1.89916306422e-09
-2.0468188005e-09
-2.05284829866e-09
-1.97959919225e-09
-1.73500471739e-09
-1.81389553968e-09
-1.93609613594e-09
-2.00858828607e-09
-1.8900911296e-09
-1.59090723417e-09
-1.10955937431e-09
-6.79111630076e-10
-1.71553817972e-10
5.21162431787e-10
1.06500755887e-09
1.17190481088e-09
1.17324566403e-09
1.42297045864e-09
1.77175067423e-09
1.97422542994e-09
1.80398620711e-09
1.67789434148e-09
1.46850186769e-09
8.17193670588e-10
1.50678690987e-10
3.07735540067e-11
-3.72247263396e-10
4.92092261037e-11
2.28729388945e-10
1.54618241225e-10
1.58472241135e-10
2.53754130338e-11
1.39808717175e-10
2.7623057311e-10
2.18798774671e-10
7.81328601536e-11
1.97037439465e-10
3.99685201656e-10
4.70341725501e-10
6.35196254014e-10
1.16511855496e-09
1.5373778224e-09
1.55745896187e-09
1.63277776682e-09
1.863087931e-09
2.12826472415e-09
2.2343018142e-09
2.43193492959e-09
2.50844783923e-09
2.39762331896e-09
2.1493317041e-09
1.51042152825e-09
1.19383364685e-09
5.52454369957e-10
2.82479558679e-10
3.13055754009e-10
6.61950319049e-10
1.59654021503e-09
2.54406091598e-09
2.93890278324e-09
3.034147403e-09
2.64418868067e-09
1.62334626671e-09
6.63150564735e-10
2.64807063267e-10
3.16001734599e-10
5.04191279655e-10
9.77412917177e-10
1.45856998286e-09
1.62672973982e-09
1.51778097401e-09
1.31972264808e-09
1.21532774316e-09
1.34708456514e-09
1.71425714827e-09
2.07429718459e-09
2.25938338621e-09
2.29669637868e-09
1.99115571274e-09
1.37388468759e-09
6.01087613657e-10
1.78260201332e-10
-7.63888193152e-11
-3.81829747128e-11
-1.15651337519e-10
-1.75894014794e-10
-5.24624255442e-10
-1.21282751366e-09
-1.65682439692e-09
-1.75392232476e-09
-1.8169432701e-09
-1.71542044214e-09
-1.03385368707e-09
-1.87583916499e-10
6.29277717174e-10
1.27389604806e-09
1.799175907e-09
2.11685730793e-09
2.45419749654e-09
2.81099572601e-09
2.62900815619e-09
2.0696140453e-09
1.5679769935e-09
1.48220220209e-09
1.37647173797e-09
1.04667268369e-09
9.30963112657e-10
1.11445861288e-09
1.26768962589e-09
1.33311614481e-09
1.45228764537e-09
1.59459910668e-09
1.83911430456e-09
2.16438824413e-09
2.18828886692e-09
1.72311086603e-09
1.19961464671e-09
6.78558517562e-10
1.10583539396e-10
-2.78954631069e-10
-3.88596269827e-10
5.94312197112e-11
3.06440426691e-10
-1.32076153399e-10
-5.56129645915e-10
-2.89482827087e-10
-1.43372184784e-10
1.93032879449e-10
5.14519999414e-10
5.58028693783e-10
6.70646806318e-10
1.06373616241e-09
1.41021498949e-09
1.43483484913e-09
1.00546114268e-09
2.2947816607e-10
-4.95344020521e-10
-8.34964421822e-10
-6.05121184551e-10
1.19851773905e-10
1.02261186579e-09
1.60399283441e-09
1.65654826418e-09
1.31243011793e-09
8.01511279087e-10
3.94107701457e-10
2.32930460605e-10
3.93871167506e-10
6.42887101417e-10
8.39495942211e-10
1.01658118311e-09
1.27905659629e-09
1.47362069955e-09
1.51324257148e-09
1.19525496813e-09
7.64251570286e-10
4.01375879419e-10
1.96421434754e-10
1.79498987017e-11
-1.83086171549e-11
8.7664521909e-11
2.40420137683e-10
6.05257556856e-10
1.16719191956e-09
1.17555382881e-09
1.19967986825e-09
1.60300985268e-09
1.21077515283e-09
4.46837831764e-10
9.01344699832e-11
-2.46689028525e-10
-1.09542620607e-09
-9.78299337156e-10
-7.03095791494e-10
-1.51024111023e-09
-1.70992912754e-09
-1.64214277484e-09
-1.75896090025e-09
-1.62326029287e-09
-1.25702992801e-09
-5.84389206134e-10
1.46772598551e-10
7.29539948349e-10
1.03060891561e-09
9.00035239835e-10
9.89420098895e-10
1.39946317677e-09
1.30347062693e-09
6.51177330509e-10
4.44563971817e-10
8.3337327043e-10
1.17194589198e-09
1.0266818591e-09
9.61741537103e-10
7.5041444006e-10
5.65222544604e-10
6.72027470022e-11
-1.38713164761e-09
-2.13569701475e-09
-2.04265637472e-09
-1.67275369852e-09
-9.51198518009e-10
-1.14994039952e-09
-2.05307149184e-09
-2.25462552274e-09
-1.36174776425e-09
-3.19317021555e-10
3.31634574674e-10
3.12101147877e-10
5.1082862983e-11
-8.93636700012e-10
-1.72884167919e-09
-1.00995634653e-09
-1.46767346947e-09
-7.79480799161e-10
-1.14711977981e-09
-2.04562649575e-09
-6.1893883302e-10
-2.03587015851e-09
-2.36849046777e-09
-1.98930028707e-10
1.10454208053e-09
1.22219297498e-09
-8.0831215956e-10
1.05286195344e-11
-9.23552844918e-10
-1.48720287286e-09
-1.07210696552e-09
-1.14984637886e-09
-1.36793915157e-09
-2.74682620399e-10
-2.19897376404e-10
-5.48369130052e-11
-6.74051878766e-11
1.08213541209e-10
5.66324534468e-10
-2.29013144982e-10
2.6529071908e-10
1.33295711437e-09
9.60133021536e-10
6.31302125918e-10
-1.20548289097e-09
-3.98625309329e-09
1.92267839291e-09
1.75049427654e-08
-1.04530966673e-08
-1.76914604792e-09
6.68887518887e-10
2.87078269956e-09
3.0800684472e-09
2.1413259722e-09
2.86438887136e-09
2.14490892156e-09
2.91563605873e-09
2.1573850816e-09
2.34669863938e-09
2.52771550944e-09
2.53076991025e-09
3.29994941234e-09
2.8104704597e-09
3.05297355728e-09
1.59086756921e-09
2.37464008579e-09
2.04288295603e-09
7.9835819894e-10
7.62390533022e-10
9.31658738465e-10
5.8807676407e-10
-3.82345590193e-10
-1.13684527016e-09
-1.36926094649e-09
-1.29239313004e-09
-1.31658608508e-09
-1.34102256209e-09
-1.36226487786e-09
-1.59682566513e-09
-1.485297684e-09
-1.12613623261e-09
-7.35710795128e-10
-9.70538821293e-11
7.32711451462e-10
1.5095694131e-09
2.17998074426e-09
2.61269006646e-09
2.77283773877e-09
2.75977903182e-09
2.58233833487e-09
2.397907075e-09
2.48321176311e-09
2.6480740208e-09
2.4840469376e-09
1.99381984311e-09
1.42594608538e-09
7.91515019759e-10
2.1680401208e-10
-1.64134656387e-10
-3.07237061177e-10
-3.2453474451e-10
-1.59668675173e-10
1.62702323673e-10
4.68698058067e-10
6.39249836062e-10
5.44150482459e-10
2.40432843177e-10
-1.08613764277e-10
-2.8777457339e-10
-1.32432542512e-10
2.60596250728e-10
4.5851799259e-10
5.75327647665e-10
6.55522291891e-10
9.90994455211e-10
1.64938956522e-09
2.30734202111e-09
2.60991091828e-09
2.46153989576e-09
1.83546195143e-09
7.71063726885e-10
-4.16196520776e-10
-1.40829709514e-09
-2.1346354707e-09
-2.60467120555e-09
-2.99672336981e-09
-3.15963236952e-09
-3.12861825815e-09
-3.08393430557e-09
-3.14368189209e-09
-2.80516178659e-09
-2.14522825298e-09
-1.51194110535e-09
-7.48412054173e-10
1.546716043e-10
1.04163199062e-09
1.69088952096e-09
1.91752080929e-09
1.78093420545e-09
1.37364773012e-09
7.98368363336e-10
5.48115020168e-12
-9.64159816168e-10
-1.96900601292e-09
-2.88960715978e-09
-3.50794459941e-09
-3.67795935851e-09
-3.55770354989e-09
-3.2505304397e-09
-2.81243229389e-09
-2.24537168779e-09
-1.72257956461e-09
-1.53636614742e-09
-1.36978144823e-09
-1.04878687793e-09
-8.95854232268e-10
-1.02348176863e-09
-1.28132749162e-09
-1.68549773273e-09
-2.22657073273e-09
-2.47563357109e-09
-2.31676428326e-09
-1.85182133401e-09
-1.08402503672e-09
-1.37728086619e-11
9.39101815496e-10
1.33795828806e-09
1.12375056431e-09
4.56378493244e-10
-3.53670666192e-10
-9.08269511813e-10
-1.1783107093e-09
-1.22038071821e-09
-1.08168140243e-09
-3.89122489046e-10
4.12150562024e-10
1.07060602313e-09
1.92386212145e-09
2.95540129099e-09
3.46234331014e-09
3.13585319007e-09
2.8775606572e-09
2.49288657344e-09
1.78051619469e-09
1.06282221386e-09
5.22565118347e-10
1.5246423644e-10
-4.56627838568e-10
-7.50464415004e-10
-3.94347200023e-10
2.99072087082e-10
1.09287748393e-09
1.70256332904e-09
2.16255812357e-09
2.29821553227e-09
1.92081661449e-09
1.02194863899e-09
2.11660828025e-10
-2.59972199204e-10
-5.98394895917e-10
-7.2723877159e-10
-5.22795511309e-10
-1.26771186051e-10
2.88613771283e-10
8.15289964039e-10
1.4280365627e-09
2.04938139281e-09
2.53062146772e-09
2.86757625634e-09
2.89960003097e-09
2.59910026986e-09
1.99719992809e-09
1.39213125958e-09
7.91132796142e-10
3.97407741819e-10
3.72550924707e-10
5.36146444624e-10
7.60752371302e-10
1.31447003796e-09
2.12417548731e-09
2.70229769023e-09
2.94548732621e-09
2.79686668705e-09
2.1584711896e-09
1.05708610675e-09
1.72306830262e-10
-1.37214890532e-10
-2.44412839238e-10
8.38852726566e-11
9.26963634838e-10
1.41282639206e-09
1.1171792827e-09
8.49979351361e-10
6.60838588305e-10
1.9498910204e-10
5.13471372626e-11
6.11606068796e-10
1.28356069398e-09
1.62184363026e-09
2.11962371754e-09
2.8285775889e-09
2.98842625857e-09
2.56802601916e-09
2.32448117693e-09
2.54723813656e-09
3.00091406531e-09
3.30364194659e-09
3.12804185223e-09
2.8951196502e-09
2.88643925656e-09
2.62878369246e-09
2.08530956581e-09
1.37183084445e-09
8.10401313384e-10
1.62817096638e-10
-6.68621127025e-10
-9.41663044605e-10
-6.8753494922e-10
-3.84442632012e-10
-1.04552453053e-10
1.48176767419e-10
5.98178902516e-11
-7.65419205204e-11
-2.12241283822e-10
-3.85639701325e-10
-3.45290863366e-10
6.10478879701e-11
1.0461894514e-09
1.79035448237e-09
1.5797890797e-09
8.59270032243e-10
-3.37131818501e-11
-3.71367196164e-10
-5.73651369462e-10
-8.28220769012e-10
-3.01157482199e-10
9.51565283275e-11
3.53556634382e-10
2.26126456698e-10
-2.37141273144e-10
-1.15797958922e-09
-2.12274164582e-09
-2.32070425702e-09
-1.9221871138e-09
-1.88903339721e-09
-2.02569369292e-09
-1.64553344773e-09
-9.29038442043e-10
-6.19643564432e-10
-9.75951361826e-12
6.11975375161e-10
1.14863935691e-09
1.30936809382e-09
1.30716580816e-09
1.04742823708e-09
6.33293500377e-10
1.19879725992e-10
-1.41441796697e-10
-1.3764751261e-10
-4.25546388085e-10
-9.68810027048e-10
-1.50825862962e-09
-2.01207425016e-09
-2.21908317324e-09
-1.97185024368e-09
-1.65101660963e-09
-1.48331435635e-09
-1.21794269269e-09
-1.31381326979e-09
-1.50130819489e-09
-1.55445495953e-09
-1.49496508278e-09
-1.24922388413e-09
-6.61079569179e-10
-3.83180764679e-11
3.618533221e-10
6.42453314669e-10
1.20113464734e-09
1.61022826746e-09
1.57658327176e-09
1.68110798448e-09
1.94685610135e-09
2.22210199866e-09
1.99244595567e-09
1.74435000542e-09
1.61661828401e-09
9.55075387808e-10
-3.44656859205e-10
-4.93056184531e-10
-3.63123024488e-10
-1.59925749672e-10
-1.68917004407e-10
-4.30220739405e-10
-1.31683977145e-10
4.5649316033e-10
3.96644353376e-10
6.9742998811e-11
-2.12216481638e-10
-2.65301306992e-10
-4.92448014875e-11
3.3291528849e-10
6.35053952479e-10
8.16640663953e-10
1.10218810979e-09
1.78884761076e-09
2.41198126857e-09
2.66826622747e-09
2.59576761873e-09
2.72489906209e-09
2.7950278844e-09
3.02125937319e-09
3.33107776727e-09
3.21039208943e-09
2.83141684334e-09
2.08722894247e-09
1.65733007559e-09
1.36444302308e-09
1.10325956677e-09
1.39674547156e-09
2.0729818483e-09
2.65497903339e-09
3.46359903649e-09
3.77326411761e-09
3.4892361827e-09
2.69383836391e-09
1.66960188893e-09
7.41735740482e-10
1.67355922686e-10
-3.77895279088e-11
-9.33167727661e-11
-2.15658823536e-11
9.63330570912e-11
9.16214363221e-11
8.42954483613e-11
2.09461083461e-10
4.60415769908e-10
7.23395994867e-10
1.06209503608e-09
1.31123193688e-09
1.33092987336e-09
1.11343994988e-09
7.44184936249e-10
3.08424389611e-10
-1.56282872724e-10
-5.57993118399e-10
-8.94559965925e-10
-1.04104076163e-09
-1.27686701612e-09
-1.40328117778e-09
-1.64647196024e-09
-2.01686422148e-09
-2.41669934796e-09
-2.23103057296e-09
-1.71498930237e-09
-1.17182264868e-09
-4.23904414717e-10
4.61102713629e-10
1.37085845063e-09
2.05275639558e-09
2.84588162498e-09
3.5995935643e-09
3.6053754112e-09
3.53950843515e-09
3.67923583716e-09
3.18053078991e-09
2.43333931021e-09
2.05716816669e-09
2.00319099213e-09
1.96602191585e-09
1.77121005545e-09
1.59180784195e-09
1.51808040016e-09
1.40487042335e-09
1.27742478731e-09
1.06789123787e-09
7.57800884997e-10
6.94784598337e-10
8.84520931434e-10
7.56541241126e-10
1.57683865219e-10
-6.39180802877e-10
-1.07102869257e-09
-1.10112080857e-09
-8.93225465516e-10
-3.52973452197e-10
7.10550528463e-11
4.5180568e-10
4.20135118102e-10
9.54445195296e-11
3.49246930746e-10
1.09355087512e-09
1.55260376902e-09
1.92075054592e-09
2.2141898639e-09
2.33407043693e-09
2.36503457335e-09
1.93411164363e-09
1.15591028773e-09
3.16192317012e-10
-1.99354286334e-10
-1.08927589984e-10
5.66183079966e-10
1.39324807252e-09
1.9890942463e-09
2.11736129254e-09
1.72851387744e-09
1.02317853083e-09
3.5954134567e-10
-7.19279202985e-12
-7.75024558826e-11
3.32045385653e-11
9.72936983325e-11
6.93690337648e-11
1.97487485275e-11
1.34143602005e-10
2.45830772392e-10
9.66725055448e-11
-2.30249813085e-10
-5.29020356438e-10
-4.60263727494e-10
-4.28555896147e-10
-4.69243547285e-10
-1.93737610861e-10
2.65483842592e-10
4.33421676912e-10
4.7831527015e-10
1.00105233619e-09
1.16936964127e-09
6.564268172e-10
4.77867189721e-10
6.18823636539e-10
5.05342397431e-10
1.29228428631e-10
1.64582736816e-10
3.17535711267e-11
-6.57849832551e-10
-6.90780779474e-11
7.12971348626e-10
-2.24139317404e-10
-1.10367461291e-09
-1.37456930197e-09
-1.2684547084e-09
-4.49453893022e-10
3.45139244468e-10
4.96670897633e-10
4.99218984497e-10
4.31157875482e-10
2.1293804783e-10
1.80294380733e-10
3.92098909883e-10
4.04278237813e-10
-1.89038695586e-11
-8.37970329993e-10
-1.04690053555e-09
-8.87740503666e-10
-1.03736590918e-09
-1.33236969702e-09
-1.49317720799e-09
-2.01580288919e-09
-1.9698691395e-09
-1.67472897936e-09
-2.18653593224e-09
-2.64416242265e-09
-2.20049249411e-09
-1.00543911982e-09
5.21472445845e-10
1.45277754805e-09
1.4376901972e-09
1.14714349673e-09
1.16631608749e-09
3.91670575909e-10
-3.48315194504e-10
1.35726780699e-09
2.40561338075e-09
2.97798996563e-10
4.00749075038e-10
2.0423446666e-10
1.44561419042e-10
-2.8339816591e-10
-2.49872178341e-09
-1.33829172787e-09
4.58961414338e-10
8.38468173608e-10
5.05428159517e-10
-5.54231127443e-10
-1.00426320317e-09
-8.75357570192e-10
-7.42203090911e-11
-5.6666059479e-10
-2.03288309682e-09
-1.9078057649e-09
-1.16238712517e-09
-1.69077517151e-10
3.30205206575e-10
8.9169614753e-10
1.24653603683e-09
-2.83655240409e-10
-1.23348325911e-10
4.62861154027e-11
1.74127019363e-09
3.83407769509e-10
1.88600525442e-09
1.78684395432e-09
1.17792721513e-09
1.49090927727e-09
-7.10187151329e-10
-2.28770893559e-10
1.19054350188e-08
-2.28369399942e-10
1.11958697386e-09
-1.10251587184e-09
5.15790548835e-10
3.42810496786e-09
2.92835171734e-09
3.33992629696e-09
2.29205463813e-09
2.5600986378e-09
2.2827743334e-09
1.6423306044e-09
2.50493244074e-09
1.5789367528e-09
2.81525640761e-09
1.84378309722e-09
2.3234075362e-09
1.07333364128e-09
6.53540446553e-11
9.92093162823e-10
1.27667664546e-09
-2.33608298721e-10
-6.36024758116e-10
-5.22484650217e-10
-1.0267923969e-10
2.84425193359e-10
3.22586992248e-10
2.25133734084e-10
-2.59153541861e-10
-1.01569499474e-09
-1.56587973992e-09
-1.74115499715e-09
-1.50816926764e-09
-9.54389291121e-10
-3.89046467839e-10
3.16486237445e-10
1.10217959976e-09
1.85808281332e-09
2.41683233214e-09
2.6092511127e-09
2.56038239384e-09
2.65725670498e-09
2.83246547012e-09
2.73261637927e-09
2.56416270188e-09
2.60562327059e-09
2.52186780573e-09
2.08043319714e-09
1.36268966488e-09
5.30986319909e-10
-1.25398992676e-10
-2.3554207494e-10
-9.13563150096e-11
-1.19834409729e-10
-8.4942581533e-11
2.43484279369e-10
4.11696552365e-10
2.11560878137e-10
-1.04996933592e-10
-3.85723981103e-10
-6.95812578697e-10
-8.23485007804e-10
-5.20234507193e-10
-4.1190365192e-11
4.27624159905e-10
8.6366613324e-10
1.30409658427e-09
1.77585603117e-09
2.30898460328e-09
2.88652033349e-09
3.07066693156e-09
2.52209830457e-09
1.43781190525e-09
3.00819304294e-10
-7.20035603407e-10
-1.59929180156e-09
-2.3288109976e-09
-2.62145664571e-09
-2.72093600668e-09
-2.87640784536e-09
-2.94271019634e-09
-2.86589870759e-09
-2.85057715212e-09
-2.80878581705e-09
-2.3832711927e-09
-1.6212532483e-09
-8.29535787663e-10
2.95707672216e-11
8.96410732914e-10
1.60416944078e-09
1.88489310016e-09
1.65952050279e-09
1.18193029284e-09
6.40626264601e-10
2.90904995405e-11
-6.54703952185e-10
-1.40043006488e-09
-2.22133628088e-09
-2.99055654643e-09
-3.46759618496e-09
-3.54420184471e-09
-3.20142455162e-09
-2.63703040524e-09
-2.22404339818e-09
-1.83252867633e-09
-1.42071099825e-09
-1.29348495551e-09
-1.37882945418e-09
-1.50971679684e-09
-1.65459077103e-09
-1.82886356477e-09
-2.12536765971e-09
-2.4272421553e-09
-2.42040765821e-09
-1.89841068721e-09
-1.17255427339e-09
-4.61753658449e-10
1.7968483134e-10
6.37938941734e-10
8.75234750414e-10
7.24704078435e-10
1.07356449746e-10
-5.97541404344e-10
-1.29497859223e-09
-1.66559457605e-09
-1.54849565923e-09
-1.23297228648e-09
-7.05310359135e-10
4.04813986152e-10
1.76714493258e-09
2.73979455998e-09
3.24165861661e-09
3.61686964829e-09
3.65659295242e-09
3.13906005681e-09
2.36934427698e-09
1.50129644231e-09
7.03381241598e-10
1.06250118838e-10
-8.39494354024e-12
-4.33824864595e-11
-3.42939076388e-10
-2.42060840502e-10
4.02460081591e-10
1.30178884301e-09
2.08868583914e-09
2.47797371137e-09
2.36048939455e-09
1.80537280004e-09
8.96868130706e-10
8.20190473156e-11
-4.12881127941e-10
-7.45023075351e-10
-9.04903932277e-10
-7.89383884864e-10
-3.76381631211e-10
1.70652998433e-10
7.45953541043e-10
1.52536573054e-09
2.33334876486e-09
2.92946302456e-09
3.19542120561e-09
3.15643143201e-09
2.64950804758e-09
1.83406900574e-09
1.22743607914e-09
7.40866261162e-10
1.91826069257e-10
-3.82016094376e-11
1.63462323985e-10
6.21133601265e-10
1.09056307228e-09
1.70067497496e-09
2.25442353185e-09
2.45840320041e-09
2.1562751508e-09
1.42067499935e-09
5.05468711219e-10
-3.37476772669e-10
-2.96223515281e-10
1.71453444568e-10
5.14902646548e-10
8.84019911446e-10
1.20166277238e-09
8.56577314504e-10
2.54201363735e-10
2.88198725139e-11
1.69779707464e-10
3.59253777985e-10
9.15957712238e-10
1.81502728157e-09
2.34877408186e-09
2.23740534292e-09
2.22045197848e-09
2.37366075688e-09
2.20185367606e-09
2.00870983529e-09
1.67479250683e-09
1.79883031756e-09
2.65046434778e-09
3.24115209091e-09
3.05391799902e-09
2.75311627066e-09
2.29608524441e-09
1.72386366656e-09
9.76599342031e-10
3.1733835259e-10
1.36040691109e-10
-1.80041088104e-11
-1.84089482075e-10
-2.1021663685e-10
-1.44595512118e-10
-5.62863981362e-11
2.89786911915e-11
-8.00284140104e-11
-4.96861903563e-10
-1.05429112301e-09
-1.16242238291e-09
-5.41264852966e-10
2.1145722248e-10
9.59066183539e-10
1.6155266703e-09
1.72443329622e-09
1.02841742961e-09
-3.96469017555e-10
-1.0400683678e-09
-2.68327755712e-10
3.18480153003e-11
3.12706352918e-10
7.50582152583e-10
8.24384980311e-10
2.52100722025e-10
-4.10390004044e-10
-2.91275148803e-10
-2.10526650908e-10
-7.47105082335e-10
-1.18375734291e-09
-1.32481458665e-09
-1.43129509845e-09
-1.40809910119e-09
-9.11555682011e-10
-6.37061949959e-11
6.15308449808e-10
7.7198667516e-10
8.25585225997e-10
6.50695792278e-10
2.26417836032e-10
-1.28071381625e-12
3.5265369726e-11
3.53805662068e-11
-3.5134460784e-10
-8.59155682795e-10
-1.51083318626e-09
-2.21230521559e-09
-2.47843703839e-09
-2.35269520913e-09
-2.11102315675e-09
-1.73610869248e-09
-1.49746192415e-09
-1.52041445238e-09
-1.35287729773e-09
-1.2784813021e-09
-1.54774095287e-09
-1.4736696157e-09
-1.13905412033e-09
-1.07603232795e-09
-8.15815124467e-10
-4.15689889195e-11
6.83132495477e-10
7.55682561475e-10
8.38552876903e-10
1.27518099704e-09
1.70010693349e-09
1.94383049967e-09
1.87100091279e-09
1.8440864409e-09
1.42207175668e-09
6.03951432051e-10
-1.49450493214e-11
-1.79579455147e-10
-3.8487398354e-10
-6.24607177503e-10
-1.23323169032e-09
-1.28179801842e-09
-3.2732825917e-10
2.23329553906e-10
-2.05378384655e-10
-2.4613845711e-10
7.00792708911e-11
4.37903751753e-10
5.15509333897e-10
1.84476576132e-10
-2.14114047198e-10
-2.86231702877e-10
8.46757661546e-11
5.89963847598e-10
7.79574211014e-10
1.10165073356e-09
1.65025544465e-09
2.41137828699e-09
2.83854674317e-09
2.9834601044e-09
2.91397672119e-09
2.72885216485e-09
2.77880127423e-09
2.68111847014e-09
2.28438179017e-09
1.87016489128e-09
1.44779360619e-09
1.27779324665e-09
1.40790767174e-09
1.73893407676e-09
2.66900674603e-09
3.38845450857e-09
3.7823366875e-09
3.65867326534e-09
3.01023735696e-09
2.26258000915e-09
1.55244198573e-09
9.32940722831e-10
7.83583403241e-10
9.59833171873e-10
8.68042752478e-10
4.74794154188e-10
2.62453158707e-12
-3.58554552287e-10
-4.80975377121e-10
-3.4010808052e-10
1.57074425014e-10
6.79562675121e-10
1.07583856916e-09
1.28381427447e-09
1.21148071804e-09
8.721547798e-10
4.23379360169e-10
-1.60041157911e-10
-7.55273868078e-10
-1.09958513784e-09
-1.174157495e-09
-1.14484973151e-09
-1.30351297857e-09
-1.58484777222e-09
-1.95292255132e-09
-2.29546945145e-09
-2.50697442542e-09
-2.19126661125e-09
-1.56465365973e-09
-9.4766977875e-10
-3.60249041698e-10
3.75827671664e-10
1.44729639785e-09
2.35572737532e-09
2.835804474e-09
3.38000874305e-09
3.4097446817e-09
2.72877847298e-09
2.47654137865e-09
2.38451124894e-09
2.12539455301e-09
1.98457617256e-09
1.91161106042e-09
1.70663967509e-09
1.30424735614e-09
8.65211968368e-10
4.41799468035e-10
-2.09908528615e-11
-1.17413007231e-10
1.51810810078e-10
2.62591383896e-10
4.30910012466e-11
-3.14838123088e-10
-6.67037387172e-10
-8.7347223367e-10
-7.74609936198e-10
-3.5467980007e-10
-4.38949413926e-11
2.38450362564e-10
6.73834191299e-10
7.19758623633e-10
7.63246142178e-10
1.30647208817e-09
1.38622616939e-09
1.25879345061e-09
1.47431251371e-09
1.77324399332e-09
1.95991396127e-09
2.20641833661e-09
2.46037406079e-09
2.55419651223e-09
2.08744070071e-09
1.2405297262e-09
5.54826062209e-10
3.80784508471e-10
7.89463505961e-10
1.38259832728e-09
1.86186142729e-09
2.03513556918e-09
1.80375750821e-09
1.30299162979e-09
6.14811664984e-10
-3.1250433556e-11
-3.8388316675e-10
-5.11720767282e-10
-6.48866624629e-10
-6.96739868016e-10
-5.38083238397e-10
-3.09014384455e-10
-2.27213358788e-10
-2.26306768837e-10
-4.20785215889e-10
-6.28611102245e-10
-6.0061158114e-10
-1.93638508006e-10
1.90139838417e-10
1.42927492487e-10
1.82432262114e-10
8.39428285454e-10
1.30033448744e-09
9.18298911305e-10
7.96519290412e-10
8.69768158592e-10
3.27497665759e-10
-1.00362392821e-10
-3.9199837766e-11
-8.93255535186e-11
-3.25321638118e-10
-2.4056582735e-10
5.30823689583e-10
2.76022626522e-10
-6.3809956532e-10
-3.55896986415e-10
-6.04147943695e-10
-1.11552672142e-09
-1.31751570374e-09
-1.82370005192e-09
-2.11909262788e-09
-1.71152536113e-09
-1.4568022251e-09
-1.14185462301e-09
-2.91208762596e-10
2.67100775549e-10
-1.36069943524e-10
-6.04846057662e-10
-7.92184069909e-10
-1.05292103399e-09
-1.36951124472e-09
-1.46889234988e-09
-1.46863315779e-09
-1.2365423186e-09
-1.42271126656e-09
-1.2294928869e-09
-1.41464666587e-09
-1.51531229648e-09
-5.4874775378e-10
4.35302090055e-10
4.82550434886e-10
5.35722081117e-10
5.41777519657e-10
4.01853606001e-10
6.52134054223e-10
5.55811161527e-10
3.79669813113e-10
2.04471889995e-09
3.39679185387e-09
1.31071233511e-09
-8.40147416426e-10
5.14841024901e-10
1.56845599063e-09
-1.73516393311e-10
-1.27362415048e-10
-8.0809230157e-10
-1.0463669048e-09
-1.33797917271e-09
-8.32715549347e-10
-1.31155322707e-09
-1.37069094986e-09
-4.46123994748e-10
7.35582204939e-10
-4.58330851248e-10
-1.77100962628e-09
-1.34336037303e-09
-2.63230099678e-10
-4.20161376123e-10
-8.71065813067e-10
-6.50417965472e-10
2.88971642703e-10
1.09963892443e-09
1.24429309358e-09
1.2996958246e-09
8.86841801709e-10
2.79926347266e-09
2.32182234051e-09
3.01572613046e-09
2.7228170551e-09
2.57088052019e-09
2.7147134909e-09
2.13263075548e-09
1.53403680682e-09
8.86953610058e-11
-2.60685570352e-09
2.51372323983e-09
7.94596811495e-09
8.93196666396e-09
3.05483448867e-09
2.01816272298e-09
1.66096130583e-09
2.3390751311e-09
1.92006741385e-09
1.72508932323e-09
1.46745408793e-09
2.00781240389e-09
1.80303011867e-09
1.86202257531e-09
2.41495424833e-09
2.24210754045e-09
1.82349136418e-09
1.49772439849e-09
2.52561533095e-09
9.76814753097e-10
1.57699641208e-10
5.19475459793e-10
7.20949975473e-10
5.37295444817e-10
6.214320745e-11
-4.73324763783e-10
-6.65043683372e-10
-8.14805037677e-10
-1.19256352094e-09
-1.60616843854e-09
-2.04831031964e-09
-2.51184867651e-09
-2.55996777121e-09
-1.97387814644e-09
-1.1530557867e-09
-3.44927062715e-10
3.51190024327e-10
1.15129565224e-09
1.86929498844e-09
2.34143708247e-09
2.4758586701e-09
2.37604600166e-09
2.46847169577e-09
2.67219667211e-09
2.70137695714e-09
2.62230219635e-09
2.42980633579e-09
2.03012198117e-09
1.52736981049e-09
9.82827575292e-10
5.54299207716e-10
1.97818615601e-10
7.14904277812e-11
2.64401334485e-10
4.98450513855e-10
4.68712881143e-10
3.72092679883e-10
3.308819859e-10
6.47412692575e-11
-4.40559623559e-10
-8.60524064522e-10
-9.02448807279e-10
-7.76527407033e-10
-3.98995293321e-10
1.17418460005e-10
5.85078690953e-10
9.07209132443e-10
1.32742725977e-09
1.97979742443e-09
2.71106505529e-09
3.12200531312e-09
3.02455246523e-09
2.34614137111e-09
1.2109251306e-09
-1.91485562012e-11
-1.10389642966e-09
-1.81740172668e-09
-2.23462093386e-09
-2.37008183092e-09
-2.26332476286e-09
-2.28477735456e-09
-2.43214584079e-09
-2.66300932925e-09
-2.88356696783e-09
-2.78304702688e-09
-2.29807831293e-09
-1.52963647066e-09
-7.33024853653e-10
-1.44588524096e-11
6.55957560947e-10
1.08420386655e-09
1.2823629894e-09
1.10449877597e-09
7.07846799296e-10
2.21579583837e-10
-3.50211701273e-10
-9.26814980556e-10
-1.52816602146e-09
-2.173238362e-09
-2.72736646906e-09
-2.96713862654e-09
-2.92938636808e-09
-2.74672540707e-09
-2.50421648614e-09
-2.08329023927e-09
-1.83748805424e-09
-1.76219529556e-09
-1.66108285506e-09
-1.38167379081e-09
-1.18545183232e-09
-1.36542685185e-09
-1.72222698715e-09
-1.99981260122e-09
-2.05614622144e-09
-1.75870043761e-09
-1.0305187066e-09
-1.11414478717e-10
8.59918753602e-10
1.60290344416e-09
1.95921077834e-09
1.94422394647e-09
1.59791071434e-09
9.61755513147e-10
2.22856697763e-10
-4.07472610815e-10
-6.66331173452e-10
-6.97645346237e-10
-3.77291556355e-10
4.17721709477e-10
1.38700840432e-09
2.1821360196e-09
2.85527013816e-09
3.52039937186e-09
3.57209506318e-09
3.16864691766e-09
2.33027827042e-09
1.19444096947e-09
2.71562574538e-10
-4.00123964723e-10
-6.95884152982e-10
-9.18187102955e-10
-1.18932743157e-09
-1.20376172002e-09
-6.75979725754e-10
2.40099959229e-10
1.06298738529e-09
1.58608274626e-09
1.69273181762e-09
1.59580329636e-09
1.3190623859e-09
6.90533445854e-10
-4.12454223336e-11
-3.38780144617e-10
-4.22060423991e-10
-6.07196415272e-10
-6.3573719043e-10
-2.65257684795e-10
3.07743163363e-10
9.36844697685e-10
1.80052395993e-09
2.68246017033e-09
3.26263454052e-09
3.20800726817e-09
2.88184833798e-09
2.40736673895e-09
1.66280063788e-09
8.30515804783e-10
3.52828821322e-10
-1.01261518295e-10
-3.66651763746e-10
-2.50721964146e-10
1.12994406922e-10
8.47388701092e-10
1.63759997833e-09
2.08675187763e-09
2.04524722351e-09
1.651414821e-09
1.01224492367e-09
5.13376504935e-10
3.66195848262e-10
6.52775258164e-10
1.11369289509e-09
1.6726463371e-09
1.88953568775e-09
1.52165233809e-09
7.14025057613e-10
-3.51162919273e-11
-3.82324414369e-10
-2.2031581068e-10
2.21678686692e-10
1.10644017548e-09
1.88180566507e-09
2.06937941717e-09
1.82610308439e-09
1.56504244785e-09
1.55597326608e-09
1.2985853644e-09
1.4986841927e-09
2.23126435405e-09
2.67991991852e-09
2.90168330851e-09
3.61058805195e-09
3.92493214308e-09
3.43056559858e-09
2.68983359214e-09
1.83464795276e-09
9.79885829866e-10
3.95005344623e-10
2.53057022223e-10
1.09224475032e-10
-8.64824874311e-11
-2.8842318887e-11
-5.71958997633e-13
-2.19774768385e-10
-8.585426427e-10
-1.62446530311e-09
-2.04689053361e-09
-2.06014713524e-09
-1.74988203054e-09
-7.75121120582e-10
2.93517880289e-10
8.07733794875e-10
8.16122385668e-10
7.29286685498e-10
4.89574032085e-10
1.34646474878e-10
-3.55643723564e-10
-1.93691024049e-11
7.20175363843e-10
1.17915541291e-09
1.16158456145e-09
8.75013833634e-10
8.48079032944e-10
4.68923368831e-10
7.17259029405e-11
-1.43334915334e-10
-4.23461416486e-10
-8.29153775804e-10
-1.06121285126e-09
-1.14338351748e-09
-7.0668128196e-10
6.13023154916e-11
1.10925740707e-09
1.72044673565e-09
1.7098918581e-09
1.07294933978e-09
5.98139939e-10
3.93682279159e-10
4.82449637965e-10
5.27826887016e-10
2.40720410863e-10
-4.9157430039e-10
-1.48859984194e-09
-2.35776914824e-09
-3.08710644396e-09
-3.4719509931e-09
-3.35897416212e-09
-3.05696752939e-09
-2.67611589356e-09
-2.24524251526e-09
-2.00064406993e-09
-2.06622413342e-09
-2.00505329994e-09
-1.90350495511e-09
-1.85798529865e-09
-1.53921048406e-09
-1.16081037333e-09
-7.57812002305e-10
-2.21704521197e-10
6.17371398551e-10
1.27002341342e-09
1.66397377851e-09
1.93155318061e-09
1.96215266935e-09
1.93065998437e-09
1.98747895447e-09
2.13389452863e-09
2.00657954743e-09
1.12268965554e-09
7.34480056256e-10
3.37897536286e-10
-6.6567811105e-10
-6.69593944365e-10
-2.45079665926e-10
-1.57731087306e-10
-1.77767651673e-10
1.61480902163e-10
9.47052291732e-10
1.00435237655e-09
2.87527028011e-10
-5.01529055102e-10
-9.22700094498e-10
-1.04219907918e-09
-1.00849648524e-09
-1.05610524259e-09
-7.64490010061e-10
9.34913674323e-11
8.47195041567e-10
1.47589794762e-09
2.09832189771e-09
2.74044635183e-09
3.39050496358e-09
3.86308603243e-09
3.99232462546e-09
3.42985747903e-09
2.63682034107e-09
2.03552562785e-09
1.36479284769e-09
6.27702235892e-10
2.59403840097e-10
2.44519777147e-10
3.90807449336e-10
6.32891159727e-10
9.3865396006e-10
1.10679423525e-09
1.19202269041e-09
1.2677220249e-09
9.80390661503e-10
6.70352885885e-10
7.70699185081e-10
9.45208301006e-10
9.09860769084e-10
9.65140680321e-10
8.91700382695e-10
5.53611416963e-10
1.23528320412e-10
-1.74074164507e-10
-2.60825584899e-10
-1.14459350404e-10
2.2238384162e-10
6.86685586933e-10
1.10219961091e-09
1.42482186091e-09
1.41722064018e-09
1.03402706412e-09
4.95317233104e-10
1.20445967517e-10
4.02425353241e-12
-1.32677123276e-10
-3.01824097128e-10
-4.98381904187e-10
-6.04155990508e-10
-9.03468211431e-10
-1.1129784228e-09
-1.35449800925e-09
-1.73962525564e-09
-1.63365973988e-09
-1.03221976051e-09
-4.75188871541e-10
-1.25045779937e-10
3.12798255993e-10
9.56633928431e-10
1.56947751236e-09
1.82142661549e-09
1.96697736902e-09
1.84447607605e-09
1.29556653898e-09
7.54122750303e-10
6.43353287175e-10
8.5239593636e-10
1.31687619387e-09
1.80017455884e-09
1.93715926817e-09
1.60114998008e-09
1.1752359797e-09
1.02789004572e-09
7.72483142347e-10
3.55005907754e-10
1.27756060375e-10
1.52739098631e-10
2.25214413972e-10
1.176856989e-10
-1.64669345935e-10
-6.09136967754e-10
-9.05908936869e-10
-5.20404337299e-10
7.19622251328e-11
2.83262217122e-10
2.40706858335e-10
-1.43666528733e-10
-7.14621368808e-10
-6.79386492268e-10
-2.47852851795e-10
1.7240678015e-10
3.24269623197e-10
6.43212256189e-10
1.12249907313e-09
1.67310352313e-09
1.92007207253e-09
1.68989425724e-09
1.11840705696e-09
4.95309292171e-10
1.48723738945e-10
3.54312187771e-10
1.0772971599e-09
1.67064289242e-09
1.84508085758e-09
1.69616145402e-09
1.31213789156e-09
9.06192269389e-10
5.23764940517e-10
1.11765150357e-10
-2.18627674016e-10
-4.08060239922e-10
-6.07063219341e-10
-6.91527862534e-10
-5.39904729811e-10
-2.57691007128e-10
-1.76891554908e-10
-1.5446990458e-10
6.34459441229e-11
2.22873426664e-10
2.27329666999e-10
1.76029116549e-10
3.96529156895e-10
8.19310405924e-10
1.10460296102e-09
1.47240753661e-09
1.8750912349e-09
1.23296656901e-09
4.86460338971e-10
4.26543769381e-10
4.65614011106e-11
-8.69604681233e-10
-1.12878998683e-09
-1.08104697476e-09
-1.59169688064e-09
-1.77195142104e-09
-1.04203941347e-09
-4.8786556663e-10
-9.53835331574e-10
-1.60556535108e-09
-2.00135081305e-09
-2.06188825779e-09
-1.78511473656e-09
-1.45929546658e-09
-1.44055613318e-09
-1.04614053524e-09
1.13574412733e-11
9.50570654837e-10
1.81275702152e-09
3.0125049171e-09
3.60242531456e-09
3.1246179333e-09
2.78117222533e-09
2.11947167512e-09
1.30628489389e-09
8.90714012828e-10
4.14505737134e-10
-1.15248149836e-10
-6.08244195028e-10
-1.21871693374e-09
-1.83945994694e-09
-2.59071887885e-09
-3.03023495781e-09
-3.76619223953e-09
-4.43711009639e-09
-4.24290661741e-09
-3.78151591258e-09
-2.80786170411e-09
-3.14603283203e-10
1.24887723589e-09
-6.37629462034e-11
-1.6404707318e-09
-8.41219760137e-10
1.2068076505e-09
1.62700206091e-09
9.71004689414e-11
4.96052140065e-10
6.4250837181e-11
-1.52874454496e-09
-2.18183744048e-09
-1.1798957197e-09
-1.84786463136e-09
2.81278042443e-10
1.82816942127e-09
9.83776040435e-10
-7.5359822515e-10
3.47179746838e-11
1.32867908182e-09
3.65012543235e-10
-2.88105022119e-10
-1.21336770892e-09
-9.54823607265e-10
-3.010444033e-10
1.1354811236e-09
7.83764668292e-10
2.81879859352e-10
8.45064442685e-10
1.64328203416e-09
2.09816667892e-09
1.92134685711e-09
3.54479222668e-09
2.79518670308e-09
3.06014877338e-09
1.4488710321e-09
9.93834768442e-10
1.76606708316e-09
9.46164601203e-10
1.43462902013e-09
-3.35940636068e-09
-2.40209914693e-10
-1.12457521441e-08
4.79217529645e-09
3.48539404125e-09
3.54546519435e-09
1.88162863518e-09
2.19055298599e-09
2.49588422304e-09
1.7078738021e-09
2.23143333713e-09
1.8634489788e-09
3.39323939769e-09
2.45736942317e-09
2.91283767363e-09
2.30097262451e-09
2.49342555109e-09
4.3058794804e-10
8.54120442501e-10
1.73424193775e-09
1.49217199164e-09
3.89186228275e-10
-1.94445306888e-10
-4.0016758692e-10
-3.70543033106e-10
-2.66547927732e-10
-4.0016038714e-10
-5.24310429735e-10
-6.41306008542e-10
-1.12216491863e-09
-1.53385723583e-09
-1.39265599649e-09
-1.06956205503e-09
-5.46915197998e-10
6.47963263991e-11
5.91358593224e-10
1.1813712511e-09
1.88050631653e-09
2.34835903571e-09
2.51098766752e-09
2.64614363272e-09
2.60673966001e-09
2.6018882788e-09
2.69242890109e-09
2.63805573862e-09
2.33588139337e-09
2.17624702303e-09
1.97456043148e-09
1.48927111555e-09
8.35763597408e-10
4.73398667407e-10
4.33136226809e-10
5.01064881047e-10
5.52889321375e-10
5.26925220443e-10
4.91319343472e-10
4.51425362206e-10
2.71985243979e-10
-1.46105983621e-10
-6.7025505358e-10
-1.207938863e-09
-1.31877608877e-09
-1.05825522397e-09
-5.18681048768e-10
7.43135885944e-11
5.39559563885e-10
9.87433528701e-10
1.76799958883e-09
2.55257455001e-09
3.04716788758e-09
3.10261387022e-09
2.65326130351e-09
1.75772069843e-09
5.52560672592e-10
-5.74488449772e-10
-1.38037221881e-09
-1.83333536933e-09
-2.08165377161e-09
-2.39239119644e-09
-2.70515345354e-09
-3.02007776223e-09
-3.10179272471e-09
-2.88387994651e-09
-2.65472873515e-09
-2.49854263594e-09
-2.15334409917e-09
-1.49080382167e-09
-4.94695193284e-10
4.90802229858e-10
1.27933315254e-09
1.67149500756e-09
1.66066315023e-09
1.38308706529e-09
1.01057468058e-09
6.04485909841e-10
1.44170936853e-10
-3.41127272914e-10
-8.30182073802e-10
-1.42850836005e-09
-2.11552916027e-09
-2.60621958178e-09
-2.81251022092e-09
-2.52494507643e-09
-2.25038358174e-09
-2.26096090567e-09
-2.19033106336e-09
-1.82603701582e-09
-1.39935772117e-09
-1.27421876761e-09
-1.5252335934e-09
-1.77267775179e-09
-1.89652010967e-09
-1.95628061344e-09
-1.87484114842e-09
-1.56955353357e-09
-9.13870940694e-10
-1.00206856396e-10
6.31276979627e-10
1.17673923819e-09
1.41929150338e-09
1.30550572946e-09
7.48466158402e-10
1.98718799865e-10
-4.07413953783e-10
-1.0801213795e-09
-1.47821246515e-09
-1.07885146536e-09
-4.05072754717e-10
1.70799958649e-10
1.12465858363e-09
2.57549939085e-09
3.6756401823e-09
3.90549358397e-09
3.45756646784e-09
2.75733576529e-09
2.19265532177e-09
1.61305312233e-09
9.01931270148e-10
5.45184286171e-11
-8.93864128359e-10
-1.12549248757e-09
-8.25562779624e-10
-6.78168035373e-10
-3.99972769342e-10
4.210528783e-10
1.27960801474e-09
1.81175307572e-09
1.76506758428e-09
1.34676544548e-09
1.02065267858e-09
7.87003722282e-10
2.56943209385e-10
-2.17581164809e-10
-3.36116225998e-10
-3.81704386252e-10
-5.13781386684e-10
-3.12522970285e-10
3.43417650003e-10
1.22596372412e-09
2.08958835275e-09
2.75663653959e-09
3.1517829152e-09
3.08344472053e-09
2.68430924325e-09
2.06786746336e-09
1.27435429288e-09
5.33068962168e-10
2.09333181486e-10
2.52940978709e-11
-1.41364928457e-10
9.44056336198e-11
5.90843491313e-10
1.12817842904e-09
1.72004111275e-09
2.15676560935e-09
1.9562861539e-09
1.31763362661e-09
1.01621263775e-09
8.69484826071e-10
8.40254460215e-10
1.24150084947e-09
1.68652814831e-09
1.6444130349e-09
1.24528560444e-09
9.2205973759e-10
3.26163165351e-10
-4.11572462038e-10
-6.03540197555e-10
-2.21736284932e-10
2.35327352087e-10
8.77356726766e-10
1.78860662988e-09
2.25907668088e-09
1.91569799439e-09
1.28348276695e-09
1.20330008707e-09
1.5767874067e-09
1.69612418457e-09
1.97117357024e-09
3.15375184328e-09
3.82671359064e-09
3.71783258747e-09
3.68961876703e-09
3.1569248287e-09
2.55104978483e-09
2.22834886665e-09
1.86846828428e-09
1.33673784593e-09
1.08546001641e-09
1.30193072103e-09
1.46292923793e-09
1.39031776204e-09
1.03857039003e-09
5.30588426182e-10
-1.78214038036e-10
-1.05422493533e-09
-1.59025348355e-09
-1.41388558443e-09
-8.35301435056e-10
-1.07693992375e-10
6.31318537181e-10
9.21363264749e-10
3.99678425393e-10
-8.47392936257e-12
1.19535407099e-10
1.23999694247e-10
4.85443052401e-11
2.02665338125e-10
2.24641607941e-11
-2.69399675907e-10
-4.17487716625e-10
-4.95131415252e-10
-5.79904166679e-10
-7.40012028435e-10
-7.30198304708e-10
-5.97563956596e-10
-7.20953787121e-10
-1.26820737478e-09
-1.34351622709e-09
-9.94945228636e-10
-3.93677196961e-10
-2.31206113283e-11
6.10412599373e-10
9.44019066748e-10
1.03010471924e-09
4.88682106391e-10
3.31977623017e-11
-3.62754565156e-10
-7.23565189698e-10
-8.14395497247e-10
-8.66924245471e-10
-1.16639020287e-09
-1.86775465902e-09
-2.5156018795e-09
-2.74764232024e-09
-2.50107272336e-09
-1.96460715907e-09
-1.52727049588e-09
-1.17181883703e-09
-9.73426886006e-10
-9.12724799237e-10
-7.82681816078e-10
-4.30185614007e-10
-1.92057097493e-10
-1.04270179323e-10
2.79390006004e-10
8.19553292621e-10
1.22697931662e-09
1.36205142556e-09
1.65170704737e-09
1.7695670233e-09
1.6715551469e-09
1.73948464817e-09
1.95483430468e-09
1.99128043834e-09
1.78691934025e-09
1.10070660946e-09
6.30262816492e-10
-3.32287637076e-10
-1.25839958029e-09
-1.18465011563e-09
-1.2865202271e-09
-1.21286817124e-09
-8.02235915773e-10
-3.25613017452e-10
6.15828528038e-10
8.81233596566e-10
8.85762681735e-10
9.05289332268e-10
6.36789628867e-10
-4.53332033371e-11
-8.07805157401e-10
-1.17000322191e-09
-1.07572570202e-09
-8.41979336933e-10
-5.31763790275e-10
1.17645358956e-10
9.3715244196e-10
1.32505588516e-09
1.69949516394e-09
2.05487313092e-09
2.44937449094e-09
2.68850290338e-09
2.92797351712e-09
2.88539571197e-09
2.30617001868e-09
1.75075908022e-09
1.56424115468e-09
1.62962955711e-09
1.58802329874e-09
1.97884768874e-09
2.5302661374e-09
3.06732314244e-09
3.39973868149e-09
3.17137436375e-09
2.58625670928e-09
2.09156236303e-09
1.7886328879e-09
1.43567764692e-09
1.29058429118e-09
1.33674165758e-09
1.18257742601e-09
8.17260586191e-10
3.98850874203e-10
5.96607656399e-12
-3.53810320749e-10
-6.73960399208e-10
-8.87448700816e-10
-8.25289611498e-10
-5.68325438048e-10
-2.10567732006e-10
8.71302558776e-11
2.19252096117e-10
2.50429555799e-10
1.46688001135e-10
-1.4633552955e-12
-1.82495366068e-10
-1.47911646107e-10
-9.64656177475e-11
4.91033469853e-11
4.55932424519e-11
4.50574941127e-11
-2.19185021695e-10
-2.54650291197e-10
-1.14247803926e-10
-4.64849140354e-10
-8.79600517043e-10
-6.80099694009e-10
-5.58702932009e-12
3.57202264187e-10
5.40218979034e-10
9.82113526518e-10
1.47073803467e-09
1.59913552398e-09
1.24518671334e-09
5.89090238992e-10
2.23736976754e-10
1.15677595541e-10
3.52299213971e-10
8.87408890268e-10
1.297932302e-09
1.61413393638e-09
1.79902555865e-09
1.55112612004e-09
7.95485910216e-10
7.6591683706e-11
-4.19699425529e-10
-1.05308999059e-09
-1.62539283066e-09
-2.02449641185e-09
-2.23353450823e-09
-2.17914853439e-09
-1.91646371217e-09
-1.50869421631e-09
-8.46718274514e-10
-2.68235852638e-10
8.56676417359e-11
6.75137351488e-10
9.04604929646e-10
8.88707815292e-10
8.92729527726e-10
1.03604665537e-09
1.39391468745e-09
1.63015556457e-09
1.89161769473e-09
2.31114464318e-09
2.60956536192e-09
2.99401667602e-09
3.10704559954e-09
2.74487040492e-09
2.15953336891e-09
1.75899944025e-09
1.59674604403e-09
1.67052091967e-09
1.87651425025e-09
1.95772776923e-09
1.75372411905e-09
1.35283951874e-09
9.39826253659e-10
5.33330060074e-10
1.15699618397e-10
-4.5761124382e-10
-1.10223296283e-09
-1.51134902932e-09
-1.73668753362e-09
-1.87116968411e-09
-1.84431111638e-09
-1.61624050731e-09
-1.41473301029e-09
-1.35912122096e-09
-1.10116887769e-09
-6.87161195932e-10
-3.54920780943e-10
3.57507196048e-11
5.90664026208e-10
1.09207026153e-09
1.48812804459e-09
1.97173261198e-09
2.39213793359e-09
1.76423579793e-09
7.95684962959e-10
7.87312042275e-10
8.98978089778e-10
1.97146918473e-10
-3.9477749276e-10
2.22701055459e-10
4.61010387037e-10
-4.97301513662e-11
-4.20855096107e-10
-8.47442911201e-10
-1.24360869096e-09
-1.47900761733e-09
-1.76952975385e-09
-1.91816455433e-09
-1.8154419042e-09
-1.75699197216e-09
-1.72789977855e-09
-1.84285951367e-09
-1.57728292097e-09
-1.04345649959e-09
-8.99632634488e-10
-9.5951648743e-10
-8.49048356273e-10
-1.24700190495e-09
-1.60399505788e-09
-1.76839134156e-09
-2.07057013374e-09
-2.10573788292e-09
-1.7932962278e-09
-1.95305426494e-09
-1.63876692503e-09
-1.39025846973e-09
-1.39108644444e-09
-1.77267055201e-09
-1.60589654096e-09
-1.25208664373e-09
-8.29656066341e-10
-1.26650060339e-10
2.41700004466e-10
-2.67027136622e-10
-7.98633484648e-11
1.68528046878e-09
3.61558046415e-09
4.33433620077e-09
2.51643663047e-09
-3.32807715306e-10
-4.28192095496e-11
1.85177495896e-09
-1.32078525092e-09
-7.7285742503e-10
1.04752691642e-09
-1.16656426814e-09
-6.16262632423e-10
-3.78307784133e-10
-7.35759076006e-10
6.23395073355e-12
3.48939246028e-10
7.3070366574e-10
-2.47426794222e-11
2.3954913635e-10
-7.67025126732e-10
-1.79047200819e-10
-4.84758226263e-10
-6.92094104059e-10
-8.16131067756e-10
-3.54750527321e-10
1.12958746835e-09
6.92591312399e-10
4.29344060304e-10
7.68092864702e-10
2.13074610717e-09
8.83124174104e-10
2.26659071015e-09
2.44297261592e-09
2.87310441687e-09
2.49791540805e-09
9.32397774712e-10
1.68241749742e-09
2.46374271082e-09
4.83495469545e-09
2.1872186408e-09
2.13191367856e-08
-4.0090898427e-09
-2.12874626238e-09
1.75141849537e-09
2.4589319872e-09
2.93072849179e-09
1.61943043339e-09
2.55210518788e-09
1.28339679311e-09
1.96353100371e-09
1.03362752927e-09
1.51683695579e-09
1.76117716195e-09
1.2610782161e-09
7.47494876309e-10
1.50460918816e-09
1.56573707112e-09
-3.89243932394e-11
-1.59838822916e-10
-3.35655863591e-11
6.6490339354e-10
1.24694833011e-09
1.5097570309e-09
1.39645578629e-09
9.40077822444e-10
3.15499867578e-10
-5.34576045539e-10
-1.2985828233e-09
-1.63333363219e-09
-1.73299722283e-09
-1.66858333181e-09
-1.41098155431e-09
-7.87989245117e-10
2.37685915329e-11
5.73617064628e-10
1.22398505516e-09
1.89333590106e-09
2.39704183084e-09
2.66465765536e-09
2.7017898857e-09
2.49741862322e-09
2.12526792158e-09
1.87416415734e-09
1.85548919843e-09
1.78721791937e-09
1.59407026695e-09
1.22993757919e-09
7.90694244834e-10
5.57808888733e-10
6.59072948127e-10
7.9517081396e-10
6.77551818904e-10
5.11093751143e-10
6.24157403008e-10
7.84003108067e-10
6.98683596872e-10
4.20748793472e-10
7.30913200515e-11
-4.24782364367e-10
-9.87701826387e-10
-1.27411627662e-09
-1.0647655192e-09
-5.45184074413e-10
-4.26656848279e-11
3.80118952333e-10
8.56501716813e-10
1.60878079403e-09
2.4432368902e-09
2.89877046808e-09
2.78919902718e-09
2.32074846155e-09
1.54056314274e-09
5.13421477091e-10
-4.51935223101e-10
-1.12086631124e-09
-1.7979888962e-09
-2.31654934865e-09
-2.37655506846e-09
-2.25152262929e-09
-2.32898358056e-09
-2.65596582677e-09
-2.86817214402e-09
-2.77142531133e-09
-2.61164355726e-09
-2.26292983375e-09
-1.62233617992e-09
-7.41876347952e-10
1.54085457501e-10
6.97983100625e-10
9.88914354051e-10
1.00406523238e-09
9.05540901053e-10
9.32131806366e-10
1.01739922503e-09
1.03452623123e-09
7.12370802267e-10
1.21159592775e-10
-6.1859409061e-10
-1.2544125962e-09
-1.56476377401e-09
-1.61018930394e-09
-1.77811443277e-09
-1.72738986472e-09
-1.60731108598e-09
-1.70324773166e-09
-1.92265552302e-09
-1.85993569789e-09
-1.54519477183e-09
-1.51240654996e-09
-1.97463285279e-09
-2.45910584071e-09
-2.49586791765e-09
-2.15695944755e-09
-1.64361502398e-09
-1.15337448285e-09
-5.21908032538e-10
3.06546067581e-10
1.10438174315e-09
1.56913742863e-09
1.55921883164e-09
1.08460790127e-09
3.57893548951e-10
-2.58700061597e-10
-4.32813719014e-10
-5.50963168453e-10
-7.21508381944e-10
-2.52669928166e-10
8.65040444196e-10
1.80957577753e-09
2.29525938728e-09
2.91781886264e-09
3.38637080752e-09
3.19988633979e-09
2.4486511248e-09
1.34897916608e-09
5.88396095491e-10
2.12554447784e-11
-4.56143759239e-10
-9.38174115895e-10
-1.31769654528e-09
-1.25279603382e-09
-6.00827998058e-10
1.05832955111e-10
5.81142105331e-10
9.54631542544e-10
1.23219958068e-09
1.29171296259e-09
1.1522151065e-09
9.65162279661e-10
9.07349739912e-10
7.59625076328e-10
4.20184669529e-10
1.72663007617e-10
1.78021338041e-10
3.02356457335e-10
6.01464966835e-10
1.13180584764e-09
1.87855009394e-09
2.59942468348e-09
3.18034783079e-09
3.44268198137e-09
3.06452115745e-09
2.20872438381e-09
1.4972497424e-09
9.24842664338e-10
2.44099013531e-10
-2.5713950927e-10
-2.68902044051e-10
1.05441837648e-10
3.621271255e-10
9.43699205931e-10
1.54075515452e-09
1.7436437917e-09
1.73444284337e-09
1.51034722758e-09
1.06448392045e-09
7.886013323e-10
1.08883798381e-09
1.73118594875e-09
2.08505884406e-09
2.25876094934e-09
2.07337465983e-09
1.48123361992e-09
7.68504946231e-10
1.92948176154e-10
-2.09101094458e-10
-1.76954500044e-10
4.19574805807e-10
1.0701706482e-09
1.16083409026e-09
1.31726667605e-09
1.39382320789e-09
8.54277620052e-10
3.91484228661e-10
1.98498783057e-10
7.5630047201e-10
1.74544183089e-09
2.30966233552e-09
2.88911503364e-09
3.66011406838e-09
3.42913665399e-09
3.16914073787e-09
2.99486540304e-09
2.47057826671e-09
1.92477649352e-09
1.6575181169e-09
1.64900797688e-09
1.73595972056e-09
1.70134360159e-09
1.5294319122e-09
1.22092557215e-09
4.93611838144e-10
-4.64362308168e-10
-1.30197879015e-09
-2.00772420658e-09
-2.2054610835e-09
-1.9741411237e-09
-1.62617302741e-09
-1.08329987064e-09
-5.03489512859e-10
-1.30896871779e-10
3.5388824778e-11
-2.93635194352e-10
-1.67840425531e-10
5.3924658521e-10
8.05766772613e-10
6.25286921443e-10
4.45402534435e-10
3.12275636664e-10
3.2460801286e-10
4.74890292428e-10
7.14612051445e-10
7.32098199608e-10
9.18734286239e-11
-6.60862728744e-10
-1.04206228336e-09
-1.0817627176e-09
-8.0164299271e-10
-3.90754933293e-10
1.73138616616e-10
5.24012697654e-10
5.03806726697e-10
2.79013499859e-10
2.91088801555e-10
1.51766281291e-10
6.89095183909e-11
5.3298701173e-11
1.5095821186e-11
-1.80132567662e-10
-4.53804677755e-10
-7.85887756374e-10
-1.34908335114e-09
-1.85932541065e-09
-2.13288486536e-09
-2.39720573172e-09
-2.51678010233e-09
-2.37791963854e-09
-2.07728541094e-09
-1.65746951839e-09
-1.17400693489e-09
-7.54690315317e-10
-3.17905599967e-10
-5.75090901956e-11
-2.5940701647e-11
3.0294916864e-10
7.38223941883e-10
1.27815365917e-09
1.56490776961e-09
2.03059420204e-09
2.36835282492e-09
2.3236011097e-09
2.22065187826e-09
2.15034856715e-09
1.67911322189e-09
7.99399202432e-10
1.38413653911e-10
-2.42904485317e-10
-6.82609452632e-10
-1.16332097899e-09
-1.00391276645e-09
-6.30252652096e-10
-1.01849782677e-09
-7.54221006125e-10
-1.63025043226e-10
4.36081360367e-10
9.46303514607e-10
9.86252976531e-10
5.96960022105e-10
5.14212526454e-11
-5.64571599784e-10
-1.22679254586e-09
-1.62755263233e-09
-1.54059220655e-09
-1.26360756236e-09
-9.54697822872e-10
-8.75802844824e-10
-2.29454009088e-10
6.12104971202e-10
1.4582823093e-09
1.94441664646e-09
2.20704810561e-09
2.21718454889e-09
1.87879488646e-09
1.6158623071e-09
1.16737445516e-09
7.48370549558e-10
5.27624022625e-10
6.29218424868e-10
7.99360238917e-10
8.69074438608e-10
9.56894814579e-10
1.0520716717e-09
1.41893434665e-09
1.52008786824e-09
1.35406178728e-09
1.4335947929e-09
1.90598337352e-09
2.24503626274e-09
2.50241654113e-09
2.5290243871e-09
2.19454971095e-09
1.60778796553e-09
9.66534473035e-10
3.91854805575e-10
5.83148302867e-11
-7.79863234537e-12
9.96644376728e-11
1.32740650747e-10
2.33647685753e-10
3.9777874225e-10
5.35126299318e-10
4.86200246916e-10
2.71671934432e-10
1.78525428524e-11
-8.80305460214e-11
-2.12977752499e-10
-4.7075973626e-11
2.85201922571e-10
5.47595365455e-10
4.24401623057e-10
1.6218393951e-10
-2.05494004652e-10
-5.58321767183e-10
-2.49579104941e-10
3.12072348757e-11
-9.06291372244e-11
-2.95672096832e-10
2.16967489439e-11
7.72856577997e-10
1.28284833928e-09
1.4074799201e-09
1.28533861614e-09
1.19551754835e-09
1.02089154188e-09
3.93052086646e-10
-3.22690753784e-10
-5.92521569461e-10
-3.48419379557e-10
4.16028702373e-10
1.26134513736e-09
1.73940883872e-09
1.88271431966e-09
1.82016008948e-09
1.34402571741e-09
5.26089304803e-10
-1.53984766459e-10
-7.10756463349e-10
-1.26326790215e-09
-1.67552137868e-09
-1.90030115887e-09
-1.92493531219e-09
-1.62982522172e-09
-1.35971128528e-09
-8.21065034674e-10
-1.26572133308e-10
-2.16416918023e-12
1.1970820182e-10
2.07687819986e-10
-1.19019564034e-10
-5.1673753167e-10
-7.28616047162e-10
-5.52539073252e-10
-2.02672114388e-10
4.83461842337e-10
1.46376356538e-09
2.24570118361e-09
2.77276574097e-09
2.81054679855e-09
2.46119483572e-09
1.96364683547e-09
1.74547994737e-09
1.71596339026e-09
1.59097266747e-09
1.38683942124e-09
1.24289718329e-09
1.05352856837e-09
8.6522975606e-10
7.87916400283e-10
4.89261476927e-10
-4.39931972145e-11
-6.80673135315e-10
-1.30153854477e-09
-1.59431908288e-09
-1.61118393238e-09
-1.62709354047e-09
-1.7563245102e-09
-1.7591714144e-09
-1.59224221103e-09
-1.42000796091e-09
-1.22375932088e-09
-7.38685998356e-10
-2.18480713799e-10
1.68019573e-10
8.36317980472e-10
1.52163031524e-09
1.26398660961e-09
8.04461071325e-10
9.91338562346e-10
1.01752035075e-09
5.09200632505e-10
3.84521617834e-10
3.53117024282e-10
-1.15300665879e-10
-8.04349262976e-10
-8.9270496377e-10
-5.94359630957e-10
-5.51847047334e-10
-5.82092899814e-10
-7.35632868097e-10
-1.36761516147e-09
-1.85300061563e-09
-1.85116128359e-09
-1.8598306658e-09
-1.62751493936e-09
-1.02473749497e-09
-4.54968924541e-10
3.35566925131e-11
4.64751308049e-10
6.83125295697e-10
8.46642676824e-10
7.92350273655e-10
4.8388310888e-10
2.51857094174e-10
-1.81798681469e-11
-3.55590360488e-10
-8.22594564418e-10
-1.11614209086e-09
-8.7486179122e-10
-7.71738494507e-10
-3.96300034482e-10
-1.30598504423e-10
-4.17232759708e-10
-9.51667774262e-10
-1.65514557762e-09
-2.50049208227e-09
-3.45724713641e-09
-3.64358506745e-09
-2.4559703365e-09
-3.90986173288e-10
8.95135101296e-10
6.54456618564e-10
-5.85484419735e-10
-6.88792793147e-10
1.6300225804e-09
2.35712413265e-09
-1.08850848799e-09
5.60940793056e-10
9.14006148328e-10
-2.57546296843e-09
-1.96069534916e-09
-8.81729534356e-10
-1.84244277346e-09
-1.61530877107e-10
1.47210938101e-10
1.03818731938e-09
-7.36269201599e-10
-4.44098315454e-11
6.85939774423e-10
9.32449999587e-10
-6.6182527581e-10
-7.41650613671e-10
-7.05602373744e-10
-2.34395192329e-11
5.63998158479e-10
-9.22539581755e-10
-1.9512250973e-11
4.24463879979e-10
4.5595868254e-10
1.50155817549e-09
1.14699272487e-09
1.06191673564e-09
4.62268230964e-10
1.13396535814e-09
7.08000959292e-11
8.22925542542e-10
1.63834806724e-10
-2.02121627676e-09
-2.19812673109e-10
9.66329914579e-10
-1.44299092938e-09
1.47913844157e-08
2.3563147715e-08
2.714638952e-10
5.66327075567e-10
1.84887810628e-10
1.84547430438e-09
2.53479903422e-09
2.54292080963e-09
2.69886211632e-09
2.44458091973e-09
2.98428447922e-09
2.5757835704e-09
2.10446585119e-09
1.43461832634e-09
1.18033183579e-09
1.04429352696e-09
1.81836175912e-09
1.72739918208e-09
9.92323873422e-10
-3.01799956689e-11
-3.38970091755e-10
-1.48270788076e-10
-4.94231019229e-11
2.35261495276e-10
2.60040173598e-10
-1.43961719715e-11
-2.02741147574e-10
-8.0797583454e-10
-1.27168486855e-09
-1.12175368414e-09
-9.29680916533e-10
-8.29236785032e-10
-6.47991216078e-10
-2.64275973609e-10
2.74419616669e-10
1.00638229101e-09
1.7248081083e-09
2.16045112911e-09
2.43201412717e-09
2.49533576921e-09
2.25211068192e-09
1.7491543763e-09
1.36501307626e-09
1.02446475036e-09
7.17668569835e-10
5.80988368851e-10
7.55837992021e-10
8.88821317707e-10
7.68720092599e-10
6.4117048327e-10
7.44026541088e-10
7.42481552992e-10
6.34985025173e-10
6.34219307388e-10
6.20864138909e-10
5.62348138297e-10
4.09043221657e-10
3.97275392921e-11
-6.24510192231e-10
-1.09533133838e-09
-1.22263022596e-09
-9.7963680218e-10
-6.30202677153e-10
-2.32111167987e-10
2.46238195239e-10
6.75102411379e-10
1.20681400325e-09
1.92585444882e-09
2.54833133846e-09
2.68445403295e-09
2.33790548447e-09
1.57594222663e-09
6.31409474109e-10
-4.87042303545e-10
-1.31275823731e-09
-1.71569763367e-09
-2.00968604077e-09
-2.23155827449e-09
-2.24953189011e-09
-2.23630758822e-09
-2.41487272141e-09
-2.60203862715e-09
-2.49832621903e-09
-2.30496087914e-09
-2.09792103936e-09
-1.60495718142e-09
-9.64670577035e-10
-1.91398952893e-10
2.55261001952e-10
4.04629332969e-10
4.26082983457e-10
2.92340716251e-10
2.97527098987e-10
3.83145189295e-10
3.86715433168e-10
2.3341263411e-10
-1.00552975234e-10
-5.44049262021e-10
-1.03697585051e-09
-1.84364259563e-09
-2.29383976006e-09
-2.34113807984e-09
-2.29320617942e-09
-2.14415590927e-09
-1.9066410946e-09
-1.6969064195e-09
-1.55277571671e-09
-1.6730899706e-09
-1.97262030251e-09
-2.13333929854e-09
-2.2888198193e-09
-2.32881883265e-09
-2.05380142248e-09
-1.3288818271e-09
-4.22153809373e-10
3.35912620453e-10
8.55456504626e-10
1.28202001385e-09
1.74963819093e-09
2.02044870609e-09
1.95000335815e-09
1.42714273118e-09
6.1862776017e-10
-1.29518325657e-10
-1.38092204907e-10
4.48716339083e-10
9.19317256665e-10
1.30025423107e-09
1.94538904029e-09
2.59418027898e-09
3.04194688238e-09
3.17090722508e-09
2.7962721758e-09
2.16019744275e-09
1.21156246995e-09
2.1309061964e-10
-3.22849995978e-10
-8.48406411178e-10
-1.49611810638e-09
-1.56084836421e-09
-1.09575993705e-09
-6.31372853169e-10
-1.15087213576e-10
3.44650506458e-10
6.0012877236e-10
8.27232705079e-10
1.03086154318e-09
9.79441984602e-10
9.10087350397e-10
9.39401466636e-10
7.48685645814e-10
4.3015763545e-10
2.78480292618e-10
2.04309005559e-10
2.00599848283e-10
5.23489654809e-10
1.20391249189e-09
2.09887988066e-09
2.71211987601e-09
2.83690688738e-09
2.76165944496e-09
2.44925548281e-09
1.73921317411e-09
8.97548298163e-10
2.4483529692e-10
-3.42726471118e-11
-1.3909953884e-10
-1.84158303502e-10
4.57028696911e-10
1.24128549134e-09
1.98486617547e-09
2.29978741366e-09
2.19367546707e-09
1.78433626034e-09
1.22792341425e-09
1.07621359631e-09
1.19726293914e-09
1.43257253001e-09
1.84077613026e-09
1.90904116246e-09
1.77592591139e-09
1.32388856788e-09
5.38559429732e-10
1.32745732944e-10
-1.66320424908e-10
-5.59057415297e-10
-4.36582380355e-10
1.65697008658e-10
8.97509758164e-10
1.11641102382e-09
1.28934084682e-09
1.40977453236e-09
1.03873598498e-09
5.95064362369e-10
3.01052450113e-10
9.98544271629e-10
2.095803457e-09
2.98806118737e-09
3.09188625088e-09
3.44007269638e-09
3.504669123e-09
2.95373263608e-09
2.32443374309e-09
1.80637314595e-09
1.45768102179e-09
1.38214685872e-09
1.26942794926e-09
1.16287501614e-09
1.14683771784e-09
1.02958506453e-09
6.36775229307e-10
-1.15749169825e-10
-1.10618310098e-09
-1.83415985003e-09
-2.28982916494e-09
-2.20447857822e-09
-1.61362063441e-09
-1.14648476979e-09
-1.15563119038e-09
-1.27635191421e-09
-1.23932333952e-09
-6.8094757399e-10
6.48204668381e-11
2.01915713966e-10
2.41905833472e-10
5.53445822022e-10
4.95688339414e-10
3.79551652016e-10
-8.26242523564e-11
-3.13267512245e-10
-1.51381728333e-11
8.88241100138e-11
-7.10330299897e-11
-3.54189367993e-10
-7.33798194734e-10
-1.02118715637e-09
-9.32276225484e-10
-3.62066350886e-10
5.73076657607e-10
1.2476511557e-09
1.76643046029e-09
1.55167711498e-09
7.83090430066e-10
5.64331465943e-11
-1.8160047576e-10
-1.4319134325e-10
-8.46808483523e-11
-1.15392145437e-10
-2.80251014994e-10
-6.38395603335e-10
-1.09565405793e-09
-1.44189021007e-09
-1.57275976503e-09
-1.51551473736e-09
-1.59003076683e-09
-1.76805316366e-09
-1.85721905147e-09
-1.86620607104e-09
-1.41461479625e-09
-6.19758760913e-10
-1.59307309742e-11
2.57006276943e-10
6.1396791429e-10
6.24029077517e-10
7.51816597225e-10
1.0037507714e-09
1.53335431002e-09
1.75838301202e-09
1.94327399902e-09
2.17939713856e-09
2.00515907318e-09
1.66009267354e-09
1.05244436619e-09
7.0603753692e-10
2.43305978934e-10
-3.09219541791e-10
-7.27027013353e-10
-1.43752502577e-09
-2.21424322698e-09
-2.59283815528e-09
-1.49271430449e-09
-5.59151012438e-10
-4.81771164575e-10
-4.91699237749e-10
-1.59096504417e-10
1.40564270564e-10
1.89144151188e-10
-2.68265498791e-10
-6.94319683128e-10
-8.86418285236e-10
-1.04878221925e-09
-1.32435210666e-09
-1.36560832866e-09
-1.19199558535e-09
-8.0918529171e-10
-5.32537025477e-10
-2.00634803281e-10
4.16877852903e-10
1.47771843319e-09
2.33147766908e-09
2.5395379718e-09
2.48623249436e-09
2.08553699416e-09
1.56125536354e-09
1.23081679939e-09
7.96402399865e-10
7.41461725324e-10
8.08309989038e-10
1.06799335001e-09
1.41432140522e-09
1.47541873873e-09
1.12812421893e-09
9.28359968652e-10
1.04252815148e-09
1.13604058886e-09
1.04157269832e-09
1.3207462874e-09
1.56687966231e-09
1.67500172396e-09
1.74693345591e-09
1.63047828413e-09
1.27429415354e-09
9.06456120152e-10
4.72568151603e-10
1.31113923971e-10
-1.58424383773e-10
-2.60287295461e-10
-8.91366651714e-11
2.32017570846e-10
5.94937519185e-10
7.30633467884e-10
6.43913387712e-10
3.905271079e-10
3.0772442276e-10
4.74329768375e-10
5.65729705581e-10
7.16107276355e-10
8.26027588954e-10
7.23675727497e-10
6.85987420026e-10
5.26745649458e-10
2.66682394212e-10
-2.32741784016e-10
-5.10555885221e-10
-5.09273477339e-10
-6.37518500718e-10
-6.3413629816e-10
-2.48139148931e-10
3.60437930045e-10
1.10085738133e-09
1.40797035218e-09
1.0522825829e-09
5.15697375211e-10
-1.1607400696e-10
-6.89793986091e-10
-1.06699978036e-09
-1.03284063566e-09
-5.99705679403e-10
6.87367236697e-11
1.04994688955e-09
1.79783081868e-09
2.02259588167e-09
1.94257074991e-09
1.48126644244e-09
5.49884154358e-10
-5.96114100888e-10
-1.52366161274e-09
-2.13737795163e-09
-2.44443703001e-09
-2.34599899016e-09
-2.0309969662e-09
-1.65443385818e-09
-1.50711344107e-09
-1.08296211625e-09
-4.299378304e-10
1.21480618262e-10
2.37933672466e-10
3.10927583729e-10
3.81572672629e-10
2.34127953434e-10
-9.38258395674e-12
-1.87747393858e-10
-6.89874454221e-11
5.20636424326e-10
1.53821437331e-09
2.29990366893e-09
2.69952619015e-09
2.72346588234e-09
2.56862995365e-09
2.23323878785e-09
1.93076332239e-09
1.70728130255e-09
1.365212129e-09
9.38679371048e-10
7.33389924853e-10
7.1338046554e-10
8.12288926307e-10
9.1065147434e-10
5.50609955714e-10
-1.60201882413e-10
-8.07861061576e-10
-1.28037203845e-09
-1.63571548884e-09
-1.83227710754e-09
-1.8872740039e-09
-1.89480433856e-09
-1.60912217478e-09
-1.10833231474e-09
-8.09733639664e-10
-8.09439295715e-10
-6.00075197526e-10
-8.93886574732e-11
1.14497678645e-10
3.37149182677e-10
1.17464453895e-09
1.28332013663e-09
5.55358845933e-10
3.50090575561e-10
4.1543577931e-10
-1.9565444642e-10
-6.08447482935e-10
-4.10888059417e-10
-1.73748480338e-10
1.82501718815e-11
-4.98474654294e-10
-1.23268027188e-09
-1.68192113611e-09
-1.83664695052e-09
-1.57398203358e-09
-1.15691148068e-09
-1.12122174745e-09
-8.34044120525e-10
-3.17770339393e-10
-1.93444113945e-10
2.14182868625e-10
6.28741545319e-10
4.74573078589e-10
2.93701898197e-10
5.95103643522e-10
9.96271576352e-10
1.24258501194e-09
8.0906517185e-10
1.31778103681e-10
-2.58424246493e-10
-1.93577521634e-10
-3.68114801404e-10
-7.43728385491e-10
-1.11753461303e-09
-1.80276605615e-09
-1.77600997941e-09
-1.38898156757e-09
-1.83885940058e-09
-2.6970388779e-09
-3.54740701739e-09
-3.11151200427e-09
-2.11862675976e-09
-1.57528731135e-09
-1.57457580367e-09
-1.69172808357e-09
-1.21117918754e-09
5.1673753167e-10
2.25875480836e-09
1.28646686403e-09
-1.16551733542e-09
-1.02960242871e-10
1.75232312655e-09
-2.43374842713e-09
-1.9613776342e-09
-1.30627345895e-09
-3.40870664282e-09
1.86320566858e-10
-9.06596304105e-10
-3.50857140379e-10
-1.37806924211e-09
6.96193320007e-10
1.09045475794e-09
1.42800861061e-10
-3.34422265982e-10
2.22811169742e-10
-1.43162041204e-10
-6.98051498535e-11
-7.75761901006e-10
-2.82817101308e-10
-1.77105907183e-10
3.54762809299e-11
4.20685689517e-10
3.67276874061e-10
-8.26002389723e-10
9.07869394625e-10
3.81119933518e-10
8.52719079429e-10
2.60497359632e-10
7.41518053015e-11
-3.47162382663e-10
-3.47983157589e-10
1.45953687097e-09
-7.13201741588e-13
7.15497200875e-10
-1.55207776156e-10
-8.18618380006e-10
-1.59322566923e-08
8.15013640716e-09
6.46952076058e-09
5.07399162833e-09
3.46655899312e-09
5.49544811783e-10
1.65519089388e-09
1.54319831517e-09
2.67625777157e-09
1.69371839924e-09
1.33995148893e-09
1.99418724365e-09
2.57179595105e-09
2.25676851609e-09
6.7051932786e-10
7.30514598722e-11
-2.57168202511e-10
1.42060289567e-10
4.84469705665e-10
8.4400099282e-10
1.02767818161e-09
1.16863674601e-09
1.09164441572e-09
7.56549711455e-10
5.84800864147e-10
3.84394562892e-10
2.84754265659e-10
1.3608261924e-10
-2.22953894794e-10
-3.13231089829e-10
-3.66932978685e-10
-4.27904951327e-10
-4.26702164542e-10
-1.85830134782e-10
3.76683598457e-10
1.04569224306e-09
1.66295310381e-09
2.13254351108e-09
2.36198652529e-09
2.39781517192e-09
2.23087768351e-09
1.74884266817e-09
1.18229324646e-09
9.39124063346e-10
8.90365035253e-10
8.20676670068e-10
8.25647059402e-10
8.72372784904e-10
8.82159403577e-10
7.24250015836e-10
6.04431699732e-10
5.89344772392e-10
6.13764732262e-10
6.39340468588e-10
8.42505979668e-10
8.89797523179e-10
5.04873141178e-10
1.73531639904e-11
-5.07669196937e-10
-8.79401887817e-10
-1.11490838737e-09
-1.10769780765e-09
-1.02067766606e-09
-9.44791560796e-10
-5.16268910692e-10
2.12218387462e-10
9.52533230175e-10
1.61500447449e-09
2.06859951159e-09
2.17200561143e-09
1.99241540955e-09
1.46108217671e-09
7.05277212354e-10
-2.16698477069e-10
-1.13213364939e-09
-1.92680704325e-09
-2.26541979298e-09
-2.27504769885e-09
-1.97359396688e-09
-1.56986291235e-09
-1.46415722394e-09
-1.75528096561e-09
-1.96711289429e-09
-1.86332637078e-09
-1.59130809251e-09
-9.91159838394e-10
-2.52300621801e-10
2.29441743653e-10
2.94747983887e-10
1.02982265727e-11
-1.85032653262e-10
-1.09351953491e-12
3.38656477806e-10
6.7230275573e-10
7.12387742926e-10
3.22975356854e-10
-4.13899261544e-10
-1.25064499365e-09
-1.77213014499e-09
-1.88538946147e-09
-1.96617438178e-09
-2.13412068643e-09
-2.10367747527e-09
-1.74671238031e-09
-1.22152950664e-09
-1.06680962146e-09
-1.2167928984e-09
-1.34086247287e-09
-1.64720909066e-09
-2.05904752104e-09
-2.1175095233e-09
-1.83148555526e-09
-1.65039658152e-09
-1.43303829225e-09
-8.56778220131e-10
-8.16104597976e-11
7.06004244555e-10
1.37626175321e-09
1.55254447671e-09
1.4230984665e-09
1.19802624818e-09
8.09205091105e-10
4.73720539927e-10
3.10004529574e-10
1.30448367833e-10
1.46923582174e-10
6.3818956257e-10
1.42294462414e-09
2.14002789421e-09
2.51872488998e-09
2.64553334548e-09
2.59916464436e-09
2.52593186981e-09
2.13674098285e-09
1.37141241017e-09
2.59107802082e-10
-7.25111024827e-10
-1.03836159641e-09
-8.9194602225e-10
-7.98871924423e-10
-4.84598560553e-10
5.97713034395e-11
3.92075034142e-10
4.66393704934e-10
4.62704876448e-10
5.67284646314e-10
9.42961546113e-10
1.10671037899e-09
9.09241587999e-10
7.62313135386e-10
6.64203426688e-10
2.785569491e-10
-2.72473558473e-11
3.26192387988e-11
5.03795291753e-10
1.10468004102e-09
1.707948341e-09
2.35407608459e-09
2.90823087319e-09
3.07412185239e-09
2.80931690671e-09
2.40940131209e-09
1.72616463156e-09
9.05662026764e-10
2.84815675547e-10
-5.22170400994e-11
1.5368078751e-10
6.55563055352e-10
1.26578973099e-09
1.88496425093e-09
2.46146990967e-09
2.49969047147e-09
1.94720147904e-09
1.37177589319e-09
1.13867300844e-09
1.05610451467e-09
1.1734746541e-09
1.38853052252e-09
1.45571886996e-09
1.11244023924e-09
6.62914666059e-10
5.47752701825e-10
-1.39760436297e-13
-6.82424164175e-10
-6.52928994644e-10
-4.42448083515e-10
-2.75959946084e-10
4.17537268052e-10
1.78020745118e-09
2.15924029551e-09
1.65789165843e-09
1.42245969777e-09
1.49837926084e-09
1.4681113855e-09
1.33012040103e-09
1.42465266607e-09
1.82443951168e-09
2.65398885187e-09
2.90882379625e-09
2.85076053475e-09
2.8370513065e-09
2.52569470058e-09
2.0805145123e-09
1.84210523083e-09
1.57374994655e-09
1.34174084603e-09
1.56323826767e-09
2.00963775989e-09
2.12489226247e-09
1.82644189757e-09
1.31983636226e-09
5.00097145905e-10
-2.993630429e-10
-5.57604436155e-10
-6.81969942757e-10
-8.21382910257e-10
-7.88433460958e-10
-8.25601849018e-10
-1.04932410857e-09
-1.191028909e-09
-1.11566097615e-09
-8.80993886242e-10
-8.70248002756e-11
2.61548951036e-10
-6.78198105043e-11
-3.26204669965e-10
-7.87181175685e-10
-6.29071888168e-10
5.19858001048e-11
2.85310342788e-10
1.12883233848e-10
-1.40342771448e-10
-3.89046891355e-10
-5.67313021918e-10
-7.4389779208e-10
-7.1055815176e-10
-3.84346705531e-10
1.46681118992e-10
7.97254938527e-10
1.23900040821e-09
1.82998545991e-09
2.08465523286e-09
1.6787714441e-09
8.84276985945e-10
3.17496747751e-10
5.56377826569e-11
2.01390130023e-10
3.02494100189e-10
2.50396068219e-10
1.22373390989e-10
-1.05511082591e-10
-3.93718701576e-10
-7.22299298958e-10
-1.02483659783e-09
-1.35061817484e-09
-1.58138298395e-09
-1.46166504125e-09
-1.24941954874e-09
-8.41184184753e-10
-2.67969672534e-10
4.84947538127e-11
2.11801739896e-10
7.10770280573e-10
1.10891430578e-09
1.25017234927e-09
1.29947347845e-09
1.41432225225e-09
1.26268959041e-09
1.1287764343e-09
1.27673403195e-09
1.19129424207e-09
9.92324932213e-10
3.97245323252e-10
-5.20589413998e-10
-1.40763746823e-09
-2.04264621033e-09
-1.84299800356e-09
-1.00755754922e-09
-7.56417362557e-10
-1.16239771308e-09
-1.35896949618e-09
-9.87166078048e-10
-2.04371262481e-10
1.4653246471e-10
1.79738697341e-10
1.18178883834e-10
4.72517329626e-11
-2.24296865532e-10
-8.09402238023e-10
-1.37131330732e-09
-1.60586774184e-09
-1.70439080262e-09
-1.94067149029e-09
-1.9407616993e-09
-1.75795811912e-09
-1.32521030985e-09
-6.97050184823e-10
5.72701739649e-11
9.62883019879e-10
1.95941061194e-09
2.4752867111e-09
2.33011352251e-09
2.28250603571e-09
2.106511224e-09
1.99563079955e-09
1.87657862475e-09
1.74825694489e-09
1.57029108751e-09
1.41411981138e-09
1.47054406412e-09
1.55215992376e-09
1.36567630306e-09
1.18981955771e-09
1.32395823634e-09
1.84286671345e-09
2.16352543519e-09
2.44260585066e-09
2.46708340877e-09
2.11056131204e-09
1.64740454351e-09
1.28310753136e-09
1.03661077931e-09
1.05361242463e-09
1.00274386098e-09
9.19693974569e-10
8.06327508425e-10
5.92037913648e-10
5.2841959832e-10
5.12312843312e-10
6.72832151322e-10
5.84400217563e-10
4.56116654185e-10
3.73530385962e-10
2.87332792769e-10
4.83390479812e-10
7.33026124202e-10
8.66430637021e-10
9.5138571229e-10
7.59901209069e-10
5.14701264465e-10
3.81098334178e-10
-8.63880432575e-11
-6.8891857754e-10
-1.19451381431e-09
-1.17764345909e-09
-5.83620100218e-10
-1.22821471418e-10
1.51510477341e-10
6.37741270383e-10
1.38161322796e-09
1.85579158919e-09
1.46818423033e-09
7.64639511376e-10
8.31676239921e-11
-6.30947219113e-10
-1.13930335977e-09
-1.15071247005e-09
-6.63531729561e-10
9.94454796559e-11
1.00918597006e-09
1.78529303699e-09
2.10279804332e-09
1.93696148598e-09
1.48428272677e-09
6.92332649713e-10
-3.44545156735e-10
-1.24886439474e-09
-1.81039178789e-09
-2.04994742257e-09
-1.93204837725e-09
-1.51411289783e-09
-8.99510238227e-10
-2.43548653873e-10
1.34561348067e-10
2.97361504045e-10
6.37978016092e-10
9.22756845706e-10
1.03486504441e-09
6.2168194922e-10
6.0260888483e-11
-2.43747706616e-10
-5.681558197e-11
5.56700546122e-10
1.2312284574e-09
2.00857981574e-09
2.51300741758e-09
2.62913859927e-09
2.50548745908e-09
2.39503182166e-09
2.17072690931e-09
1.77773919717e-09
1.3315696744e-09
9.18492034816e-10
5.477533371e-10
4.52428249216e-10
5.81660065978e-10
6.6478576184e-10
4.93795644294e-10
-9.46978599866e-11
-9.34070241266e-10
-1.57256918262e-09
-1.82155621153e-09
-1.98485294058e-09
-2.15009149265e-09
-2.13028161548e-09
-1.95247912957e-09
-1.70516276727e-09
-1.34514149803e-09
-9.36236475089e-10
-5.52991494725e-10
-6.76055111686e-11
6.67041622336e-10
1.05602900963e-09
8.16527479175e-10
9.43543881264e-10
1.11927484222e-09
8.69796957712e-10
6.48464707495e-10
8.80410280541e-10
7.36385033354e-10
-6.84546616983e-11
-3.61594977051e-10
-5.77718821675e-10
-3.51977764968e-10
-3.06267631969e-10
-9.9306396846e-10
-1.80735062197e-09
-2.0987138622e-09
-2.5158640362e-09
-2.50310941408e-09
-1.93583366161e-09
-1.41029079894e-09
-1.07072291368e-09
-1.21582304568e-09
-1.64769380526e-09
-1.69286967223e-09
-1.48487141467e-09
-1.59295790094e-09
-1.58220926459e-09
-1.4604542606e-09
-8.44634235147e-10
-8.53665744627e-11
1.74323721589e-10
-3.0915474377e-10
-5.78367013638e-10
-4.31145699383e-10
5.21721473532e-11
3.50864763675e-10
1.64896139007e-11
-2.66331722572e-10
4.34225934696e-10
1.23720512188e-09
1.09684117461e-09
-1.70339172726e-10
-1.31883707514e-09
-1.35175446953e-09
-5.17246598471e-10
8.85543300201e-10
2.22260513623e-09
2.26117478149e-09
5.83627723515e-10
-7.00245525627e-10
1.05581894546e-09
1.05898091945e-09
-4.24309974092e-09
-8.40821654652e-10
-5.40795384955e-10
-3.29772330388e-09
-9.66974506651e-10
-3.90662013779e-09
-1.18562674462e-09
-1.60517656296e-09
-7.62482118459e-10
-6.23473423903e-10
-7.2907873891e-10
5.55583733181e-11
4.01820995233e-10
9.35565889693e-11
-7.95941984519e-10
-1.02476422945e-09
2.92477512072e-10
-1.89745968097e-10
-1.73513640454e-10
-8.16044882154e-10
2.29620044089e-10
5.74154930549e-10
1.02441265784e-09
3.15108538356e-10
1.86597970148e-10
9.48627773014e-10
1.07439776612e-09
5.64231516056e-10
-8.21503374224e-10
-4.07365249389e-10
-4.66090890655e-10
-2.6661547861e-10
-2.72815759783e-10
-3.75819201334e-10
1.29211742082e-09
5.1353396836e-09
-6.24007838165e-09
-2.26766404913e-08
-2.39451386101e-09
3.03777355104e-09
4.9711275237e-09
3.31873268558e-09
2.32242203984e-09
1.87102039455e-09
2.15413607497e-09
2.68304250548e-09
2.51454351183e-09
1.04427759215e-09
8.81714181884e-10
2.37648423533e-09
2.71116812862e-09
1.85380450284e-09
7.95553831671e-10
-3.10634510329e-11
-2.5960395163e-11
4.0846522755e-10
8.34150634918e-10
8.24512035253e-10
4.92340229932e-10
-9.8857215274e-12
-5.13444055813e-10
-6.63731629337e-10
-6.09228447313e-10
-5.10880722356e-10
-7.93995555746e-10
-1.20267158862e-09
-1.29942689164e-09
-1.31465696754e-09
-1.26599661879e-09
-9.28772050181e-10
-2.96885895046e-10
5.4604783626e-10
1.37933682691e-09
2.04002464335e-09
2.20625231815e-09
1.92452577176e-09
1.34783609512e-09
9.2693822385e-10
5.16483845302e-10
3.62967593942e-10
4.89963243724e-10
7.34938301081e-10
1.0148839607e-09
1.18959932915e-09
1.10870852972e-09
7.88072677862e-10
4.29349566018e-10
2.71377497839e-10
2.97656271511e-10
5.0922773756e-10
7.6811954624e-10
8.82074276766e-10
6.454568935e-10
1.1142379608e-10
-5.26542361551e-10
-9.9590915213e-10
-1.26983621914e-09
-1.34352787379e-09
-1.2589745039e-09
-1.14736690167e-09
-7.95098816159e-10
-9.83489955057e-11
7.64502503797e-10
1.50621780961e-09
2.00150666711e-09
2.18473397552e-09
2.04343347451e-09
1.53931975131e-09
6.99427060189e-10
-3.19540426495e-10
-1.12534356859e-09
-1.68311809954e-09
-1.88674132605e-09
-1.90924868553e-09
-1.94468261481e-09
-1.85472750405e-09
-1.77673842774e-09
-1.83038949462e-09
-1.90597405615e-09
-1.84133654843e-09
-1.4391094009e-09
-1.03325822291e-09
-5.82990331222e-10
-2.34629396939e-10
-1.54222676838e-10
-7.24119996278e-11
-5.58652110032e-11
2.43456750799e-10
7.71905359998e-10
1.22597431203e-09
1.3762540505e-09
1.06483307008e-09
3.32433326743e-10
-4.97730112334e-10
-1.31729547517e-09
-2.00089341526e-09
-2.22776356688e-09
-2.03647896344e-09
-1.72819793415e-09
-1.53599768809e-09
-1.18319491303e-09
-8.97409808276e-10
-1.01660597868e-09
-1.33876267819e-09
-1.69686872653e-09
-2.0104403236e-09
-2.19880626327e-09
-2.12782003185e-09
-1.78545354974e-09
-1.31478868117e-09
-6.16064585532e-10
1.69459926057e-10
8.07766253442e-10
1.33487545871e-09
1.58970010634e-09
1.5484481195e-09
1.39458077299e-09
1.11440810854e-09
5.65216403615e-10
-3.8348569654e-11
-7.68189002942e-11
4.73525087075e-10
1.11988004726e-09
1.51566042703e-09
1.79298875484e-09
2.21567301859e-09
2.64856275881e-09
2.52982059807e-09
2.05350390216e-09
1.4365255269e-09
5.21217912445e-10
-4.22281923107e-10
-9.14536390953e-10
-1.06310427584e-09
-8.74796146166e-10
-5.21245017499e-10
-3.38526034733e-10
-1.97883413621e-10
9.4249356041e-12
2.99828063988e-10
5.02646715076e-10
4.6117344088e-10
6.15059845638e-10
9.57487314126e-10
9.24111251389e-10
6.13484787873e-10
5.4195370251e-10
5.44939917165e-10
5.78189771993e-10
6.72651733304e-10
9.22282507255e-10
1.41562583596e-09
2.12581934003e-09
2.81430466022e-09
3.14196834444e-09
2.96304279872e-09
2.41369153397e-09
1.77770065717e-09
1.05802800738e-09
8.01966559296e-11
-5.26492810124e-10
-4.69422694753e-10
-9.15894608284e-11
8.66718416465e-10
1.87519753753e-09
2.50022463162e-09
2.47219715843e-09
2.16741681043e-09
1.82697245783e-09
1.3580643356e-09
1.08956293813e-09
1.18269010786e-09
1.28809362389e-09
1.03458732348e-09
7.87355293895e-10
6.25257698806e-10
2.55232626348e-10
-9.33318076009e-11
-2.98879387087e-10
-7.33914026489e-10
-7.72334382185e-10
-2.46582725891e-10
3.40640228969e-10
9.44712786732e-10
1.86395486922e-09
2.54031364222e-09
2.27746195451e-09
1.46149775225e-09
1.4188276205e-09
1.74771526732e-09
2.17054649129e-09
2.36218091935e-09
2.41385839946e-09
2.66134025082e-09
2.92537312598e-09
3.10454685234e-09
3.30994048359e-09
3.10507624793e-09
2.31939135595e-09
1.48761770724e-09
1.20791133443e-09
1.28264759247e-09
1.42581437176e-09
1.56166490397e-09
1.22852218714e-09
2.76730746066e-10
-6.39880028575e-10
-1.32161068452e-09
-2.00420002012e-09
-2.42562040484e-09
-2.39765317687e-09
-2.38853063203e-09
-2.50075206845e-09
-2.54789797523e-09
-2.56355982618e-09
-2.5306093975e-09
-2.14387427082e-09
-1.58953969948e-09
-6.67699978695e-10
1.3241242548e-11
7.76542865384e-11
-1.32480188115e-11
1.95006466216e-10
3.77176995149e-10
4.93654189792e-10
9.38578150611e-10
1.07190028948e-09
5.20315398839e-10
-2.26490680865e-10
-4.25095343041e-10
-1.34959453552e-10
3.80924692424e-10
8.46996948354e-10
1.29902878615e-09
1.76383599837e-09
1.9648894328e-09
1.89111286309e-09
1.83831264081e-09
1.63969442611e-09
1.1256657058e-09
6.65459576549e-10
2.85876160797e-10
5.29649701918e-11
-1.25079237739e-10
-2.56610325437e-10
-4.20719570835e-10
-4.37949915048e-10
-3.79826514208e-10
-6.18738933244e-10
-1.07942617721e-09
-1.48507703192e-09
-1.73144715254e-09
-1.54463064789e-09
-1.18994703617e-09
-9.79369457406e-10
-7.65178012572e-10
-5.45457877813e-10
-3.00018593461e-10
-1.45556259239e-10
3.05907060632e-10
5.46936056185e-10
7.08718078561e-10
7.79218218948e-10
7.11069124385e-10
5.40735033857e-10
6.78191328779e-10
6.31036581089e-10
1.80813158635e-10
-1.95141567971e-10
-7.13990329262e-10
-1.03816677884e-09
-1.32819255404e-09
-1.78399114735e-09
-1.3182577046e-09
-7.53400231199e-10
-7.69008507318e-10
-6.60764472922e-10
-2.65050161723e-10
2.43585499807e-10
7.06478841086e-10
9.69757856916e-10
1.36498766527e-09
1.72987929455e-09
1.87200549387e-09
1.50595300593e-09
7.63395219977e-10
4.94900175257e-11
-3.9794454895e-10
-9.58132117957e-10
-1.28534878054e-09
-1.30661904839e-09
-1.03819097221e-09
-6.81218895848e-10
-2.84987940873e-11
2.50536887447e-10
2.66356921802e-10
8.09937774604e-10
8.84298797043e-10
4.82489448514e-10
1.32184997133e-10
-1.9160351135e-10
-3.53960669097e-10
-3.30619829203e-10
-3.19641435174e-10
-3.80618066497e-10
-4.05842707666e-10
-5.69218846049e-11
3.49553556673e-10
6.81357537936e-10
1.19163856097e-09
1.81783180766e-09
2.14481913607e-09
2.19757023044e-09
2.02376372835e-09
1.62075773402e-09
1.10871530598e-09
8.00501192297e-10
5.51318075258e-10
5.94983470722e-10
8.0746295609e-10
9.28818636993e-10
1.07713580012e-09
1.15652438662e-09
1.14774361957e-09
9.26281349799e-10
7.47731463199e-10
5.12148730678e-10
1.30126389434e-10
-1.29224352285e-10
-2.30294057322e-10
1.62644937191e-10
6.53515353202e-10
9.08798166252e-10
9.36407416926e-10
5.99118685571e-10
-2.06092433429e-10
-3.53662089984e-10
-1.19235133919e-10
-2.76565998157e-10
-7.13260186861e-10
-1.04011326055e-09
-7.13418582023e-10
4.39158631064e-10
1.34409644466e-09
1.44938602813e-09
1.57879741588e-09
2.12044449246e-09
2.10210622916e-09
1.28090524569e-09
4.52496858885e-10
-2.048396717e-10
-6.21909377566e-10
-5.48381835547e-10
9.16489648929e-13
8.14711440536e-10
1.6803990179e-09
2.38802897677e-09
2.51671826893e-09
2.10494273074e-09
1.47606703658e-09
5.29496812471e-10
-5.41268585205e-10
-1.44580530223e-09
-2.02555837941e-09
-2.16232286017e-09
-2.24432644913e-09
-2.07001088024e-09
-2.10635134653e-09
-2.09675171038e-09
-1.46483379151e-09
-7.69612441809e-10
-3.67278991644e-10
-3.45791883354e-10
-3.87946595557e-10
-6.86133956726e-10
-1.05051567217e-09
-1.18603713209e-09
-7.30971645789e-10
2.30115981879e-10
1.11278995797e-09
1.65362472996e-09
1.96144116167e-09
2.04126554662e-09
2.05644480055e-09
2.02019602557e-09
1.75472573551e-09
1.24307378965e-09
8.28294884395e-10
6.66387501143e-10
6.20139078706e-10
8.508081731e-10
1.19624472613e-09
1.27488157089e-09
9.20447410375e-10
2.12735289318e-10
-8.09051989899e-10
-1.69252514158e-09
-2.12358020844e-09
-2.31832218861e-09
-2.28765387845e-09
-2.00910857605e-09
-1.56930916456e-09
-1.29846085056e-09
-1.23105944455e-09
-1.11988841171e-09
-9.25276662845e-10
-6.44534898137e-10
2.33954735196e-11
3.22876677516e-10
-2.76290288933e-10
-4.21472159609e-10
-3.37108948612e-10
-7.56608792003e-10
-1.1724375946e-09
-1.11235331249e-09
-2.69867238094e-10
6.50799130298e-10
8.14394226698e-10
-2.24935528374e-10
-1.01571362947e-09
-7.9862247322e-10
-3.48665866144e-10
-4.28874804051e-10
-2.43852315185e-10
-6.85563056519e-11
-2.75666872684e-11
1.95197895662e-10
5.82360562226e-10
1.12928253649e-09
1.55710320804e-09
1.27036392067e-09
8.45535393004e-10
9.9460239205e-10
1.04123367338e-09
9.05031198977e-10
8.83158425999e-10
8.46761327611e-10
1.07428204024e-09
1.40245701472e-09
9.80241795463e-10
-1.91264698171e-10
-1.19733443402e-09
-1.20791853421e-09
-7.9343778455e-10
-7.77499589098e-10
-1.71993936292e-09
-3.04023079362e-09
-3.56658511386e-09
-3.41062517245e-09
-3.25087094695e-09
-3.00601659179e-09
-2.15644254569e-09
-1.12340455135e-09
-1.02635490439e-09
-9.72772447175e-10
8.30125322594e-10
1.96166901353e-09
-8.38358906358e-10
-1.74727311612e-09
1.04111868866e-09
-1.18300009545e-09
-2.9470719925e-09
-8.79940177255e-10
-2.89807240705e-09
-1.06843634824e-09
-1.64324264712e-09
-8.78105927408e-10
-2.27870497536e-10
-1.22835701571e-09
-2.55164651954e-10
3.35950419298e-10
1.90282351711e-10
-6.0261608461e-10
2.64182270589e-10
3.60416860101e-10
-1.01898982056e-09
-8.66897246296e-10
-3.72746059923e-10
-8.13791986272e-10
-9.63903800459e-10
-1.1098033198e-09
-1.08983917675e-10
4.88991273417e-10
5.05704927532e-10
-3.23525081237e-10
2.74933342152e-10
7.74887763005e-10
1.33964274542e-09
-1.52588750283e-10
-9.70122928116e-10
-8.8894583155e-10
-1.26018173761e-09
-5.43521560495e-10
-3.22731157255e-09
-2.23354880191e-09
4.10095490688e-09
2.6786095162e-08
1.12890452686e-08
-7.00842429745e-09
-3.29355209013e-10
1.27597509043e-09
2.66528107161e-09
2.10544396249e-09
2.30152827813e-09
1.78929844404e-09
1.92022729132e-09
2.22850599126e-09
2.62117299555e-09
1.49551343074e-09
3.94078955276e-10
6.8828262785e-10
5.85624127232e-10
3.78005075734e-10
5.32130449662e-11
1.05114459414e-10
4.19835268438e-10
7.62258290003e-10
1.08344132514e-09
1.06420753625e-09
9.92738707808e-10
9.1975030226e-10
8.18853431649e-10
8.56801778235e-10
7.60613140261e-10
2.93386378424e-10
-4.86926207092e-10
-1.07443800019e-09
-1.36783666059e-09
-1.32877997139e-09
-1.05568765535e-09
-5.96573351564e-10
2.11661251541e-10
1.15978207534e-09
1.84369807629e-09
2.03258684704e-09
1.80502890466e-09
1.27925183738e-09
6.71263446304e-10
2.83414471294e-10
2.69600210957e-10
6.163854522e-10
9.29954931692e-10
1.01727047603e-09
1.02764874721e-09
9.10438022037e-10
6.27130912169e-10
2.1734568965e-10
-2.33378752792e-11
-2.60170404914e-11
1.41020821322e-10
4.55635115954e-10
7.46546887623e-10
6.80669747183e-10
2.47108733351e-10
-2.14470859827e-10
-7.12122621613e-10
-1.20703550236e-09
-1.66148900736e-09
-1.85259043993e-09
-1.66152860615e-09
-1.13495744548e-09
-3.42764587601e-10
5.9553383038e-10
1.62755993798e-09
2.34750639117e-09
2.38173107504e-09
1.84507307546e-09
1.0305272828e-09
1.19626992536e-10
-7.98265091491e-10
-1.6703847856e-09
-2.13502155891e-09
-2.14195362361e-09
-1.91419546382e-09
-1.73603997694e-09
-1.56814745888e-09
-1.44304323367e-09
-1.4688029879e-09
-1.5585651869e-09
-1.53107092095e-09
-1.28216181907e-09
-8.57719538433e-10
-5.5390237278e-10
-4.82141317973e-10
-5.80015975028e-10
-6.35459363623e-10
-3.75589655406e-10
1.48396784227e-10
8.20805419076e-10
1.25993186289e-09
1.11923545518e-09
5.02886001884e-10
-3.93222340269e-10
-1.35107091395e-09
-1.91172032767e-09
-1.9729362458e-09
-1.80075816454e-09
-1.47393600756e-09
-1.03356019015e-09
-6.20166607277e-10
-4.31892782443e-10
-5.75098525252e-10
-9.88671255595e-10
-1.42836521148e-09
-1.72018987291e-09
-1.96593805959e-09
-1.9554903317e-09
-1.73975718102e-09
-1.64215399803e-09
-1.51067288527e-09
-9.8995212823e-10
-2.718853735e-10
5.54784861997e-10
1.1588254575e-09
1.32636629807e-09
1.07122615713e-09
6.61864451084e-10
3.3601267622e-10
3.12621437865e-10
5.09976091169e-10
4.50476897064e-10
3.3924580098e-10
7.54019412283e-10
1.56400504425e-09
2.39045064396e-09
2.90894492196e-09
2.96123607745e-09
2.59308930055e-09
1.75275765446e-09
9.91757420139e-10
4.88250543105e-10
-9.07536510677e-11
-6.97292345256e-10
-7.94796848914e-10
-2.94166495768e-10
2.29381604314e-10
3.52077291339e-10
2.03245555694e-10
7.19433786498e-11
1.0277050749e-10
2.85066185541e-10
3.47038715853e-10
2.16323956158e-10
1.60902590419e-10
2.02296878793e-10
2.05903333324e-10
1.85484121823e-10
2.53863397589e-10
3.13901939923e-10
5.60537605373e-10
1.14992727051e-09
1.77639919105e-09
2.25792768068e-09
2.58858774395e-09
2.91568518664e-09
3.00311846856e-09
2.49391783605e-09
1.60368536145e-09
5.90201969735e-10
-1.23326726571e-10
-5.3001096147e-10
-2.87207061316e-10
4.78475147619e-10
1.4409874847e-09
2.3396318435e-09
2.95386922015e-09
2.94601256604e-09
2.4869654955e-09
1.88212944341e-09
1.60435843501e-09
1.47871687327e-09
1.21525855116e-09
8.4773668605e-10
5.05110204524e-10
1.16829877986e-10
-3.42978781057e-10
-7.7998541904e-10
-8.27223493596e-10
-7.66255438481e-10
-1.06249483563e-09
-1.12756136554e-09
-3.22566451699e-10
6.15796340786e-10
1.09473502718e-09
1.77276838432e-09
2.55890940354e-09
2.60270863021e-09
2.03395014657e-09
1.29791112618e-09
1.20462654066e-09
1.79494667149e-09
1.85040022448e-09
1.52898002012e-09
1.5517677475e-09
1.95632254157e-09
2.07720007238e-09
2.02234706574e-09
1.83441925387e-09
1.46015605206e-09
1.20084115042e-09
1.20545070372e-09
1.27168444503e-09
1.41097774266e-09
1.55761481594e-09
1.45516363987e-09
9.03426706817e-10
2.72784631323e-10
-2.27302350187e-10
-6.43202409431e-10
-5.97176227264e-10
-4.61955146411e-10
-8.15620411941e-10
-1.38100172311e-09
-1.79530168418e-09
-1.88517495038e-09
-1.48150551749e-09
-9.33295417877e-10
-7.90374913412e-10
-9.88537847906e-10
-9.58381780918e-10
-6.40933737561e-10
-4.64985089142e-10
-4.78767585744e-10
-2.20417454633e-10
1.36546793295e-10
3.28817343091e-10
5.23072067566e-10
7.08448192688e-10
4.83536381237e-10
-5.12298231994e-11
-3.98958447387e-10
-1.27170985602e-10
6.84062114137e-10
1.65375856116e-09
2.32794384762e-09
2.37587532452e-09
1.78421518757e-09
1.16868481513e-09
8.68084680609e-10
9.87785259132e-10
1.03455841848e-09
8.37692714945e-10
4.89099270118e-10
1.36328682311e-10
-1.92454355946e-11
3.43925022738e-11
2.53523737377e-10
1.13917884593e-10
-3.41384347413e-10
-8.27037887501e-10
-1.30265641651e-09
-1.58900056301e-09
-1.30494912294e-09
-9.79349446253e-10
-8.77771984668e-10
-8.03298836243e-10
-7.4594189434e-10
-5.06227388042e-10
-3.91307393989e-10
2.56802654855e-11
-2.93558326112e-11
6.56234540721e-11
2.89305161926e-10
7.15816955813e-10
8.01863433034e-10
7.90026359355e-10
3.86429559548e-10
-5.25314587294e-10
-1.06669400147e-09
-8.74127413655e-10
-6.9131568078e-10
-9.24029089193e-10
-1.45968679581e-09
-1.73271939602e-09
-8.21435611588e-10
1.20024568626e-11
-1.45233963202e-10
-6.81231330027e-10
-6.90879035296e-10
-2.58971853294e-10
7.17521609619e-12
8.17725607279e-11
-9.73355205843e-11
-3.45239617873e-10
-5.50024655948e-10
-9.61685632929e-10
-1.61363249287e-09
-2.07359277081e-09
-2.31939622639e-09
-2.23648122997e-09
-1.75413249481e-09
-1.02471743088e-09
-5.41767950832e-10
3.97077293091e-10
1.4100186896e-09
1.69005561702e-09
1.93507048493e-09
2.23056534011e-09
2.32463957209e-09
2.12042119906e-09
1.89205222263e-09
1.63833536174e-09
1.07354099229e-09
7.49109585805e-10
6.34203637279e-10
5.18161394055e-10
6.0185460199e-10
1.00379460535e-09
1.39291984725e-09
1.67801462016e-09
1.85311454156e-09
1.92931489605e-09
1.88120257761e-09
1.61529055986e-09
1.29026453625e-09
1.07007789809e-09
9.98908072279e-10
9.17341764074e-10
8.39636232042e-10
8.63442516541e-10
8.28960652292e-10
8.56524374945e-10
1.0805595073e-09
1.27429521233e-09
1.20530204944e-09
8.19044437578e-10
4.92045462467e-10
2.71743098435e-10
2.97266848114e-10
3.07233968453e-10
3.57314443113e-10
3.8432161218e-10
3.69395515221e-10
2.23376987751e-10
1.69876692737e-11
-5.10836676643e-10
-1.1097724031e-09
-1.24493133291e-09
-1.27334293554e-09
-1.35862898893e-09
-1.26783976248e-09
-8.78618805857e-10
-1.52948739286e-11
1.32911073776e-09
2.05925652642e-09
1.97892730983e-09
1.9698665984e-09
2.02282055716e-09
1.74750096799e-09
1.12681131786e-09
4.61319554063e-10
-4.79077599802e-11
-3.00932594951e-10
-1.08999164268e-10
4.63483299727e-10
9.76334644235e-10
1.35733535787e-09
1.51202644392e-09
1.19652043536e-09
5.54657714411e-10
-3.29702492521e-10
-1.30020669134e-09
-1.82586713278e-09
-1.95530477855e-09
-1.700631141e-09
-1.09120311155e-09
-6.9955942894e-10
-3.54677258971e-10
-2.48461444968e-10
-1.14959311601e-11
8.28386363953e-10
1.50933139684e-09
1.68301719674e-09
1.32041890917e-09
6.33060989833e-10
1.80676786331e-10
3.53413062297e-10
8.8805475289e-10
1.46941539272e-09
1.81883681225e-09
1.80292233373e-09
1.69217955213e-09
1.56558243135e-09
1.56325647888e-09
1.43838857586e-09
1.09505097047e-09
5.73391330347e-10
1.84358838552e-10
1.56137394816e-10
3.31119155125e-10
7.23849792768e-10
1.2392058137e-09
1.33868602171e-09
7.31012726886e-10
-1.22501292964e-10
-1.03700422612e-09
-1.70594256698e-09
-1.85701597532e-09
-1.73215336626e-09
-1.47945252139e-09
-1.10106321033e-09
-7.64255064297e-10
-6.08336998075e-10
-6.51809150913e-10
-7.762093991e-10
-8.41950643692e-10
-8.25059430295e-10
-5.13501654053e-10
-2.03470019425e-11
-2.10075182347e-10
-4.72451684572e-10
-2.24472201352e-10
-4.54930384542e-10
-1.08524063488e-09
-1.13503092558e-09
-6.93311713921e-10
1.01555015211e-10
1.11744736863e-09
1.14142178917e-09
9.14151837995e-11
-4.93040090905e-10
-6.81575225404e-10
-8.3956804589e-10
-7.39276803836e-10
-7.08209329397e-10
-9.35776165622e-10
-1.13403396781e-09
-1.5162021046e-09
-1.94955813645e-09
-1.96802980745e-09
-1.91065348967e-09
-2.10633419411e-09
-2.24639363304e-09
-1.78138577989e-09
-1.0654117524e-09
-1.45085361859e-10
3.99492289902e-10
7.79015301617e-10
1.31357784757e-09
2.30769806611e-09
2.42935529075e-09
1.50741540832e-09
3.52303660894e-10
-1.4712454074e-10
-6.13984537311e-11
-3.23569973983e-10
-7.71312860451e-10
-1.09773945305e-09
-9.35490715518e-10
-7.87482719414e-10
-1.32750561032e-09
-1.32219852539e-09
3.65858940908e-10
1.57947123059e-09
9.72660638826e-11
-7.82703759526e-10
9.3924603609e-10
8.88961078143e-12
-1.2734009573e-09
-1.90910299586e-09
-1.16735878505e-09
-3.19949882221e-09
-2.91317669857e-09
-2.67745505264e-09
-3.67442680761e-09
-1.55115110752e-09
-2.39717566205e-09
-2.48008705857e-10
-8.44739182033e-10
-9.70769426013e-10
-6.55807847873e-10
1.08305910152e-09
-2.28708424879e-11
-9.67028187364e-10
2.09205861846e-10
3.15015457376e-10
-6.09845722573e-10
-6.63474131321e-10
-4.66000893404e-10
1.44716341368e-09
4.17243771136e-10
6.58468590119e-10
1.82533524903e-09
2.82646170059e-09
2.59645879761e-09
1.76044786659e-09
7.93654624984e-10
1.73341819821e-09
1.92399383507e-09
1.12056190878e-09
1.40010311016e-10
-1.03547999033e-09
3.41370371369e-10
3.5714297188e-10
-4.77384126831e-09
-8.2535932231e-09
-1.90015684563e-09
4.62200159161e-08
2.09852285627e-09
1.01202649505e-10
-6.51999375984e-11
7.67771415699e-10
7.51778586621e-10
1.25382687292e-10
4.13779829898e-10
1.0590774812e-09
7.92548929351e-10
1.87178134778e-09
2.23468859062e-09
1.58749652366e-09
1.12089006787e-09
7.29520201894e-10
6.52576946575e-10
7.06497052294e-10
3.27525723726e-10
2.17690855576e-10
2.68641157903e-10
1.36477548352e-10
1.65050299003e-10
2.89202882698e-10
5.3398989874e-10
6.47275473237e-10
7.09656908704e-10
5.01449010489e-10
6.9711658592e-11
-1.95053900061e-10
-3.98667915086e-10
-6.4382593156e-10
-7.1982384517e-10
-4.64953325407e-10
2.32438546221e-11
5.40899570007e-10
1.15933208908e-09
1.7160711752e-09
1.90748982161e-09
1.53652941302e-09
1.11720299963e-09
8.66664629873e-10
7.63287435034e-10
7.24385964624e-10
9.13451129989e-10
1.24035566093e-09
1.36798065619e-09
1.21565618019e-09
8.89218576159e-10
4.75432605272e-10
-1.12854434727e-11
-2.7074561126e-10
-1.30031839381e-10
1.3919080664e-10
4.23771007028e-10
6.28660230156e-10
6.87595512076e-10
3.33182950901e-10
-2.36671169858e-10
-9.40520397159e-10
-1.55808322516e-09
-2.04922426819e-09
-2.12903615941e-09
-1.72706460407e-09
-1.16418262326e-09
-3.37530347503e-10
5.91901329585e-10
1.33056043464e-09
1.85564494661e-09
2.12445254649e-09
1.86879386257e-09
1.22861504312e-09
2.68245619986e-10
-5.74486014552e-10
-1.35454197555e-09
-1.8738608666e-09
-1.985445546e-09
-1.81301759003e-09
-1.54533421463e-09
-1.4152260364e-09
-1.3937257991e-09
-1.35470066188e-09
-1.29409121934e-09
-1.15552615829e-09
-1.01659412022e-09
-8.69389958381e-10
-9.23662323927e-10
-1.12024893011e-09
-1.06700147443e-09
-8.56415531211e-10
-4.22608030791e-10
2.11698097474e-10
8.73438352352e-10
1.24189429628e-09
1.06210054179e-09
2.95405281454e-10
-5.71867518075e-10
-1.23689341376e-09
-1.76607894162e-09
-1.91710068095e-09
-1.55325090219e-09
-8.09831260211e-10
-1.56224639209e-10
2.49224198137e-10
5.0870892988e-10
5.79351477681e-10
3.67426587135e-10
-8.48921830727e-11
-4.00959562725e-10
-6.24421042013e-10
-7.59462869519e-10
-5.39603609598e-10
-1.05292548091e-10
2.35051272286e-10
5.13162311479e-10
9.21815818571e-10
1.30036852758e-09
1.42606339945e-09
1.399253642e-09
1.22518074804e-09
9.17045937817e-10
4.44775730054e-10
-2.50796714803e-10
-6.0000510555e-10
-3.60734603335e-10
1.81653203561e-10
1.00484492621e-09
1.63438183546e-09
1.71143684619e-09
1.82790641754e-09
1.98816251006e-09
1.84485173516e-09
1.11492575155e-09
9.00959299841e-11
-7.71426362866e-10
-8.22687949801e-10
-3.44000832187e-10
-1.30425709702e-10
-1.05770909948e-10
6.92841187118e-11
3.29503439778e-10
3.19692680667e-10
2.09998737624e-10
2.05528944761e-10
1.89114505035e-10
1.64710003517e-10
8.22462639037e-11
6.45674157451e-11
2.46653876658e-11
-5.67622188944e-11
-9.98090685485e-11
2.60665919188e-11
3.16813403921e-10
7.093907286e-10
1.14329584957e-09
1.61251440938e-09
2.19919102799e-09
2.74244746717e-09
3.03317289159e-09
3.01937938356e-09
2.53673916318e-09
1.74608642296e-09
7.58983025354e-10
-6.11430732976e-11
-2.14872353444e-10
2.61964844213e-10
1.21704700828e-09
2.30093344924e-09
3.00253761571e-09
3.13700600191e-09
2.85013415389e-09
2.58226612531e-09
2.09342985892e-09
1.59354425949e-09
1.23048508011e-09
9.75784337517e-10
4.28203318683e-10
-1.83570417969e-10
-5.49372969974e-10
-6.3900864343e-10
-1.0903586197e-09
-1.61210042203e-09
-1.51160144514e-09
-1.35954484331e-09
-1.21648479017e-09
-3.12312270839e-10
9.17753845603e-10
1.64120426234e-09
1.88222621693e-09
2.34509075909e-09
2.76391297612e-09
2.98962438667e-09
2.54724067766e-09
1.53280564443e-09
1.25221200461e-09
1.78837623692e-09
2.19278703539e-09
2.35836842405e-09
2.4801624445e-09
2.2038882492e-09
2.02533370392e-09
2.07213905052e-09
1.64516922356e-09
1.15394601833e-09
1.30070972303e-09
1.79820647779e-09
2.01307374904e-09
1.66129969549e-09
1.10416335092e-09
3.87545737214e-10
-2.13655802374e-10
-2.16781989224e-10
-4.28843252074e-11
-1.98471201547e-10
-5.2430979446e-10
-8.93060029394e-10
-1.4563971316e-09
-1.63369796224e-09
-1.59576412109e-09
-1.74949382475e-09
-1.69973212141e-09
-1.05042588668e-09
-7.04130865756e-10
-5.25965108598e-10
-6.70580737748e-10
-2.61395638072e-10
5.28923371166e-10
7.34367400874e-10
6.05140242793e-10
4.42872023505e-10
2.97548698327e-10
2.51682287749e-10
2.99404123998e-10
3.14070075963e-10
3.05215617049e-10
3.97955983894e-10
6.53203856835e-10
9.22438784834e-10
1.26230651976e-09
1.5137084396e-09
1.36153515898e-09
1.27969949429e-09
1.00992542982e-09
8.76529175577e-10
7.75510332221e-10
5.30745339035e-10
1.9098136565e-10
3.54157180741e-11
-5.07016981567e-11
-2.97851512605e-10
-5.03029573968e-10
-6.93372276776e-10
-8.62797500952e-10
-9.85616431271e-10
-9.8687999267e-10
-1.07974699094e-09
-1.31208982244e-09
-1.64758030285e-09
-1.94072506512e-09
-1.9987549747e-09
-1.80823333618e-09
-1.18353875547e-09
-6.12408261936e-10
9.78536268153e-11
2.98660852587e-10
4.40183011535e-10
5.73097727552e-10
9.41564365267e-10
8.78538337727e-10
7.48293893076e-10
5.40406173315e-10
4.06257330294e-10
-2.19288359715e-10
-1.01287056338e-09
-7.23036641139e-10
-1.85732302476e-10
1.09817398095e-10
-3.8331628995e-10
-1.00743218834e-09
-7.92761852258e-10
-5.16588453871e-11
4.0739150741e-10
4.09720000982e-10
5.51820789312e-10
9.84760504478e-10
1.43603805943e-09
1.43566621197e-09
1.16705215912e-09
8.15987072155e-10
2.59091284939e-10
-2.97253930861e-10
-6.99445926525e-10
-8.87550980044e-10
-9.63246079376e-10
-9.0318244369e-10
-5.40553609988e-10
-2.31013863273e-10
-2.25372279737e-10
-2.27062428105e-10
-2.67181720135e-11
-6.11394734075e-11
-2.35220625936e-10
-4.23529602638e-10
-7.80015276951e-10
-9.15740448287e-10
-7.81113455167e-10
-6.1204271428e-10
-3.28827931003e-10
8.4710918022e-11
6.24525438824e-10
1.14619439631e-09
1.84290610048e-09
2.35204659365e-09
2.72756128664e-09
2.69597161639e-09
2.14257153415e-09
1.53226735499e-09
1.12466281879e-09
6.73122260106e-10
5.8624166719e-10
8.09879541089e-10
1.12385009068e-09
1.25598172474e-09
1.28778527081e-09
1.34211142295e-09
1.27734389567e-09
1.28291821949e-09
1.19834325026e-09
1.13116379666e-09
1.00597592695e-09
8.33427057023e-10
5.35275694754e-10
3.9425503225e-10
5.17351987899e-10
6.0249472067e-10
6.64138628668e-10
5.36256241269e-10
3.52848726596e-10
2.11160866828e-10
-5.99352043148e-11
-6.62629215956e-10
-9.83824533071e-10
-8.512837821e-10
-5.87911592646e-10
-3.28052048823e-10
-2.6465544437e-11
1.67537187736e-10
7.3732354586e-10
1.5417515829e-09
1.89353283622e-09
1.7748940135e-09
1.59127336416e-09
1.4538481977e-09
1.10686199789e-09
6.46686361823e-10
4.08727701885e-10
4.32858823519e-10
8.33753164707e-10
1.43569246999e-09
1.80461767017e-09
1.95825843537e-09
1.85412060495e-09
1.44391281887e-09
7.38026053811e-10
3.07080148324e-11
-6.7153982389e-10
-1.47781147446e-09
-1.95987446836e-09
-2.34533586925e-09
-2.24845637002e-09
-1.8024255489e-09
-1.86998299095e-09
-1.95568684334e-09
-1.79654417563e-09
-9.45621653084e-10
4.85883509533e-11
6.05645497946e-10
7.85892838572e-10
9.33224902385e-10
1.1245446577e-09
1.4945502484e-09
1.87535847379e-09
1.98907899971e-09
1.77491095416e-09
1.37332670464e-09
1.25292435931e-09
1.20630578348e-09
1.09094497826e-09
8.15153168218e-10
4.80985541516e-10
1.56672296122e-10
3.80250030681e-11
3.38595491434e-10
8.74421334087e-10
1.2792446376e-09
1.51427552816e-09
1.38453506811e-09
6.6090889204e-10
-2.0677090682e-10
-8.59519906963e-10
-1.19680122678e-09
-1.28165296403e-09
-1.01108586496e-09
-6.11157353092e-10
-3.64128452596e-10
-3.36404746595e-10
-3.33564327486e-10
-5.15042221696e-10
-3.66333120539e-10
1.66141277439e-11
5.33291943591e-12
-2.60923628962e-10
-9.62256956652e-11
-3.77650486566e-10
-1.38366347121e-09
-1.58500447332e-09
-1.17532809453e-09
-8.58915125438e-10
4.81074056459e-10
1.61091521118e-09
1.33134775177e-09
9.78500930998e-10
9.18816448435e-10
1.23434723272e-10
-6.73901953934e-10
-9.37164876139e-10
-7.45379676221e-10
-4.75955436359e-10
-3.77435763714e-10
-6.53331335294e-10
-5.59136612878e-10
-2.46783472699e-10
-4.17434777066e-10
-8.67504039524e-10
-1.16982470972e-09
-1.38877595032e-09
-1.6861783237e-09
-1.33514351816e-09
-5.44215545177e-10
2.91798707809e-10
4.87669319684e-10
1.16997272872e-10
-5.55440055217e-10
-7.27338086203e-10
-4.49323661706e-10
-4.86596711275e-10
-1.2356154528e-09
-2.11061043995e-09
-2.37218056681e-09
-2.30453312751e-09
-1.83215809942e-09
-1.3253532996e-09
-9.2771283548e-10
-1.75007171298e-10
4.92240491803e-11
-7.3735234498e-10
-4.04312119131e-10
1.42946550728e-09
1.65388138094e-09
1.41437561533e-11
-2.33640909489e-10
6.19829488164e-10
2.42190860059e-10
-2.72107555536e-09
-2.59293005835e-09
-2.08777104356e-09
-3.23112703246e-09
1.60205694061e-10
-3.05821796178e-09
-1.33092211771e-09
-2.31620397097e-09
-7.45332665893e-10
-6.78254432734e-10
7.29344495497e-10
-3.06377110978e-10
-7.37630171787e-11
2.2138349571e-10
3.08081447147e-10
-1.19420581195e-10
-5.25912066468e-10
-2.27064069231e-10
-3.17173392924e-10
-2.31980724913e-10
4.96913996089e-10
8.54603939495e-10
6.86908144839e-10
1.02049047178e-09
2.25116878128e-09
3.29983665108e-09
2.75754710001e-09
2.55994278374e-09
1.85576956634e-09
1.82806650676e-09
1.37887985264e-09
5.91396709707e-10
3.44973649527e-10
-2.68002833874e-09
1.17714455669e-09
2.88637572909e-09
-5.73052517168e-10
-4.01738680571e-08
-2.23026443166e-09
4.97982909317e-09
4.8047223955e-10
1.41163122858e-09
6.34295540354e-10
1.57960315597e-09
9.84096854164e-10
1.41172567275e-09
1.14953212964e-09
6.20538242983e-10
4.37581349837e-10
4.99230498851e-10
4.23890250076e-10
1.54434646833e-10
-4.11780302747e-11
2.98983995656e-10
1.02377177153e-09
1.35449335057e-09
1.39727253781e-09
1.28779098828e-09
9.82682944416e-10
8.94532649112e-10
9.17745375273e-10
9.767592195e-10
9.56005429984e-10
7.33162496507e-10
2.32540613691e-10
-3.63789639417e-10
-9.1614490652e-10
-1.10175608328e-09
-9.92718802534e-10
-9.43066154682e-10
-8.58657627422e-10
-5.29948916307e-10
-2.5176148533e-11
3.11849155575e-10
6.00746894654e-10
8.28207428243e-10
7.25957210741e-10
3.72896302392e-10
2.37045346663e-10
5.19602408856e-10
9.6323231509e-10
1.27624423514e-09
1.38930788701e-09
1.27232437842e-09
1.03560471593e-09
6.50749578871e-10
7.36977956418e-11
-3.60092975877e-10
-5.4525522518e-10
-3.35593183153e-10
6.09713373675e-11
4.71436939102e-10
6.93095720519e-10
6.03478575908e-10
6.33502293999e-11
-7.31794750055e-10
-1.42008546442e-09
-1.91483677364e-09
-2.13044032828e-09
-2.06096816825e-09
-1.52117185866e-09
-6.53960892532e-10
2.7787233472e-10
1.12996630383e-09
1.85386840089e-09
2.1937351829e-09
2.136310796e-09
1.58649027499e-09
7.4541583394e-10
-2.89174665912e-10
-1.24668474405e-09
-1.99029481293e-09
-2.46159468821e-09
-2.4701128221e-09
-2.2139115077e-09
-1.97791679953e-09
-1.69008198092e-09
-1.32599916222e-09
-1.24006004643e-09
-1.27976662166e-09
-1.10145030439e-09
-8.48150183712e-10
-6.53088236838e-10
-6.36372041624e-10
-9.03174290998e-10
-1.03088864824e-09
-5.80274320077e-10
2.67179602552e-10
1.10329683622e-09
1.53489527471e-09
1.36063942163e-09
7.44923548979e-10
-1.54045223436e-10
-1.17466486774e-09
-1.92931320198e-09
-2.0917313461e-09
-1.58664771724e-09
-8.88936514188e-10
-2.18397281054e-10
2.64896425243e-10
3.73447085566e-10
2.34957198689e-10
-1.30100025534e-11
-3.21165670962e-10
-6.64324128883e-10
-9.07183933212e-10
-1.00390704898e-09
-1.01717592597e-09
-8.80640779382e-10
-6.02591679473e-10
-9.13824671519e-11
2.16049259402e-10
3.42461680678e-10
5.42586330242e-10
7.17551202833e-10
6.49894181473e-10
3.31982175819e-10
2.97107394161e-12
-1.57970162355e-10
-1.65241304933e-10
-7.24147524849e-11
2.21633793946e-10
5.02399593214e-10
7.54119997446e-10
1.57717195966e-09
2.42897899636e-09
2.71509211462e-09
2.35279918242e-09
1.42089353385e-09
4.35688548837e-10
-1.91734801457e-10
-5.47664186882e-10
-7.60328960707e-10
-7.03613116867e-10
-3.54295882386e-10
8.87942521024e-11
3.29381043518e-10
5.04453224594e-10
5.97891970105e-10
4.41951722208e-10
2.54026451431e-10
8.35142722257e-11
-1.26285624414e-10
-2.6065003732e-10
-2.07070121209e-10
-1.00959339291e-10
4.10143940972e-11
1.27168444503e-10
8.65447443528e-11
1.03094497593e-11
7.2107279525e-11
4.83525581567e-10
1.2100958324e-09
2.04417214018e-09
2.7125387338e-09
2.98497692865e-09
2.74349757627e-09
2.07445780321e-09
1.18351170335e-09
4.46355658259e-10
-1.47091506455e-11
7.21566191942e-12
5.50474853959e-10
1.38722185662e-09
2.24043475626e-09
2.74877586208e-09
2.89003745252e-09
2.57909271637e-09
2.10033360096e-09
1.81556218288e-09
1.66571623116e-09
1.21383421232e-09
8.17616498848e-10
4.70036105426e-10
-2.19614308581e-10
-8.33882840158e-10
-1.09480104281e-09
-1.39640247616e-09
-1.94253983321e-09
-1.9588723225e-09
-1.65910397434e-09
-1.23556463082e-09
-2.75460620161e-10
7.70194141686e-10
1.42895559345e-09
1.66061486936e-09
1.69908287066e-09
1.80598944003e-09
1.78740341958e-09
1.78249698123e-09
1.38703720344e-09
8.02419721922e-10
8.51750073738e-10
1.09031520927e-09
1.39386725361e-09
2.11890373953e-09
2.33645144654e-09
1.72608162233e-09
1.38156664115e-09
1.62446900888e-09
2.05202540615e-09
2.31855829905e-09
2.45586615145e-09
2.30236514668e-09
1.91986793759e-09
1.46374514241e-09
8.99183918784e-10
3.82504620629e-10
2.75871007624e-10
6.46756242041e-11
-3.04334173388e-10
-6.01878954188e-10
-1.07952628592e-09
-1.63806955222e-09
-1.83675293552e-09
-1.56574336761e-09
-1.23443511238e-09
-1.08803224371e-09
-1.11362979114e-09
-1.25201993989e-09
-1.06751054123e-09
-8.32031993758e-10
-6.02252707476e-10
-4.23911190981e-10
1.03625587251e-10
6.56458157419e-10
9.08987054599e-10
6.45956642939e-10
2.59094673071e-10
-8.75874419108e-12
-1.52476306659e-10
-1.99128763812e-10
-6.35884574163e-11
1.98596827121e-10
3.02411937993e-10
5.39075696313e-10
8.90139724489e-10
1.02900399993e-09
1.09681195197e-09
1.08953360961e-09
8.82144792259e-10
4.94234830877e-10
2.97596555688e-10
3.86450311855e-11
-1.997210516e-10
-4.0470853055e-10
-5.6059562713e-10
-7.57716287582e-10
-8.56543433186e-10
-8.45917828379e-10
-8.48025881627e-10
-7.48669128672e-10
-7.30615044918e-10
-1.13159726577e-09
-1.61371846671e-09
-1.95760092605e-09
-2.16232688357e-09
-2.01008647559e-09
-1.55140251748e-09
-1.35254766295e-09
-9.6932634326e-10
-4.11836948076e-10
-8.09249983851e-12
4.88016020857e-10
1.10452926915e-09
8.0944946011e-10
1.71727883243e-10
-2.34574551556e-10
-6.41216223049e-10
-8.0272380675e-10
-9.56016017896e-10
-1.19622439734e-09
-1.15204866453e-09
-6.59983508545e-10
5.78866551318e-11
5.54494872327e-10
8.19192244827e-10
9.71333338198e-10
1.29886827341e-09
1.51009965573e-09
1.53593966633e-09
1.45292112014e-09
1.40527466982e-09
1.18668341822e-09
6.29063841355e-10
-1.74755602513e-10
-9.04368607454e-10
-1.40137175376e-09
-1.60689011061e-09
-1.49445453368e-09
-1.49127763073e-09
-1.20047131466e-09
-9.21823309519e-10
-6.28271018516e-10
-2.09619478622e-12
3.03576925933e-10
4.47153775053e-10
6.15896925948e-10
7.58816159864e-10
8.43673191069e-10
5.9504022193e-10
3.12624190722e-10
1.42809331391e-10
5.22699796586e-11
-8.35343892582e-12
1.29219534785e-10
4.85308797679e-10
6.66574271908e-10
1.09348819469e-09
1.374647229e-09
1.58368310192e-09
1.9342806267e-09
1.90708536338e-09
1.43064288308e-09
1.09520809509e-09
7.07759554902e-10
3.07395032822e-10
2.41924891714e-10
4.0051825856e-10
5.89945742268e-10
7.73815419294e-10
1.01083514321e-09
1.24896617435e-09
1.42385306697e-09
1.39991019841e-09
1.158063869e-09
7.87618456444e-10
3.89564004969e-10
4.60815040064e-10
4.06236472108e-10
4.06184009004e-10
4.21763459533e-10
1.82599709939e-10
-2.53418281775e-10
-4.85676621736e-10
-3.83072344462e-10
-1.47341592933e-10
-8.54791769051e-11
-2.41137151073e-10
-2.95112208054e-10
-3.45082916777e-10
-1.47960138743e-10
4.1987592602e-10
8.34793321167e-10
1.16723088307e-09
1.63467617941e-09
2.04468840676e-09
2.03082247741e-09
1.67723619688e-09
1.07386879405e-09
3.93206670159e-10
-2.0674930748e-10
-4.76207005144e-10
-4.53450194467e-10
-2.29945728257e-10
1.43111722153e-10
4.88841136827e-10
7.81649627023e-10
7.08757359714e-10
3.75602784416e-10
7.12301769082e-11
-3.62291979288e-10
-6.65797370641e-10
-5.63189242014e-10
-3.45373554957e-10
-3.91961002331e-10
-8.57374796024e-10
-8.2219328256e-10
-2.99518685204e-10
-4.9854241693e-12
1.00525446664e-10
3.46533460699e-10
6.80038284121e-10
1.04851921552e-09
1.18478267629e-09
1.55926356557e-09
2.10949150942e-09
2.42974153777e-09
2.38170587581e-09
1.96069280806e-09
1.38011186206e-09
7.48940602732e-10
5.33181405792e-10
4.42481964833e-10
8.9745258344e-11
-4.54835305094e-10
-7.8189251372e-10
-8.37531355168e-10
-6.78201493175e-10
-1.03606952526e-10
7.4995323062e-10
1.36727253664e-09
1.555791154e-09
1.25421354346e-09
4.15162611185e-10
-6.5935839823e-10
-1.41071516244e-09
-1.57915994598e-09
-1.33020404553e-09
-8.32981094176e-10
-4.4642511496e-10
-3.12133123371e-10
-2.81665030621e-10
-3.73783781162e-10
-6.88856902953e-10
-5.60826853889e-10
7.07571090071e-11
6.33839307232e-10
8.14475118344e-10
9.70515104371e-10
8.65854231101e-10
-2.12207164276e-10
-9.0455283712e-10
-2.23691236974e-10
3.54858947538e-10
1.19047516121e-09
2.46544863518e-09
2.59571933785e-09
1.75099751999e-09
1.29154482655e-09
4.91366353801e-10
-3.13452165428e-10
-6.59349080868e-10
-8.71234372623e-10
-1.4136344615e-09
-1.99422133673e-09
-2.2542773922e-09
-2.22686232383e-09
-1.99250440095e-09
-1.8952031852e-09
-2.35168109893e-09
-2.89130906073e-09
-2.8911900526e-09
-2.73998164838e-09
-2.42563056924e-09
-1.95821211326e-09
-1.33565489445e-09
-1.16403555716e-10
7.34026046596e-10
9.93337877739e-10
1.02493993585e-09
1.32832066777e-09
1.37828438848e-09
8.86618608528e-10
5.93796777563e-10
2.56538751153e-10
-3.66612800231e-10
-9.04404606354e-10
-1.33127998913e-09
-1.89401395094e-09
-1.47414141305e-09
-2.467449327e-10
3.59202108975e-10
4.5625768517e-10
4.72612197316e-10
6.78745711843e-10
1.21536225975e-09
-1.61261986498e-09
-2.66305422199e-09
-8.6079215045e-10
-2.02491569316e-09
-4.02361614011e-09
-2.43636618245e-09
-4.56927603528e-09
-1.23181799234e-09
-2.16794186498e-09
-1.65579694595e-09
-1.78215689751e-09
-4.53728021273e-10
-1.14434638218e-09
-5.18930499971e-11
2.17352677672e-10
-4.69641441012e-10
-1.07810522933e-09
1.53213119444e-10
-6.21265738405e-10
-1.23962854932e-09
-6.77693670453e-10
-8.85331541964e-10
3.33775026931e-10
-2.60714623583e-11
1.02502506266e-09
1.28432514122e-09
1.29994612283e-09
1.21319809057e-09
2.21144124199e-09
2.26469081525e-09
2.58385833549e-09
2.42819570264e-09
1.59485800759e-09
1.46282589991e-09
3.14682057267e-10
8.31388248719e-11
-1.37714682323e-09
1.75441275684e-10
3.54166074587e-09
1.25461935695e-08
5.58605099704e-10
-2.22070011678e-08
3.22935885119e-09
-1.46288942738e-09
9.59135640241e-11
7.18026653014e-10
1.25721712229e-10
2.23639991481e-10
3.01835320315e-10
1.35529644368e-09
1.94297764337e-09
1.26698335923e-09
8.67611573003e-10
5.45121341035e-10
3.32876536733e-10
3.71891986014e-10
3.15618452191e-10
3.13042836756e-10
5.99433570069e-10
8.28545182631e-10
7.75502920683e-10
8.75408974504e-10
1.1798916963e-09
1.50186353086e-09
1.66413450301e-09
1.63550733049e-09
1.41511316926e-09
9.65968443268e-10
7.95497556919e-10
7.31916299283e-10
5.80900700941e-10
3.09604518265e-10
2.67039842116e-11
-3.3522599437e-11
2.19605361795e-10
5.34798815204e-10
7.6695699352e-10
8.9186915401e-10
9.35245711238e-10
8.81837531057e-10
6.80932221517e-10
5.02128860308e-10
5.2248909714e-10
8.15981566441e-10
1.24377047425e-09
1.48991094307e-09
1.44742726444e-09
9.39854629263e-10
3.98704337503e-10
9.45881692199e-11
-1.6358069684e-10
-4.0258756005e-10
-2.46712110173e-10
2.07955905913e-10
5.48431175216e-10
6.0904146479e-10
2.3236421908e-10
-3.13242524774e-10
-1.16447357907e-09
-1.99917965585e-09
-2.56986386889e-09
-2.6819426332e-09
-2.56876674947e-09
-2.13939537235e-09
-1.32912174918e-09
-3.03471364452e-10
8.17925295297e-10
1.66292875161e-09
1.87586658768e-09
1.77878517698e-09
1.46223594146e-09
7.54574218864e-10
4.49948136746e-11
-7.14631294975e-10
-1.37834332344e-09
-1.82782527443e-09
-2.00945501253e-09
-1.71488448204e-09
-1.36229018297e-09
-1.20719114467e-09
-9.73521965455e-10
-7.43479146046e-10
-6.1003821081e-10
-7.27565302791e-10
-8.60630790673e-10
-1.05408591605e-09
-1.21158661039e-09
-1.10119619451e-09
-6.82578112413e-10
-4.61086620003e-11
7.57694688241e-10
1.56064338224e-09
1.95679306837e-09
1.88244178681e-09
1.15305748077e-09
2.22294903161e-10
-4.71179441086e-10
-7.8845596027e-10
-8.80551735043e-10
-6.46261998316e-10
3.1603646295e-11
8.7555000549e-10
1.37309038244e-09
1.32514154136e-09
1.03574384109e-09
6.47593322351e-10
3.61192848159e-10
3.7229003856e-11
-3.73585151936e-10
-4.67041579259e-10
-4.12985630631e-10
-3.07567456966e-10
6.81560825843e-11
4.3572065668e-10
6.02785630166e-10
5.96091813334e-10
3.78763540799e-10
2.87152110053e-10
3.5749967863e-10
2.4171514518e-10
-1.82884365949e-10
-5.47386783592e-10
-8.52520238445e-10
-1.02998253474e-09
-8.35579155983e-10
1.92494590011e-10
1.51737651578e-09
2.06348787951e-09
1.96672558847e-09
1.6067279038e-09
1.29400079858e-09
8.64570976185e-10
1.40059015411e-10
-7.89870081776e-10
-1.30265556947e-09
-1.00771022691e-09
-4.23056322979e-10
-4.58628106873e-11
1.81239004449e-10
5.4702425349e-10
8.4420025732e-10
8.07518860265e-10
5.41606419002e-10
2.8145729579e-10
1.20691289435e-10
-1.69335650442e-10
-4.01877111165e-10
-2.96858048837e-10
-4.00219891204e-11
-7.39300944275e-11
-2.38401340532e-10
-3.99076714363e-10
-4.90370243055e-10
-3.6113397937e-10
6.7013858655e-11
8.48118843493e-10
1.74858072324e-09
2.70495228321e-09
3.24644858793e-09
3.05590492656e-09
2.50605391236e-09
1.63071524159e-09
8.25639859622e-10
5.5354450136e-10
7.90420441433e-10
1.51148794273e-09
2.41716415729e-09
3.07071741522e-09
3.30516046491e-09
3.07694247211e-09
2.66356561813e-09
2.29716542317e-09
1.99852299355e-09
1.62764368837e-09
1.31217537277e-09
9.85858788573e-10
6.06411109851e-10
5.99817381873e-11
-4.94261108751e-10
-1.05573724648e-09
-1.41589392188e-09
-1.62377216546e-09
-1.38070669095e-09
-9.17240331879e-10
-7.23206259486e-10
-3.31282208968e-10
7.43106239791e-10
1.53703953861e-09
2.0048729878e-09
2.54964243959e-09
2.52203636528e-09
2.23442293991e-09
2.13254986383e-09
1.80019954632e-09
1.47810002153e-09
1.82698865734e-09
2.37340029425e-09
2.10911669734e-09
1.86794058276e-09
2.05504761971e-09
2.10295749727e-09
1.72897212226e-09
1.59419859244e-09
1.93978379976e-09
2.30523701189e-09
2.54536915837e-09
2.39559975725e-09
1.81611106023e-09
1.10882203213e-09
6.71831381895e-10
4.47814248994e-10
3.70893387109e-10
1.78301600067e-10
-3.65884616594e-10
-4.72741397758e-10
-5.90139659874e-10
-1.2288869407e-09
-1.47886404525e-09
-1.20127769003e-09
-1.26074564979e-09
-1.43199093601e-09
-9.89570804585e-10
-2.88213336457e-10
-4.3647374838e-10
-1.09814856996e-09
-1.08270927692e-09
-6.0136099354e-10
-1.40590528585e-10
8.23316024731e-12
3.71929202524e-10
5.0435412174e-10
7.56967933973e-11
-3.10252286711e-10
-3.18970373321e-10
-2.67862311108e-10
-4.56910747573e-10
-3.2427894056e-10
-2.93718203581e-10
-8.6665658306e-11
1.10228209074e-10
3.98911013542e-10
6.21391840435e-10
7.87324324253e-10
7.98272436854e-10
5.7915941296e-10
2.88685980841e-10
-6.91255117925e-11
-2.75139806432e-10
-4.61303672195e-10
-5.73065434421e-10
-6.47837056081e-10
-5.6511857131e-10
-4.31547404758e-10
-4.14600604824e-10
-7.62929563614e-10
-1.31078052126e-09
-1.81088634925e-09
-2.06548835957e-09
-2.20832352547e-09
-2.21773808492e-09
-1.84177944078e-09
-1.32225453544e-09
-9.67699037459e-10
-7.84725203654e-10
-4.3727837674e-11
7.93032585164e-10
1.236758312e-09
1.24172436029e-09
9.64520440445e-10
5.18544888221e-10
2.79258715897e-10
2.35597555598e-10
-2.5870080275e-10
-2.66892458383e-10
-1.54769860122e-10
-1.52949586319e-10
2.57709774202e-11
3.93552259602e-10
1.1141968797e-09
1.53360609056e-09
1.68285287235e-09
1.80594581783e-09
1.85613717864e-09
1.88815163591e-09
1.87773355418e-09
1.73272490174e-09
1.53643983929e-09
1.20959565945e-09
5.67859358169e-10
-1.76443739177e-10
-7.98448407949e-10
-1.13621105424e-09
-1.01564057288e-09
-8.99781394649e-10
-7.67925522755e-10
-6.15808728643e-10
-3.57094055728e-10
-4.99940021293e-10
-2.0784822685e-10
4.64322285861e-12
-2.33250427301e-10
-2.90067703337e-10
-2.11647487256e-10
1.30811533209e-11
1.7969083998e-10
5.32027323401e-10
9.11162658724e-10
1.23535774302e-09
1.45183395335e-09
1.59645805283e-09
1.49214509834e-09
1.413377387e-09
1.24247557264e-09
9.65051530103e-10
8.69885896171e-10
9.07792526385e-10
7.62035943854e-10
7.55977964216e-10
9.43685759283e-10
9.80564515015e-10
8.52747031516e-10
6.76916544194e-10
5.02830521226e-10
6.02696976256e-10
8.39223726997e-10
1.15472486512e-09
1.22472324437e-09
1.23830753526e-09
1.04607679601e-09
8.43036010534e-10
5.03948392958e-10
3.19028924474e-10
1.28455299308e-10
-7.55019758194e-11
-2.08536239288e-10
-2.54646585427e-10
-2.60154205409e-10
-3.63954916721e-10
-2.27146284366e-10
1.86733918936e-10
2.04374227096e-10
1.23682056892e-10
6.17271448663e-10
7.61715553642e-10
4.51086549027e-10
6.30458904619e-10
1.1564261308e-09
1.4323581248e-09
1.51002892848e-09
1.64098191619e-09
1.72962560818e-09
1.6356218917e-09
1.33632279979e-09
9.40695309463e-10
5.88891609766e-10
4.54478492465e-10
5.97412761215e-10
8.81668971501e-10
1.17487620246e-09
1.47647922399e-09
1.6552055052e-09
1.71411738783e-09
1.49399798292e-09
9.39362238423e-10
3.31422538504e-10
-3.03033924875e-10
-8.29835743205e-10
-1.00097345624e-09
-9.05253756884e-10
-1.11600444801e-09
-1.83279824457e-09
-2.07754290896e-09
-1.56352901173e-09
-7.32311440153e-10
8.01761153806e-11
8.26226853454e-10
1.537358023e-09
2.08470097264e-09
2.75022492369e-09
3.31885846998e-09
3.41973162366e-09
2.94168126307e-09
2.0366104653e-09
1.24127511519e-09
6.56354819399e-10
3.33139963979e-10
1.09464820631e-10
-2.51157974355e-10
-7.30956610954e-10
-8.95301119754e-10
-7.28081357614e-10
-4.84128669025e-10
4.99501681743e-11
9.17682483077e-10
1.63498831105e-09
1.7597206888e-09
1.33579552178e-09
6.54695905372e-10
-3.16235939209e-10
-9.80507128533e-10
-1.09215454131e-09
-8.59920977063e-10
-5.42477168871e-10
-2.04519916763e-10
-1.94912657317e-10
-5.22879261692e-10
-7.82446049751e-10
-7.3175928055e-10
-6.30817437784e-10
-3.33684394406e-11
5.32737137011e-10
3.86516486304e-10
3.51133484878e-10
7.39806199428e-10
2.88700168643e-10
3.50898644993e-10
1.64131225904e-09
2.21758392492e-09
1.95430321503e-09
2.06575115154e-09
1.97734589932e-09
6.42474490492e-10
-2.45431184599e-10
-7.70045699162e-10
-9.77788152773e-10
-8.59368288065e-10
-9.86351232353e-10
-1.57506920036e-09
-2.10539822271e-09
-1.95374078515e-09
-1.54294462881e-09
-1.27566719395e-09
-1.19682134381e-09
-1.55759215781e-09
-2.43763482605e-09
-2.57819549672e-09
-2.12582802212e-09
-2.04360303992e-09
-1.81449345229e-09
-1.38539755941e-09
-8.2610604538e-10
-3.12186168809e-10
5.70536617557e-10
7.77592127447e-10
5.36840164607e-10
6.16076708691e-11
-6.87110162197e-10
-8.15780819632e-10
-4.48987601384e-10
-2.24156681579e-10
-2.46887234235e-10
1.27904092618e-10
-9.04766712939e-11
-3.13813001463e-11
2.07022687364e-10
3.22887688944e-10
7.74649111472e-10
5.89506132169e-10
-6.88775217213e-10
2.64803039861e-10
1.61575155755e-09
-7.04745388159e-10
-2.01937757999e-09
-1.26321432732e-09
-3.14759454903e-09
-2.74706464377e-09
-2.90160707554e-09
-3.11509580067e-09
-2.34299901122e-09
-2.15775417621e-09
-1.97972140322e-09
-1.11777538214e-09
-5.84409323167e-10
-1.15741737111e-09
-6.6353067077e-10
1.94803178308e-10
-6.37852761095e-10
-9.73704606934e-11
-3.27662996003e-10
-1.07154048576e-09
-6.59430713668e-10
-1.62460389888e-10
-7.65518625696e-10
-3.18233242899e-10
6.71453816959e-10
1.04183909018e-09
1.56024442972e-09
2.88881518397e-09
2.9535429007e-09
2.5013128572e-09
3.66968808178e-09
2.84224531253e-09
2.74301286166e-09
1.87095093785e-09
3.13356874221e-09
-5.71789591044e-12
-6.54353280545e-10
-7.51560052121e-10
-3.89233280955e-09
-8.10679563708e-10
1.79775746563e-08
-1.93214356258e-09
8.42430509032e-09
1.64051922444e-09
-1.1788197761e-09
2.69417887116e-10
6.27039856128e-10
1.07433942673e-09
-1.12858913414e-09
-1.77592961716e-09
-9.65324751168e-10
-2.86110947742e-10
2.36365999769e-11
1.38635364785e-10
4.43758178786e-10
7.39680944431e-10
5.9350169246e-10
5.82517792717e-10
8.21091080937e-10
1.06079378171e-09
1.03903689343e-09
8.97208637951e-10
7.66767046381e-10
6.65439459517e-10
5.65882171512e-10
4.194435157e-10
3.50807588951e-10
3.60501457516e-10
4.52043696258e-10
6.40091363295e-10
7.36905746859e-10
5.39174163894e-10
2.15789690126e-10
-1.46786362836e-10
-1.7004800515e-10
-9.9561840807e-11
-2.85378105424e-11
-2.0059540136e-11
-9.03704745382e-11
-1.04462879319e-10
2.64338865806e-11
2.78542337782e-10
6.26874261186e-10
8.17706866675e-10
8.46674440559e-10
8.2422414993e-10
8.07934224046e-10
8.68896879326e-10
7.50931130158e-10
3.01037097641e-10
-1.89521080849e-10
-2.59908036458e-10
-7.36467619067e-11
2.65126394688e-10
5.65469666466e-10
4.84244712539e-10
-9.41544883509e-11
-8.45798184975e-10
-1.64917738347e-09
-2.2369176637e-09
-2.49069318162e-09
-2.61296492866e-09
-2.39155771602e-09
-1.74996265749e-09
-7.57046496279e-10
2.3829112037e-10
9.81866404655e-10
1.61315603684e-09
1.86924088421e-09
1.6346128637e-09
1.07739679215e-09
2.00592224986e-10
-8.05399583831e-10
-1.49298027283e-09
-1.90339910246e-09
-2.18924316865e-09
-2.33043854494e-09
-2.20983314994e-09
-1.79050361311e-09
-1.43060444896e-09
-1.29530533519e-09
-1.35204553123e-09
-1.32465830907e-09
-1.3232632458e-09
-1.20498462384e-09
-1.06032452546e-09
-1.14355313582e-09
-1.15764204659e-09
-8.20744009187e-10
-2.29681453977e-11
9.78176940895e-10
1.73415511687e-09
1.81364704139e-09
1.41041997146e-09
7.29191182533e-10
-1.10402697862e-10
-8.99094556808e-10
-1.21223713169e-09
-8.27342819362e-10
-1.32299346581e-10
4.24548583273e-10
8.28844185261e-10
1.110072041e-09
1.08755663471e-09
6.88734983148e-10
9.18924868653e-12
-5.54709595179e-10
-6.2930948091e-10
-4.60000512006e-10
-2.4088282943e-10
-4.39133643592e-13
1.69545291096e-10
2.92275441774e-10
4.96394336826e-10
8.40934971779e-10
1.02966960901e-09
1.09025221119e-09
8.85334718338e-10
6.25409000067e-10
4.69140950419e-10
-2.82899475262e-11
-4.24863891288e-10
-5.71954338952e-10
-2.92274435922e-10
2.19332617186e-10
5.64304784406e-10
1.0787330925e-09
1.74643900043e-09
2.25195419258e-09
1.96678890418e-09
9.12630990338e-10
-2.77667140989e-10
-9.98671961845e-10
-1.41024887081e-09
-1.8326409082e-09
-1.8746247315e-09
-1.36899370759e-09
-6.22524111727e-10
-5.32442793062e-11
3.76767772356e-10
6.98885825988e-10
7.49084492454e-10
4.1621886127e-10
-1.32878611238e-10
-3.40621382486e-10
-2.96938622847e-10
-3.20580794712e-10
-3.19983318847e-10
-2.14336710984e-10
-3.04112038998e-10
-5.19116953098e-10
-8.3591098114e-10
-1.18833672066e-09
-1.1078283566e-09
-4.96767988785e-10
4.9537906651e-10
1.64496932379e-09
2.55714736326e-09
3.11427206113e-09
3.13479143427e-09
2.59895563898e-09
1.79215463914e-09
1.07598807048e-09
9.90984714333e-10
1.45810644408e-09
2.16307862532e-09
2.90292887046e-09
3.33801708469e-09
3.32252273451e-09
2.99859192449e-09
2.50835890077e-09
1.99339526785e-09
1.69378827946e-09
1.44469272445e-09
1.08281843829e-09
4.97202304929e-10
1.95429612112e-10
-3.66044599942e-10
-1.27585348826e-09
-1.79874181171e-09
-2.06021123843e-09
-2.32218508237e-09
-2.21725337031e-09
-1.261570554e-09
-7.59293568809e-10
-4.66070138348e-10
6.66314444551e-10
1.73434527577e-09
2.05685667032e-09
2.23707224721e-09
2.18032972184e-09
1.75013735803e-09
1.45265472828e-09
1.15368724976e-09
8.55042067287e-10
8.88162326074e-10
1.4913958977e-09
1.68250982401e-09
1.2361387074e-09
7.60331501806e-10
6.90994231777e-10
9.45405236166e-10
1.59356585883e-09
2.37339605909e-09
2.71679295678e-09
2.57499625328e-09
2.15376634509e-09
1.54964571821e-09
1.26208607943e-09
1.26558919594e-09
9.96581590411e-10
8.47000230607e-10
7.91947165381e-10
-4.60699234778e-11
-7.96619928514e-10
-4.72204192133e-10
-4.73873217616e-10
-1.24000149528e-09
-1.08677122341e-09
-2.40153745821e-10
-1.52445601715e-10
-9.25804258492e-10
-1.04358948376e-09
-5.20126298734e-10
-3.07612508531e-10
-5.29344134782e-10
-4.14434798125e-10
1.62302100606e-10
2.28414716205e-10
-3.99827079675e-11
3.56564871894e-11
-2.16677804171e-10
-8.08146299921e-10
-1.21256578048e-09
-8.92660282782e-10
-8.90389281572e-10
-8.93367555293e-10
-1.02586447231e-09
-8.14299464887e-10
-4.53277399745e-10
-8.0679888226e-14
4.16251895555e-10
7.276915107e-10
7.54842728308e-10
4.3439957645e-10
6.35558466478e-11
-4.44547031158e-10
-1.06276863903e-09
-1.45580802018e-09
-1.29621430742e-09
-8.96265466764e-10
-5.97671953297e-10
-2.83889445019e-10
-2.29595480133e-10
-7.24974652522e-10
-1.44690888028e-09
-2.19711283265e-09
-2.75347689494e-09
-2.78318085809e-09
-2.24835536135e-09
-1.67309928797e-09
-1.25494209767e-09
-6.14864339846e-10
-4.62414608845e-11
4.65087626451e-10
6.10729760272e-10
2.43916160293e-10
8.78213288834e-11
3.05249604246e-10
-1.81389988072e-10
-6.75639853784e-10
-6.22506324036e-10
-8.41912844846e-10
-9.09490827444e-10
-7.23468204425e-10
-3.6039176675e-10
6.68558870103e-11
4.76861338096e-10
1.02677460921e-09
1.43780285258e-09
1.65295260931e-09
1.52840911992e-09
1.34431074399e-09
1.30729836881e-09
1.3575278461e-09
1.20654507029e-09
8.01031434922e-10
5.46109669666e-10
2.60234779418e-10
-9.48676900925e-11
-4.81556229964e-10
-7.01338198129e-10
-8.35097723632e-10
-8.20262470956e-10
-2.81042620223e-10
1.35867098986e-10
8.79671085476e-10
1.19194433986e-09
1.11668006266e-09
1.14143872983e-09
7.15717429441e-10
1.31009950677e-10
-3.64522534675e-10
-3.56258245967e-10
-2.9846582325e-10
-7.75596306065e-11
2.19514305753e-10
5.53371494881e-10
7.08755665648e-10
8.85170817463e-10
9.38476718416e-10
1.07579388818e-09
1.15773691428e-09
8.59609268939e-10
4.36382692338e-10
3.09511768157e-10
8.2819705209e-11
-1.65603411518e-11
2.0316678163e-10
5.70350482067e-10
8.38283943942e-10
1.04214995127e-09
1.14575902138e-09
1.26829673676e-09
1.41805025601e-09
1.51971347968e-09
1.52410238089e-09
1.44219133028e-09
1.13233884312e-09
7.60147060382e-10
2.46462235454e-10
-1.58873099477e-10
-4.97949493867e-10
-8.32509561522e-10
-1.12428104516e-09
-1.39019544519e-09
-1.54317438649e-09
-1.53279346833e-09
-1.02400311741e-09
-7.85305421223e-11
3.44573849976e-10
-2.36945820291e-10
-2.3616295009e-10
6.25411435286e-10
9.9577701499e-10
1.10444710696e-09
1.47887675074e-09
1.7743514889e-09
1.67538966505e-09
1.37352745144e-09
9.08301381428e-10
2.9232758724e-10
-3.46190412356e-10
-7.58861899643e-10
-8.14832142731e-10
-6.18292546881e-10
-1.76953229494e-10
6.45298710097e-10
1.3612029103e-09
1.49549934882e-09
1.46261371815e-09
1.64385653425e-09
1.83691815988e-09
1.79615472576e-09
1.70306222482e-09
1.43505923345e-09
1.03680231464e-09
6.72891443628e-10
1.21370292221e-10
-2.92730351406e-10
-9.85889811155e-10
-1.77347565683e-09
-2.07517778121e-09
-1.78525216765e-09
-9.32554264049e-10
2.04033931609e-10
1.35505895682e-09
2.41182996731e-09
3.10087687034e-09
3.24835038865e-09
2.83145157169e-09
2.06054253419e-09
1.13529265877e-09
4.68885887623e-10
-2.04052354576e-11
-4.61377152304e-10
-7.21844654024e-10
-7.77250561411e-10
-9.0637840488e-10
-9.32621179651e-10
-5.44805662443e-10
-2.14028285112e-11
4.79318368918e-10
1.07253429364e-09
1.56444550138e-09
1.54941299591e-09
9.16299066516e-10
2.04400061601e-10
-4.74894527592e-10
-7.56987203972e-10
-6.10932254086e-10
-3.99928300112e-10
-3.62406011098e-10
-4.450584273e-10
-6.63919035376e-10
-9.18478588168e-10
-1.08506985186e-09
-9.01837567128e-10
-2.54519080499e-10
1.04581440109e-09
1.88914854075e-09
1.01184332418e-09
-1.23353831625e-10
-7.0794590215e-11
-2.51839412361e-10
-4.47577079769e-10
8.87852312015e-10
2.83169721124e-09
3.09746184526e-09
2.31359849762e-09
1.53666980873e-09
8.41052894647e-11
-1.32530417169e-09
-1.6131704364e-09
-1.31105030125e-09
-1.24664318649e-09
-1.15043760786e-09
-7.77391592397e-10
-3.04560437064e-10
1.84822589091e-10
3.51356042785e-10
-8.87468182574e-11
-1.08782133251e-09
-1.89390129556e-09
-2.51642498377e-09
-2.83323319961e-09
-2.62044618834e-09
-2.77595087602e-09
-2.92766666951e-09
-2.78905090229e-09
-2.22574582852e-09
-2.11977967748e-09
-2.08184096589e-09
-1.46410894307e-09
-9.87544490017e-10
-8.92108652575e-10
-6.8523631356e-10
-4.76226486902e-10
-1.25508471685e-10
-1.20908871023e-10
-1.42276081799e-09
-2.21540535618e-09
-1.62492428909e-09
-5.10190390504e-10
-3.33074954201e-10
-8.54092543353e-10
-5.89490038543e-10
-5.14572515457e-12
8.67630459191e-10
-1.77072872898e-10
-9.01238820714e-11
9.15070868742e-12
-2.25475977746e-09
-2.56049039054e-09
-1.60076902702e-09
-3.2843103254e-09
-2.18019271426e-09
-3.32356924371e-09
-2.19571798115e-09
-2.54161108494e-09
-1.55734757704e-09
-1.92030733593e-09
-4.73230531367e-10
-6.74880488747e-10
-9.0174365235e-10
6.27724470507e-10
-1.99001391232e-10
-9.23231713552e-10
-3.90492035442e-10
-8.01876985561e-10
-1.21146903328e-09
1.81952206191e-10
-1.2360012763e-09
-2.33669390972e-10
4.65252963312e-10
5.55515970545e-10
1.9410162327e-10
1.02412403136e-09
4.03545639017e-09
3.06511153942e-09
4.3365994728e-09
3.40272913131e-09
3.58888283268e-09
-9.27090266264e-11
1.45697332576e-09
2.10247977069e-09
1.51740446786e-09
3.59482307474e-09
2.52320103559e-10
-4.80335316674e-09
5.46561011172e-09
-2.71524906983e-08
3.61899337165e-09
6.86521347244e-09
2.69856353721e-09
1.23871156998e-10
3.33894987973e-10
1.76633283974e-09
1.97697542829e-09
9.27911570586e-10
-1.43970401803e-10
-3.49232051421e-10
-2.61512290391e-10
-1.02556366973e-10
3.49399449616e-10
8.02503789942e-10
9.22561922249e-10
1.04491297274e-09
1.23620996405e-09
1.42506940628e-09
1.55618227146e-09
1.50357856082e-09
1.34160362669e-09
1.26348918951e-09
1.12938841561e-09
8.45987708597e-10
4.80845569321e-10
4.75308303187e-10
7.23582342115e-10
9.97906032303e-10
9.6068380471e-10
6.75877975921e-10
3.57229580999e-10
1.22474293789e-10
4.14009587585e-11
6.60872046107e-11
4.35738100265e-11
-7.62342358023e-11
-1.60606181827e-10
-1.6643302735e-10
-1.06210096531e-10
5.29719582136e-11
4.34932042536e-10
7.62565551205e-10
9.65674258138e-10
1.13445716664e-09
1.10066261669e-09
7.74841864407e-10
4.21494976559e-10
3.80482329467e-10
3.76427265111e-10
2.32392806442e-10
2.57547249755e-10
5.5796897796e-10
6.20350519306e-10
1.08824040206e-10
-6.83035616084e-10
-1.4986481938e-09
-2.09021854526e-09
-2.49427867209e-09
-2.73200355093e-09
-2.76449509951e-09
-2.68953522478e-09
-2.35042198446e-09
-1.41083438233e-09
-1.68496134912e-10
7.51620614977e-10
1.20278297345e-09
1.27688438029e-09
1.09389265292e-09
5.95284908572e-10
1.09078679486e-10
-4.66369035099e-10
-1.09104577518e-09
-1.45711083626e-09
-1.57197144206e-09
-1.56905740056e-09
-1.34934706955e-09
-9.62977464052e-10
-4.83969426831e-10
-2.73962642394e-10
-3.94122101017e-10
-5.9521195786e-10
-9.27470160541e-10
-1.27285398577e-09
-1.31235409672e-09
-9.95608667192e-10
-4.75654951421e-10
1.99114364252e-10
1.01331207931e-09
1.68012330868e-09
1.94282634211e-09
1.98379436115e-09
1.6675008237e-09
9.91401666301e-10
2.53943018686e-10
-1.68165262667e-10
-2.92118793618e-10
-1.52190644798e-10
3.37767940245e-10
9.64631613519e-10
1.32874227842e-09
1.20954907264e-09
7.22595972248e-10
1.78663177257e-10
-2.79517272704e-10
-7.42915763257e-10
-1.1556888945e-09
-1.08443320072e-09
-4.78155180923e-10
5.01098868244e-11
3.16950596789e-10
3.33305545686e-10
2.05787276575e-10
1.42455033391e-10
1.96948236308e-10
4.20708929984e-10
6.5504318888e-10
5.33844209073e-10
4.75268069122e-11
-5.25308128668e-10
-8.95806374907e-10
-7.54950195613e-10
-6.0242867857e-10
-3.78101108094e-10
5.8868451021e-10
1.7120721209e-09
2.19478052743e-09
1.99148436152e-09
1.41477393257e-09
7.1621484954e-10
-1.10177387098e-10
-1.03045221451e-09
-1.79983807501e-09
-2.20489791247e-09
-2.13438464307e-09
-1.44368528464e-09
-4.68344104174e-10
2.33498607954e-10
5.96675842551e-10
8.23337306434e-10
8.28767740538e-10
5.07458762189e-10
4.98944228185e-11
-3.17172122374e-10
-4.08990864433e-10
-3.49862088424e-10
-2.74345448347e-10
-2.44009333918e-10
-4.49016241686e-10
-1.03934674867e-09
-1.57885490824e-09
-1.67321850785e-09
-1.25373232287e-09
-4.22189172999e-10
7.96588852993e-10
2.06438128751e-09
3.05134270122e-09
3.43948114974e-09
3.18744162585e-09
2.68345183415e-09
2.14935923267e-09
1.67285534248e-09
1.61829922089e-09
2.35003827853e-09
3.09676770175e-09
3.57156926748e-09
3.77528365591e-09
3.42538493331e-09
2.85136002232e-09
2.49933069422e-09
2.07756387303e-09
1.59236286029e-09
1.34507847348e-09
1.30717226678e-09
8.56561962032e-10
1.86873308796e-10
-5.76623184558e-10
-1.44486035757e-09
-2.24055809219e-09
-2.4486668677e-09
-1.87566022928e-09
-1.33350493293e-09
-5.09772326805e-10
-7.89427295303e-11
3.77820104914e-11
8.42174154511e-10
2.13891065775e-09
2.75054001995e-09
2.75491981556e-09
2.37826649853e-09
1.67170210712e-09
1.4394820954e-09
2.01140043545e-09
2.41347977573e-09
2.38542011529e-09
2.57438554252e-09
2.62856261686e-09
2.03852115987e-09
1.5126852238e-09
1.55908992381e-09
1.99885460695e-09
2.50805354539e-09
2.89583878117e-09
3.2195565624e-09
3.11541259099e-09
2.47386094289e-09
1.70532698578e-09
1.11127101614e-09
8.01229111236e-10
3.2747119598e-10
-1.49364889946e-10
-7.04621297832e-11
-3.82042778396e-10
-1.80354024426e-09
-2.63728456806e-09
-1.93975754174e-09
-1.48556746399e-09
-1.64084300278e-09
-1.78234737404e-09
-1.38284671969e-09
-1.09998493739e-09
-1.24989812235e-09
-1.65219155021e-09
-1.78776489089e-09
-1.67851987531e-09
-1.36442227078e-09
-9.82554830683e-10
-4.88268754313e-10
-3.29131380556e-10
-4.49639181479e-10
-5.05062241283e-10
-6.10325778496e-10
-9.80015849424e-10
-9.60435094661e-10
-7.66600180891e-10
-3.81172131924e-10
-1.13301138728e-10
-1.89418695742e-10
-2.48088750471e-10
-2.5107094172e-10
-2.25703151982e-10
-5.05901015659e-12
2.97997731668e-10
2.72785690114e-10
-7.288612632e-11
-5.45977426647e-10
-1.01557725716e-09
-1.22756313408e-09
-1.05684406708e-09
-5.78356213968e-10
-2.93564678859e-11
2.1521031959e-10
-6.55442564915e-11
-6.64303588334e-10
-1.24236397605e-09
-1.60954195901e-09
-1.5785113305e-09
-1.38833432852e-09
-1.51027139166e-09
-1.64812261569e-09
-1.61773350876e-09
-1.27711313213e-09
-1.01767848121e-09
-4.83606102636e-10
1.4671682838e-10
3.79737072822e-10
2.20104581838e-10
-4.18151472818e-10
-1.14986564886e-09
-1.09392452253e-09
-6.42503924887e-10
-3.3646181544e-10
-4.12751955417e-10
-4.09188911324e-10
4.05375145479e-10
1.19271429281e-09
2.00992575109e-09
2.48692981424e-09
2.64077810251e-09
2.72975933714e-09
2.80521133801e-09
2.77066721684e-09
2.77572654464e-09
2.72290387598e-09
2.39624985504e-09
1.81645792022e-09
1.11870267146e-09
4.42484082415e-10
-6.92870833272e-11
-5.47446287656e-10
-6.18073906502e-10
-6.54396479225e-10
-6.72449610067e-10
-4.47436207602e-10
-1.73311424573e-10
-6.58573410446e-12
3.60907186298e-10
5.96408709535e-10
8.42159225555e-10
1.06883403021e-09
1.11385933707e-09
7.48628047574e-10
8.37596576705e-10
1.0294762208e-09
1.09917559741e-09
8.67389901834e-10
4.26239472794e-10
-6.32352446773e-12
-2.88901974243e-10
-4.85677045253e-10
-4.84467270446e-10
-1.39472656853e-10
1.41221144615e-10
6.37090537321e-11
1.32675111572e-10
2.35169380443e-10
2.66305782188e-10
5.0153530197e-10
6.89274543136e-10
7.66575405177e-10
8.846858911e-10
1.18236820887e-09
1.36135982316e-09
1.57708810339e-09
1.74176274329e-09
1.57646553418e-09
1.03280866017e-09
5.33632239078e-10
4.16270742038e-10
1.44723519972e-10
-2.19804732175e-10
-7.34501126201e-10
-1.23574166071e-09
-1.55264834413e-09
-1.70373742258e-09
-1.47592822905e-09
-1.22898164957e-09
-1.14584340704e-09
-4.289602485e-10
7.304706258e-10
7.74231735987e-10
1.4229772349e-10
2.48032211021e-10
8.16664274996e-10
1.17848964501e-09
1.49391158556e-09
1.67875746805e-09
1.42783835699e-09
8.92909945743e-10
3.7525168926e-10
-2.89711102466e-10
-9.21568458481e-10
-1.0992035495e-09
-8.36688557386e-10
-2.04089200509e-10
6.04111733037e-10
1.3963852708e-09
2.31604070537e-09
3.06822555017e-09
3.3359214193e-09
3.31972403177e-09
3.35503842353e-09
3.2371062248e-09
2.77935773518e-09
2.28890256383e-09
1.53612357836e-09
8.9489803795e-10
5.14339793155e-10
2.86051920134e-10
-2.90754647057e-10
-6.80602619822e-10
-8.85798468877e-10
-1.00684286517e-09
-4.65641327918e-10
5.83667110547e-10
1.7384648205e-09
2.67538786874e-09
2.95344633895e-09
2.63134744944e-09
1.79594341751e-09
7.68119969756e-10
-1.35233786348e-10
-5.27078851044e-10
-6.02205697147e-10
-7.26463418806e-10
-8.67653540839e-10
-8.5653570401e-10
-9.4405485389e-10
-1.24123689283e-09
-1.25642482885e-09
-7.07588560126e-10
-1.27779155258e-11
6.5841925045e-10
1.14045214821e-09
1.09860046204e-09
6.07784891412e-10
-3.13588537732e-11
-4.83222343771e-10
-4.84195584628e-10
-1.5411319783e-10
5.07993187039e-11
2.32933636978e-10
9.68245479589e-11
-4.72299853917e-10
-9.5848003674e-10
-7.81157183243e-10
-2.71388032811e-10
3.21012728576e-10
1.17307592781e-09
1.97696838733e-09
1.9321862848e-09
1.1446175386e-09
1.64928770951e-09
2.06477388728e-09
8.18534100227e-10
-2.62654117273e-10
4.57579903601e-11
4.21610649496e-12
-9.72113032026e-10
-1.44338141157e-09
-1.30989494831e-09
-1.63681578464e-09
-1.85761990981e-09
-2.07067029539e-09
-2.24879031276e-09
-1.7666388304e-09
-1.00067879466e-09
-3.66543767045e-10
2.1801103403e-10
7.25126059661e-10
4.924666496e-10
-4.28338843954e-10
-1.34274997991e-09
-1.39580293565e-09
-1.23758448676e-09
-8.98959507992e-10
-9.79881263829e-10
-1.4129097454e-09
-1.26655216652e-09
-1.77832132056e-10
1.29333143079e-09
1.68193924144e-09
1.28316555311e-09
1.07588917938e-09
1.29695779059e-09
1.27310386049e-09
7.96932430732e-10
6.2434692663e-10
8.33248333071e-10
3.72885926238e-10
-1.04120190964e-09
-1.88712884363e-09
-1.59824338653e-09
-1.1285604409e-09
-1.55448862909e-09
-7.86695614048e-10
7.28120638767e-10
3.50455964399e-10
-1.60644033612e-11
-1.10671366125e-09
-1.42482673134e-09
-1.62059796243e-09
-2.89122795732e-09
-1.73760190569e-09
-3.56681550682e-09
-2.93833781227e-09
-3.66891304664e-09
-1.76813998454e-09
-3.18037917101e-09
-1.15351572559e-09
-1.01827421007e-09
-5.70995497656e-10
8.48165218546e-10
-2.43992075621e-11
5.46942303053e-10
5.30235954597e-10
-7.04103231306e-10
-6.31008099606e-10
-1.07222226788e-09
-1.22382459535e-09
-9.00790475587e-10
-6.51600741103e-11
-1.48863393502e-10
1.09106451579e-09
2.06592796967e-09
1.18918195366e-09
-2.34520341447e-10
1.18369042731e-09
1.85201382225e-09
1.77974539471e-09
8.91446696327e-10
1.85897982121e-09
1.81231804669e-09
-6.68524141752e-10
-1.8825879e-09
-2.82684117135e-09
-4.23308950555e-10
1.32833866722e-09
-6.35494515491e-10
3.67507898062e-08
-9.93461226912e-09
-1.19023854256e-08
3.83460073793e-10
2.48314834152e-09
9.56883061997e-10
-6.29661105462e-10
-1.64396643678e-09
-4.30568181732e-10
5.23425333245e-11
-3.61796948087e-10
-6.65550275249e-10
-6.93048630781e-10
-6.58468907756e-10
-7.89524386454e-10
-8.15902580619e-10
-3.69866571418e-10
-2.97539380964e-11
2.69779252547e-10
6.37460796598e-10
9.25427434709e-10
9.35647310735e-10
7.41045302751e-10
7.5937986029e-10
8.78445905257e-10
1.09189831384e-09
1.26193943685e-09
1.38503629986e-09
1.50154642291e-09
1.52023927538e-09
1.36569917295e-09
1.26732084892e-09
1.07479417754e-09
7.92841579234e-10
5.88661799139e-10
4.87410021723e-10
3.69666142247e-10
2.16364772558e-10
2.35092935719e-11
-2.63162495861e-10
-3.22707535624e-10
-2.14020238299e-10
-4.40296196312e-11
2.57407489319e-10
5.12701102039e-10
7.53693569296e-10
1.08968522851e-09
1.23743869122e-09
9.18234483861e-10
4.44431940556e-10
2.13980110113e-10
2.37462775087e-10
2.46124269308e-10
6.21658655814e-12
-1.81730812954e-10
-4.44888491315e-10
-9.07490347381e-10
-1.40809761888e-09
-1.96507726236e-09
-2.51900282266e-09
-2.87408432811e-09
-2.97489278966e-09
-2.70509405535e-09
-1.96323824795e-09
-7.58256376965e-10
4.00751827895e-10
1.10709948475e-09
1.47808371615e-09
1.36776741564e-09
1.03375087844e-09
6.00720742511e-10
3.00327178152e-11
-5.32813528795e-10
-1.18141482035e-09
-1.59715600798e-09
-1.64552804789e-09
-1.58980223999e-09
-1.357153575e-09
-1.20155044787e-09
-1.08990513944e-09
-1.20095354111e-09
-1.46363322819e-09
-1.69071524393e-09
-1.81938547785e-09
-1.82814708077e-09
-1.70691771366e-09
-1.39792390615e-09
-7.85277680894e-10
8.47511520869e-11
8.79567482758e-10
1.6108065792e-09
1.8957188165e-09
1.53780885629e-09
1.03262358347e-09
6.06743464404e-10
4.88301788598e-11
-5.15045795116e-10
-6.11060791336e-10
-1.47246513485e-10
4.99986184589e-10
9.31972140656e-10
1.04942363495e-09
8.15594260626e-10
3.10837798236e-10
-3.17954569059e-10
-7.88834689877e-10
-6.98977623184e-10
-3.2023277005e-10
-2.83679804365e-11
2.48403582029e-10
7.89330204151e-10
1.23416368796e-09
1.28279848345e-09
1.21448216605e-09
1.40350797085e-09
1.67592340169e-09
1.52404335329e-09
1.28985679576e-09
1.13249999114e-09
5.13219486203e-10
-3.06199657575e-10
-1.19096919318e-09
-1.25552019766e-09
-1.53105652139e-10
8.20586778696e-10
1.1178039695e-09
1.32940804632e-09
1.77784359398e-09
2.06008608931e-09
1.69189219621e-09
4.42210067257e-10
-1.11444876612e-09
-2.23923440469e-09
-2.81563810184e-09
-2.90652685466e-09
-2.77954761614e-09
-2.26359681926e-09
-1.23953568009e-09
-2.51674611513e-10
1.79171714662e-10
2.62203389866e-10
2.55721417298e-10
-9.9881066349e-13
-4.03038710973e-10
-6.28903646249e-10
-3.33154019432e-10
3.48193539397e-11
1.02346355742e-10
-3.37493925086e-11
-3.15824890002e-10
-7.64721011827e-10
-1.18798647253e-09
-1.38005029335e-09
-1.18615529318e-09
-3.83781628676e-10
7.84484752176e-10
2.00089299174e-09
3.06374876928e-09
3.47517776512e-09
3.10230232091e-09
2.36551748801e-09
1.76554329916e-09
1.70349315945e-09
2.02553498012e-09
2.64931714753e-09
3.35919206134e-09
3.88923690413e-09
3.96761169807e-09
3.69314930624e-09
3.05940529021e-09
2.51120101394e-09
2.22919695839e-09
2.07133436922e-09
1.80248875874e-09
1.53592071397e-09
1.17665327758e-09
3.907901381e-10
-6.35798547379e-10
-1.49725583045e-09
-1.9857253051e-09
-2.00147589599e-09
-1.79505840871e-09
-1.87108799837e-09
-1.07980813613e-09
-2.25852018023e-10
-5.35267647941e-11
2.27175612882e-10
1.28692542649e-09
2.02928257152e-09
1.84062842889e-09
1.14689637487e-09
5.76789414773e-10
5.09364533381e-10
1.03843401773e-09
1.7834240588e-09
1.92587361294e-09
1.75956547001e-09
1.75710081589e-09
1.23102114609e-09
6.27492171721e-10
1.04210421149e-09
2.03898702799e-09
2.79136954911e-09
3.27530213e-09
3.43496784056e-09
3.08919903885e-09
2.7360402982e-09
2.31672754321e-09
1.75940876892e-09
1.70594891973e-09
1.80955878393e-09
1.25926718025e-09
7.35603996185e-10
7.68216478573e-10
2.11719405647e-10
-7.240861679e-10
-1.3563220947e-09
-1.36778986202e-09
-7.26371092215e-10
-1.61903571604e-10
-1.86929054152e-10
-1.09145340979e-09
-1.72429004177e-09
-1.78211602817e-09
-1.43830450784e-09
-1.18650480015e-09
-1.10376122203e-09
-1.32735780307e-09
-1.64936118962e-09
-1.91993082978e-09
-1.85631590259e-09
-1.54022713535e-09
-1.28638343128e-09
-1.17453580109e-09
-1.15354150716e-09
-1.02190173454e-09
-8.88096892779e-10
-3.97739355218e-10
-1.18279151359e-11
2.14844877813e-10
4.90313915364e-10
6.01166758298e-10
4.61117377887e-10
2.94674874355e-10
9.12510182264e-11
-3.41681550098e-10
-6.59197885487e-10
-8.35130016763e-10
-9.17298247756e-10
-5.59050321396e-10
-3.13364074001e-11
3.63901236008e-11
-3.574744794e-10
-9.07970509183e-10
-1.2171366879e-09
-1.44667965199e-09
-1.70931651097e-09
-1.67191598294e-09
-1.33064238508e-09
-1.23389438773e-09
-1.20063754488e-09
-9.95405379284e-10
-4.06218472657e-10
-8.39457825728e-11
-1.09636794789e-10
-4.07148488364e-11
-1.5605777041e-10
-4.2217937918e-10
-1.55661468178e-10
-3.91558979318e-10
-9.29820359332e-10
-1.10642196427e-09
-9.81699750923e-10
-5.03379822092e-10
-5.0070425677e-10
-4.25332724024e-10
8.59363629384e-11
5.19749792589e-10
7.63972261172e-10
8.55204697613e-10
8.82815007078e-10
1.19889911563e-09
1.58220905283e-09
1.64255400934e-09
1.65769366448e-09
1.73186177516e-09
1.67882713651e-09
1.29437603417e-09
7.47051507501e-10
3.90903164059e-10
-9.79272789771e-11
-4.4574653569e-10
-3.3482847122e-10
2.20951350088e-10
8.71319499434e-10
1.57445285155e-09
1.94124816091e-09
1.96547462669e-09
1.350689855e-09
8.50821725627e-10
2.76121411739e-10
1.99040248869e-10
3.1695761128e-10
5.66328769633e-10
9.24067205675e-10
1.21433502055e-09
1.19712204051e-09
7.73248542494e-10
3.04934296231e-10
4.07645193778e-11
-1.90860557576e-10
-6.70833471204e-10
-9.87968218249e-10
-1.05194345208e-09
-1.17131019375e-09
-9.81738290922e-10
-3.08228407363e-10
3.14016183492e-10
8.79874320443e-10
1.31235886128e-09
1.48102980261e-09
1.43738473594e-09
1.47619684438e-09
1.52589364382e-09
1.50955035486e-09
1.22765842529e-09
9.50311886271e-10
5.64670914397e-10
2.42504474008e-11
-4.31846936784e-10
-6.87290368457e-10
-8.65678154127e-10
-1.15367634421e-09
-1.53862073737e-09
-1.84809650663e-09
-1.76938116574e-09
-1.10184012483e-09
-4.63796490159e-10
-5.18093896117e-10
-4.2493567733e-10
4.62616043868e-10
1.36161901524e-09
1.58553535122e-09
1.75431005409e-09
2.31521569528e-09
2.62394861664e-09
2.54018002277e-09
2.15732663633e-09
1.47150523476e-09
6.22638037659e-10
-1.53601166413e-10
-7.96151466355e-10
-1.30320211748e-09
-1.63053545885e-09
-1.49331696843e-09
-6.50907126999e-10
4.59620617729e-10
1.18627557186e-09
1.77321530008e-09
2.25686232499e-09
2.34966187827e-09
2.58282548469e-09
2.80986869573e-09
3.04022285269e-09
2.82171458385e-09
2.04126104676e-09
1.39162642794e-09
4.44716861264e-10
-3.91216883887e-10
-8.02222575004e-10
-1.18900100625e-09
-1.49269863438e-09
-1.62843545241e-09
-1.12240462896e-09
-2.54689889987e-10
8.09786790981e-10
1.83090089076e-09
2.44995259092e-09
2.31053689704e-09
1.61795903129e-09
7.23952389634e-10
-3.69553063349e-11
-7.75218317613e-10
-1.22455214371e-09
-1.09391854036e-09
-7.37497081735e-10
-4.78533963469e-10
-3.76953007874e-10
-5.42825034715e-10
-8.15515168924e-10
-8.81220255797e-10
-4.90188025092e-10
6.74822678748e-11
4.90963695514e-10
8.73131408788e-10
8.75349893956e-10
3.92130620679e-10
-2.78625982285e-10
-5.16022847621e-10
-4.62311429644e-10
-4.13528472871e-10
-3.46103591479e-10
-6.05081374003e-10
-1.23292178214e-09
-1.62680163174e-09
-1.74499067997e-09
-1.30108887616e-09
1.68297876262e-10
1.14728537475e-09
1.01012367524e-09
1.10328027937e-09
1.05600375746e-09
3.7801396958e-10
1.08922137209e-09
3.44734976818e-09
4.34654279257e-09
3.29185124797e-09
2.4907658147e-09
1.32648599441e-09
-3.32608662563e-12
-9.37440797121e-10
-8.41416060023e-10
-5.126673266e-10
-4.29293661844e-10
-4.64105445427e-10
-5.5290435621e-10
-2.90107513885e-10
1.80465663368e-10
3.44096335152e-10
1.35592822438e-10
-1.40475332104e-10
-8.67992565776e-10
-1.57313574178e-09
-2.09892964385e-09
-2.51042195539e-09
-2.40280329601e-09
-1.80806850887e-09
-1.52585990809e-09
-2.07030623004e-09
-2.469586497e-09
-2.69322013574e-09
-1.95459194738e-09
-6.61404406314e-10
-3.84964721945e-10
-8.29454790137e-10
-5.55120829675e-10
-1.22255865167e-10
-3.10751824392e-10
-8.05814629975e-10
-1.03277287303e-09
-9.91249835645e-10
-7.05819320057e-10
-5.86090683567e-10
-9.73912130006e-10
-6.31210752239e-10
-3.75075929923e-10
-2.27043751028e-09
-7.13910284648e-10
8.56152103964e-10
9.24989201038e-10
2.70358623083e-10
-4.82579763402e-10
-6.17070278338e-10
-1.58082002468e-09
-1.60421920397e-09
-2.70538278771e-09
-2.33734654861e-09
-3.76795787971e-09
-1.98702462717e-09
-2.93280541657e-09
-2.08266364664e-09
-1.03021906869e-09
-1.43264971589e-09
-3.21426768868e-10
1.94946644514e-10
-1.01494441767e-09
-1.13449496549e-09
-1.51000055287e-09
-1.98580214687e-09
-2.84684687196e-09
-1.63695477745e-09
-1.77815289253e-09
-1.12966603065e-09
-1.71972029902e-09
-1.2813367031e-09
2.13658237593e-09
3.48813461635e-09
3.74987986727e-09
3.06178905268e-09
2.78778787029e-09
2.52008120148e-09
3.30921775273e-09
-4.9119228853e-10
2.93915032862e-09
5.81490426455e-09
2.84779274306e-09
1.83318216225e-09
3.42696613207e-10
5.21482821999e-10
-6.24492976286e-09
2.11779776861e-08
4.8250207354e-08
-4.10879811433e-09
4.00227302742e-11
2.17455105131e-09
2.48302928045e-09
7.80832663745e-10
-7.38121133259e-10
-8.94086871554e-10
-1.51787218887e-10
4.09467002829e-10
4.09544559283e-10
6.65117692876e-10
6.96587560905e-10
2.66800078852e-10
3.64289812373e-11
3.94492148536e-10
9.43912234717e-10
1.32475878835e-09
1.38208513119e-09
1.2475259007e-09
9.97886338787e-10
8.10607671786e-10
6.25717849455e-10
4.40680219875e-10
3.96042324708e-10
7.11385914707e-10
9.95716663892e-10
1.00346643302e-09
8.61420595957e-10
6.52074126642e-10
5.61658600539e-10
7.07455099497e-10
8.7082880266e-10
7.86828201174e-10
4.59975683353e-10
4.9564318197e-11
-2.28996019035e-10
-3.25238920057e-10
-4.18960283404e-10
-5.76931729543e-10
-6.9122503502e-10
-5.22644276223e-10
-4.92277152447e-11
3.7629837052e-10
6.54079728607e-10
8.00232960785e-10
7.98551719499e-10
8.9554178299e-10
8.37921122673e-10
5.58465180449e-10
3.72271880291e-10
3.0916432583e-10
1.52679965144e-10
-2.5157174995e-10
-7.63840229911e-10
-1.08613425464e-09
-1.25315369349e-09
-1.41805967925e-09
-1.88947570723e-09
-2.47692376109e-09
-2.81366970315e-09
-2.74122043407e-09
-2.27563331626e-09
-1.49480329949e-09
-5.53340895815e-10
1.48286669944e-10
3.15190700552e-10
3.15648945377e-10
7.50916942356e-11
-3.3319152711e-10
-7.67538322819e-10
-1.08267264274e-09
-1.37847772375e-09
-1.71911477634e-09
-1.65590515441e-09
-1.22002829956e-09
-9.50555077371e-10
-7.97335218059e-10
-6.6336310383e-10
-8.18756631665e-10
-1.01689772859e-09
-1.2214594676e-09
-1.34208040037e-09
-1.18916734234e-09
-8.86141940737e-10
-4.68810078174e-10
2.33797292947e-10
1.06472263816e-09
1.7618365771e-09
2.17255755927e-09
2.35984035556e-09
2.22039670958e-09
1.67345165367e-09
8.63956453782e-10
3.06938482064e-10
1.63362162339e-10
2.94333784776e-10
6.08338639202e-10
9.68873131003e-10
1.17065564904e-09
9.75930186003e-10
3.8896229394e-10
-3.86808183276e-10
-1.05732401712e-09
-1.31197748469e-09
-1.29708998067e-09
-1.04734813953e-09
-3.84939284487e-10
-4.43816147604e-12
7.18152913863e-11
3.3758689357e-10
6.99660742021e-10
6.9665654115e-10
4.61680760676e-10
4.53904204126e-10
5.98893957142e-10
4.33262593537e-10
-1.00430049578e-10
-6.48903364683e-10
-9.75592643373e-10
-1.00831606722e-09
-8.87715092678e-10
-5.6397274749e-10
3.56143578882e-10
1.44074364509e-09
2.0713141463e-09
2.20841204041e-09
1.9070928808e-09
1.33371976166e-09
4.95678916173e-10
-7.99849718081e-10
-2.20491797656e-09
-3.06070204471e-09
-3.14071489449e-09
-2.6716206897e-09
-2.01583534114e-09
-1.26729999074e-09
-4.2190441111e-10
7.08544383867e-11
-3.54654812598e-11
-2.23802674747e-10
-2.75352199944e-10
-3.16090845112e-10
-4.49726783214e-10
-4.56920117875e-10
-2.14747257266e-10
-8.21808438434e-11
-8.84102682446e-11
-3.70501184384e-10
-8.42909405579e-10
-1.43520079384e-09
-1.62056982506e-09
-1.27637205771e-09
-4.75460345601e-10
6.92998867596e-10
1.94875292576e-09
3.03915987928e-09
3.50483678258e-09
3.36087622754e-09
2.91689607318e-09
2.43171560099e-09
2.35687521084e-09
2.84463055731e-09
3.57349954969e-09
4.06533124222e-09
4.32953627682e-09
4.33850339111e-09
3.98367207802e-09
3.20086328641e-09
2.26042388678e-09
1.45757620146e-09
8.37987482411e-10
5.8041323348e-10
3.85412643555e-10
1.96161025062e-10
-3.58047444249e-10
-8.85067585322e-10
-1.19844754119e-09
-1.5624094724e-09
-1.57863568553e-09
-1.11924124545e-09
-8.94682249689e-10
-2.43380928115e-10
1.18053348257e-09
2.38605602527e-09
2.59148930825e-09
2.48185460457e-09
2.62259071695e-09
2.23249848106e-09
1.54050453864e-09
1.08106582124e-09
1.13278734707e-09
1.81193688187e-09
2.7621399244e-09
2.86077373474e-09
1.87836607603e-09
1.0715178541e-09
7.5841064284e-10
5.31620535828e-10
7.82788039304e-10
1.61119621436e-09
2.45862260841e-09
2.80966948417e-09
2.57928255763e-09
2.11788105313e-09
1.84267867214e-09
1.55713507765e-09
1.17225664719e-09
1.22486390478e-09
1.53275503421e-09
7.73764041451e-10
-3.50861249812e-10
-5.15640359306e-10
-7.34056063326e-10
-1.65633730003e-09
-2.20436322292e-09
-2.0817942732e-09
-2.15626032773e-09
-2.20151602755e-09
-1.57689646219e-09
-1.08032096164e-09
-1.46061112051e-09
-1.92365226904e-09
-1.69934301565e-09
-9.87688167981e-10
-3.63483966403e-10
-2.25379056001e-10
-4.63704057689e-10
-1.2114631024e-09
-2.0471316733e-09
-1.9655121079e-09
-1.20890125125e-09
-5.403623923e-10
-4.96803008303e-10
-5.24461228069e-10
-7.10069016703e-10
-7.41400447784e-10
-5.68327449751e-10
-5.04407537755e-10
-4.2439042634e-10
-2.8329969833e-10
-1.52894555647e-10
-2.62244709192e-10
-6.27188748638e-10
-1.28886836125e-09
-1.79167818311e-09
-1.61005383161e-09
-1.05453929043e-09
-5.09952956581e-10
1.55104438136e-11
2.29912799851e-10
7.12409765782e-11
-4.66358658945e-10
-1.03069065428e-09
-1.28027124153e-09
-1.29473941131e-09
-1.39602676411e-09
-1.77180626077e-09
-1.69820142699e-09
-1.41155721907e-09
-1.21193426448e-09
-5.31789042445e-10
-2.05052859305e-10
-2.79252469029e-10
-4.23097536425e-10
-2.53645802765e-10
1.43542802366e-10
8.67762225754e-10
1.1448530667e-09
4.67788821137e-10
-4.36307094647e-10
-7.78771832584e-10
-2.45974132718e-10
4.27099422994e-10
7.74892315807e-10
1.24172827782e-09
1.64327843427e-09
2.00594702558e-09
2.17483777196e-09
2.24207249446e-09
2.40874761441e-09
2.75761168627e-09
2.96980847439e-09
2.89182109214e-09
2.61497536136e-09
2.32763700993e-09
2.00288786021e-09
1.48718063824e-09
6.45174408012e-10
-5.90265497206e-12
-4.86165359747e-10
-1.08870126739e-09
-1.17973438639e-09
-6.99070664459e-10
1.22595631258e-10
9.05601252151e-10
1.84843796678e-09
1.88395014073e-09
1.72474129857e-09
1.50606290846e-09
1.16915470666e-09
8.53880043963e-10
6.19383737076e-10
3.61866345232e-10
-1.01028795993e-11
-3.81619682957e-10
-7.72802685526e-10
-9.4997572007e-10
-7.71379723114e-10
-3.23870988317e-10
-2.40394303178e-10
-4.318402664e-10
-7.07734038034e-10
-1.00701830687e-09
-9.89734493702e-10
-4.01846247402e-10
4.72571910311e-10
1.14503115538e-09
1.54153453071e-09
1.69869953531e-09
1.68483514121e-09
1.46525180227e-09
1.09007507543e-09
7.5283928363e-10
3.6973549307e-10
2.00340020926e-10
-1.17173349846e-10
-4.84188702485e-10
-1.03504800352e-09
-1.39327348351e-09
-1.71745554468e-09
-1.81042397514e-09
-1.86937238607e-09
-2.04202649985e-09
-2.17960511162e-09
-1.84039834943e-09
-7.97827506329e-10
-2.59607816218e-10
-7.7450522175e-10
-9.85937562637e-10
-2.16117280118e-10
6.18901669449e-10
1.2376091566e-09
1.90419740455e-09
2.4000036933e-09
2.36750155681e-09
1.85200535192e-09
1.01794492601e-09
-7.78759974123e-11
-1.07433762678e-09
-1.51916629639e-09
-1.49365599336e-09
-1.21354664463e-09
-5.14014956019e-10
6.46369042105e-10
1.80115552888e-09
2.63509398204e-09
3.11774754319e-09
3.34094511877e-09
3.4950129474e-09
3.85956573703e-09
4.19010978988e-09
4.48285040494e-09
4.44312786843e-09
3.67271378935e-09
3.04324210163e-09
2.52734927357e-09
2.00590562684e-09
1.04598902222e-09
2.59816768658e-11
-7.24748282967e-10
-1.05336276167e-09
-5.41381214117e-10
4.35000546326e-10
1.33304287646e-09
1.79529279033e-09
1.70422065488e-09
1.07804540763e-09
1.90229888607e-10
-6.8467663654e-10
-1.32514477068e-09
-1.66994864304e-09
-1.70641494667e-09
-1.24490827773e-09
-6.55840776279e-10
-4.20343620556e-10
-5.14713599382e-10
-7.16267153824e-10
-9.77924419198e-10
-1.17815697282e-09
-1.04522494557e-09
-5.41366020463e-10
5.84182741854e-11
5.22879791087e-10
6.83729124309e-10
5.52303068697e-10
1.06901698932e-10
-4.24645992062e-10
-5.0112216165e-10
-3.20944065967e-10
-2.61860023885e-10
-8.94152754835e-10
-1.85331772359e-09
-2.37114252793e-09
-2.10345597616e-09
-1.27095059686e-09
-9.53909976352e-11
1.07971956825e-09
1.1304526331e-09
1.19097217765e-09
1.61638365588e-09
5.87026072639e-10
-8.67718550617e-10
-2.08489219033e-10
1.54673795998e-09
1.40263605631e-09
7.40347241724e-10
3.55254088408e-10
-3.00352165624e-10
-8.54991033552e-10
-1.00359470558e-09
-1.19638808646e-09
-1.22736154024e-09
-7.85855992639e-10
-3.12478924572e-11
4.91161371828e-10
1.00571186443e-09
1.44265931598e-09
1.21086038552e-09
1.12882704452e-10
-7.42933550949e-10
-8.57498039318e-10
-6.58383780945e-10
-1.01038632163e-09
-1.75010747365e-09
-2.2428102767e-09
-1.02937969875e-09
2.79447286607e-10
1.03288155794e-09
1.29940698636e-09
1.11441001436e-09
9.95594797027e-10
1.44896812325e-09
1.92072661724e-09
1.74340514017e-09
1.2097003739e-09
1.83872006366e-10
-1.38792097644e-09
-1.84587950377e-09
-1.44536304515e-09
-1.19181516734e-09
-9.7134636133e-10
-7.89038348361e-10
-1.1735498018e-09
-1.11153936676e-09
-7.74112410221e-10
-1.32218534344e-09
-9.71350861192e-10
-3.49622431039e-10
-5.95590131601e-10
-1.67752365869e-09
-2.4123735507e-09
-2.42142515654e-09
-2.42246499536e-09
-2.63997209772e-09
-2.03432416456e-09
-2.62178540037e-09
-2.444462441e-09
-1.58029274667e-09
-1.06710735354e-09
-6.24786007334e-10
2.09451766098e-10
-6.88591728701e-10
-7.38667787147e-11
-6.14945707948e-10
-1.80825684135e-09
-1.58809572006e-09
-2.12310576411e-09
-2.11052647781e-09
-1.74038972935e-09
-6.58568553242e-10
5.80921982644e-10
1.66295040389e-10
-2.25704655466e-09
-2.4952495836e-09
1.97993845542e-10
1.23203896206e-09
1.47069938879e-09
1.50931318564e-09
-3.69541204887e-10
3.42507576629e-09
-3.87750295671e-10
-1.67895630904e-09
-1.50287361765e-10
-3.4018854865e-10
8.15941967651e-10
1.74774872512e-10
2.53976116498e-09
-6.69886657775e-09
-4.13665984435e-08
3.06336097642e-08
-1.03611590031e-09
-3.77558398203e-09
-1.7776269653e-09
3.00264762412e-10
1.01019404515e-09
5.30003933744e-10
-2.15628913512e-10
-6.35362907746e-10
-6.92141696723e-10
-7.14834132896e-10
-7.86690293622e-10
-8.72000196287e-10
-9.26173458978e-10
-7.76617351344e-10
-6.53853213468e-10
-2.43315719813e-10
5.02874196362e-10
1.11019782539e-09
1.34659302133e-09
1.35869733391e-09
1.48726031228e-09
1.6098652609e-09
1.65991612011e-09
1.48730494033e-09
1.2331458753e-09
1.17367484504e-09
1.0158360522e-09
9.09630137894e-10
9.92984453242e-10
1.22177699908e-09
1.44432291516e-09
1.64092601201e-09
1.60395412236e-09
1.39961110314e-09
9.64753003929e-10
2.33967175993e-10
-4.91351034416e-10
-8.14613555292e-10
-7.41600314472e-10
-5.41896719692e-10
-4.72613017879e-10
-3.36858961396e-10
7.04027315978e-11
4.12092368214e-10
7.73669028178e-10
1.01775778467e-09
9.17448040239e-10
6.76690578303e-10
5.16090292619e-10
4.96108123649e-10
3.60139099468e-10
7.71670573053e-11
-2.28834076923e-10
-3.74886273952e-10
-4.28461372564e-10
-6.51644098602e-10
-8.90722694915e-10
-1.23038444201e-09
-1.88133728232e-09
-2.34037792071e-09
-2.10495797733e-09
-1.42799368166e-09
-5.47216741728e-10
8.35526534061e-11
5.30243789651e-10
5.18303801469e-10
2.4846589189e-10
-1.57567398189e-10
-6.18124463781e-10
-9.81904891715e-10
-1.34174905166e-09
-1.65570356057e-09
-1.86353090276e-09
-1.99343049913e-09
-1.65566176479e-09
-1.21600620332e-09
-9.98838992772e-10
-1.30852694709e-09
-1.777345082e-09
-1.90288429172e-09
-1.93904246064e-09
-1.76724948821e-09
-1.38939142563e-09
-8.57687351181e-10
-1.68185062062e-10
5.62258723382e-10
1.12317860531e-09
1.74590579319e-09
2.18755713634e-09
2.23568004269e-09
2.06399218175e-09
1.75884263327e-09
1.28088608157e-09
6.63162634954e-10
2.52897780029e-10
4.09297755058e-10
1.06029477343e-09
1.52529193279e-09
1.46766436386e-09
1.11233668947e-09
5.56846871063e-10
-2.3134698545e-10
-8.06515655618e-10
-9.3455490293e-10
-8.07477593878e-10
-2.50416132312e-10
3.97649139592e-10
8.76015148173e-10
9.87889761822e-10
9.60059342905e-10
9.26624106975e-10
1.08693382727e-09
1.36288493245e-09
1.17837315151e-09
7.3139182707e-10
2.49664390571e-10
-4.48920209325e-10
-1.02328033361e-09
-1.44302274606e-09
-1.61174810926e-09
-1.07706761397e-09
-1.90259270063e-10
5.90976475486e-10
1.30576481566e-09
1.83108723801e-09
2.09466271537e-09
2.03352305668e-09
1.38624377179e-09
1.20797671479e-10
-1.33269098721e-09
-2.6156752488e-09
-3.30344919366e-09
-3.33032144626e-09
-2.7657092683e-09
-2.09556958326e-09
-1.47065730184e-09
-7.33929193673e-10
-2.08854104945e-11
2.77611891941e-10
1.80719938689e-10
3.48157540497e-11
1.25906683049e-11
1.65665079487e-10
3.5574085442e-10
6.95799807029e-10
8.82651840739e-10
6.54303272514e-10
3.00271737199e-10
-1.72205735557e-10
-6.86677143073e-10
-1.06094327641e-09
-9.17911995919e-10
-2.87391264512e-11
1.13072541741e-09
2.09330461716e-09
2.72849435961e-09
2.87133925315e-09
2.60329173299e-09
2.33156184297e-09
2.37990910718e-09
2.73996862525e-09
3.12696315578e-09
3.7766463731e-09
4.41864795451e-09
4.57874109907e-09
4.40879457906e-09
4.03675700926e-09
3.28762693584e-09
2.2996885755e-09
1.68811644097e-09
1.39553934958e-09
1.21325171835e-09
8.820533127e-10
3.19389972267e-10
-4.40822203772e-10
-1.35688224818e-09
-1.60388849054e-09
-1.35858526086e-09
-8.56752226808e-10
-2.4069904975e-10
-1.49577680505e-10
-8.0448592314e-10
-2.87894766042e-10
1.17604216978e-09
2.04404000304e-09
1.95209002381e-09
1.51215249301e-09
8.71142998944e-10
3.93011058488e-10
5.801033253e-10
1.26570672176e-09
2.2538707105e-09
3.13507106103e-09
3.50491539783e-09
2.9378295925e-09
1.87047966989e-09
1.26564330017e-09
1.29063956008e-09
1.65974496652e-09
2.44073443724e-09
3.28445590919e-09
3.62966175162e-09
3.48921331281e-09
2.96907346155e-09
2.51539986214e-09
2.46437507386e-09
2.43633568926e-09
2.18062303346e-09
2.57879188071e-09
2.9152225346e-09
1.31803902452e-09
-7.01186446882e-10
-1.06019974692e-09
-1.2318704025e-09
-1.71892091168e-09
-1.56440802017e-09
-1.28451752358e-09
-1.24673344844e-09
-1.68667584968e-09
-1.70953594544e-09
-1.46322310542e-09
-1.40057056647e-09
-1.40061408279e-09
-1.33891159717e-09
-1.36997441293e-09
-1.43529637621e-09
-1.61222191832e-09
-1.49120632114e-09
-1.59013339016e-09
-1.77304795813e-09
-1.72763391609e-09
-1.01754118246e-09
-2.36771437383e-10
1.07880313154e-10
5.3637871694e-11
-2.28027847141e-10
-3.61241287856e-10
-3.1386087206e-10
-1.22613723353e-10
-4.42890896458e-11
-1.51905287339e-10
-4.13899539477e-10
-7.94412031258e-10
-1.12659746851e-09
-1.37876793841e-09
-1.27544225376e-09
-7.86690425971e-10
-2.37516641088e-10
-5.35043713605e-11
-2.81252525575e-10
-6.26135860215e-10
-7.89056612509e-10
-7.87861660779e-10
-7.58337480369e-10
-7.38935396619e-10
-8.49785327877e-10
-1.07938700194e-09
-1.36822550165e-09
-1.34455373657e-09
-1.0858165114e-09
-6.02563833265e-10
6.29370361403e-11
7.25012636656e-10
1.04601978011e-09
8.36469056739e-10
2.40427264671e-10
-1.10669188158e-10
5.53485884033e-10
1.12578368161e-09
2.57856046204e-10
-8.25538374487e-10
-1.29688176939e-09
-8.51498557892e-10
-1.98650613713e-10
-3.35272581182e-11
4.62215291405e-12
1.36137676382e-10
4.84402790063e-10
1.02096248089e-09
1.36404904688e-09
1.60594238662e-09
1.75998570423e-09
1.70832834115e-09
1.53239282175e-09
1.49294268574e-09
1.48315934932e-09
1.51124717361e-09
1.37699621018e-09
8.57708897582e-10
5.64802548611e-10
8.57937345015e-10
8.593269919e-10
5.45129387848e-10
6.01711479892e-10
7.04212922073e-10
1.04953030816e-09
1.55696577694e-09
1.57616033762e-09
1.83698544606e-09
2.22866057477e-09
2.60459449613e-09
2.47184304572e-09
1.8521562826e-09
9.31762764699e-10
1.91273115561e-10
-4.00907046683e-10
-7.90329200103e-10
-9.45258540647e-10
-8.29522658652e-10
-8.36767040282e-10
-1.08228197526e-09
-1.21390280875e-09
-1.09114041788e-09
-7.68972071666e-10
-1.47845087846e-10
6.45854628408e-10
1.23114510407e-09
1.51909141339e-09
1.51817225029e-09
1.27818076422e-09
1.07741007998e-09
9.42139924154e-10
4.91586794126e-10
-2.06012282937e-10
-5.0764113897e-10
-6.3311662931e-10
-5.8026426156e-10
-7.87959704842e-10
-1.06481882934e-09
-1.39456637343e-09
-1.59494964597e-09
-1.30206497575e-09
-8.70106230617e-10
-9.57389693578e-10
-1.12473657683e-09
-6.62672616468e-10
3.42127274717e-10
7.37947544444e-10
4.49422764561e-10
6.24582401789e-10
1.44791690243e-09
2.2912434982e-09
2.95437722816e-09
3.35721858045e-09
3.31722316699e-09
2.73642993336e-09
1.9625301284e-09
1.09434570967e-09
1.10514082694e-10
-7.14408234142e-10
-1.14787353325e-09
-9.74148134561e-10
-4.67762298418e-10
2.1595973199e-10
1.00412182477e-09
1.42727709178e-09
1.58411228293e-09
1.90054851896e-09
2.38090451647e-09
2.18530813317e-09
1.83110634919e-09
1.69011284468e-09
1.5439221313e-09
1.21691291238e-09
9.01177146127e-10
9.86020942443e-10
1.14929501336e-09
1.00164737683e-09
4.35419933514e-10
-8.58022140954e-11
3.57863479281e-11
5.7502313932e-10
1.444488166e-09
1.97948073999e-09
1.89766318063e-09
1.23799561538e-09
3.56687718141e-10
-5.89481541744e-10
-1.30120171683e-09
-1.73507380351e-09
-1.72176461304e-09
-1.32278311047e-09
-6.23594801077e-10
-2.45338063914e-11
2.80241512344e-11
-4.78835679252e-10
-9.23993063823e-10
-1.03324754235e-09
-1.05741688635e-09
-8.77905035016e-10
-4.04938499995e-10
8.52780065801e-11
3.17063860976e-10
4.19087894211e-10
3.56398959315e-10
2.90869790598e-10
2.41694181115e-10
2.68439299364e-10
3.44788414009e-10
-1.80710561769e-10
-1.0896264656e-09
-1.77740938372e-09
-2.10004084519e-09
-1.76978905181e-09
-1.41098864821e-09
-1.17816989007e-09
-5.63877403344e-10
-4.85587392109e-10
-7.51628992662e-10
1.23770344195e-09
3.95104045137e-09
4.02704373834e-09
3.077375253e-09
2.80841677538e-09
2.04483129063e-09
1.20145196706e-09
1.64216352715e-09
2.15040870649e-09
2.01488364669e-09
1.85768534311e-09
1.26128065698e-09
6.08027460473e-10
4.84915244996e-10
6.72958782748e-10
8.50382750802e-10
1.0136949382e-09
7.2754147999e-10
-1.44313661905e-10
-1.22489148629e-09
-1.88129395129e-09
-2.05244325809e-09
-1.56658613893e-09
-1.04342489467e-09
-1.51822179262e-09
-3.00840420561e-09
-3.57392460141e-09
-2.14835904558e-09
-5.76602564599e-10
2.20892798935e-10
5.22250551487e-10
5.54489631311e-10
8.79233010623e-10
7.89315328135e-10
6.56539260823e-10
8.95877102158e-10
1.00632035172e-09
5.21519826751e-10
-4.63026484271e-10
-1.00852459615e-09
-8.4913395954e-10
-1.29635078561e-09
-1.6157372374e-09
7.79098654953e-10
7.74172761318e-10
4.5534135434e-10
3.46323740636e-10
-8.67129425968e-10
-1.73253058709e-09
-9.78428496446e-10
-1.21031670948e-09
-2.1176508984e-09
-2.34337801876e-09
-2.81139968132e-09
-2.53293521763e-09
-3.27103411627e-09
-2.15183778342e-09
-2.58470282734e-09
-1.43546382404e-09
-1.1623035336e-09
-1.65250754644e-09
-2.1430722365e-10
-8.45424008171e-10
-1.70250181327e-09
-1.65646991363e-09
-2.69829116317e-09
-2.79316838239e-09
-2.33878931042e-09
-2.34521011132e-09
-2.71899328368e-09
-2.45163961586e-09
-7.77303070836e-10
1.83934539897e-09
2.25863474144e-09
4.41394533347e-10
8.63814416945e-10
1.42384613189e-09
2.12998473043e-09
3.3025031108e-09
1.55216871172e-09
2.46543645908e-09
2.75137424152e-09
3.89828289837e-09
3.39982804347e-09
1.59610716943e-09
1.87929198892e-09
3.13829836243e-09
8.14259760217e-09
1.29335777351e-08
-2.6677450481e-08
1.03129296967e-06
1.0310998513e-06
1.02401083973e-06
1.0206898596e-06
1.01978328433e-06
1.02050683972e-06
1.02152033838e-06
1.02221059289e-06
1.0220790007e-06
1.02183681258e-06
1.02163329645e-06
1.02115508391e-06
1.02069228852e-06
1.02064327639e-06
1.02098998394e-06
1.02146443999e-06
1.02190154661e-06
1.02227900675e-06
1.02250040642e-06
1.02261600887e-06
1.0227164589e-06
1.02285670233e-06
1.02302736759e-06
1.02306909304e-06
1.02296904005e-06
1.0226018104e-06
1.02229714628e-06
1.02209100885e-06
1.02217423973e-06
1.02248195724e-06
1.02290582209e-06
1.02322225364e-06
1.02330887932e-06
1.02314497693e-06
1.02277488188e-06
1.02223121232e-06
1.02161184634e-06
1.02098140286e-06
1.02041334843e-06
1.0201255297e-06
1.02028824364e-06
1.02067807224e-06
1.02108920519e-06
1.02158729808e-06
1.02191621483e-06
1.02208119351e-06
1.02215519348e-06
1.02203177357e-06
1.02188099166e-06
1.02157963347e-06
1.02127639988e-06
1.02111062989e-06
1.02107873307e-06
1.0211527597e-06
1.02119810295e-06
1.02128263654e-06
1.02116858236e-06
1.02068224534e-06
1.02002231393e-06
1.0194727587e-06
1.0192088583e-06
1.01942544979e-06
1.02004208798e-06
1.02069195868e-06
1.02112432644e-06
1.02134370095e-06
1.02137414313e-06
1.02121943145e-06
1.02087402201e-06
1.02042411688e-06
1.01985032276e-06
1.01958434422e-06
1.01950876371e-06
1.01954477055e-06
1.01973357595e-06
1.01995694172e-06
1.0202289263e-06
1.02028491345e-06
1.02021929864e-06
1.02008568116e-06
1.01983284601e-06
1.01986812809e-06
1.0201528937e-06
1.02058888014e-06
1.02113240123e-06
1.02178412299e-06
1.02245379134e-06
1.02314187996e-06
1.02354204312e-06
1.02371425217e-06
1.02370704308e-06
1.02352743683e-06
1.0231223077e-06
1.02267597597e-06
1.02230700577e-06
1.02217236755e-06
1.02231118964e-06
1.0224761061e-06
1.0225697474e-06
1.02242941945e-06
1.02196986614e-06
1.02141313921e-06
1.0208817083e-06
1.02039440778e-06
1.02038616152e-06
1.02069696082e-06
1.02108174993e-06
1.02153193026e-06
1.0219617698e-06
1.02223471762e-06
1.02221544881e-06
1.0223191815e-06
1.02249354543e-06
1.0223786915e-06
1.0220633218e-06
1.02145629109e-06
1.02079261584e-06
1.02029147875e-06
1.02000153191e-06
1.01992739045e-06
1.02023754141e-06
1.02076674769e-06
1.02151114529e-06
1.0223577494e-06
1.02310604173e-06
1.0236332597e-06
1.02383099764e-06
1.02339371601e-06
1.02243201067e-06
1.02120457853e-06
1.02005223399e-06
1.01891355342e-06
1.01816584769e-06
1.01803815424e-06
1.01853825472e-06
1.01927410062e-06
1.01994461318e-06
1.02047494516e-06
1.0209808186e-06
1.02134230941e-06
1.02133814328e-06
1.02131418316e-06
1.02147988549e-06
1.02172509636e-06
1.02200477772e-06
1.02220008275e-06
1.02230513788e-06
1.02206980152e-06
1.02159997661e-06
1.02084143978e-06
1.02014869861e-06
1.01985859617e-06
1.02007458742e-06
1.02077536357e-06
1.02195122461e-06
1.02303067915e-06
1.02371200382e-06
1.02392387459e-06
1.02381622097e-06
1.02369949563e-06
1.02375398769e-06
1.02425677701e-06
1.02509495774e-06
1.02577868382e-06
1.0262963116e-06
1.02653134834e-06
1.02623413506e-06
1.02547891665e-06
1.02446635973e-06
1.02352760478e-06
1.02270144633e-06
1.02221228713e-06
1.02216259859e-06
1.02216813591e-06
1.02194747742e-06
1.02139415135e-06
1.02093313887e-06
1.02099241781e-06
1.02094013991e-06
1.02097654988e-06
1.02131309047e-06
1.02270056738e-06
1.02317159722e-06
1.02316839052e-06
1.02394425014e-06
1.02477061464e-06
1.02445296387e-06
1.02352114036e-06
1.02275219813e-06
1.02230240384e-06
1.02256619155e-06
1.02325270392e-06
1.02392260206e-06
1.02389259745e-06
1.02325996262e-06
1.02230071126e-06
1.02139854478e-06
1.0208220739e-06
1.02075815706e-06
1.02119619993e-06
1.02192408377e-06
1.02226142852e-06
1.02241824412e-06
1.02276166479e-06
1.02271010107e-06
1.02234949649e-06
1.02263652472e-06
1.02317781005e-06
1.02361714964e-06
1.02380396106e-06
1.0236591142e-06
1.02347163919e-06
1.02215816972e-06
1.02047397253e-06
1.0195899848e-06
1.019339535e-06
1.01956890975e-06
1.01946461935e-06
1.01957232766e-06
1.01959169811e-06
1.01964792794e-06
1.02004799235e-06
1.02045318144e-06
1.02061085181e-06
1.02049511296e-06
1.02011870674e-06
1.01987196248e-06
1.01960927007e-06
1.01972454345e-06
1.02033443908e-06
1.02100940754e-06
1.02124127408e-06
1.02120478124e-06
1.02136251265e-06
1.02168830588e-06
1.02192053421e-06
1.02206267322e-06
1.02201811725e-06
1.02177187784e-06
1.02130296049e-06
1.02087145411e-06
1.02056476381e-06
1.02018897507e-06
1.01994850111e-06
1.01994910199e-06
1.02018392536e-06
1.02062980403e-06
1.02109333428e-06
1.02129075371e-06
1.02130301707e-06
1.02113924777e-06
1.02066180838e-06
1.02008829365e-06
1.01974743965e-06
1.01952123079e-06
1.01915253916e-06
1.01893259033e-06
1.01906765953e-06
1.01940105741e-06
1.0199984063e-06
1.02063464925e-06
1.02132822648e-06
1.02191170923e-06
1.02217778007e-06
1.02222713456e-06
1.02361415293e-06
1.02458059212e-06
1.02381817821e-06
1.02269238782e-06
1.0226351457e-06
1.02263815713e-06
1.0223516804e-06
1.02207629514e-06
1.02213053381e-06
1.02241363483e-06
1.02253892037e-06
1.02263072413e-06
1.02284799751e-06
1.02314585638e-06
1.02345975133e-06
1.0236653923e-06
1.02384719542e-06
1.02404600846e-06
1.02405460992e-06
1.02388075656e-06
1.02362593941e-06
1.02318242832e-06
1.02265622025e-06
1.02193140354e-06
1.02119135432e-06
1.02049269745e-06
1.0202605482e-06
1.0210769079e-06
1.02205103449e-06
1.022307322e-06
1.02248196283e-06
1.02244422942e-06
1.02294048763e-06
1.02305993431e-06
1.02320303947e-06
1.02293423991e-06
1.02276384693e-06
1.02263939614e-06
1.02236848268e-06
1.02171697678e-06
1.0212682994e-06
1.02122198425e-06
1.02133452142e-06
1.02128907065e-06
1.02111752787e-06
1.02075577921e-06
1.02023990766e-06
1.0198963571e-06
1.02006528537e-06
1.02060560459e-06
1.02134657809e-06
1.02207960925e-06
1.02251334924e-06
1.02255691769e-06
1.02241738405e-06
1.02218092494e-06
1.02172855943e-06
1.0214002314e-06
1.02116953804e-06
1.02091189422e-06
1.02051984132e-06
1.02015077421e-06
1.02009976036e-06
1.02012396647e-06
1.02019192612e-06
1.02033349471e-06
1.02025131141e-06
1.0204398983e-06
1.021138291e-06
1.02152693992e-06
1.02097864896e-06
1.02040698637e-06
1.02059844108e-06
1.0212073637e-06
1.02160817029e-06
1.02190325971e-06
1.02266629841e-06
1.02351712151e-06
1.02407952894e-06
1.02423455047e-06
1.02399903852e-06
1.02344874514e-06
1.02268437652e-06
1.02200704372e-06
1.02147802929e-06
1.0209950114e-06
1.02080125076e-06
1.02116524887e-06
1.02186395206e-06
1.02259493757e-06
1.0231251762e-06
1.02316975004e-06
1.02282487412e-06
1.02277274695e-06
1.02374031194e-06
1.02499366109e-06
1.02546066218e-06
1.02487109858e-06
1.02395874727e-06
1.02362351787e-06
1.02356445035e-06
1.0235962076e-06
1.02344119782e-06
1.02298814067e-06
1.02250586722e-06
1.02218796858e-06
1.02239793862e-06
1.02272258859e-06
1.02314668025e-06
1.02314518103e-06
1.02270614577e-06
1.02183606458e-06
1.02095999213e-06
1.01997315452e-06
1.0191659815e-06
1.01884969384e-06
1.01919782069e-06
1.01987946121e-06
1.02061257091e-06
1.02112651467e-06
1.02120636891e-06
1.02079600388e-06
1.02022030324e-06
1.01994151281e-06
1.01999498373e-06
1.02036791064e-06
1.02108239766e-06
1.02187413308e-06
1.02226145424e-06
1.02208980908e-06
1.02155963194e-06
1.02097052582e-06
1.02094854804e-06
1.02119523016e-06
1.02087039858e-06
1.01998591767e-06
1.01911411428e-06
1.01865527743e-06
1.01918093285e-06
1.02014196642e-06
1.02061923068e-06
1.0205821484e-06
1.02073947601e-06
1.02052750578e-06
1.01957058377e-06
1.01974223111e-06
1.02244193509e-06
1.02529525086e-06
1.0259700759e-06
1.02527351653e-06
1.02482803155e-06
1.02414749936e-06
1.02345316067e-06
1.02337903454e-06
1.02322553454e-06
1.02288296546e-06
1.02246795902e-06
1.02191808403e-06
1.02173988359e-06
1.02185746289e-06
1.02182344763e-06
1.02153600922e-06
1.02128963503e-06
1.02115199037e-06
1.02107159543e-06
1.0206621639e-06
1.02015219101e-06
1.01938738941e-06
1.01938938986e-06
1.02046104822e-06
1.02129699771e-06
1.0211204659e-06
1.02143544268e-06
1.02279282109e-06
1.02406088108e-06
1.02446405974e-06
1.02413840826e-06
1.02332811693e-06
1.02251647569e-06
1.02203997442e-06
1.02201965119e-06
1.02188133947e-06
1.02152477595e-06
1.02130103577e-06
1.02074807474e-06
1.02062201526e-06
1.02205738685e-06
1.02169094404e-06
1.01969395808e-06
1.01992254661e-06
1.01980965679e-06
1.01974429537e-06
1.01986968852e-06
1.01914039277e-06
1.01970939859e-06
1.01919323721e-06
1.01922548698e-06
1.01977788788e-06
1.01872753262e-06
1.02071447547e-06
1.01841297991e-06
1.0198983416e-06
1.0193691816e-06
1.01951421339e-06
1.02075599585e-06
1.01978607979e-06
1.02001197537e-06
1.02003650799e-06
1.01949982151e-06
1.01904144484e-06
1.01905938179e-06
1.01882802308e-06
1.01946046407e-06
1.0195777163e-06
1.01942531547e-06
1.01875528423e-06
1.01740493607e-06
1.01921924018e-06
1.02185717672e-06
1.02242437735e-06
1.02162130941e-06
1.0229263552e-06
1.02232654497e-06
1.0218676133e-06
1.02616759681e-06
1.0246077993e-06
1.02017436527e-06
1.02145860899e-06
1.0221412851e-06
1.02190726059e-06
1.02088277879e-06
1.01991873915e-06
1.02134096612e-06
1.02944813927e-06
1.00932653137e-06
-1.05827102325e-06
-1.02300319163e-06
-1.02132668938e-06
-1.02096900812e-06
-1.02138927156e-06
-1.02179150634e-06
-1.02191907585e-06
-1.02172218219e-06
-1.02157806928e-06
-1.02169225229e-06
-1.02190098111e-06
-1.0221588713e-06
-1.02234963667e-06
-1.02228464087e-06
-1.0220022134e-06
-1.02149217209e-06
-1.02114446168e-06
-1.02105210354e-06
-1.02098541642e-06
-1.02094804829e-06
-1.02090554375e-06
-1.02093018818e-06
-1.02098966323e-06
-1.02114275681e-06
-1.02128928938e-06
-1.02143959565e-06
-1.02162602071e-06
-1.02161945486e-06
-1.02142766013e-06
-1.02101283674e-06
-1.02067491581e-06
-1.02059298333e-06
-1.02075678298e-06
-1.02101981291e-06
-1.02131469548e-06
-1.02167946701e-06
-1.02204819536e-06
-1.02221625119e-06
-1.02220516701e-06
-1.02219083178e-06
-1.02214002474e-06
-1.02202368112e-06
-1.02187152662e-06
-1.02160980118e-06
-1.02128488471e-06
-1.02116470428e-06
-1.02124224803e-06
-1.0214185503e-06
-1.02149752855e-06
-1.02154884872e-06
-1.02163999444e-06
-1.02177355872e-06
-1.02182231838e-06
-1.02162051632e-06
-1.02145042438e-06
-1.02146553658e-06
-1.02170549496e-06
-1.02211796782e-06
-1.0225713935e-06
-1.02279080351e-06
-1.02273762837e-06
-1.02244818779e-06
-1.02206823221e-06
-1.02177469675e-06
-1.02161134476e-06
-1.02165261157e-06
-1.0218414798e-06
-1.02208147472e-06
-1.02229899808e-06
-1.02243305756e-06
-1.02257447945e-06
-1.0227628545e-06
-1.02274755962e-06
-1.02267921846e-06
-1.02249251292e-06
-1.02236858607e-06
-1.0223397014e-06
-1.0223407369e-06
-1.02255162439e-06
-1.02260300498e-06
-1.02254139434e-06
-1.02237985034e-06
-1.0221905516e-06
-1.02190185736e-06
-1.02160755365e-06
-1.02124716485e-06
-1.02101102688e-06
-1.02087764545e-06
-1.02076507266e-06
-1.02065961007e-06
-1.02077272571e-06
-1.02109511777e-06
-1.02143866799e-06
-1.02156722691e-06
-1.02151116681e-06
-1.02135368686e-06
-1.0211295666e-06
-1.02090854564e-06
-1.02091219699e-06
-1.02118509618e-06
-1.02153769757e-06
-1.02194949831e-06
-1.02212370885e-06
-1.02199717949e-06
-1.02188046428e-06
-1.02159286102e-06
-1.02131464923e-06
-1.02122561548e-06
-1.02111090986e-06
-1.02098840518e-06
-1.02106506843e-06
-1.02141350391e-06
-1.02156313948e-06
-1.02150916865e-06
-1.02154201702e-06
-1.02178861838e-06
-1.02228631842e-06
-1.02264650732e-06
-1.02259707215e-06
-1.02240161083e-06
-1.02206485721e-06
-1.02170911629e-06
-1.02143889393e-06
-1.02100187893e-06
-1.0205052903e-06
-1.02035178527e-06
-1.02044478642e-06
-1.02081216727e-06
-1.02151482196e-06
-1.0224472208e-06
-1.02310303516e-06
-1.02333222666e-06
-1.02334349357e-06
-1.02331146864e-06
-1.02309560895e-06
-1.02263956813e-06
-1.02216503485e-06
-1.02188814554e-06
-1.02178419949e-06
-1.02167716501e-06
-1.02163152723e-06
-1.02171910113e-06
-1.02174158113e-06
-1.0216125938e-06
-1.02135211248e-06
-1.02118904512e-06
-1.02110111629e-06
-1.0213431941e-06
-1.02175030846e-06
-1.02217775982e-06
-1.02234389522e-06
-1.02227614697e-06
-1.0217860201e-06
-1.0210264166e-06
-1.02044711045e-06
-1.02002875116e-06
-1.01996064596e-06
-1.02015248756e-06
-1.0203182379e-06
-1.0203404197e-06
-1.02014687146e-06
-1.02001451374e-06
-1.01970138599e-06
-1.01927404395e-06
-1.01912718252e-06
-1.01931862234e-06
-1.01973356695e-06
-1.02037861853e-06
-1.02103950223e-06
-1.02147577904e-06
-1.02156303127e-06
-1.02142358275e-06
-1.02162969636e-06
-1.02177536443e-06
-1.02191711666e-06
-1.02208095613e-06
-1.02245137634e-06
-1.02235541217e-06
-1.02204037012e-06
-1.02180412501e-06
-1.02209969123e-06
-1.02197515282e-06
-1.02111874406e-06
-1.02083541493e-06
-1.02112567237e-06
-1.02127964475e-06
-1.02152125454e-06
-1.02184676507e-06
-1.02187210872e-06
-1.0216868588e-06
-1.02110014407e-06
-1.020427508e-06
-1.01994390788e-06
-1.01984515231e-06
-1.02022011622e-06
-1.02076399507e-06
-1.02096760518e-06
-1.02078618231e-06
-1.02033559042e-06
-1.01993671319e-06
-1.01957712737e-06
-1.01934020887e-06
-1.01949837639e-06
-1.01981519593e-06
-1.0198771115e-06
-1.01978386884e-06
-1.01961759458e-06
-1.01956252601e-06
-1.01980369704e-06
-1.02036487034e-06
-1.02103706002e-06
-1.02192443164e-06
-1.02271980278e-06
-1.02297267006e-06
-1.02281495719e-06
-1.0229819023e-06
-1.0230638413e-06
-1.02273014632e-06
-1.02260404852e-06
-1.0227638955e-06
-1.02287608374e-06
-1.02262447557e-06
-1.02219817681e-06
-1.02181847343e-06
-1.02176317022e-06
-1.02215722737e-06
-1.02265659924e-06
-1.0229061815e-06
-1.02308728688e-06
-1.02289859759e-06
-1.0225318018e-06
-1.02217936153e-06
-1.02196823341e-06
-1.02200135523e-06
-1.02207027365e-06
-1.02216459465e-06
-1.02226699139e-06
-1.02225531625e-06
-1.022087138e-06
-1.02190133767e-06
-1.02193894315e-06
-1.02216116086e-06
-1.02243480228e-06
-1.02262136958e-06
-1.02259981296e-06
-1.02233530484e-06
-1.02200676416e-06
-1.0216946858e-06
-1.02160135162e-06
-1.02169871996e-06
-1.02184296962e-06
-1.02192322621e-06
-1.02202477264e-06
-1.02215292693e-06
-1.02235743382e-06
-1.02242366651e-06
-1.02254727953e-06
-1.02249812113e-06
-1.02206622771e-06
-1.02176147394e-06
-1.02141416798e-06
-1.02136136988e-06
-1.02127788377e-06
-1.02070189289e-06
-1.02093234303e-06
-1.02096908605e-06
-1.02108979544e-06
-1.02110502933e-06
-1.02161420413e-06
-1.02209144621e-06
-1.02244864e-06
-1.02250953913e-06
-1.02222527318e-06
-1.02197419017e-06
-1.02181223366e-06
-1.02171274095e-06
-1.02170700633e-06
-1.02157045805e-06
-1.02129122274e-06
-1.02086104101e-06
-1.02060234847e-06
-1.02075555862e-06
-1.02092489232e-06
-1.02086903346e-06
-1.02066954682e-06
-1.02055341373e-06
-1.02074059086e-06
-1.02093363179e-06
-1.02134401417e-06
-1.02164567648e-06
-1.02172176207e-06
-1.02211843098e-06
-1.02241082972e-06
-1.02200153366e-06
-1.02146923529e-06
-1.02085671273e-06
-1.02072886793e-06
-1.02035228682e-06
-1.02026599724e-06
-1.02006961054e-06
-1.02012350174e-06
-1.02051521996e-06
-1.02111647751e-06
-1.02163004862e-06
-1.02203344012e-06
-1.02220145085e-06
-1.02215870274e-06
-1.02196696024e-06
-1.02189628773e-06
-1.02206474127e-06
-1.02229302362e-06
-1.02245673405e-06
-1.02243127047e-06
-1.02208785967e-06
-1.02159900297e-06
-1.02120239398e-06
-1.02093735569e-06
-1.02085292734e-06
-1.02100289006e-06
-1.02132708572e-06
-1.02163388534e-06
-1.02192433391e-06
-1.02212341016e-06
-1.02224394644e-06
-1.0222232979e-06
-1.02227621819e-06
-1.02232010148e-06
-1.02246579729e-06
-1.02244434067e-06
-1.0223389522e-06
-1.02191118489e-06
-1.02167675497e-06
-1.02194111014e-06
-1.02210025577e-06
-1.02149159357e-06
-1.02103423601e-06
-1.0213101625e-06
-1.02160460343e-06
-1.0215819453e-06
-1.02112774252e-06
-1.02063083403e-06
-1.02013152208e-06
-1.01973186314e-06
-1.01965288197e-06
-1.01980886225e-06
-1.0201600996e-06
-1.02059541323e-06
-1.02108645603e-06
-1.02163573751e-06
-1.02207542183e-06
-1.02225804637e-06
-1.02225982704e-06
-1.02210006985e-06
-1.02182068006e-06
-1.02162974507e-06
-1.02161677149e-06
-1.02137306274e-06
-1.0211092357e-06
-1.02124021071e-06
-1.02157826156e-06
-1.02131552634e-06
-1.02093488074e-06
-1.02087192713e-06
-1.02080125028e-06
-1.02073879727e-06
-1.02061485899e-06
-1.02055253515e-06
-1.02072506306e-06
-1.02104941018e-06
-1.02111059921e-06
-1.02097215951e-06
-1.02056397687e-06
-1.02034634753e-06
-1.02037534126e-06
-1.02074978377e-06
-1.0212483364e-06
-1.02183662029e-06
-1.02223987738e-06
-1.02251932749e-06
-1.02266275778e-06
-1.02258973034e-06
-1.02216197482e-06
-1.02169853935e-06
-1.02160303318e-06
-1.02179454524e-06
-1.02197508367e-06
-1.02216569663e-06
-1.02242115921e-06
-1.02261912465e-06
-1.02258444739e-06
-1.02229329561e-06
-1.02191947507e-06
-1.02176379657e-06
-1.02180541501e-06
-1.02201499042e-06
-1.02205718457e-06
-1.02182779667e-06
-1.02164222578e-06
-1.02186460496e-06
-1.02224403792e-06
-1.02271193426e-06
-1.02285704054e-06
-1.02288883752e-06
-1.02300732345e-06
-1.02256812459e-06
-1.02208225167e-06
-1.02200010641e-06
-1.02166109545e-06
-1.0205947517e-06
-1.01971263041e-06
-1.01969050421e-06
-1.0196688676e-06
-1.01966408483e-06
-1.01963859295e-06
-1.01986396131e-06
-1.01987718096e-06
-1.01975019251e-06
-1.01999697789e-06
-1.02031372734e-06
-1.02065674943e-06
-1.02125113023e-06
-1.02154196101e-06
-1.02156133158e-06
-1.02144901719e-06
-1.02134035626e-06
-1.02154071513e-06
-1.0222859705e-06
-1.02302495444e-06
-1.02338653417e-06
-1.02339432561e-06
-1.02328440233e-06
-1.02314605855e-06
-1.02353578731e-06
-1.02399192006e-06
-1.0237550744e-06
-1.02287156991e-06
-1.02206643036e-06
-1.02166684553e-06
-1.02166874034e-06
-1.02154066896e-06
-1.02107017731e-06
-1.02043257241e-06
-1.02022668221e-06
-1.020241284e-06
-1.02068966428e-06
-1.02173819228e-06
-1.02226453231e-06
-1.02208318319e-06
-1.02138170925e-06
-1.02036569286e-06
-1.02094493304e-06
-1.02266968812e-06
-1.02141390862e-06
-1.02182105521e-06
-1.02209882615e-06
-1.02202315235e-06
-1.02215570946e-06
-1.02216266454e-06
-1.02307893854e-06
-1.02252139903e-06
-1.0226543534e-06
-1.02346088078e-06
-1.02243381933e-06
-1.02404559815e-06
-1.0225353893e-06
-1.023493101e-06
-1.02301171225e-06
-1.02259929386e-06
-1.02349963658e-06
-1.02236772083e-06
-1.0227409804e-06
-1.02318188487e-06
-1.02324263344e-06
-1.02313454505e-06
-1.02292771887e-06
-1.02339562114e-06
-1.02350665234e-06
-1.02367383038e-06
-1.02317236486e-06
-1.0218530814e-06
-1.0214315419e-06
-1.02218784025e-06
-1.02294817302e-06
-1.02247418228e-06
-1.02071370689e-06
-1.02157966382e-06
-1.02052589681e-06
-1.01863165374e-06
-1.02233437716e-06
-1.0210678016e-06
-1.01761989533e-06
-1.01920006187e-06
-1.02005734243e-06
-1.02108081769e-06
-1.01995832057e-06
-1.0210682033e-06
-1.02192163389e-06
-1.02437643977e-06
-1.0178413756e-06
-9.94196293539e-07
)
;
boundaryField
{
ground
{
type extrapolatedCalculated;
value nonuniform List<scalar>
500
(
-7.17826938883e-06
-1.55042667083e-06
-1.02241311844e-06
-1.02278813974e-06
-1.02227300725e-06
-1.02241854809e-06
-1.02104487557e-06
-1.02082596165e-06
-1.02155365179e-06
-1.02064592674e-06
-1.02058686079e-06
-1.02071881137e-06
-1.02060754428e-06
-1.02088228672e-06
-1.02073409973e-06
-1.01994658829e-06
-1.02065223233e-06
-1.01944714469e-06
-1.02017237522e-06
-1.019262278e-06
-1.01895765692e-06
-1.01931703958e-06
-1.01923813923e-06
-1.01876194203e-06
-1.01920379178e-06
-1.01943503428e-06
-1.01864442418e-06
-1.01976708802e-06
-1.02016478297e-06
-1.02077155877e-06
-1.02186578745e-06
-1.0224156199e-06
-1.02331392421e-06
-1.02327748675e-06
-1.02291988189e-06
-1.02174718385e-06
-1.02136377211e-06
-1.02069974413e-06
-1.01977164351e-06
-1.01978604657e-06
-1.01955215266e-06
-1.01917936737e-06
-1.01909925896e-06
-1.01981175767e-06
-1.0201315477e-06
-1.02025709053e-06
-1.02093721336e-06
-1.02137394389e-06
-1.02181549182e-06
-1.02217071285e-06
-1.02232765813e-06
-1.02244488472e-06
-1.02232956756e-06
-1.02195519037e-06
-1.02203836367e-06
-1.02190722549e-06
-1.02147038245e-06
-1.02239699305e-06
-1.02321438595e-06
-1.022545976e-06
-1.02208495206e-06
-1.02213391332e-06
-1.02179127536e-06
-1.02157593076e-06
-1.02192353236e-06
-1.02202534651e-06
-1.02189512962e-06
-1.02204380561e-06
-1.02212629185e-06
-1.0220005564e-06
-1.02193078934e-06
-1.02186276687e-06
-1.02166240798e-06
-1.02153014201e-06
-1.02175276914e-06
-1.02208347493e-06
-1.02234134851e-06
-1.02237854088e-06
-1.02233599783e-06
-1.02234541869e-06
-1.02248462739e-06
-1.02264549808e-06
-1.02243952314e-06
-1.02185813372e-06
-1.02138948588e-06
-1.02137768222e-06
-1.02154460078e-06
-1.02176547146e-06
-1.02185154105e-06
-1.02185112021e-06
-1.02176322264e-06
-1.02158055168e-06
-1.02140797589e-06
-1.02135438012e-06
-1.02126527388e-06
-1.02104430574e-06
-1.02084385029e-06
-1.02072230288e-06
-1.02061737138e-06
-1.02044359338e-06
-1.0203827918e-06
-1.02054129747e-06
-1.02088654428e-06
-1.02105948347e-06
-1.02114650576e-06
-1.02128977761e-06
-1.02146053056e-06
-1.02169401235e-06
-1.02205795269e-06
-1.02255663963e-06
-1.02286490665e-06
-1.02294770598e-06
-1.02278660665e-06
-1.02244704671e-06
-1.02205774166e-06
-1.0216367995e-06
-1.02127960647e-06
-1.02102735749e-06
-1.02085484417e-06
-1.02078926678e-06
-1.0209096107e-06
-1.02120875241e-06
-1.02142477283e-06
-1.02173514437e-06
-1.02222678164e-06
-1.02233248809e-06
-1.02241439214e-06
-1.02266408364e-06
-1.02255994511e-06
-1.02226205423e-06
-1.0223327463e-06
-1.02222750312e-06
-1.0220038107e-06
-1.02185537832e-06
-1.02160937016e-06
-1.02151016781e-06
-1.02207425589e-06
-1.02275897278e-06
-1.02289767922e-06
-1.02263884734e-06
-1.02213129154e-06
-1.02170311035e-06
-1.0213356241e-06
-1.02083831671e-06
-1.02036380218e-06
-1.0201319682e-06
-1.02013119015e-06
-1.02013807404e-06
-1.02023883099e-06
-1.02034270042e-06
-1.02032278059e-06
-1.02027503551e-06
-1.02027618967e-06
-1.02045525519e-06
-1.02087733255e-06
-1.02127566115e-06
-1.02143367698e-06
-1.02176625483e-06
-1.0219182566e-06
-1.02167290652e-06
-1.02213575528e-06
-1.02262036399e-06
-1.02129237915e-06
-1.02000213401e-06
-1.02065647241e-06
-1.021202671e-06
-1.02080559755e-06
-1.02085762874e-06
-1.02107285412e-06
-1.0208307026e-06
-1.02070689454e-06
-1.020902912e-06
-1.02080074055e-06
-1.02042332398e-06
-1.0202220527e-06
-1.0202264713e-06
-1.02019709808e-06
-1.02000442047e-06
-1.01965524371e-06
-1.0193558665e-06
-1.01924700007e-06
-1.01918810579e-06
-1.01913710625e-06
-1.01921952443e-06
-1.01950365154e-06
-1.01980888775e-06
-1.0200143606e-06
-1.02036687638e-06
-1.020612837e-06
-1.0205765933e-06
-1.02042419038e-06
-1.02032707919e-06
-1.02027196463e-06
-1.02053259265e-06
-1.02101296435e-06
-1.02156161333e-06
-1.02198701911e-06
-1.02239112803e-06
-1.02276525834e-06
-1.02296103655e-06
-1.02277350197e-06
-1.02242669092e-06
-1.02211877349e-06
-1.02167812976e-06
-1.02114693359e-06
-1.02084166274e-06
-1.02080852183e-06
-1.0209236277e-06
-1.0210257372e-06
-1.02114460565e-06
-1.02139413176e-06
-1.02149096033e-06
-1.02151395148e-06
-1.02137583376e-06
-1.02102239383e-06
-1.02095809582e-06
-1.02120974034e-06
-1.02095362449e-06
-1.02057143111e-06
-1.02066113909e-06
-1.02065478382e-06
-1.02058348084e-06
-1.02112025032e-06
-1.02191294256e-06
-1.02182368791e-06
-1.02182150098e-06
-1.02198325292e-06
-1.02205260517e-06
-1.02218721898e-06
-1.02229684159e-06
-1.02235083454e-06
-1.02221814079e-06
-1.02213979363e-06
-1.02229283554e-06
-1.0223905274e-06
-1.02196042837e-06
-1.02174191674e-06
-1.02225540982e-06
-1.0226455281e-06
-1.02266305676e-06
-1.0228071468e-06
-1.02321878671e-06
-1.02358561812e-06
-1.02369585586e-06
-1.02355331377e-06
-1.0230459836e-06
-1.02236501392e-06
-1.02225918283e-06
-1.02258117232e-06
-1.02320317551e-06
-1.02388533523e-06
-1.02351654629e-06
-1.02214016003e-06
-1.02147289021e-06
-1.02115486428e-06
-1.02067705998e-06
-1.02037281488e-06
-1.02020932373e-06
-1.01973454765e-06
-1.01957031998e-06
-1.02024053337e-06
-1.02062915127e-06
-1.02081974019e-06
-1.02121154462e-06
-1.02106879943e-06
-1.02116455817e-06
-1.02169492253e-06
-1.02201442672e-06
-1.02189694166e-06
-1.02191210372e-06
-1.02210954839e-06
-1.02201803702e-06
-1.02196945491e-06
-1.02184081824e-06
-1.02147168152e-06
-1.02097460969e-06
-1.02063201265e-06
-1.02061040336e-06
-1.02063889831e-06
-1.02043075134e-06
-1.02042710127e-06
-1.02065512329e-06
-1.0205978366e-06
-1.02045366132e-06
-1.02071148979e-06
-1.02083280431e-06
-1.02079995678e-06
-1.02082329392e-06
-1.02114936544e-06
-1.02118498053e-06
-1.02100490532e-06
-1.02118696299e-06
-1.02136495754e-06
-1.02130865404e-06
-1.0209542265e-06
-1.02110434562e-06
-1.02114354821e-06
-1.02129136974e-06
-1.02118399259e-06
-1.02130022222e-06
-1.02172000441e-06
-1.02170758435e-06
-1.02130725466e-06
-1.02074798387e-06
-1.02036934347e-06
-1.02044702476e-06
-1.02094535531e-06
-1.02138979133e-06
-1.02189827442e-06
-1.02230719556e-06
-1.02272523205e-06
-1.02316487793e-06
-1.02339261836e-06
-1.02313840111e-06
-1.02264071198e-06
-1.0220379817e-06
-1.02157828866e-06
-1.02158153243e-06
-1.02172364264e-06
-1.02183323859e-06
-1.02198313372e-06
-1.02202355395e-06
-1.02219873026e-06
-1.02247879604e-06
-1.02202402364e-06
-1.0213084987e-06
-1.02130257784e-06
-1.02149055659e-06
-1.02162065524e-06
-1.02130781384e-06
-1.02082464631e-06
-1.02004039653e-06
-1.01965282996e-06
-1.02009000082e-06
-1.02055626562e-06
-1.02076823781e-06
-1.02086223856e-06
-1.02067279241e-06
-1.02048906214e-06
-1.02037961954e-06
-1.02018493468e-06
-1.019732498e-06
-1.01944687336e-06
-1.01939388991e-06
-1.01949346511e-06
-1.01978391124e-06
-1.02007182358e-06
-1.02025616389e-06
-1.02041573888e-06
-1.02046142136e-06
-1.0203257202e-06
-1.02011168922e-06
-1.01984963684e-06
-1.01968890242e-06
-1.0196425292e-06
-1.01975400046e-06
-1.0201235148e-06
-1.02059638545e-06
-1.0209377207e-06
-1.02124377367e-06
-1.02162537967e-06
-1.02201644043e-06
-1.02238954617e-06
-1.02237314872e-06
-1.02198262706e-06
-1.02148354522e-06
-1.02091654682e-06
-1.02064079707e-06
-1.02077845427e-06
-1.0212720425e-06
-1.02188156873e-06
-1.02242921998e-06
-1.02262643563e-06
-1.02259362586e-06
-1.02279255779e-06
-1.02264875954e-06
-1.02199737255e-06
-1.02164810106e-06
-1.02153326944e-06
-1.02110376844e-06
-1.02106887505e-06
-1.02147125853e-06
-1.02193113077e-06
-1.02243420248e-06
-1.02267284232e-06
-1.02256005083e-06
-1.02216704416e-06
-1.02154912585e-06
-1.02094011599e-06
-1.02065152572e-06
-1.02084044059e-06
-1.02114644834e-06
-1.02131948166e-06
-1.02148393814e-06
-1.02191024879e-06
-1.02213755728e-06
-1.02185575639e-06
-1.02175494278e-06
-1.02195891047e-06
-1.02173072621e-06
-1.0218254991e-06
-1.02279767936e-06
-1.02272721228e-06
-1.02163463538e-06
-1.0210855864e-06
-1.02110039122e-06
-1.02119162574e-06
-1.02158254744e-06
-1.0216370705e-06
-1.02150157995e-06
-1.02134011793e-06
-1.02107117435e-06
-1.0208747243e-06
-1.02084103378e-06
-1.02085579265e-06
-1.02096127842e-06
-1.02121511096e-06
-1.02164234648e-06
-1.02215363243e-06
-1.02239497374e-06
-1.02241238137e-06
-1.02228987745e-06
-1.02186288372e-06
-1.02105396373e-06
-1.02001694663e-06
-1.01917512089e-06
-1.01891726329e-06
-1.01922652562e-06
-1.01987932557e-06
-1.02066746728e-06
-1.02115359058e-06
-1.02131048305e-06
-1.02126419724e-06
-1.02117835668e-06
-1.02116876697e-06
-1.02150140544e-06
-1.02200279992e-06
-1.02261763933e-06
-1.02285828104e-06
-1.02271601336e-06
-1.02249344272e-06
-1.02189347383e-06
-1.02093741231e-06
-1.01970756288e-06
-1.0187078309e-06
-1.01850539526e-06
-1.01897088683e-06
-1.01969127988e-06
-1.02079342573e-06
-1.02208244331e-06
-1.02270184131e-06
-1.02302706602e-06
-1.02355575095e-06
-1.02394363359e-06
-1.02427201352e-06
-1.02456623984e-06
-1.02453005274e-06
-1.02396451356e-06
-1.02309926808e-06
-1.02197479082e-06
-1.02095607292e-06
-1.0199375868e-06
-1.01952473283e-06
-1.01970946044e-06
-1.0197652041e-06
-1.01946327053e-06
-1.01921988884e-06
-1.01983933553e-06
-1.02132218351e-06
-1.02178215792e-06
-1.02254936203e-06
-1.02410186474e-06
-1.02175231828e-06
-1.01872736491e-06
-1.02061305947e-06
-1.02227464416e-06
-1.02105304215e-06
-1.02086851685e-06
-1.02112078817e-06
-1.02088193478e-06
-1.02206106938e-06
-1.02336073381e-06
-1.0230200564e-06
-1.022341985e-06
-1.02200019188e-06
-1.02138688846e-06
-1.02117790979e-06
-1.02217877438e-06
-1.02199366712e-06
-1.02021629659e-06
-1.01995993833e-06
-1.02048337721e-06
-1.02075440723e-06
-1.02177115961e-06
-1.02190932644e-06
-1.02124886542e-06
-1.02176472972e-06
-1.02269792568e-06
-1.02904647246e-06
-1.69890025606e-06
)
;
}
top
{
type extrapolatedCalculated;
value nonuniform List<scalar>
500
(
-1.05827102325e-06
-1.02300319163e-06
-1.02132668938e-06
-1.02096900812e-06
-1.02138927156e-06
-1.02179150634e-06
-1.02191907585e-06
-1.02172218219e-06
-1.02157806928e-06
-1.02169225229e-06
-1.02190098111e-06
-1.0221588713e-06
-1.02234963667e-06
-1.02228464087e-06
-1.0220022134e-06
-1.02149217209e-06
-1.02114446168e-06
-1.02105210354e-06
-1.02098541642e-06
-1.02094804829e-06
-1.02090554375e-06
-1.02093018818e-06
-1.02098966323e-06
-1.02114275681e-06
-1.02128928938e-06
-1.02143959565e-06
-1.02162602071e-06
-1.02161945486e-06
-1.02142766013e-06
-1.02101283674e-06
-1.02067491581e-06
-1.02059298333e-06
-1.02075678298e-06
-1.02101981291e-06
-1.02131469548e-06
-1.02167946701e-06
-1.02204819536e-06
-1.02221625119e-06
-1.02220516701e-06
-1.02219083178e-06
-1.02214002474e-06
-1.02202368112e-06
-1.02187152662e-06
-1.02160980118e-06
-1.02128488471e-06
-1.02116470428e-06
-1.02124224803e-06
-1.0214185503e-06
-1.02149752855e-06
-1.02154884872e-06
-1.02163999444e-06
-1.02177355872e-06
-1.02182231838e-06
-1.02162051632e-06
-1.02145042438e-06
-1.02146553658e-06
-1.02170549496e-06
-1.02211796782e-06
-1.0225713935e-06
-1.02279080351e-06
-1.02273762837e-06
-1.02244818779e-06
-1.02206823221e-06
-1.02177469675e-06
-1.02161134476e-06
-1.02165261157e-06
-1.0218414798e-06
-1.02208147472e-06
-1.02229899808e-06
-1.02243305756e-06
-1.02257447945e-06
-1.0227628545e-06
-1.02274755962e-06
-1.02267921846e-06
-1.02249251292e-06
-1.02236858607e-06
-1.0223397014e-06
-1.0223407369e-06
-1.02255162439e-06
-1.02260300498e-06
-1.02254139434e-06
-1.02237985034e-06
-1.0221905516e-06
-1.02190185736e-06
-1.02160755365e-06
-1.02124716485e-06
-1.02101102688e-06
-1.02087764545e-06
-1.02076507266e-06
-1.02065961007e-06
-1.02077272571e-06
-1.02109511777e-06
-1.02143866799e-06
-1.02156722691e-06
-1.02151116681e-06
-1.02135368686e-06
-1.0211295666e-06
-1.02090854564e-06
-1.02091219699e-06
-1.02118509618e-06
-1.02153769757e-06
-1.02194949831e-06
-1.02212370885e-06
-1.02199717949e-06
-1.02188046428e-06
-1.02159286102e-06
-1.02131464923e-06
-1.02122561548e-06
-1.02111090986e-06
-1.02098840518e-06
-1.02106506843e-06
-1.02141350391e-06
-1.02156313948e-06
-1.02150916865e-06
-1.02154201702e-06
-1.02178861838e-06
-1.02228631842e-06
-1.02264650732e-06
-1.02259707215e-06
-1.02240161083e-06
-1.02206485721e-06
-1.02170911629e-06
-1.02143889393e-06
-1.02100187893e-06
-1.0205052903e-06
-1.02035178527e-06
-1.02044478642e-06
-1.02081216727e-06
-1.02151482196e-06
-1.0224472208e-06
-1.02310303516e-06
-1.02333222666e-06
-1.02334349357e-06
-1.02331146864e-06
-1.02309560895e-06
-1.02263956813e-06
-1.02216503485e-06
-1.02188814554e-06
-1.02178419949e-06
-1.02167716501e-06
-1.02163152723e-06
-1.02171910113e-06
-1.02174158113e-06
-1.0216125938e-06
-1.02135211248e-06
-1.02118904512e-06
-1.02110111629e-06
-1.0213431941e-06
-1.02175030846e-06
-1.02217775982e-06
-1.02234389522e-06
-1.02227614697e-06
-1.0217860201e-06
-1.0210264166e-06
-1.02044711045e-06
-1.02002875116e-06
-1.01996064596e-06
-1.02015248756e-06
-1.0203182379e-06
-1.0203404197e-06
-1.02014687146e-06
-1.02001451374e-06
-1.01970138599e-06
-1.01927404395e-06
-1.01912718252e-06
-1.01931862234e-06
-1.01973356695e-06
-1.02037861853e-06
-1.02103950223e-06
-1.02147577904e-06
-1.02156303127e-06
-1.02142358275e-06
-1.02162969636e-06
-1.02177536443e-06
-1.02191711666e-06
-1.02208095613e-06
-1.02245137634e-06
-1.02235541217e-06
-1.02204037012e-06
-1.02180412501e-06
-1.02209969123e-06
-1.02197515282e-06
-1.02111874406e-06
-1.02083541493e-06
-1.02112567237e-06
-1.02127964475e-06
-1.02152125454e-06
-1.02184676507e-06
-1.02187210872e-06
-1.0216868588e-06
-1.02110014407e-06
-1.020427508e-06
-1.01994390788e-06
-1.01984515231e-06
-1.02022011622e-06
-1.02076399507e-06
-1.02096760518e-06
-1.02078618231e-06
-1.02033559042e-06
-1.01993671319e-06
-1.01957712737e-06
-1.01934020887e-06
-1.01949837639e-06
-1.01981519593e-06
-1.0198771115e-06
-1.01978386884e-06
-1.01961759458e-06
-1.01956252601e-06
-1.01980369704e-06
-1.02036487034e-06
-1.02103706002e-06
-1.02192443164e-06
-1.02271980278e-06
-1.02297267006e-06
-1.02281495719e-06
-1.0229819023e-06
-1.0230638413e-06
-1.02273014632e-06
-1.02260404852e-06
-1.0227638955e-06
-1.02287608374e-06
-1.02262447557e-06
-1.02219817681e-06
-1.02181847343e-06
-1.02176317022e-06
-1.02215722737e-06
-1.02265659924e-06
-1.0229061815e-06
-1.02308728688e-06
-1.02289859759e-06
-1.0225318018e-06
-1.02217936153e-06
-1.02196823341e-06
-1.02200135523e-06
-1.02207027365e-06
-1.02216459465e-06
-1.02226699139e-06
-1.02225531625e-06
-1.022087138e-06
-1.02190133767e-06
-1.02193894315e-06
-1.02216116086e-06
-1.02243480228e-06
-1.02262136958e-06
-1.02259981296e-06
-1.02233530484e-06
-1.02200676416e-06
-1.0216946858e-06
-1.02160135162e-06
-1.02169871996e-06
-1.02184296962e-06
-1.02192322621e-06
-1.02202477264e-06
-1.02215292693e-06
-1.02235743382e-06
-1.02242366651e-06
-1.02254727953e-06
-1.02249812113e-06
-1.02206622771e-06
-1.02176147394e-06
-1.02141416798e-06
-1.02136136988e-06
-1.02127788377e-06
-1.02070189289e-06
-1.02093234303e-06
-1.02096908605e-06
-1.02108979544e-06
-1.02110502933e-06
-1.02161420413e-06
-1.02209144621e-06
-1.02244864e-06
-1.02250953913e-06
-1.02222527318e-06
-1.02197419017e-06
-1.02181223366e-06
-1.02171274095e-06
-1.02170700633e-06
-1.02157045805e-06
-1.02129122274e-06
-1.02086104101e-06
-1.02060234847e-06
-1.02075555862e-06
-1.02092489232e-06
-1.02086903346e-06
-1.02066954682e-06
-1.02055341373e-06
-1.02074059086e-06
-1.02093363179e-06
-1.02134401417e-06
-1.02164567648e-06
-1.02172176207e-06
-1.02211843098e-06
-1.02241082972e-06
-1.02200153366e-06
-1.02146923529e-06
-1.02085671273e-06
-1.02072886793e-06
-1.02035228682e-06
-1.02026599724e-06
-1.02006961054e-06
-1.02012350174e-06
-1.02051521996e-06
-1.02111647751e-06
-1.02163004862e-06
-1.02203344012e-06
-1.02220145085e-06
-1.02215870274e-06
-1.02196696024e-06
-1.02189628773e-06
-1.02206474127e-06
-1.02229302362e-06
-1.02245673405e-06
-1.02243127047e-06
-1.02208785967e-06
-1.02159900297e-06
-1.02120239398e-06
-1.02093735569e-06
-1.02085292734e-06
-1.02100289006e-06
-1.02132708572e-06
-1.02163388534e-06
-1.02192433391e-06
-1.02212341016e-06
-1.02224394644e-06
-1.0222232979e-06
-1.02227621819e-06
-1.02232010148e-06
-1.02246579729e-06
-1.02244434067e-06
-1.0223389522e-06
-1.02191118489e-06
-1.02167675497e-06
-1.02194111014e-06
-1.02210025577e-06
-1.02149159357e-06
-1.02103423601e-06
-1.0213101625e-06
-1.02160460343e-06
-1.0215819453e-06
-1.02112774252e-06
-1.02063083403e-06
-1.02013152208e-06
-1.01973186314e-06
-1.01965288197e-06
-1.01980886225e-06
-1.0201600996e-06
-1.02059541323e-06
-1.02108645603e-06
-1.02163573751e-06
-1.02207542183e-06
-1.02225804637e-06
-1.02225982704e-06
-1.02210006985e-06
-1.02182068006e-06
-1.02162974507e-06
-1.02161677149e-06
-1.02137306274e-06
-1.0211092357e-06
-1.02124021071e-06
-1.02157826156e-06
-1.02131552634e-06
-1.02093488074e-06
-1.02087192713e-06
-1.02080125028e-06
-1.02073879727e-06
-1.02061485899e-06
-1.02055253515e-06
-1.02072506306e-06
-1.02104941018e-06
-1.02111059921e-06
-1.02097215951e-06
-1.02056397687e-06
-1.02034634753e-06
-1.02037534126e-06
-1.02074978377e-06
-1.0212483364e-06
-1.02183662029e-06
-1.02223987738e-06
-1.02251932749e-06
-1.02266275778e-06
-1.02258973034e-06
-1.02216197482e-06
-1.02169853935e-06
-1.02160303318e-06
-1.02179454524e-06
-1.02197508367e-06
-1.02216569663e-06
-1.02242115921e-06
-1.02261912465e-06
-1.02258444739e-06
-1.02229329561e-06
-1.02191947507e-06
-1.02176379657e-06
-1.02180541501e-06
-1.02201499042e-06
-1.02205718457e-06
-1.02182779667e-06
-1.02164222578e-06
-1.02186460496e-06
-1.02224403792e-06
-1.02271193426e-06
-1.02285704054e-06
-1.02288883752e-06
-1.02300732345e-06
-1.02256812459e-06
-1.02208225167e-06
-1.02200010641e-06
-1.02166109545e-06
-1.0205947517e-06
-1.01971263041e-06
-1.01969050421e-06
-1.0196688676e-06
-1.01966408483e-06
-1.01963859295e-06
-1.01986396131e-06
-1.01987718096e-06
-1.01975019251e-06
-1.01999697789e-06
-1.02031372734e-06
-1.02065674943e-06
-1.02125113023e-06
-1.02154196101e-06
-1.02156133158e-06
-1.02144901719e-06
-1.02134035626e-06
-1.02154071513e-06
-1.0222859705e-06
-1.02302495444e-06
-1.02338653417e-06
-1.02339432561e-06
-1.02328440233e-06
-1.02314605855e-06
-1.02353578731e-06
-1.02399192006e-06
-1.0237550744e-06
-1.02287156991e-06
-1.02206643036e-06
-1.02166684553e-06
-1.02166874034e-06
-1.02154066896e-06
-1.02107017731e-06
-1.02043257241e-06
-1.02022668221e-06
-1.020241284e-06
-1.02068966428e-06
-1.02173819228e-06
-1.02226453231e-06
-1.02208318319e-06
-1.02138170925e-06
-1.02036569286e-06
-1.02094493304e-06
-1.02266968812e-06
-1.02141390862e-06
-1.02182105521e-06
-1.02209882615e-06
-1.02202315235e-06
-1.02215570946e-06
-1.02216266454e-06
-1.02307893854e-06
-1.02252139903e-06
-1.0226543534e-06
-1.02346088078e-06
-1.02243381933e-06
-1.02404559815e-06
-1.0225353893e-06
-1.023493101e-06
-1.02301171225e-06
-1.02259929386e-06
-1.02349963658e-06
-1.02236772083e-06
-1.0227409804e-06
-1.02318188487e-06
-1.02324263344e-06
-1.02313454505e-06
-1.02292771887e-06
-1.02339562114e-06
-1.02350665234e-06
-1.02367383038e-06
-1.02317236486e-06
-1.0218530814e-06
-1.0214315419e-06
-1.02218784025e-06
-1.02294817302e-06
-1.02247418228e-06
-1.02071370689e-06
-1.02157966382e-06
-1.02052589681e-06
-1.01863165374e-06
-1.02233437716e-06
-1.0210678016e-06
-1.01761989533e-06
-1.01920006187e-06
-1.02005734243e-06
-1.02108081769e-06
-1.01995832057e-06
-1.0210682033e-06
-1.02192163389e-06
-1.02437643977e-06
-1.0178413756e-06
-9.94196293539e-07
)
;
}
left
{
type cyclic;
}
right
{
type cyclic;
}
frontAndBack
{
type empty;
}
}
// ************************************************************************* //
| [
"d.shipley.1341@gmail.com"
] | d.shipley.1341@gmail.com |
c927064dccb8b9d930c6273a0ee657d0eebcd533 | affd229c1c1e68d5bf831e8fd8952111f01283df | /AWS_Canary_dev/SGP30.ino | d7b0ee437cfd7747c0cfdbd2ca24c122bebade8b | [
"MIT"
] | permissive | cmmagsipoc16/Canary | 39605213fbfc069970559848c1e55ae14fbb517f | 7b2687e026041d182baeff3a6b535ec1ad007c85 | refs/heads/master | 2021-07-25T18:51:58.084567 | 2020-04-17T11:50:04 | 2020-04-17T11:50:04 | 153,393,208 | 0 | 0 | MIT | 2019-01-04T05:21:41 | 2018-10-17T03:59:17 | null | UTF-8 | C++ | false | false | 1,921 | ino | #include "Adafruit_SGP30.h"
Adafruit_SGP30 sgp;
int counter = 0;
/* return absolute humidity [mg/m^3] with approximation formula
* @param temperature [°C]
* @param humidity [%RH]
*/
uint32_t getAbsoluteHumidity(float temperature, float humidity) {
// approximation formula from Sensirion SGP30 Driver Integration chapter 3.15
const float absoluteHumidity = 216.7f * ((humidity / 100.0f) * 6.112f * exp((17.62f * temperature) / (243.12f + temperature)) / (273.15f + temperature)); // [g/m^3]
const uint32_t absoluteHumidityScaled = static_cast<uint32_t>(1000.0f * absoluteHumidity); // [mg/m^3]
return absoluteHumidityScaled;
}
bool initSGP30()
{
if (! sgp.begin()){
Serial.println("Sensor not found :(");
while (1);
return false;
}
Serial.print("Found SGP30 serial #");
Serial.print(sgp.serialnumber[0], HEX);
Serial.print(sgp.serialnumber[1], HEX);
Serial.println(sgp.serialnumber[2], HEX);
// If you have a baseline measurement from before you can assign it to start, to 'self-calibrate'
//sgp.setIAQBaseline(0x8E68, 0x8F41); // Will vary for each sensor!
return true;
}
//void readSGP30 (int* VOC, int* CO2){
void readSGP30_Baseline (){
if (! sgp.IAQmeasure()) {
Serial.println("Measurement failed");
return;
}
//Serial.print("TVOC "); Serial.print(sgp.TVOC); Serial.println(" ppb\t");
//Serial.print("eCO2 "); Serial.print(sgp.eCO2); Serial.println(" ppm");
//counter++;
//if (counter == 30) {
// counter = 0;
// uint16_t TVOC_base, eCO2_base;
// if (! sgp.getIAQBaseline(&eCO2_base, &TVOC_base)) {
// Serial.println("Failed to get baseline readings");
// return;
// }
// Serial.print("****Baseline values: eCO2: 0x"); Serial.print(eCO2_base, HEX);
// Serial.print(" & TVOC: 0x"); Serial.println(TVOC_base, HEX);
//}
}
int readCO2SGP30(){
return sgp.eCO2;
}
int readTVOCSGP30(){
return sgp.TVOC;
}
| [
"41070171+cmmagsipoc16@users.noreply.github.com"
] | 41070171+cmmagsipoc16@users.noreply.github.com |
e6a1e861aaf0b2c7f1399758c15485af97b4e076 | bb3d9d0ab422b48a8eeefb19b2a38b5b0e7ffdec | /IndexManager/node.hpp | 3dbbe329cbc2123e6af361738f95581a39b3a102 | [] | no_license | SingleLyra/Minisql | aea77a3e7fb0e2f69329b830fd4939093b2448d1 | 4283e608d0e192929605bcd0a4c8f4dff6daf95b | refs/heads/master | 2020-06-01T08:55:21.104425 | 2019-09-19T11:04:22 | 2019-09-19T11:04:22 | 190,722,427 | 11 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,192 | hpp | #ifndef NODE_H
#define NODE_H
#include <vector>
#include "../minisql.h"
#include "../BufferManager/BufferManager.h"
enum class BPTP
{
UNDEF = 0,
LEAF,
NOTLEAF
};
//叶子: k个指针 k个值
//非叶子: k个指针 k-1个值[0...k-1] [ < val[k] 向左 否则向右 ]
// usage: records which are inserted
typedef int BP_POINTER;
const BP_POINTER BP_NULL = -1;
const BP_POINTER ROOT = 0;
struct BPKEY
{
KEY key;
BP_POINTER pt; //指向文件的位置
};
// [header | record1 | 2 | 3 | ..] [header | 1 | 2 | 3 | ..]
struct BPHEADER
{
BPTP isleaf;
KTP ktp; int len, usage;
BP_POINTER sib;
BPHEADER()
{
isleaf = BPTP::UNDEF;
ktp = KTP::UNDEF;
len = 0; usage = 1; //只有一个空指针QAQ
sib = BP_NULL;
}
};
struct Node //源于buffer 高于buffer!
{
/*BPTP isleaf; KTP ktp;
int len, usage;
BP_POINTER par, sib;*/
BPHEADER header; // 从header的数据进行访问
vector<BPKEY> sons;
BLOCKS *msg; //指向一个data……之后可能要搞事情T^T应该是data->... 一定是要绑定的QAQAQ
Node()
{
header = BPHEADER();
sons.clear();
msg = NULL;
}
Node(const Node& a)
{
header = a.header;
for (auto i : a.sons) sons.push_back(i);
msg = a.msg;
}
~Node() { ; }
void ReadHeader();
void WriteHeader();
void ReadData(); // 从msg里面要数据.jpg
void WriteData(); // write数据到msg中
bool NeedSplit(){
//cerr << header.len << endl;
// return header.usage > ;
bool t = (sizeof(header) + (sizeof(int) + header.len) * (header.usage+2)) >= BLOCK_SIZE;
// cerr << sizeof(header) << endl;
// if (t == 1) puts("NeedSplit!");
return t;
}
bool NeedMerge() { return sizeof(header) + 2 * (4 + header.len) * (header.usage + 1) < BLOCK_SIZE; }
//里面有一些函数,还没想好
};
// Read_Node from BLOCKS.
// WRITE_Node to BLOCKS.
#endif
/*
B+ tree的部分之后再想
create B+tree:
drop B+tree:
Insert val:
delete val:
find val < one / more >
*/ | [
"noreply@github.com"
] | SingleLyra.noreply@github.com |
c7c5a0f3fab098fe45d8843e2f6e0b2b8a885440 | 3ff1fe3888e34cd3576d91319bf0f08ca955940f | /cpdp/src/v20190820/model/QueryAnchorContractInfoRequest.cpp | a0d87219800dc2967674ee9cacbf304bf750e3ca | [
"Apache-2.0"
] | permissive | TencentCloud/tencentcloud-sdk-cpp | 9f5df8220eaaf72f7eaee07b2ede94f89313651f | 42a76b812b81d1b52ec6a217fafc8faa135e06ca | refs/heads/master | 2023-08-30T03:22:45.269556 | 2023-08-30T00:45:39 | 2023-08-30T00:45:39 | 188,991,963 | 55 | 37 | Apache-2.0 | 2023-08-17T03:13:20 | 2019-05-28T08:56:08 | C++ | UTF-8 | C++ | false | false | 2,653 | cpp | /*
* Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <tencentcloud/cpdp/v20190820/model/QueryAnchorContractInfoRequest.h>
#include <tencentcloud/core/utils/rapidjson/document.h>
#include <tencentcloud/core/utils/rapidjson/writer.h>
#include <tencentcloud/core/utils/rapidjson/stringbuffer.h>
using namespace TencentCloud::Cpdp::V20190820::Model;
using namespace std;
QueryAnchorContractInfoRequest::QueryAnchorContractInfoRequest() :
m_beginTimeHasBeenSet(false),
m_endTimeHasBeenSet(false)
{
}
string QueryAnchorContractInfoRequest::ToJsonString() const
{
rapidjson::Document d;
d.SetObject();
rapidjson::Document::AllocatorType& allocator = d.GetAllocator();
if (m_beginTimeHasBeenSet)
{
rapidjson::Value iKey(rapidjson::kStringType);
string key = "BeginTime";
iKey.SetString(key.c_str(), allocator);
d.AddMember(iKey, rapidjson::Value(m_beginTime.c_str(), allocator).Move(), allocator);
}
if (m_endTimeHasBeenSet)
{
rapidjson::Value iKey(rapidjson::kStringType);
string key = "EndTime";
iKey.SetString(key.c_str(), allocator);
d.AddMember(iKey, rapidjson::Value(m_endTime.c_str(), allocator).Move(), allocator);
}
rapidjson::StringBuffer buffer;
rapidjson::Writer<rapidjson::StringBuffer> writer(buffer);
d.Accept(writer);
return buffer.GetString();
}
string QueryAnchorContractInfoRequest::GetBeginTime() const
{
return m_beginTime;
}
void QueryAnchorContractInfoRequest::SetBeginTime(const string& _beginTime)
{
m_beginTime = _beginTime;
m_beginTimeHasBeenSet = true;
}
bool QueryAnchorContractInfoRequest::BeginTimeHasBeenSet() const
{
return m_beginTimeHasBeenSet;
}
string QueryAnchorContractInfoRequest::GetEndTime() const
{
return m_endTime;
}
void QueryAnchorContractInfoRequest::SetEndTime(const string& _endTime)
{
m_endTime = _endTime;
m_endTimeHasBeenSet = true;
}
bool QueryAnchorContractInfoRequest::EndTimeHasBeenSet() const
{
return m_endTimeHasBeenSet;
}
| [
"tencentcloudapi@tenent.com"
] | tencentcloudapi@tenent.com |
88127add2edceba8d3f7e8ed3bd90f1272ebbe19 | 0e8dafc8d926ab6e2df81ef346a321eb730c60b3 | /UVa/C++/10970.cpp | b8b43c680c5bf77abbe2f5c447cff94d93b8e337 | [] | no_license | CrkJohn/CompetitiveProgramming | 36b5f20b527de9b8bdf7ea8d18394ab83878cc04 | a098bd662a3ad40ec443f76b1c96bde6653c0a46 | refs/heads/master | 2020-03-07T18:51:13.637063 | 2019-08-09T04:22:18 | 2019-08-09T04:22:18 | 127,653,631 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,093 | cpp | #include <bits/stdc++.h>
#define mp make_pair
#define mt make_tuple
#define fi first
#define se second
#define pb push_back
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
#define forn(i, n) for (int i = 0; i < (int)(n); ++i)
#define for1(i, n) for (int i = 1; i <= (int)(n); ++i)
#define ford(i, n) for (int i = (int)(n) - 1; i >= 0; --i)
#define fore(i, a, b) for (int i = (int)(a); i <= (int)(b); ++i)
#define in() freopen("in.txt","r",stdin)
#define out() freopen("out.txt","w",stdout)
#define err() freopen("err.txt","w",stderr)
using namespace std;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<pii> vpi;
typedef vector<vi> vvi;
typedef long long i64;
typedef vector<i64> vi64;
typedef vector<vi64> vvi64;
typedef pair<i64, i64> pi64;
typedef double ld;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.precision(10);
cout << fixed;
int u , v ;
while(cin >> u >> v){
cout << u * v - 1 << endl;
}
cerr << "Time elapsed: " << 1.0 * clock() / CLOCKS_PER_SEC << " s.\n";
return 0;
}
| [
"jhonhrge@gmail.com"
] | jhonhrge@gmail.com |
082401020df947232f132acc5811c5fd42177a27 | 5d83739af703fb400857cecc69aadaf02e07f8d1 | /Archive2/04/29d498e0c14801/main.cpp | a41aa35974eac8a8b1c7109793952e3ea5b35bc7 | [] | no_license | WhiZTiM/coliru | 3a6c4c0bdac566d1aa1c21818118ba70479b0f40 | 2c72c048846c082f943e6c7f9fa8d94aee76979f | refs/heads/master | 2021-01-01T05:10:33.812560 | 2015-08-24T19:09:22 | 2015-08-24T19:09:22 | 56,789,706 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 312 | cpp | #include <iostream>
class Packet{
private:
char *contents;
public:
void pack() {
std::cout << "Pack!" << std::endl;
}
};
class Worker{
public:
void fill_packet(Packet *a){
a->pack();
};
};
int main() {
Worker Me;
Packet MyStash;
Me.fill_packet(&MyStash);
return 0;
} | [
"francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df"
] | francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df |
342ed9c4068f77baaa14b3e2f987eb0a6bc62dcb | 2493ee7de77a2686d6445f965a164f0a633fcad7 | /dealingProbs/cpp/ll.cpp | a5e6a70908c993581a1b6c5f9b900eb6f7846449 | [] | no_license | Ashishpurbey/warHammer | 9eaec4e0ac5cb30bf251a6610390192c4a8f62bb | 2cf4069fa0f7c8afbfa3f3bf91e51783526080b5 | refs/heads/main | 2023-03-24T13:51:37.003361 | 2021-03-13T19:03:29 | 2021-03-13T19:03:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,194 | cpp | class node
{
public:
int data;
node *next;
node(int val)
{
data = val;
next = NULL;
}
};
void insertAtTail(node *&head, int val)
{
node *n = new node(val);
if (!head)
{
head = n;
return;
}
node *temp = head;
while (temp->next != NULL)
{
temp = temp->next;
}
temp->next = n;
}
void insertAtHead(node *&head, int val)
{
node *n = new node(val);
n->next = head;
head = n;
}
void deleteAtHead(node *&head)
{
node *todelete = head;
head = head->next;
delete todelete;
}
void display(node *head)
{
node *temp = head;
while (temp != NULL)
{
cout << temp->data << "->";
temp = temp->next;
}
cout << "NULL" << endl;
}
bool search(node *head, int key)
{
node *temp = head;
while (temp != NULL)
{
if (temp->data == key)
return true;
temp = temp->next;
}
return false;
}
void deletion(node *head, int val)
{
node *temp = head;
while (temp->next->data != val)
{
temp = temp->next;
}
node *toDelete = temp->next;
temp->next = temp->next->next;
delete toDelete;
}
| [
"games.princeraj@gmail.com"
] | games.princeraj@gmail.com |
a9dc5bede0939ce2228974c2cdfd004fc9ed9cc7 | 9f2d585b8bc2a64bfc4ae1352c4cbc0602f26907 | /blackHorseCpp/3_friend/17_classf.cpp | 6466b4baa873b23cd0412937b218817cbfda5632 | [] | no_license | LiviMava/blackHorseCpp | f8300b924412bc35d82209d1e6c4c2832b787921 | 2ac631a3f8c4eb2a5e88d82e34cd60df20461f98 | refs/heads/master | 2023-01-09T23:58:48.645717 | 2020-11-04T13:56:55 | 2020-11-04T13:56:55 | 308,862,342 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 419 | cpp | #include <iostream>
using namespace std;
class Building{
friend class Person;//删除这行体会区别
private:
int age;
public:
Building(){
age = 100;
}
};
class Person{
public:
Building building;
void visit();
};
void Person::visit() {
cout<< building.age << endl;
}
void test(Building& b){
Person p;
p.visit();
}
int main() {
Building b;
test(b);
return 0;
}
| [
"2440389461@qq.com"
] | 2440389461@qq.com |
8cd370f9a0ae298ce07defb211be811414ad2ce0 | 33924be8f34341ca37de794f07abca49f308d49d | /scm_input/src/scm/input/tracking/detail/dtrack.cpp | 652e56779b2b2894024abf53ee08fadd60706384 | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | mapoto/schism | 59ef4ab83851bd606b4f603d5160fb7c7a60366b | 784d53d723ae62ebc9acb3017db664794fd4413e | refs/heads/master | 2021-02-26T04:31:18.595701 | 2020-03-14T10:50:06 | 2020-03-14T10:50:06 | 245,495,976 | 1 | 0 | NOASSERTION | 2020-03-06T19:00:09 | 2020-03-06T19:00:08 | null | UTF-8 | C++ | false | false | 17,607 | cpp | /* dtrack: receives and processes DTrack udp packets (ASCII protocol), A.R.T. GmbH 25.8.00-s.u.
* Common code tested under Linux, Irix, Windows NT 4.0, Windows 2000, Windows XP
*
* Version v0.3.4
*
* Purpose:
* - receives DTrack udp packets (ASCII protocol) and converts them into easier to handle data
* - sends DTrack remote commands (udp)
* - DTrack network protocol due to: 'Technical Appendix DTrack v1.18 (July 7, 2003)'
* - for DTrack versions v1.16 - v1.20 (and compatible versions)
*
* Usage:
* - for Linux, Irix: just compile
* - for Windows NT 4.0, Windows 2000, Windows XP:
* - comment '#define OS_UNIX', uncomment '#define OS_WIN'
* - link with 'ws2_32.lib'
*
* Versions:
* v0.1 (25.8.00, KA): ASCII-Format
* v0.2 (10.3.01, KA): 'neues' Datenformat
* p1 (10.4.01, KA): Linux und NT
* p2 (26.9.01, KA): Protokoll-Erweiterung fuer DTrack v1.16.1: '6dcal'
* v0.3 (15.10.01, KA): Protokoll-Erweiterung fuer DTrack v1.16.2: '6df'
* p1 (11.1.02, KA): 'remote'-Schnittstelle
* p2 (29.1.03, KA): Timestamp-Erweiterung fuer DTrack v1.17.3
* p3 (25.9.03, KA): Protokoll-Erweiterung fuer DTrack v1.18.0: '6dmt'
* p4 (26.5.04, KA): udp_receive erweitert (OS-Buffer komplett leeren)
*
* $Id$
*/
#include <scm/core/platform/platform.h>
//#define OS_UNIX 1 // for Linux, Irix
////#define OS_WIN 1 // for Windows NT 4.0, Windows 2000, Windows XP
// --------------------------------------------------------------------------
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#if SCM_PLATFORM == SCM_PLATFORM_LINUX
//#ifdef OS_UNIX
#include <sys/socket.h>
#include <sys/time.h>
#include <netinet/in.h>
#include <unistd.h>
#elif SCM_PLATFORM == SCM_PLATFORM_WINDOWS
# include <scm/core/platform/windows.h>
# include <winsock.h>
#endif
#include "dtrack.h"
// Constants dependent from protocol:
#define PROT_MAX_LINES 8 // maximum number of lines in a udp packet
// --------------------------------------------------------------------------
// Constructor & Destructor
DTrack::DTrack()
: _udpsock(-1),
_udptimeout_us(1000000),
_udpbufsize(10000),
_udpbuf(NULL),
_remote_ip(0),
_remote_port(0)
{
}
DTrack::~DTrack()
{
}
// --------------------------------------------------------------------------
// Initialization:
// ini (i): parameters
// return value (o): error code
int DTrack::init(dtrack_init_type* ini)
{
// init udp socket:
_udpsock = udp_init(ini->udpport);
if(_udpsock < 0){
return DTRACK_ERR_UDP;
}
_udptimeout_us = ini->udptimeout_us;
// init udp buffer:
_udpbufsize = ini->udpbufsize;
_udpbuf = (char *)malloc(_udpbufsize);
if(!_udpbuf){
udp_exit(_udpsock);
return DTRACK_ERR_MEM;
}
// DTrack remote control parameters:
_remote_ip = udp_inet_atoh(ini->remote_ip);
_remote_port = ini->remote_port;
return DTRACK_ERR_NONE;
}
// --------------------------------------------------------------------------
// Exit:
// return value (o): error code
int DTrack::exit(void)
{
// exit udp buffer:
if(_udpbuf){
free(_udpbuf);
}
// exit udp socket:
if(_udpsock > 0){
if(udp_exit(_udpsock)){
return DTRACK_ERR_UDP;
}
}
return DTRACK_ERR_NONE;
}
// --------------------------------------------------------------------------
// Receive and process DTrack udp packet (ASCII protocol):
// framenr (o): frame counter
// timestamp (o): timestamp (-1, if information not available in packet)
// nbodycal (o): number of calibrated bodies (-1, if information not available in packet)
// nbody (o): number of tracked bodies
// body (o): array containing 6d data
// max_nbody (i): maximum number of bodies in array body (no processing is done, if 0)
// nflystick (o): number of calibrated flysticks
// flystick (o): array containing 6df data
// max_nflystick (i): maximum number of flysticks in array flystick (no processing is done, if 0)
// nmeatool (o): number of calibrated measurement tools
// meatool (o): array containing 6dmt data
// max_nmeatool (i): maximum number of measurement tools in array (no processing is done, if 0)
// nmarker (o): number of tracked single markers
// marker (o): array containing 3d data
// max_nmarker (i): maximum number of marker in array marker (no processing is done, if 0)
// return value (o): error code
int DTrack::receive_udp_ascii(
unsigned long* framenr, double* timestamp,
int* nbodycal, int* nbody, dtrack_body_type* body, int max_nbody,
int* nflystick, dtrack_flystick_type* flystick, int max_nflystick,
int* nmeatool, dtrack_meatool_type* meatool, int max_nmeatool,
int* nmarker, dtrack_marker_type* marker, int max_nmarker
){
char* strs[PROT_MAX_LINES];
char* s;
int iline, nlines;
int i, len, n;
unsigned long ul, ularr[2];
// Defaults:
*framenr = 0;
*timestamp = -1; // i.e. not available
*nbodycal = -1; // i.e. not available
*nbody = 0;
*nflystick = 0;
*nmeatool = 0;
*nmarker = 0;
// Receive udp packet:
len = udp_receive(_udpsock, _udpbuf, _udpbufsize, _udptimeout_us);
if(len == -1){
return DTRACK_ERR_TIMEOUT;
}
if(len <= 0){
return DTRACK_ERR_UDP;
}
// Split packet in lines:
if((nlines = split_lines(_udpbuf, len, strs, PROT_MAX_LINES)) == 0){
return DTRACK_ERR_PCK;
}
// Process lines:
for(iline=0; iline<nlines; iline++){
s = strs[iline];
// Line for frame counter:
if(!strncmp(s, "fr ", 3)){
s += 3;
if(!(s = get_ul(s, framenr))){ // get frame counter
*framenr = 0;
return DTRACK_ERR_PCK;
}
continue;
}
// Line for timestamp:
if(!strncmp(s, "ts ", 3)){
s += 3;
if(!(s = get_d(s, timestamp))){ // get timestamp
*timestamp = 0;
return DTRACK_ERR_PCK;
}
continue;
}
// Line for additional information about number of calibrated bodies:
if(!strncmp(s, "6dcal ", 6)){
if(max_nbody <= 0){
continue;
}
s += 6;
if(!(s = get_ul(s, &ul))){ // get number of bodies
return DTRACK_ERR_PCK;
}
*nbodycal = (int )ul;
continue;
}
// Line for 6d data:
if(!strncmp(s, "6d ", 3)){
if(max_nbody <= 0){
continue;
}
s += 3;
if(!(s = get_ul(s, &ul))){ // get number of bodies
return DTRACK_ERR_PCK;
}
*nbody = n = (int )ul;
if(n > max_nbody){
n = max_nbody;
}
for(i=0; i<n; i++){ // get data of body
if(!(s = get_block(s, "uf", &body[i].id, &body[i].quality))){
return DTRACK_ERR_PCK;
}
if(!(s = get_block(s, "ffffff", NULL, body[i].loc))){
return DTRACK_ERR_PCK;
}
if(!(s = get_block(s, "fffffffff", NULL, body[i].rot))){
return DTRACK_ERR_PCK;
}
}
continue;
}
// Line for flystick data:
if(!strncmp(s, "6df ", 4)){
if(max_nflystick <= 0){
continue;
}
s += 4;
if(!(s = get_ul(s, &ul))){ // get number of flysticks
return DTRACK_ERR_PCK;
}
*nflystick = n = (int )ul;
if(n > max_nflystick){
n = max_nflystick;
}
for(i=0; i<n; i++){ // get data of body
if(!(s = get_block(s, "ufu", ularr, &flystick[i].quality))){
return DTRACK_ERR_PCK;
}
flystick[i].id = ularr[0];
flystick[i].bt = ularr[1];
if(!(s = get_block(s, "ffffff", NULL, flystick[i].loc))){
return DTRACK_ERR_PCK;
}
if(!(s = get_block(s, "fffffffff", NULL, flystick[i].rot))){
return DTRACK_ERR_PCK;
}
}
continue;
}
// Line for measurement tool data:
if(!strncmp(s, "6dmt ", 5)){
if(max_nmeatool <= 0){
continue;
}
s += 5;
if(!(s = get_ul(s, &ul))){ // get number of flysticks
return DTRACK_ERR_PCK;
}
*nmeatool = n = (int )ul;
if(n > max_nmeatool){
n = max_nmeatool;
}
for(i=0; i<n; i++){ // get data of body
if(!(s = get_block(s, "ufu", ularr, &meatool[i].quality))){
return DTRACK_ERR_PCK;
}
meatool[i].id = ularr[0];
meatool[i].bt = ularr[1];
if(!(s = get_block(s, "fff", NULL, meatool[i].loc))){
return DTRACK_ERR_PCK;
}
if(!(s = get_block(s, "fffffffff", NULL, meatool[i].rot))){
return DTRACK_ERR_PCK;
}
}
continue;
}
// Line for single markers:
if(!strncmp(s, "3d ", 3)){
if(max_nmarker <= 0){
continue;
}
s += 3;
if(!(s = get_ul(s, &ul))){ // get number of markers
return DTRACK_ERR_PCK;
}
*nmarker = n = (int )ul;
if(n > max_nmarker){
n = max_nmarker;
}
for(i=0; i<n; i++){ // get marker data
if(!(s = get_block(s, "uf", &marker[i].id, &marker[i].quality))){
return DTRACK_ERR_PCK;
}
if(!(s = get_block(s, "fff", NULL, marker[i].loc))){
return DTRACK_ERR_PCK;
}
}
continue;
}
// ignore invalid line identifier
}
return DTRACK_ERR_NONE;
}
// ---------------------------------------------------------------------------------------------------
// Send remote control command (udp) to DTrack:
// cmd (i): command code
// val (i): additional value (if needed)
// return value (o): error code
int DTrack::send_udp_command(unsigned short cmd, int val)
{
char cmdstr[100];
if(!_remote_ip){
return DTRACK_ERR_CMD;
}
// process command code:
switch(cmd){
case DTRACK_CMD_CAMERAS_OFF:
strcpy(cmdstr, "dtrack 10 0");
break;
case DTRACK_CMD_CAMERAS_ON:
strcpy(cmdstr, "dtrack 10 1");
break;
case DTRACK_CMD_CAMERAS_AND_CALC_ON:
strcpy(cmdstr, "dtrack 10 3");
break;
case DTRACK_CMD_SEND_DATA:
strcpy(cmdstr, "dtrack 31");
break;
case DTRACK_CMD_STOP_DATA:
strcpy(cmdstr, "dtrack 32");
break;
case DTRACK_CMD_SEND_N_DATA:
sprintf(cmdstr, "dtrack 33 %d", val);
break;
default:
return DTRACK_ERR_CMD;
}
// send udp packet:
if(udp_send(_udpsock, cmdstr, static_cast<int>(strlen(cmdstr)) + 1, _remote_ip, _remote_port, _udptimeout_us)){
return DTRACK_ERR_CMD;
}
if(cmd == DTRACK_CMD_CAMERAS_AND_CALC_ON){
#if SCM_PLATFORM == SCM_PLATFORM_LINUX
sleep(1);
#elif SCM_PLATFORM == SCM_PLATFORM_WINDOWS
Sleep(1000);
#endif
//#ifdef OS_UNIX
// sleep(1);
//#endif
//#ifdef OS_WIN
// Sleep(1000);
//#endif
}
return DTRACK_ERR_NONE;
}
// ---------------------------------------------------------------------------------------------------
// ---------------------------------------------------------------------------------------------------
// Split packet in single lines (substitute cr/lf through '\0'):
// str (i): packet
// len (i): length of packet (in bytes)
// strarr (o): array of pointers to the first character of the lines within str
// maxlines (i): length of strarr
// return value (o): number of found lines
int DTrack::split_lines(char* str, unsigned long len, char** strarr, int maxlines)
{
unsigned long i = 0;
int index = 0;
char* s = str;
while(*str && (i<len)){
if(*str == '\r'){ // substitute cr
*str = '\0';
}else if(*str == '\n'){ // lf: end of line found
*str = '\0';
strarr[index++] = s;
if(index == maxlines){ // stop processing, if maximum number reached
return index;
}
s = str + 1;
}
str++;
i++;
}
return index;
}
// Read next 'unsigned long' value from string:
// str (i): string
// ul (o): read value
// return value (o): pointer behind read value in str; NULL in case of error
char* DTrack::get_ul(char* str, unsigned long* ul)
{
char* s;
*ul = strtoul(str, &s, 0);
return (s == str) ? NULL : s;
}
// Read next 'double' value from string:
// str (i): string
// d (o): read value
// return value (o): pointer behind read value in str; NULL in case of error
char* DTrack::get_d(char* str, double* d)
{
char* s;
*d = strtod(str, &s);
return (s == str) ? NULL : s;
}
// Read next 'float' value from string:
// str (i): string
// f (o): read value
// return value (o): pointer behind read value in str; NULL in case of error
char* DTrack::get_f(char* str, float* f)
{
char* s;
*f = (float )strtod(str, &s); // strtof() only available in GNU-C
return (s == str) ? NULL : s;
}
// Process next block '[...]' in string:
// str (i): string
// fmt (i): format string ('u' for 'unsigned long', 'f' for 'float')
// uldat (o): array for 'unsigned long' values (long enough due to fmt)
// fdat (o): array for 'float' values (long enough due to fmt)
// return value (o): pointer behind read value in str; NULL in case of error
char* DTrack::get_block(char* str, char* fmt, unsigned long* uldat, float* fdat)
{
char* strend;
int index_ul, index_f;
if(!(str = strchr(str, '['))){ // search begin of block
return NULL;
}
if(!(strend = strchr(str, ']'))){ // search end of block
return NULL;
}
str++;
*strend = '\0';
index_ul = index_f = 0;
while(*fmt){
switch(*fmt++){
case 'u':
if(!(str = get_ul(str, &uldat[index_ul++]))){
return NULL;
}
break;
case 'f':
if(!(str = get_f(str, &fdat[index_f++]))){
return NULL;
}
break;
default: // ignore unknown format character
break;
}
}
return strend + 1;
}
// ---------------------------------------------------------------------------------------------------
// ---------------------------------------------------------------------------------------------------
// Initialize udp socket:
// port (i): port number
// return value (o): socket number, <0 if error
int DTrack::udp_init(unsigned short port)
{
int sock;
struct sockaddr_in name;
// init socket dll (only NT):
#if SCM_PLATFORM == SCM_PLATFORM_LINUX
#elif SCM_PLATFORM == SCM_PLATFORM_WINDOWS
{
WORD vreq;
WSADATA wsa;
vreq = MAKEWORD(2, 0);
if(WSAStartup(vreq, &wsa) != 0){
return -1;
}
}
#endif
//#ifdef OS_WIN
//{
// WORD vreq;
// WSADATA wsa;
// vreq = MAKEWORD(2, 0);
// if(WSAStartup(vreq, &wsa) != 0){
// return -1;
// }
//}
//#endif
// create the socket:
sock = static_cast<int>(socket(PF_INET, SOCK_DGRAM, 0));
if (sock < 0){
return -2;
}
// name the socket:
name.sin_family = AF_INET;
name.sin_port = htons(port);
name.sin_addr.s_addr = htonl(INADDR_ANY);
if (bind(sock, (struct sockaddr *) &name, sizeof(name)) < 0){
return -3;
}
return sock;
}
// Deinitialize udp socket:
// sock (i): socket number
// return value (o): 0 ok, -1 error
int DTrack::udp_exit(int sock)
{
int err;
#if SCM_PLATFORM == SCM_PLATFORM_LINUX
err = close(sock);
#elif SCM_PLATFORM == SCM_PLATFORM_WINDOWS
err = closesocket(sock);
WSACleanup();
#endif
//#ifdef OS_UNIX
// err = close(sock);
//#endif
//
//#ifdef OS_WIN
// err = closesocket(sock);
// WSACleanup();
//#endif
if(err < 0){
return -1;
}
return 0;
}
// Receiving udp data:
// sock (i): socket number
// buffer (o): buffer for udp data
// maxlen (i): length of buffer
// tout_us (i): timeout in us (micro sec)
// return value (o): number of received bytes, <0 if error/timeout occured
int DTrack::udp_receive(int sock, void *buffer, int maxlen, unsigned long tout_us)
{
int nbytes, err;
fd_set set;
struct timeval tout;
// waiting for data:
FD_ZERO(&set);
FD_SET(sock, &set);
tout.tv_sec = tout_us / 1000000;
tout.tv_usec = tout_us % 1000000;
switch((err = select(FD_SETSIZE, &set, NULL, NULL, &tout))){
case 1:
break;
case 0:
return -1; // timeout
default:
return -2; // error
}
// receiving packet:
while(1){
// receive one packet:
nbytes = recv(sock, (char *)buffer, maxlen, 0);
if(nbytes < 0){ // receive error
return -3;
}
// check, if more data available: if so, receive another packet
FD_ZERO(&set);
FD_SET(sock, &set);
tout.tv_sec = 0; // no timeout
tout.tv_usec = 0;
if(select(FD_SETSIZE, &set, NULL, NULL, &tout) != 1){
// no more data available: check length of received packet and return
if(nbytes >= maxlen){ // buffer overflow
return -4;
}
return nbytes;
}
}
}
// Sending udp data:
// sock (i): socket number
// buffer (i): buffer for udp data
// len (i): length of buffer
// ipaddr (i): ip address to send to
// port (i): port number to send to
// tout_us (i): timeout in us (micro sec)
// return value (o): 0 if ok, <0 if error/timeout occured
int DTrack::udp_send(int sock, void* buffer, int len, unsigned long ipaddr, unsigned short port, unsigned long tout_us)
{
fd_set set;
struct timeval tout;
int nbytes, err;
struct sockaddr_in addr;
// building address:
addr.sin_family = AF_INET;
addr.sin_addr.s_addr = htonl(ipaddr);
addr.sin_port = htons(port);
// waiting to send data:
FD_ZERO(&set);
FD_SET(sock, &set);
tout.tv_sec = tout_us / 1000000;
tout.tv_usec = tout_us % 1000000;
switch((err = select(FD_SETSIZE, NULL, &set, NULL, &tout))){
case 1:
break;
case 0:
return -1; // timeout
default:
return -2; // error
}
// sending data:
nbytes = sendto(sock, (char* )buffer, len, 0, (struct sockaddr* )&addr, (size_t )sizeof(struct sockaddr_in));
if(nbytes < len){ // send error
return -3;
}
return 0;
}
// Converting string to ip address:
// s (i): string
// return value (o): ip address, 0 if error occured
unsigned long DTrack::udp_inet_atoh(char* s)
{
int i, a[4];
char* s1;
unsigned long ret;
s1 = s;
while(*s1){
if(*s1 == '.'){
*s1 = ' ';
}
s1++;
}
if(sscanf(s, "%d %d %d %d", &a[0], &a[1], &a[2], &a[3]) != 4){
return 0;
}
ret = 0;
for(i=0; i<4; i++){
if(a[i] < 0 || a[i] > 255){
return 0;
}
ret = (ret << 8) | (unsigned char)a[i];
}
return ret;
}
| [
"christopherlux@gmail.com"
] | christopherlux@gmail.com |
3e7f3554eaca96403bea861826d5b3d806b9963c | c776476e9d06b3779d744641e758ac3a2c15cddc | /examples/litmus/c/run-scripts/tmp_5/Z6.2+po+ctrl+addr.c.cbmc.cpp | c0aab9275c6bc78abb53b76195b2e65c63f1c20d | [] | no_license | ashutosh0gupta/llvm_bmc | aaac7961c723ba6f7ffd77a39559e0e52432eade | 0287c4fb180244e6b3c599a9902507f05c8a7234 | refs/heads/master | 2023-08-02T17:14:06.178723 | 2023-07-31T10:46:53 | 2023-07-31T10:46:53 | 143,100,825 | 3 | 4 | null | 2023-05-25T05:50:55 | 2018-08-01T03:47:00 | C++ | UTF-8 | C++ | false | false | 39,542 | cpp | // Global variabls:
// 0:vars:3
// 3:atom_1_X0_1:1
// 4:atom_2_X0_1:1
// Local global variabls:
// 0:thr0:1
// 1:thr1:1
// 2:thr2:1
#define ADDRSIZE 5
#define LOCALADDRSIZE 3
#define NTHREAD 4
#define NCONTEXT 5
#define ASSUME(stmt) __CPROVER_assume(stmt)
#define ASSERT(stmt) __CPROVER_assert(stmt, "error")
#define max(a,b) (a>b?a:b)
char __get_rng();
char get_rng( char from, char to ) {
char ret = __get_rng();
ASSUME(ret >= from && ret <= to);
return ret;
}
char get_rng_th( char from, char to ) {
char ret = __get_rng();
ASSUME(ret >= from && ret <= to);
return ret;
}
int main(int argc, char **argv) {
// Declare arrays for intial value version in contexts
int local_mem[LOCALADDRSIZE];
// Dumping initializations
local_mem[0+0] = 0;
local_mem[1+0] = 0;
local_mem[2+0] = 0;
int cstart[NTHREAD];
int creturn[NTHREAD];
// declare arrays for contexts activity
int active[NCONTEXT];
int ctx_used[NCONTEXT];
// declare arrays for intial value version in contexts
int meminit_[ADDRSIZE*NCONTEXT];
#define meminit(x,k) meminit_[(x)*NCONTEXT+k]
int coinit_[ADDRSIZE*NCONTEXT];
#define coinit(x,k) coinit_[(x)*NCONTEXT+k]
int deltainit_[ADDRSIZE*NCONTEXT];
#define deltainit(x,k) deltainit_[(x)*NCONTEXT+k]
// declare arrays for running value version in contexts
int mem_[ADDRSIZE*NCONTEXT];
#define mem(x,k) mem_[(x)*NCONTEXT+k]
int co_[ADDRSIZE*NCONTEXT];
#define co(x,k) co_[(x)*NCONTEXT+k]
int delta_[ADDRSIZE*NCONTEXT];
#define delta(x,k) delta_[(x)*NCONTEXT+k]
// declare arrays for local buffer and observed writes
int buff_[NTHREAD*ADDRSIZE];
#define buff(x,k) buff_[(x)*ADDRSIZE+k]
int pw_[NTHREAD*ADDRSIZE];
#define pw(x,k) pw_[(x)*ADDRSIZE+k]
// declare arrays for context stamps
char cr_[NTHREAD*ADDRSIZE];
#define cr(x,k) cr_[(x)*ADDRSIZE+k]
char iw_[NTHREAD*ADDRSIZE];
#define iw(x,k) iw_[(x)*ADDRSIZE+k]
char cw_[NTHREAD*ADDRSIZE];
#define cw(x,k) cw_[(x)*ADDRSIZE+k]
char cx_[NTHREAD*ADDRSIZE];
#define cx(x,k) cx_[(x)*ADDRSIZE+k]
char is_[NTHREAD*ADDRSIZE];
#define is(x,k) is_[(x)*ADDRSIZE+k]
char cs_[NTHREAD*ADDRSIZE];
#define cs(x,k) cs_[(x)*ADDRSIZE+k]
char crmax_[NTHREAD*ADDRSIZE];
#define crmax(x,k) crmax_[(x)*ADDRSIZE+k]
char sforbid_[ADDRSIZE*NCONTEXT];
#define sforbid(x,k) sforbid_[(x)*NCONTEXT+k]
// declare arrays for synchronizations
int cl[NTHREAD];
int cdy[NTHREAD];
int cds[NTHREAD];
int cdl[NTHREAD];
int cisb[NTHREAD];
int caddr[NTHREAD];
int cctrl[NTHREAD];
__LOCALS__
buff(0,0) = 0;
pw(0,0) = 0;
cr(0,0) = 0;
iw(0,0) = 0;
cw(0,0) = 0;
cx(0,0) = 0;
is(0,0) = 0;
cs(0,0) = 0;
crmax(0,0) = 0;
buff(0,1) = 0;
pw(0,1) = 0;
cr(0,1) = 0;
iw(0,1) = 0;
cw(0,1) = 0;
cx(0,1) = 0;
is(0,1) = 0;
cs(0,1) = 0;
crmax(0,1) = 0;
buff(0,2) = 0;
pw(0,2) = 0;
cr(0,2) = 0;
iw(0,2) = 0;
cw(0,2) = 0;
cx(0,2) = 0;
is(0,2) = 0;
cs(0,2) = 0;
crmax(0,2) = 0;
buff(0,3) = 0;
pw(0,3) = 0;
cr(0,3) = 0;
iw(0,3) = 0;
cw(0,3) = 0;
cx(0,3) = 0;
is(0,3) = 0;
cs(0,3) = 0;
crmax(0,3) = 0;
buff(0,4) = 0;
pw(0,4) = 0;
cr(0,4) = 0;
iw(0,4) = 0;
cw(0,4) = 0;
cx(0,4) = 0;
is(0,4) = 0;
cs(0,4) = 0;
crmax(0,4) = 0;
cl[0] = 0;
cdy[0] = 0;
cds[0] = 0;
cdl[0] = 0;
cisb[0] = 0;
caddr[0] = 0;
cctrl[0] = 0;
cstart[0] = get_rng(0,NCONTEXT-1);
creturn[0] = get_rng(0,NCONTEXT-1);
buff(1,0) = 0;
pw(1,0) = 0;
cr(1,0) = 0;
iw(1,0) = 0;
cw(1,0) = 0;
cx(1,0) = 0;
is(1,0) = 0;
cs(1,0) = 0;
crmax(1,0) = 0;
buff(1,1) = 0;
pw(1,1) = 0;
cr(1,1) = 0;
iw(1,1) = 0;
cw(1,1) = 0;
cx(1,1) = 0;
is(1,1) = 0;
cs(1,1) = 0;
crmax(1,1) = 0;
buff(1,2) = 0;
pw(1,2) = 0;
cr(1,2) = 0;
iw(1,2) = 0;
cw(1,2) = 0;
cx(1,2) = 0;
is(1,2) = 0;
cs(1,2) = 0;
crmax(1,2) = 0;
buff(1,3) = 0;
pw(1,3) = 0;
cr(1,3) = 0;
iw(1,3) = 0;
cw(1,3) = 0;
cx(1,3) = 0;
is(1,3) = 0;
cs(1,3) = 0;
crmax(1,3) = 0;
buff(1,4) = 0;
pw(1,4) = 0;
cr(1,4) = 0;
iw(1,4) = 0;
cw(1,4) = 0;
cx(1,4) = 0;
is(1,4) = 0;
cs(1,4) = 0;
crmax(1,4) = 0;
cl[1] = 0;
cdy[1] = 0;
cds[1] = 0;
cdl[1] = 0;
cisb[1] = 0;
caddr[1] = 0;
cctrl[1] = 0;
cstart[1] = get_rng(0,NCONTEXT-1);
creturn[1] = get_rng(0,NCONTEXT-1);
buff(2,0) = 0;
pw(2,0) = 0;
cr(2,0) = 0;
iw(2,0) = 0;
cw(2,0) = 0;
cx(2,0) = 0;
is(2,0) = 0;
cs(2,0) = 0;
crmax(2,0) = 0;
buff(2,1) = 0;
pw(2,1) = 0;
cr(2,1) = 0;
iw(2,1) = 0;
cw(2,1) = 0;
cx(2,1) = 0;
is(2,1) = 0;
cs(2,1) = 0;
crmax(2,1) = 0;
buff(2,2) = 0;
pw(2,2) = 0;
cr(2,2) = 0;
iw(2,2) = 0;
cw(2,2) = 0;
cx(2,2) = 0;
is(2,2) = 0;
cs(2,2) = 0;
crmax(2,2) = 0;
buff(2,3) = 0;
pw(2,3) = 0;
cr(2,3) = 0;
iw(2,3) = 0;
cw(2,3) = 0;
cx(2,3) = 0;
is(2,3) = 0;
cs(2,3) = 0;
crmax(2,3) = 0;
buff(2,4) = 0;
pw(2,4) = 0;
cr(2,4) = 0;
iw(2,4) = 0;
cw(2,4) = 0;
cx(2,4) = 0;
is(2,4) = 0;
cs(2,4) = 0;
crmax(2,4) = 0;
cl[2] = 0;
cdy[2] = 0;
cds[2] = 0;
cdl[2] = 0;
cisb[2] = 0;
caddr[2] = 0;
cctrl[2] = 0;
cstart[2] = get_rng(0,NCONTEXT-1);
creturn[2] = get_rng(0,NCONTEXT-1);
buff(3,0) = 0;
pw(3,0) = 0;
cr(3,0) = 0;
iw(3,0) = 0;
cw(3,0) = 0;
cx(3,0) = 0;
is(3,0) = 0;
cs(3,0) = 0;
crmax(3,0) = 0;
buff(3,1) = 0;
pw(3,1) = 0;
cr(3,1) = 0;
iw(3,1) = 0;
cw(3,1) = 0;
cx(3,1) = 0;
is(3,1) = 0;
cs(3,1) = 0;
crmax(3,1) = 0;
buff(3,2) = 0;
pw(3,2) = 0;
cr(3,2) = 0;
iw(3,2) = 0;
cw(3,2) = 0;
cx(3,2) = 0;
is(3,2) = 0;
cs(3,2) = 0;
crmax(3,2) = 0;
buff(3,3) = 0;
pw(3,3) = 0;
cr(3,3) = 0;
iw(3,3) = 0;
cw(3,3) = 0;
cx(3,3) = 0;
is(3,3) = 0;
cs(3,3) = 0;
crmax(3,3) = 0;
buff(3,4) = 0;
pw(3,4) = 0;
cr(3,4) = 0;
iw(3,4) = 0;
cw(3,4) = 0;
cx(3,4) = 0;
is(3,4) = 0;
cs(3,4) = 0;
crmax(3,4) = 0;
cl[3] = 0;
cdy[3] = 0;
cds[3] = 0;
cdl[3] = 0;
cisb[3] = 0;
caddr[3] = 0;
cctrl[3] = 0;
cstart[3] = get_rng(0,NCONTEXT-1);
creturn[3] = get_rng(0,NCONTEXT-1);
// Dumping initializations
mem(0+0,0) = 0;
mem(0+1,0) = 0;
mem(0+2,0) = 0;
mem(3+0,0) = 0;
mem(4+0,0) = 0;
// Dumping context matching equalities
co(0,0) = 0;
delta(0,0) = -1;
mem(0,1) = meminit(0,1);
co(0,1) = coinit(0,1);
delta(0,1) = deltainit(0,1);
mem(0,2) = meminit(0,2);
co(0,2) = coinit(0,2);
delta(0,2) = deltainit(0,2);
mem(0,3) = meminit(0,3);
co(0,3) = coinit(0,3);
delta(0,3) = deltainit(0,3);
mem(0,4) = meminit(0,4);
co(0,4) = coinit(0,4);
delta(0,4) = deltainit(0,4);
co(1,0) = 0;
delta(1,0) = -1;
mem(1,1) = meminit(1,1);
co(1,1) = coinit(1,1);
delta(1,1) = deltainit(1,1);
mem(1,2) = meminit(1,2);
co(1,2) = coinit(1,2);
delta(1,2) = deltainit(1,2);
mem(1,3) = meminit(1,3);
co(1,3) = coinit(1,3);
delta(1,3) = deltainit(1,3);
mem(1,4) = meminit(1,4);
co(1,4) = coinit(1,4);
delta(1,4) = deltainit(1,4);
co(2,0) = 0;
delta(2,0) = -1;
mem(2,1) = meminit(2,1);
co(2,1) = coinit(2,1);
delta(2,1) = deltainit(2,1);
mem(2,2) = meminit(2,2);
co(2,2) = coinit(2,2);
delta(2,2) = deltainit(2,2);
mem(2,3) = meminit(2,3);
co(2,3) = coinit(2,3);
delta(2,3) = deltainit(2,3);
mem(2,4) = meminit(2,4);
co(2,4) = coinit(2,4);
delta(2,4) = deltainit(2,4);
co(3,0) = 0;
delta(3,0) = -1;
mem(3,1) = meminit(3,1);
co(3,1) = coinit(3,1);
delta(3,1) = deltainit(3,1);
mem(3,2) = meminit(3,2);
co(3,2) = coinit(3,2);
delta(3,2) = deltainit(3,2);
mem(3,3) = meminit(3,3);
co(3,3) = coinit(3,3);
delta(3,3) = deltainit(3,3);
mem(3,4) = meminit(3,4);
co(3,4) = coinit(3,4);
delta(3,4) = deltainit(3,4);
co(4,0) = 0;
delta(4,0) = -1;
mem(4,1) = meminit(4,1);
co(4,1) = coinit(4,1);
delta(4,1) = deltainit(4,1);
mem(4,2) = meminit(4,2);
co(4,2) = coinit(4,2);
delta(4,2) = deltainit(4,2);
mem(4,3) = meminit(4,3);
co(4,3) = coinit(4,3);
delta(4,3) = deltainit(4,3);
mem(4,4) = meminit(4,4);
co(4,4) = coinit(4,4);
delta(4,4) = deltainit(4,4);
// Dumping thread 1
int ret_thread_1 = 0;
cdy[1] = get_rng(0,NCONTEXT-1);
ASSUME(cdy[1] >= cstart[1]);
T1BLOCK0:
// call void @llvm.dbg.value(metadata i8* %arg, metadata !36, metadata !DIExpression()), !dbg !45
// br label %label_1, !dbg !46
goto T1BLOCK1;
T1BLOCK1:
// call void @llvm.dbg.label(metadata !44), !dbg !47
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 0), metadata !37, metadata !DIExpression()), !dbg !48
// call void @llvm.dbg.value(metadata i64 2, metadata !40, metadata !DIExpression()), !dbg !48
// store atomic i64 2, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 0) monotonic, align 8, !dbg !49
// ST: Guess
iw(1,0) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STIW _l20_c3
old_cw = cw(1,0);
cw(1,0) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STCOM _l20_c3
// Check
ASSUME(active[iw(1,0)] == 1);
ASSUME(active[cw(1,0)] == 1);
ASSUME(sforbid(0,cw(1,0))== 0);
ASSUME(iw(1,0) >= 0);
ASSUME(iw(1,0) >= 0);
ASSUME(cw(1,0) >= iw(1,0));
ASSUME(cw(1,0) >= old_cw);
ASSUME(cw(1,0) >= cr(1,0));
ASSUME(cw(1,0) >= cl[1]);
ASSUME(cw(1,0) >= cisb[1]);
ASSUME(cw(1,0) >= cdy[1]);
ASSUME(cw(1,0) >= cdl[1]);
ASSUME(cw(1,0) >= cds[1]);
ASSUME(cw(1,0) >= cctrl[1]);
ASSUME(cw(1,0) >= caddr[1]);
// Update
caddr[1] = max(caddr[1],0);
buff(1,0) = 2;
mem(0,cw(1,0)) = 2;
co(0,cw(1,0))+=1;
delta(0,cw(1,0)) = -1;
ASSUME(creturn[1] >= cw(1,0));
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 1), metadata !41, metadata !DIExpression()), !dbg !50
// call void @llvm.dbg.value(metadata i64 1, metadata !43, metadata !DIExpression()), !dbg !50
// store atomic i64 1, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 1) monotonic, align 8, !dbg !51
// ST: Guess
iw(1,0+1*1) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STIW _l21_c3
old_cw = cw(1,0+1*1);
cw(1,0+1*1) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STCOM _l21_c3
// Check
ASSUME(active[iw(1,0+1*1)] == 1);
ASSUME(active[cw(1,0+1*1)] == 1);
ASSUME(sforbid(0+1*1,cw(1,0+1*1))== 0);
ASSUME(iw(1,0+1*1) >= 0);
ASSUME(iw(1,0+1*1) >= 0);
ASSUME(cw(1,0+1*1) >= iw(1,0+1*1));
ASSUME(cw(1,0+1*1) >= old_cw);
ASSUME(cw(1,0+1*1) >= cr(1,0+1*1));
ASSUME(cw(1,0+1*1) >= cl[1]);
ASSUME(cw(1,0+1*1) >= cisb[1]);
ASSUME(cw(1,0+1*1) >= cdy[1]);
ASSUME(cw(1,0+1*1) >= cdl[1]);
ASSUME(cw(1,0+1*1) >= cds[1]);
ASSUME(cw(1,0+1*1) >= cctrl[1]);
ASSUME(cw(1,0+1*1) >= caddr[1]);
// Update
caddr[1] = max(caddr[1],0);
buff(1,0+1*1) = 1;
mem(0+1*1,cw(1,0+1*1)) = 1;
co(0+1*1,cw(1,0+1*1))+=1;
delta(0+1*1,cw(1,0+1*1)) = -1;
ASSUME(creturn[1] >= cw(1,0+1*1));
// ret i8* null, !dbg !52
ret_thread_1 = (- 1);
goto T1BLOCK_END;
T1BLOCK_END:
// Dumping thread 2
int ret_thread_2 = 0;
cdy[2] = get_rng(0,NCONTEXT-1);
ASSUME(cdy[2] >= cstart[2]);
T2BLOCK0:
// call void @llvm.dbg.value(metadata i8* %arg, metadata !55, metadata !DIExpression()), !dbg !66
// br label %label_2, !dbg !49
goto T2BLOCK1;
T2BLOCK1:
// call void @llvm.dbg.label(metadata !64), !dbg !68
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 1), metadata !57, metadata !DIExpression()), !dbg !69
// %0 = load atomic i64, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 1) monotonic, align 8, !dbg !52
// LD: Guess
old_cr = cr(2,0+1*1);
cr(2,0+1*1) = get_rng(0,NCONTEXT-1);// 2 ASSIGN LDCOM _l27_c15
// Check
ASSUME(active[cr(2,0+1*1)] == 2);
ASSUME(cr(2,0+1*1) >= iw(2,0+1*1));
ASSUME(cr(2,0+1*1) >= 0);
ASSUME(cr(2,0+1*1) >= cdy[2]);
ASSUME(cr(2,0+1*1) >= cisb[2]);
ASSUME(cr(2,0+1*1) >= cdl[2]);
ASSUME(cr(2,0+1*1) >= cl[2]);
// Update
creg_r0 = cr(2,0+1*1);
crmax(2,0+1*1) = max(crmax(2,0+1*1),cr(2,0+1*1));
caddr[2] = max(caddr[2],0);
if(cr(2,0+1*1) < cw(2,0+1*1)) {
r0 = buff(2,0+1*1);
ASSUME((!(( (cw(2,0+1*1) < 1) && (1 < crmax(2,0+1*1)) )))||(sforbid(0+1*1,1)> 0));
ASSUME((!(( (cw(2,0+1*1) < 2) && (2 < crmax(2,0+1*1)) )))||(sforbid(0+1*1,2)> 0));
ASSUME((!(( (cw(2,0+1*1) < 3) && (3 < crmax(2,0+1*1)) )))||(sforbid(0+1*1,3)> 0));
ASSUME((!(( (cw(2,0+1*1) < 4) && (4 < crmax(2,0+1*1)) )))||(sforbid(0+1*1,4)> 0));
} else {
if(pw(2,0+1*1) != co(0+1*1,cr(2,0+1*1))) {
ASSUME(cr(2,0+1*1) >= old_cr);
}
pw(2,0+1*1) = co(0+1*1,cr(2,0+1*1));
r0 = mem(0+1*1,cr(2,0+1*1));
}
ASSUME(creturn[2] >= cr(2,0+1*1));
// call void @llvm.dbg.value(metadata i64 %0, metadata !59, metadata !DIExpression()), !dbg !69
// %conv = trunc i64 %0 to i32, !dbg !53
// call void @llvm.dbg.value(metadata i32 %conv, metadata !56, metadata !DIExpression()), !dbg !66
// %tobool = icmp ne i32 %conv, 0, !dbg !54
creg__r0__0_ = max(0,creg_r0);
// br i1 %tobool, label %if.then, label %if.else, !dbg !56
old_cctrl = cctrl[2];
cctrl[2] = get_rng(0,NCONTEXT-1);
ASSUME(cctrl[2] >= old_cctrl);
ASSUME(cctrl[2] >= creg__r0__0_);
if((r0!=0)) {
goto T2BLOCK2;
} else {
goto T2BLOCK3;
}
T2BLOCK2:
// br label %lbl_LC00, !dbg !57
goto T2BLOCK4;
T2BLOCK3:
// br label %lbl_LC00, !dbg !58
goto T2BLOCK4;
T2BLOCK4:
// call void @llvm.dbg.label(metadata !65), !dbg !77
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 2), metadata !60, metadata !DIExpression()), !dbg !78
// call void @llvm.dbg.value(metadata i64 1, metadata !62, metadata !DIExpression()), !dbg !78
// store atomic i64 1, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 2) monotonic, align 8, !dbg !61
// ST: Guess
iw(2,0+2*1) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STIW _l30_c3
old_cw = cw(2,0+2*1);
cw(2,0+2*1) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STCOM _l30_c3
// Check
ASSUME(active[iw(2,0+2*1)] == 2);
ASSUME(active[cw(2,0+2*1)] == 2);
ASSUME(sforbid(0+2*1,cw(2,0+2*1))== 0);
ASSUME(iw(2,0+2*1) >= 0);
ASSUME(iw(2,0+2*1) >= 0);
ASSUME(cw(2,0+2*1) >= iw(2,0+2*1));
ASSUME(cw(2,0+2*1) >= old_cw);
ASSUME(cw(2,0+2*1) >= cr(2,0+2*1));
ASSUME(cw(2,0+2*1) >= cl[2]);
ASSUME(cw(2,0+2*1) >= cisb[2]);
ASSUME(cw(2,0+2*1) >= cdy[2]);
ASSUME(cw(2,0+2*1) >= cdl[2]);
ASSUME(cw(2,0+2*1) >= cds[2]);
ASSUME(cw(2,0+2*1) >= cctrl[2]);
ASSUME(cw(2,0+2*1) >= caddr[2]);
// Update
caddr[2] = max(caddr[2],0);
buff(2,0+2*1) = 1;
mem(0+2*1,cw(2,0+2*1)) = 1;
co(0+2*1,cw(2,0+2*1))+=1;
delta(0+2*1,cw(2,0+2*1)) = -1;
ASSUME(creturn[2] >= cw(2,0+2*1));
// %cmp = icmp eq i32 %conv, 1, !dbg !62
creg__r0__1_ = max(0,creg_r0);
// %conv1 = zext i1 %cmp to i32, !dbg !62
// call void @llvm.dbg.value(metadata i32 %conv1, metadata !63, metadata !DIExpression()), !dbg !66
// store i32 %conv1, i32* @atom_1_X0_1, align 4, !dbg !63, !tbaa !64
// ST: Guess
iw(2,3) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STIW _l32_c15
old_cw = cw(2,3);
cw(2,3) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STCOM _l32_c15
// Check
ASSUME(active[iw(2,3)] == 2);
ASSUME(active[cw(2,3)] == 2);
ASSUME(sforbid(3,cw(2,3))== 0);
ASSUME(iw(2,3) >= creg__r0__1_);
ASSUME(iw(2,3) >= 0);
ASSUME(cw(2,3) >= iw(2,3));
ASSUME(cw(2,3) >= old_cw);
ASSUME(cw(2,3) >= cr(2,3));
ASSUME(cw(2,3) >= cl[2]);
ASSUME(cw(2,3) >= cisb[2]);
ASSUME(cw(2,3) >= cdy[2]);
ASSUME(cw(2,3) >= cdl[2]);
ASSUME(cw(2,3) >= cds[2]);
ASSUME(cw(2,3) >= cctrl[2]);
ASSUME(cw(2,3) >= caddr[2]);
// Update
caddr[2] = max(caddr[2],0);
buff(2,3) = (r0==1);
mem(3,cw(2,3)) = (r0==1);
co(3,cw(2,3))+=1;
delta(3,cw(2,3)) = -1;
ASSUME(creturn[2] >= cw(2,3));
// ret i8* null, !dbg !68
ret_thread_2 = (- 1);
goto T2BLOCK_END;
T2BLOCK_END:
// Dumping thread 3
int ret_thread_3 = 0;
cdy[3] = get_rng(0,NCONTEXT-1);
ASSUME(cdy[3] >= cstart[3]);
T3BLOCK0:
// call void @llvm.dbg.value(metadata i8* %arg, metadata !89, metadata !DIExpression()), !dbg !100
// br label %label_3, !dbg !49
goto T3BLOCK1;
T3BLOCK1:
// call void @llvm.dbg.label(metadata !99), !dbg !102
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 2), metadata !91, metadata !DIExpression()), !dbg !103
// %0 = load atomic i64, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 2) monotonic, align 8, !dbg !52
// LD: Guess
old_cr = cr(3,0+2*1);
cr(3,0+2*1) = get_rng(0,NCONTEXT-1);// 3 ASSIGN LDCOM _l38_c15
// Check
ASSUME(active[cr(3,0+2*1)] == 3);
ASSUME(cr(3,0+2*1) >= iw(3,0+2*1));
ASSUME(cr(3,0+2*1) >= 0);
ASSUME(cr(3,0+2*1) >= cdy[3]);
ASSUME(cr(3,0+2*1) >= cisb[3]);
ASSUME(cr(3,0+2*1) >= cdl[3]);
ASSUME(cr(3,0+2*1) >= cl[3]);
// Update
creg_r1 = cr(3,0+2*1);
crmax(3,0+2*1) = max(crmax(3,0+2*1),cr(3,0+2*1));
caddr[3] = max(caddr[3],0);
if(cr(3,0+2*1) < cw(3,0+2*1)) {
r1 = buff(3,0+2*1);
ASSUME((!(( (cw(3,0+2*1) < 1) && (1 < crmax(3,0+2*1)) )))||(sforbid(0+2*1,1)> 0));
ASSUME((!(( (cw(3,0+2*1) < 2) && (2 < crmax(3,0+2*1)) )))||(sforbid(0+2*1,2)> 0));
ASSUME((!(( (cw(3,0+2*1) < 3) && (3 < crmax(3,0+2*1)) )))||(sforbid(0+2*1,3)> 0));
ASSUME((!(( (cw(3,0+2*1) < 4) && (4 < crmax(3,0+2*1)) )))||(sforbid(0+2*1,4)> 0));
} else {
if(pw(3,0+2*1) != co(0+2*1,cr(3,0+2*1))) {
ASSUME(cr(3,0+2*1) >= old_cr);
}
pw(3,0+2*1) = co(0+2*1,cr(3,0+2*1));
r1 = mem(0+2*1,cr(3,0+2*1));
}
ASSUME(creturn[3] >= cr(3,0+2*1));
// call void @llvm.dbg.value(metadata i64 %0, metadata !93, metadata !DIExpression()), !dbg !103
// %conv = trunc i64 %0 to i32, !dbg !53
// call void @llvm.dbg.value(metadata i32 %conv, metadata !90, metadata !DIExpression()), !dbg !100
// %xor = xor i32 %conv, %conv, !dbg !54
creg_r2 = creg_r1;
r2 = r1 ^ r1;
// call void @llvm.dbg.value(metadata i32 %xor, metadata !94, metadata !DIExpression()), !dbg !100
// %add = add nsw i32 0, %xor, !dbg !55
creg_r3 = max(0,creg_r2);
r3 = 0 + r2;
// %idxprom = sext i32 %add to i64, !dbg !55
// %arrayidx = getelementptr inbounds [3 x i64], [3 x i64]* @vars, i64 0, i64 %idxprom, !dbg !55
r4 = 0+r3*1;
creg_r4 = creg_r3;
// call void @llvm.dbg.value(metadata i64* %arrayidx, metadata !95, metadata !DIExpression()), !dbg !108
// call void @llvm.dbg.value(metadata i64 1, metadata !97, metadata !DIExpression()), !dbg !108
// store atomic i64 1, i64* %arrayidx monotonic, align 8, !dbg !55
// ST: Guess
iw(3,r4) = get_rng(0,NCONTEXT-1);// 3 ASSIGN STIW _l40_c3
old_cw = cw(3,r4);
cw(3,r4) = get_rng(0,NCONTEXT-1);// 3 ASSIGN STCOM _l40_c3
// Check
ASSUME(active[iw(3,r4)] == 3);
ASSUME(active[cw(3,r4)] == 3);
ASSUME(sforbid(r4,cw(3,r4))== 0);
ASSUME(iw(3,r4) >= 0);
ASSUME(iw(3,r4) >= creg_r4);
ASSUME(cw(3,r4) >= iw(3,r4));
ASSUME(cw(3,r4) >= old_cw);
ASSUME(cw(3,r4) >= cr(3,r4));
ASSUME(cw(3,r4) >= cl[3]);
ASSUME(cw(3,r4) >= cisb[3]);
ASSUME(cw(3,r4) >= cdy[3]);
ASSUME(cw(3,r4) >= cdl[3]);
ASSUME(cw(3,r4) >= cds[3]);
ASSUME(cw(3,r4) >= cctrl[3]);
ASSUME(cw(3,r4) >= caddr[3]);
// Update
caddr[3] = max(caddr[3],creg_r4);
buff(3,r4) = 1;
mem(r4,cw(3,r4)) = 1;
co(r4,cw(3,r4))+=1;
delta(r4,cw(3,r4)) = -1;
ASSUME(creturn[3] >= cw(3,r4));
// %cmp = icmp eq i32 %conv, 1, !dbg !57
creg__r1__1_ = max(0,creg_r1);
// %conv1 = zext i1 %cmp to i32, !dbg !57
// call void @llvm.dbg.value(metadata i32 %conv1, metadata !98, metadata !DIExpression()), !dbg !100
// store i32 %conv1, i32* @atom_2_X0_1, align 4, !dbg !58, !tbaa !59
// ST: Guess
iw(3,4) = get_rng(0,NCONTEXT-1);// 3 ASSIGN STIW _l42_c15
old_cw = cw(3,4);
cw(3,4) = get_rng(0,NCONTEXT-1);// 3 ASSIGN STCOM _l42_c15
// Check
ASSUME(active[iw(3,4)] == 3);
ASSUME(active[cw(3,4)] == 3);
ASSUME(sforbid(4,cw(3,4))== 0);
ASSUME(iw(3,4) >= creg__r1__1_);
ASSUME(iw(3,4) >= 0);
ASSUME(cw(3,4) >= iw(3,4));
ASSUME(cw(3,4) >= old_cw);
ASSUME(cw(3,4) >= cr(3,4));
ASSUME(cw(3,4) >= cl[3]);
ASSUME(cw(3,4) >= cisb[3]);
ASSUME(cw(3,4) >= cdy[3]);
ASSUME(cw(3,4) >= cdl[3]);
ASSUME(cw(3,4) >= cds[3]);
ASSUME(cw(3,4) >= cctrl[3]);
ASSUME(cw(3,4) >= caddr[3]);
// Update
caddr[3] = max(caddr[3],0);
buff(3,4) = (r1==1);
mem(4,cw(3,4)) = (r1==1);
co(4,cw(3,4))+=1;
delta(4,cw(3,4)) = -1;
ASSUME(creturn[3] >= cw(3,4));
// ret i8* null, !dbg !63
ret_thread_3 = (- 1);
goto T3BLOCK_END;
T3BLOCK_END:
// Dumping thread 0
int ret_thread_0 = 0;
cdy[0] = get_rng(0,NCONTEXT-1);
ASSUME(cdy[0] >= cstart[0]);
T0BLOCK0:
// %thr0 = alloca i64, align 8
// %thr1 = alloca i64, align 8
// %thr2 = alloca i64, align 8
// call void @llvm.dbg.value(metadata i32 %argc, metadata !119, metadata !DIExpression()), !dbg !145
// call void @llvm.dbg.value(metadata i8** %argv, metadata !120, metadata !DIExpression()), !dbg !145
// %0 = bitcast i64* %thr0 to i8*, !dbg !67
// call void @llvm.lifetime.start.p0i8(i64 8, i8* %0) #7, !dbg !67
// call void @llvm.dbg.declare(metadata i64* %thr0, metadata !121, metadata !DIExpression()), !dbg !147
// %1 = bitcast i64* %thr1 to i8*, !dbg !69
// call void @llvm.lifetime.start.p0i8(i64 8, i8* %1) #7, !dbg !69
// call void @llvm.dbg.declare(metadata i64* %thr1, metadata !125, metadata !DIExpression()), !dbg !149
// %2 = bitcast i64* %thr2 to i8*, !dbg !71
// call void @llvm.lifetime.start.p0i8(i64 8, i8* %2) #7, !dbg !71
// call void @llvm.dbg.declare(metadata i64* %thr2, metadata !126, metadata !DIExpression()), !dbg !151
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 2), metadata !127, metadata !DIExpression()), !dbg !152
// call void @llvm.dbg.value(metadata i64 0, metadata !129, metadata !DIExpression()), !dbg !152
// store atomic i64 0, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 2) monotonic, align 8, !dbg !74
// ST: Guess
iw(0,0+2*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l51_c3
old_cw = cw(0,0+2*1);
cw(0,0+2*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l51_c3
// Check
ASSUME(active[iw(0,0+2*1)] == 0);
ASSUME(active[cw(0,0+2*1)] == 0);
ASSUME(sforbid(0+2*1,cw(0,0+2*1))== 0);
ASSUME(iw(0,0+2*1) >= 0);
ASSUME(iw(0,0+2*1) >= 0);
ASSUME(cw(0,0+2*1) >= iw(0,0+2*1));
ASSUME(cw(0,0+2*1) >= old_cw);
ASSUME(cw(0,0+2*1) >= cr(0,0+2*1));
ASSUME(cw(0,0+2*1) >= cl[0]);
ASSUME(cw(0,0+2*1) >= cisb[0]);
ASSUME(cw(0,0+2*1) >= cdy[0]);
ASSUME(cw(0,0+2*1) >= cdl[0]);
ASSUME(cw(0,0+2*1) >= cds[0]);
ASSUME(cw(0,0+2*1) >= cctrl[0]);
ASSUME(cw(0,0+2*1) >= caddr[0]);
// Update
caddr[0] = max(caddr[0],0);
buff(0,0+2*1) = 0;
mem(0+2*1,cw(0,0+2*1)) = 0;
co(0+2*1,cw(0,0+2*1))+=1;
delta(0+2*1,cw(0,0+2*1)) = -1;
ASSUME(creturn[0] >= cw(0,0+2*1));
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 1), metadata !130, metadata !DIExpression()), !dbg !154
// call void @llvm.dbg.value(metadata i64 0, metadata !132, metadata !DIExpression()), !dbg !154
// store atomic i64 0, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 1) monotonic, align 8, !dbg !76
// ST: Guess
iw(0,0+1*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l52_c3
old_cw = cw(0,0+1*1);
cw(0,0+1*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l52_c3
// Check
ASSUME(active[iw(0,0+1*1)] == 0);
ASSUME(active[cw(0,0+1*1)] == 0);
ASSUME(sforbid(0+1*1,cw(0,0+1*1))== 0);
ASSUME(iw(0,0+1*1) >= 0);
ASSUME(iw(0,0+1*1) >= 0);
ASSUME(cw(0,0+1*1) >= iw(0,0+1*1));
ASSUME(cw(0,0+1*1) >= old_cw);
ASSUME(cw(0,0+1*1) >= cr(0,0+1*1));
ASSUME(cw(0,0+1*1) >= cl[0]);
ASSUME(cw(0,0+1*1) >= cisb[0]);
ASSUME(cw(0,0+1*1) >= cdy[0]);
ASSUME(cw(0,0+1*1) >= cdl[0]);
ASSUME(cw(0,0+1*1) >= cds[0]);
ASSUME(cw(0,0+1*1) >= cctrl[0]);
ASSUME(cw(0,0+1*1) >= caddr[0]);
// Update
caddr[0] = max(caddr[0],0);
buff(0,0+1*1) = 0;
mem(0+1*1,cw(0,0+1*1)) = 0;
co(0+1*1,cw(0,0+1*1))+=1;
delta(0+1*1,cw(0,0+1*1)) = -1;
ASSUME(creturn[0] >= cw(0,0+1*1));
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 0), metadata !133, metadata !DIExpression()), !dbg !156
// call void @llvm.dbg.value(metadata i64 0, metadata !135, metadata !DIExpression()), !dbg !156
// store atomic i64 0, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 0) monotonic, align 8, !dbg !78
// ST: Guess
iw(0,0) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l53_c3
old_cw = cw(0,0);
cw(0,0) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l53_c3
// Check
ASSUME(active[iw(0,0)] == 0);
ASSUME(active[cw(0,0)] == 0);
ASSUME(sforbid(0,cw(0,0))== 0);
ASSUME(iw(0,0) >= 0);
ASSUME(iw(0,0) >= 0);
ASSUME(cw(0,0) >= iw(0,0));
ASSUME(cw(0,0) >= old_cw);
ASSUME(cw(0,0) >= cr(0,0));
ASSUME(cw(0,0) >= cl[0]);
ASSUME(cw(0,0) >= cisb[0]);
ASSUME(cw(0,0) >= cdy[0]);
ASSUME(cw(0,0) >= cdl[0]);
ASSUME(cw(0,0) >= cds[0]);
ASSUME(cw(0,0) >= cctrl[0]);
ASSUME(cw(0,0) >= caddr[0]);
// Update
caddr[0] = max(caddr[0],0);
buff(0,0) = 0;
mem(0,cw(0,0)) = 0;
co(0,cw(0,0))+=1;
delta(0,cw(0,0)) = -1;
ASSUME(creturn[0] >= cw(0,0));
// store i32 0, i32* @atom_1_X0_1, align 4, !dbg !79, !tbaa !80
// ST: Guess
iw(0,3) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l54_c15
old_cw = cw(0,3);
cw(0,3) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l54_c15
// Check
ASSUME(active[iw(0,3)] == 0);
ASSUME(active[cw(0,3)] == 0);
ASSUME(sforbid(3,cw(0,3))== 0);
ASSUME(iw(0,3) >= 0);
ASSUME(iw(0,3) >= 0);
ASSUME(cw(0,3) >= iw(0,3));
ASSUME(cw(0,3) >= old_cw);
ASSUME(cw(0,3) >= cr(0,3));
ASSUME(cw(0,3) >= cl[0]);
ASSUME(cw(0,3) >= cisb[0]);
ASSUME(cw(0,3) >= cdy[0]);
ASSUME(cw(0,3) >= cdl[0]);
ASSUME(cw(0,3) >= cds[0]);
ASSUME(cw(0,3) >= cctrl[0]);
ASSUME(cw(0,3) >= caddr[0]);
// Update
caddr[0] = max(caddr[0],0);
buff(0,3) = 0;
mem(3,cw(0,3)) = 0;
co(3,cw(0,3))+=1;
delta(3,cw(0,3)) = -1;
ASSUME(creturn[0] >= cw(0,3));
// store i32 0, i32* @atom_2_X0_1, align 4, !dbg !84, !tbaa !80
// ST: Guess
iw(0,4) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l55_c15
old_cw = cw(0,4);
cw(0,4) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l55_c15
// Check
ASSUME(active[iw(0,4)] == 0);
ASSUME(active[cw(0,4)] == 0);
ASSUME(sforbid(4,cw(0,4))== 0);
ASSUME(iw(0,4) >= 0);
ASSUME(iw(0,4) >= 0);
ASSUME(cw(0,4) >= iw(0,4));
ASSUME(cw(0,4) >= old_cw);
ASSUME(cw(0,4) >= cr(0,4));
ASSUME(cw(0,4) >= cl[0]);
ASSUME(cw(0,4) >= cisb[0]);
ASSUME(cw(0,4) >= cdy[0]);
ASSUME(cw(0,4) >= cdl[0]);
ASSUME(cw(0,4) >= cds[0]);
ASSUME(cw(0,4) >= cctrl[0]);
ASSUME(cw(0,4) >= caddr[0]);
// Update
caddr[0] = max(caddr[0],0);
buff(0,4) = 0;
mem(4,cw(0,4)) = 0;
co(4,cw(0,4))+=1;
delta(4,cw(0,4)) = -1;
ASSUME(creturn[0] >= cw(0,4));
// %call = call i32 @pthread_create(i64* noundef %thr0, %union.pthread_attr_t* noundef null, i8* (i8*)* noundef @t0, i8* noundef null) #7, !dbg !85
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,0+2));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,0+2));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cstart[1] >= cdy[0]);
// %call5 = call i32 @pthread_create(i64* noundef %thr1, %union.pthread_attr_t* noundef null, i8* (i8*)* noundef @t1, i8* noundef null) #7, !dbg !86
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,0+2));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,0+2));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cstart[2] >= cdy[0]);
// %call6 = call i32 @pthread_create(i64* noundef %thr2, %union.pthread_attr_t* noundef null, i8* (i8*)* noundef @t2, i8* noundef null) #7, !dbg !87
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,0+2));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,0+2));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cstart[3] >= cdy[0]);
// %3 = load i64, i64* %thr0, align 8, !dbg !88, !tbaa !89
r6 = local_mem[0];
// %call7 = call i32 @pthread_join(i64 noundef %3, i8** noundef null), !dbg !91
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,0+2));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,0+2));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cdy[0] >= creturn[1]);
// %4 = load i64, i64* %thr1, align 8, !dbg !92, !tbaa !89
r7 = local_mem[1];
// %call8 = call i32 @pthread_join(i64 noundef %4, i8** noundef null), !dbg !93
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,0+2));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,0+2));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cdy[0] >= creturn[2]);
// %5 = load i64, i64* %thr2, align 8, !dbg !94, !tbaa !89
r8 = local_mem[2];
// %call9 = call i32 @pthread_join(i64 noundef %5, i8** noundef null), !dbg !95
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,0+2));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,0+2));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cdy[0] >= creturn[3]);
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 0), metadata !137, metadata !DIExpression()), !dbg !171
// %6 = load atomic i64, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 0) monotonic, align 8, !dbg !97
// LD: Guess
old_cr = cr(0,0);
cr(0,0) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM _l65_c12
// Check
ASSUME(active[cr(0,0)] == 0);
ASSUME(cr(0,0) >= iw(0,0));
ASSUME(cr(0,0) >= 0);
ASSUME(cr(0,0) >= cdy[0]);
ASSUME(cr(0,0) >= cisb[0]);
ASSUME(cr(0,0) >= cdl[0]);
ASSUME(cr(0,0) >= cl[0]);
// Update
creg_r9 = cr(0,0);
crmax(0,0) = max(crmax(0,0),cr(0,0));
caddr[0] = max(caddr[0],0);
if(cr(0,0) < cw(0,0)) {
r9 = buff(0,0);
ASSUME((!(( (cw(0,0) < 1) && (1 < crmax(0,0)) )))||(sforbid(0,1)> 0));
ASSUME((!(( (cw(0,0) < 2) && (2 < crmax(0,0)) )))||(sforbid(0,2)> 0));
ASSUME((!(( (cw(0,0) < 3) && (3 < crmax(0,0)) )))||(sforbid(0,3)> 0));
ASSUME((!(( (cw(0,0) < 4) && (4 < crmax(0,0)) )))||(sforbid(0,4)> 0));
} else {
if(pw(0,0) != co(0,cr(0,0))) {
ASSUME(cr(0,0) >= old_cr);
}
pw(0,0) = co(0,cr(0,0));
r9 = mem(0,cr(0,0));
}
ASSUME(creturn[0] >= cr(0,0));
// call void @llvm.dbg.value(metadata i64 %6, metadata !139, metadata !DIExpression()), !dbg !171
// %conv = trunc i64 %6 to i32, !dbg !98
// call void @llvm.dbg.value(metadata i32 %conv, metadata !136, metadata !DIExpression()), !dbg !145
// %cmp = icmp eq i32 %conv, 2, !dbg !99
creg__r9__2_ = max(0,creg_r9);
// %conv10 = zext i1 %cmp to i32, !dbg !99
// call void @llvm.dbg.value(metadata i32 %conv10, metadata !140, metadata !DIExpression()), !dbg !145
// %7 = load i32, i32* @atom_1_X0_1, align 4, !dbg !100, !tbaa !80
// LD: Guess
old_cr = cr(0,3);
cr(0,3) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM _l67_c13
// Check
ASSUME(active[cr(0,3)] == 0);
ASSUME(cr(0,3) >= iw(0,3));
ASSUME(cr(0,3) >= 0);
ASSUME(cr(0,3) >= cdy[0]);
ASSUME(cr(0,3) >= cisb[0]);
ASSUME(cr(0,3) >= cdl[0]);
ASSUME(cr(0,3) >= cl[0]);
// Update
creg_r10 = cr(0,3);
crmax(0,3) = max(crmax(0,3),cr(0,3));
caddr[0] = max(caddr[0],0);
if(cr(0,3) < cw(0,3)) {
r10 = buff(0,3);
ASSUME((!(( (cw(0,3) < 1) && (1 < crmax(0,3)) )))||(sforbid(3,1)> 0));
ASSUME((!(( (cw(0,3) < 2) && (2 < crmax(0,3)) )))||(sforbid(3,2)> 0));
ASSUME((!(( (cw(0,3) < 3) && (3 < crmax(0,3)) )))||(sforbid(3,3)> 0));
ASSUME((!(( (cw(0,3) < 4) && (4 < crmax(0,3)) )))||(sforbid(3,4)> 0));
} else {
if(pw(0,3) != co(3,cr(0,3))) {
ASSUME(cr(0,3) >= old_cr);
}
pw(0,3) = co(3,cr(0,3));
r10 = mem(3,cr(0,3));
}
ASSUME(creturn[0] >= cr(0,3));
// call void @llvm.dbg.value(metadata i32 %7, metadata !141, metadata !DIExpression()), !dbg !145
// %8 = load i32, i32* @atom_2_X0_1, align 4, !dbg !101, !tbaa !80
// LD: Guess
old_cr = cr(0,4);
cr(0,4) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM _l68_c13
// Check
ASSUME(active[cr(0,4)] == 0);
ASSUME(cr(0,4) >= iw(0,4));
ASSUME(cr(0,4) >= 0);
ASSUME(cr(0,4) >= cdy[0]);
ASSUME(cr(0,4) >= cisb[0]);
ASSUME(cr(0,4) >= cdl[0]);
ASSUME(cr(0,4) >= cl[0]);
// Update
creg_r11 = cr(0,4);
crmax(0,4) = max(crmax(0,4),cr(0,4));
caddr[0] = max(caddr[0],0);
if(cr(0,4) < cw(0,4)) {
r11 = buff(0,4);
ASSUME((!(( (cw(0,4) < 1) && (1 < crmax(0,4)) )))||(sforbid(4,1)> 0));
ASSUME((!(( (cw(0,4) < 2) && (2 < crmax(0,4)) )))||(sforbid(4,2)> 0));
ASSUME((!(( (cw(0,4) < 3) && (3 < crmax(0,4)) )))||(sforbid(4,3)> 0));
ASSUME((!(( (cw(0,4) < 4) && (4 < crmax(0,4)) )))||(sforbid(4,4)> 0));
} else {
if(pw(0,4) != co(4,cr(0,4))) {
ASSUME(cr(0,4) >= old_cr);
}
pw(0,4) = co(4,cr(0,4));
r11 = mem(4,cr(0,4));
}
ASSUME(creturn[0] >= cr(0,4));
// call void @llvm.dbg.value(metadata i32 %8, metadata !142, metadata !DIExpression()), !dbg !145
// %and = and i32 %7, %8, !dbg !102
creg_r12 = max(creg_r10,creg_r11);
r12 = r10 & r11;
// call void @llvm.dbg.value(metadata i32 %and, metadata !143, metadata !DIExpression()), !dbg !145
// %and11 = and i32 %conv10, %and, !dbg !103
creg_r13 = max(creg__r9__2_,creg_r12);
r13 = (r9==2) & r12;
// call void @llvm.dbg.value(metadata i32 %and11, metadata !144, metadata !DIExpression()), !dbg !145
// %cmp12 = icmp eq i32 %and11, 1, !dbg !104
creg__r13__1_ = max(0,creg_r13);
// br i1 %cmp12, label %if.then, label %if.end, !dbg !106
old_cctrl = cctrl[0];
cctrl[0] = get_rng(0,NCONTEXT-1);
ASSUME(cctrl[0] >= old_cctrl);
ASSUME(cctrl[0] >= creg__r13__1_);
if((r13==1)) {
goto T0BLOCK1;
} else {
goto T0BLOCK2;
}
T0BLOCK1:
// call void @__assert_fail(i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0), i8* noundef getelementptr inbounds ([102 x i8], [102 x i8]* @.str.1, i64 0, i64 0), i32 noundef 71, i8* noundef getelementptr inbounds ([23 x i8], [23 x i8]* @__PRETTY_FUNCTION__.main, i64 0, i64 0)) #8, !dbg !107
// unreachable, !dbg !107
r14 = 1;
goto T0BLOCK_END;
T0BLOCK2:
// %9 = bitcast i64* %thr2 to i8*, !dbg !110
// call void @llvm.lifetime.end.p0i8(i64 8, i8* %9) #7, !dbg !110
// %10 = bitcast i64* %thr1 to i8*, !dbg !110
// call void @llvm.lifetime.end.p0i8(i64 8, i8* %10) #7, !dbg !110
// %11 = bitcast i64* %thr0 to i8*, !dbg !110
// call void @llvm.lifetime.end.p0i8(i64 8, i8* %11) #7, !dbg !110
// ret i32 0, !dbg !111
ret_thread_0 = 0;
goto T0BLOCK_END;
T0BLOCK_END:
ASSUME(meminit(0,1) == mem(0,0));
ASSUME(coinit(0,1) == co(0,0));
ASSUME(deltainit(0,1) == delta(0,0));
ASSUME(meminit(0,2) == mem(0,1));
ASSUME(coinit(0,2) == co(0,1));
ASSUME(deltainit(0,2) == delta(0,1));
ASSUME(meminit(0,3) == mem(0,2));
ASSUME(coinit(0,3) == co(0,2));
ASSUME(deltainit(0,3) == delta(0,2));
ASSUME(meminit(0,4) == mem(0,3));
ASSUME(coinit(0,4) == co(0,3));
ASSUME(deltainit(0,4) == delta(0,3));
ASSUME(meminit(1,1) == mem(1,0));
ASSUME(coinit(1,1) == co(1,0));
ASSUME(deltainit(1,1) == delta(1,0));
ASSUME(meminit(1,2) == mem(1,1));
ASSUME(coinit(1,2) == co(1,1));
ASSUME(deltainit(1,2) == delta(1,1));
ASSUME(meminit(1,3) == mem(1,2));
ASSUME(coinit(1,3) == co(1,2));
ASSUME(deltainit(1,3) == delta(1,2));
ASSUME(meminit(1,4) == mem(1,3));
ASSUME(coinit(1,4) == co(1,3));
ASSUME(deltainit(1,4) == delta(1,3));
ASSUME(meminit(2,1) == mem(2,0));
ASSUME(coinit(2,1) == co(2,0));
ASSUME(deltainit(2,1) == delta(2,0));
ASSUME(meminit(2,2) == mem(2,1));
ASSUME(coinit(2,2) == co(2,1));
ASSUME(deltainit(2,2) == delta(2,1));
ASSUME(meminit(2,3) == mem(2,2));
ASSUME(coinit(2,3) == co(2,2));
ASSUME(deltainit(2,3) == delta(2,2));
ASSUME(meminit(2,4) == mem(2,3));
ASSUME(coinit(2,4) == co(2,3));
ASSUME(deltainit(2,4) == delta(2,3));
ASSUME(meminit(3,1) == mem(3,0));
ASSUME(coinit(3,1) == co(3,0));
ASSUME(deltainit(3,1) == delta(3,0));
ASSUME(meminit(3,2) == mem(3,1));
ASSUME(coinit(3,2) == co(3,1));
ASSUME(deltainit(3,2) == delta(3,1));
ASSUME(meminit(3,3) == mem(3,2));
ASSUME(coinit(3,3) == co(3,2));
ASSUME(deltainit(3,3) == delta(3,2));
ASSUME(meminit(3,4) == mem(3,3));
ASSUME(coinit(3,4) == co(3,3));
ASSUME(deltainit(3,4) == delta(3,3));
ASSUME(meminit(4,1) == mem(4,0));
ASSUME(coinit(4,1) == co(4,0));
ASSUME(deltainit(4,1) == delta(4,0));
ASSUME(meminit(4,2) == mem(4,1));
ASSUME(coinit(4,2) == co(4,1));
ASSUME(deltainit(4,2) == delta(4,1));
ASSUME(meminit(4,3) == mem(4,2));
ASSUME(coinit(4,3) == co(4,2));
ASSUME(deltainit(4,3) == delta(4,2));
ASSUME(meminit(4,4) == mem(4,3));
ASSUME(coinit(4,4) == co(4,3));
ASSUME(deltainit(4,4) == delta(4,3));
ASSERT(r14== 0);
}
| [
"tuan-phong.ngo@it.uu.se"
] | tuan-phong.ngo@it.uu.se |
701c618898b554bb58ee30790353bb3a7bf9fe29 | fc9c8f067687602e7b14a9ceb4e1cc32f094d973 | /Example/03_MySecondTriangle_DrawElement.cpp | 95e86b9a9b0202acb949685d007852de20d71802 | [] | no_license | sunshineheader/OpenGLStudy | 6303de0b4b94300945c0ba49be18e83455384664 | 4b097754bf8adfd6fa9a113807c3c680e46b2567 | refs/heads/master | 2020-04-05T23:26:18.971156 | 2015-10-30T02:51:14 | 2015-10-30T02:51:14 | 41,908,347 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 4,044 | cpp | #include "GL\glew.h"
#include "GL\freeglut.h"
#include <iostream>
#include <fstream>
using namespace std;
static int window_position_x = 50;
static int window_position_y = 40;
static int window_width = 1000;
static int window_height = 618;
// 声明一个 VBO
static GLuint VertexBufferID;
// 声明一个 IBO
static GLuint IndexBufferID;
void MyInitializeOpenGL();
// draw function
void MyRenderWindow();
void MyResizeWindow(GLsizei width,GLsizei height);
void MyCloseWindow();
// data
void SendDataToOpenGL();
int main(int argc,char*argv[])
{
// 初始化 glut库
glutInit(&argc, argv);
// 初始化显示模式 深度缓冲 颜色缓冲
glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGBA);
// 强制要一个 0penGL 版本
glutInitContextVersion(4,2);
/*指定是否向后兼容
*声明了想要使用的OpenGL渲染环境的类型。对于常规的OpenGL操作,
*可以在自己的程序中省略这一调用,然而,如果想要使用向前兼容的OpenGL渲染环境,需要调用这一函数
*/
glutInitContextFlags(GLUT_CORE_PROFILE | GLUT_DEBUG);
// 指定profile是否core的.
glutInitContextProfile(GLUT_FORWARD_COMPATIBLE);
glutInitWindowPosition(window_position_x, window_position_y);
glutInitWindowSize(window_width, window_height);
glutCreateWindow("MyOpenGLWindow");
// 初始化 glew 库
GLenum err=glewInit();
if (GLEW_OK!=err)
{
std::cout << "Error !" << glGetString(err) << std::endl;
} else {
if (GL_VERSION_4_2 )
{
std::cout << "Dirve is support GL_VERSION_4_2 " << std::endl;
}
}
std::cout << "Using glew is " << glewGetString(GLEW_VERSION) << std::endl;
std::cout << "Vendor is " << glGetString(GL_VENDOR) << std::endl;
std::cout << "Renderer is " << glGetString(GL_RENDERER) << std::endl;
std::cout << "Version is " << glGetString(GL_VERSION) << std::endl;
std::cout << "GLSL Version is" << glGetString(GL_SHADING_LANGUAGE_VERSION) << std::endl;
MyInitializeOpenGL();
glutDisplayFunc(&MyRenderWindow);
glutReshapeFunc(&MyResizeWindow);
glutCloseFunc(&MyCloseWindow);
// 循环
glutMainLoop();
return 0;
}
void MyInitializeOpenGL()
{
glClearColor(0.0f, 0.0f, 0.0f, 0.0f);
std::cout << "MyInitializeOpenGL() is successful !" << std::endl;
SendDataToOpenGL();
}
// draw function
void MyRenderWindow()
{
// 清除 颜色缓冲 深度缓冲
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
//glDrawArrays(GL_TRIANGLES, 0, 3);
glDrawElements(GL_POINT_BIT, 3, GL_UNSIGNED_INT, nullptr);
//glDrawElements(GL_LINE_BIT, 3, GL_UNSIGNED_INT, nullptr);
//glDrawElements(GL_TRIANGLES, 3, GL_UNSIGNED_INT, nullptr);
glutSwapBuffers();
}
void MyResizeWindow(GLsizei width, GLsizei height)
{
glViewport(0, 0, width, height);
std::cout << "MyResizeWindow() is successful !" << std::endl;
//std::cout << "MyOpenGLWindow width is " << width <<" "<< "MyOpenGLWindow height is " << height << std::endl;
}
void MyCloseWindow()
{
std::cout << "MyCloseWindow() is successful !" << std::endl;
}
// data
void SendDataToOpenGL()
{
GLfloat VertexArray[] =
{
+0.0f, +0.5f, +0.0f,
-0.5f, -0.5f, +0.0f,
+0.5f, -0.5f, +0.0f
};
GLuint IndexAyyay[] =
{
0, 1, 2
};
glGenBuffers(1, &VertexBufferID);
glBindBuffer(GL_ARRAY_BUFFER, VertexBufferID);
glBufferData(GL_ARRAY_BUFFER, sizeof(VertexArray), VertexArray, GL_STATIC_DRAW);
glEnableVertexAttribArray(0);
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, sizeof(GLfloat) * 3, 0);
glGenBuffers(1, &IndexBufferID);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, IndexBufferID);
glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(IndexAyyay), IndexAyyay, GL_STATIC_DRAW);
glEnableVertexAttribArray(1);
/* 打开属性数组
* 1 表示对应的属性数组
* 3 表示每次读几个点
* GL_FLOAT 表示的是数据类型
* GL_FALSE 表示是否正规化
* sizeof(GLfloat) * 3 每次读的点的大小 (步长)
* (char*)(sizeof(GLfloat) * 3 下次读取的起点 */
glVertexAttribPointer(1, 3, GL_FLOAT, GL_FALSE, sizeof(GLfloat) * 3, (char*)(sizeof(GLfloat) * 3));
} | [
"sunshineheader@gmail.com"
] | sunshineheader@gmail.com |
c3d76b46c990737171485d133f51b069bae88653 | bb82a5f977bef455714c16e24e2d8254e2d0faa5 | /src/vendor/cget/include/asio/associated_executor.hpp | e97c99a34d2018b6678816e9fe61380d3c397fb6 | [
"Unlicense"
] | permissive | pqrs-org/Karabiner-Elements | 4ae307d82f8b67547c161c7d46d2083a0fd07630 | d05057d7c769e2ff35638282e888a6d5eca566be | refs/heads/main | 2023-09-01T03:11:08.474417 | 2023-09-01T00:44:19 | 2023-09-01T00:44:19 | 63,037,806 | 8,197 | 389 | Unlicense | 2023-09-01T00:11:00 | 2016-07-11T04:57:55 | C++ | UTF-8 | C++ | false | false | 79 | hpp | ../../cget/pkg/chriskohlhoff__asio/install/include/asio/associated_executor.hpp | [
"tekezo@pqrs.org"
] | tekezo@pqrs.org |
3110c9551668fa7adb9d41249fd79e7ddc3572c9 | a9e21ca602d55752b508f3ea74def22372d03776 | /GAero/OF/NACABCN/100/k | 8a48469a2e9dbe2bae05a2b939e4b5b405c7ff07 | [] | no_license | kiranhegde/GAero | 754724e355fa5fd7f8aef5b5faf02080d9728c9c | e8055cb1fdf79b1135a1d28606dfcd6037e9bb87 | refs/heads/master | 2021-01-13T16:40:50.684565 | 2014-06-23T21:37:03 | 2014-06-23T21:37:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 314,073 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.3.0 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "100";
object k;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -2 0 0 0 0];
internalField nonuniform List<scalar>
28552
(
0.00410028
0.00410286
0.00410579
0.00410913
0.004113
0.00411752
0.00412284
0.00412919
0.00413686
0.00414626
0.00415797
0.00417282
0.00419206
0.00421791
0.00424978
0.00428933
0.00433866
0.0044005
0.00447851
0.00457759
0.00470471
0.00486926
0.0050868
0.00537543
0.00578362
0.00631052
0.00703203
0.00743717
0.00873335
0.0100331
0.0142431
0.0244383
0.0357071
0.040429
0.00410211
0.00410488
0.00410799
0.00411153
0.00411562
0.00412041
0.00412604
0.00413277
0.00414089
0.00415084
0.00416322
0.00417892
0.00419925
0.00422652
0.00426006
0.00430161
0.00435336
0.00441814
0.00449975
0.00460328
0.00473601
0.0049076
0.00513455
0.00543518
0.00586133
0.00638089
0.0071184
0.00747487
0.00880204
0.0100037
0.0141399
0.0243468
0.0359701
0.044907
0.00410404
0.004107
0.00411032
0.00411407
0.00411841
0.00412348
0.00412946
0.00413658
0.00414519
0.00415573
0.00416885
0.00418547
0.00420697
0.00423579
0.00427116
0.00431491
0.00436933
0.00443738
0.00452304
0.00463158
0.00477067
0.0049503
0.00518814
0.00550271
0.00595003
0.00645469
0.00721439
0.00752365
0.00889979
0.0100135
0.0143308
0.0245289
0.0358943
0.0504753
0.00410607
0.00410926
0.00411279
0.00411678
0.00412138
0.00412676
0.0041331
0.00414067
0.0041498
0.00416099
0.0041749
0.00419252
0.00421531
0.00424583
0.00428322
0.00432942
0.00438684
0.00445859
0.00454884
0.00466313
0.00480962
0.00499868
0.00524946
0.00558078
0.00605406
0.00653268
0.0073194
0.00757816
0.00901594
0.0100668
0.0144991
0.0248823
0.0354626
0.0576729
0.00410814
0.00411155
0.00411532
0.00411955
0.00412443
0.00413013
0.00413685
0.00414487
0.00415455
0.00416641
0.00418115
0.00419982
0.00422394
0.00425624
0.00429575
0.00434453
0.0044051
0.00448073
0.00457584
0.00469621
0.00485054
0.0050496
0.00531416
0.00566331
0.00616419
0.00659945
0.00740662
0.0076232
0.00910469
0.0100985
0.0145899
0.0250168
0.0350394
0.0667498
0.0041103
0.00411396
0.00411797
0.00412246
0.00412764
0.00413369
0.00414081
0.00414931
0.00415958
0.00417216
0.00418779
0.00420758
0.00423315
0.00426736
0.00430918
0.00436077
0.00442481
0.00450472
0.0046052
0.00473234
0.00489546
0.00510577
0.00538598
0.00575546
0.00626921
0.00666052
0.00749059
0.00766459
0.00919578
0.010141
0.0146855
0.025258
0.0346489
0.0789562
0.00411252
0.00411646
0.00412072
0.00412548
0.00413098
0.0041374
0.00414495
0.00415397
0.00416486
0.00417819
0.00419478
0.00421576
0.00424286
0.00427912
0.00432341
0.00437802
0.00444577
0.00453031
0.0046366
0.00477107
0.00494377
0.00516636
0.00546374
0.00584532
0.00636634
0.00671615
0.00756664
0.0077063
0.00927619
0.0101837
0.014743
0.0254167
0.0343282
0.0953976
0.00411478
0.00411903
0.00412357
0.00412863
0.00413446
0.00414126
0.00414927
0.00415883
0.00417038
0.00418452
0.0042021
0.00422435
0.00425309
0.00429152
0.00433844
0.00439627
0.00446801
0.0045575
0.00467004
0.0048124
0.00499545
0.00523132
0.00554733
0.00592541
0.00645364
0.00676496
0.00763183
0.00774666
0.00934254
0.0102208
0.0147703
0.0255209
0.0340853
0.118185
0.00411708
0.00412167
0.00412652
0.00413189
0.00413808
0.00414529
0.00415378
0.00416392
0.00417617
0.00419117
0.00420983
0.00423344
0.00426393
0.00430471
0.0043545
0.00441585
0.00449196
0.00458692
0.00470642
0.00485761
0.00505234
0.00530329
0.00564068
0.00599948
0.00653587
0.00681055
0.00769538
0.00779108
0.00941151
0.0102841
0.0147873
0.0257443
0.0335514
0.152793
0.0041194
0.00412435
0.00412952
0.00413523
0.00414179
0.00414943
0.00415844
0.00416918
0.00418217
0.00419808
0.00421788
0.00424293
0.00427529
0.00431857
0.00437143
0.00443657
0.00451741
0.0046183
0.00474538
0.00490624
0.00511383
0.00538147
0.00573564
0.00606455
0.00660698
0.00684696
0.00774495
0.00782684
0.00945839
0.0103294
0.014756
0.0259356
0.0328958
0.208544
0.00412184
0.00412718
0.0041327
0.00413876
0.00414573
0.00415383
0.00416339
0.0041748
0.00418859
0.00420548
0.00422651
0.00425313
0.00428753
0.00433355
0.00438977
0.00445908
0.00454515
0.00465262
0.00478816
0.00495985
0.00518194
0.00546847
0.00582457
0.00612373
0.00667243
0.00687667
0.00779059
0.00785686
0.00950492
0.0103727
0.0147242
0.0259742
0.0326943
0.309633
0.00412426
0.00412998
0.00413586
0.00414229
0.00414968
0.00415826
0.00416837
0.00418045
0.00419505
0.00421296
0.00423524
0.00426345
0.00429991
0.00434871
0.00440834
0.00448185
0.00457317
0.00468724
0.0048312
0.00501363
0.00525003
0.00554646
0.00590084
0.00617323
0.00672052
0.00690018
0.00780997
0.00788106
0.00951161
0.0103612
0.0146401
0.0257288
0.0338805
0.520842
0.00412676
0.00413289
0.00413914
0.00414598
0.0041538
0.0041629
0.00417362
0.00418642
0.00420191
0.00422091
0.00424457
0.00427453
0.00431328
0.00436516
0.0044286
0.00450686
0.00460415
0.00472578
0.00487951
0.00507452
0.00532791
0.00562434
0.00598047
0.0062282
0.0067805
0.00693475
0.00785064
0.00792577
0.00954624
0.0104208
0.014581
0.0260539
0.0382889
1.52218
0.00412935
0.0041359
0.00414254
0.00414981
0.00415812
0.00416776
0.00417913
0.00419273
0.00420918
0.00422937
0.00425453
0.00428642
0.00432768
0.00438296
0.00445064
0.00453421
0.00463826
0.00476847
0.0049334
0.00514292
0.00541609
0.00569652
0.00605253
0.00627652
0.00683004
0.00696277
0.00787677
0.00796851
0.00956425
0.0104837
0.0144907
0.0262854
0.0593879
3.90043
0.00413197
0.00413895
0.004146
0.00415373
0.00416253
0.00417275
0.0041848
0.00419922
0.00421668
0.00423811
0.00426483
0.00429872
0.00434259
0.00440142
0.0044735
0.00456258
0.00467359
0.00481265
0.00498908
0.00521347
0.00549269
0.00575443
0.00610735
0.00630881
0.006857
0.00697312
0.00787684
0.00797981
0.00955109
0.010461
0.0143553
0.025883
0.0876023
8.50214
0.00413463
0.00414206
0.00414953
0.00415774
0.00416708
0.0041779
0.00419069
0.00420598
0.00422452
0.00424729
0.0042757
0.00431175
0.00435847
0.00442116
0.00449805
0.00459319
0.00471193
0.00486086
0.00505021
0.00529144
0.00556954
0.00581537
0.00616708
0.00634826
0.00689337
0.00699485
0.00789014
0.00801046
0.00954979
0.01049
0.0142393
0.026616
0.251237
16.0015
0.00413739
0.00414529
0.00415323
0.00416196
0.00417187
0.00418336
0.00419694
0.0042132
0.00423293
0.00425718
0.00428746
0.00432594
0.00437584
0.00444287
0.00452524
0.00462731
0.00475494
0.00491531
0.00511977
0.00536875
0.00564288
0.00587356
0.00622272
0.00638556
0.00692537
0.00701777
0.00789803
0.00804926
0.00953966
0.0105315
0.0141779
0.0348873
0.705486
25.8108
0.00414019
0.00414857
0.00415698
0.00416627
0.00417678
0.00418897
0.00420339
0.00422068
0.00424166
0.00426748
0.00429975
0.00434078
0.00439405
0.00446569
0.00455386
0.00466327
0.00480032
0.00497283
0.00519333
0.00543441
0.00570367
0.00591969
0.00626443
0.00641089
0.00694121
0.00702669
0.00788942
0.00806428
0.00951382
0.010524
0.0140132
0.0432804
1.28623
36.3182
0.00414305
0.00415192
0.00416084
0.00417072
0.00418187
0.00419482
0.00421014
0.00422853
0.00425087
0.00427839
0.00431282
0.00435666
0.00441363
0.00449036
0.004585
0.00470268
0.00485045
0.00503689
0.00526707
0.00549707
0.00576139
0.00596328
0.00630427
0.00643419
0.00695881
0.00703822
0.00788587
0.00810181
0.00948397
0.0106052
0.0153993
0.106852
2.45464
45.3172
0.00414597
0.00415534
0.00416477
0.00417523
0.00418703
0.00420072
0.00421694
0.00423641
0.00426009
0.00428928
0.00432582
0.00437237
0.00443293
0.00451454
0.00461534
0.00474083
0.00489864
0.00509806
0.0053267
0.00554602
0.00580438
0.0059941
0.00632823
0.00644686
0.00695809
0.00703595
0.00786055
0.00809092
0.00942865
0.010525
0.0152551
0.121358
2.96064
51.9162
0.00414895
0.00415884
0.00416879
0.00417987
0.00419234
0.0042068
0.00422395
0.00424456
0.00426965
0.00430061
0.00433938
0.00438883
0.00445321
0.00454008
0.00464759
0.00478169
0.00495073
0.00516271
0.00538656
0.00559704
0.00585151
0.00602989
0.00636147
0.00646729
0.00697306
0.00705395
0.00784953
0.00814016
0.00938231
0.0107879
0.0217961
0.266364
4.32101
56.1517
0.00415201
0.00416242
0.0041729
0.00418461
0.00419776
0.004213
0.00423109
0.00425286
0.00427936
0.00431209
0.0043531
0.00440545
0.00447366
0.00456578
0.00467996
0.0048226
0.00500274
0.0052189
0.0054374
0.00563918
0.00588792
0.00605604
0.00638087
0.00647721
0.00697013
0.00705053
0.00782239
0.00811819
0.00931077
0.0106927
0.0239844
0.349041
4.96747
58.3123
0.00415513
0.00416606
0.00417709
0.00418944
0.00420327
0.00421931
0.00423834
0.00426126
0.0042892
0.0043237
0.00436697
0.00442221
0.00449425
0.00459161
0.00471244
0.00486358
0.00505477
0.00526774
0.00548137
0.0056753
0.00591899
0.00607809
0.00639724
0.0064854
0.00696761
0.00704652
0.00779922
0.00810885
0.00924545
0.0106178
0.0266687
0.439948
5.49028
59.2148
0.00415827
0.00416971
0.00418129
0.00419432
0.00420885
0.00422569
0.0042457
0.00426982
0.00429924
0.00433559
0.00438122
0.00443951
0.00451559
0.00461852
0.00474651
0.00490689
0.00510846
0.00531587
0.0055253
0.00571241
0.005952
0.00610393
0.00641679
0.00650202
0.00696662
0.00706399
0.00776091
0.00813028
0.00920423
0.0114668
0.0450744
0.660996
6.58234
59.0485
0.00416144
0.00417338
0.00418553
0.00419922
0.00421446
0.0042321
0.00425308
0.00427837
0.00430925
0.00434742
0.00439534
0.0044566
0.0045366
0.00464492
0.00477977
0.00494897
0.0051549
0.0053566
0.00556092
0.00574118
0.00597455
0.00611932
0.0064235
0.00650355
0.00695287
0.00705166
0.00772355
0.00806679
0.0091147
0.0113151
0.0482165
0.76698
7.09551
58.1168
0.00416472
0.0041772
0.00418992
0.00420429
0.00422026
0.00423873
0.00426068
0.00428719
0.00431957
0.0043596
0.0044099
0.0044742
0.00455824
0.0046721
0.00481403
0.00499233
0.00519836
0.00539502
0.00559501
0.00576927
0.00599773
0.00613597
0.00643404
0.00650834
0.00694668
0.00704732
0.00768844
0.00803418
0.00904224
0.0116687
0.061518
0.9577
8.10267
56.997
0.00416804
0.00418105
0.00419436
0.00420945
0.00422615
0.00424547
0.00426844
0.0042962
0.00433012
0.00437209
0.00442483
0.00449231
0.00458056
0.00470023
0.00484964
0.00503764
0.00524114
0.00543362
0.00562974
0.00579899
0.00602292
0.00615627
0.00644683
0.00651994
0.0069409
0.00705385
0.00764536
0.0080177
0.00900971
0.0131174
0.0900518
1.27202
9.84098
55.5906
0.00417143
0.004185
0.0041989
0.00421471
0.00423217
0.00425233
0.00427632
0.00430534
0.00434082
0.00438473
0.00443994
0.0045106
0.00460307
0.00472854
0.0048854
0.00507989
0.00527953
0.00546777
0.00565943
0.00582397
0.00604217
0.00617114
0.00645349
0.00652416
0.00692981
0.00704684
0.00760819
0.00797612
0.0089347
0.0137554
0.110131
1.56045
11.848
54.0661
0.00417489
0.00418903
0.00420355
0.00422011
0.00423834
0.00425938
0.00428443
0.00431475
0.00435185
0.00439779
0.00445558
0.00452957
0.00462647
0.00475808
0.00492289
0.00511986
0.00531592
0.0055005
0.00568792
0.00584848
0.0060608
0.00618748
0.00645915
0.00653364
0.00691823
0.00705169
0.00757454
0.00798005
0.00908303
0.0184679
0.176995
2.12529
14.7785
52.4711
0.00417838
0.0041931
0.00420824
0.00422555
0.00424457
0.00426648
0.00429259
0.00432422
0.00436294
0.00441091
0.00447127
0.00454859
0.00464992
0.00478764
0.00496035
0.00515624
0.00534848
0.00552918
0.00571201
0.00586843
0.00607466
0.00619791
0.00645955
0.00653387
0.00690013
0.00704041
0.00752918
0.00793055
0.00911356
0.0212661
0.226891
2.65509
18.0134
50.7471
0.00418193
0.00419721
0.00421299
0.00423106
0.00425086
0.00427365
0.00430081
0.00433373
0.00437406
0.00442404
0.00448694
0.00456753
0.0046732
0.0048169
0.00499726
0.00518912
0.00537735
0.00555422
0.00573233
0.00588476
0.00608461
0.00620435
0.00645684
0.00652912
0.0068802
0.00702068
0.00748299
0.00785855
0.00901021
0.0214239
0.253739
3.1454
21.728
49.4166
0.00418556
0.00420145
0.00421787
0.00423673
0.00425734
0.00428104
0.00430929
0.00434356
0.00438557
0.00443765
0.00450319
0.00458723
0.00469746
0.00484749
0.00503372
0.00522221
0.00540689
0.00558056
0.00575469
0.00590401
0.00609837
0.00621566
0.00645932
0.00653207
0.00686644
0.0070126
0.00743658
0.00782655
0.00920969
0.0278538
0.351006
4.05818
26.4788
48.4385
0.00418929
0.00420583
0.0042229
0.00424258
0.00426401
0.00428862
0.00431799
0.00435365
0.00439738
0.00445161
0.00451988
0.00460744
0.00472237
0.00487891
0.0050693
0.00525487
0.0054363
0.00560729
0.00577718
0.00592431
0.00611233
0.00622868
0.00646157
0.00653662
0.00685145
0.00700513
0.00739588
0.00781177
0.00948362
0.0355968
0.467646
5.15434
32.1689
47.6083
0.00419306
0.00421026
0.004228
0.00424851
0.00427079
0.00429634
0.00432685
0.00436392
0.00440941
0.00446585
0.00453692
0.00462811
0.00474799
0.00491135
0.00510378
0.00528656
0.00546444
0.00563301
0.00579811
0.00594352
0.00612396
0.00624043
0.00646038
0.00653949
0.00683267
0.00699502
0.00735344
0.00781088
0.0101423
0.0494045
0.652183
6.74344
38.8144
46.849
0.00419691
0.00421478
0.00423319
0.00425454
0.00427768
0.00430416
0.00433581
0.0043743
0.00442156
0.0044802
0.00455406
0.00464886
0.00477355
0.00494356
0.00513533
0.00531516
0.00548919
0.00565516
0.00581528
0.00595846
0.00613192
0.00624676
0.00645638
0.00653485
0.00681109
0.00697474
0.00730478
0.00776726
0.01026
0.0560067
0.789532
8.34935
45.0608
46.4805
0.00420084
0.00421944
0.00423852
0.00426076
0.00428476
0.0043122
0.00434503
0.00438498
0.00443408
0.00449503
0.0045718
0.00467038
0.00480011
0.00497699
0.00516586
0.00534292
0.00551316
0.00567689
0.00583213
0.00597386
0.00614014
0.00625478
0.00645301
0.00653348
0.00679131
0.00695938
0.00726188
0.00777068
0.0111763
0.0757183
1.06057
10.5109
50.7205
46.5307
0.00420485
0.00422421
0.00424399
0.00426712
0.00429203
0.00432045
0.00435449
0.00439595
0.00444693
0.00451022
0.00458997
0.00469243
0.00482734
0.00500959
0.00519539
0.00536996
0.00553654
0.00569844
0.00584875
0.0059896
0.00614827
0.00626337
0.00644939
0.00653243
0.00677074
0.00694324
0.00721842
0.00778038
0.0122676
0.0990821
1.38086
12.8763
55.7533
46.8617
0.00420896
0.00422911
0.00424959
0.00427364
0.00429945
0.00432888
0.00436416
0.00440715
0.00446006
0.00452575
0.00460856
0.00471498
0.00485518
0.00504126
0.00522401
0.00539631
0.00555912
0.0057194
0.00586447
0.00600463
0.00615527
0.00627095
0.00644439
0.00652966
0.00674889
0.00692458
0.00717507
0.00780524
0.0137739
0.130365
1.78483
15.5341
59.9835
47.4052
0.00421314
0.0042341
0.00425529
0.00428028
0.00430701
0.00433745
0.004374
0.00441856
0.00447342
0.00454156
0.00462748
0.00473795
0.00488352
0.00507183
0.00525149
0.00542157
0.00558054
0.0057393
0.00587911
0.00601877
0.00616133
0.00627771
0.00643875
0.00652609
0.00672684
0.00690528
0.00713418
0.00787176
0.0161566
0.175663
2.30566
18.4481
63.3307
48.098
0.0042175
0.00423927
0.00426121
0.00428716
0.00431484
0.00434633
0.00438419
0.00443038
0.00448728
0.00455797
0.00464713
0.00476183
0.00491293
0.00510181
0.00527834
0.00544636
0.00560147
0.00575891
0.00589329
0.00603279
0.0061669
0.00628436
0.00643232
0.00652214
0.00670403
0.0068851
0.00709796
0.00802861
0.0202274
0.243811
2.98249
21.698
65.7843
48.7871
0.00422202
0.00424461
0.0042673
0.00429422
0.00432287
0.00435543
0.00439463
0.00444248
0.00450145
0.00457473
0.00466717
0.00478614
0.00494275
0.00513068
0.00530401
0.00547001
0.00562111
0.00577726
0.00590605
0.00604528
0.00617106
0.00628903
0.00642471
0.00651539
0.00668006
0.00686169
0.00705808
0.0081423
0.0237598
0.311321
3.68194
24.8544
67.439
49.5651
0.00422664
0.00425006
0.00427353
0.00430145
0.00433108
0.00436476
0.00440535
0.00445492
0.00451605
0.00459203
0.00468792
0.00481138
0.00497363
0.0051592
0.00532936
0.00549348
0.00564069
0.00579564
0.00591899
0.00605814
0.00617559
0.00629451
0.00641746
0.00651012
0.00665756
0.00684135
0.00704747
0.00874856
0.0352746
0.464068
4.82012
28.44
68.4221
50.1252
0.00423146
0.0042557
0.00427997
0.0043089
0.00433954
0.00437435
0.00441636
0.00446768
0.004531
0.0046097
0.00470907
0.00483704
0.00500366
0.00518673
0.00535363
0.0055159
0.00565906
0.00581285
0.00593048
0.00606943
0.00617828
0.00629754
0.00640807
0.00650082
0.00663183
0.006815
0.0070192
0.00909364
0.0431047
0.589952
5.85968
31.6395
68.8415
50.669
0.00423655
0.0042616
0.00428672
0.00431666
0.00434833
0.00438432
0.0044278
0.00448094
0.00454653
0.00462806
0.00473103
0.00486361
0.00503332
0.00521388
0.00537746
0.0055379
0.00567698
0.00582957
0.00594149
0.00608012
0.00618066
0.00629986
0.00639889
0.00649098
0.0066072
0.00678969
0.00700455
0.00968555
0.0554352
0.768629
7.15656
34.6425
68.8064
51.174
0.00424182
0.00426771
0.0042937
0.00432469
0.00435743
0.00439466
0.00443969
0.00449474
0.00456271
0.00464723
0.00475402
0.0048914
0.00506307
0.00524115
0.00540153
0.00556027
0.00569549
0.00584693
0.00595353
0.0060919
0.00618442
0.00630383
0.00639098
0.00648346
0.00658491
0.00677069
0.00707045
0.0115866
0.0854645
1.09275
9.00528
37.6332
68.4702
51.471
0.00424723
0.00427396
0.00430084
0.00433289
0.0043667
0.00440518
0.00445177
0.00450875
0.00457913
0.00466666
0.00477726
0.00491935
0.00509186
0.00526756
0.0054247
0.00558187
0.00571315
0.00586364
0.00596461
0.00610292
0.00618693
0.00630649
0.00638161
0.00647349
0.00656008
0.0067467
0.00709543
0.0128588
0.108968
1.40085
10.9854
40.0971
67.9948
51.7103
0.00425291
0.00428049
0.0043083
0.00434143
0.00437636
0.00441616
0.0044644
0.00452341
0.00459632
0.00468701
0.00480164
0.00494853
0.00512082
0.00529412
0.00544808
0.00560367
0.00573109
0.00588047
0.00597597
0.00611398
0.00618973
0.00630919
0.00637273
0.00646409
0.00653758
0.00673137
0.00725623
0.0163546
0.161342
1.91956
13.4279
42.3144
67.2727
51.8244
0.00425868
0.00428713
0.0043159
0.00435013
0.00438622
0.00442738
0.00447733
0.00453846
0.00461401
0.00470802
0.00482686
0.0049786
0.00514961
0.00532054
0.00547138
0.00562537
0.00574912
0.0058972
0.00598768
0.00612505
0.00619309
0.00631212
0.00636437
0.00645554
0.00651819
0.00674254
0.00782817
0.0253546
0.268071
2.72916
16.2444
44.2843
66.5205
51.7004
0.00426458
0.0042939
0.00432364
0.00435898
0.00439624
0.00443879
0.00449047
0.00455373
0.00463195
0.00472928
0.00485235
0.00500878
0.00517742
0.00534596
0.00549357
0.00564589
0.00576576
0.00591244
0.00599751
0.00613399
0.00619384
0.00631186
0.00635273
0.00644236
0.00649479
0.00675209
0.00842486
0.0345664
0.377743
3.55134
18.8773
45.8245
65.7807
51.3896
0.0042709
0.0043011
0.00433186
0.00436833
0.00440679
0.00445081
0.0045043
0.00456979
0.00465078
0.00475157
0.00487895
0.00503928
0.00520504
0.00537102
0.00551524
0.00566559
0.00578137
0.00592613
0.00600568
0.00614044
0.00619244
0.00630815
0.0063389
0.00642533
0.00647034
0.00677347
0.00924345
0.0467842
0.517374
4.50334
21.3883
46.9934
65.0613
51.1049
0.00427763
0.00430871
0.00434053
0.00437814
0.00441785
0.00446339
0.00451876
0.00458657
0.00467043
0.00477479
0.00490653
0.00506967
0.00523247
0.00539576
0.0055365
0.00568469
0.00579632
0.00593888
0.00601305
0.00614572
0.00619028
0.00630323
0.00632452
0.00640716
0.006446
0.006802
0.0101543
0.0602788
0.670861
5.53152
23.723
47.8055
64.0375
50.9323
0.00428452
0.00431649
0.0043494
0.00438816
0.00442913
0.00447622
0.00453351
0.00460366
0.00469042
0.00479837
0.00493439
0.00509963
0.00525948
0.00542021
0.00555747
0.00570365
0.00581113
0.0059518
0.00602054
0.0061516
0.00618869
0.00629943
0.00631142
0.00639055
0.00642251
0.00682146
0.0109009
0.0725947
0.826036
6.59326
25.7618
48.2588
62.9825
50.9157
0.00429182
0.00432472
0.00435878
0.00439874
0.00444106
0.00448986
0.00454923
0.00462196
0.00471191
0.00482383
0.0049644
0.00513121
0.00528825
0.00544638
0.00558061
0.00572469
0.00582879
0.00596697
0.00603159
0.00615993
0.00619103
0.00629831
0.00630215
0.00637878
0.0064251
0.00713607
0.0154638
0.124496
1.23693
8.34725
28.0983
48.7252
61.9099
50.6794
0.00429964
0.00433349
0.00436875
0.00440994
0.00445369
0.00450428
0.00456585
0.00464129
0.00473458
0.0048506
0.00499565
0.00516347
0.00531771
0.00547327
0.00560454
0.00574653
0.00584721
0.00598288
0.00604308
0.00616868
0.00619313
0.00629701
0.00629186
0.00636622
0.00643067
0.00749026
0.0201821
0.175721
1.63513
9.98338
30.0292
49.0255
61.1234
50.2349
0.00430766
0.00434249
0.00437899
0.00442142
0.00446665
0.0045191
0.00458296
0.0046612
0.00475794
0.00487818
0.00502766
0.00519611
0.00534765
0.00550069
0.00562904
0.00576882
0.00586601
0.00599878
0.00605451
0.00617667
0.00619464
0.0062942
0.00628083
0.00635429
0.0064655
0.00820264
0.0287975
0.259308
2.18373
11.8522
31.8395
49.2322
60.2545
49.758
0.00431602
0.00435186
0.00438963
0.00443337
0.00448014
0.00453455
0.0046008
0.00468199
0.00478236
0.00490697
0.0050608
0.0052294
0.00537826
0.00552871
0.00565417
0.00579147
0.00588519
0.00601456
0.00606604
0.00618402
0.00619603
0.00629052
0.00627003
0.00634711
0.00656353
0.00958722
0.0435551
0.383968
2.88014
13.8807
33.4752
49.3699
59.4064
49.1995
0.00432507
0.00436196
0.00440107
0.00444614
0.00449456
0.00455107
0.00461987
0.00470419
0.00480838
0.0049375
0.00509547
0.00526356
0.00540967
0.00555735
0.0056799
0.00581443
0.00590463
0.00603024
0.00607741
0.00619081
0.00619678
0.00628588
0.00625868
0.00634358
0.00670852
0.0113812
0.0612375
0.5229
3.58778
15.7911
34.8487
49.4115
58.5865
48.6223
0.00433451
0.0043725
0.00441299
0.00445945
0.00450959
0.00456831
0.00463979
0.00472739
0.00483557
0.0049693
0.00513123
0.00529832
0.00544175
0.00558666
0.00570634
0.00583794
0.00592467
0.00604608
0.00608916
0.00619743
0.00619763
0.00628078
0.00624855
0.00635261
0.00698473
0.0143934
0.0885381
0.715313
4.45233
17.7312
36.0377
49.3066
57.7215
48.0787
0.00434436
0.0043835
0.00442542
0.00447332
0.0045253
0.00458635
0.00466067
0.00475174
0.00486411
0.00500258
0.00516825
0.00533398
0.00547487
0.005617
0.00573401
0.0058625
0.00594594
0.00606291
0.00609921
0.00620421
0.0061996
0.00627626
0.00624255
0.00639445
0.00756581
0.0199673
0.133502
0.991771
5.53138
19.7135
37.1014
49.1498
56.864
47.4534
0.00435499
0.00439534
0.00443876
0.00448819
0.00454214
0.0046057
0.00468307
0.00477787
0.00489467
0.00503798
0.00520704
0.00537093
0.00550939
0.00564869
0.00576315
0.00588831
0.00596861
0.00608045
0.00611331
0.00620995
0.00619939
0.00627196
0.00624199
0.00648229
0.00852367
0.0282603
0.19424
1.33083
6.7398
21.5883
37.9907
48.9518
56.0748
46.7547
0.00436622
0.00440784
0.00445283
0.00450388
0.00455995
0.00462621
0.00470685
0.00480563
0.00492711
0.00507534
0.00524743
0.00540919
0.00554544
0.00568194
0.00579406
0.00591567
0.00599304
0.00609918
0.00612894
0.00621794
0.00619771
0.00626704
0.00625136
0.00669446
0.0104698
0.0434345
0.293159
1.81595
8.26564
23.4967
38.8185
48.726
55.2333
45.9745
0.00437802
0.00442098
0.00446759
0.00452035
0.00457868
0.0046478
0.0047319
0.00483486
0.00496121
0.00511435
0.0052891
0.00544853
0.00558281
0.00571663
0.00582657
0.00594449
0.00601897
0.00611908
0.00614579
0.00622612
0.00620029
0.00626278
0.00628444
0.00708888
0.0136792
0.066177
0.426936
2.40708
9.88869
25.2774
39.5266
48.4799
54.439
45.1143
0.00439064
0.00443501
0.00448334
0.00453795
0.00459874
0.00467096
0.00475881
0.00486628
0.00499774
0.00515578
0.00533273
0.00548956
0.00562217
0.00575337
0.00586139
0.0059754
0.00604715
0.00614067
0.00616455
0.00623533
0.00620799
0.00627108
0.00638549
0.00794786
0.0199194
0.105714
0.63249
3.20008
11.7417
27.0294
40.1719
48.2166
53.6016
44.1574
0.00440418
0.00445006
0.00450021
0.00455681
0.00462028
0.00469587
0.00478778
0.00490008
0.00503689
0.00519972
0.00537812
0.00553232
0.00566359
0.00579232
0.00589874
0.00600871
0.00607793
0.00616444
0.00618564
0.00624652
0.00622027
0.00630099
0.00663494
0.00972981
0.031382
0.170197
0.927377
4.19136
13.7416
28.7015
40.7426
47.9396
52.7769
43.0803
0.00441846
0.00446593
0.00451801
0.00457678
0.00464315
0.00472237
0.00481864
0.00493607
0.00507843
0.00524583
0.0054247
0.00557672
0.0057071
0.00583369
0.00593896
0.00604499
0.006112
0.00619127
0.00621015
0.00626159
0.00624398
0.00639149
0.00725727
0.0136459
0.0537602
0.280711
1.36682
5.46191
15.9166
30.3724
41.2898
47.6597
51.8948
41.8263
0.00443373
0.00448291
0.00453705
0.00459819
0.00466774
0.00475091
0.00485193
0.00497485
0.00512291
0.00529454
0.00547262
0.00562292
0.00575285
0.00587766
0.00598236
0.00608463
0.00614988
0.00622181
0.00623921
0.00628452
0.00630074
0.0066655
0.00890892
0.0228452
0.0998156
0.477534
2.03834
7.11764
18.3223
32.062
41.8161
47.3725
51.0524
40.34
0.00444981
0.00450073
0.00455697
0.0046206
0.00469346
0.00478072
0.00488659
0.005015
0.00516844
0.00534338
0.00551918
0.00566795
0.00579764
0.00592096
0.00602556
0.00612455
0.00618871
0.00625427
0.00627286
0.00632489
0.00644519
0.00740127
0.0128439
0.0421467
0.183865
0.787353
2.95176
9.07221
20.7933
33.7416
42.4097
47.2032
50.0032
38.6093
0.00446397
0.00451644
0.00457456
0.00464044
0.00471628
0.0048072
0.00491738
0.00505056
0.00520842
0.00538495
0.00555827
0.005706
0.00583569
0.00595806
0.00606297
0.00615961
0.00622341
0.00628465
0.00630909
0.00639418
0.00675539
0.00899527
0.0207749
0.0778122
0.324163
1.2488
4.15145
11.2969
23.2603
35.3195
42.9359
46.9454
49.2372
36.9139
0.00447637
0.00453021
0.00459
0.00465791
0.00473639
0.00483056
0.00494453
0.00508182
0.00524322
0.00542032
0.0055917
0.00573866
0.0058684
0.00599008
0.00609537
0.00619024
0.00625407
0.00631344
0.00635231
0.00651955
0.00736971
0.0120579
0.0349298
0.135874
0.529488
1.85402
5.57753
13.7452
25.9338
37.1305
43.9492
47.607
48.76
34.456
0.00409854
0.00410096
0.00410372
0.00410689
0.00411056
0.00411483
0.00411987
0.00412589
0.00413315
0.00414205
0.00415314
0.00416722
0.00418548
0.00421004
0.0042404
0.00427815
0.0043253
0.00438449
0.00445924
0.00455431
0.00467637
0.00483455
0.00504358
0.00532133
0.00571314
0.00623603
0.00694432
0.00740276
0.00870359
0.0100718
0.0144122
0.0246587
0.0359813
0.0367506
0.00409849
0.00410089
0.00410361
0.00410673
0.00411034
0.00411453
0.00411947
0.00412534
0.00413242
0.00414107
0.00415183
0.00416545
0.00418307
0.00420668
0.0042358
0.00427191
0.0043169
0.00437323
0.00444419
0.00453416
0.00464931
0.00479805
0.00499367
0.00525285
0.00561417
0.00610354
0.0067898
0.00725664
0.00849747
0.00972512
0.0136815
0.0234145
0.0364212
0.0332759
0.00409841
0.00410078
0.00410346
0.00410653
0.00411007
0.00411417
0.00411899
0.00412471
0.0041316
0.00413999
0.0041504
0.00416353
0.00418047
0.00420308
0.00423091
0.00426532
0.00430807
0.00436146
0.00442851
0.00451329
0.0046214
0.00476059
0.00494274
0.00518332
0.00551505
0.00596254
0.00664173
0.007082
0.00830842
0.00931187
0.0128693
0.021667
0.0369422
0.0304407
0.00409829
0.00410063
0.00410327
0.00410628
0.00410974
0.00411375
0.00411845
0.00412402
0.0041307
0.00413883
0.00414888
0.00416152
0.00417778
0.0041994
0.00422594
0.00425868
0.00429927
0.00434982
0.00441316
0.00449305
0.00459464
0.00472507
0.00489511
0.00511914
0.00542576
0.00584014
0.00648274
0.00692721
0.00808785
0.00903902
0.0123418
0.0202258
0.0370332
0.0280312
0.00409817
0.00410046
0.00410305
0.004106
0.00410938
0.00411329
0.00411787
0.00412327
0.00412974
0.00413759
0.00414726
0.0041594
0.00417495
0.00419556
0.00422078
0.00425182
0.00429019
0.00433787
0.00439745
0.00447241
0.00456746
0.00468917
0.00484724
0.00505494
0.00533722
0.0057189
0.00629926
0.00675839
0.0078272
0.00875268
0.0116858
0.0186172
0.0367333
0.025976
0.00409799
0.00410023
0.00410277
0.00410565
0.00410894
0.00411275
0.00411719
0.00412242
0.00412866
0.00413622
0.00414551
0.00415712
0.00417195
0.00419153
0.00421542
0.00424474
0.00428091
0.00432575
0.00438166
0.00445184
0.00454063
0.00465406
0.00480096
0.00499361
0.00525399
0.00560631
0.00613439
0.00664137
0.00766187
0.00856792
0.0113446
0.017521
0.0350847
0.0241823
0.00409778
0.00409998
0.00410246
0.00410527
0.00410847
0.00411217
0.00411646
0.00412152
0.00412753
0.00413479
0.00414368
0.00415476
0.00416886
0.00418738
0.00420993
0.00423752
0.00427148
0.00431347
0.00436571
0.00443114
0.00451375
0.00461906
0.00475509
0.00493316
0.00517272
0.00549705
0.00597713
0.00652872
0.00750459
0.00845058
0.011101
0.0168823
0.0340534
0.0225883
0.00409749
0.00409964
0.00410205
0.00410478
0.00410788
0.00411145
0.0041156
0.00412046
0.00412622
0.00413315
0.00414161
0.00415212
0.00416543
0.00418283
0.00420394
0.00422971
0.00426131
0.00430029
0.00434866
0.00440908
0.00448518
0.00458195
0.0047066
0.00486941
0.00508736
0.00538249
0.00581346
0.00638881
0.00734637
0.00827066
0.0107686
0.0158156
0.0340208
0.0211752
0.00409715
0.00409924
0.00410158
0.00410422
0.00410722
0.00411065
0.00411463
0.00411928
0.00412478
0.00413137
0.00413939
0.00414929
0.00416177
0.00417801
0.00419764
0.0042215
0.00425068
0.00428655
0.00433092
0.00438618
0.00445558
0.00454358
0.00465659
0.00480375
0.00499977
0.00526496
0.00564689
0.00618277
0.00713989
0.00799441
0.0102941
0.0141909
0.0337685
0.0199396
0.00409676
0.00409878
0.00410105
0.00410359
0.00410648
0.00410978
0.00411359
0.00411803
0.00412326
0.0041295
0.00413706
0.00414635
0.00415801
0.00417309
0.00419124
0.00421324
0.00424003
0.00427286
0.00431335
0.00436363
0.00442662
0.00450629
0.00460834
0.00474094
0.00491693
0.00515485
0.00549417
0.00597456
0.00680703
0.0077804
0.00994893
0.0131295
0.0321491
0.0188455
0.00409632
0.00409828
0.00410046
0.00410291
0.00410568
0.00410884
0.00411248
0.0041167
0.00412165
0.00412753
0.00413462
0.0041433
0.00415412
0.00416803
0.00418471
0.00420483
0.00422924
0.00425904
0.00429567
0.00434102
0.00439768
0.00446916
0.00456049
0.00467888
0.00483553
0.00504706
0.00534631
0.00577287
0.00648841
0.00752606
0.00959144
0.0121335
0.0309683
0.0178696
0.00409583
0.00409772
0.00409982
0.00410217
0.00410483
0.00410784
0.0041113
0.00411529
0.00411996
0.00412549
0.00413211
0.00414018
0.00415017
0.00416293
0.00417815
0.00419644
0.00421853
0.00424541
0.00427832
0.00431894
0.00436953
0.00443321
0.00451437
0.00461938
0.00475801
0.00494512
0.0052083
0.0055854
0.00620274
0.00712916
0.00936796
0.0115369
0.0297264
0.0169893
0.00409528
0.0040971
0.00409911
0.00410137
0.0041039
0.00410676
0.00411003
0.0041138
0.00411818
0.00412334
0.00412949
0.00413693
0.00414609
0.0041577
0.00417147
0.00418794
0.00420773
0.0042317
0.00426092
0.00429685
0.00434144
0.00439739
0.0044685
0.0045603
0.0046812
0.00484417
0.00507223
0.00540009
0.00592521
0.00673653
0.00872504
0.0107844
0.0286575
0.0161946
0.00409469
0.00409644
0.00409837
0.00410052
0.00410293
0.00410564
0.00410873
0.00411226
0.00411636
0.00412116
0.00412684
0.00413368
0.00414204
0.00415253
0.00416493
0.00417965
0.00419727
0.0042185
0.00424426
0.00427581
0.00431482
0.00436361
0.00442545
0.0045051
0.0046098
0.00475082
0.00494751
0.00523097
0.0056779
0.00638382
0.00800214
0.0102492
0.0278599
0.0154741
0.00409407
0.00409575
0.00409759
0.00409963
0.00410191
0.00410447
0.00410738
0.00411069
0.0041145
0.00411894
0.00412418
0.00413042
0.004138
0.00414743
0.0041585
0.00417158
0.00418713
0.00420577
0.00422827
0.0042557
0.00428946
0.00433152
0.00438466
0.00445294
0.00454249
0.00466291
0.0048304
0.00507215
0.00544877
0.00605401
0.00735436
0.00967277
0.0266922
0.0148104
0.0040934
0.004095
0.00409676
0.0040987
0.00410085
0.00410327
0.00410599
0.00410907
0.00411261
0.00411671
0.0041215
0.00412717
0.004134
0.00414241
0.00415222
0.00416374
0.00417736
0.00419358
0.00421306
0.00423666
0.00426558
0.00430144
0.00434656
0.00440435
0.00447993
0.00458136
0.00472208
0.00492528
0.00523885
0.0057485
0.00678476
0.00882169
0.0236808
0.0141343
0.00409275
0.00409427
0.00409594
0.00409777
0.00409981
0.00410207
0.00410461
0.00410749
0.00411076
0.00411452
0.00411889
0.00412403
0.00413016
0.00413763
0.00414629
0.0041564
0.00416828
0.00418234
0.00419913
0.00421936
0.00424402
0.00427446
0.00431261
0.0043613
0.00442481
0.00450989
0.00462773
0.00479792
0.00505896
0.00548657
0.00632123
0.00804556
0.0183463
0.013145
0.00409206
0.00409351
0.00409509
0.00409683
0.00409875
0.00410087
0.00410324
0.00410591
0.00410893
0.00411238
0.00411635
0.00412099
0.00412648
0.00413309
0.00414072
0.00414957
0.0041599
0.00417207
0.00418651
0.00420382
0.00422481
0.00425059
0.00428277
0.00432367
0.00437685
0.0044479
0.0045461
0.00468778
0.00490436
0.00526049
0.00593326
0.00737666
0.0144096
0.0120583
0.00409145
0.00409282
0.00409431
0.00409594
0.00409773
0.00409971
0.00410191
0.00410437
0.00410715
0.00411029
0.0041139
0.00411808
0.00412298
0.00412881
0.00413551
0.00414323
0.0041522
0.0041627
0.00417509
0.00418987
0.00420769
0.00422948
0.00425652
0.00429072
0.004335
0.00439393
0.00447516
0.00459214
0.00477034
0.00506286
0.00560031
0.00677822
0.0115467
0.0109864
0.00409053
0.00409184
0.00409326
0.0040948
0.0040965
0.00409836
0.00410042
0.00410271
0.00410528
0.00410817
0.00411146
0.00411524
0.00411961
0.00412477
0.00413065
0.0041374
0.00414519
0.00415425
0.00416489
0.00417753
0.00419271
0.00421103
0.00423341
0.00426125
0.0042966
0.00434271
0.00440491
0.00449262
0.00462379
0.00483708
0.00522963
0.00612544
0.00959912
0.00995287
0.00409006
0.00409131
0.00409266
0.00409413
0.00409573
0.00409748
0.0040994
0.00410153
0.00410389
0.00410653
0.00410951
0.00411289
0.00411676
0.00412127
0.00412635
0.00413212
0.0041387
0.00414626
0.004155
0.00416519
0.0041772
0.00419171
0.00420956
0.00423196
0.00426073
0.00429869
0.00435045
0.00442405
0.00453464
0.00471419
0.00504126
0.00576562
0.00817435
0.00871199
0.0040903
0.00409152
0.00409284
0.00409427
0.00409582
0.00409751
0.00409936
0.0041014
0.00410366
0.00410617
0.00410898
0.00411216
0.00411577
0.00411992
0.00412461
0.00412994
0.00413603
0.00414307
0.00415125
0.00416086
0.00417228
0.00418603
0.00420285
0.00422383
0.0042506
0.00428576
0.00433356
0.0044015
0.00450383
0.00467102
0.00497831
0.00567606
0.00804121
0.00853267
0.00408918
0.00409028
0.00409148
0.00409276
0.00409415
0.00409565
0.00409728
0.00409905
0.004101
0.00410314
0.00410552
0.0041082
0.00411122
0.00411467
0.00411856
0.004123
0.00412809
0.00413399
0.00414087
0.004149
0.0041587
0.00417046
0.00418494
0.0042031
0.00422641
0.00425718
0.00429923
0.00435932
0.00445041
0.00460031
0.00487876
0.00551878
0.00774465
0.00830901
0.00408916
0.00409025
0.00409141
0.00409265
0.00409398
0.00409539
0.00409691
0.00409854
0.00410029
0.00410219
0.00410427
0.00410655
0.0041091
0.00411196
0.0041152
0.00411889
0.00412314
0.00412811
0.00413396
0.00414096
0.00414944
0.00415986
0.00417286
0.00418937
0.0042107
0.00423898
0.00427774
0.00433325
0.00441765
0.00455724
0.00481942
0.00542631
0.00768183
0.00818898
0.00405493
0.00405389
0.00405285
0.00405183
0.00405082
0.00404982
0.00404884
0.00404787
0.00404692
0.00404598
0.00404505
0.00404415
0.00404326
0.0040424
0.00404157
0.00404078
0.00404004
0.00403936
0.00403879
0.00403838
0.00403822
0.00403852
0.00403967
0.0040414
0.00404329
0.0040455
0.00404817
0.00405139
0.00405511
0.00405824
0.00406081
0.00406298
0.00406484
0.00406648
0.00406796
0.00406936
0.00407075
0.00407218
0.00407371
0.00407538
0.00407723
0.00407928
0.00408153
0.00408394
0.00408647
0.00408904
0.00409158
0.00409406
0.00409641
0.00405495
0.00405391
0.00405288
0.00405186
0.00405086
0.00404987
0.00404889
0.00404792
0.00404697
0.00404603
0.00404511
0.0040442
0.00404332
0.00404246
0.00404163
0.00404083
0.00404009
0.00403941
0.00403883
0.00403841
0.00403825
0.00403853
0.00403966
0.00404136
0.00404324
0.00404544
0.0040481
0.00405132
0.00405503
0.00405812
0.00406068
0.00406284
0.0040647
0.00406633
0.00406782
0.00406922
0.00407061
0.00407204
0.00407357
0.00407525
0.0040771
0.00407916
0.00408141
0.00408383
0.00408637
0.00408895
0.00409151
0.00409401
0.00409638
0.00405496
0.00405392
0.0040529
0.00405189
0.00405089
0.00404991
0.00404893
0.00404797
0.00404702
0.00404609
0.00404516
0.00404426
0.00404338
0.00404252
0.00404168
0.00404089
0.00404014
0.00403946
0.00403888
0.00403845
0.00403828
0.00403855
0.00403966
0.00404134
0.00404321
0.0040454
0.00404805
0.00405127
0.00405495
0.004058
0.00406055
0.0040627
0.00406456
0.00406619
0.00406768
0.00406909
0.00407048
0.00407191
0.00407344
0.00407512
0.00407698
0.00407904
0.00408129
0.00408372
0.00408626
0.00408885
0.00409142
0.00409393
0.00409631
0.00405497
0.00405394
0.00405293
0.00405193
0.00405094
0.00404996
0.00404899
0.00404803
0.00404708
0.00404615
0.00404523
0.00404433
0.00404345
0.00404259
0.00404175
0.00404095
0.0040402
0.00403952
0.00403893
0.0040385
0.00403832
0.00403857
0.00403967
0.00404133
0.00404318
0.00404536
0.00404801
0.00405122
0.00405487
0.0040579
0.00406043
0.00406257
0.00406442
0.00406605
0.00406754
0.00406895
0.00407034
0.00407177
0.00407331
0.00407498
0.00407684
0.0040789
0.00408116
0.00408358
0.00408613
0.00408873
0.00409131
0.00409382
0.00409622
0.00405498
0.00405397
0.00405297
0.00405198
0.00405099
0.00405002
0.00404905
0.0040481
0.00404716
0.00404623
0.00404532
0.00404441
0.00404353
0.00404267
0.00404184
0.00404104
0.00404028
0.00403959
0.004039
0.00403856
0.00403837
0.00403861
0.00403969
0.00404133
0.00404316
0.00404533
0.00404797
0.00405118
0.00405479
0.00405779
0.00406031
0.00406244
0.00406429
0.00406591
0.0040674
0.00406881
0.0040702
0.00407164
0.00407317
0.00407485
0.00407671
0.00407877
0.00408103
0.00408346
0.004086
0.0040886
0.00409119
0.00409371
0.00409611
0.00405499
0.00405399
0.004053
0.00405201
0.00405104
0.00405007
0.00404912
0.00404817
0.00404723
0.00404631
0.00404539
0.0040445
0.00404362
0.00404276
0.00404192
0.00404112
0.00404036
0.00403967
0.00403908
0.00403863
0.00403843
0.00403866
0.00403972
0.00404134
0.00404315
0.00404531
0.00404795
0.00405116
0.00405473
0.00405771
0.0040602
0.00406233
0.00406416
0.00406579
0.00406727
0.00406868
0.00407007
0.00407151
0.00407304
0.00407472
0.00407658
0.00407864
0.00408089
0.00408332
0.00408586
0.00408846
0.00409104
0.00409356
0.00409596
0.004055
0.00405402
0.00405303
0.00405206
0.00405109
0.00405013
0.00404918
0.00404824
0.00404731
0.00404639
0.00404548
0.00404458
0.0040437
0.00404284
0.004042
0.0040412
0.00404044
0.00403975
0.00403915
0.00403869
0.00403848
0.0040387
0.00403975
0.00404134
0.00404314
0.00404529
0.00404792
0.00405113
0.00405467
0.00405762
0.0040601
0.00406221
0.00406403
0.00406565
0.00406713
0.00406854
0.00406993
0.00407137
0.00407291
0.00407459
0.00407644
0.0040785
0.00408075
0.00408317
0.00408571
0.0040883
0.00409088
0.00409339
0.00409579
0.00405501
0.00405403
0.00405306
0.00405209
0.00405113
0.00405018
0.00404924
0.0040483
0.00404737
0.00404645
0.00404555
0.00404465
0.00404377
0.00404292
0.00404208
0.00404128
0.00404052
0.00403982
0.00403921
0.00403875
0.00403853
0.00403875
0.00403978
0.00404135
0.00404314
0.00404528
0.0040479
0.00405112
0.00405462
0.00405754
0.00406
0.0040621
0.00406391
0.00406553
0.004067
0.00406841
0.0040698
0.00407124
0.00407277
0.00407445
0.0040763
0.00407835
0.00408059
0.004083
0.00408552
0.0040881
0.00409066
0.00409316
0.00409555
0.00405502
0.00405405
0.00405309
0.00405213
0.00405118
0.00405023
0.00404929
0.00404836
0.00404744
0.00404652
0.00404562
0.00404473
0.00404385
0.00404299
0.00404215
0.00404135
0.00404059
0.00403989
0.00403928
0.00403881
0.00403858
0.00403878
0.0040398
0.00404136
0.00404313
0.00404526
0.00404788
0.0040511
0.00405456
0.00405746
0.0040599
0.00406198
0.00406379
0.0040654
0.00406687
0.00406827
0.00406966
0.0040711
0.00407263
0.0040743
0.00407615
0.00407818
0.00408041
0.0040828
0.00408531
0.00408786
0.0040904
0.00409288
0.00409525
0.00405503
0.00405407
0.00405311
0.00405216
0.00405121
0.00405027
0.00404934
0.00404841
0.00404749
0.00404658
0.00404568
0.00404479
0.00404391
0.00404306
0.00404222
0.00404141
0.00404065
0.00403995
0.00403933
0.00403886
0.00403863
0.00403882
0.00403983
0.00404137
0.00404313
0.00404525
0.00404786
0.00405108
0.00405451
0.00405738
0.00405981
0.00406188
0.00406368
0.00406528
0.00406674
0.00406814
0.00406953
0.00407096
0.00407249
0.00407415
0.00407599
0.00407801
0.00408022
0.00408259
0.00408507
0.0040876
0.00409012
0.00409257
0.00409491
0.00405504
0.00405409
0.00405314
0.00405219
0.00405125
0.00405032
0.00404939
0.00404846
0.00404755
0.00404664
0.00404574
0.00404485
0.00404398
0.00404312
0.00404228
0.00404148
0.00404071
0.00404001
0.00403939
0.00403892
0.00403868
0.00403886
0.00403985
0.00404137
0.00404312
0.00404523
0.00404785
0.00405106
0.00405446
0.00405731
0.00405972
0.00406177
0.00406356
0.00406516
0.00406662
0.00406801
0.00406939
0.00407082
0.00407234
0.004074
0.00407583
0.00407783
0.00408002
0.00408237
0.00408482
0.00408731
0.0040898
0.00409221
0.00409452
0.00405505
0.0040541
0.00405316
0.00405222
0.00405128
0.00405035
0.00404943
0.00404851
0.00404759
0.00404669
0.00404579
0.00404491
0.00404403
0.00404318
0.00404234
0.00404154
0.00404077
0.00404006
0.00403944
0.00403896
0.00403872
0.00403889
0.00403988
0.00404138
0.00404312
0.00404522
0.00404783
0.00405105
0.00405442
0.00405724
0.00405963
0.00406168
0.00406345
0.00406504
0.0040665
0.00406788
0.00406926
0.00407069
0.0040722
0.00407385
0.00407566
0.00407765
0.00407982
0.00408213
0.00408455
0.004087
0.00408945
0.00409182
0.00409408
0.00405506
0.00405411
0.00405318
0.00405224
0.00405131
0.00405039
0.00404947
0.00404855
0.00404764
0.00404674
0.00404584
0.00404496
0.00404409
0.00404323
0.0040424
0.00404159
0.00404082
0.00404011
0.00403949
0.00403901
0.00403876
0.00403892
0.0040399
0.00404139
0.00404311
0.00404521
0.00404782
0.00405104
0.00405438
0.00405718
0.00405955
0.00406158
0.00406335
0.00406493
0.00406638
0.00406776
0.00406913
0.00407055
0.00407206
0.0040737
0.00407549
0.00407746
0.0040796
0.00408188
0.00408425
0.00408666
0.00408906
0.00409138
0.0040936
0.00405506
0.00405413
0.00405319
0.00405226
0.00405134
0.00405042
0.0040495
0.00404859
0.00404768
0.00404678
0.00404589
0.00404501
0.00404414
0.00404328
0.00404245
0.00404164
0.00404087
0.00404016
0.00403953
0.00403905
0.00403879
0.00403895
0.00403992
0.0040414
0.00404311
0.0040452
0.00404781
0.00405103
0.00405434
0.00405712
0.00405947
0.00406149
0.00406325
0.00406482
0.00406626
0.00406764
0.00406901
0.00407042
0.00407192
0.00407354
0.00407532
0.00407726
0.00407937
0.00408161
0.00408394
0.0040863
0.00408864
0.00409091
0.00409307
0.00405507
0.00405414
0.00405321
0.00405228
0.00405136
0.00405044
0.00404953
0.00404862
0.00404772
0.00404682
0.00404593
0.00404505
0.00404418
0.00404332
0.00404249
0.00404168
0.00404091
0.0040402
0.00403958
0.00403909
0.00403883
0.00403898
0.00403994
0.00404141
0.00404311
0.00404519
0.00404779
0.00405102
0.00405431
0.00405707
0.0040594
0.00406141
0.00406315
0.00406471
0.00406615
0.00406752
0.00406888
0.00407029
0.00407178
0.00407339
0.00407515
0.00407707
0.00407914
0.00408134
0.00408362
0.00408593
0.00408821
0.00409042
0.00409252
0.00405507
0.00405415
0.00405322
0.0040523
0.00405138
0.00405047
0.00404956
0.00404865
0.00404775
0.00404686
0.00404597
0.00404509
0.00404422
0.00404337
0.00404253
0.00404172
0.00404095
0.00404024
0.00403961
0.00403912
0.00403886
0.00403901
0.00403995
0.00404141
0.00404311
0.00404519
0.00404779
0.00405102
0.00405428
0.00405701
0.00405934
0.00406133
0.00406306
0.00406461
0.00406604
0.00406741
0.00406876
0.00407016
0.00407164
0.00407324
0.00407498
0.00407687
0.0040789
0.00408105
0.00408328
0.00408553
0.00408775
0.00408988
0.00409191
0.00405508
0.00405415
0.00405323
0.00405232
0.0040514
0.00405049
0.00404958
0.00404868
0.00404778
0.00404688
0.004046
0.00404512
0.00404425
0.0040434
0.00404257
0.00404176
0.00404099
0.00404027
0.00403965
0.00403915
0.00403889
0.00403903
0.00403997
0.00404142
0.00404311
0.00404519
0.00404779
0.00405101
0.00405425
0.00405697
0.00405928
0.00406125
0.00406298
0.00406452
0.00406595
0.0040673
0.00406865
0.00407004
0.00407151
0.0040731
0.00407482
0.00407668
0.00407868
0.00408078
0.00408296
0.00408515
0.0040873
0.00408937
0.00409132
0.00405508
0.00405416
0.00405325
0.00405233
0.00405142
0.00405051
0.00404961
0.0040487
0.00404781
0.00404691
0.00404603
0.00404515
0.00404429
0.00404343
0.0040426
0.00404179
0.00404102
0.00404031
0.00403968
0.00403918
0.00403891
0.00403905
0.00403998
0.00404142
0.00404311
0.00404518
0.00404778
0.00405101
0.00405423
0.00405693
0.00405922
0.00406119
0.0040629
0.00406444
0.00406585
0.0040672
0.00406855
0.00406993
0.00407138
0.00407295
0.00407465
0.00407648
0.00407844
0.0040805
0.00408262
0.00408474
0.00408682
0.00408882
0.0040907
0.00405508
0.00405417
0.00405325
0.00405234
0.00405143
0.00405052
0.00404962
0.00404872
0.00404782
0.00404693
0.00404605
0.00404517
0.00404431
0.00404346
0.00404262
0.00404182
0.00404105
0.00404033
0.0040397
0.0040392
0.00403894
0.00403907
0.00404
0.00404144
0.00404312
0.00404519
0.00404779
0.00405103
0.00405422
0.0040569
0.00405918
0.00406113
0.00406284
0.00406437
0.00406578
0.00406712
0.00406846
0.00406983
0.00407128
0.00407284
0.00407452
0.00407633
0.00407825
0.00408027
0.00408234
0.00408441
0.00408643
0.00408836
0.00409018
0.00405509
0.00405417
0.00405326
0.00405235
0.00405144
0.00405054
0.00404964
0.00404874
0.00404785
0.00404696
0.00404607
0.0040452
0.00404433
0.00404348
0.00404265
0.00404184
0.00404107
0.00404036
0.00403973
0.00403923
0.00403896
0.00403909
0.00404001
0.00404144
0.00404312
0.00404518
0.00404777
0.00405102
0.0040542
0.00405687
0.00405914
0.00406108
0.00406278
0.0040643
0.00406571
0.00406704
0.00406837
0.00406973
0.00407116
0.00407269
0.00407433
0.00407608
0.00407795
0.00407989
0.00408187
0.00408385
0.00408577
0.0040876
0.00408932
0.00405509
0.00405417
0.00405326
0.00405236
0.00405145
0.00405055
0.00404965
0.00404875
0.00404785
0.00404697
0.00404608
0.00404521
0.00404435
0.0040435
0.00404266
0.00404186
0.00404109
0.00404037
0.00403974
0.00403924
0.00403897
0.0040391
0.00404002
0.00404145
0.00404313
0.00404519
0.0040478
0.00405106
0.00405423
0.00405689
0.00405915
0.00406108
0.00406278
0.00406429
0.00406569
0.00406702
0.00406835
0.0040697
0.00407113
0.00407266
0.0040743
0.00407604
0.00407789
0.00407979
0.00408173
0.00408364
0.0040855
0.00408726
0.0040889
0.00405509
0.00405418
0.00405327
0.00405236
0.00405146
0.00405055
0.00404965
0.00404876
0.00404787
0.00404698
0.0040461
0.00404522
0.00404436
0.00404351
0.00404268
0.00404188
0.00404111
0.00404039
0.00403976
0.00403926
0.00403899
0.00403913
0.00404006
0.00404149
0.00404318
0.00404527
0.00404791
0.00405122
0.00405436
0.004057
0.00405924
0.00406117
0.00406285
0.00406436
0.00406576
0.00406711
0.00406845
0.00406983
0.00407128
0.00407283
0.0040745
0.00407627
0.00407814
0.00408007
0.00408201
0.00408394
0.00408579
0.00408754
0.00408917
0.00405509
0.00405418
0.00405327
0.00405236
0.00405146
0.00405056
0.00404966
0.00404876
0.00404787
0.00404698
0.0040461
0.00404523
0.00404437
0.00404352
0.00404269
0.00404188
0.00404112
0.0040404
0.00403977
0.00403927
0.00403899
0.00403912
0.00404002
0.00404144
0.00404311
0.00404516
0.00404777
0.00405103
0.00405418
0.00405682
0.00405907
0.004061
0.0040627
0.00406422
0.00406562
0.00406697
0.00406831
0.00406968
0.00407111
0.00407263
0.00407424
0.00407594
0.00407772
0.00407955
0.00408139
0.00408321
0.00408496
0.00408661
0.00408814
0.00405509
0.00405418
0.00405327
0.00405236
0.00405146
0.00405056
0.00404966
0.00404876
0.00404787
0.00404699
0.0040461
0.00404523
0.00404437
0.00404352
0.00404269
0.00404189
0.00404112
0.00404041
0.00403978
0.00403928
0.00403901
0.00403914
0.00404005
0.00404149
0.00404319
0.00404528
0.00404792
0.00405123
0.00405436
0.00405698
0.00405921
0.00406113
0.00406281
0.00406432
0.00406571
0.00406706
0.00406839
0.00406977
0.00407121
0.00407274
0.00407436
0.00407607
0.00407786
0.00407969
0.00408152
0.00408332
0.00408503
0.00408665
0.00408814
0.00405493
0.00405387
0.00405282
0.0040518
0.00405078
0.00404978
0.00404879
0.00404782
0.00404686
0.00404592
0.00404499
0.00404409
0.0040432
0.00404234
0.00404151
0.00404072
0.00403998
0.00403931
0.00403874
0.00403833
0.00403818
0.00403848
0.00403963
0.00404138
0.00404329
0.00404552
0.0040482
0.00405144
0.00405521
0.00405836
0.00406096
0.00406314
0.00406501
0.00406665
0.00406814
0.00406956
0.00407096
0.00407242
0.00407399
0.00407572
0.00407765
0.0040798
0.00408217
0.00408472
0.0040874
0.00409013
0.00409284
0.00409549
0.004098
0.00405492
0.00405385
0.0040528
0.00405177
0.00405075
0.00404974
0.00404875
0.00404777
0.00404681
0.00404586
0.00404494
0.00404403
0.00404314
0.00404228
0.00404145
0.00404066
0.00403992
0.00403925
0.00403869
0.00403828
0.00403814
0.00403844
0.00403961
0.00404137
0.00404329
0.00404554
0.00404824
0.0040515
0.00405531
0.00405849
0.00406111
0.0040633
0.00406517
0.00406682
0.00406832
0.00406975
0.00407117
0.00407266
0.00407427
0.00407606
0.00407808
0.00408034
0.00408283
0.00408554
0.00408838
0.00409129
0.00409416
0.00409701
0.00409969
0.00405491
0.00405383
0.00405278
0.00405173
0.0040507
0.00404969
0.0040487
0.00404772
0.00404675
0.0040458
0.00404487
0.00404396
0.00404308
0.00404222
0.00404139
0.0040406
0.00403986
0.0040392
0.00403864
0.00403824
0.0040381
0.00403841
0.00403959
0.00404137
0.00404331
0.00404557
0.00404829
0.00405156
0.0040554
0.00405862
0.00406126
0.00406346
0.00406534
0.004067
0.00406851
0.00406995
0.00407139
0.00407291
0.00407456
0.00407642
0.00407852
0.00408089
0.00408353
0.00408639
0.00408941
0.00409251
0.00409555
0.00409861
0.00410147
0.0040549
0.00405381
0.00405274
0.00405169
0.00405066
0.00404964
0.00404864
0.00404766
0.00404669
0.00404574
0.00404481
0.0040439
0.00404301
0.00404215
0.00404132
0.00404053
0.0040398
0.00403914
0.00403858
0.00403819
0.00403805
0.00403838
0.00403957
0.00404136
0.00404332
0.0040456
0.00404833
0.00405163
0.00405551
0.00405876
0.00406141
0.00406363
0.00406552
0.00406718
0.0040687
0.00407015
0.00407161
0.00407316
0.00407486
0.00407679
0.00407898
0.00408147
0.00408426
0.0040873
0.00409049
0.00409379
0.00409701
0.0041003
0.00410336
0.00405489
0.00405379
0.00405272
0.00405166
0.00405062
0.00404959
0.00404859
0.0040476
0.00404663
0.00404568
0.00404474
0.00404383
0.00404294
0.00404208
0.00404126
0.00404047
0.00403974
0.00403908
0.00403852
0.00403813
0.00403801
0.00403834
0.00403955
0.00404136
0.00404333
0.00404562
0.00404838
0.0040517
0.0040556
0.00405889
0.00406156
0.00406379
0.00406569
0.00406736
0.00406888
0.00407035
0.00407183
0.00407341
0.00407516
0.00407716
0.00407945
0.00408206
0.004085
0.00408821
0.00409159
0.0040951
0.0040985
0.00410202
0.00410529
0.00405488
0.00405378
0.00405269
0.00405163
0.00405058
0.00404955
0.00404854
0.00404754
0.00404657
0.00404561
0.00404468
0.00404377
0.00404288
0.00404202
0.00404119
0.00404041
0.00403967
0.00403902
0.00403847
0.00403808
0.00403797
0.00403831
0.00403953
0.00404135
0.00404334
0.00404565
0.00404842
0.00405176
0.0040557
0.00405902
0.00406171
0.00406395
0.00406586
0.00406753
0.00406907
0.00407055
0.00407205
0.00407367
0.00407547
0.00407754
0.00407993
0.00408268
0.00408577
0.00408917
0.00409274
0.00409646
0.00410006
0.00410383
0.0041073
0.00405486
0.00405375
0.00405266
0.00405158
0.00405053
0.00404949
0.00404847
0.00404748
0.0040465
0.00404554
0.00404461
0.00404369
0.0040428
0.00404194
0.00404112
0.00404033
0.00403961
0.00403895
0.00403841
0.00403803
0.00403792
0.00403828
0.00403951
0.00404135
0.00404335
0.00404568
0.00404847
0.00405183
0.00405581
0.00405915
0.00406187
0.00406412
0.00406604
0.00406772
0.00406926
0.00407075
0.00407228
0.00407393
0.00407579
0.00407793
0.00408043
0.00408331
0.00408657
0.00409016
0.00409393
0.00409788
0.00410167
0.0041057
0.00410935
0.00405485
0.00405373
0.00405262
0.00405154
0.00405048
0.00404944
0.00404841
0.00404741
0.00404643
0.00404547
0.00404453
0.00404362
0.00404273
0.00404187
0.00404104
0.00404026
0.00403954
0.00403889
0.00403835
0.00403798
0.00403788
0.00403824
0.00403949
0.00404135
0.00404337
0.00404571
0.00404852
0.0040519
0.00405591
0.00405929
0.00406203
0.00406429
0.00406621
0.0040679
0.00406945
0.00407096
0.00407251
0.00407419
0.00407611
0.00407834
0.00408094
0.00408397
0.0040874
0.00409119
0.00409516
0.00409934
0.00410334
0.00410761
0.00411143
0.00405484
0.00405371
0.00405259
0.0040515
0.00405043
0.00404938
0.00404836
0.00404735
0.00404637
0.0040454
0.00404446
0.00404355
0.00404266
0.0040418
0.00404097
0.00404019
0.00403947
0.00403883
0.00403829
0.00403792
0.00403783
0.00403821
0.00403947
0.00404135
0.00404338
0.00404574
0.00404857
0.00405197
0.004056
0.00405942
0.00406218
0.00406446
0.00406639
0.00406808
0.00406964
0.00407116
0.00407273
0.00407446
0.00407643
0.00407874
0.00408146
0.00408464
0.00408825
0.00409224
0.00409642
0.00410084
0.00410506
0.00410957
0.00411355
0.00405483
0.00405368
0.00405256
0.00405146
0.00405038
0.00404933
0.0040483
0.00404728
0.0040463
0.00404533
0.00404439
0.00404347
0.00404258
0.00404172
0.0040409
0.00404012
0.0040394
0.00403876
0.00403823
0.00403787
0.00403778
0.00403817
0.00403945
0.00404134
0.00404339
0.00404577
0.00404862
0.00405204
0.0040561
0.00405956
0.00406234
0.00406463
0.00406656
0.00406827
0.00406983
0.00407137
0.00407296
0.00407472
0.00407676
0.00407916
0.004082
0.00408532
0.00408912
0.00409332
0.00409771
0.00410238
0.00410681
0.00411155
0.0041157
0.00405481
0.00405365
0.00405252
0.00405141
0.00405033
0.00404927
0.00404823
0.00404721
0.00404622
0.00404525
0.00404431
0.00404339
0.0040425
0.00404164
0.00404082
0.00404004
0.00403933
0.00403869
0.00403817
0.00403781
0.00403774
0.00403814
0.00403943
0.00404135
0.00404341
0.00404581
0.00404867
0.00405212
0.0040562
0.0040597
0.0040625
0.0040648
0.00406675
0.00406845
0.00407003
0.00407157
0.0040732
0.004075
0.0040771
0.00407959
0.00408255
0.00408604
0.00409002
0.00409444
0.00409906
0.00410399
0.00410864
0.00411361
0.00411795
0.0040548
0.00405363
0.00405249
0.00405137
0.00405027
0.00404921
0.00404816
0.00404714
0.00404615
0.00404517
0.00404423
0.00404331
0.00404242
0.00404156
0.00404074
0.00403997
0.00403926
0.00403862
0.0040381
0.00403776
0.00403769
0.0040381
0.00403941
0.00404135
0.00404343
0.00404584
0.00404872
0.00405219
0.0040563
0.00405983
0.00406266
0.00406497
0.00406692
0.00406864
0.00407022
0.00407178
0.00407343
0.00407527
0.00407743
0.00408001
0.00408311
0.00408676
0.00409093
0.00409557
0.00410041
0.00410559
0.00411044
0.00411563
0.00412019
0.00405479
0.00405361
0.00405246
0.00405133
0.00405023
0.00404915
0.0040481
0.00404707
0.00404607
0.0040451
0.00404415
0.00404323
0.00404234
0.00404148
0.00404066
0.00403989
0.00403918
0.00403855
0.00403804
0.0040377
0.00403764
0.00403806
0.00403939
0.00404134
0.00404344
0.00404587
0.00404877
0.00405225
0.00405639
0.00405997
0.00406282
0.00406514
0.0040671
0.00406882
0.00407041
0.00407199
0.00407366
0.00407555
0.00407777
0.00408045
0.00408367
0.00408749
0.00409186
0.00409672
0.0041018
0.00410724
0.00411229
0.00411772
0.0041225
0.00405477
0.00405358
0.00405241
0.00405127
0.00405016
0.00404908
0.00404803
0.004047
0.00404599
0.00404501
0.00404406
0.00404314
0.00404225
0.0040414
0.00404058
0.00403981
0.00403911
0.00403848
0.00403797
0.00403764
0.00403759
0.00403803
0.00403937
0.00404135
0.00404346
0.00404591
0.00404883
0.00405233
0.0040565
0.00406011
0.00406298
0.00406532
0.00406728
0.00406901
0.00407061
0.0040722
0.0040739
0.00407583
0.00407812
0.0040809
0.00408425
0.00408825
0.00409282
0.00409791
0.00410322
0.00410894
0.0041142
0.00411991
0.0041249
0.00405475
0.00405355
0.00405237
0.00405122
0.0040501
0.00404901
0.00404795
0.00404692
0.00404591
0.00404493
0.00404398
0.00404305
0.00404216
0.00404131
0.00404049
0.00403973
0.00403903
0.00403841
0.00403791
0.00403758
0.00403754
0.00403799
0.00403936
0.00404135
0.00404348
0.00404594
0.00404888
0.00405241
0.0040566
0.00406025
0.00406314
0.00406549
0.00406746
0.00406919
0.0040708
0.00407241
0.00407413
0.00407611
0.00407847
0.00408135
0.00408484
0.00408902
0.00409379
0.00409912
0.00410467
0.00411066
0.00411615
0.00412215
0.00412734
0.00405474
0.00405352
0.00405233
0.00405117
0.00405005
0.00404895
0.00404788
0.00404684
0.00404583
0.00404484
0.00404389
0.00404297
0.00404208
0.00404122
0.00404041
0.00403965
0.00403895
0.00403833
0.00403784
0.00403752
0.00403749
0.00403795
0.00403933
0.00404135
0.0040435
0.00404598
0.00404893
0.00405248
0.00405669
0.00406039
0.0040633
0.00406566
0.00406764
0.00406938
0.00407099
0.00407261
0.00407437
0.00407639
0.00407882
0.0040818
0.00408544
0.00408979
0.00409477
0.00410033
0.00410613
0.0041124
0.00411812
0.00412443
0.00412982
0.00405473
0.00405349
0.00405229
0.00405112
0.00404999
0.00404888
0.00404781
0.00404676
0.00404575
0.00404476
0.0040438
0.00404288
0.00404199
0.00404114
0.00404033
0.00403957
0.00403887
0.00403826
0.00403777
0.00403746
0.00403744
0.00403791
0.00403931
0.00404135
0.00404352
0.00404601
0.00404899
0.00405255
0.00405678
0.00406052
0.00406346
0.00406584
0.00406782
0.00406956
0.00407119
0.00407282
0.0040746
0.00407667
0.00407918
0.00408226
0.00408604
0.00409058
0.00409577
0.00410157
0.00410762
0.00411418
0.00412015
0.00412679
0.00413239
0.00405471
0.00405345
0.00405224
0.00405106
0.00404992
0.0040488
0.00404772
0.00404667
0.00404565
0.00404467
0.00404371
0.00404278
0.00404189
0.00404104
0.00404023
0.00403948
0.00403879
0.00403818
0.0040377
0.0040374
0.00403739
0.00403788
0.0040393
0.00404136
0.00404354
0.00404605
0.00404904
0.00405263
0.00405689
0.00406067
0.00406363
0.00406601
0.00406801
0.00406975
0.00407138
0.00407303
0.00407484
0.00407696
0.00407954
0.00408274
0.00408666
0.00409138
0.00409678
0.00410284
0.00410914
0.00411599
0.0041222
0.00412918
0.00413499
0.00405469
0.00405342
0.00405219
0.004051
0.00404985
0.00404873
0.00404764
0.00404659
0.00404556
0.00404457
0.00404361
0.00404269
0.0040418
0.00404095
0.00404014
0.00403939
0.0040387
0.0040381
0.00403763
0.00403734
0.00403734
0.00403784
0.00403928
0.00404136
0.00404356
0.00404609
0.0040491
0.0040527
0.00405698
0.00406081
0.00406379
0.00406619
0.00406819
0.00406994
0.00407158
0.00407324
0.00407508
0.00407724
0.0040799
0.00408321
0.00408728
0.00409219
0.00409781
0.00410411
0.00411067
0.00411782
0.00412429
0.00413161
0.00413764
0.00405468
0.00405339
0.00405215
0.00405095
0.00404979
0.00404866
0.00404756
0.0040465
0.00404548
0.00404448
0.00404352
0.00404259
0.0040417
0.00404086
0.00404005
0.0040393
0.00403862
0.00403803
0.00403756
0.00403727
0.00403728
0.0040378
0.00403926
0.00404136
0.00404358
0.00404613
0.00404915
0.00405277
0.00405707
0.00406094
0.00406395
0.00406636
0.00406837
0.00407012
0.00407177
0.00407345
0.00407531
0.00407753
0.00408026
0.00408368
0.00408791
0.00409301
0.00409885
0.0041054
0.00411222
0.00411968
0.00412641
0.00413408
0.00414036
0.00405465
0.00405335
0.0040521
0.00405089
0.00404971
0.00404858
0.00404748
0.00404641
0.00404538
0.00404438
0.00404342
0.00404249
0.00404161
0.00404076
0.00403996
0.00403921
0.00403853
0.00403794
0.00403748
0.00403721
0.00403723
0.00403776
0.00403924
0.00404137
0.00404361
0.00404617
0.00404921
0.00405284
0.00405716
0.00406109
0.00406412
0.00406654
0.00406855
0.00407031
0.00407196
0.00407366
0.00407555
0.00407781
0.00408063
0.00408416
0.00408854
0.00409384
0.0040999
0.00410672
0.0041138
0.00412157
0.00412858
0.0041366
0.00414312
0.00405463
0.00405331
0.00405204
0.00405082
0.00404964
0.00404849
0.00404739
0.00404631
0.00404528
0.00404428
0.00404332
0.00404239
0.0040415
0.00404066
0.00403986
0.00403912
0.00403844
0.00403786
0.00403741
0.00403714
0.00403718
0.00403772
0.00403922
0.00404138
0.00404364
0.00404621
0.00404927
0.00405292
0.00405726
0.00406123
0.00406429
0.00406672
0.00406873
0.00407049
0.00407215
0.00407386
0.00407579
0.0040781
0.004081
0.00408465
0.00408919
0.00409469
0.00410098
0.00410806
0.00411542
0.0041235
0.00413079
0.00413919
0.00414596
0.00405461
0.00405328
0.00405199
0.00405076
0.00404956
0.00404841
0.0040473
0.00404622
0.00404518
0.00404418
0.00404322
0.00404229
0.0040414
0.00404056
0.00403976
0.00403902
0.00403835
0.00403778
0.00403733
0.00403708
0.00403712
0.00403768
0.0040392
0.00404139
0.00404366
0.00404625
0.00404932
0.00405299
0.00405735
0.00406137
0.00406445
0.0040669
0.00406891
0.00407068
0.00407235
0.00407407
0.00407602
0.00407839
0.00408137
0.00408514
0.00408984
0.00409555
0.00410207
0.00410942
0.00411705
0.00412546
0.00413304
0.00414181
0.00414885
0.0040546
0.00405325
0.00405195
0.0040507
0.00404949
0.00404833
0.00404721
0.00404613
0.00404509
0.00404408
0.00404311
0.00404219
0.0040413
0.00404046
0.00403966
0.00403893
0.00403827
0.0040377
0.00403726
0.00403701
0.00403707
0.00403764
0.00403918
0.00404139
0.00404368
0.00404629
0.00404937
0.00405305
0.00405743
0.00406151
0.00406462
0.00406707
0.00406909
0.00407086
0.00407253
0.00407427
0.00407626
0.00407868
0.00408173
0.00408563
0.00409049
0.00409639
0.00410315
0.00411076
0.00411868
0.00412741
0.00413529
0.00414443
0.00415175
0.00405457
0.0040532
0.00405188
0.00405062
0.0040494
0.00404824
0.00404711
0.00404602
0.00404498
0.00404397
0.004043
0.00404207
0.00404119
0.00404035
0.00403956
0.00403883
0.00403817
0.00403761
0.00403718
0.00403694
0.00403701
0.0040376
0.00403916
0.0040414
0.00404371
0.00404634
0.00404944
0.00405313
0.00405753
0.00406166
0.00406479
0.00406725
0.00406928
0.00407105
0.00407273
0.00407448
0.00407649
0.00407897
0.00408211
0.00408612
0.00409115
0.00409726
0.00410425
0.00411213
0.00412033
0.00412939
0.00413757
0.00414708
0.00415468
0.00405454
0.00405315
0.00405182
0.00405055
0.00404932
0.00404814
0.00404701
0.00404592
0.00404487
0.00404386
0.00404289
0.00404196
0.00404108
0.00404024
0.00403945
0.00403873
0.00403808
0.00403752
0.0040371
0.00403687
0.00403695
0.00403756
0.00403915
0.00404141
0.00404374
0.00404638
0.0040495
0.00405321
0.00405761
0.0040618
0.00406496
0.00406743
0.00406946
0.00407123
0.00407292
0.00407469
0.00407673
0.00407926
0.00408248
0.00408663
0.00409182
0.00409814
0.00410537
0.00411354
0.00412203
0.00413142
0.00413992
0.00414982
0.00415771
0.00405452
0.00405311
0.00405177
0.00405048
0.00404924
0.00404805
0.00404691
0.00404582
0.00404476
0.00404375
0.00404278
0.00404185
0.00404097
0.00404013
0.00403935
0.00403863
0.00403798
0.00403743
0.00403702
0.0040368
0.0040369
0.00403752
0.00403912
0.00404142
0.00404377
0.00404642
0.00404955
0.00405327
0.00405769
0.00406194
0.00406512
0.00406761
0.00406964
0.00407141
0.0040731
0.00407489
0.00407696
0.00407954
0.00408285
0.00408712
0.00409249
0.00409902
0.00410649
0.00411494
0.00412372
0.00413346
0.00414228
0.00415257
0.00416078
0.0040545
0.00405307
0.0040517
0.0040504
0.00404915
0.00404796
0.00404681
0.00404571
0.00404465
0.00404364
0.00404266
0.00404174
0.00404086
0.00404002
0.00403924
0.00403853
0.00403789
0.00403734
0.00403694
0.00403673
0.00403684
0.00403748
0.00403911
0.00404143
0.0040438
0.00404646
0.00404961
0.00405334
0.00405778
0.00406209
0.00406529
0.00406778
0.00406982
0.00407159
0.00407329
0.00407509
0.00407719
0.00407983
0.00408323
0.00408763
0.00409316
0.00409991
0.00410763
0.00411637
0.00412546
0.00413554
0.00414469
0.00415539
0.0041639
0.00405446
0.00405301
0.00405163
0.00405031
0.00404906
0.00404785
0.0040467
0.00404559
0.00404453
0.00404351
0.00404254
0.00404162
0.00404074
0.00403991
0.00403913
0.00403842
0.00403779
0.00403725
0.00403686
0.00403666
0.00403678
0.00403744
0.00403909
0.00404144
0.00404383
0.00404651
0.00404967
0.00405342
0.00405787
0.00406224
0.00406547
0.00406797
0.00407
0.00407178
0.00407348
0.00407529
0.00407743
0.00408012
0.00408361
0.00408814
0.00409385
0.00410082
0.00410879
0.00411782
0.00412722
0.00413766
0.00414716
0.00415826
0.0041671
0.00405444
0.00405296
0.00405156
0.00405023
0.00404896
0.00404775
0.00404659
0.00404548
0.00404441
0.0040434
0.00404242
0.0040415
0.00404062
0.00403979
0.00403902
0.00403831
0.00403769
0.00403716
0.00403677
0.00403659
0.00403672
0.0040374
0.00403907
0.00404145
0.00404386
0.00404656
0.00404973
0.00405349
0.00405795
0.00406238
0.00406564
0.00406814
0.00407018
0.00407196
0.00407366
0.00407549
0.00407766
0.00408041
0.00408399
0.00408865
0.00409454
0.00410173
0.00410995
0.00411928
0.004129
0.00413979
0.00414963
0.00416115
0.00417032
0.00405442
0.00405292
0.0040515
0.00405016
0.00404887
0.00404765
0.00404648
0.00404537
0.0040443
0.00404328
0.0040423
0.00404138
0.0040405
0.00403968
0.00403891
0.00403821
0.00403759
0.00403707
0.00403669
0.00403652
0.00403667
0.00403736
0.00403905
0.00404146
0.00404389
0.0040466
0.00404978
0.00405355
0.00405802
0.00406252
0.0040658
0.00406832
0.00407036
0.00407213
0.00407384
0.00407569
0.00407788
0.00408069
0.00408436
0.00408915
0.00409522
0.00410263
0.00411112
0.00412074
0.00413078
0.00414193
0.00415213
0.00416408
0.00417359
0.00405438
0.00405286
0.00405142
0.00405006
0.00404877
0.00404754
0.00404636
0.00404524
0.00404417
0.00404315
0.00404217
0.00404125
0.00404038
0.00403955
0.00403879
0.0040381
0.00403748
0.00403697
0.00403661
0.00403644
0.00403661
0.00403732
0.00403904
0.00404148
0.00404392
0.00404665
0.00404985
0.00405363
0.0040581
0.00406266
0.00406598
0.0040685
0.00407054
0.00407231
0.00407403
0.00407588
0.00407811
0.00408098
0.00408474
0.00408968
0.00409593
0.00410357
0.00411232
0.00412225
0.00413262
0.00414414
0.00415471
0.00416709
0.00417694
0.00405435
0.0040528
0.00405134
0.00404997
0.00404866
0.00404742
0.00404624
0.00404511
0.00404404
0.00404302
0.00404204
0.00404112
0.00404025
0.00403943
0.00403867
0.00403799
0.00403738
0.00403688
0.00403652
0.00403637
0.00403655
0.00403728
0.00403902
0.0040415
0.00404396
0.0040467
0.00404991
0.0040537
0.00405818
0.00406278
0.00406615
0.00406868
0.00407072
0.00407249
0.00407421
0.00407608
0.00407834
0.00408127
0.00408512
0.0040902
0.00409664
0.00410452
0.00411354
0.00412378
0.00413449
0.0041464
0.00415734
0.00417018
0.00418039
0.00405432
0.00405275
0.00405127
0.00404988
0.00404856
0.00404731
0.00404612
0.00404499
0.00404391
0.00404289
0.00404192
0.00404099
0.00404012
0.00403931
0.00403856
0.00403787
0.00403727
0.00403678
0.00403643
0.0040363
0.00403649
0.00403724
0.00403901
0.00404151
0.00404399
0.00404675
0.00404997
0.00405376
0.00405825
0.0040629
0.00406632
0.00406886
0.0040709
0.00407267
0.00407439
0.00407627
0.00407857
0.00408155
0.0040855
0.00409072
0.00409735
0.00410546
0.00411476
0.00412532
0.00413637
0.00414867
0.00415999
0.00417329
0.00418387
0.00405429
0.00405269
0.00405119
0.00404978
0.00404845
0.00404719
0.004046
0.00404486
0.00404378
0.00404276
0.00404178
0.00404086
0.00404
0.00403918
0.00403844
0.00403776
0.00403717
0.00403668
0.00403635
0.00403622
0.00403643
0.0040372
0.00403899
0.00404153
0.00404403
0.0040468
0.00405002
0.00405383
0.00405832
0.00406301
0.00406649
0.00406904
0.00407107
0.00407284
0.00407456
0.00407646
0.00407879
0.00408183
0.00408588
0.00409124
0.00409807
0.00410642
0.00411599
0.00412688
0.00413828
0.00415097
0.00416269
0.00417647
0.00418741
0.00405424
0.00405262
0.0040511
0.00404967
0.00404833
0.00404706
0.00404586
0.00404472
0.00404364
0.00404262
0.00404164
0.00404072
0.00403986
0.00403905
0.00403831
0.00403764
0.00403706
0.00403658
0.00403626
0.00403615
0.00403637
0.00403716
0.00403898
0.00404155
0.00404407
0.00404685
0.00405009
0.0040539
0.0040584
0.00406312
0.00406666
0.00406922
0.00407125
0.00407302
0.00407474
0.00407666
0.00407902
0.00408212
0.00408627
0.00409178
0.0040988
0.0041074
0.00411726
0.00412848
0.00414024
0.00415334
0.00416546
0.00417974
0.00419105
0.00405421
0.00405255
0.00405101
0.00404957
0.00404822
0.00404694
0.00404573
0.00404459
0.0040435
0.00404248
0.0040415
0.00404059
0.00403973
0.00403892
0.00403819
0.00403752
0.00403695
0.00403648
0.00403617
0.00403607
0.00403631
0.00403712
0.00403896
0.00404157
0.00404411
0.0040469
0.00405015
0.00405397
0.00405847
0.00406321
0.00406683
0.0040694
0.00407143
0.00407319
0.00407492
0.00407684
0.00407924
0.00408241
0.00408666
0.00409232
0.00409954
0.00410839
0.00411854
0.0041301
0.00414223
0.00415575
0.00416828
0.00418308
0.00419477
0.00405418
0.00405249
0.00405093
0.00404947
0.0040481
0.00404682
0.0040456
0.00404445
0.00404336
0.00404234
0.00404137
0.00404045
0.00403959
0.0040388
0.00403806
0.00403741
0.00403684
0.00403638
0.00403608
0.00403599
0.00403625
0.00403707
0.00403894
0.00404158
0.00404414
0.00404695
0.00405021
0.00405403
0.00405853
0.0040633
0.00406699
0.00406958
0.0040716
0.00407336
0.00407509
0.00407703
0.00407945
0.00408269
0.00408704
0.00409285
0.00410027
0.00410937
0.00411983
0.00413173
0.00414424
0.00415819
0.00417115
0.00418648
0.00419856
0.00405412
0.00405241
0.00405082
0.00404935
0.00404797
0.00404667
0.00404545
0.0040443
0.00404321
0.00404219
0.00404122
0.0040403
0.00403945
0.00403866
0.00403793
0.00403728
0.00403672
0.00403628
0.00403599
0.00403592
0.00403619
0.00403704
0.00403893
0.00404161
0.00404419
0.00404701
0.00405027
0.0040541
0.0040586
0.00406339
0.00406716
0.00406976
0.00407178
0.00407353
0.00407526
0.00407721
0.00407968
0.00408297
0.00408743
0.0040934
0.00410103
0.00411039
0.00412115
0.0041334
0.0041463
0.00416068
0.00417406
0.00418995
0.00420243
0.00405408
0.00405233
0.00405072
0.00404923
0.00404784
0.00404653
0.00404531
0.00404415
0.00404306
0.00404203
0.00404107
0.00404016
0.00403931
0.00403852
0.0040378
0.00403716
0.00403661
0.00403617
0.00403589
0.00403584
0.00403613
0.004037
0.00403892
0.00404164
0.00404423
0.00404706
0.00405034
0.00405417
0.00405867
0.00406347
0.00406732
0.00406993
0.00407195
0.0040737
0.00407543
0.0040774
0.0040799
0.00408326
0.00408783
0.00409395
0.0041018
0.00411143
0.0041225
0.00413511
0.0041484
0.00416324
0.00417706
0.00419356
0.00420645
0.00405404
0.00405226
0.00405063
0.00404912
0.00404771
0.0040464
0.00404516
0.004044
0.00404291
0.00404188
0.00404092
0.00404001
0.00403916
0.00403838
0.00403767
0.00403704
0.00403649
0.00403607
0.0040358
0.00403576
0.00403607
0.00403696
0.00403891
0.00404166
0.00404427
0.00404711
0.00405039
0.00405423
0.00405873
0.00406354
0.00406746
0.00407011
0.00407213
0.00407387
0.0040756
0.00407758
0.00408011
0.00408354
0.00408822
0.00409451
0.00410257
0.00411247
0.00412386
0.00413685
0.00415055
0.00416585
0.00418014
0.00419731
0.00421056
0.00405399
0.00405218
0.00405052
0.00404899
0.00404757
0.00404625
0.00404501
0.00404385
0.00404276
0.00404173
0.00404076
0.00403986
0.00403902
0.00403824
0.00403754
0.00403691
0.00403638
0.00403596
0.00403571
0.00403568
0.004036
0.00403692
0.0040389
0.00404168
0.00404431
0.00404717
0.00405046
0.00405429
0.00405878
0.00406361
0.0040676
0.00407028
0.0040723
0.00407403
0.00407576
0.00407776
0.00408032
0.00408382
0.00408861
0.00409507
0.00410336
0.00411353
0.00412524
0.00413861
0.00415272
0.00416851
0.00418329
0.00420112
0.00421474
0.00405393
0.00405208
0.0040504
0.00404886
0.00404743
0.0040461
0.00404485
0.00404369
0.00404259
0.00404157
0.0040406
0.0040397
0.00403887
0.0040381
0.0040374
0.00403678
0.00403626
0.00403586
0.00403561
0.0040356
0.00403594
0.00403688
0.00403889
0.00404171
0.00404436
0.00404723
0.00405052
0.00405436
0.00405885
0.00406368
0.00406772
0.00407046
0.00407247
0.0040742
0.00407593
0.00407794
0.00408054
0.00408411
0.00408902
0.00409565
0.00410416
0.00411462
0.00412667
0.00414043
0.00415497
0.00417127
0.0041866
0.00420504
0.00421903
0.00405388
0.004052
0.00405029
0.00404872
0.00404728
0.00404594
0.00404469
0.00404352
0.00404243
0.0040414
0.00404044
0.00403955
0.00403872
0.00403795
0.00403726
0.00403665
0.00403614
0.00403575
0.00403552
0.00403552
0.00403588
0.00403684
0.00403888
0.00404174
0.00404441
0.00404728
0.00405059
0.00405443
0.0040589
0.00406374
0.00406783
0.00407063
0.00407264
0.00407436
0.00407609
0.00407811
0.00408075
0.0040844
0.00408942
0.00409623
0.00410498
0.00411574
0.00412814
0.0041423
0.0041573
0.00417418
0.00419005
0.0042091
0.00422347
0.00405384
0.00405191
0.00405018
0.0040486
0.00404714
0.00404579
0.00404453
0.00404336
0.00404227
0.00404124
0.00404028
0.00403939
0.00403857
0.00403781
0.00403712
0.00403652
0.00403602
0.00403564
0.00403542
0.00403544
0.00403582
0.0040368
0.00403887
0.00404177
0.00404445
0.00404734
0.00405065
0.00405448
0.00405895
0.00406379
0.00406792
0.00407079
0.0040728
0.00407452
0.00407625
0.00407828
0.00408096
0.00408468
0.00408982
0.00409681
0.00410581
0.00411686
0.00412962
0.0041442
0.00415969
0.00417716
0.00419358
0.00421324
0.00422803
0.00405377
0.0040518
0.00405004
0.00404844
0.00404697
0.00404562
0.00404436
0.00404319
0.00404209
0.00404107
0.00404011
0.00403923
0.0040384
0.00403765
0.00403698
0.00403639
0.0040359
0.00403553
0.00403533
0.00403536
0.00403576
0.00403676
0.00403887
0.00404181
0.00404451
0.0040474
0.00405072
0.00405455
0.00405902
0.00406384
0.00406801
0.00407095
0.00407297
0.00407468
0.00407641
0.00407846
0.00408118
0.00408497
0.00409024
0.00409742
0.00410667
0.00411803
0.00413115
0.00414616
0.0041622
0.00418021
0.00419721
0.00421747
0.00423268
0.0040537
0.0040517
0.00404991
0.00404829
0.00404681
0.00404545
0.00404418
0.00404301
0.00404191
0.00404089
0.00403994
0.00403906
0.00403825
0.0040375
0.00403684
0.00403625
0.00403577
0.00403542
0.00403523
0.00403528
0.0040357
0.00403673
0.00403886
0.00404184
0.00404456
0.00404746
0.00405078
0.00405462
0.00405907
0.00406389
0.00406808
0.00407109
0.00407314
0.00407484
0.00407656
0.00407863
0.00408139
0.00408526
0.00409066
0.00409803
0.00410754
0.00411922
0.00413272
0.00414822
0.00416479
0.00418336
0.00420097
0.00422183
0.00423751
0.00405364
0.0040516
0.00404978
0.00404814
0.00404665
0.00404528
0.00404401
0.00404283
0.00404174
0.00404072
0.00403977
0.00403889
0.00403809
0.00403735
0.00403669
0.00403612
0.00403565
0.00403531
0.00403513
0.0040352
0.00403564
0.00403669
0.00403885
0.00404188
0.00404461
0.00404752
0.00405084
0.00405467
0.00405911
0.00406393
0.00406814
0.0040712
0.0040733
0.00407499
0.00407672
0.0040788
0.0040816
0.00408555
0.00409108
0.00409864
0.0041084
0.00412041
0.00413429
0.00415028
0.00416739
0.00418653
0.00420476
0.00422623
0.0042424
0.00405357
0.00405148
0.00404963
0.00404798
0.00404648
0.0040451
0.00404382
0.00404265
0.00404155
0.00404054
0.00403959
0.00403872
0.00403792
0.00403719
0.00403654
0.00403598
0.00403552
0.0040352
0.00403504
0.00403512
0.00403558
0.00403666
0.00403885
0.00404192
0.00404467
0.00404759
0.00405091
0.00405474
0.00405917
0.00406397
0.00406819
0.0040713
0.00407345
0.00407514
0.00407687
0.00407896
0.00408181
0.00408584
0.0040915
0.00409927
0.00410929
0.00412162
0.0041359
0.00415241
0.00417005
0.00418976
0.00420863
0.00423071
0.00424739
0.00405349
0.00405135
0.00404948
0.00404781
0.00404629
0.00404491
0.00404363
0.00404246
0.00404136
0.00404035
0.00403941
0.00403855
0.00403775
0.00403703
0.00403639
0.00403584
0.0040354
0.00403508
0.00403494
0.00403504
0.00403552
0.00403662
0.00403885
0.00404196
0.00404473
0.00404765
0.00405098
0.0040548
0.00405922
0.004064
0.00406823
0.00407138
0.00407356
0.00407529
0.00407702
0.00407913
0.00408202
0.00408614
0.00409194
0.00409991
0.00411022
0.00412291
0.00413765
0.00415465
0.00417285
0.00419316
0.00421272
0.00423541
0.00425266
0.00405342
0.00405123
0.00404933
0.00404764
0.00404611
0.00404472
0.00404344
0.00404226
0.00404117
0.00404017
0.00403923
0.00403837
0.00403759
0.00403687
0.00403624
0.0040357
0.00403527
0.00403497
0.00403484
0.00403496
0.00403546
0.00403659
0.00403885
0.004042
0.00404478
0.00404771
0.00405104
0.00405486
0.00405926
0.00406403
0.00406826
0.00407143
0.00407365
0.00407544
0.00407716
0.0040793
0.00408223
0.00408644
0.00409239
0.00410057
0.00411117
0.00412426
0.00413946
0.00415698
0.00417576
0.0041967
0.00421701
0.00424031
0.00425822
0.00405334
0.00405111
0.00404918
0.00404746
0.00404593
0.00404453
0.00404325
0.00404207
0.00404098
0.00403998
0.00403905
0.00403819
0.00403742
0.00403671
0.00403609
0.00403556
0.00403514
0.00403485
0.00403474
0.00403488
0.0040354
0.00403655
0.00403885
0.00404204
0.00404484
0.00404778
0.00405111
0.00405492
0.00405931
0.00406405
0.00406828
0.00407147
0.00407372
0.00407558
0.00407731
0.00407946
0.00408244
0.00408674
0.00409283
0.00410124
0.00411214
0.00412565
0.00414131
0.00415934
0.00417873
0.00420031
0.00422138
0.0042453
0.00426391
0.00405324
0.00405096
0.004049
0.00404727
0.00404572
0.00404432
0.00404304
0.00404186
0.00404078
0.00403978
0.00403886
0.00403801
0.00403724
0.00403655
0.00403594
0.00403542
0.00403501
0.00403474
0.00403464
0.0040348
0.00403534
0.00403652
0.00403886
0.0040421
0.0040449
0.00404785
0.00405118
0.00405499
0.00405936
0.00406409
0.0040683
0.0040715
0.00407378
0.00407572
0.00407745
0.00407962
0.00408265
0.00408705
0.0040933
0.00410195
0.00411319
0.0041271
0.00414324
0.00416182
0.00418184
0.00420409
0.00422596
0.0042505
0.0042699
0.00405314
0.00405081
0.00404882
0.00404708
0.00404552
0.00404412
0.00404283
0.00404166
0.00404058
0.00403958
0.00403866
0.00403783
0.00403706
0.00403638
0.00403578
0.00403528
0.00403488
0.00403462
0.00403454
0.00403472
0.00403528
0.00403649
0.00403886
0.00404214
0.00404497
0.00404792
0.00405125
0.00405505
0.0040594
0.00406411
0.00406831
0.00407151
0.00407382
0.00407586
0.0040776
0.00407978
0.00408286
0.00408736
0.00409378
0.00410269
0.00411429
0.00412862
0.00414526
0.00416441
0.00418511
0.00420807
0.00423079
0.00425598
0.00427629
0.00405306
0.00405067
0.00404865
0.00404689
0.00404532
0.00404391
0.00404263
0.00404145
0.00404037
0.00403938
0.00403847
0.00403764
0.00403689
0.00403621
0.00403563
0.00403513
0.00403475
0.0040345
0.00403444
0.00403463
0.00403522
0.00403646
0.00403886
0.00404219
0.00404503
0.00404798
0.00405131
0.00405511
0.00405944
0.00406412
0.0040683
0.0040715
0.00407384
0.00407599
0.00407773
0.00407994
0.00408307
0.00408767
0.00409425
0.00410344
0.0041154
0.00413015
0.0041473
0.00416705
0.00418843
0.00421211
0.0042357
0.00426157
0.00428286
0.00405293
0.0040505
0.00404845
0.00404667
0.0040451
0.00404369
0.0040424
0.00404123
0.00404016
0.00403917
0.00403827
0.00403745
0.0040367
0.00403604
0.00403546
0.00403498
0.00403462
0.00403439
0.00403434
0.00403455
0.00403517
0.00403643
0.00403887
0.00404225
0.0040451
0.00404805
0.00405139
0.00405518
0.00405949
0.00406414
0.0040683
0.00407149
0.00407384
0.00407612
0.00407787
0.0040801
0.00408329
0.00408799
0.00409477
0.00410424
0.00411656
0.00413175
0.00414944
0.00416979
0.00419189
0.00421632
0.0042408
0.00426738
0.00428971
0.00405282
0.00405032
0.00404825
0.00404646
0.00404488
0.00404346
0.00404218
0.00404101
0.00403994
0.00403896
0.00403807
0.00403725
0.00403652
0.00403587
0.0040353
0.00403484
0.00403448
0.00403427
0.00403424
0.00403447
0.00403511
0.00403641
0.00403888
0.00404231
0.00404517
0.00404813
0.00405146
0.00405524
0.00405954
0.00406416
0.00406829
0.00407145
0.00407381
0.00407623
0.00407801
0.00408026
0.00408351
0.00408833
0.00409532
0.00410508
0.00411778
0.00413344
0.00415169
0.00417269
0.00419555
0.00422079
0.00424623
0.00427357
0.00429712
0.00405271
0.00405015
0.00404805
0.00404624
0.00404465
0.00404323
0.00404195
0.00404079
0.00403972
0.00403875
0.00403787
0.00403706
0.00403634
0.00403569
0.00403514
0.00403469
0.00403435
0.00403415
0.00403414
0.00403439
0.00403505
0.00403638
0.00403889
0.00404236
0.00404523
0.0040482
0.00405153
0.0040553
0.00405958
0.00406417
0.00406827
0.0040714
0.00407377
0.00407632
0.00407814
0.00408041
0.00408372
0.00408867
0.00409587
0.00410593
0.00411903
0.00413517
0.00415401
0.00417568
0.00419934
0.00422542
0.00425185
0.00428001
0.00430489
0.00405257
0.00404996
0.00404783
0.00404601
0.00404441
0.00404299
0.00404171
0.00404055
0.0040395
0.00403853
0.00403766
0.00403686
0.00403615
0.00403552
0.00403498
0.00403454
0.00403421
0.00403403
0.00403404
0.00403431
0.004035
0.00403635
0.00403891
0.00404242
0.00404531
0.00404827
0.0040516
0.00405537
0.00405963
0.00406418
0.00406825
0.00407134
0.00407371
0.00407639
0.00407827
0.00408057
0.00408395
0.00408904
0.00409645
0.00410682
0.00412033
0.00413697
0.00415642
0.00417878
0.00420326
0.00423023
0.00425767
0.00428671
0.00431302
0.00405242
0.00404975
0.00404759
0.00404576
0.00404417
0.00404275
0.00404147
0.00404032
0.00403927
0.00403831
0.00403744
0.00403666
0.00403596
0.00403534
0.00403481
0.00403438
0.00403407
0.00403391
0.00403394
0.00403423
0.00403494
0.00403633
0.00403893
0.00404249
0.00404538
0.00404835
0.00405168
0.00405544
0.00405967
0.0040642
0.00406822
0.00407126
0.00407364
0.00407644
0.0040784
0.00408073
0.00408419
0.00408942
0.00409706
0.00410777
0.00412171
0.00413888
0.00415897
0.00418208
0.00420745
0.00423535
0.00426389
0.0042939
0.00432182
0.00405227
0.00404955
0.00404736
0.00404552
0.00404392
0.0040425
0.00404123
0.00404008
0.00403904
0.00403809
0.00403723
0.00403646
0.00403576
0.00403516
0.00403464
0.00403423
0.00403394
0.00403379
0.00403384
0.00403416
0.00403489
0.00403631
0.00403894
0.00404255
0.00404545
0.00404842
0.00405175
0.0040555
0.00405972
0.00406421
0.00406819
0.00407117
0.00407355
0.00407647
0.00407853
0.0040809
0.00408443
0.00408981
0.00409769
0.00410874
0.00412313
0.00414085
0.00416162
0.00418551
0.0042118
0.00424071
0.0042704
0.00430149
0.00433116
0.00405211
0.00404932
0.00404712
0.00404527
0.00404366
0.00404225
0.00404098
0.00403983
0.0040388
0.00403786
0.00403701
0.00403625
0.00403557
0.00403498
0.00403448
0.00403408
0.0040338
0.00403367
0.00403374
0.00403408
0.00403484
0.00403629
0.00403896
0.00404262
0.00404553
0.0040485
0.00405182
0.00405557
0.00405976
0.00406422
0.00406816
0.00407106
0.00407344
0.0040765
0.00407866
0.00408106
0.00408468
0.00409021
0.00409834
0.00410975
0.00412461
0.00414291
0.00416438
0.00418909
0.00421635
0.00424631
0.0042772
0.00430948
0.00434102
0.00405192
0.00404908
0.00404685
0.004045
0.00404339
0.00404198
0.00404072
0.00403958
0.00403856
0.00403763
0.00403679
0.00403604
0.00403537
0.00403479
0.00403431
0.00403392
0.00403366
0.00403355
0.00403364
0.004034
0.00403479
0.00403627
0.00403899
0.00404269
0.00404561
0.00404858
0.0040519
0.00405564
0.00405981
0.00406424
0.00406813
0.00407095
0.00407334
0.00407653
0.00407879
0.00408123
0.00408494
0.00409064
0.00409903
0.00411083
0.00412618
0.00414509
0.0041673
0.00419288
0.00422118
0.00425225
0.00428443
0.00431804
0.00435162
0.00405173
0.00404883
0.00404659
0.00404472
0.00404312
0.00404171
0.00404046
0.00403933
0.00403831
0.00403739
0.00403657
0.00403583
0.00403517
0.00403461
0.00403414
0.00403377
0.00403352
0.00403343
0.00403354
0.00403392
0.00403474
0.00403625
0.00403902
0.00404276
0.00404569
0.00404866
0.00405198
0.00405571
0.00405986
0.00406426
0.0040681
0.00407083
0.00407322
0.00407655
0.00407892
0.0040814
0.00408521
0.00409108
0.00409976
0.00411195
0.00412782
0.00414737
0.00417038
0.00419689
0.00422628
0.00425856
0.00429213
0.00432725
0.00436306
0.00405154
0.00404859
0.00404633
0.00404446
0.00404286
0.00404145
0.0040402
0.00403908
0.00403808
0.00403717
0.00403635
0.00403562
0.00403498
0.00403443
0.00403397
0.00403362
0.00403339
0.00403332
0.00403344
0.00403385
0.00403469
0.00403624
0.00403904
0.00404283
0.00404577
0.00404873
0.00405205
0.00405577
0.00405991
0.00406427
0.00406806
0.00407071
0.00407311
0.00407656
0.00407905
0.00408157
0.00408548
0.00409153
0.0041005
0.00411311
0.00412953
0.00414975
0.00417358
0.00420107
0.00423162
0.00426518
0.00430023
0.00433701
0.00437517
0.00405134
0.00404836
0.00404609
0.00404422
0.00404262
0.00404122
0.00403998
0.00403887
0.00403787
0.00403697
0.00403617
0.00403545
0.00403482
0.00403428
0.00403383
0.0040335
0.00403328
0.00403322
0.00403336
0.00403379
0.00403466
0.00403624
0.00403908
0.0040429
0.00404584
0.00404881
0.00405212
0.00405583
0.00405995
0.00406428
0.00406803
0.00407061
0.004073
0.00407657
0.00407916
0.00408173
0.00408575
0.004092
0.00410129
0.00411434
0.00413133
0.00415226
0.00417697
0.00420549
0.00423728
0.00427221
0.00430887
0.00434751
0.00438818
0.00405118
0.00404816
0.00404589
0.00404402
0.00404242
0.00404103
0.0040398
0.00403869
0.0040377
0.00403681
0.00403601
0.00403531
0.00403468
0.00403415
0.00403372
0.00403339
0.00403319
0.00403314
0.0040333
0.00403375
0.00403464
0.00403624
0.00403912
0.00404296
0.00404591
0.00404887
0.00405217
0.00405587
0.00405998
0.00406429
0.00406799
0.0040705
0.00407288
0.00407656
0.00407925
0.00408188
0.00408601
0.00409246
0.00410207
0.00411558
0.00413316
0.00415482
0.00418045
0.00421007
0.00424317
0.00427956
0.00431796
0.00435865
0.00440198
0.00405105
0.004048
0.00404572
0.00404385
0.00404226
0.00404087
0.00403964
0.00403854
0.00403756
0.00403668
0.00403589
0.00403519
0.00403457
0.00403405
0.00403363
0.00403331
0.00403312
0.00403308
0.00403325
0.00403372
0.00403462
0.00403625
0.00403915
0.00404301
0.00404597
0.00404892
0.00405221
0.0040559
0.00406
0.00406427
0.00406793
0.00407039
0.00407275
0.00407652
0.0040793
0.00408197
0.00408619
0.00409283
0.00410271
0.00411661
0.0041347
0.00415701
0.00418343
0.00421402
0.00424827
0.00428598
0.00432593
0.0043685
0.00441415
0.00405094
0.00404787
0.00404558
0.00404371
0.00404212
0.00404074
0.00403951
0.00403842
0.00403744
0.00403656
0.00403578
0.00403509
0.00403448
0.00403397
0.00403355
0.00403324
0.00403306
0.00403304
0.00403322
0.00403369
0.00403461
0.00403626
0.00403918
0.00404305
0.00404601
0.00404895
0.00405224
0.00405591
0.00405999
0.00406424
0.00406785
0.00407027
0.00407263
0.00407646
0.0040793
0.00408201
0.00408632
0.0040931
0.00410322
0.00411746
0.00413599
0.00415885
0.00418598
0.0042174
0.00425267
0.00429154
0.00433291
0.00437716
0.00442484
0.00405509
0.00405418
0.00405327
0.00405236
0.00405145
0.00405055
0.00404965
0.00404875
0.00404786
0.00404697
0.00404609
0.00404522
0.00404436
0.00404351
0.00404268
0.00404187
0.00404111
0.00404039
0.00403977
0.00403927
0.00403901
0.00403915
0.0040401
0.00404156
0.00404328
0.00404539
0.00404806
0.0040514
0.00405452
0.00405714
0.00405936
0.00406127
0.00406294
0.00406444
0.00406583
0.00406717
0.00406851
0.0040699
0.00407135
0.00407291
0.00407458
0.00407635
0.00407822
0.00408013
0.00408206
0.00408395
0.00408577
0.00408749
0.00408907
0.00405509
0.00405417
0.00405326
0.00405235
0.00405145
0.00405054
0.00404964
0.00404874
0.00404785
0.00404696
0.00404608
0.00404521
0.00404434
0.00404349
0.00404266
0.00404186
0.00404109
0.00404038
0.00403975
0.00403926
0.004039
0.00403916
0.00404012
0.00404159
0.00404331
0.00404544
0.00404812
0.00405147
0.00405462
0.00405725
0.00405948
0.00406139
0.00406306
0.00406456
0.00406596
0.0040673
0.00406864
0.00407003
0.0040715
0.00407307
0.00407475
0.00407655
0.00407844
0.0040804
0.00408238
0.00408433
0.00408621
0.00408799
0.00408965
0.00405508
0.00405417
0.00405325
0.00405234
0.00405143
0.00405052
0.00404962
0.00404872
0.00404783
0.00404694
0.00404606
0.00404518
0.00404432
0.00404347
0.00404264
0.00404183
0.00404107
0.00404036
0.00403974
0.00403925
0.004039
0.00403917
0.00404016
0.00404164
0.00404339
0.00404553
0.00404823
0.00405162
0.00405475
0.00405738
0.00405961
0.00406152
0.0040632
0.0040647
0.0040661
0.00406745
0.00406881
0.00407021
0.0040717
0.0040733
0.00407502
0.00407687
0.00407883
0.00408087
0.00408293
0.00408497
0.00408695
0.00408883
0.00409059
0.00405508
0.00405416
0.00405324
0.00405233
0.00405142
0.00405051
0.00404961
0.0040487
0.00404781
0.00404692
0.00404603
0.00404516
0.00404429
0.00404344
0.00404261
0.00404181
0.00404104
0.00404034
0.00403972
0.00403924
0.00403899
0.00403918
0.00404019
0.00404169
0.00404345
0.00404561
0.00404833
0.00405174
0.00405488
0.00405751
0.00405973
0.00406165
0.00406333
0.00406484
0.00406624
0.0040676
0.00406897
0.00407039
0.0040719
0.00407353
0.0040753
0.00407721
0.00407924
0.00408135
0.0040835
0.00408564
0.00408772
0.00408971
0.00409156
0.00405508
0.00405415
0.00405323
0.00405232
0.0040514
0.00405049
0.00404958
0.00404868
0.00404778
0.00404689
0.004046
0.00404513
0.00404426
0.00404341
0.00404258
0.00404178
0.00404101
0.00404031
0.00403969
0.00403922
0.00403899
0.00403918
0.00404023
0.00404175
0.00404352
0.0040457
0.00404844
0.00405188
0.00405501
0.00405764
0.00405987
0.00406178
0.00406347
0.00406498
0.00406639
0.00406776
0.00406914
0.00407058
0.00407212
0.0040738
0.00407562
0.0040776
0.00407971
0.00408192
0.00408417
0.00408642
0.00408862
0.00409072
0.0040927
0.00405507
0.00405414
0.00405322
0.0040523
0.00405138
0.00405047
0.00404956
0.00404865
0.00404775
0.00404685
0.00404597
0.00404509
0.00404422
0.00404337
0.00404254
0.00404174
0.00404098
0.00404028
0.00403966
0.0040392
0.00403898
0.00403919
0.00404028
0.00404181
0.00404359
0.00404579
0.00404856
0.00405202
0.00405515
0.00405778
0.00406001
0.00406193
0.00406361
0.00406513
0.00406654
0.00406792
0.00406932
0.00407078
0.00407236
0.00407407
0.00407595
0.00407799
0.00408019
0.00408249
0.00408486
0.00408722
0.00408953
0.00409176
0.00409386
0.00405507
0.00405414
0.00405321
0.00405228
0.00405136
0.00405044
0.00404953
0.00404862
0.00404772
0.00404682
0.00404593
0.00404505
0.00404419
0.00404333
0.0040425
0.0040417
0.00404094
0.00404024
0.00403963
0.00403917
0.00403896
0.0040392
0.00404031
0.00404186
0.00404367
0.00404588
0.00404868
0.00405217
0.0040553
0.00405792
0.00406015
0.00406207
0.00406375
0.00406528
0.0040667
0.00406809
0.0040695
0.00407099
0.00407259
0.00407435
0.00407628
0.0040784
0.00408068
0.00408308
0.00408556
0.00408804
0.00409047
0.00409283
0.00409506
0.00405506
0.00405412
0.00405319
0.00405226
0.00405133
0.00405041
0.00404949
0.00404858
0.00404767
0.00404678
0.00404589
0.004045
0.00404414
0.00404329
0.00404246
0.00404166
0.0040409
0.0040402
0.0040396
0.00403915
0.00403895
0.0040392
0.00404036
0.00404193
0.00404375
0.00404598
0.0040488
0.00405232
0.00405545
0.00405808
0.0040603
0.00406222
0.00406391
0.00406543
0.00406686
0.00406826
0.00406969
0.0040712
0.00407284
0.00407464
0.00407663
0.00407882
0.0040812
0.0040837
0.00408628
0.00408889
0.00409145
0.00409394
0.0040963
0.00405505
0.00405411
0.00405317
0.00405224
0.00405131
0.00405038
0.00404946
0.00404855
0.00404764
0.00404674
0.00404584
0.00404496
0.00404409
0.00404324
0.00404241
0.00404161
0.00404085
0.00404016
0.00403956
0.00403912
0.00403893
0.0040392
0.0040404
0.00404199
0.00404383
0.00404609
0.00404893
0.00405247
0.0040556
0.00405823
0.00406046
0.00406237
0.00406406
0.00406559
0.00406703
0.00406844
0.00406988
0.00407141
0.00407308
0.00407493
0.00407699
0.00407926
0.00408172
0.00408433
0.00408703
0.00408975
0.00409245
0.00409508
0.00409757
0.00405504
0.00405409
0.00405315
0.00405221
0.00405127
0.00405034
0.00404941
0.00404849
0.00404758
0.00404668
0.00404578
0.0040449
0.00404403
0.00404318
0.00404235
0.00404155
0.0040408
0.00404011
0.00403952
0.00403908
0.00403891
0.00403921
0.00404044
0.00404205
0.00404392
0.0040462
0.00404906
0.00405264
0.00405577
0.0040584
0.00406062
0.00406254
0.00406423
0.00406576
0.0040672
0.00406862
0.00407008
0.00407164
0.00407334
0.00407524
0.00407735
0.0040797
0.00408226
0.00408497
0.00408778
0.00409063
0.00409345
0.00409621
0.00409884
0.00405504
0.00405408
0.00405313
0.00405218
0.00405124
0.0040503
0.00404937
0.00404845
0.00404754
0.00404663
0.00404573
0.00404485
0.00404398
0.00404312
0.00404229
0.0040415
0.00404075
0.00404006
0.00403947
0.00403904
0.00403888
0.00403921
0.00404048
0.00404212
0.00404401
0.00404631
0.0040492
0.0040528
0.00405594
0.00405856
0.00406079
0.0040627
0.00406439
0.00406593
0.00406738
0.00406881
0.00407028
0.00407186
0.0040736
0.00407554
0.00407772
0.00408014
0.00408278
0.0040856
0.00408852
0.00409148
0.00409443
0.00409732
0.00410008
0.00405503
0.00405406
0.0040531
0.00405215
0.0040512
0.00405026
0.00404932
0.00404839
0.00404747
0.00404657
0.00404567
0.00404478
0.00404391
0.00404306
0.00404223
0.00404143
0.00404068
0.00404
0.00403942
0.004039
0.00403886
0.0040392
0.00404052
0.00404219
0.00404409
0.00404642
0.00404934
0.00405298
0.00405612
0.00405874
0.00406096
0.00406288
0.00406457
0.0040661
0.00406756
0.004069
0.00407049
0.00407209
0.00407387
0.00407585
0.00407809
0.00408059
0.00408332
0.00408623
0.00408926
0.00409234
0.00409541
0.00409843
0.00410131
0.00405502
0.00405405
0.00405308
0.00405212
0.00405116
0.00405021
0.00404927
0.00404834
0.00404742
0.0040465
0.0040456
0.00404471
0.00404384
0.00404299
0.00404216
0.00404137
0.00404062
0.00403994
0.00403937
0.00403896
0.00403883
0.0040392
0.00404057
0.00404226
0.00404419
0.00404654
0.00404948
0.00405316
0.00405629
0.00405892
0.00406114
0.00406305
0.00406474
0.00406628
0.00406774
0.00406919
0.0040707
0.00407233
0.00407413
0.00407617
0.00407846
0.00408104
0.00408386
0.00408686
0.00409
0.00409319
0.00409638
0.00409952
0.00410251
0.00405501
0.00405402
0.00405305
0.00405208
0.00405111
0.00405016
0.00404921
0.00404828
0.00404735
0.00404643
0.00404553
0.00404464
0.00404376
0.00404291
0.00404208
0.00404129
0.00404055
0.00403988
0.00403931
0.00403891
0.0040388
0.0040392
0.00404061
0.00404232
0.00404428
0.00404666
0.00404964
0.00405334
0.00405648
0.00405911
0.00406133
0.00406324
0.00406493
0.00406647
0.00406793
0.00406939
0.00407091
0.00407257
0.00407441
0.00407649
0.00407885
0.00408149
0.00408439
0.0040875
0.00409073
0.00409404
0.00409734
0.00410059
0.0041037
0.004055
0.004054
0.00405302
0.00405204
0.00405107
0.00405011
0.00404915
0.00404821
0.00404728
0.00404636
0.00404545
0.00404456
0.00404368
0.00404283
0.00404201
0.00404122
0.00404048
0.00403981
0.00403925
0.00403886
0.00403877
0.00403919
0.00404065
0.0040424
0.00404438
0.00404678
0.00404979
0.00405353
0.00405668
0.0040593
0.00406152
0.00406343
0.00406511
0.00406666
0.00406813
0.00406959
0.00407113
0.00407281
0.00407468
0.00407681
0.00407923
0.00408194
0.00408493
0.00408812
0.00409145
0.00409486
0.00409827
0.00410163
0.00410484
0.00405499
0.00405398
0.00405298
0.00405199
0.00405102
0.00405005
0.00404909
0.00404814
0.0040472
0.00404628
0.00404537
0.00404448
0.0040436
0.00404275
0.00404192
0.00404113
0.0040404
0.00403974
0.00403919
0.00403881
0.00403873
0.00403919
0.0040407
0.00404247
0.00404448
0.00404691
0.00404994
0.00405372
0.00405687
0.0040595
0.00406171
0.00406362
0.00406531
0.00406685
0.00406832
0.0040698
0.00407135
0.00407305
0.00407496
0.00407713
0.00407961
0.00408239
0.00408545
0.00408873
0.00409215
0.00409565
0.00409916
0.00410261
0.00410592
0.00405497
0.00405395
0.00405295
0.00405195
0.00405096
0.00404998
0.00404902
0.00404807
0.00404712
0.0040462
0.00404528
0.00404439
0.00404351
0.00404266
0.00404183
0.00404105
0.00404032
0.00403966
0.00403912
0.00403876
0.00403869
0.00403918
0.00404074
0.00404254
0.00404458
0.00404703
0.0040501
0.00405391
0.00405707
0.0040597
0.00406192
0.00406382
0.0040655
0.00406705
0.00406853
0.00407001
0.00407158
0.0040733
0.00407524
0.00407745
0.00407998
0.00408283
0.00408596
0.00408932
0.00409282
0.00409641
0.0041
0.00410354
0.00410692
0.00405496
0.00405393
0.00405291
0.0040519
0.0040509
0.00404992
0.00404895
0.00404799
0.00404704
0.00404611
0.00404519
0.00404429
0.00404341
0.00404256
0.00404174
0.00404096
0.00404023
0.00403958
0.00403905
0.00403869
0.00403865
0.00403917
0.00404077
0.00404261
0.00404468
0.00404716
0.00405026
0.0040541
0.00405728
0.00405991
0.00406212
0.00406402
0.00406571
0.00406725
0.00406873
0.00407023
0.00407181
0.00407355
0.00407552
0.00407778
0.00408036
0.00408327
0.00408647
0.0040899
0.00409348
0.00409715
0.00410082
0.00410444
0.0041079
0.00405494
0.0040539
0.00405287
0.00405185
0.00405084
0.00404985
0.00404887
0.0040479
0.00404695
0.00404601
0.00404509
0.00404419
0.00404331
0.00404246
0.00404164
0.00404086
0.00404014
0.00403949
0.00403897
0.00403863
0.00403861
0.00403915
0.00404081
0.00404268
0.00404477
0.00404729
0.00405042
0.0040543
0.00405749
0.00406012
0.00406233
0.00406423
0.00406592
0.00406746
0.00406894
0.00407045
0.00407204
0.00407381
0.00407581
0.0040781
0.00408074
0.00408371
0.00408697
0.00409047
0.00409412
0.00409786
0.00410161
0.00410529
0.00410881
0.00405493
0.00405387
0.00405282
0.00405179
0.00405078
0.00404977
0.00404878
0.00404781
0.00404685
0.00404591
0.00404499
0.00404409
0.00404321
0.00404235
0.00404154
0.00404076
0.00404004
0.00403941
0.00403889
0.00403857
0.00403857
0.00403915
0.00404085
0.00404276
0.00404488
0.00404742
0.00405059
0.0040545
0.0040577
0.00406034
0.00406255
0.00406445
0.00406613
0.00406767
0.00406916
0.00407067
0.00407228
0.00407406
0.00407609
0.00407843
0.00408112
0.00408414
0.00408747
0.00409102
0.00409474
0.00409855
0.00410236
0.0041061
0.00410968
0.00405491
0.00405384
0.00405278
0.00405174
0.00405071
0.0040497
0.0040487
0.00404772
0.00404676
0.00404582
0.00404489
0.00404399
0.00404311
0.00404226
0.00404144
0.00404067
0.00403995
0.00403932
0.00403882
0.00403851
0.00403853
0.00403914
0.00404089
0.00404283
0.00404498
0.00404756
0.00405076
0.00405469
0.0040579
0.00406055
0.00406276
0.00406466
0.00406633
0.00406788
0.00406937
0.00407089
0.00407251
0.00407432
0.00407638
0.00407876
0.00408149
0.00408457
0.00408795
0.00409157
0.00409535
0.00409922
0.00410308
0.00410687
0.0041105
0.0040549
0.00405381
0.00405274
0.00405169
0.00405065
0.00404964
0.00404863
0.00404765
0.00404668
0.00404574
0.00404481
0.0040439
0.00404302
0.00404217
0.00404136
0.00404059
0.00403988
0.00403926
0.00403876
0.00403846
0.0040385
0.00403914
0.00404093
0.00404291
0.00404508
0.00404768
0.00405091
0.00405488
0.0040581
0.00406074
0.00406296
0.00406486
0.00406653
0.00406808
0.00406957
0.0040711
0.00407274
0.00407457
0.00407666
0.00407908
0.00408186
0.004085
0.00408843
0.0040921
0.00409594
0.00409987
0.00410378
0.00410761
0.00411128
0.00405489
0.00405379
0.00405271
0.00405165
0.00405061
0.00404959
0.00404858
0.00404759
0.00404662
0.00404567
0.00404474
0.00404383
0.00404295
0.0040421
0.00404129
0.00404052
0.00403982
0.0040392
0.00403871
0.00403843
0.00403848
0.00403915
0.00404097
0.00404297
0.00404517
0.0040478
0.00405105
0.00405504
0.00405828
0.00406093
0.00406315
0.00406504
0.00406672
0.00406827
0.00406977
0.00407131
0.00407296
0.00407481
0.00407694
0.00407939
0.00408223
0.00408541
0.0040889
0.00409263
0.00409652
0.00410049
0.00410445
0.00410832
0.00411202
0.00405487
0.00405376
0.00405268
0.00405161
0.00405056
0.00404953
0.00404852
0.00404753
0.00404656
0.00404561
0.00404468
0.00404377
0.00404289
0.00404204
0.00404123
0.00404046
0.00403976
0.00403915
0.00403867
0.00403839
0.00403846
0.00403915
0.00404101
0.00404304
0.00404526
0.00404791
0.00405119
0.00405521
0.00405845
0.00406111
0.00406333
0.00406523
0.00406691
0.00406846
0.00406996
0.00407151
0.00407318
0.00407505
0.00407721
0.00407971
0.00408259
0.00408582
0.00408936
0.00409315
0.00409709
0.00410111
0.0041051
0.004109
0.00411272
0.00409016
0.00409134
0.00409259
0.00409395
0.00409541
0.004097
0.00409871
0.00410058
0.00410261
0.00410484
0.00410728
0.00410999
0.00411301
0.00411641
0.00412025
0.00412464
0.00412969
0.00413557
0.00414251
0.0041508
0.00416084
0.00417318
0.00418861
0.00420824
0.0042337
0.00426748
0.00431377
0.00437995
0.00448094
0.004647
0.0049694
0.00568171
0.00881719
0.00831721
0.00409079
0.00409202
0.00409334
0.00409477
0.00409633
0.00409802
0.00409988
0.00410191
0.00410415
0.00410662
0.00410938
0.00411246
0.00411593
0.00411988
0.00412433
0.0041294
0.00413523
0.00414199
0.00414994
0.00415941
0.00417087
0.00418496
0.00420259
0.00422508
0.00425438
0.00429348
0.00434733
0.00442439
0.00454275
0.00473485
0.00512274
0.00592272
0.0100251
0.00854068
0.0040918
0.0040931
0.00409451
0.00409604
0.0040977
0.00409953
0.00410153
0.00410375
0.00410621
0.00410896
0.00411205
0.00411555
0.00411954
0.00412415
0.00412937
0.00413535
0.00414223
0.00415023
0.00415964
0.00417086
0.00418443
0.00420114
0.00422211
0.00424896
0.00428412
0.00433131
0.00439685
0.00449084
0.00463796
0.00487074
0.00538658
0.00631257
0.0122824
0.00862192
0.00409283
0.00409421
0.00409571
0.00409734
0.00409912
0.00410108
0.00410324
0.00410565
0.00410834
0.00411136
0.00411479
0.0041187
0.00412322
0.00412852
0.00413456
0.00414151
0.00414956
0.00415896
0.00417004
0.00418326
0.00419928
0.00421902
0.00424383
0.00427566
0.0043175
0.00437385
0.00445256
0.00456513
0.00474473
0.00501787
0.00568744
0.00671149
0.0149562
0.00877796
0.00409405
0.00409552
0.00409712
0.00409888
0.0041008
0.00410293
0.00410529
0.00410793
0.00411089
0.00411425
0.00411808
0.00412251
0.00412767
0.00413378
0.00414082
0.00414898
0.0041585
0.00416968
0.00418296
0.00419889
0.00421827
0.00424226
0.00427255
0.00431161
0.00436328
0.00443318
0.0045319
0.00467204
0.00491065
0.00532823
0.00639574
0.00843316
0.0165481
0.00888132
0.0040953
0.00409687
0.00409858
0.00410046
0.00410254
0.00410485
0.00410742
0.0041103
0.00411357
0.00411729
0.00412157
0.00412655
0.00413241
0.00413944
0.00414758
0.00415708
0.00416823
0.00418145
0.00419724
0.00421631
0.00423963
0.00426862
0.00430536
0.00435294
0.0044162
0.00450193
0.00462423
0.00479564
0.00511967
0.00570657
0.0072271
0.00998298
0.0186563
0.00900122
0.00409658
0.00409825
0.00410008
0.00410211
0.00410434
0.00410684
0.00410964
0.00411279
0.00411639
0.00412051
0.00412528
0.00413088
0.00413753
0.00414558
0.00415496
0.00416597
0.004179
0.00419455
0.00421327
0.00423601
0.00426399
0.00429894
0.00434341
0.00440121
0.00447842
0.00458308
0.00473391
0.00496274
0.0054046
0.00622843
0.00828635
0.0117577
0.0207921
0.00913911
0.00409791
0.00409969
0.00410165
0.00410382
0.00410624
0.00410894
0.00411198
0.00411544
0.00411939
0.00412395
0.00412927
0.00413556
0.00414309
0.00415231
0.0041631
0.00417586
0.00419105
0.0042093
0.00423144
0.00425853
0.00429206
0.00433414
0.00438797
0.00445814
0.00455242
0.00468508
0.00488689
0.00519827
0.00581417
0.00700064
0.00971133
0.0139834
0.0226784
0.00930054
0.00409929
0.00410118
0.00410328
0.00410561
0.00410821
0.00411114
0.00411445
0.00411823
0.00412257
0.00412762
0.00413355
0.00414061
0.00414913
0.00415967
0.00417209
0.00418686
0.00420457
0.004226
0.00425218
0.00428446
0.00432469
0.00437547
0.0044408
0.00452863
0.00465469
0.00482975
0.00510555
0.00556538
0.00647301
0.0082111
0.0116636
0.0165188
0.0228002
0.00949757
0.00410065
0.00410267
0.00410491
0.0041074
0.00411019
0.00411334
0.00411693
0.00412104
0.0041258
0.00413135
0.00413792
0.0041458
0.00415538
0.00416733
0.00418149
0.00419843
0.00421886
0.00424374
0.00427433
0.00431227
0.00435983
0.00442016
0.00449813
0.00460678
0.00476804
0.00499185
0.00535452
0.0059834
0.00720448
0.00947465
0.0135524
0.0184152
0.0221966
0.0097337
0.00410199
0.00410413
0.0041065
0.00410916
0.00411214
0.00411553
0.00411939
0.00412384
0.00412901
0.00413509
0.00414231
0.00415103
0.00416171
0.00417514
0.00419113
0.00421036
0.00423366
0.00426218
0.0042974
0.00434132
0.00439661
0.00446701
0.0045583
0.0046876
0.00488721
0.00516248
0.00561684
0.00641865
0.00794124
0.0106027
0.0151502
0.0198397
0.0215879
0.010006
0.00410333
0.00410558
0.0041081
0.00411092
0.0041141
0.00411772
0.00412187
0.00412667
0.00413227
0.00413889
0.00414681
0.00415641
0.00416825
0.00418326
0.00420122
0.0042229
0.00424932
0.00428179
0.0043221
0.00437257
0.00443641
0.00451799
0.00462549
0.00478561
0.00502579
0.00536738
0.00594263
0.00696835
0.00883787
0.0117574
0.016561
0.0209334
0.0207374
0.01032
0.00410464
0.00410701
0.00410967
0.00411266
0.00411604
0.0041199
0.00412434
0.00412949
0.00413553
0.0041427
0.00415132
0.00416183
0.00417487
0.00419151
0.00421151
0.00423576
0.00426543
0.00430204
0.00434766
0.00440502
0.00447785
0.00457122
0.00469751
0.00489039
0.00517545
0.00559256
0.00630591
0.0075773
0.00978509
0.012805
0.017738
0.0218195
0.0201635
0.0106864
0.00410592
0.00410842
0.00411122
0.00411438
0.00411797
0.00412207
0.0041268
0.00413232
0.00413881
0.00414655
0.00415589
0.00416734
0.00418164
0.00419999
0.00422214
0.00424911
0.00428225
0.00432331
0.00437468
0.00443954
0.00452223
0.00463052
0.00478289
0.00501194
0.00535376
0.00587217
0.00676893
0.00833352
0.0107908
0.0139001
0.0187186
0.0223003
0.0196876
0.0111162
0.00410717
0.00410978
0.00411273
0.00411605
0.00411984
0.00412418
0.0041292
0.00413508
0.00414202
0.00415032
0.00416038
0.00417278
0.00418833
0.0042084
0.00423272
0.00426245
0.00429908
0.00434465
0.00440185
0.00447431
0.00456705
0.00468968
0.00486999
0.00513668
0.005539
0.00616475
0.00724477
0.0090229
0.0116244
0.0147272
0.0193688
0.0225763
0.0197913
0.0116282
0.00410834
0.00411107
0.00411415
0.00411763
0.00412161
0.00412618
0.00413148
0.0041377
0.00414508
0.00415392
0.00416469
0.00417801
0.00419479
0.00421656
0.00424301
0.00427543
0.00431552
0.00436551
0.00442845
0.00450842
0.00461106
0.00474703
0.00495262
0.00525832
0.00572031
0.00644966
0.00768948
0.00956391
0.0122515
0.0152684
0.0197573
0.0227482
0.0195119
0.0122263
0.00410944
0.00411228
0.00411549
0.00411913
0.00412328
0.00412808
0.00413365
0.00414021
0.004148
0.00415737
0.00416882
0.00418304
0.00420101
0.00422443
0.00425296
0.00428802
0.00433147
0.00438578
0.0044543
0.00454157
0.00465385
0.00480279
0.00502795
0.00537478
0.00589379
0.00671756
0.00803422
0.0099736
0.0127237
0.0156301
0.0200287
0.0228065
0.0203398
0.0129093
0.00411051
0.00411346
0.00411679
0.00412058
0.00412492
0.00412993
0.00413578
0.00414267
0.00415088
0.00416078
0.00417292
0.00418803
0.00420721
0.00423232
0.00426298
0.00430076
0.0043477
0.00440652
0.00448094
0.00457597
0.00469864
0.00486209
0.00511827
0.00550801
0.00609792
0.00703072
0.00839953
0.010438
0.0132433
0.0161077
0.020295
0.0227939
0.0210325
0.0136836
0.00411152
0.00411457
0.00411802
0.00412196
0.00412647
0.0041317
0.0041378
0.00414501
0.00415362
0.00416404
0.00417684
0.00419283
0.00421319
0.00423994
0.00427269
0.00431312
0.00436348
0.00442675
0.00450698
0.00460969
0.00474266
0.00492024
0.00520689
0.00564133
0.00630062
0.00729711
0.0087162
0.0108379
0.0136728
0.0164774
0.0204473
0.0228507
0.0219741
0.0145969
0.00411248
0.00411563
0.00411921
0.00412328
0.00412796
0.00413339
0.00413975
0.00414727
0.00415628
0.0041672
0.00418065
0.00419751
0.00421903
0.00424742
0.00428224
0.00432533
0.00437913
0.00444687
0.00453299
0.00464355
0.00478711
0.00498044
0.00530068
0.00578279
0.00651454
0.00754322
0.00902064
0.0112267
0.0140589
0.0168119
0.0205742
0.0230115
0.0236995
0.0156646
0.00411338
0.00411662
0.00412031
0.00412452
0.00412936
0.00413499
0.00414159
0.00414941
0.0041588
0.0041702
0.00418429
0.00420198
0.00422464
0.00425462
0.00429146
0.00433716
0.00439433
0.0044665
0.00455847
0.00467684
0.00483103
0.00504029
0.00539543
0.00592638
0.00671088
0.00776062
0.00929757
0.0115737
0.0143829
0.0170817
0.0206725
0.0233525
0.0256961
0.0169382
0.00411423
0.00411756
0.00412136
0.00412569
0.00413069
0.0041365
0.00414334
0.00415145
0.0041612
0.00417307
0.00418777
0.00420627
0.00423003
0.00426156
0.00430039
0.00434863
0.00440913
0.00448565
0.00458341
0.00470957
0.00487441
0.0050996
0.00549072
0.00607035
0.00687996
0.00795106
0.00954527
0.0118788
0.0146491
0.0173026
0.0207821
0.0238684
0.0280936
0.0184672
0.00411504
0.00411846
0.00412236
0.00412682
0.00413196
0.00413796
0.00414502
0.00415341
0.00416352
0.00417585
0.00419115
0.00421044
0.00423529
0.00426837
0.00430916
0.00435996
0.0044238
0.00450475
0.00460843
0.0047426
0.00491849
0.00516417
0.00559255
0.00622293
0.0070391
0.00814129
0.0098034
0.0121928
0.0149153
0.017543
0.0209638
0.0247234
0.0308777
0.0203118
0.0041158
0.0041193
0.00412329
0.00412786
0.00413315
0.00413932
0.00414659
0.00415525
0.00416569
0.00417846
0.00419433
0.00421439
0.00424028
0.00427483
0.00431753
0.00437079
0.00443786
0.00452309
0.00463253
0.00477454
0.00496127
0.00522543
0.00569162
0.0063546
0.00717337
0.00830355
0.0100238
0.0124503
0.0151121
0.0177112
0.0211362
0.0258483
0.0346188
0.0226172
0.00405486
0.00405374
0.00405264
0.00405157
0.00405051
0.00404948
0.00404846
0.00404747
0.00404649
0.00404554
0.0040446
0.0040437
0.00404282
0.00404197
0.00404116
0.0040404
0.0040397
0.00403909
0.00403862
0.00403836
0.00403844
0.00403916
0.00404105
0.00404311
0.00404535
0.00404804
0.00405137
0.00405543
0.00405869
0.00406136
0.00406358
0.00406548
0.00406717
0.00406873
0.00407026
0.00407183
0.00407355
0.0040755
0.00407776
0.00408041
0.00408347
0.00408692
0.00409072
0.00409478
0.00409904
0.00410339
0.00410772
0.00411198
0.00411599
0.00405485
0.00405372
0.00405261
0.00405153
0.00405047
0.00404943
0.0040484
0.0040474
0.00404643
0.00404547
0.00404453
0.00404363
0.00404275
0.0040419
0.00404109
0.00404033
0.00403964
0.00403904
0.00403857
0.00403832
0.00403842
0.00403917
0.00404109
0.00404317
0.00404545
0.00404817
0.00405155
0.00405565
0.00405893
0.00406161
0.00406383
0.00406574
0.00406743
0.004069
0.00407055
0.00407216
0.00407393
0.00407596
0.00407833
0.00408113
0.00408438
0.00408807
0.00409213
0.0040965
0.00410108
0.00410578
0.00411045
0.00411514
0.00411942
0.00405484
0.0040537
0.00405258
0.00405149
0.00405042
0.00404937
0.00404835
0.00404734
0.00404636
0.0040454
0.00404446
0.00404355
0.00404267
0.00404183
0.00404102
0.00404026
0.00403958
0.00403898
0.00403852
0.00403828
0.0040384
0.00403917
0.00404113
0.00404324
0.00404555
0.00404831
0.00405172
0.00405587
0.00405917
0.00406185
0.00406409
0.004066
0.00406769
0.00406928
0.00407085
0.00407249
0.00407432
0.00407643
0.00407892
0.00408188
0.00408534
0.00408927
0.00409362
0.00409831
0.00410325
0.00410834
0.00411337
0.00411853
0.00412312
0.00405482
0.00405367
0.00405254
0.00405144
0.00405036
0.00404931
0.00404828
0.00404727
0.00404628
0.00404532
0.00404438
0.00404347
0.00404259
0.00404175
0.00404094
0.00404019
0.00403951
0.00403892
0.00403847
0.00403824
0.00403838
0.00403918
0.00404117
0.00404331
0.00404565
0.00404845
0.00405191
0.0040561
0.00405942
0.00406211
0.00406435
0.00406626
0.00406796
0.00406956
0.00407115
0.00407283
0.00407472
0.00407692
0.00407954
0.00408268
0.00408636
0.00409055
0.0040952
0.00410024
0.00410555
0.00411105
0.00411646
0.00412214
0.00412704
0.00405481
0.00405364
0.0040525
0.00405139
0.00405031
0.00404925
0.00404821
0.0040472
0.00404621
0.00404524
0.00404431
0.00404339
0.00404252
0.00404167
0.00404087
0.00404012
0.00403944
0.00403886
0.00403842
0.0040382
0.00403836
0.00403918
0.00404121
0.00404339
0.00404576
0.00404859
0.0040521
0.00405633
0.00405967
0.00406237
0.00406461
0.00406653
0.00406824
0.00406984
0.00407146
0.00407318
0.00407513
0.00407742
0.00408018
0.0040835
0.00408741
0.00409188
0.00409686
0.00410227
0.00410798
0.00411393
0.00411973
0.00412598
0.00413121
0.0040548
0.00405362
0.00405247
0.00405135
0.00405026
0.00404919
0.00404815
0.00404713
0.00404614
0.00404517
0.00404423
0.00404332
0.00404244
0.00404159
0.00404079
0.00404005
0.00403937
0.0040388
0.00403837
0.00403816
0.00403833
0.00403918
0.00404125
0.00404346
0.00404586
0.00404873
0.00405228
0.00405655
0.00405991
0.00406262
0.00406487
0.00406679
0.00406851
0.00407013
0.00407177
0.00407353
0.00407555
0.00407794
0.00408084
0.00408436
0.00408851
0.00409326
0.00409858
0.00410438
0.0041105
0.00411693
0.00412314
0.00412998
0.00413555
0.00405478
0.00405359
0.00405243
0.0040513
0.0040502
0.00404912
0.00404807
0.00404705
0.00404606
0.00404509
0.00404415
0.00404323
0.00404235
0.00404151
0.00404072
0.00403997
0.0040393
0.00403873
0.00403831
0.00403812
0.00403831
0.00403919
0.00404129
0.00404353
0.00404597
0.00404887
0.00405248
0.00405678
0.00406016
0.00406288
0.00406513
0.00406706
0.00406878
0.00407042
0.00407208
0.00407389
0.00407598
0.00407848
0.00408153
0.00408525
0.00408965
0.00409472
0.00410039
0.00410662
0.00411317
0.0041201
0.00412673
0.00413421
0.00414014
0.00405476
0.00405356
0.00405239
0.00405125
0.00405013
0.00404905
0.004048
0.00404697
0.00404597
0.004045
0.00404406
0.00404315
0.00404227
0.00404143
0.00404063
0.0040399
0.00403923
0.00403867
0.00403826
0.00403808
0.00403828
0.0040392
0.00404134
0.00404361
0.00404608
0.00404902
0.00405268
0.00405702
0.00406042
0.00406314
0.0040654
0.00406733
0.00406906
0.00407071
0.0040724
0.00407426
0.00407642
0.00407903
0.00408225
0.00408619
0.00409086
0.00409625
0.0041023
0.00410897
0.00411598
0.00412344
0.00413052
0.00413869
0.00414497
0.00405475
0.00405353
0.00405235
0.0040512
0.00405008
0.00404899
0.00404793
0.00404689
0.00404589
0.00404492
0.00404397
0.00404306
0.00404218
0.00404134
0.00404055
0.00403982
0.00403916
0.0040386
0.0040382
0.00403803
0.00403826
0.0040392
0.00404138
0.00404369
0.00404619
0.00404917
0.00405288
0.00405725
0.00406067
0.00406341
0.00406566
0.0040676
0.00406934
0.004071
0.00407272
0.00407463
0.00407687
0.0040796
0.00408299
0.00408715
0.00409209
0.00409783
0.00410427
0.00411139
0.00411888
0.00412689
0.00413443
0.00414328
0.00414995
0.00405474
0.00405351
0.00405231
0.00405115
0.00405002
0.00404892
0.00404786
0.00404682
0.00404581
0.00404483
0.00404389
0.00404298
0.0040421
0.00404126
0.00404047
0.00403974
0.00403909
0.00403854
0.00403814
0.00403799
0.00403824
0.0040392
0.00404142
0.00404376
0.00404629
0.00404932
0.00405307
0.00405748
0.00406092
0.00406367
0.00406593
0.00406787
0.00406961
0.0040713
0.00407305
0.004075
0.00407733
0.00408019
0.00408376
0.00408815
0.00409338
0.00409947
0.00410632
0.00411392
0.00412191
0.0041305
0.00413851
0.00414809
0.00415516
0.00405471
0.00405347
0.00405226
0.00405109
0.00404995
0.00404884
0.00404777
0.00404673
0.00404572
0.00404474
0.00404379
0.00404288
0.004042
0.00404117
0.00404038
0.00403966
0.00403901
0.00403847
0.00403808
0.00403794
0.00403821
0.00403921
0.00404147
0.00404385
0.00404641
0.00404947
0.00405328
0.00405773
0.00406118
0.00406394
0.0040662
0.00406814
0.0040699
0.0040716
0.00407338
0.0040754
0.00407781
0.0040808
0.00408456
0.0040892
0.00409474
0.0041012
0.00410849
0.00411661
0.00412511
0.00413431
0.00414283
0.00415319
0.00416065
0.00405469
0.00405343
0.00405221
0.00405103
0.00404988
0.00404877
0.00404769
0.00404664
0.00404563
0.00404465
0.0040437
0.00404279
0.00404191
0.00404108
0.00404029
0.00403957
0.00403893
0.0040384
0.00403802
0.0040379
0.00403819
0.00403922
0.00404152
0.00404393
0.00404653
0.00404963
0.00405349
0.00405797
0.00406144
0.00406421
0.00406648
0.00406842
0.00407019
0.0040719
0.00407372
0.00407579
0.00407829
0.00408143
0.00408538
0.00409027
0.00409613
0.00410298
0.00411072
0.00411935
0.00412839
0.00413821
0.00414724
0.00415836
0.00416624
0.00405468
0.0040534
0.00405217
0.00405097
0.00404982
0.00404869
0.00404761
0.00404656
0.00404554
0.00404456
0.00404361
0.00404269
0.00404182
0.00404099
0.00404021
0.00403949
0.00403885
0.00403833
0.00403796
0.00403785
0.00403816
0.00403922
0.00404156
0.00404401
0.00404664
0.00404979
0.0040537
0.00405821
0.0040617
0.00406447
0.00406675
0.0040687
0.00407047
0.00407221
0.00407406
0.00407619
0.00407879
0.00408207
0.00408623
0.00409138
0.00409756
0.00410482
0.00411302
0.00412219
0.00413178
0.00414225
0.00415182
0.00416373
0.00417205
0.00405466
0.00405337
0.00405212
0.00405091
0.00404974
0.00404862
0.00404752
0.00404647
0.00404545
0.00404446
0.00404351
0.00404259
0.00404172
0.00404089
0.00404012
0.0040394
0.00403877
0.00403825
0.0040379
0.0040378
0.00403813
0.00403923
0.00404161
0.00404409
0.00404676
0.00404995
0.00405391
0.00405846
0.00406197
0.00406475
0.00406703
0.00406898
0.00407076
0.00407252
0.00407441
0.0040766
0.0040793
0.00408274
0.00408711
0.00409253
0.00409905
0.00410673
0.00411541
0.00412515
0.00413531
0.00414645
0.00415658
0.0041693
0.00417807
0.00405464
0.00405332
0.00405206
0.00405084
0.00404967
0.00404853
0.00404743
0.00404637
0.00404535
0.00404436
0.00404341
0.00404249
0.00404162
0.00404079
0.00404002
0.00403931
0.00403869
0.00403818
0.00403784
0.00403776
0.00403811
0.00403924
0.00404166
0.00404418
0.00404689
0.00405012
0.00405414
0.00405871
0.00406224
0.00406503
0.00406731
0.00406926
0.00407105
0.00407283
0.00407476
0.00407702
0.00407983
0.00408343
0.00408801
0.00409372
0.0041006
0.00410871
0.0041179
0.00412822
0.00413897
0.00415078
0.0041615
0.00417504
0.00418427
0.00405462
0.00405329
0.00405201
0.00405078
0.00404959
0.00404845
0.00404734
0.00404628
0.00404525
0.00404426
0.0040433
0.00404239
0.00404152
0.0040407
0.00403993
0.00403922
0.00403861
0.00403811
0.00403778
0.00403771
0.00403808
0.00403925
0.00404171
0.00404427
0.00404701
0.00405028
0.00405436
0.00405896
0.00406251
0.0040653
0.00406758
0.00406955
0.00407135
0.00407315
0.00407511
0.00407744
0.00408036
0.00408413
0.00408894
0.00409494
0.00410218
0.00411075
0.00412044
0.00413136
0.00414272
0.00415522
0.00416654
0.00418091
0.00419062
0.0040546
0.00405326
0.00405196
0.00405072
0.00404952
0.00404837
0.00404726
0.00404618
0.00404515
0.00404416
0.0040432
0.00404229
0.00404142
0.0040406
0.00403983
0.00403913
0.00403852
0.00403803
0.00403771
0.00403766
0.00403805
0.00403925
0.00404176
0.00404436
0.00404713
0.00405044
0.00405457
0.00405921
0.00406278
0.00406558
0.00406786
0.00406983
0.00407164
0.00407346
0.00407547
0.00407787
0.00408091
0.00408485
0.00408989
0.0040962
0.00410381
0.00411284
0.00412307
0.0041346
0.00414659
0.00415981
0.00417176
0.00418699
0.00419719
0.00405457
0.00405321
0.0040519
0.00405064
0.00404943
0.00404827
0.00404715
0.00404608
0.00404504
0.00404405
0.00404309
0.00404218
0.00404131
0.00404049
0.00403973
0.00403904
0.00403844
0.00403795
0.00403765
0.00403761
0.00403803
0.00403926
0.00404182
0.00404445
0.00404726
0.00405062
0.00405481
0.00405948
0.00406306
0.00406586
0.00406815
0.00407012
0.00407194
0.00407379
0.00407584
0.00407832
0.00408148
0.0040856
0.00409089
0.0040975
0.00410551
0.00411502
0.00412579
0.00413796
0.00415059
0.00416453
0.00417713
0.00419323
0.00420392
0.00405455
0.00405316
0.00405184
0.00405057
0.00404935
0.00404818
0.00404705
0.00404597
0.00404493
0.00404394
0.00404298
0.00404207
0.0040412
0.00404039
0.00403963
0.00403894
0.00403835
0.00403787
0.00403758
0.00403756
0.004038
0.00403927
0.00404188
0.00404455
0.0040474
0.00405079
0.00405504
0.00405975
0.00406334
0.00406615
0.00406844
0.00407041
0.00407224
0.00407411
0.00407621
0.00407877
0.00408206
0.00408637
0.0040919
0.00409884
0.00410725
0.00411726
0.0041286
0.00414141
0.0041547
0.00416938
0.00418266
0.00419964
0.00421084
0.00405453
0.00405312
0.00405178
0.0040505
0.00404927
0.00404809
0.00404696
0.00404587
0.00404483
0.00404383
0.00404287
0.00404196
0.00404109
0.00404028
0.00403953
0.00403885
0.00403826
0.00403779
0.00403751
0.00403751
0.00403797
0.00403928
0.00404193
0.00404464
0.00404753
0.00405097
0.00405527
0.00406001
0.00406361
0.00406643
0.00406872
0.0040707
0.00407254
0.00407444
0.00407659
0.00407923
0.00408265
0.00408715
0.00409294
0.00410021
0.00410904
0.00411955
0.00413146
0.00414494
0.00415891
0.00417434
0.00418832
0.0042062
0.00421798
0.0040545
0.00405308
0.00405172
0.00405042
0.00404918
0.00404799
0.00404685
0.00404576
0.00404471
0.00404371
0.00404276
0.00404185
0.00404098
0.00404017
0.00403943
0.00403875
0.00403817
0.00403771
0.00403744
0.00403746
0.00403795
0.00403929
0.00404199
0.00404474
0.00404766
0.00405114
0.0040555
0.00406028
0.0040639
0.00406672
0.00406901
0.00407099
0.00407285
0.00407477
0.00407697
0.0040797
0.00408326
0.00408796
0.004094
0.00410162
0.00411087
0.00412191
0.00413441
0.00414857
0.00416324
0.00417944
0.00419415
0.00421299
0.00422533
0.00405447
0.00405302
0.00405165
0.00405034
0.00404908
0.00404789
0.00404674
0.00404564
0.0040446
0.00404359
0.00404264
0.00404173
0.00404087
0.00404006
0.00403932
0.00403865
0.00403808
0.00403763
0.00403737
0.00403741
0.00403792
0.0040393
0.00404205
0.00404484
0.0040478
0.00405133
0.00405575
0.00406056
0.00406419
0.00406701
0.0040693
0.00407129
0.00407316
0.00407511
0.00407736
0.00408018
0.00408388
0.00408879
0.00409511
0.00410309
0.00411278
0.00412437
0.00413748
0.00415234
0.00416774
0.00418474
0.00420025
0.00422007
0.00423292
0.00405444
0.00405297
0.00405158
0.00405025
0.00404899
0.00404778
0.00404663
0.00404553
0.00404448
0.00404347
0.00404252
0.00404161
0.00404075
0.00403995
0.00403921
0.00403855
0.00403798
0.00403755
0.00403731
0.00403736
0.00403789
0.00403932
0.00404211
0.00404494
0.00404794
0.00405151
0.00405599
0.00406083
0.00406448
0.0040673
0.0040696
0.00407158
0.00407346
0.00407544
0.00407775
0.00408067
0.00408452
0.00408964
0.00409624
0.00410458
0.00411473
0.00412687
0.00414062
0.0041562
0.00417235
0.00419016
0.00420658
0.00422733
0.0042407
0.00405442
0.00405293
0.00405152
0.00405018
0.0040489
0.00404768
0.00404652
0.00404542
0.00404436
0.00404335
0.0040424
0.00404149
0.00404063
0.00403984
0.0040391
0.00403845
0.00403789
0.00403747
0.00403724
0.0040373
0.00403787
0.00403933
0.00404217
0.00404504
0.00404807
0.00405169
0.00405623
0.00406111
0.00406476
0.00406759
0.00406989
0.00407188
0.00407377
0.00407578
0.00407815
0.00408116
0.00408516
0.0040905
0.00409738
0.0041061
0.00411671
0.00412941
0.00414379
0.0041601
0.00417702
0.00419563
0.00421293
0.00423467
0.00424859
0.00405438
0.00405287
0.00405144
0.00405008
0.00404879
0.00404757
0.0040464
0.00404529
0.00404423
0.00404323
0.00404227
0.00404136
0.00404051
0.00403972
0.00403899
0.00403834
0.00403779
0.00403738
0.00403716
0.00403725
0.00403784
0.00403934
0.00404224
0.00404515
0.00404822
0.00405188
0.00405648
0.0040614
0.00406506
0.00406789
0.00407019
0.00407218
0.00407409
0.00407613
0.00407855
0.00408167
0.00408583
0.00409139
0.00409857
0.00410767
0.00411875
0.00413203
0.00414707
0.00416411
0.0041818
0.00420123
0.00421943
0.00424216
0.00425661
0.00405435
0.00405281
0.00405136
0.00404999
0.00404869
0.00404745
0.00404628
0.00404517
0.0040441
0.0040431
0.00404214
0.00404123
0.00404039
0.0040396
0.00403887
0.00403823
0.00403769
0.00403729
0.00403709
0.0040372
0.00403781
0.00403936
0.00404231
0.00404526
0.00404837
0.00405208
0.00405674
0.00406169
0.00406536
0.00406819
0.00407049
0.00407248
0.0040744
0.00407648
0.00407896
0.00408219
0.00408652
0.0040923
0.00409979
0.00410928
0.00412086
0.00413474
0.00415045
0.00416826
0.00418676
0.00420713
0.00422625
0.00424989
0.00426492
0.00405432
0.00405275
0.00405128
0.00404989
0.00404858
0.00404734
0.00404616
0.00404504
0.00404398
0.00404297
0.00404201
0.00404111
0.00404026
0.00403948
0.00403876
0.00403813
0.0040376
0.00403721
0.00403702
0.00403714
0.00403779
0.00403937
0.00404238
0.00404537
0.00404851
0.00405227
0.00405699
0.00406197
0.00406566
0.00406849
0.00407079
0.00407279
0.00407472
0.00407683
0.00407938
0.00408271
0.00408721
0.00409322
0.00410102
0.00411092
0.004123
0.00413749
0.00415389
0.00417247
0.0041918
0.00421315
0.00423321
0.00425776
0.0042734
0.00405429
0.0040527
0.0040512
0.0040498
0.00404848
0.00404722
0.00404604
0.00404491
0.00404385
0.00404283
0.00404188
0.00404098
0.00404014
0.00403935
0.00403864
0.00403802
0.0040375
0.00403712
0.00403695
0.00403709
0.00403776
0.00403938
0.00404245
0.00404547
0.00404866
0.00405246
0.00405724
0.00406227
0.00406596
0.00406879
0.00407109
0.00407309
0.00407504
0.00407718
0.0040798
0.00408324
0.00408791
0.00409417
0.00410228
0.0041126
0.00412519
0.0041403
0.00415741
0.00417678
0.00419698
0.00421931
0.00424032
0.00426579
0.00428206
0.00405425
0.00405262
0.00405111
0.00404969
0.00404836
0.00404709
0.0040459
0.00404477
0.0040437
0.00404269
0.00404174
0.00404084
0.00404
0.00403923
0.00403852
0.0040379
0.00403739
0.00403703
0.00403687
0.00403704
0.00403774
0.0040394
0.00404252
0.00404559
0.00404882
0.00405267
0.00405751
0.00406257
0.00406627
0.0040691
0.00407139
0.0040734
0.00407536
0.00407754
0.00408023
0.0040838
0.00408864
0.00409515
0.00410359
0.00411434
0.00412747
0.00414321
0.00416106
0.00418125
0.00420244
0.00422568
0.0042477
0.00427405
0.00429099
0.00405421
0.00405256
0.00405102
0.00404959
0.00404824
0.00404697
0.00404577
0.00404464
0.00404356
0.00404255
0.0040416
0.0040407
0.00403987
0.0040391
0.0040384
0.00403779
0.00403729
0.00403694
0.0040368
0.00403698
0.00403771
0.00403942
0.0040426
0.00404571
0.00404897
0.00405287
0.00405778
0.00406287
0.00406658
0.00406941
0.0040717
0.00407371
0.00407569
0.0040779
0.00408066
0.00408435
0.00408938
0.00409614
0.00410493
0.00411611
0.00412979
0.00414619
0.00416478
0.00418585
0.00420803
0.00423219
0.00425525
0.00428249
0.00430014
0.00405418
0.0040525
0.00405094
0.00404948
0.00404812
0.00404684
0.00404564
0.0040445
0.00404343
0.00404241
0.00404146
0.00404057
0.00403974
0.00403897
0.00403828
0.00403768
0.00403719
0.00403685
0.00403672
0.00403693
0.00403768
0.00403944
0.00404267
0.00404582
0.00404913
0.00405307
0.00405804
0.00406317
0.00406689
0.00406972
0.004072
0.00407401
0.00407601
0.00407827
0.0040811
0.00408491
0.00409013
0.00409714
0.00410627
0.0041179
0.00413213
0.00414919
0.00416853
0.00419044
0.00421367
0.00423877
0.00426287
0.00429103
0.00430938
0.00405413
0.00405242
0.00405084
0.00404937
0.00404799
0.0040467
0.00404549
0.00404435
0.00404328
0.00404226
0.00404131
0.00404042
0.0040396
0.00403884
0.00403816
0.00403756
0.00403708
0.00403675
0.00403665
0.00403687
0.00403766
0.00403946
0.00404275
0.00404595
0.00404929
0.00405328
0.00405831
0.00406348
0.00406721
0.00407003
0.00407231
0.00407433
0.00407634
0.00407864
0.00408155
0.00408549
0.0040909
0.00409818
0.00410767
0.00411976
0.00413456
0.0041523
0.00417243
0.00419532
0.00421952
0.00424558
0.00427076
0.00429981
0.00431893
0.00405408
0.00405234
0.00405073
0.00404924
0.00404786
0.00404656
0.00404535
0.0040442
0.00404312
0.00404211
0.00404116
0.00404028
0.00403946
0.0040387
0.00403803
0.00403744
0.00403698
0.00403666
0.00403657
0.00403682
0.00403764
0.00403948
0.00404284
0.00404607
0.00404945
0.00405349
0.00405859
0.0040638
0.00406753
0.00407035
0.00407262
0.00407464
0.00407667
0.00407901
0.004082
0.00408608
0.00409169
0.00409925
0.0041091
0.00412168
0.00413706
0.00415551
0.00417652
0.00420037
0.00422556
0.00425262
0.00427892
0.00430885
0.00432881
0.00405404
0.00405226
0.00405063
0.00404913
0.00404773
0.00404642
0.0040452
0.00404405
0.00404297
0.00404196
0.00404101
0.00404013
0.00403931
0.00403857
0.0040379
0.00403733
0.00403687
0.00403657
0.00403649
0.00403676
0.00403761
0.0040395
0.00404292
0.0040462
0.00404962
0.0040537
0.00405886
0.00406411
0.00406785
0.00407066
0.00407293
0.00407495
0.004077
0.00407938
0.00408246
0.00408668
0.00409249
0.00410032
0.00411055
0.00412361
0.0041396
0.00415875
0.00418064
0.00420547
0.00423168
0.00425975
0.00428718
0.00431802
0.00433885
0.004054
0.00405218
0.00405053
0.00404901
0.00404759
0.00404628
0.00404505
0.0040439
0.00404282
0.00404181
0.00404086
0.00403998
0.00403917
0.00403843
0.00403777
0.00403721
0.00403676
0.00403647
0.00403641
0.00403671
0.00403759
0.00403953
0.00404301
0.00404633
0.00404978
0.00405391
0.00405913
0.00406443
0.00406817
0.00407098
0.00407324
0.00407527
0.00407734
0.00407976
0.00408292
0.00408728
0.0040933
0.00410142
0.00411203
0.00412558
0.00414218
0.00416207
0.00418489
0.0042107
0.00423794
0.00426705
0.00429563
0.00432739
0.00434912
0.00405393
0.00405209
0.00405041
0.00404887
0.00404744
0.00404612
0.00404489
0.00404373
0.00404265
0.00404164
0.0040407
0.00403983
0.00403902
0.00403829
0.00403764
0.00403708
0.00403665
0.00403638
0.00403634
0.00403665
0.00403757
0.00403956
0.0040431
0.00404646
0.00404995
0.00405413
0.00405942
0.00406476
0.0040685
0.0040713
0.00407356
0.00407558
0.00407767
0.00408015
0.0040834
0.0040879
0.00409414
0.00410256
0.00411357
0.00412763
0.00414487
0.00416557
0.00418933
0.00421611
0.00424441
0.00427459
0.00430435
0.00433701
0.00435971
0.00405388
0.004052
0.00405029
0.00404873
0.0040473
0.00404596
0.00404473
0.00404357
0.00404249
0.00404148
0.00404054
0.00403967
0.00403887
0.00403815
0.0040375
0.00403696
0.00403654
0.00403628
0.00403626
0.0040366
0.00403754
0.00403958
0.0040432
0.0040466
0.00405013
0.00405435
0.00405971
0.00406509
0.00406883
0.00407162
0.00407387
0.0040759
0.00407801
0.00408054
0.00408388
0.00408853
0.00409499
0.00410371
0.00411513
0.00412972
0.00414761
0.00416917
0.00419386
0.00422165
0.00425104
0.00428232
0.00431328
0.00434686
0.00437061
0.00405384
0.00405191
0.00405018
0.0040486
0.00404715
0.00404581
0.00404457
0.00404341
0.00404233
0.00404132
0.00404038
0.00403952
0.00403872
0.004038
0.00403737
0.00403684
0.00403643
0.00403618
0.00403618
0.00403654
0.00403752
0.00403961
0.00404329
0.00404673
0.0040503
0.00405457
0.00405999
0.00406542
0.00406916
0.00407194
0.00407418
0.00407622
0.00407835
0.00408092
0.00408436
0.00408917
0.00409584
0.00410488
0.00411671
0.00413183
0.00415038
0.00417284
0.00419848
0.00422729
0.0042578
0.00429021
0.00432239
0.00435691
0.00438176
0.00405377
0.0040518
0.00405004
0.00404845
0.00404699
0.00404564
0.00404439
0.00404323
0.00404215
0.00404115
0.00404021
0.00403935
0.00403857
0.00403786
0.00403723
0.00403671
0.00403631
0.00403609
0.0040361
0.00403649
0.0040375
0.00403964
0.00404339
0.00404687
0.00405048
0.0040548
0.00406028
0.00406576
0.00406949
0.00407227
0.0040745
0.00407654
0.00407869
0.00408132
0.00408485
0.00408982
0.00409673
0.00410609
0.00411835
0.00413402
0.00415331
0.00417663
0.00420323
0.00423309
0.00426473
0.0042983
0.0043317
0.00436717
0.00439317
0.0040537
0.00405169
0.00404991
0.00404829
0.00404682
0.00404547
0.00404421
0.00404305
0.00404197
0.00404097
0.00404004
0.00403919
0.00403841
0.00403771
0.00403709
0.00403658
0.0040362
0.00403599
0.00403602
0.00403644
0.00403748
0.00403967
0.00404349
0.00404702
0.00405066
0.00405503
0.00406058
0.0040661
0.00406983
0.00407259
0.00407482
0.00407686
0.00407904
0.00408172
0.00408535
0.00409049
0.00409764
0.00410733
0.00412004
0.00413631
0.00415637
0.00418057
0.00420818
0.00423913
0.00427195
0.00430673
0.0043414
0.00437782
0.00440512
0.00405364
0.00405159
0.00404978
0.00404814
0.00404666
0.00404529
0.00404404
0.00404287
0.0040418
0.0040408
0.00403987
0.00403902
0.00403825
0.00403756
0.00403695
0.00403645
0.00403608
0.00403589
0.00403594
0.00403638
0.00403746
0.0040397
0.00404359
0.00404716
0.00405084
0.00405525
0.00406087
0.00406644
0.00407017
0.00407292
0.00407514
0.00407718
0.00407938
0.00408212
0.00408586
0.00409117
0.00409856
0.00410859
0.00412176
0.00413867
0.00415951
0.00418461
0.00421326
0.00424534
0.00427938
0.00431541
0.0043514
0.0043888
0.0044175
0.00405357
0.00405148
0.00404964
0.00404798
0.00404649
0.00404512
0.00404386
0.00404269
0.00404161
0.00404062
0.0040397
0.00403886
0.00403809
0.0040374
0.00403681
0.00403632
0.00403597
0.00403579
0.00403586
0.00403633
0.00403744
0.00403974
0.0040437
0.00404731
0.00405102
0.00405548
0.00406117
0.00406678
0.00407051
0.00407325
0.00407546
0.00407751
0.00407973
0.00408252
0.00408637
0.00409185
0.0040995
0.00410988
0.00412351
0.0041411
0.00416272
0.00418874
0.00421845
0.00425168
0.00428696
0.00432428
0.00436158
0.00439999
0.00443016
0.00405348
0.00405135
0.00404948
0.00404781
0.0040463
0.00404492
0.00404366
0.0040425
0.00404142
0.00404043
0.00403952
0.00403868
0.00403792
0.00403725
0.00403666
0.00403619
0.00403585
0.00403569
0.00403578
0.00403628
0.00403743
0.00403978
0.00404382
0.00404746
0.00405121
0.00405572
0.00406148
0.00406714
0.00407086
0.00407358
0.00407578
0.00407783
0.00408008
0.00408294
0.0040869
0.00409256
0.00410047
0.00411121
0.00412537
0.00414362
0.00416605
0.00419302
0.00422382
0.00425823
0.00429477
0.0043334
0.00437202
0.00441148
0.00444318
0.00405341
0.00405122
0.00404932
0.00404763
0.00404612
0.00404473
0.00404347
0.0040423
0.00404123
0.00404024
0.00403934
0.00403851
0.00403776
0.00403709
0.00403652
0.00403606
0.00403573
0.00403559
0.0040357
0.00403622
0.00403741
0.00403982
0.00404393
0.00404761
0.0040514
0.00405596
0.00406178
0.0040675
0.00407121
0.00407392
0.00407611
0.00407816
0.00408044
0.00408335
0.00408743
0.00409328
0.00410145
0.00411256
0.00412728
0.0041462
0.00416945
0.00419739
0.00422931
0.00426493
0.00430277
0.00434275
0.00438272
0.00442327
0.00445657
0.00405334
0.0040511
0.00404917
0.00404746
0.00404593
0.00404454
0.00404328
0.00404211
0.00404104
0.00404006
0.00403915
0.00403833
0.00403759
0.00403694
0.00403637
0.00403592
0.00403561
0.00403548
0.00403562
0.00403617
0.0040374
0.00403985
0.00404404
0.00404777
0.00405159
0.0040562
0.00406208
0.00406785
0.00407156
0.00407425
0.00407643
0.00407848
0.00408079
0.00408377
0.00408796
0.00409399
0.00410244
0.00411392
0.00412919
0.0041488
0.00417289
0.00420182
0.00423486
0.00427171
0.00431087
0.00435222
0.00439354
0.00443523
0.00447016
0.00405323
0.00405095
0.00404899
0.00404727
0.00404573
0.00404434
0.00404307
0.0040419
0.00404084
0.00403986
0.00403896
0.00403815
0.00403742
0.00403677
0.00403622
0.00403579
0.00403549
0.00403538
0.00403554
0.00403612
0.00403738
0.0040399
0.00404417
0.00404793
0.00405179
0.00405644
0.0040624
0.00406822
0.00407191
0.00407458
0.00407675
0.00407881
0.00408114
0.00408419
0.00408851
0.00409474
0.00410347
0.00411538
0.0041312
0.00415151
0.00417646
0.00420641
0.00424061
0.00427871
0.00431921
0.00436194
0.00440461
0.00444746
0.00448408
0.00405313
0.00405079
0.00404881
0.00404707
0.00404552
0.00404412
0.00404286
0.00404169
0.00404063
0.00403966
0.00403877
0.00403797
0.00403724
0.00403661
0.00403607
0.00403565
0.00403537
0.00403528
0.00403546
0.00403607
0.00403737
0.00403995
0.0040443
0.0040481
0.00405199
0.00405669
0.00406272
0.00406859
0.00407227
0.00407492
0.00407708
0.00407914
0.0040815
0.00408462
0.00408907
0.0040955
0.00410454
0.00411689
0.0041333
0.00415435
0.00418021
0.00421123
0.00424666
0.0042861
0.00432802
0.00437223
0.00441634
0.00446042
0.00449899
0.00405304
0.00405065
0.00404863
0.00404687
0.00404532
0.00404392
0.00404264
0.00404149
0.00404043
0.00403946
0.00403858
0.00403778
0.00403707
0.00403645
0.00403592
0.00403551
0.00403525
0.00403518
0.00403538
0.00403602
0.00403736
0.00403999
0.00404443
0.00404826
0.00405219
0.00405694
0.00406303
0.00406896
0.00407263
0.00407526
0.0040774
0.00407947
0.00408186
0.00408505
0.00408964
0.00409627
0.00410564
0.00411844
0.00413544
0.00415724
0.00418405
0.00421618
0.00425287
0.00429369
0.00433708
0.00438281
0.00442839
0.00447377
0.00451439
0.00405293
0.00405048
0.00404843
0.00404666
0.0040451
0.00404369
0.00404242
0.00404127
0.00404022
0.00403925
0.00403838
0.00403759
0.00403689
0.00403628
0.00403577
0.00403537
0.00403513
0.00403507
0.0040353
0.00403597
0.00403735
0.00404004
0.00404456
0.00404843
0.00405239
0.00405719
0.00406335
0.00406934
0.00407299
0.0040756
0.00407773
0.0040798
0.00408223
0.00408549
0.00409021
0.00409707
0.00410678
0.00412003
0.00413765
0.00416024
0.00418802
0.00422128
0.00425926
0.00430149
0.00434639
0.00439365
0.00444072
0.00448748
0.00453019
0.0040528
0.0040503
0.00404822
0.00404644
0.00404487
0.00404346
0.0040422
0.00404104
0.00404
0.00403904
0.00403818
0.0040374
0.00403671
0.00403611
0.00403561
0.00403523
0.004035
0.00403497
0.00403522
0.00403592
0.00403734
0.0040401
0.00404471
0.00404861
0.0040526
0.00405744
0.00406368
0.00406972
0.00407335
0.00407594
0.00407806
0.00408013
0.00408259
0.00408594
0.00409081
0.00409791
0.00410796
0.00412169
0.00413994
0.00416335
0.00419213
0.00422657
0.00426589
0.00430958
0.00435602
0.00440487
0.00445347
0.00450168
0.00454656
0.00405268
0.00405012
0.00404802
0.00404622
0.00404464
0.00404323
0.00404197
0.00404082
0.00403978
0.00403883
0.00403798
0.00403721
0.00403653
0.00403594
0.00403546
0.00403509
0.00403488
0.00403487
0.00403514
0.00403587
0.00403734
0.00404015
0.00404485
0.00404879
0.00405281
0.0040577
0.004064
0.00407011
0.00407372
0.00407628
0.00407838
0.00408046
0.00408296
0.00408639
0.00409141
0.00409876
0.00410916
0.00412337
0.00414229
0.00416653
0.00419634
0.00423199
0.00427269
0.00431787
0.00436591
0.00441638
0.00446655
0.00451632
0.00456343
0.00405255
0.00404994
0.00404781
0.00404599
0.00404441
0.004043
0.00404173
0.00404059
0.00403956
0.00403862
0.00403777
0.00403701
0.00403634
0.00403577
0.0040353
0.00403495
0.00403476
0.00403476
0.00403507
0.00403582
0.00403733
0.00404021
0.00404499
0.00404896
0.00405302
0.00405795
0.00406432
0.00407049
0.00407408
0.00407662
0.00407871
0.0040808
0.00408333
0.00408684
0.00409202
0.00409962
0.00411039
0.0041251
0.00414469
0.00416978
0.00420066
0.00423754
0.00427965
0.00432637
0.00437603
0.00442816
0.00447994
0.00453134
0.0045807
0.00405239
0.00404972
0.00404756
0.00404574
0.00404415
0.00404275
0.00404149
0.00404035
0.00403932
0.00403839
0.00403756
0.00403681
0.00403616
0.00403559
0.00403514
0.00403481
0.00403463
0.00403466
0.00403499
0.00403577
0.00403733
0.00404027
0.00404515
0.00404915
0.00405324
0.00405822
0.00406466
0.0040709
0.00407446
0.00407696
0.00407904
0.00408113
0.0040837
0.00408731
0.00409267
0.00410053
0.00411168
0.00412692
0.00414722
0.00417322
0.0042052
0.00424339
0.00428697
0.00433529
0.00438664
0.00444047
0.00449394
0.00454709
0.00459881
0.00405223
0.0040495
0.00404732
0.00404549
0.0040439
0.0040425
0.00404124
0.00404011
0.00403909
0.00403817
0.00403735
0.00403661
0.00403597
0.00403542
0.00403498
0.00403466
0.00403451
0.00403456
0.00403491
0.00403573
0.00403733
0.00404034
0.00404531
0.00404934
0.00405345
0.00405848
0.004065
0.0040713
0.00407483
0.0040773
0.00407936
0.00408147
0.00408409
0.0040878
0.00409333
0.00410146
0.00411301
0.0041288
0.00414985
0.0041768
0.00420996
0.00424952
0.00429466
0.00434467
0.00439783
0.00445347
0.00450874
0.00456382
0.00461809
0.00405209
0.00404929
0.00404709
0.00404524
0.00404365
0.00404225
0.00404099
0.00403987
0.00403886
0.00403795
0.00403713
0.00403641
0.00403578
0.00403524
0.00403482
0.00403452
0.00403438
0.00403445
0.00403483
0.00403568
0.00403733
0.0040404
0.00404546
0.00404952
0.00405366
0.00405874
0.00406533
0.00407169
0.0040752
0.00407764
0.00407969
0.0040818
0.00408447
0.00408828
0.00409399
0.00410241
0.00411435
0.00413072
0.00415253
0.00418045
0.00421481
0.00425577
0.00430251
0.00435425
0.00440925
0.00446674
0.00452388
0.00458099
0.00463784
0.00405188
0.00404903
0.00404681
0.00404496
0.00404337
0.00404197
0.00404073
0.00403962
0.00403861
0.00403771
0.00403691
0.0040362
0.00403558
0.00403506
0.00403466
0.00403437
0.00403425
0.00403435
0.00403476
0.00403564
0.00403733
0.00404048
0.00404564
0.00404972
0.00405389
0.00405902
0.00406568
0.00407211
0.00407557
0.00407799
0.00408002
0.00408214
0.00408486
0.00408878
0.00409469
0.0041034
0.00411577
0.00413274
0.00415534
0.00418428
0.00421987
0.00426229
0.00431066
0.00436418
0.00442106
0.00448042
0.00453948
0.00459871
0.00465816
0.00405168
0.00404878
0.00404654
0.00404468
0.00404309
0.0040417
0.00404046
0.00403936
0.00403837
0.00403748
0.00403669
0.00403599
0.00403539
0.00403488
0.00403449
0.00403423
0.00403413
0.00403425
0.00403468
0.0040356
0.00403734
0.00404055
0.00404581
0.00404992
0.00405412
0.00405929
0.00406602
0.00407253
0.00407595
0.00407833
0.00408035
0.00408249
0.00408525
0.00408929
0.0040954
0.00410441
0.00411724
0.00413482
0.00415826
0.00418825
0.00422514
0.00426908
0.00431917
0.00437456
0.0044334
0.00449474
0.00455585
0.00461737
0.00467961
0.00405148
0.00404852
0.00404626
0.0040444
0.00404282
0.00404143
0.0040402
0.0040391
0.00403812
0.00403725
0.00403647
0.00403578
0.00403519
0.0040347
0.00403433
0.00403408
0.004034
0.00403414
0.0040346
0.00403556
0.00403734
0.00404063
0.00404598
0.00405011
0.00405434
0.00405956
0.00406636
0.00407295
0.00407633
0.00407868
0.00408068
0.00408283
0.00408565
0.00408981
0.00409612
0.00410545
0.00411873
0.00413695
0.00416125
0.00419233
0.00423057
0.00427608
0.00432794
0.00438526
0.00444614
0.00450953
0.0045728
0.00463676
0.0047019
0.00405124
0.00404823
0.00404596
0.0040441
0.00404252
0.00404114
0.00403992
0.00403884
0.00403787
0.004037
0.00403624
0.00403557
0.00403499
0.00403452
0.00403416
0.00403393
0.00403387
0.00403404
0.00403453
0.00403552
0.00403735
0.00404071
0.00404617
0.00405032
0.00405457
0.00405984
0.00406672
0.00407338
0.00407671
0.00407902
0.00408101
0.00408317
0.00408606
0.00409034
0.00409687
0.00410653
0.0041203
0.0041392
0.0041644
0.00419663
0.00423627
0.00428342
0.00433714
0.00439647
0.00445947
0.00452499
0.00459056
0.00465713
0.00472533
0.00405097
0.00404792
0.00404565
0.00404379
0.00404222
0.00404085
0.00403964
0.00403856
0.00403761
0.00403676
0.00403601
0.00403535
0.00403479
0.00403434
0.00403399
0.00403379
0.00403375
0.00403394
0.00403446
0.00403549
0.00403737
0.0040408
0.00404636
0.00405053
0.0040548
0.00406012
0.00406708
0.00407382
0.0040771
0.00407937
0.00408135
0.00408352
0.00408647
0.00409089
0.00409765
0.00410766
0.00412194
0.00414154
0.00416769
0.00420112
0.00424223
0.00429111
0.00434678
0.00440821
0.00447344
0.00454121
0.00460924
0.00467864
0.00475009
0.0040507
0.00404762
0.00404533
0.00404348
0.00404191
0.00404055
0.00403936
0.00403829
0.00403735
0.00403651
0.00403577
0.00403513
0.00403459
0.00403415
0.00403383
0.00403364
0.00403362
0.00403384
0.00403439
0.00403545
0.00403738
0.00404088
0.00404655
0.00405073
0.00405503
0.0040604
0.00406744
0.00407425
0.00407748
0.00407971
0.00408168
0.00408387
0.00408689
0.00409144
0.00409844
0.00410882
0.00412362
0.00414397
0.0041711
0.00420579
0.00424845
0.00429914
0.00435684
0.00442049
0.00448806
0.00455823
0.00462893
0.00470142
0.00477637
0.0040504
0.00404728
0.004045
0.00404316
0.0040416
0.00404025
0.00403906
0.00403801
0.00403708
0.00403626
0.00403554
0.00403491
0.00403439
0.00403397
0.00403366
0.00403349
0.0040335
0.00403374
0.00403431
0.00403542
0.0040374
0.00404098
0.00404674
0.00405095
0.00405527
0.00406069
0.0040678
0.00407469
0.00407786
0.00408006
0.00408201
0.00408422
0.00408731
0.00409202
0.00409926
0.00411002
0.00412538
0.00414649
0.00417465
0.00421064
0.0042549
0.00430746
0.00436728
0.00443321
0.0045032
0.00457586
0.00464938
0.00472514
0.00480373
0.00405004
0.00404692
0.00404465
0.00404282
0.00404127
0.00403993
0.00403876
0.00403773
0.00403681
0.00403601
0.0040353
0.00403469
0.00403418
0.00403378
0.00403349
0.00403334
0.00403337
0.00403364
0.00403425
0.00403539
0.00403743
0.00404108
0.00404695
0.00405117
0.00405552
0.00406099
0.00406818
0.00407513
0.00407824
0.0040804
0.00408234
0.00408458
0.00408775
0.00409261
0.00410012
0.00411128
0.00412722
0.00414915
0.00417839
0.00421576
0.00426171
0.00431624
0.00437828
0.00444661
0.00451915
0.00459448
0.00467106
0.00475038
0.00483289
0.00404968
0.00404656
0.00404429
0.00404247
0.00404094
0.00403962
0.00403846
0.00403744
0.00403654
0.00403575
0.00403506
0.00403447
0.00403398
0.00403359
0.00403332
0.00403319
0.00403324
0.00403354
0.00403418
0.00403536
0.00403745
0.00404119
0.00404715
0.00405138
0.00405576
0.00406128
0.00406854
0.00407557
0.00407862
0.00408074
0.00408267
0.00408494
0.00408819
0.00409322
0.004101
0.00411258
0.00412913
0.00415191
0.00418228
0.00422109
0.00426882
0.00432542
0.0043898
0.00446067
0.00453592
0.00461413
0.00469406
0.00477729
0.00486405
0.00404931
0.00404619
0.00404394
0.00404214
0.00404062
0.00403931
0.00403817
0.00403717
0.00403628
0.0040355
0.00403483
0.00403425
0.00403378
0.00403341
0.00403316
0.00403305
0.00403313
0.00403344
0.00403411
0.00403534
0.00403748
0.0040413
0.00404735
0.0040516
0.004056
0.00406157
0.0040689
0.00407598
0.00407898
0.00408107
0.00408299
0.00408529
0.00408863
0.00409383
0.00410189
0.00411391
0.00413109
0.00415475
0.0041863
0.00422662
0.00427619
0.00433495
0.00440177
0.00447528
0.00455337
0.00463464
0.00471818
0.00480559
0.00489687
0.00404896
0.00404587
0.00404364
0.00404185
0.00404034
0.00403905
0.00403792
0.00403693
0.00403606
0.00403529
0.00403463
0.00403407
0.00403361
0.00403326
0.00403303
0.00403294
0.00403303
0.00403337
0.00403407
0.00403533
0.00403753
0.00404141
0.00404753
0.00405179
0.00405621
0.00406183
0.00406922
0.00407634
0.0040793
0.00408136
0.00408328
0.00408561
0.00408904
0.00409442
0.00410278
0.00411524
0.00413308
0.00415767
0.00419045
0.00423235
0.00428386
0.00434489
0.00441427
0.00449058
0.00457168
0.00465627
0.00474375
0.00483572
0.0049319
0.00404867
0.0040456
0.00404338
0.0040416
0.00404011
0.00403883
0.00403771
0.00403673
0.00403587
0.00403512
0.00403447
0.00403392
0.00403348
0.00403314
0.00403292
0.00403284
0.00403295
0.00403331
0.00403404
0.00403533
0.00403757
0.00404152
0.00404768
0.00405196
0.0040564
0.00406206
0.0040695
0.00407664
0.00407958
0.00408161
0.00408352
0.00408589
0.00408942
0.00409497
0.00410362
0.00411654
0.00413504
0.00416056
0.00419459
0.0042381
0.00429159
0.00435495
0.00442698
0.00450619
0.00459046
0.00467858
0.00477032
0.0048672
0.00496862
0.00404844
0.00404537
0.00404317
0.0040414
0.00403992
0.00403865
0.00403754
0.00403657
0.00403572
0.00403498
0.00403434
0.0040338
0.00403336
0.00403303
0.00403283
0.00403277
0.00403289
0.00403327
0.00403401
0.00403533
0.00403761
0.00404161
0.00404781
0.0040521
0.00405655
0.00406225
0.00406973
0.00407689
0.0040798
0.0040818
0.00408371
0.00408611
0.00408971
0.00409541
0.00410431
0.0041176
0.00413666
0.00416297
0.00419807
0.00424295
0.00429812
0.00436346
0.00443774
0.00451941
0.00460638
0.00469758
0.00479304
0.0048942
0.00500019
0.00404824
0.00404519
0.00404299
0.00404123
0.00403976
0.00403849
0.00403739
0.00403643
0.00403559
0.00403486
0.00403423
0.0040337
0.00403327
0.00403295
0.00403275
0.00403271
0.00403284
0.00403323
0.004034
0.00403534
0.00403764
0.00404169
0.00404792
0.00405221
0.00405668
0.0040624
0.00406991
0.00407707
0.00407997
0.00408195
0.00408385
0.00408627
0.00408993
0.00409576
0.00410486
0.00411847
0.004138
0.00416498
0.00420097
0.004247
0.00430359
0.0043706
0.00444676
0.00453049
0.00461976
0.0047136
0.00481226
0.00491712
0.00502705
0.00411936
0.00412313
0.00412739
0.00413229
0.00413795
0.00414455
0.00415233
0.0041616
0.00417276
0.0041864
0.00420333
0.00422472
0.00425229
0.00428903
0.00433433
0.00439079
0.00446182
0.00455201
0.00466772
0.0048178
0.00501509
0.00529403
0.00578588
0.00645247
0.00725001
0.00836358
0.0100847
0.0125161
0.0150947
0.0176409
0.0210384
0.0268169
0.0399692
0.0253746
0.0041231
0.0041272
0.00413176
0.00413699
0.00414304
0.00415011
0.00415843
0.00416834
0.00418027
0.00419484
0.00421291
0.00423571
0.00426507
0.00430416
0.00435225
0.00441215
0.00448746
0.00458302
0.00470556
0.00486444
0.00507329
0.00536848
0.00588874
0.00654208
0.00731859
0.00841379
0.010134
0.0125674
0.0150428
0.0175468
0.0208991
0.02786
0.0482146
0.0289304
0.00412709
0.00413159
0.00413646
0.00414206
0.00414854
0.00415611
0.00416503
0.00417563
0.0041884
0.00420398
0.00422329
0.00424764
0.00427897
0.00432064
0.00437182
0.00443555
0.00451564
0.00461725
0.00474751
0.00491638
0.00513923
0.00545456
0.00599988
0.00663014
0.0073871
0.0084687
0.0101928
0.0126261
0.0149866
0.0174643
0.0208045
0.0292621
0.0611236
0.0335583
0.00413131
0.00413625
0.00414146
0.00414744
0.00415439
0.0041625
0.00417205
0.00418341
0.00419709
0.00421377
0.00423442
0.00426046
0.00429394
0.00433843
0.00439304
0.00446102
0.00454648
0.00465514
0.00479484
0.00497562
0.00521479
0.00555502
0.00610886
0.00671856
0.00746232
0.00854281
0.0102846
0.0127139
0.0149546
0.0174443
0.0209477
0.0323961
0.0821763
0.0397722
0.00413577
0.00414122
0.00414678
0.00415317
0.00416061
0.0041693
0.00417954
0.00419171
0.00420635
0.00422421
0.00424632
0.00427416
0.00430996
0.00435749
0.00441579
0.00448838
0.00457964
0.00469624
0.00484574
0.00503936
0.00529606
0.00566207
0.00620577
0.0067933
0.00752023
0.00859158
0.0103374
0.0127512
0.0148654
0.0173386
0.0209148
0.0359578
0.124588
0.0487782
0.00414042
0.00414641
0.00415233
0.00415916
0.00416711
0.00417641
0.00418736
0.00420039
0.00421605
0.00423515
0.00425878
0.00428853
0.00432676
0.00437749
0.00443968
0.00451712
0.0046145
0.00473895
0.00489856
0.00510586
0.00538056
0.00576768
0.00628724
0.00684998
0.00755453
0.00860455
0.0103404
0.0127381
0.0147316
0.0171484
0.0206154
0.0384869
0.19303
0.0623047
0.00414533
0.0041519
0.0041582
0.0041655
0.00417401
0.00418395
0.00419568
0.00420962
0.00422638
0.00424681
0.00427209
0.00430391
0.00434479
0.004399
0.00446546
0.00454825
0.00465242
0.004786
0.00495707
0.00517949
0.00547458
0.00586753
0.00636381
0.00690323
0.00758821
0.00862267
0.0103538
0.0127372
0.0146011
0.0169754
0.0204958
0.0430578
0.284522
0.0823215
0.00415051
0.00415773
0.00416441
0.00417222
0.00418132
0.00419196
0.00420452
0.00421945
0.00423741
0.00425929
0.00428636
0.00432043
0.0043642
0.00442223
0.0044935
0.00458245
0.0046943
0.00483786
0.00502193
0.00526163
0.00557962
0.00596278
0.00643678
0.0069546
0.00762318
0.00864886
0.0103793
0.0127439
0.0144728
0.0168251
0.0206548
0.051897
0.414436
0.114967
0.00415585
0.00416373
0.00417083
0.00417918
0.0041889
0.00420029
0.00421373
0.00422972
0.00424895
0.00427239
0.00430139
0.0043379
0.00438483
0.00444711
0.00452387
0.00461958
0.00474014
0.00489513
0.0050943
0.00535409
0.00568613
0.00605434
0.00650741
0.00700702
0.00766591
0.00869839
0.0104378
0.0127673
0.014398
0.0168359
0.0227009
0.0817819
0.64783
0.175275
0.00416144
0.00417005
0.00417756
0.0041865
0.00419688
0.00420905
0.00422344
0.00424056
0.00426115
0.00428626
0.00431733
0.00435645
0.00440676
0.00447363
0.00455621
0.00465916
0.00478905
0.00495628
0.0051716
0.00545249
0.00578116
0.00613252
0.00656295
0.00704116
0.00768279
0.0087074
0.0104358
0.0127285
0.0142548
0.0167
0.0238678
0.110826
1.10502
0.331608
0.00416735
0.00417675
0.00418468
0.00419425
0.00420535
0.00421837
0.00423377
0.0042521
0.00427416
0.00430106
0.00433436
0.0043763
0.00443027
0.00450212
0.00459082
0.00470153
0.0048414
0.00502171
0.00525422
0.00555222
0.00586534
0.00619829
0.00660469
0.0070585
0.00767606
0.00867911
0.0103842
0.0126475
0.0140528
0.0164014
0.0233488
0.12514
1.75969
0.763445
0.00417338
0.00418357
0.00419197
0.00420221
0.00421406
0.00422797
0.00424445
0.00426408
0.0042877
0.00431652
0.00435222
0.00439721
0.00445514
0.00453244
0.00462797
0.00474734
0.00489846
0.00509366
0.00534569
0.00564676
0.00594536
0.00626147
0.00664566
0.00707883
0.00767887
0.008676
0.0103701
0.0125938
0.0138884
0.0163842
0.0278506
0.220411
2.81606
1.60654
0.00417965
0.00419071
0.00419959
0.00421056
0.00422324
0.0042381
0.00425576
0.00427681
0.00430216
0.00433311
0.00437157
0.00441999
0.00448245
0.00456578
0.00466904
0.00479838
0.00496259
0.00517524
0.00544921
0.00573831
0.00602292
0.00632312
0.00668554
0.00710131
0.0076893
0.00869239
0.010375
0.0125385
0.0137774
0.0171726
0.0445756
0.474079
5.10167
3.03432
0.00418616
0.00419813
0.00420752
0.00421927
0.00423282
0.00424871
0.00426762
0.00429017
0.00431735
0.00435055
0.00439184
0.00444395
0.00451119
0.0046009
0.0047123
0.00485211
0.00502999
0.00526072
0.00554254
0.0058178
0.0060866
0.0063679
0.00670545
0.00709754
0.00765937
0.00864208
0.0102913
0.0124078
0.0135301
0.0170124
0.0485209
0.655592
8.71604
5.22923
0.00419287
0.00420581
0.00421574
0.00422833
0.00424282
0.0042598
0.00428007
0.00430426
0.00433342
0.00436908
0.00441355
0.00446965
0.00454215
0.00463891
0.00475936
0.00491089
0.00510418
0.00535504
0.0056296
0.00589119
0.00614462
0.00640787
0.00672131
0.0070918
0.00763111
0.00860161
0.0102241
0.012286
0.0133427
0.0179434
0.075205
1.17322
13.3698
8.08897
0.00419977
0.00421373
0.00422425
0.00423775
0.00425327
0.00427144
0.00429319
0.00431921
0.00435059
0.004389
0.00443693
0.00449752
0.00457594
0.00468063
0.00481143
0.00497648
0.00518755
0.00545114
0.00571407
0.00596268
0.00620117
0.00644708
0.00673674
0.00708847
0.00760959
0.00857703
0.0101699
0.0121632
0.0133095
0.0216035
0.142707
2.15332
19.9727
10.9265
0.00420692
0.00422199
0.0042331
0.00424761
0.00426424
0.00428369
0.00430705
0.00433499
0.00436874
0.0044101
0.00446175
0.00452713
0.00461187
0.00472505
0.00486686
0.00504626
0.005276
0.00553806
0.00578853
0.00602318
0.00624523
0.00647152
0.00673412
0.00706101
0.00754748
0.00848498
0.01003
0.0119719
0.0129633
0.0209578
0.145991
2.78374
28.3067
14.6393
0.00421426
0.0042305
0.00424229
0.0042579
0.00427576
0.00429661
0.00432175
0.00435185
0.00438824
0.0044329
0.00448876
0.00455959
0.00465159
0.00477446
0.0049291
0.00512527
0.00536916
0.00562031
0.00585853
0.00607984
0.00628629
0.00649461
0.00673205
0.00703982
0.00750404
0.00843283
0.00993983
0.0118191
0.0131042
0.0289222
0.297467
4.74397
39.6966
17.5546
0.00422184
0.00423933
0.00425183
0.00426862
0.0042878
0.00431016
0.00433724
0.00436966
0.00440894
0.00445721
0.00451768
0.00459451
0.00469453
0.00482808
0.00499706
0.00521147
0.00545515
0.00569555
0.00592163
0.0061296
0.00632017
0.0065108
0.00672343
0.00701388
0.00745678
0.00837573
0.00983322
0.0116541
0.0134666
0.0396604
0.482171
7.23353
55.7613
20.5863
0.00422961
0.00424834
0.00426156
0.00427954
0.00430005
0.0043239
0.00435291
0.00438764
0.00442977
0.00448159
0.00454657
0.00462925
0.00473704
0.00488098
0.00506366
0.00529111
0.00552446
0.00575339
0.00596679
0.00616121
0.00633552
0.00650795
0.00669453
0.00696263
0.00736909
0.00825103
0.00964526
0.0113967
0.0130621
0.0389415
0.545073
9.47104
70.8253
26.9169
0.00423764
0.00425761
0.00427161
0.00429083
0.00431275
0.00433818
0.00436923
0.00440641
0.00445159
0.00450723
0.00457709
0.00466613
0.00478244
0.00493767
0.00513517
0.00536386
0.00558746
0.00580566
0.00600733
0.00618938
0.00634906
0.00650577
0.00667108
0.00692453
0.00731462
0.00818644
0.00954207
0.0112938
0.014539
0.0697922
1.02835
13.8873
88.8534
30.111
0.004246
0.00426717
0.004282
0.0043025
0.00432585
0.00435289
0.00438605
0.00442573
0.00447403
0.00453356
0.0046084
0.00470392
0.00482889
0.00499557
0.00520763
0.00542803
0.00564215
0.00585001
0.00604034
0.00621049
0.00635569
0.00649682
0.00663996
0.00687664
0.00724083
0.00808768
0.00938956
0.0110912
0.0144142
0.0725853
1.25537
18.0775
101.765
36.2198
0.00425462
0.00427697
0.00429264
0.00431445
0.00433926
0.00436795
0.00440325
0.00444547
0.00449693
0.00456041
0.00464029
0.00474238
0.00487609
0.0050542
0.00527278
0.00548431
0.00568887
0.00588641
0.00606549
0.00622407
0.00635513
0.00648132
0.00660266
0.00682186
0.00715782
0.00797534
0.0092264
0.0108722
0.0140429
0.0761103
1.60044
22.5917
108.935
41.8416
0.00426332
0.00428691
0.00430345
0.00432662
0.00435294
0.00438334
0.00442088
0.00446576
0.00452056
0.00458823
0.00467348
0.00478263
0.00492579
0.00511576
0.00533335
0.00553644
0.00573199
0.00591974
0.00608815
0.00623569
0.0063535
0.00646585
0.00656963
0.00677692
0.00710228
0.00790939
0.0091351
0.0109897
0.0196992
0.182449
2.90405
29.2046
115.122
44.241
0.00427216
0.00429701
0.00431441
0.00433894
0.00436677
0.00439887
0.00443864
0.00448616
0.00454426
0.00461605
0.0047066
0.00482266
0.00497504
0.00517649
0.00538659
0.0055813
0.00576791
0.00594613
0.00610409
0.00624106
0.00634556
0.00644426
0.00652832
0.00672004
0.00702039
0.00779907
0.00897691
0.0107883
0.0195608
0.200688
3.69388
35.0664
116.926
48.3362
0.00428142
0.00430746
0.00432578
0.00435174
0.00438112
0.004415
0.00445708
0.00450734
0.00456888
0.00464497
0.00474103
0.00486431
0.00502619
0.00523427
0.00543594
0.00562242
0.00580019
0.00596898
0.00611662
0.00624323
0.00633482
0.00642032
0.00648619
0.00666347
0.00694357
0.00769826
0.00884014
0.0107092
0.0221496
0.279551
4.97741
41.095
116.559
51.1812
0.00429089
0.00431812
0.0043374
0.00436483
0.00439579
0.00443152
0.004476
0.00452909
0.00459421
0.00467477
0.0047766
0.00490744
0.005079
0.0052884
0.00548195
0.00566056
0.00582994
0.00598982
0.00612765
0.00624439
0.00632363
0.00639653
0.00644599
0.00661077
0.00687607
0.00761299
0.0087372
0.0109604
0.0314739
0.467532
6.99651
47.0625
114.823
53.1492
0.00430058
0.004329
0.00434927
0.0043782
0.00441078
0.0044484
0.00449534
0.00455134
0.00462013
0.00470528
0.00481305
0.00495165
0.00513279
0.00533877
0.00552446
0.00569551
0.00585682
0.00600813
0.00613643
0.00624363
0.00631066
0.00637141
0.00640495
0.00655758
0.00680763
0.00752589
0.00864243
0.0114237
0.0450565
0.721762
9.39059
52.5089
111.944
54.6639
0.00431064
0.00434022
0.00436155
0.00439205
0.00442632
0.00446595
0.00451545
0.00457451
0.00464718
0.0047372
0.0048513
0.00499815
0.00518864
0.00538673
0.00556471
0.00572833
0.00588164
0.00602437
0.00614312
0.00624058
0.00629565
0.00634438
0.00636494
0.00650802
0.00675245
0.00746584
0.00871805
0.0144374
0.0961233
1.34648
13.2457
58.0304
108.813
55.0786
0.00432098
0.00435169
0.00437412
0.00440621
0.00444218
0.00448386
0.00453597
0.00459815
0.00467475
0.00476972
0.00489022
0.00504525
0.00524055
0.00543081
0.00560109
0.00575726
0.00590255
0.00603679
0.00614608
0.00623402
0.00627723
0.0063143
0.00632167
0.00645423
0.00668811
0.00739077
0.0087836
0.0174063
0.145652
1.9701
17.1335
62.455
105.077
55.521
0.00433137
0.00436325
0.00438676
0.00442045
0.0044581
0.00450182
0.00455652
0.00462178
0.00470229
0.00480213
0.00492893
0.00509182
0.00528816
0.0054708
0.00563346
0.00578219
0.00591946
0.00604537
0.00614536
0.00622431
0.00625591
0.00628178
0.00627477
0.0063948
0.00661114
0.00729148
0.00871322
0.0184661
0.173741
2.49639
20.6356
65.6688
101.124
56.048
0.00434218
0.00437518
0.00439985
0.00443521
0.0044746
0.00452049
0.0045779
0.00464643
0.00473106
0.00483608
0.00496958
0.00514041
0.00533437
0.00550941
0.0056646
0.00580606
0.00593548
0.0060532
0.00614406
0.0062139
0.00623421
0.00624882
0.00622995
0.00633971
0.00654815
0.00723394
0.00903752
0.0257485
0.286375
3.62016
24.9915
68.0785
97.4344
56.0129
0.00435341
0.00438749
0.00441341
0.00445048
0.00449168
0.00453984
0.00460007
0.00467199
0.00476091
0.00487135
0.00501179
0.00519031
0.00537873
0.00554626
0.0056942
0.00582861
0.0059504
0.00606018
0.00614218
0.00620311
0.00621229
0.00621589
0.00618573
0.00628572
0.00648735
0.00719365
0.00961186
0.0364557
0.43631
4.92442
29.1265
69.7369
94.0567
55.809
0.00436479
0.00439998
0.00442717
0.00446598
0.00450901
0.00455949
0.00462258
0.00469797
0.00479128
0.00490724
0.00505467
0.00523835
0.00542083
0.00558106
0.00572195
0.00584945
0.00596373
0.00606568
0.00613889
0.00619104
0.0061893
0.00618216
0.00614127
0.00623182
0.00642886
0.00718426
0.01066
0.0537747
0.655372
6.54755
33.1149
70.7577
90.9768
55.4176
0.00437645
0.00441274
0.00444126
0.00448186
0.00452677
0.00457967
0.00464571
0.00472471
0.00482258
0.00494429
0.00509876
0.00528487
0.00546136
0.00561435
0.00574828
0.00586891
0.00597568
0.00606978
0.00613423
0.00617746
0.00616505
0.00614737
0.00609723
0.00617989
0.00638125
0.0072778
0.0130562
0.0869948
1.00617
8.64706
37.0744
71.3227
87.8387
54.8401
0.00438848
0.00442585
0.00445576
0.00449817
0.004545
0.00460037
0.00466942
0.00475209
0.00485459
0.00498211
0.00514341
0.00532937
0.00549982
0.00564562
0.00577261
0.00588637
0.00598563
0.00607199
0.00612779
0.00616252
0.0061397
0.00611201
0.00605183
0.00612534
0.0063249
0.00733127
0.0149346
0.114029
1.3152
10.6178
40.3132
71.319
85.0525
54.3377
0.00440087
0.00443931
0.00447069
0.00451496
0.00456377
0.00462173
0.00469389
0.00478041
0.00488773
0.00502129
0.00518929
0.00537281
0.00553712
0.00567576
0.00579588
0.0059028
0.00599456
0.00607312
0.00612024
0.00614621
0.00611319
0.00607552
0.00600688
0.00607333
0.00628845
0.00760217
0.0196273
0.172402
1.84174
13.119
43.4278
70.9921
82.3181
53.7472
0.00441353
0.00445306
0.00448596
0.00453213
0.00458299
0.00464363
0.00471901
0.0048095
0.00492182
0.00506159
0.00523601
0.00541508
0.00557321
0.00570478
0.00581811
0.00591825
0.0060026
0.0060734
0.00611191
0.00612905
0.00608607
0.00603869
0.00596266
0.0060244
0.00627707
0.00816065
0.0275274
0.259731
2.52713
15.9212
46.2052
70.4455
79.6967
53.0229
0.00442646
0.00446708
0.00450155
0.00454964
0.00460258
0.00466596
0.00474459
0.00483912
0.00495651
0.00510248
0.00528252
0.00545584
0.00560782
0.00573242
0.00583902
0.00593244
0.00600941
0.0060726
0.00610261
0.00611124
0.00605854
0.00600188
0.00591794
0.00597434
0.00626196
0.00869695
0.0350492
0.343755
3.18745
18.56
48.3557
69.7469
77.5145
52.3175
0.00444001
0.00448171
0.00451789
0.00456797
0.00462312
0.00468941
0.00477149
0.00487033
0.00499308
0.00514545
0.00532908
0.00549652
0.00564215
0.00575972
0.00585956
0.00594617
0.00601571
0.00607108
0.00609243
0.00609204
0.00602974
0.00596382
0.00587411
0.00593175
0.00632382
0.0100996
0.0517247
0.500975
4.15523
21.5448
50.3158
68.9207
75.183
51.5774
0.00445403
0.00449679
0.00453478
0.00458688
0.00464433
0.00471364
0.00479926
0.00490254
0.00503078
0.00518941
0.00537468
0.00553623
0.00567545
0.00578606
0.00587915
0.00595896
0.0060211
0.00606874
0.00608156
0.00607239
0.00600072
0.0059259
0.00583025
0.0058904
0.00640004
0.0116151
0.0688998
0.658627
5.09821
24.2061
51.7577
68.0476
73.2645
50.8451
0.00446832
0.0045122
0.00455206
0.00460623
0.00466606
0.00473849
0.00482779
0.00493568
0.00506958
0.00523436
0.0054196
0.00557531
0.00570811
0.00581183
0.0058982
0.0059712
0.00602596
0.00606584
0.00607013
0.00605194
0.00597102
0.00588745
0.00578772
0.00586167
0.00661157
0.0145568
0.0993032
0.904745
6.34476
26.9844
52.9758
67.1093
71.265
50.096
0.00448298
0.004528
0.00456979
0.00462608
0.00468836
0.00476399
0.00485706
0.00496967
0.00510929
0.00527993
0.00546365
0.00561354
0.00573994
0.00583687
0.00591655
0.00598277
0.00603022
0.00606251
0.00605846
0.00603163
0.00594168
0.00584975
0.00574571
0.0058353
0.00683562
0.017496
0.128776
1.14269
7.54278
29.3782
53.7723
66.1275
69.5745
49.3718
0.00449804
0.00454426
0.00458807
0.00464653
0.00471139
0.00479038
0.00488738
0.00500493
0.00515046
0.00532673
0.00550751
0.00565154
0.00577146
0.00586164
0.00593465
0.00599405
0.00603416
0.00605878
0.00604636
0.00601057
0.00591175
0.00581176
0.00570682
0.00583871
0.00736795
0.0234722
0.183694
1.52763
9.17021
31.8295
54.3587
64.9863
67.7859
48.652
0.00451329
0.00456079
0.00460667
0.00466738
0.00473492
0.00481738
0.00491847
0.00504117
0.00519277
0.00537437
0.00555098
0.00568916
0.00580257
0.00588606
0.0059524
0.00600492
0.00603768
0.00605448
0.00603368
0.00598866
0.00588128
0.00577412
0.00567578
0.00591595
0.0086108
0.0356436
0.282316
2.1216
11.3162
34.3131
54.8378
63.9127
66.1457
47.7266
0.00452888
0.0045777
0.00462568
0.00468869
0.00475898
0.00484498
0.00495026
0.00507819
0.00523583
0.00542235
0.00559374
0.00572604
0.00583294
0.00590981
0.00596944
0.00601504
0.00604041
0.00604949
0.00602048
0.00596672
0.00585125
0.00573795
0.00564923
0.00602488
0.0100715
0.0490239
0.385592
2.72359
13.3567
36.432
55.1546
63.0042
64.6773
46.7019
0.00454551
0.00459568
0.00464598
0.00471138
0.00478464
0.00487442
0.00498414
0.00511757
0.0052813
0.0054713
0.00563688
0.00576302
0.00586311
0.00593322
0.00598595
0.00602437
0.0060421
0.00604317
0.00600582
0.00594326
0.00582007
0.00570171
0.00562932
0.00619685
0.0120453
0.0661365
0.510408
3.38767
15.4062
38.2634
55.2912
62.0713
63.3543
45.7917
0.00456266
0.00461422
0.00466694
0.00473479
0.00481114
0.00490482
0.00501911
0.00515816
0.00532784
0.00552013
0.00567971
0.00579961
0.00589282
0.00595615
0.00600187
0.00603296
0.00604288
0.00603584
0.00599013
0.00591895
0.00578834
0.00566576
0.00561425
0.00640816
0.0142768
0.0846977
0.641129
4.04836
17.4027
39.7882
55.2657
61.0976
61.9464
45.0409
0.0045802
0.00463323
0.00468842
0.0047588
0.00483833
0.00493599
0.00505497
0.00519969
0.00537513
0.00556885
0.00572233
0.00583598
0.0059223
0.0059789
0.00601757
0.00604131
0.0060434
0.00602829
0.00597432
0.0058948
0.00575698
0.00563059
0.00560083
0.00662128
0.0164317
0.102335
0.766104
4.68531
19.1944
40.9422
55.0284
60.0283
60.6457
44.4919
0.00459836
0.00465297
0.00471082
0.00478388
0.00486685
0.00496877
0.00509277
0.0052435
0.00542467
0.00561887
0.0057659
0.00587311
0.00595233
0.00600213
0.00603367
0.00604987
0.00604394
0.00602027
0.00595763
0.00586896
0.00572445
0.00559931
0.00564035
0.00730932
0.0225365
0.148476
1.04366
5.80285
21.4181
42.1638
54.7225
58.8527
59.1424
43.8393
0.00461707
0.00467337
0.00473399
0.00480989
0.00489648
0.00500288
0.00513214
0.00528907
0.00547577
0.00566974
0.00581011
0.00591082
0.00598285
0.00602586
0.00605024
0.00605885
0.00604488
0.00601252
0.00594111
0.00584324
0.00569314
0.00557738
0.00575366
0.00856223
0.0325564
0.217019
1.41207
7.12374
23.6334
43.2726
54.4405
57.9169
58.0088
42.9281
0.00463619
0.00469431
0.00475775
0.00483659
0.00492693
0.00503791
0.00517257
0.0053357
0.00552766
0.00572103
0.00585472
0.00594894
0.00601383
0.00605007
0.00606725
0.00606827
0.00604624
0.00600524
0.00592511
0.00581846
0.00566382
0.0055642
0.00592088
0.0101623
0.0445592
0.294631
1.80721
8.46519
25.6388
44.1921
54.1825
57.1751
57.0165
41.9592
0.00465622
0.0047163
0.00478272
0.00486465
0.00495896
0.00507476
0.00521504
0.00538446
0.00558131
0.0057735
0.00590026
0.00598787
0.00604545
0.0060748
0.00608456
0.00607776
0.00604751
0.00599771
0.00590875
0.00579351
0.00563573
0.00556188
0.00616473
0.0122556
0.0593758
0.385321
2.24409
9.85874
27.4729
44.9287
53.8697
56.3747
55.9042
41.0972
0.00467751
0.00473977
0.00480936
0.0048946
0.0049932
0.00511412
0.00526033
0.00543611
0.00563738
0.00582756
0.00594703
0.00602779
0.00607786
0.00610012
0.00610216
0.00608726
0.00604858
0.00598981
0.00589198
0.00576841
0.00560947
0.0055748
0.00650957
0.0149521
0.0773895
0.489744
2.71868
11.238
29.0913
45.4541
53.4571
55.5003
54.8512
40.3774
0.00469935
0.00476397
0.00483685
0.00492558
0.0050287
0.00515499
0.00530737
0.0054896
0.00569499
0.00588287
0.00599495
0.00606882
0.00611127
0.00612627
0.00612031
0.00609699
0.00604964
0.00598159
0.00587471
0.00574314
0.00558852
0.00563437
0.00719632
0.0199433
0.109144
0.660136
3.40395
12.9339
30.7748
45.9063
52.9631
54.523
53.6785
39.64
0.0047219
0.00478907
0.00486538
0.00495784
0.00506575
0.0051977
0.00535653
0.00554527
0.00575445
0.00593972
0.00604431
0.00611123
0.00614599
0.00615362
0.00613938
0.00610735
0.00605107
0.00597343
0.00585749
0.00571932
0.00558153
0.00579613
0.00856799
0.029105
0.162792
0.919451
4.33137
14.921
32.4841
46.3358
52.4993
53.6609
52.6556
38.7005
0.0047457
0.00481564
0.00489557
0.00499201
0.00510502
0.00524294
0.00540844
0.00560361
0.00581606
0.00599829
0.00609528
0.00615522
0.0061823
0.00618251
0.00615978
0.00611881
0.00605341
0.00596613
0.00584143
0.00569921
0.00559393
0.00607382
0.0106006
0.0416362
0.230673
1.22156
5.32363
16.8873
33.9918
46.6809
52.1051
53.0127
51.871
37.6715
0.00477049
0.00484337
0.00492708
0.00502774
0.0051461
0.00529021
0.00546253
0.005664
0.00587932
0.00605845
0.00614788
0.00620093
0.00622042
0.00621319
0.00618174
0.00613151
0.00605666
0.00595955
0.00582643
0.00568375
0.0056333
0.00650882
0.0134847
0.0582652
0.314766
1.5683
6.36053
18.8091
35.3537
46.9488
51.7145
52.3163
50.8737
36.7058
0.00479659
0.00487262
0.00496032
0.00506549
0.00518951
0.00534011
0.00551943
0.00572703
0.00594472
0.0061205
0.00620237
0.00624857
0.00626055
0.00624584
0.00620539
0.00614553
0.0060608
0.00595361
0.00581274
0.00567534
0.00571395
0.00717423
0.0175505
0.0802791
0.419056
1.96972
7.49716
20.6295
36.5271
47.0803
51.2358
51.5094
49.9276
35.8572
0.00482428
0.00490375
0.00499577
0.0051059
0.00523609
0.00539367
0.00558032
0.00579396
0.00601332
0.00618503
0.00625919
0.00629839
0.00630278
0.0062804
0.00623052
0.00616038
0.00606509
0.00594735
0.00580107
0.0056881
0.00593679
0.00867221
0.0260535
0.123261
0.605421
2.612
9.07886
22.7528
37.7995
47.1995
50.678
50.6101
48.7963
34.8769
0.00485373
0.00493692
0.00503358
0.00514906
0.00528583
0.00545074
0.00564486
0.00586421
0.00608457
0.00625179
0.00631835
0.00635064
0.00634763
0.00631768
0.00625825
0.00617763
0.00607157
0.00594386
0.00579731
0.00573946
0.00636254
0.0111798
0.0390852
0.183625
0.843781
3.35885
10.7361
24.7595
38.931
47.2743
50.1826
49.871
47.9577
33.7754
0.00488451
0.00497169
0.00507329
0.00519452
0.00533828
0.00551086
0.00571258
0.00593739
0.00615826
0.0063208
0.00638002
0.00640559
0.00639541
0.00635797
0.00628885
0.00619744
0.0060804
0.00594429
0.00581025
0.00588198
0.00726992
0.0160404
0.0624754
0.283267
1.20131
4.36849
12.7262
26.8974
40.074
47.34
49.6725
49.0919
46.9336
32.5617
0.00491739
0.00500891
0.00511586
0.00524333
0.00539454
0.00557516
0.00578451
0.0060143
0.00623487
0.00639209
0.00644426
0.00646333
0.00644628
0.00640151
0.00632264
0.00622034
0.00609275
0.00595291
0.00585925
0.00620478
0.0090385
0.024667
0.100446
0.43027
1.67792
5.58655
14.8967
28.9827
41.1191
47.3796
49.1876
48.3491
45.9626
31.2565
0.00495263
0.00504892
0.0051617
0.005296
0.00545522
0.00564425
0.00586125
0.00609545
0.00631471
0.00646548
0.00651091
0.00652371
0.00650003
0.00644798
0.00635926
0.00624612
0.00611002
0.00598034
0.00600197
0.0069844
0.012873
0.0417803
0.16917
0.670929
2.3799
7.19901
17.4575
31.1732
42.1466
47.3976
48.6577
47.5146
44.8177
29.8218
0.0049899
0.00509135
0.00521042
0.00535205
0.00551974
0.00571748
0.00594201
0.00618004
0.00639717
0.00654036
0.00657957
0.00658648
0.00655654
0.00649741
0.00639905
0.00627627
0.006139
0.00605872
0.00638536
0.00884593
0.021179
0.0755029
0.291547
1.05517
3.38172
9.24312
20.3128
33.4687
43.1555
47.4127
48.1299
46.6553
43.6074
28.169
0.00502983
0.00513694
0.00526286
0.00541243
0.0055891
0.00579581
0.00602765
0.00626868
0.00648236
0.00661588
0.00664931
0.00665071
0.0066149
0.00654893
0.00644178
0.00631394
0.00619981
0.00628651
0.00744063
0.0135011
0.0400442
0.144736
0.516758
1.68485
4.84119
11.8765
23.5389
35.8988
44.1691
47.439
47.6087
45.7762
42.3558
26.2817
0.00507171
0.0051847
0.00531767
0.00547534
0.00566089
0.00587608
0.0061142
0.00635669
0.0065651
0.00668662
0.00671463
0.00671074
0.00666936
0.00659712
0.00648415
0.00636517
0.00633908
0.00687778
0.0100137
0.023913
0.0784769
0.272173
0.888518
2.61549
6.7824
15.0286
26.9529
38.298
45.0994
47.4325
47.0697
44.8285
40.8321
24.1822
0.00510786
0.00522604
0.00536519
0.00552989
0.00572303
0.00594526
0.00618824
0.00643105
0.00663212
0.0067438
0.00676768
0.00675957
0.00671378
0.00663709
0.00652414
0.00643793
0.00660469
0.0080339
0.0148333
0.0423545
0.142328
0.469044
1.41844
3.83223
9.0888
18.3845
30.2581
40.5171
46.0156
47.5466
46.6985
43.9813
39.3738
22.1713
0.00513874
0.00526143
0.00540593
0.00557668
0.00577622
0.00600424
0.00625096
0.00649332
0.00668684
0.00679073
0.00681132
0.00679966
0.0067502
0.00667081
0.00656555
0.00654716
0.00706192
0.0100163
0.0228198
0.0715764
0.238162
0.746498
2.11721
5.34163
11.79
22.0058
33.687
42.6696
47.0037
47.9643
46.8621
44.1094
39.3667
19.5376
0.00447267
0.00452681
0.0045866
0.00465425
0.00473222
0.00482531
0.00493782
0.00507347
0.00523354
0.00540984
0.00558309
0.00573508
0.0058693
0.00599408
0.00610181
0.00619807
0.00626677
0.00632716
0.00637023
0.00651351
0.00721978
0.0110389
0.0295317
0.110671
0.426686
1.4939
4.54445
11.4405
22.1596
33.1577
41.2908
46.7724
50.2641
46.5779
0.00446831
0.00452257
0.00458237
0.00464976
0.00472717
0.00481909
0.00492994
0.0050637
0.00522147
0.00539607
0.00557096
0.00572814
0.00586765
0.00599618
0.00610684
0.00620479
0.00627833
0.00634016
0.00638674
0.0065085
0.00708425
0.0101418
0.0248678
0.0893068
0.340808
1.19582
3.68069
9.52026
19.2972
30.276
39.0367
45.0424
49.2297
50.3155
0.00446325
0.00451737
0.00457715
0.00464429
0.00472112
0.00481179
0.00492081
0.00505221
0.00520608
0.00537822
0.00555419
0.00571634
0.00586152
0.00599412
0.00610752
0.0062066
0.00628344
0.00634569
0.00639317
0.00649434
0.00695157
0.0093451
0.0208219
0.0709653
0.267319
0.939693
2.9181
7.69738
16.2241
26.7662
36.0996
42.9925
48.2564
51.3426
0.00445744
0.00451111
0.00457077
0.00463765
0.00471387
0.00480325
0.00491013
0.00503724
0.00518643
0.00535504
0.005531
0.00569738
0.00584813
0.00598494
0.00610069
0.00620037
0.00627922
0.0063416
0.00638904
0.00647255
0.00682705
0.00865627
0.017394
0.0555584
0.20579
0.72534
2.2753
6.11979
13.4052
23.3225
33.1782
41.2908
47.8856
52.1364
0.00445083
0.00450371
0.00456305
0.00462943
0.00470426
0.00479184
0.00489532
0.00501763
0.00516128
0.00532511
0.00549962
0.0056691
0.00582515
0.0059666
0.006085
0.00618556
0.00626612
0.00632914
0.00637669
0.00644607
0.00671456
0.00807654
0.0145609
0.0428951
0.155148
0.547945
1.73661
4.75254
10.7797
19.7813
29.8802
39.2427
47.2366
52.4404
0.00444339
0.00449509
0.00455379
0.00461798
0.0046902
0.00477502
0.00487488
0.00499214
0.00512956
0.00528739
0.00545879
0.00562991
0.00579067
0.00593726
0.00605901
0.00616114
0.00624347
0.00630763
0.00635566
0.00641419
0.00661272
0.00759597
0.0122599
0.0326447
0.113937
0.402126
1.28784
3.5821
8.38981
16.2449
26.2036
36.5666
45.8577
52.0298
0.00443403
0.0044845
0.00454169
0.00460299
0.0046716
0.00475235
0.00484781
0.00495967
0.00509037
0.00524114
0.00540769
0.00557859
0.005743
0.0058949
0.00602088
0.00612561
0.0062103
0.00627642
0.0063258
0.00637689
0.00652081
0.0072058
0.0104379
0.0245625
0.0812423
0.285029
0.922562
2.60929
6.29804
12.859
22.2273
33.1025
43.4181
50.6078
0.00442253
0.00446941
0.00452445
0.00458358
0.00464858
0.0047243
0.00481413
0.00491982
0.0050433
0.00518616
0.00534621
0.00551475
0.00568124
0.00583815
0.00596919
0.00607784
0.00616596
0.0062351
0.00628696
0.00633391
0.00643737
0.00689614
0.00904158
0.0184083
0.0561958
0.194024
0.633956
1.82553
4.53555
9.74418
18.0718
28.8256
39.7424
47.8982
0.00440959
0.00445177
0.0045029
0.00455949
0.00462124
0.00469185
0.00477515
0.00487357
0.00498901
0.00512311
0.00527512
0.005439
0.00560542
0.00576628
0.00590271
0.00601645
0.00610925
0.00618269
0.00623835
0.00628431
0.00636009
0.00665551
0.00801206
0.0139208
0.0378516
0.126336
0.415063
1.21865
3.11744
7.02266
13.9464
23.8961
34.8714
43.8104
0.00439608
0.00443378
0.00447961
0.00453221
0.00459042
0.00465621
0.00473288
0.00482324
0.00492957
0.00505379
0.00519616
0.00535294
0.00551658
0.00567934
0.00582055
0.00593996
0.00603855
0.00611761
0.00617851
0.00622639
0.00628547
0.00647019
0.00728456
0.0108126
0.0251328
0.0787131
0.257602
0.771201
2.03447
4.78879
10.1264
18.6565
29.051
38.4241
0.0043823
0.0044166
0.00445698
0.0045042
0.00455762
0.00461826
0.00468841
0.00477051
0.00486692
0.00497992
0.00511077
0.00525775
0.00541542
0.00557715
0.00572148
0.00584623
0.00595122
0.00603706
0.00610473
0.00615733
0.00620887
0.00632436
0.006788
0.00876992
0.0168157
0.047209
0.150962
0.45923
1.25115
3.07191
6.86534
13.5647
22.7137
32.0039
0.00436841
0.00440073
0.00443669
0.00447841
0.00452603
0.00458049
0.00464359
0.00471731
0.0048036
0.00490455
0.00502205
0.00515628
0.00530421
0.00546104
0.00560563
0.00573418
0.00584511
0.00593813
0.00601363
0.00607327
0.00612457
0.00620212
0.00645599
0.00750137
0.0117288
0.0278088
0.08381
0.256159
0.720021
1.84349
4.32731
9.10585
16.4565
25.0067
0.00435356
0.00438517
0.00441836
0.00445587
0.00449816
0.00454613
0.00460144
0.00466607
0.00474188
0.00483059
0.00493391
0.00505301
0.00518716
0.00533413
0.0054747
0.00560406
0.00571922
0.00581875
0.00590219
0.00597011
0.00602616
0.0060874
0.00622772
0.00674887
0.00882292
0.0167388
0.0447725
0.133976
0.385838
1.02913
2.53094
5.62746
10.9385
18.0747
0.00433645
0.00436744
0.00439934
0.00443449
0.00447332
0.00451636
0.00456476
0.0046203
0.00468509
0.00476105
0.00484985
0.0049528
0.00507036
0.00520256
0.00533359
0.00545883
0.00557461
0.0056784
0.00576871
0.00584501
0.00590852
0.00596685
0.00605369
0.00630677
0.00726114
0.0108876
0.0238948
0.0665215
0.192502
0.53216
1.36986
3.20533
6.6465
11.9402
0.00431734
0.00434645
0.00437741
0.00441109
0.0044479
0.00448808
0.00453208
0.00458089
0.00463617
0.00469997
0.00477425
0.00486069
0.00496031
0.00507441
0.00519083
0.00530604
0.00541673
0.00552006
0.00561386
0.00569663
0.00576796
0.00583039
0.00589778
0.00602831
0.00644908
0.00800203
0.013605
0.0324188
0.0903489
0.255129
0.6846
1.68558
3.70705
7.17847
0.0042962
0.00432283
0.0043524
0.00438439
0.00441927
0.00445725
0.0044985
0.00454329
0.0045924
0.00464716
0.00470932
0.00478074
0.00486292
0.00495785
0.00505672
0.00515726
0.00525703
0.0053537
0.00544515
0.00552955
0.0056056
0.00567331
0.0057373
0.00581983
0.00601022
0.00664313
0.00889752
0.0165968
0.0411505
0.114295
0.316255
0.818069
1.90767
3.95212
0.00427344
0.00429727
0.0043243
0.00435446
0.00438712
0.00442263
0.00446119
0.00450291
0.00454806
0.00459716
0.00465118
0.00471145
0.00477941
0.00485719
0.00493874
0.00502293
0.00510835
0.00519345
0.00527669
0.00535656
0.00543167
0.00550109
0.00556557
0.00563241
0.00573374
0.00599323
0.00685497
0.00980088
0.0194439
0.0493386
0.136378
0.367404
0.907482
2.00859
0.00424988
0.00427072
0.00429451
0.00432155
0.0043519
0.00438481
0.00442039
0.00445884
0.00450036
0.00454522
0.00459385
0.00464687
0.0047051
0.00477022
0.00483781
0.00490754
0.00497875
0.00505066
0.00512241
0.0051931
0.00526179
0.00532759
0.00539006
0.00545094
0.00552047
0.00564101
0.00596819
0.00704103
0.0105886
0.0219272
0.0564919
0.154122
0.400476
0.946566
0.00422651
0.00424431
0.00426464
0.0042879
0.00431443
0.00434432
0.00437718
0.00441233
0.00445004
0.00449059
0.00453434
0.00458168
0.00463305
0.00468951
0.00474747
0.00480681
0.00486719
0.00492814
0.00498924
0.0050499
0.00510975
0.00516822
0.00522499
0.00528013
0.00533683
0.00540737
0.00554544
0.00593211
0.0071724
0.0112109
0.0239816
0.0620681
0.165434
0.414994
0.00420431
0.00421915
0.0042361
0.0042555
0.00427775
0.00430321
0.00433208
0.00436436
0.00439868
0.00443513
0.00447404
0.00451583
0.00456091
0.00461015
0.00466068
0.00471243
0.00476518
0.0048186
0.00487226
0.00492587
0.00497871
0.00503071
0.00508107
0.0051305
0.00517839
0.00523181
0.00530499
0.00545233
0.00587801
0.0072491
0.0116926
0.025549
0.0656513
0.170753
0.00418404
0.00419619
0.00421002
0.00422582
0.00424393
0.00426474
0.00428863
0.00431591
0.00434657
0.00437992
0.00441489
0.00445179
0.004491
0.00453339
0.00457687
0.00462155
0.00466741
0.00471431
0.00476203
0.00481022
0.00485877
0.00490658
0.00495447
0.00499963
0.00504671
0.00509449
0.00514171
0.00521035
0.0053639
0.00581936
0.00729661
0.012058
0.0266009
0.0675969
0.00416628
0.00417609
0.00418721
0.00419982
0.00421425
0.0042308
0.00424984
0.00427177
0.00429691
0.00432544
0.00435723
0.00439081
0.00442568
0.00446252
0.00449987
0.00453798
0.00457705
0.00461724
0.00465854
0.00470107
0.00474415
0.00478912
0.00483247
0.00488015
0.00492924
0.00497102
0.00501231
0.00505812
0.00512683
0.00528586
0.00576706
0.00733471
0.0123289
0.0273025
0.00415133
0.00415918
0.00416803
0.00417801
0.00418935
0.00420228
0.00421712
0.0042342
0.0042539
0.00427658
0.00430256
0.00433179
0.00436416
0.0043977
0.00443088
0.00446433
0.00449778
0.00453123
0.00456564
0.00460102
0.00463861
0.00467575
0.0047204
0.00476784
0.00480848
0.00484944
0.00489027
0.00493202
0.00497899
0.0050505
0.00521781
0.00572669
0.00737625
0.0125688
0.00413953
0.00414589
0.00415299
0.00416093
0.00416989
0.00418002
0.00419155
0.00420476
0.00421995
0.00423748
0.00425774
0.00428104
0.00430768
0.0043376
0.00436917
0.00439933
0.00443452
0.00447098
0.00449917
0.0045279
0.00455746
0.00458935
0.00462345
0.0046586
0.00469488
0.0047325
0.00477125
0.00481103
0.00485296
0.00490189
0.0049788
0.00516115
0.00571583
0.00749996
0.00413143
0.00413683
0.00414277
0.00414935
0.0041567
0.00416494
0.00417425
0.00418481
0.00419688
0.00421075
0.00422676
0.00424528
0.0042667
0.00429141
0.00431847
0.00434719
0.0043785
0.00441224
0.00444192
0.0044703
0.00449786
0.0045254
0.00455356
0.00458256
0.00461288
0.00464479
0.00467844
0.00471388
0.0047514
0.00479244
0.00484357
0.0049311
0.00515113
0.0058318
0.00412575
0.00413052
0.0041357
0.00414136
0.00414761
0.00415455
0.00416231
0.00417105
0.00418094
0.00419222
0.00420517
0.00422012
0.00423744
0.00425759
0.00428005
0.00430482
0.00433211
0.00436204
0.00439289
0.0044222
0.00445009
0.00447685
0.00450295
0.00452883
0.00455508
0.00458225
0.00461077
0.004641
0.00467332
0.00470838
0.00474858
0.00480357
0.00491038
0.00520229
0.00412173
0.00412609
0.00413076
0.0041358
0.0041413
0.00414733
0.00415401
0.00416145
0.0041698
0.00417924
0.00418998
0.00420231
0.00421654
0.00423309
0.00425169
0.00427254
0.00429584
0.00432175
0.00435
0.00437975
0.00440905
0.00443674
0.00446301
0.00448817
0.00451269
0.00453716
0.00456211
0.0045881
0.00461566
0.00464539
0.00467849
0.00471898
0.00478217
0.00492522
0.00411891
0.004123
0.00412734
0.00413197
0.00413694
0.00414234
0.00414824
0.00415475
0.00416199
0.0041701
0.00417924
0.00418963
0.00420155
0.00421536
0.00423091
0.00424845
0.00426824
0.00429045
0.00431523
0.00434246
0.0043715
0.00440094
0.00442855
0.00445451
0.00447911
0.00450277
0.00452601
0.00454939
0.00457352
0.00459904
0.00462684
0.00465894
0.0047023
0.00478277
0.00411698
0.00412091
0.00412504
0.00412938
0.004134
0.00413895
0.00414431
0.00415015
0.00415657
0.0041637
0.00417166
0.00418062
0.00419081
0.00420254
0.00421572
0.00423061
0.00424748
0.00426651
0.00428799
0.00431209
0.00433872
0.00436742
0.00439704
0.00442461
0.00445031
0.00447444
0.0044974
0.00451969
0.00454188
0.00456461
0.00458864
0.00461527
0.00464806
0.00469937
0.00411576
0.00411959
0.00412358
0.00412774
0.00413212
0.00413677
0.00414173
0.00414708
0.00415291
0.0041593
0.00416638
0.00417427
0.00418316
0.0041933
0.00420465
0.00421745
0.00423197
0.00424837
0.00426698
0.00428807
0.00431184
0.00433826
0.00436694
0.00439659
0.00442428
0.00444982
0.00447354
0.00449586
0.00451728
0.00453841
0.00455997
0.00458292
0.0046094
0.00464565
0.00411507
0.00411888
0.0041228
0.00412685
0.00413107
0.0041355
0.00414019
0.00414519
0.00415057
0.00415641
0.00416282
0.00416991
0.0041778
0.00418672
0.00419666
0.00420782
0.00422044
0.0042347
0.00425091
0.00426937
0.00429038
0.00431414
0.00434069
0.00436957
0.00439935
0.0044269
0.00445223
0.00447558
0.00449732
0.00451797
0.00453816
0.00455873
0.00458117
0.00460887
0.00411479
0.00411862
0.00412253
0.00412652
0.00413065
0.00413495
0.00413944
0.00414419
0.00414925
0.00415468
0.00416058
0.00416704
0.00417417
0.00418215
0.00419098
0.00420084
0.00421197
0.00422449
0.00423872
0.00425495
0.0042735
0.0042947
0.00431877
0.00434573
0.004375
0.00440453
0.00443169
0.00445664
0.00447957
0.0045008
0.00452079
0.0045402
0.0045602
0.00458276
0.00411473
0.00411866
0.00412262
0.00412663
0.00413073
0.00413495
0.00413932
0.0041439
0.00414872
0.00415385
0.00415936
0.00416534
0.00417188
0.00417912
0.00418709
0.00419598
0.00420584
0.00421695
0.00422954
0.00424391
0.00426036
0.00427925
0.00430091
0.00432558
0.0043532
0.0043829
0.00441204
0.00443861
0.0044629
0.00448517
0.00450575
0.00452506
0.00454396
0.00456358
0.00411472
0.00411884
0.00412294
0.00412703
0.00413116
0.00413537
0.00413969
0.00414415
0.00414882
0.00415373
0.00415895
0.00416455
0.00417063
0.00417729
0.00418458
0.00419264
0.00420154
0.0042115
0.00422275
0.00423556
0.00425023
0.0042671
0.00428656
0.00430895
0.00433448
0.00436295
0.00439311
0.00442173
0.00444752
0.00447091
0.00449227
0.00451197
0.00453062
0.00454877
0.00411463
0.00411904
0.00412335
0.0041276
0.00413183
0.00413609
0.00414041
0.00414483
0.0041494
0.00415416
0.00415917
0.00416449
0.0041702
0.00417642
0.00418321
0.00419056
0.00419867
0.00420769
0.00421784
0.00422935
0.00424251
0.00425766
0.00427516
0.00429543
0.00431881
0.00434545
0.00437492
0.00440545
0.00443319
0.004458
0.00448031
0.00450055
0.00451931
0.00453682
0.00411441
0.00411916
0.00412376
0.00412823
0.00413264
0.00413701
0.00414139
0.00414582
0.00415035
0.00415502
0.00415988
0.00416499
0.00417042
0.00417629
0.00418265
0.00418947
0.00419693
0.00420519
0.00421443
0.00422486
0.00423675
0.00425041
0.00426621
0.00428457
0.0043059
0.00433055
0.00435852
0.00438901
0.00441906
0.00444578
0.00446948
0.00449057
0.00450969
0.00452696
0.00411401
0.00411916
0.00412409
0.00412885
0.00413349
0.00413803
0.00414253
0.00414703
0.00415158
0.00415621
0.00416098
0.00416594
0.00417117
0.00417676
0.00418277
0.00418916
0.0041961
0.00420373
0.00421221
0.00422174
0.00423256
0.00424496
0.00425929
0.00427596
0.00429541
0.00431808
0.00434426
0.00437371
0.00440486
0.00443366
0.00445914
0.00448153
0.0045014
0.00451877
0.00411345
0.00411902
0.00412433
0.00412942
0.00413432
0.00413909
0.00414376
0.00414838
0.00415299
0.00415764
0.00416237
0.00416725
0.00417233
0.00417771
0.00418344
0.00418949
0.004196
0.00420311
0.00421096
0.00421974
0.00422966
0.00424098
0.00425404
0.00426923
0.00428699
0.0043078
0.00433211
0.00436003
0.00439087
0.00442151
0.00444884
0.00447285
0.00449389
0.00451179
0.00411274
0.00411874
0.00412445
0.00412989
0.00413511
0.00414014
0.00414502
0.0041498
0.00415453
0.00415924
0.00416398
0.00416882
0.0041738
0.00417904
0.00418455
0.00419032
0.00419649
0.00420318
0.00421051
0.00421864
0.00422779
0.0042382
0.00425017
0.00426406
0.00428032
0.00429944
0.00432192
0.00434814
0.0043779
0.00440947
0.00443852
0.00446421
0.00448671
0.00450555
0.0041119
0.00411833
0.00412445
0.00413027
0.00413582
0.00414114
0.00414627
0.00415126
0.00415613
0.00416095
0.00416575
0.00417059
0.00417553
0.00418066
0.00418602
0.00419157
0.00419746
0.00420379
0.00421069
0.00421829
0.00422679
0.00423641
0.00424743
0.0042602
0.00427514
0.00429272
0.0043135
0.00433797
0.0043663
0.00439762
0.00442822
0.00445553
0.00447959
0.00449967
0.00411093
0.0041178
0.00412433
0.00413053
0.00413644
0.00414208
0.00414748
0.0041527
0.00415776
0.00416272
0.00416761
0.0041725
0.00417743
0.0041825
0.00418776
0.00419315
0.00419881
0.00420486
0.00421139
0.00421854
0.00422649
0.00423544
0.00424565
0.00425744
0.0042712
0.00428742
0.00430663
0.00432941
0.00435615
0.00438655
0.00441821
0.00444689
0.00447245
0.0044939
0.00410989
0.00411717
0.0041241
0.00413069
0.00413696
0.00414293
0.00414863
0.0041541
0.00415938
0.00416451
0.00416953
0.0041745
0.00417946
0.00418452
0.0041897
0.00419498
0.00420047
0.00420628
0.00421251
0.00421929
0.00422677
0.00423514
0.00424465
0.00425559
0.00426833
0.00428332
0.00430111
0.0043223
0.00434741
0.00437655
0.00440833
0.0044383
0.00446527
0.00448812
0.0041088
0.00411646
0.00412377
0.00413074
0.00413737
0.00414368
0.0041497
0.00415544
0.00416096
0.00416629
0.00417147
0.00417654
0.00418157
0.00418665
0.00419181
0.004197
0.00420237
0.004208
0.00421398
0.00422044
0.00422752
0.0042354
0.0042443
0.0042545
0.00426634
0.00428025
0.00429676
0.00431648
0.00434001
0.00436771
0.0043989
0.00442984
0.00445807
0.00448229
0.00410768
0.00411568
0.00412336
0.00413069
0.00413768
0.00414433
0.00415066
0.0041567
0.00416247
0.00416802
0.00417338
0.0041786
0.00418373
0.00418885
0.00419402
0.00419917
0.00420445
0.00420994
0.00421572
0.00422192
0.00422867
0.00423613
0.0042445
0.00425405
0.0042651
0.00427805
0.00429341
0.00431178
0.00433381
0.00436003
0.00439023
0.00442165
0.00445088
0.00447637
0.00410655
0.00411486
0.00412287
0.00413055
0.00413788
0.00414487
0.00415152
0.00415786
0.0041639
0.00416968
0.00417524
0.00418063
0.00418588
0.00419109
0.00419629
0.00420144
0.00420667
0.00421205
0.00421768
0.00422367
0.00423013
0.00423723
0.00424515
0.00425414
0.0042645
0.0042766
0.00429093
0.00430808
0.00432871
0.00435344
0.00438243
0.0044139
0.00444381
0.00447039
0.00410541
0.00411401
0.00412232
0.00413033
0.00413799
0.0041453
0.00415227
0.0041589
0.00416522
0.00417125
0.00417703
0.0041826
0.004188
0.00419331
0.00419858
0.00420376
0.00420897
0.00421429
0.0042198
0.00422562
0.00423185
0.00423864
0.00424618
0.00425468
0.00426443
0.00427578
0.0042892
0.00430524
0.00432457
0.00434788
0.00437555
0.00440654
0.00443691
0.00446438
0.00410429
0.00411313
0.00412172
0.00413002
0.00413799
0.00414562
0.00415289
0.00415982
0.00416642
0.00417272
0.00417873
0.00418449
0.00419006
0.00419551
0.00420087
0.0042061
0.00421132
0.0042166
0.00422204
0.00422773
0.00423377
0.00424031
0.00424751
0.00425559
0.00426481
0.0042755
0.00428809
0.00430314
0.00432128
0.00434324
0.00436957
0.00439975
0.00443029
0.00445841
0.00410318
0.00411222
0.00412096
0.00412959
0.00413788
0.00414581
0.00415339
0.00416061
0.00416749
0.00417405
0.0041803
0.00418628
0.00419203
0.00419763
0.0042031
0.00420841
0.00421367
0.00421896
0.00422435
0.00422994
0.00423584
0.00424217
0.00424909
0.00425681
0.00426556
0.00427567
0.00428754
0.00430168
0.00431874
0.00433945
0.00436445
0.00439361
0.00442407
0.00445258
0.00410208
0.00411131
0.00412014
0.00412901
0.00413763
0.00414587
0.00415375
0.00416126
0.00416842
0.00417524
0.00418174
0.00418794
0.00419389
0.00419965
0.00420527
0.00421068
0.00421601
0.00422132
0.0042267
0.00423223
0.00423802
0.00424418
0.00425087
0.00425828
0.00426663
0.00427622
0.00428745
0.00430079
0.00431686
0.0043364
0.00436012
0.00438817
0.00441832
0.00444697
0.004101
0.00411038
0.00411924
0.00412828
0.00413722
0.00414578
0.00415396
0.00416176
0.00416919
0.00417627
0.00418302
0.00418946
0.00419561
0.00420156
0.00420732
0.00421286
0.00421828
0.00422365
0.00422905
0.00423455
0.00424026
0.0042463
0.0042528
0.00425994
0.00426795
0.0042771
0.00428775
0.00430037
0.00431556
0.00433402
0.00435652
0.00438342
0.0044131
0.00444168
0.00409994
0.00410944
0.00411829
0.00412741
0.00413657
0.00414551
0.004154
0.00416209
0.00416979
0.00417714
0.00418413
0.00419081
0.00419718
0.00420332
0.00420925
0.00421493
0.00422047
0.00422592
0.00423136
0.00423686
0.00424254
0.00424848
0.00425484
0.00426177
0.00426948
0.00427824
0.00428839
0.00430037
0.00431475
0.00433223
0.00435358
0.00437932
0.00440841
0.00443675
0.0040989
0.0041085
0.00411729
0.00412644
0.00413574
0.00414495
0.00415382
0.00416222
0.00417021
0.00417782
0.00418507
0.00419198
0.00419858
0.00420492
0.00421103
0.00421687
0.00422253
0.00422809
0.0042336
0.00423914
0.0042448
0.00425069
0.00425694
0.0042637
0.00427116
0.00427959
0.0042893
0.00430072
0.00431437
0.00433095
0.00435124
0.00437585
0.00440416
0.00443219
0.00409788
0.00410755
0.00411626
0.00412538
0.00413474
0.00414414
0.00415334
0.00416212
0.00417042
0.00417831
0.00418581
0.00419296
0.00419978
0.00420634
0.00421264
0.00421865
0.00422446
0.00423014
0.00423574
0.00424134
0.00424703
0.0042529
0.00425907
0.0042657
0.00427297
0.00428112
0.00429045
0.00430136
0.00431437
0.00433013
0.00434943
0.00437295
0.00440038
0.00442802
0.00409687
0.0041066
0.0041152
0.00412424
0.00413361
0.0041431
0.00415252
0.00416166
0.00417036
0.00417856
0.00418633
0.00419373
0.00420078
0.00420755
0.00421405
0.00422024
0.00422622
0.00423204
0.00423775
0.00424344
0.00424917
0.00425505
0.00426119
0.00426773
0.00427485
0.00428276
0.00429177
0.00430225
0.00431468
0.00432971
0.0043481
0.00437058
0.00439709
0.00442423
0.00409588
0.00410566
0.00411412
0.00412305
0.00413235
0.00414185
0.00415139
0.00416078
0.00416985
0.00417847
0.00418657
0.00419424
0.00420154
0.00420853
0.00421523
0.00422162
0.00422777
0.00423375
0.0042396
0.00424539
0.0042512
0.00425712
0.00426326
0.00426975
0.00427676
0.00428449
0.00429323
0.00430333
0.00431526
0.00432962
0.00434718
0.00436869
0.00439425
0.00442081
0.00409491
0.00410471
0.00411302
0.0041218
0.00413099
0.00414044
0.00415001
0.00415952
0.00416882
0.00417779
0.00418631
0.00419437
0.00420197
0.00420921
0.00421614
0.00422273
0.00422908
0.00423523
0.00424123
0.00424715
0.00425307
0.00425906
0.00426523
0.0042717
0.00427864
0.00428624
0.00429476
0.00430455
0.00431604
0.00432982
0.00434662
0.00436721
0.00439182
0.00441773
0.00409395
0.00410377
0.00411191
0.00412052
0.00412955
0.00413889
0.0041484
0.00415794
0.00416736
0.00417655
0.00418536
0.0041939
0.00420174
0.00420938
0.00421662
0.00422349
0.00423006
0.00423641
0.00424258
0.00424865
0.00425469
0.00426077
0.00426701
0.00427351
0.00428043
0.00428795
0.00429631
0.00430584
0.00431696
0.00433023
0.00434636
0.0043661
0.00438976
0.00441494
0.004093
0.00410283
0.00411079
0.00411922
0.00412806
0.00413724
0.00414663
0.00415611
0.00416555
0.00417484
0.00418382
0.00419265
0.00420074
0.00420892
0.00421657
0.00422378
0.0042306
0.00423714
0.0042435
0.00424974
0.00425593
0.00426214
0.00426848
0.00427506
0.00428201
0.0042895
0.00429777
0.00430712
0.00431795
0.00433079
0.00434631
0.00436527
0.00438799
0.00441239
0.00409206
0.00410182
0.00410964
0.00411788
0.00412652
0.0041355
0.00414472
0.00415408
0.00416346
0.00417274
0.0041818
0.00419079
0.00419906
0.00420779
0.00421592
0.00422353
0.00423044
0.00423713
0.00424368
0.00425012
0.00425653
0.00426293
0.00426943
0.00427614
0.00428319
0.00429074
0.004299
0.00430824
0.00431886
0.00433135
0.00434636
0.00436459
0.00438636
0.00440999
0.00409112
0.00410078
0.00410846
0.00411652
0.00412494
0.0041337
0.00414272
0.0041519
0.00416114
0.00417035
0.00417939
0.00418843
0.0041968
0.00420603
0.00421465
0.0042227
0.00422961
0.00423637
0.00424302
0.00424961
0.00425618
0.00426278
0.00426949
0.00427641
0.00428366
0.00429137
0.00429973
0.00430898
0.00431949
0.00433174
0.00434632
0.00436387
0.00438474
0.00440767
0.00409014
0.00409969
0.00410726
0.00411513
0.00412334
0.00413186
0.00414064
0.00414961
0.00415866
0.00416773
0.00417668
0.00418568
0.00419408
0.00420366
0.00421275
0.00422128
0.00422818
0.00423496
0.00424166
0.00424833
0.00425502
0.00426177
0.00426865
0.00427575
0.00428319
0.00429108
0.0042996
0.00430896
0.00431949
0.00433161
0.00434587
0.00436286
0.00438301
0.00440534
0.00408914
0.00409858
0.00410602
0.00411372
0.00412171
0.00412999
0.00413852
0.00414724
0.00415607
0.00416495
0.00417375
0.00418264
0.00419098
0.00420067
0.00421027
0.00421927
0.00422617
0.00423295
0.00423968
0.0042464
0.00425316
0.00426002
0.00426703
0.00427429
0.0042819
0.00428997
0.00429866
0.00430816
0.00431876
0.00433084
0.0043449
0.00436148
0.00438108
0.00440291
0.00408814
0.00409743
0.00410475
0.00411229
0.00412007
0.0041281
0.00413637
0.00414483
0.00415341
0.00416205
0.00417065
0.00417938
0.00418761
0.00419726
0.00420729
0.00421674
0.00422363
0.00423041
0.00423714
0.00424388
0.00425069
0.00425762
0.00426475
0.00427214
0.00427989
0.00428813
0.00429698
0.00430664
0.00431735
0.00432945
0.0043434
0.00435971
0.00437891
0.00440034
0.00408713
0.00409627
0.00410346
0.00411084
0.00411841
0.0041262
0.0041342
0.00414238
0.00415069
0.00415908
0.00416745
0.00417597
0.00418404
0.00419355
0.00420393
0.00421377
0.00422064
0.0042274
0.00423412
0.00424086
0.0042477
0.00425468
0.00426188
0.00426937
0.00427726
0.00428564
0.00429465
0.00430447
0.00431531
0.00432748
0.0043414
0.00435754
0.00437644
0.00439757
0.00408612
0.00409509
0.00410214
0.00410936
0.00411674
0.00412429
0.00413203
0.00413993
0.00414795
0.00415606
0.00416417
0.00417245
0.00418032
0.00418964
0.0042003
0.00421045
0.00421725
0.00422396
0.00423066
0.0042374
0.00424424
0.00425125
0.00425851
0.00426609
0.00427408
0.00428259
0.00429175
0.00430172
0.0043127
0.00432497
0.00433892
0.00435497
0.00437368
0.00439459
0.0040851
0.0040939
0.00410081
0.00410786
0.00411504
0.00412237
0.00412985
0.00413747
0.0041452
0.00415303
0.00416086
0.00416888
0.00417652
0.0041856
0.00419648
0.00420675
0.00421348
0.00422015
0.00422681
0.00423353
0.00424038
0.00424741
0.0042547
0.00426235
0.00427043
0.00427905
0.00428835
0.00429846
0.00430958
0.00432197
0.00433598
0.00435201
0.00437061
0.00439138
0.00408408
0.0040927
0.00409945
0.00410634
0.00411333
0.00412044
0.00412767
0.00413501
0.00414246
0.00414999
0.00415753
0.00416527
0.00417266
0.00418148
0.00419253
0.00420267
0.00420936
0.004216
0.00422263
0.00422933
0.00423616
0.0042432
0.00425053
0.00425822
0.00426637
0.00427509
0.0042845
0.00429475
0.00430602
0.00431854
0.00433264
0.0043487
0.00436724
0.00438793
0.00408307
0.0040915
0.00409809
0.0041048
0.0041116
0.00411849
0.00412548
0.00413255
0.00413971
0.00414695
0.0041542
0.00416165
0.00416878
0.00417731
0.00418849
0.00419837
0.004205
0.00421157
0.00421816
0.00422483
0.00423165
0.00423869
0.00424603
0.00425376
0.00426197
0.00427077
0.00428029
0.00429066
0.00430206
0.00431471
0.00432892
0.00434504
0.00436358
0.00438425
0.00408205
0.00409029
0.00409671
0.00410324
0.00410985
0.00411653
0.00412328
0.0041301
0.00413697
0.00414393
0.00415089
0.00415805
0.0041649
0.00417314
0.0041844
0.00419394
0.00420045
0.00420694
0.00421347
0.00422009
0.00422688
0.00423391
0.00424126
0.00424902
0.00425728
0.00426615
0.00427575
0.00428623
0.00429776
0.00431054
0.00432487
0.00434107
0.00435966
0.00438034
0.00408104
0.00408908
0.00409532
0.00410167
0.00410809
0.00411455
0.00412107
0.00412764
0.00413425
0.00414092
0.00414759
0.00415446
0.00416104
0.00416897
0.00418019
0.0041894
0.00419576
0.00420215
0.0042086
0.00421517
0.00422192
0.00422893
0.00423628
0.00424405
0.00425234
0.00426127
0.00427094
0.00428152
0.00429316
0.00430607
0.00432052
0.00433683
0.00435548
0.00437621
0.00408003
0.00408786
0.00409393
0.00410009
0.0041063
0.00411256
0.00411885
0.00412517
0.00413152
0.00413792
0.00414431
0.0041509
0.0041572
0.00416484
0.0041758
0.00418475
0.00419097
0.00419724
0.0042036
0.0042101
0.0042168
0.00422378
0.00423112
0.0042389
0.00424721
0.00425618
0.00426592
0.00427657
0.00428832
0.00430134
0.00431592
0.00433234
0.00435108
0.0043719
0.00407902
0.00408664
0.00409252
0.00409849
0.00410451
0.00411056
0.00411663
0.00412271
0.0041288
0.00413494
0.00414106
0.00414737
0.00415341
0.00416074
0.00417137
0.00418003
0.00418612
0.00419227
0.00419852
0.00420493
0.00421158
0.00421852
0.00422583
0.0042336
0.00424193
0.00425092
0.00426071
0.00427143
0.00428327
0.0042964
0.0043111
0.00432763
0.00434648
0.0043674
0.004078
0.00408542
0.00409111
0.00409689
0.0041027
0.00410854
0.00411439
0.00412024
0.00412609
0.00413197
0.00413783
0.00414387
0.00414966
0.0041567
0.00416694
0.00417531
0.00418125
0.00418726
0.00419339
0.00419971
0.00420628
0.00421317
0.00422044
0.0042282
0.00423652
0.00424554
0.00425536
0.00426614
0.00427805
0.00429128
0.00430609
0.00432274
0.0043417
0.00436275
0.00407698
0.00408419
0.0040897
0.00409528
0.00410089
0.00410652
0.00411214
0.00411777
0.00412339
0.00412902
0.00413463
0.00414041
0.00414594
0.0041527
0.00416255
0.00417062
0.00417639
0.00418225
0.00418826
0.00419447
0.00420095
0.00420777
0.004215
0.00422272
0.00423104
0.00424006
0.00424991
0.00426073
0.0042727
0.00428602
0.00430093
0.0043177
0.00433678
0.00435795
0.00407596
0.00408296
0.00408829
0.00409366
0.00409907
0.00410448
0.00410989
0.0041153
0.00412068
0.00412608
0.00413145
0.00413698
0.00414227
0.00414875
0.00415822
0.00416597
0.00417157
0.00417727
0.00418314
0.00418924
0.00419562
0.00420236
0.00420953
0.00421721
0.00422551
0.00423452
0.00424438
0.00425524
0.00426726
0.00428065
0.00429565
0.00431253
0.00433173
0.00435305
0.00407492
0.00408172
0.00408687
0.00409205
0.00409724
0.00410245
0.00410764
0.00411283
0.00411799
0.00412316
0.00412829
0.00413359
0.00413865
0.00414486
0.00415395
0.00416139
0.0041668
0.00417235
0.00417807
0.00418404
0.00419031
0.00419696
0.00420406
0.00421169
0.00421995
0.00422894
0.00423881
0.00424968
0.00426174
0.00427519
0.00429027
0.00430726
0.00432658
0.00434804
0.00407388
0.00408047
0.00408542
0.00409041
0.00409541
0.0041004
0.00410539
0.00411035
0.0041153
0.00412024
0.00412515
0.00413022
0.00413506
0.00414102
0.00414974
0.00415687
0.0041621
0.00416749
0.00417307
0.0041789
0.00418505
0.0041916
0.00419862
0.00420619
0.0042144
0.00422337
0.00423322
0.0042441
0.00425619
0.00426969
0.00428484
0.00430192
0.00432136
0.00434296
0.00407282
0.00407921
0.00408398
0.00408878
0.00409357
0.00409835
0.00410312
0.00410788
0.0041126
0.00411734
0.00412203
0.00412687
0.0041315
0.00413721
0.00414557
0.00415241
0.00415747
0.00416269
0.00416811
0.00417381
0.00417984
0.00418628
0.00419321
0.0042007
0.00420886
0.00421779
0.00422761
0.00423849
0.00425059
0.00426412
0.00427934
0.0042965
0.00431604
0.00433779
0.00407177
0.0040779
0.00408249
0.00408712
0.00409173
0.00409632
0.00410088
0.00410543
0.00410995
0.00411447
0.00411896
0.00412359
0.00412805
0.00413351
0.00414149
0.00414808
0.00415295
0.00415803
0.00416332
0.00416889
0.00417481
0.00418114
0.00418798
0.0041954
0.0042035
0.00421239
0.0042222
0.00423307
0.00424519
0.00425877
0.00427404
0.0042913
0.00431095
0.00433285
0.00405082
0.00404774
0.00404545
0.00404358
0.004042
0.00404062
0.0040394
0.00403831
0.00403733
0.00403646
0.00403568
0.004035
0.0040344
0.00403389
0.00403348
0.00403318
0.00403301
0.00403299
0.00403318
0.00403367
0.00403459
0.00403625
0.00403919
0.00404305
0.00404602
0.00404895
0.00405221
0.00405586
0.0040599
0.00406411
0.0040677
0.00407009
0.00407243
0.00407628
0.0040792
0.00408192
0.00408622
0.00409298
0.00410307
0.00411726
0.00413574
0.00415852
0.00418552
0.00421678
0.00425182
0.00429039
0.00433142
0.00437514
0.00442195
0.00405069
0.00404759
0.0040453
0.00404344
0.00404186
0.00404048
0.00403927
0.00403819
0.00403722
0.00403635
0.00403558
0.0040349
0.00403431
0.00403381
0.00403341
0.00403311
0.00403295
0.00403294
0.00403314
0.00403363
0.00403457
0.00403624
0.00403918
0.00404304
0.00404603
0.00404894
0.00405218
0.0040558
0.00405981
0.00406399
0.00406755
0.00406991
0.00407222
0.00407608
0.00407911
0.00408185
0.00408613
0.00409287
0.00410294
0.00411708
0.00413548
0.00415816
0.00418503
0.00421607
0.00425084
0.00428904
0.00432966
0.00437275
0.00441859
0.00405055
0.00404744
0.00404515
0.00404329
0.00404171
0.00404034
0.00403913
0.00403806
0.0040371
0.00403624
0.00403547
0.0040348
0.00403421
0.00403372
0.00403332
0.00403304
0.00403288
0.00403288
0.00403309
0.0040336
0.00403455
0.00403622
0.00403918
0.00404304
0.00404603
0.00404893
0.00405215
0.00405575
0.00405973
0.00406386
0.00406739
0.00406973
0.00407202
0.00407589
0.00407902
0.00408179
0.00408606
0.00409278
0.00410281
0.00411689
0.0041352
0.00415776
0.00418446
0.00421524
0.00424969
0.00428745
0.00432757
0.00436994
0.00441469
0.0040504
0.00404728
0.00404498
0.00404313
0.00404156
0.00404019
0.00403899
0.00403792
0.00403697
0.00403611
0.00403536
0.00403469
0.00403411
0.00403363
0.00403324
0.00403296
0.00403281
0.00403282
0.00403304
0.00403355
0.00403452
0.0040362
0.00403917
0.00404303
0.00404603
0.00404892
0.00405212
0.00405569
0.00405964
0.00406374
0.00406724
0.00406956
0.00407181
0.00407569
0.00407894
0.00408175
0.00408601
0.0040927
0.00410268
0.00411669
0.0041349
0.00415731
0.0041838
0.00421428
0.00424833
0.00428557
0.0043251
0.00436665
0.00441021
0.00405025
0.00404711
0.00404481
0.00404296
0.0040414
0.00404004
0.00403884
0.00403778
0.00403683
0.00403599
0.00403523
0.00403457
0.004034
0.00403353
0.00403315
0.00403288
0.00403274
0.00403276
0.00403298
0.00403351
0.00403448
0.00403618
0.00403915
0.00404301
0.00404603
0.00404891
0.00405208
0.00405563
0.00405955
0.00406361
0.00406708
0.0040694
0.0040716
0.00407548
0.00407887
0.00408173
0.00408598
0.00409263
0.00410257
0.00411648
0.00413456
0.0041568
0.00418304
0.00421316
0.00424675
0.00428338
0.0043222
0.00436283
0.0044051
0.0040501
0.00404693
0.00404464
0.00404279
0.00404123
0.00403988
0.00403868
0.00403763
0.00403669
0.00403585
0.0040351
0.00403445
0.00403389
0.00403342
0.00403305
0.00403279
0.00403266
0.00403268
0.00403292
0.00403346
0.00403444
0.00403615
0.00403913
0.004043
0.00404603
0.00404889
0.00405205
0.00405558
0.00405945
0.00406348
0.00406693
0.00406924
0.00407142
0.00407527
0.0040788
0.00408173
0.00408597
0.00409259
0.00410246
0.00411625
0.00413418
0.00415619
0.00418206
0.00421181
0.00424488
0.00428082
0.00431883
0.00435843
0.00439932
0.00404993
0.00404674
0.00404445
0.00404261
0.00404105
0.0040397
0.00403852
0.00403747
0.00403653
0.0040357
0.00403497
0.00403432
0.00403377
0.0040333
0.00403294
0.00403269
0.00403257
0.00403261
0.00403285
0.0040334
0.00403439
0.00403611
0.0040391
0.00404298
0.00404602
0.00404888
0.00405202
0.00405552
0.00405936
0.00406335
0.00406678
0.0040691
0.00407126
0.00407507
0.00407874
0.00408175
0.00408599
0.00409257
0.00410235
0.00411601
0.00413374
0.00415535
0.00418071
0.00420992
0.00424247
0.00427776
0.00431489
0.00435337
0.0043928
0.00404977
0.00404655
0.00404425
0.00404241
0.00404086
0.00403952
0.00403834
0.0040373
0.00403637
0.00403555
0.00403482
0.00403418
0.00403364
0.00403318
0.00403283
0.00403259
0.00403247
0.00403252
0.00403278
0.00403333
0.00403434
0.00403607
0.00403907
0.00404295
0.00404601
0.00404886
0.00405198
0.00405546
0.00405927
0.00406323
0.00406664
0.00406897
0.00407113
0.00407488
0.00407867
0.0040818
0.00408604
0.00409256
0.00410224
0.00411572
0.00413314
0.00415416
0.00417887
0.00420737
0.0042392
0.00427371
0.00430993
0.00434743
0.00438529
0.0040496
0.00404634
0.00404404
0.00404221
0.00404066
0.00403933
0.00403816
0.00403712
0.0040362
0.00403539
0.00403466
0.00403404
0.0040335
0.00403305
0.00403271
0.00403247
0.00403237
0.00403243
0.00403269
0.00403326
0.00403428
0.00403602
0.00403903
0.00404292
0.004046
0.00404884
0.00405195
0.0040554
0.00405918
0.0040631
0.00406651
0.00406887
0.00407103
0.00407471
0.00407861
0.00408187
0.00408612
0.00409258
0.00410212
0.0041154
0.00413227
0.00415256
0.00417645
0.00420405
0.00423497
0.00426853
0.00430374
0.00434023
0.00437559
0.00404942
0.00404613
0.00404383
0.00404199
0.00404045
0.00403913
0.00403796
0.00403693
0.00403602
0.00403521
0.0040345
0.00403388
0.00403335
0.00403291
0.00403257
0.00403235
0.00403226
0.00403232
0.0040326
0.00403318
0.0040342
0.00403595
0.00403897
0.00404288
0.00404598
0.00404882
0.00405191
0.00405534
0.00405909
0.00406298
0.00406638
0.00406879
0.00407096
0.00407458
0.00407855
0.00408197
0.00408624
0.00409263
0.00410201
0.00411493
0.0041311
0.00415052
0.00417341
0.00419993
0.00422976
0.00426226
0.00429647
0.00433152
0.00436427
0.00404924
0.00404591
0.0040436
0.00404177
0.00404023
0.00403891
0.00403775
0.00403673
0.00403583
0.00403503
0.00403432
0.00403371
0.00403319
0.00403276
0.00403243
0.00403222
0.00403213
0.00403221
0.0040325
0.00403308
0.00403412
0.00403588
0.00403891
0.00404282
0.00404596
0.0040488
0.00405187
0.00405528
0.00405899
0.00406286
0.00406627
0.00406873
0.00407094
0.00407448
0.00407851
0.00408209
0.0040864
0.00409269
0.00410188
0.00411421
0.00412955
0.00414793
0.00416964
0.00419489
0.00422346
0.00425476
0.00428801
0.00432075
0.00435169
0.00404905
0.00404567
0.00404336
0.00404153
0.00404
0.00403869
0.00403754
0.00403652
0.00403562
0.00403483
0.00403413
0.00403353
0.00403302
0.0040326
0.00403228
0.00403207
0.004032
0.00403208
0.00403238
0.00403298
0.00403403
0.0040358
0.00403883
0.00404276
0.00404593
0.00404877
0.00405183
0.00405521
0.0040589
0.00406275
0.00406617
0.00406871
0.00407097
0.00407443
0.00407849
0.00408223
0.00408658
0.00409277
0.00410161
0.00411322
0.00412759
0.00414481
0.00416518
0.00418898
0.00421612
0.00424612
0.00427843
0.00430873
0.00433826
0.00404885
0.00404543
0.00404311
0.00404128
0.00403976
0.00403845
0.0040373
0.0040363
0.00403541
0.00403462
0.00403393
0.00403334
0.00403283
0.00403242
0.00403211
0.00403191
0.00403185
0.00403194
0.00403225
0.00403286
0.00403392
0.00403569
0.00403873
0.00404268
0.00404589
0.00404874
0.00405178
0.00405514
0.00405881
0.00406264
0.00406608
0.00406872
0.00407104
0.00407443
0.00407849
0.00408239
0.00408679
0.00409284
0.00410116
0.00411195
0.00412525
0.00414118
0.0041601
0.00418232
0.00420791
0.00423651
0.00426737
0.00429563
0.00432393
0.00404865
0.00404517
0.00404284
0.00404102
0.0040395
0.00403819
0.00403706
0.00403606
0.00403518
0.0040344
0.00403372
0.00403313
0.00403263
0.00403223
0.00403193
0.00403174
0.00403168
0.00403179
0.00403211
0.00403272
0.00403379
0.00403557
0.00403861
0.00404257
0.00404584
0.00404869
0.00405172
0.00405506
0.00405871
0.00406252
0.004066
0.00406875
0.00407116
0.00407448
0.00407851
0.00408254
0.00408699
0.00409279
0.00410054
0.00411045
0.00412258
0.00413714
0.00415452
0.0041751
0.00419904
0.00422615
0.00425495
0.00428153
0.00430852
0.00404845
0.00404491
0.00404256
0.00404074
0.00403922
0.00403793
0.0040368
0.0040358
0.00403493
0.00403416
0.00403349
0.0040329
0.00403242
0.00403202
0.00403173
0.00403155
0.0040315
0.00403162
0.00403194
0.00403257
0.00403364
0.00403543
0.00403846
0.00404244
0.00404578
0.00404864
0.00405165
0.00405497
0.00405859
0.0040624
0.00406592
0.00406879
0.00407132
0.00407457
0.00407853
0.00408264
0.0040871
0.00409263
0.00409977
0.00410875
0.00411968
0.00413282
0.00414861
0.00416748
0.0041897
0.00421512
0.00424137
0.00426652
0.00429163
0.00404824
0.00404463
0.00404227
0.00404045
0.00403893
0.00403764
0.00403652
0.00403553
0.00403466
0.0040339
0.00403324
0.00403266
0.00403218
0.0040318
0.00403151
0.00403134
0.0040313
0.00403142
0.00403176
0.00403239
0.00403347
0.00403526
0.00403829
0.00404228
0.00404569
0.00404857
0.00405157
0.00405486
0.00405846
0.00406225
0.00406582
0.00406883
0.00407148
0.00407468
0.00407855
0.00408266
0.00408709
0.00409234
0.00409887
0.00410692
0.00411664
0.00412835
0.00414252
0.00415963
0.00418002
0.00420306
0.00422671
0.00425
0.00427282
0.00404802
0.00404434
0.00404196
0.00404014
0.00403863
0.00403734
0.00403622
0.00403524
0.00403438
0.00403363
0.00403297
0.0040324
0.00403193
0.00403155
0.00403127
0.00403111
0.00403108
0.00403121
0.00403155
0.00403219
0.00403327
0.00403506
0.00403807
0.00404207
0.00404557
0.00404848
0.00405146
0.00405473
0.00405829
0.00406207
0.00406569
0.00406882
0.00407161
0.00407477
0.00407853
0.00408259
0.00408694
0.00409191
0.00409786
0.00410502
0.00411358
0.00412387
0.00413641
0.00415168
0.00417009
0.00419045
0.00421134
0.00423215
0.00425253
0.00404781
0.00404404
0.00404164
0.00403981
0.0040383
0.00403702
0.00403591
0.00403493
0.00403408
0.00403333
0.00403268
0.00403212
0.00403165
0.00403128
0.00403101
0.00403085
0.00403083
0.00403097
0.00403131
0.00403196
0.00403304
0.00403483
0.00403782
0.0040418
0.0040454
0.00404835
0.00405131
0.00405455
0.00405807
0.00406182
0.00406548
0.00406874
0.00407165
0.0040748
0.00407843
0.00408238
0.00408661
0.00409131
0.00409673
0.00410308
0.00411055
0.0041195
0.00413042
0.00414381
0.00416005
0.00417767
0.00419574
0.00421383
0.0042316
0.00404758
0.00404372
0.0040413
0.00403946
0.00403796
0.00403668
0.00403557
0.0040346
0.00403375
0.00403301
0.00403236
0.00403181
0.00403135
0.00403098
0.00403072
0.00403057
0.00403055
0.00403069
0.00403104
0.00403169
0.00403277
0.00403454
0.0040375
0.00404147
0.00404515
0.00404818
0.00405112
0.00405431
0.00405778
0.00406149
0.00406516
0.00406852
0.00407156
0.0040747
0.0040782
0.00408201
0.00408607
0.0040905
0.00409545
0.00410108
0.0041076
0.00411531
0.00412468
0.00413617
0.00415013
0.00416509
0.00418041
0.00419577
0.0042109
0.00404735
0.00404339
0.00404094
0.0040391
0.00403759
0.00403632
0.00403521
0.00403425
0.0040334
0.00403266
0.00403202
0.00403147
0.00403102
0.00403066
0.0040304
0.00403025
0.00403024
0.00403038
0.00403073
0.00403138
0.00403245
0.0040342
0.00403712
0.00404105
0.00404479
0.00404793
0.00405087
0.004054
0.00405739
0.00406102
0.00406468
0.00406811
0.00407125
0.00407439
0.00407777
0.00408141
0.00408529
0.00408944
0.00409397
0.004099
0.00410468
0.00411131
0.00411925
0.00412892
0.0041406
0.00415309
0.00416585
0.00417864
0.00419125
0.00404712
0.00404305
0.00404056
0.00403871
0.0040372
0.00403593
0.00403483
0.00403386
0.00403302
0.00403229
0.00403165
0.0040311
0.00403065
0.00403029
0.00403004
0.00402989
0.00402988
0.00403003
0.00403038
0.00403102
0.00403208
0.0040338
0.00403665
0.00404052
0.00404429
0.00404757
0.00405053
0.00405358
0.00405688
0.00406041
0.00406401
0.00406745
0.00407066
0.00407381
0.00407708
0.00408054
0.00408421
0.00408809
0.00409225
0.00409676
0.00410176
0.00410746
0.00411416
0.00412218
0.00413176
0.00414205
0.00415252
0.004163
0.00417332
0.00404689
0.00404269
0.00404016
0.0040383
0.00403679
0.00403552
0.00403442
0.00403346
0.00403261
0.00403188
0.00403125
0.0040307
0.00403025
0.0040299
0.00402964
0.0040295
0.00402948
0.00402963
0.00402998
0.0040306
0.00403164
0.00403332
0.00403609
0.00403987
0.00404363
0.004047
0.00405005
0.00405305
0.00405622
0.0040596
0.0040631
0.00406651
0.00406974
0.00407287
0.00407605
0.00407935
0.0040828
0.00408642
0.00409024
0.00409433
0.00409877
0.00410372
0.00410939
0.00411602
0.0041238
0.00413224
0.00414076
0.00414925
0.0041576
0.00404666
0.00404234
0.00403977
0.00403789
0.00403637
0.00403509
0.00403399
0.00403303
0.00403219
0.00403145
0.00403082
0.00403027
0.00402982
0.00402946
0.00402921
0.00402906
0.00402904
0.00402918
0.00402952
0.00403013
0.00403113
0.00403276
0.00403542
0.00403908
0.00404278
0.00404618
0.0040493
0.00405233
0.00405538
0.00405859
0.00406193
0.00406525
0.00406844
0.00407154
0.00407463
0.00407778
0.00408103
0.00408441
0.00408794
0.00409167
0.00409567
0.00410003
0.00410489
0.00411043
0.00411678
0.00412374
0.0041307
0.00413758
0.00414433
0.00404645
0.00404199
0.00403937
0.00403747
0.00403595
0.00403466
0.00403355
0.00403259
0.00403174
0.00403101
0.00403037
0.00402982
0.00402936
0.004029
0.00402874
0.00402859
0.00402856
0.00402869
0.00402901
0.00402959
0.00403056
0.00403212
0.00403466
0.00403815
0.00404176
0.00404513
0.00404825
0.00405127
0.00405429
0.00405739
0.00406056
0.00406373
0.00406683
0.00406986
0.00407286
0.00407588
0.00407897
0.00408215
0.00408545
0.0040889
0.00409255
0.00409647
0.00410076
0.00410552
0.00411085
0.00411669
0.00412252
0.00412823
0.00413379
0.00404624
0.00404165
0.00403897
0.00403705
0.00403552
0.00403423
0.00403312
0.00403215
0.0040313
0.00403056
0.00402992
0.00402937
0.00402891
0.00402854
0.00402827
0.00402812
0.00402808
0.0040282
0.0040285
0.00402906
0.00402999
0.00403147
0.00403388
0.00403721
0.00404069
0.00404399
0.00404707
0.00405003
0.00405298
0.00405598
0.00405908
0.00406217
0.00406519
0.00406814
0.00407105
0.00407398
0.00407695
0.00408
0.00408314
0.0040864
0.00408984
0.0040935
0.00409743
0.00410173
0.00410644
0.00411157
0.00411671
0.00412169
0.00412649
0.00404604
0.00404132
0.00403858
0.00403664
0.00403509
0.0040338
0.00403268
0.00403171
0.00403086
0.00403011
0.00402947
0.00402891
0.00402845
0.00402808
0.00402781
0.00402764
0.0040276
0.0040277
0.00402799
0.00402852
0.0040294
0.00403082
0.0040331
0.00403626
0.0040396
0.00404281
0.00404582
0.0040487
0.00405155
0.00405444
0.00405742
0.00406043
0.00406342
0.00406638
0.00406926
0.00407213
0.00407503
0.00407799
0.00408103
0.00408419
0.00408749
0.00409098
0.00409471
0.00409873
0.00410308
0.00410777
0.00411248
0.004117
0.00412133
0.00404585
0.00404098
0.00403819
0.00403622
0.00403467
0.00403336
0.00403224
0.00403127
0.00403041
0.00402967
0.00402902
0.00402846
0.004028
0.00402762
0.00402734
0.00402717
0.00402712
0.00402721
0.00402748
0.00402798
0.00402882
0.00403017
0.00403232
0.00403532
0.0040385
0.00404161
0.00404454
0.00404733
0.00405008
0.00405285
0.0040557
0.0040586
0.00406151
0.00406443
0.00406734
0.00407028
0.00407318
0.00407611
0.00407911
0.00408221
0.00408545
0.00408886
0.00409247
0.00409633
0.00410048
0.00410491
0.00410937
0.00411361
0.00411764
0.00404567
0.00404066
0.0040378
0.00403581
0.00403424
0.00403293
0.00403181
0.00403083
0.00402997
0.00402922
0.00402857
0.00402801
0.00402754
0.00402716
0.00402688
0.0040267
0.00402664
0.00402671
0.00402696
0.00402744
0.00402824
0.00402951
0.00403155
0.00403438
0.00403742
0.00404041
0.00404324
0.00404595
0.0040486
0.00405125
0.00405398
0.00405675
0.00405956
0.0040624
0.00406528
0.00406822
0.00407121
0.00407426
0.00407731
0.00408042
0.00408366
0.00408704
0.00409061
0.00409441
0.00409847
0.00410276
0.00410708
0.00411116
0.00411501
0.0040455
0.00404034
0.00403742
0.0040354
0.00403382
0.00403251
0.00403138
0.00403039
0.00402953
0.00402878
0.00402813
0.00402756
0.00402709
0.0040267
0.00402641
0.00402623
0.00402615
0.00402622
0.00402645
0.0040269
0.00402765
0.00402886
0.00403078
0.00403345
0.00403634
0.00403921
0.00404196
0.00404457
0.00404712
0.00404967
0.00405229
0.00405494
0.00405763
0.00406038
0.00406319
0.00406608
0.00406907
0.00407217
0.00407537
0.00407867
0.004082
0.00408545
0.00408906
0.00409288
0.00409692
0.00410118
0.00410544
0.00410944
0.0041132
0.00404533
0.00404003
0.00403704
0.00403499
0.0040334
0.00403208
0.00403094
0.00402996
0.00402909
0.00402834
0.00402768
0.00402711
0.00402663
0.00402624
0.00402595
0.00402575
0.00402567
0.00402572
0.00402594
0.00402636
0.00402707
0.00402821
0.00403002
0.00403253
0.00403528
0.00403803
0.00404068
0.00404321
0.00404567
0.00404813
0.00405063
0.00405317
0.00405575
0.0040584
0.00406112
0.00406394
0.00406689
0.00406998
0.00407323
0.00407664
0.0040802
0.0040839
0.00408768
0.00409161
0.00409574
0.00410005
0.00410432
0.0041083
0.00411202
0.00404518
0.00403973
0.00403666
0.00403459
0.00403298
0.00403165
0.00403051
0.00402952
0.00402866
0.0040279
0.00402724
0.00402666
0.00402618
0.00402579
0.00402549
0.00402528
0.00402519
0.00402523
0.00402542
0.00402582
0.00402649
0.00402757
0.00402927
0.00403164
0.00403424
0.00403687
0.00403943
0.00404188
0.00404425
0.00404661
0.00404902
0.00405145
0.00405393
0.00405647
0.0040591
0.00406184
0.00406472
0.00406777
0.00407101
0.00407446
0.00407813
0.00408203
0.00408613
0.00409039
0.00409476
0.00409923
0.00410357
0.00410759
0.00411133
0.00404504
0.00403943
0.00403629
0.00403418
0.00403256
0.00403123
0.00403008
0.00402909
0.00402822
0.00402746
0.00402679
0.00402622
0.00402573
0.00402533
0.00402502
0.00402481
0.00402471
0.00402473
0.00402491
0.00402528
0.00402591
0.00402693
0.00402853
0.00403076
0.00403322
0.00403574
0.0040382
0.00404057
0.00404286
0.00404514
0.00404746
0.0040498
0.00405218
0.00405462
0.00405715
0.00405981
0.00406261
0.00406559
0.00406879
0.00407224
0.00407595
0.00407995
0.00408424
0.00408882
0.00409362
0.00409846
0.004103
0.00410716
0.00411098
0.00404491
0.00403914
0.00403592
0.00403378
0.00403215
0.0040308
0.00402965
0.00402866
0.00402778
0.00402702
0.00402635
0.00402577
0.00402528
0.00402488
0.00402456
0.00402434
0.00402423
0.00402424
0.0040244
0.00402474
0.00402534
0.00402629
0.0040278
0.00402989
0.00403223
0.00403463
0.00403699
0.00403928
0.00404151
0.00404371
0.00404595
0.0040482
0.00405049
0.00405284
0.00405528
0.00405785
0.00406057
0.00406348
0.00406662
0.00407003
0.00407373
0.00407777
0.00408217
0.00408692
0.00409202
0.00409729
0.00410227
0.00410673
0.00411076
0.00404479
0.00403886
0.00403556
0.00403338
0.00403173
0.00403038
0.00402923
0.00402822
0.00402735
0.00402658
0.00402591
0.00402533
0.00402483
0.00402442
0.0040241
0.00402387
0.00402375
0.00402375
0.00402389
0.00402421
0.00402477
0.00402566
0.00402708
0.00402904
0.00403125
0.00403354
0.00403582
0.00403803
0.00404019
0.00404232
0.00404449
0.00404666
0.00404887
0.00405113
0.00405349
0.00405597
0.00405861
0.00406144
0.00406452
0.00406787
0.00407154
0.00407558
0.00408001
0.00408487
0.00409014
0.00409571
0.00410124
0.00410613
0.00411049
0.00404467
0.00403858
0.0040352
0.00403299
0.00403132
0.00402996
0.0040288
0.00402779
0.00402691
0.00402614
0.00402547
0.00402488
0.00402438
0.00402397
0.00402364
0.00402341
0.00402328
0.00402326
0.00402338
0.00402368
0.0040242
0.00402504
0.00402637
0.00402822
0.0040303
0.00403248
0.00403467
0.00403681
0.0040389
0.00404097
0.00404308
0.00404518
0.00404731
0.00404949
0.00405177
0.00405417
0.00405674
0.0040595
0.0040625
0.00406579
0.00406942
0.00407343
0.00407786
0.00408276
0.00408813
0.00409389
0.00409979
0.00410524
0.00411003
0.00404457
0.00403832
0.00403485
0.0040326
0.00403091
0.00402954
0.00402837
0.00402736
0.00402648
0.00402571
0.00402503
0.00402444
0.00402393
0.00402351
0.00402318
0.00402294
0.0040228
0.00402277
0.00402287
0.00402314
0.00402363
0.00402442
0.00402567
0.0040274
0.00402937
0.00403145
0.00403355
0.00403561
0.00403764
0.00403966
0.0040417
0.00404375
0.00404581
0.00404793
0.00405013
0.00405246
0.00405495
0.00405764
0.00406058
0.0040638
0.00406738
0.00407134
0.00407575
0.00408066
0.00408607
0.00409195
0.00409812
0.00410411
0.00410938
0.00404448
0.00403806
0.0040345
0.00403221
0.0040305
0.00402912
0.00402795
0.00402694
0.00402605
0.00402527
0.00402459
0.004024
0.00402349
0.00402306
0.00402272
0.00402247
0.00402232
0.00402228
0.00402237
0.00402262
0.00402307
0.00402381
0.00402498
0.00402661
0.00402847
0.00403045
0.00403245
0.00403445
0.00403642
0.00403838
0.00404037
0.00404236
0.00404436
0.00404642
0.00404856
0.00405083
0.00405325
0.00405587
0.00405875
0.00406191
0.00406543
0.00406934
0.00407372
0.0040786
0.00408403
0.00408998
0.00409633
0.00410274
0.00410852
0.00404441
0.00403781
0.00403416
0.00403182
0.00403009
0.0040287
0.00402753
0.00402651
0.00402562
0.00402484
0.00402415
0.00402355
0.00402304
0.00402261
0.00402227
0.00402201
0.00402185
0.0040218
0.00402187
0.00402209
0.00402251
0.00402321
0.0040243
0.00402583
0.00402758
0.00402946
0.00403139
0.00403331
0.00403523
0.00403714
0.00403908
0.00404102
0.00404297
0.00404497
0.00404706
0.00404926
0.00405163
0.0040542
0.00405701
0.00406012
0.00406358
0.00406744
0.00407178
0.00407663
0.00408204
0.00408802
0.00409449
0.00410119
0.00410748
0.00404434
0.00403757
0.00403382
0.00403144
0.00402969
0.00402829
0.00402711
0.00402608
0.00402519
0.0040244
0.00402371
0.00402311
0.0040226
0.00402216
0.00402181
0.00402155
0.00402138
0.00402131
0.00402137
0.00402157
0.00402196
0.00402261
0.00402363
0.00402506
0.00402672
0.00402851
0.00403035
0.00403221
0.00403406
0.00403593
0.00403783
0.00403972
0.00404163
0.00404358
0.00404562
0.00404777
0.00405009
0.0040526
0.00405536
0.00405842
0.00406183
0.00406564
0.00406993
0.00407474
0.00408013
0.00408611
0.00409264
0.00409954
0.0041063
0.00404429
0.00403734
0.00403349
0.00403106
0.00402929
0.00402787
0.00402669
0.00402566
0.00402476
0.00402397
0.00402328
0.00402267
0.00402215
0.00402171
0.00402136
0.00402109
0.00402091
0.00402083
0.00402087
0.00402105
0.00402141
0.00402202
0.00402297
0.00402432
0.00402588
0.00402757
0.00402934
0.00403113
0.00403293
0.00403475
0.00403661
0.00403846
0.00404033
0.00404224
0.00404424
0.00404635
0.00404861
0.00405108
0.0040538
0.00405681
0.00406017
0.00406394
0.00406818
0.00407295
0.0040783
0.00408427
0.00409084
0.00409786
0.00410501
0.00404425
0.00403711
0.00403317
0.00403068
0.00402889
0.00402746
0.00402627
0.00402523
0.00402433
0.00402354
0.00402285
0.00402224
0.00402171
0.00402127
0.0040209
0.00402063
0.00402044
0.00402035
0.00402037
0.00402053
0.00402087
0.00402143
0.00402232
0.00402358
0.00402505
0.00402666
0.00402835
0.00403008
0.00403183
0.0040336
0.00403542
0.00403724
0.00403907
0.00404095
0.00404291
0.00404498
0.00404721
0.00404964
0.00405231
0.00405528
0.0040586
0.00406233
0.00406653
0.00407126
0.00407658
0.00408252
0.00408909
0.00409619
0.00410359
0.00404422
0.0040369
0.00403285
0.00403031
0.00402849
0.00402705
0.00402585
0.00402481
0.00402391
0.00402311
0.00402241
0.0040218
0.00402127
0.00402082
0.00402045
0.00402017
0.00401997
0.00401987
0.00401988
0.00402002
0.00402032
0.00402085
0.00402168
0.00402286
0.00402425
0.00402577
0.00402739
0.00402905
0.00403075
0.00403248
0.00403427
0.00403605
0.00403786
0.0040397
0.00404163
0.00404367
0.00404587
0.00404826
0.0040509
0.00405384
0.00405712
0.00406082
0.00406498
0.00406966
0.00407494
0.00408085
0.00408742
0.00409455
0.00410215
0.00404421
0.0040367
0.00403253
0.00402994
0.00402809
0.00402664
0.00402543
0.00402439
0.00402348
0.00402268
0.00402198
0.00402137
0.00402083
0.00402038
0.00402
0.00401971
0.0040195
0.00401939
0.00401938
0.00401951
0.00401979
0.00402027
0.00402105
0.00402215
0.00402346
0.00402491
0.00402645
0.00402805
0.0040297
0.00403139
0.00403314
0.0040349
0.00403668
0.0040385
0.0040404
0.00404241
0.00404458
0.00404695
0.00404957
0.00405247
0.00405573
0.00405939
0.00406352
0.00406817
0.00407341
0.00407928
0.00408582
0.00409296
0.0041007
0.00404421
0.00403651
0.00403223
0.00402957
0.0040277
0.00402624
0.00402502
0.00402397
0.00402306
0.00402226
0.00402155
0.00402093
0.00402039
0.00401993
0.00401955
0.00401925
0.00401904
0.00401891
0.00401889
0.004019
0.00401925
0.0040197
0.00402043
0.00402146
0.00402269
0.00402406
0.00402553
0.00402708
0.00402867
0.00403033
0.00403205
0.00403378
0.00403553
0.00403733
0.00403921
0.0040412
0.00404335
0.0040457
0.0040483
0.00405118
0.00405441
0.00405805
0.00406214
0.00406676
0.00407196
0.0040778
0.0040843
0.00409144
0.00409926
0.00404421
0.00403633
0.00403193
0.00402921
0.00402731
0.00402583
0.0040246
0.00402355
0.00402264
0.00402183
0.00402112
0.0040205
0.00401996
0.00401949
0.00401911
0.0040188
0.00401857
0.00401844
0.00401841
0.00401849
0.00401872
0.00401914
0.00401981
0.00402078
0.00402193
0.00402323
0.00402464
0.00402612
0.00402768
0.00402929
0.00403098
0.00403269
0.00403442
0.0040362
0.00403806
0.00404004
0.00404218
0.00404451
0.00404709
0.00404996
0.00405317
0.00405679
0.00406086
0.00406545
0.00407061
0.0040764
0.00408287
0.00408998
0.00409785
0.00404423
0.00403616
0.00403164
0.00402886
0.00402692
0.00402543
0.00402419
0.00402314
0.00402222
0.00402141
0.00402069
0.00402007
0.00401952
0.00401905
0.00401866
0.00401835
0.00401811
0.00401797
0.00401792
0.00401799
0.00401819
0.00401858
0.00401921
0.00402011
0.00402119
0.00402242
0.00402376
0.0040252
0.0040267
0.00402828
0.00402994
0.00403162
0.00403334
0.0040351
0.00403695
0.00403892
0.00404105
0.00404337
0.00404594
0.0040488
0.004052
0.0040556
0.00405965
0.00406422
0.00406935
0.0040751
0.00408152
0.00408859
0.00409649
0.00404425
0.004036
0.00403135
0.0040285
0.00402654
0.00402503
0.00402378
0.00402272
0.0040218
0.00402098
0.00402027
0.00401964
0.00401909
0.00401861
0.00401821
0.00401789
0.00401765
0.0040175
0.00401744
0.00401749
0.00401767
0.00401802
0.00401861
0.00401945
0.00402047
0.00402163
0.00402291
0.00402429
0.00402575
0.00402729
0.00402892
0.00403059
0.00403229
0.00403404
0.00403588
0.00403784
0.00403996
0.00404228
0.00404485
0.0040477
0.0040509
0.00405449
0.00405852
0.00406306
0.00406816
0.00407387
0.00408025
0.00408726
0.00409516
0.00404428
0.00403586
0.00403108
0.00402816
0.00402616
0.00402463
0.00402338
0.00402231
0.00402138
0.00402056
0.00401984
0.00401921
0.00401865
0.00401818
0.00401777
0.00401744
0.00401719
0.00401703
0.00401696
0.00401699
0.00401715
0.00401748
0.00401802
0.0040188
0.00401975
0.00402086
0.00402208
0.0040234
0.00402482
0.00402632
0.00402793
0.00402958
0.00403126
0.00403301
0.00403484
0.0040368
0.00403892
0.00404124
0.0040438
0.00404666
0.00404985
0.00405343
0.00405746
0.00406198
0.00406705
0.00407272
0.00407905
0.00408601
0.00409389
0.00404432
0.00403572
0.00403081
0.00402782
0.00402578
0.00402423
0.00402297
0.0040219
0.00402096
0.00402014
0.00401942
0.00401878
0.00401822
0.00401774
0.00401733
0.004017
0.00401674
0.00401656
0.00401648
0.00401649
0.00401664
0.00401693
0.00401743
0.00401816
0.00401906
0.0040201
0.00402126
0.00402254
0.00402391
0.00402538
0.00402697
0.00402859
0.00403027
0.00403201
0.00403384
0.0040358
0.00403792
0.00404024
0.00404281
0.00404567
0.00404886
0.00405244
0.00405646
0.00406097
0.00406601
0.00407164
0.00407792
0.00408481
0.00409266
0.00404437
0.0040356
0.00403055
0.00402748
0.0040254
0.00402384
0.00402257
0.00402149
0.00402055
0.00401972
0.004019
0.00401835
0.00401779
0.0040173
0.00401689
0.00401655
0.00401628
0.0040161
0.004016
0.004016
0.00401612
0.00401639
0.00401685
0.00401753
0.00401837
0.00401936
0.00402047
0.00402169
0.00402302
0.00402446
0.00402602
0.00402763
0.0040293
0.00403103
0.00403287
0.00403483
0.00403695
0.00403929
0.00404186
0.00404473
0.00404793
0.00405151
0.00405552
0.00406001
0.00406504
0.00407063
0.00407686
0.00408368
0.00409147
0.00404442
0.0040355
0.0040303
0.00402715
0.00402503
0.00402345
0.00402216
0.00402108
0.00402013
0.00401931
0.00401857
0.00401793
0.00401736
0.00401687
0.00401645
0.0040161
0.00401583
0.00401564
0.00401553
0.00401551
0.00401561
0.00401586
0.00401628
0.00401691
0.0040177
0.00401863
0.00401969
0.00402087
0.00402216
0.00402357
0.0040251
0.0040267
0.00402835
0.00403009
0.00403192
0.00403389
0.00403603
0.00403837
0.00404095
0.00404383
0.00404704
0.00405063
0.00405464
0.00405912
0.00406412
0.00406967
0.00407585
0.00408259
0.00409032
0.00404448
0.0040354
0.00403006
0.00402683
0.00402467
0.00402306
0.00402176
0.00402067
0.00401972
0.00401889
0.00401816
0.00401751
0.00401694
0.00401644
0.00401601
0.00401566
0.00401538
0.00401517
0.00401505
0.00401503
0.00401511
0.00401532
0.00401571
0.0040163
0.00401704
0.00401792
0.00401893
0.00402006
0.00402131
0.00402269
0.0040242
0.00402579
0.00402744
0.00402917
0.00403101
0.00403298
0.00403513
0.00403749
0.00404009
0.00404298
0.0040462
0.00404979
0.0040538
0.00405827
0.00406325
0.00406877
0.00407489
0.00408155
0.00408921
0.00404455
0.00403532
0.00402983
0.00402651
0.0040243
0.00402267
0.00402136
0.00402026
0.00401931
0.00401848
0.00401774
0.00401709
0.00401651
0.00401601
0.00401558
0.00401522
0.00401493
0.00401472
0.00401458
0.00401454
0.00401461
0.0040148
0.00401516
0.0040157
0.00401639
0.00401722
0.00401818
0.00401927
0.00402049
0.00402183
0.00402333
0.0040249
0.00402654
0.00402827
0.00403012
0.00403211
0.00403427
0.00403664
0.00403926
0.00404216
0.0040454
0.004049
0.00405301
0.00405748
0.00406243
0.00406791
0.00407397
0.00408056
0.00408813
0.00404462
0.00403525
0.0040296
0.0040262
0.00402394
0.00402229
0.00402097
0.00401986
0.0040189
0.00401806
0.00401732
0.00401666
0.00401609
0.00401558
0.00401514
0.00401478
0.00401448
0.00401426
0.00401412
0.00401406
0.00401411
0.00401428
0.0040146
0.00401511
0.00401575
0.00401654
0.00401745
0.0040185
0.00401968
0.004021
0.00402247
0.00402403
0.00402567
0.0040274
0.00402926
0.00403126
0.00403344
0.00403582
0.00403846
0.00404139
0.00404464
0.00404825
0.00405226
0.00405672
0.00406165
0.0040671
0.0040731
0.0040796
0.00408709
0.0040447
0.00403519
0.00402939
0.0040259
0.00402359
0.00402191
0.00402057
0.00401946
0.0040185
0.00401765
0.00401691
0.00401625
0.00401566
0.00401515
0.00401471
0.00401434
0.00401404
0.0040138
0.00401365
0.00401358
0.00401361
0.00401376
0.00401405
0.00401452
0.00401512
0.00401587
0.00401674
0.00401775
0.00401889
0.00402018
0.00402163
0.00402318
0.00402482
0.00402656
0.00402842
0.00403044
0.00403263
0.00403504
0.0040377
0.00404064
0.00404391
0.00404753
0.00405155
0.004056
0.00406091
0.00406632
0.00407226
0.00407867
0.00408607
0.00404479
0.00403515
0.00402919
0.0040256
0.00402324
0.00402153
0.00402018
0.00401906
0.00401809
0.00401724
0.00401649
0.00401583
0.00401524
0.00401473
0.00401428
0.0040139
0.00401359
0.00401335
0.00401319
0.00401311
0.00401312
0.00401324
0.00401351
0.00401394
0.00401451
0.00401521
0.00401604
0.00401701
0.00401812
0.00401938
0.00402082
0.00402236
0.00402399
0.00402574
0.00402761
0.00402964
0.00403186
0.00403429
0.00403697
0.00403993
0.00404322
0.00404685
0.00405088
0.00405532
0.00406021
0.00406557
0.00407145
0.00407778
0.00408508
0.00404488
0.00403512
0.004029
0.00402531
0.0040229
0.00402116
0.0040198
0.00401866
0.00401769
0.00401683
0.00401608
0.00401541
0.00401482
0.0040143
0.00401385
0.00401347
0.00401315
0.0040129
0.00401273
0.00401263
0.00401263
0.00401273
0.00401298
0.00401337
0.0040139
0.00401456
0.00401535
0.00401629
0.00401736
0.0040186
0.00402002
0.00402155
0.00402319
0.00402494
0.00402683
0.00402887
0.00403111
0.00403356
0.00403627
0.00403925
0.00404256
0.00404621
0.00405023
0.00405467
0.00405953
0.00406486
0.00407068
0.00407691
0.00408411
0.00404497
0.0040351
0.00402882
0.00402503
0.00402256
0.00402079
0.00401941
0.00401827
0.00401729
0.00401643
0.00401567
0.004015
0.00401441
0.00401388
0.00401342
0.00401303
0.00401271
0.00401245
0.00401227
0.00401216
0.00401214
0.00401223
0.00401244
0.00401281
0.0040133
0.00401392
0.00401468
0.00401558
0.00401663
0.00401784
0.00401924
0.00402077
0.0040224
0.00402416
0.00402606
0.00402813
0.00403039
0.00403286
0.00403559
0.0040386
0.00404192
0.00404559
0.00404962
0.00405404
0.00405888
0.00406416
0.00406992
0.00407606
0.00408316
0.00404508
0.0040351
0.00402866
0.00402476
0.00402222
0.00402042
0.00401903
0.00401787
0.00401689
0.00401602
0.00401526
0.00401459
0.00401399
0.00401346
0.004013
0.0040126
0.00401227
0.004012
0.00401181
0.00401169
0.00401166
0.00401173
0.00401192
0.00401225
0.00401271
0.0040133
0.00401402
0.00401488
0.0040159
0.0040171
0.00401848
0.00402
0.00402164
0.00402341
0.00402532
0.00402741
0.00402969
0.00403219
0.00403495
0.00403798
0.00404132
0.00404499
0.00404903
0.00405344
0.00405826
0.00406349
0.00406919
0.00407524
0.00408222
0.00404518
0.00403511
0.00402851
0.00402449
0.00402189
0.00402006
0.00401864
0.00401748
0.00401649
0.00401562
0.00401486
0.00401418
0.00401357
0.00401304
0.00401257
0.00401217
0.00401183
0.00401156
0.00401135
0.00401122
0.00401118
0.00401123
0.0040114
0.0040117
0.00401213
0.00401268
0.00401337
0.00401421
0.0040152
0.00401637
0.00401774
0.00401925
0.00402089
0.00402267
0.0040246
0.00402671
0.00402902
0.00403154
0.00403432
0.00403738
0.00404074
0.00404442
0.00404846
0.00405286
0.00405765
0.00406284
0.00406847
0.00407442
0.0040813
0.0040453
0.00403513
0.00402837
0.00402424
0.00402157
0.0040197
0.00401827
0.00401709
0.00401609
0.00401522
0.00401445
0.00401377
0.00401316
0.00401262
0.00401215
0.00401174
0.0040114
0.00401112
0.0040109
0.00401076
0.0040107
0.00401073
0.00401088
0.00401116
0.00401156
0.00401208
0.00401274
0.00401354
0.00401451
0.00401566
0.00401702
0.00401852
0.00402017
0.00402196
0.00402391
0.00402603
0.00402836
0.00403092
0.00403373
0.00403681
0.00404018
0.00404388
0.00404791
0.0040523
0.00405707
0.00406221
0.00406777
0.00407362
0.00408038
0.00404541
0.00403517
0.00402824
0.00402399
0.00402125
0.00401935
0.00401789
0.00401671
0.0040157
0.00401482
0.00401405
0.00401336
0.00401275
0.00401221
0.00401173
0.00401132
0.00401096
0.00401067
0.00401045
0.0040103
0.00401023
0.00401024
0.00401037
0.00401062
0.00401099
0.00401148
0.00401211
0.00401289
0.00401383
0.00401496
0.00401631
0.00401781
0.00401946
0.00402126
0.00402323
0.00402538
0.00402774
0.00403032
0.00403315
0.00403625
0.00403965
0.00404335
0.00404739
0.00405177
0.0040565
0.00406159
0.00406707
0.00407283
0.00407948
0.00404553
0.00403522
0.00402813
0.00402375
0.00402094
0.004019
0.00401752
0.00401632
0.00401531
0.00401443
0.00401365
0.00401296
0.00401234
0.00401179
0.00401131
0.00401089
0.00401053
0.00401024
0.00401
0.00400984
0.00400976
0.00400976
0.00400986
0.00401009
0.00401043
0.0040109
0.0040115
0.00401225
0.00401317
0.00401428
0.00401562
0.00401712
0.00401877
0.00402059
0.00402257
0.00402475
0.00402713
0.00402974
0.0040326
0.00403572
0.00403913
0.00404285
0.00404688
0.00405124
0.00405594
0.00406098
0.00406639
0.00407205
0.00407858
0.00404565
0.00403529
0.00402803
0.00402353
0.00402064
0.00401865
0.00401715
0.00401594
0.00401492
0.00401403
0.00401325
0.00401255
0.00401193
0.00401138
0.0040109
0.00401047
0.0040101
0.0040098
0.00400956
0.00400939
0.00400929
0.00400927
0.00400936
0.00400957
0.00400988
0.00401032
0.0040109
0.00401162
0.00401252
0.00401361
0.00401494
0.00401644
0.0040181
0.00401993
0.00402194
0.00402413
0.00402654
0.00402918
0.00403206
0.00403521
0.00403864
0.00404236
0.00404639
0.00405073
0.0040554
0.00406038
0.00406572
0.00407128
0.00407769
0.00404578
0.00403536
0.00402794
0.00402331
0.00402035
0.00401831
0.00401679
0.00401556
0.00401453
0.00401364
0.00401285
0.00401215
0.00401153
0.00401097
0.00401048
0.00401005
0.00400968
0.00400937
0.00400912
0.00400893
0.00400882
0.00400879
0.00400886
0.00400905
0.00400934
0.00400976
0.0040103
0.00401101
0.00401188
0.00401296
0.00401429
0.00401578
0.00401745
0.00401929
0.00402132
0.00402354
0.00402598
0.00402864
0.00403155
0.00403472
0.00403816
0.00404189
0.00404591
0.00405024
0.00405487
0.0040598
0.00406506
0.00407052
0.00407681
0.00404591
0.00403546
0.00402788
0.00402311
0.00402006
0.00401797
0.00401643
0.00401519
0.00401415
0.00401325
0.00401246
0.00401175
0.00401112
0.00401056
0.00401007
0.00400963
0.00400925
0.00400893
0.00400868
0.00400848
0.00400836
0.00400832
0.00400837
0.00400853
0.00400881
0.0040092
0.00400972
0.0040104
0.00401126
0.00401233
0.00401364
0.00401514
0.00401682
0.00401867
0.00402072
0.00402297
0.00402543
0.00402813
0.00403106
0.00403425
0.00403771
0.00404144
0.00404545
0.00404975
0.00405434
0.00405922
0.0040644
0.00406976
0.00407594
0.00404604
0.00403556
0.00402782
0.00402292
0.00401978
0.00401765
0.00401607
0.00401482
0.00401377
0.00401286
0.00401206
0.00401135
0.00401072
0.00401016
0.00400965
0.00400921
0.00400883
0.0040085
0.00400824
0.00400804
0.0040079
0.00400785
0.00400788
0.00400803
0.00400828
0.00400865
0.00400915
0.00400981
0.00401065
0.0040117
0.00401301
0.00401451
0.0040162
0.00401807
0.00402014
0.00402242
0.00402491
0.00402763
0.00403059
0.00403379
0.00403726
0.004041
0.004045
0.00404928
0.00405383
0.00405865
0.00406375
0.00406901
0.00407508
0.00404617
0.00403568
0.00402778
0.00402274
0.00401951
0.00401732
0.00401572
0.00401445
0.00401339
0.00401247
0.00401167
0.00401096
0.00401032
0.00400975
0.00400924
0.0040088
0.00400841
0.00400807
0.0040078
0.00400759
0.00400745
0.00400738
0.0040074
0.00400752
0.00400776
0.0040081
0.00400859
0.00400923
0.00401005
0.00401109
0.0040124
0.0040139
0.0040156
0.00401749
0.00401958
0.00402188
0.0040244
0.00402715
0.00403013
0.00403336
0.00403684
0.00404057
0.00404457
0.00404882
0.00405333
0.00405808
0.00406311
0.00406827
0.00407422
0.00404631
0.00403582
0.00402776
0.00402257
0.00401925
0.004017
0.00401537
0.00401408
0.00401301
0.00401209
0.00401128
0.00401056
0.00400992
0.00400935
0.00400884
0.00400838
0.00400799
0.00400765
0.00400737
0.00400715
0.00400699
0.00400691
0.00400692
0.00400703
0.00400724
0.00400757
0.00400803
0.00400865
0.00400946
0.0040105
0.0040118
0.00401331
0.00401501
0.00401692
0.00401904
0.00402136
0.00402391
0.00402668
0.00402969
0.00403294
0.00403642
0.00404016
0.00404414
0.00404837
0.00405283
0.00405753
0.00406248
0.00406754
0.00407337
0.00404644
0.00403596
0.00402776
0.00402242
0.004019
0.00401669
0.00401502
0.00401372
0.00401264
0.00401171
0.00401089
0.00401017
0.00400953
0.00400895
0.00400843
0.00400797
0.00400757
0.00400722
0.00400694
0.00400671
0.00400654
0.00400645
0.00400645
0.00400654
0.00400673
0.00400704
0.00400749
0.00400809
0.00400889
0.00400991
0.00401121
0.00401273
0.00401445
0.00401637
0.00401851
0.00402086
0.00402344
0.00402624
0.00402927
0.00403253
0.00403603
0.00403976
0.00404373
0.00404792
0.00405234
0.00405698
0.00406185
0.0040668
0.00407252
0.00404658
0.00403612
0.00402777
0.00402228
0.00401875
0.00401639
0.00401469
0.00401336
0.00401227
0.00401133
0.00401051
0.00400978
0.00400913
0.00400855
0.00400803
0.00400756
0.00400715
0.0040068
0.00400651
0.00400627
0.0040061
0.004006
0.00400598
0.00400605
0.00400623
0.00400652
0.00400695
0.00400754
0.00400832
0.00400934
0.00401064
0.00401216
0.00401389
0.00401584
0.004018
0.00402038
0.00402298
0.00402581
0.00402886
0.00403214
0.00403564
0.00403937
0.00404332
0.00404749
0.00405186
0.00405643
0.00406122
0.00406608
0.00407168
0.00404672
0.0040363
0.0040278
0.00402215
0.00401852
0.00401609
0.00401435
0.00401301
0.0040119
0.00401096
0.00401013
0.00400939
0.00400874
0.00400815
0.00400762
0.00400716
0.00400674
0.00400638
0.00400608
0.00400584
0.00400565
0.00400554
0.00400551
0.00400557
0.00400573
0.00400601
0.00400642
0.004007
0.00400777
0.00400878
0.00401008
0.00401161
0.00401336
0.00401532
0.00401751
0.00401992
0.00402254
0.0040254
0.00402847
0.00403176
0.00403527
0.004039
0.00404293
0.00404706
0.00405139
0.00405589
0.0040606
0.00406535
0.00407084
0.00404685
0.00403649
0.00402785
0.00402204
0.0040183
0.0040158
0.00401402
0.00401266
0.00401154
0.00401058
0.00400975
0.00400901
0.00400835
0.00400776
0.00400722
0.00400675
0.00400633
0.00400597
0.00400566
0.0040054
0.00400521
0.00400509
0.00400505
0.0040051
0.00400524
0.0040055
0.0040059
0.00400646
0.00400723
0.00400823
0.00400953
0.00401107
0.00401283
0.00401482
0.00401703
0.00401947
0.00402212
0.004025
0.00402809
0.0040314
0.00403491
0.00403863
0.00404254
0.00404664
0.00405092
0.00405535
0.00405997
0.00406463
0.00406999
0.00404697
0.00403669
0.00402792
0.00402195
0.00401809
0.00401552
0.0040137
0.00401231
0.00401118
0.00401021
0.00400937
0.00400863
0.00400796
0.00400736
0.00400683
0.00400635
0.00400592
0.00400555
0.00400523
0.00400498
0.00400478
0.00400465
0.00400459
0.00400463
0.00400476
0.00400501
0.00400539
0.00400594
0.00400669
0.0040077
0.004009
0.00401055
0.00401233
0.00401434
0.00401657
0.00401903
0.00402172
0.00402462
0.00402773
0.00403105
0.00403456
0.00403827
0.00404216
0.00404622
0.00405045
0.00405481
0.00405935
0.0040639
0.00406915
0.00404709
0.0040369
0.004028
0.00402187
0.0040179
0.00401525
0.00401338
0.00401197
0.00401082
0.00400985
0.004009
0.00400825
0.00400758
0.00400697
0.00400643
0.00400595
0.00400552
0.00400514
0.00400482
0.00400455
0.00400434
0.0040042
0.00400414
0.00400416
0.00400428
0.00400451
0.00400488
0.00400542
0.00400617
0.00400717
0.00400848
0.00401004
0.00401183
0.00401387
0.00401613
0.00401862
0.00402133
0.00402425
0.00402738
0.00403071
0.00403423
0.00403792
0.00404179
0.00404581
0.00404998
0.00405428
0.00405873
0.00406317
0.0040683
0.0040472
0.00403712
0.00402811
0.00402181
0.00401771
0.00401498
0.00401307
0.00401163
0.00401047
0.00400948
0.00400863
0.00400787
0.00400719
0.00400659
0.00400604
0.00400555
0.00400511
0.00400473
0.0040044
0.00400413
0.00400391
0.00400377
0.00400369
0.0040037
0.00400381
0.00400403
0.00400439
0.00400492
0.00400566
0.00400666
0.00400797
0.00400954
0.00401136
0.00401341
0.0040157
0.00401822
0.00402095
0.0040239
0.00402705
0.00403039
0.0040339
0.00403758
0.00404142
0.0040454
0.00404951
0.00405374
0.0040581
0.00406244
0.00406745
0.00404731
0.00403736
0.00402824
0.00402177
0.00401754
0.00401473
0.00401277
0.0040113
0.00401012
0.00400912
0.00400826
0.0040075
0.00400681
0.0040062
0.00400565
0.00400515
0.00400471
0.00400432
0.00400399
0.00400371
0.00400349
0.00400333
0.00400325
0.00400325
0.00400334
0.00400355
0.0040039
0.00400442
0.00400516
0.00400616
0.00400747
0.00400906
0.00401089
0.00401297
0.00401529
0.00401783
0.00402059
0.00402356
0.00402673
0.00403007
0.00403358
0.00403725
0.00404106
0.00404499
0.00404905
0.0040532
0.00405747
0.0040617
0.00406658
0.00404741
0.0040376
0.00402838
0.00402175
0.00401739
0.00401449
0.00401247
0.00401097
0.00400977
0.00400877
0.00400789
0.00400712
0.00400644
0.00400582
0.00400526
0.00400476
0.00400431
0.00400392
0.00400358
0.00400329
0.00400306
0.0040029
0.00400281
0.0040028
0.00400288
0.00400308
0.00400342
0.00400393
0.00400466
0.00400566
0.00400699
0.00400859
0.00401044
0.00401255
0.00401489
0.00401747
0.00402025
0.00402325
0.00402642
0.00402977
0.00403328
0.00403693
0.0040407
0.00404459
0.00404858
0.00405265
0.00405684
0.00406096
0.00406571
0.0040475
0.00403785
0.00402855
0.00402175
0.00401724
0.00401425
0.00401218
0.00401065
0.00400943
0.00400841
0.00400753
0.00400675
0.00400606
0.00400544
0.00400488
0.00400437
0.00400392
0.00400352
0.00400317
0.00400288
0.00400264
0.00400247
0.00400237
0.00400235
0.00400243
0.00400261
0.00400294
0.00400345
0.00400418
0.00400518
0.00400652
0.00400813
0.00401
0.00401213
0.00401451
0.00401711
0.00401992
0.00402294
0.00402613
0.00402948
0.00403298
0.00403661
0.00404036
0.0040442
0.00404813
0.00405212
0.00405622
0.00406023
0.00406486
0.00404804
0.004045
0.00404282
0.00404107
0.0040396
0.00403835
0.00403726
0.0040363
0.00403547
0.00403475
0.00403412
0.0040336
0.00403318
0.00403287
0.00403268
0.00403264
0.00403279
0.00403319
0.00403397
0.00403532
0.00403765
0.00404171
0.00404796
0.00405227
0.00405674
0.00406245
0.00406996
0.00407715
0.00408008
0.00408205
0.00408394
0.00408635
0.00409003
0.00409588
0.00410503
0.00411872
0.00413834
0.00416544
0.00420156
0.00424771
0.00430439
0.00437144
0.00444758
0.00453121
0.00462027
0.00471372
0.0048117
0.00491548
0.00502405
0.00404782
0.00404481
0.00404263
0.0040409
0.00403944
0.00403819
0.00403711
0.00403617
0.00403534
0.00403463
0.00403401
0.0040335
0.00403309
0.00403279
0.00403261
0.00403258
0.00403274
0.00403315
0.00403394
0.0040353
0.00403764
0.00404173
0.00404799
0.00405234
0.0040568
0.00406252
0.00407003
0.00407724
0.00408021
0.00408217
0.00408405
0.00408646
0.00409015
0.00409604
0.00410525
0.00411903
0.00413879
0.00416604
0.00420232
0.00424863
0.00430546
0.0043726
0.00444877
0.00453235
0.00462125
0.00471436
0.00481167
0.00491433
0.00502146
0.0040476
0.0040446
0.00404244
0.00404072
0.00403927
0.00403803
0.00403696
0.00403602
0.00403521
0.0040345
0.0040339
0.00403339
0.00403299
0.0040327
0.00403253
0.00403251
0.00403268
0.0040331
0.0040339
0.00403528
0.00403764
0.00404175
0.00404803
0.00405241
0.00405687
0.00406259
0.0040701
0.00407735
0.00408037
0.00408231
0.00408418
0.00408659
0.0040903
0.00409624
0.00410553
0.00411943
0.00413933
0.00416677
0.00420326
0.00424979
0.00430681
0.0043741
0.00445036
0.00453395
0.00462277
0.00471559
0.00481228
0.00491381
0.00501943
0.00404736
0.00404438
0.00404224
0.00404052
0.00403909
0.00403786
0.0040368
0.00403587
0.00403507
0.00403437
0.00403377
0.00403328
0.00403289
0.0040326
0.00403244
0.00403243
0.00403261
0.00403305
0.00403386
0.00403526
0.00403763
0.00404176
0.00404806
0.00405248
0.00405695
0.00406266
0.00407018
0.00407747
0.00408054
0.00408247
0.00408434
0.00408676
0.0040905
0.00409649
0.00410588
0.00411991
0.00414
0.00416767
0.00420442
0.00425123
0.0043085
0.00437601
0.00445244
0.00453613
0.00462494
0.00471757
0.0048137
0.00491413
0.00501821
0.00404711
0.00404415
0.00404202
0.00404032
0.0040389
0.00403768
0.00403663
0.00403571
0.00403492
0.00403423
0.00403364
0.00403316
0.00403277
0.0040325
0.00403235
0.00403235
0.00403254
0.00403299
0.00403381
0.00403523
0.00403762
0.00404178
0.0040481
0.00405255
0.00405702
0.00406274
0.00407027
0.0040776
0.00408074
0.00408267
0.00408453
0.00408696
0.00409074
0.0040968
0.0041063
0.0041205
0.00414081
0.00416876
0.00420583
0.00425297
0.00431059
0.0043784
0.00445509
0.00453898
0.00462791
0.00472045
0.00481614
0.00491554
0.00501811
0.00404684
0.00404391
0.0040418
0.00404011
0.0040387
0.00403749
0.00403645
0.00403554
0.00403476
0.00403408
0.0040335
0.00403303
0.00403266
0.00403239
0.00403225
0.00403226
0.00403246
0.00403292
0.00403376
0.00403519
0.00403761
0.00404179
0.00404813
0.00405263
0.0040571
0.00406282
0.00407036
0.00407774
0.00408096
0.0040829
0.00408476
0.00408721
0.00409103
0.00409718
0.00410682
0.00412121
0.00414179
0.00417007
0.00420752
0.00425508
0.00431312
0.00438134
0.0044584
0.00454262
0.00463181
0.00472443
0.00481983
0.00491834
0.00501948
0.00404657
0.00404366
0.00404156
0.00403989
0.00403849
0.00403729
0.00403626
0.00403536
0.00403459
0.00403392
0.00403336
0.00403289
0.00403253
0.00403227
0.00403215
0.00403217
0.00403238
0.00403285
0.00403371
0.00403515
0.00403759
0.00404179
0.00404816
0.00405271
0.00405719
0.00406291
0.00407046
0.00407791
0.00408123
0.00408317
0.00408504
0.00408751
0.00409139
0.00409764
0.00410744
0.00412207
0.00414296
0.00417163
0.00420953
0.00425761
0.00431617
0.00438491
0.00446249
0.00454718
0.00463681
0.00472972
0.00482504
0.00492286
0.00502274
0.00404628
0.00404339
0.00404131
0.00403966
0.00403827
0.00403708
0.00403606
0.00403518
0.00403441
0.00403375
0.0040332
0.00403274
0.00403239
0.00403215
0.00403203
0.00403206
0.00403229
0.00403277
0.00403364
0.00403511
0.00403756
0.00404179
0.00404819
0.00405279
0.00405728
0.00406301
0.00407057
0.00407809
0.00408154
0.00408349
0.00408537
0.00408788
0.00409183
0.0040982
0.00410819
0.00412308
0.00414434
0.00417347
0.00421191
0.00426059
0.0043198
0.0043892
0.00446745
0.00455282
0.0046431
0.00473653
0.00483204
0.00492948
0.00502835
0.00404598
0.00404311
0.00404105
0.00403941
0.00403804
0.00403686
0.00403585
0.00403498
0.00403422
0.00403358
0.00403303
0.00403259
0.00403225
0.00403201
0.00403191
0.00403195
0.00403219
0.00403269
0.00403357
0.00403505
0.00403753
0.00404178
0.00404822
0.00405288
0.00405738
0.00406311
0.00407069
0.00407828
0.00408189
0.00408388
0.00408577
0.00408833
0.00409236
0.00409888
0.00410908
0.00412429
0.00414596
0.00417563
0.0042147
0.00426411
0.0043241
0.00439432
0.00447343
0.00455969
0.00465089
0.00474515
0.00484121
0.00493864
0.00503689
0.00404566
0.00404282
0.00404078
0.00403915
0.00403779
0.00403662
0.00403562
0.00403476
0.00403402
0.00403339
0.00403285
0.00403242
0.00403209
0.00403187
0.00403177
0.00403183
0.00403208
0.00403259
0.00403349
0.00403499
0.00403749
0.00404177
0.00404824
0.00405298
0.00405749
0.00406322
0.00407082
0.0040785
0.0040823
0.00408433
0.00408626
0.00408886
0.004093
0.00409968
0.00411014
0.00412571
0.00414787
0.00417816
0.00421797
0.00426824
0.00432918
0.00440043
0.00448066
0.00456811
0.00466057
0.00475607
0.00485314
0.00495109
0.00504683
0.00404532
0.00404251
0.00404049
0.00403888
0.00403753
0.00403637
0.00403539
0.00403454
0.00403381
0.00403319
0.00403266
0.00403224
0.00403192
0.00403171
0.00403163
0.0040317
0.00403196
0.00403249
0.0040334
0.00403492
0.00403743
0.00404174
0.00404826
0.00405307
0.0040576
0.00406334
0.00407095
0.00407872
0.00408278
0.00408487
0.00408684
0.00408951
0.00409376
0.00410063
0.00411138
0.00412736
0.00415007
0.00418106
0.00422171
0.00427296
0.00433501
0.00440747
0.00448904
0.00457795
0.00467199
0.00476819
0.00486344
0.004958
0.00504909
0.00404497
0.00404219
0.00404019
0.00403859
0.00403726
0.00403611
0.00403514
0.0040343
0.00403358
0.00403297
0.00403246
0.00403205
0.00403174
0.00403154
0.00403147
0.00403155
0.00403183
0.00403237
0.0040333
0.00403483
0.00403737
0.00404171
0.00404826
0.00405318
0.00405771
0.00406346
0.00407109
0.00407896
0.00408333
0.00408551
0.00408753
0.00409028
0.00409466
0.00410175
0.00411282
0.00412925
0.00415258
0.00418434
0.00422593
0.00427828
0.00434158
0.00441544
0.00449857
0.00458721
0.00467784
0.00477093
0.00486376
0.00495517
0.00504249
0.00404461
0.00404185
0.00403987
0.00403829
0.00403697
0.00403583
0.00403487
0.00403405
0.00403334
0.00403274
0.00403224
0.00403185
0.00403155
0.00403136
0.0040313
0.00403139
0.00403168
0.00403224
0.00403318
0.00403473
0.00403729
0.00404166
0.00404825
0.00405328
0.00405784
0.00406359
0.00407122
0.0040792
0.0040839
0.00408627
0.00408835
0.0040912
0.00409573
0.00410306
0.00411448
0.00413141
0.00415539
0.004188
0.00423061
0.00428415
0.00434883
0.00442425
0.00450504
0.00458887
0.00467523
0.00476431
0.00485396
0.0049422
0.00502635
0.00404422
0.00404149
0.00403953
0.00403796
0.00403666
0.00403554
0.00403459
0.00403378
0.00403309
0.0040325
0.00403201
0.00403162
0.00403134
0.00403116
0.00403112
0.00403122
0.00403152
0.00403209
0.00403305
0.00403462
0.0040372
0.00404159
0.00404823
0.00405338
0.00405796
0.00406371
0.00407135
0.00407943
0.00408448
0.00408714
0.00408933
0.00409228
0.00409699
0.00410458
0.00411637
0.00413383
0.00415851
0.004192
0.00423569
0.00429049
0.00435665
0.0044292
0.00450476
0.00458333
0.0046647
0.00474899
0.00483462
0.00491936
0.00500057
0.00404381
0.00404112
0.00403917
0.00403763
0.00403634
0.00403523
0.00403429
0.00403349
0.00403281
0.00403224
0.00403176
0.00403139
0.00403111
0.00403095
0.00403091
0.00403103
0.00403134
0.00403193
0.0040329
0.00403449
0.00403709
0.00404149
0.00404817
0.00405349
0.00405809
0.00406384
0.00407147
0.00407963
0.00408504
0.00408815
0.00409049
0.00409357
0.00409846
0.00410633
0.00411851
0.00413651
0.00416191
0.0041963
0.00424107
0.00429715
0.00436115
0.00442824
0.00449835
0.00457138
0.00464726
0.00472609
0.00480687
0.0048875
0.00496555
0.00404339
0.00404072
0.0040388
0.00403727
0.004036
0.0040349
0.00403397
0.00403319
0.00403252
0.00403196
0.00403149
0.00403113
0.00403087
0.00403071
0.00403069
0.00403082
0.00403115
0.00403174
0.00403273
0.00403433
0.00403695
0.00404137
0.00404809
0.00405358
0.00405822
0.00406395
0.00407156
0.00407979
0.00408556
0.00408912
0.00409183
0.00409508
0.00410017
0.00410831
0.00412065
0.00413939
0.00416551
0.00420078
0.0042466
0.00430186
0.00436048
0.00442212
0.00448671
0.00455405
0.0046241
0.00469697
0.00477213
0.0048479
0.00492218
0.00404294
0.00404031
0.0040384
0.00403689
0.00403563
0.00403454
0.00403363
0.00403286
0.00403221
0.00403165
0.0040312
0.00403085
0.0040306
0.00403046
0.00403044
0.00403059
0.00403092
0.00403153
0.00403254
0.00403415
0.00403678
0.00404122
0.00404795
0.00405367
0.00405834
0.00406405
0.0040716
0.00407988
0.004086
0.00409002
0.00409313
0.00409669
0.00410193
0.00411006
0.00412248
0.00414188
0.00416916
0.0042053
0.00425178
0.00430198
0.00435543
0.00441174
0.0044708
0.0045324
0.00459646
0.00466306
0.004732
0.00480212
0.00487175
0.00404247
0.00403987
0.00403798
0.00403649
0.00403525
0.00403417
0.00403327
0.00403251
0.00403187
0.00403133
0.00403089
0.00403055
0.00403031
0.00403018
0.00403017
0.00403033
0.00403068
0.0040313
0.00403231
0.00403394
0.00403658
0.00404102
0.00404777
0.00405369
0.00405845
0.00406412
0.00407158
0.00407987
0.00408631
0.00409077
0.00409429
0.00409812
0.00410345
0.0041115
0.00412393
0.00414388
0.0041726
0.00420962
0.00425259
0.00429828
0.00434684
0.00439801
0.00445164
0.00450754
0.00456559
0.00462582
0.0046882
0.00475204
0.00481613
0.00404198
0.00403941
0.00403754
0.00403607
0.00403484
0.00403377
0.00403288
0.00403214
0.00403151
0.00403098
0.00403055
0.00403022
0.00402999
0.00402987
0.00402987
0.00403004
0.0040304
0.00403103
0.00403205
0.00403369
0.00403633
0.00404076
0.00404751
0.00405363
0.00405852
0.00406414
0.00407149
0.00407973
0.00408645
0.00409133
0.00409522
0.00409929
0.00410467
0.00411261
0.00412499
0.00414533
0.00417556
0.00421131
0.00425014
0.00429156
0.00433552
0.00438177
0.00443016
0.00448049
0.00453264
0.00458659
0.00464235
0.00469959
0.00475746
0.00404146
0.00403892
0.00403708
0.00403562
0.00403441
0.00403335
0.00403247
0.00403174
0.00403112
0.0040306
0.00403018
0.00402986
0.00402963
0.00402952
0.00402954
0.00402971
0.00403008
0.00403072
0.00403175
0.00403339
0.00403603
0.00404044
0.00404716
0.00405345
0.00405855
0.00406411
0.00407129
0.00407943
0.00408636
0.00409162
0.00409587
0.00410016
0.00410556
0.00411336
0.00412564
0.00414618
0.0041772
0.00420994
0.00424512
0.00428259
0.00432224
0.00436385
0.00440724
0.00445225
0.00449874
0.00454665
0.004596
0.00464666
0.00469805
0.00404092
0.00403841
0.00403659
0.00403514
0.00403394
0.0040329
0.00403203
0.00403131
0.00403069
0.00403018
0.00402977
0.00402946
0.00402925
0.00402915
0.00402917
0.00402935
0.00402972
0.00403037
0.00403141
0.00403304
0.00403567
0.00404003
0.00404669
0.00405311
0.00405848
0.00406399
0.00407096
0.00407893
0.004086
0.00409159
0.00409618
0.00410067
0.00410609
0.00411377
0.00412588
0.00414642
0.00417568
0.00420598
0.00423805
0.00427196
0.00430765
0.00434496
0.0043837
0.00442372
0.00446491
0.00450719
0.00455055
0.00459497
0.00464001
0.00404036
0.00403788
0.00403607
0.00403464
0.00403345
0.00403241
0.00403156
0.00403084
0.00403024
0.00402974
0.00402933
0.00402903
0.00402882
0.00402873
0.00402876
0.00402894
0.00402932
0.00402997
0.004031
0.00403263
0.00403523
0.00403953
0.00404609
0.0040526
0.00405816
0.00406376
0.00407049
0.00407821
0.00408534
0.0040912
0.0040961
0.00410079
0.00410626
0.00411383
0.00412574
0.00414604
0.00417214
0.00420001
0.00422934
0.00426011
0.00429227
0.00432569
0.00436022
0.00439572
0.00443208
0.00446925
0.0045072
0.00454594
0.00458513
0.00403979
0.00403734
0.00403555
0.00403413
0.00403295
0.00403192
0.00403107
0.00403036
0.00402976
0.00402927
0.00402887
0.00402857
0.00402836
0.00402827
0.0040283
0.00402849
0.00402887
0.00402951
0.00403054
0.00403215
0.0040347
0.00403891
0.00404534
0.00405188
0.00405756
0.00406325
0.00406983
0.00407726
0.00408435
0.00409041
0.0040956
0.00410052
0.00410607
0.00411357
0.00412524
0.00414404
0.00416718
0.00419257
0.00421941
0.00424744
0.00427653
0.00430656
0.00433739
0.00436892
0.00440106
0.00443375
0.00446697
0.00450075
0.0045348
0.00403923
0.0040368
0.00403502
0.00403361
0.00403244
0.00403141
0.00403056
0.00402986
0.00402927
0.00402877
0.00402838
0.00402807
0.00402787
0.00402778
0.00402781
0.004028
0.00402837
0.00402901
0.00403002
0.0040316
0.0040341
0.00403819
0.00404445
0.00405095
0.00405667
0.00406236
0.00406883
0.00407608
0.00408307
0.00408927
0.00409471
0.00409986
0.00410554
0.00411301
0.00412445
0.00414092
0.0041614
0.00418442
0.004209
0.00423469
0.00426124
0.00428849
0.00431631
0.0043446
0.00437329
0.00440233
0.0044317
0.00446145
0.0044913
0.00403867
0.00403626
0.00403449
0.0040331
0.00403193
0.0040309
0.00403006
0.00402936
0.00402877
0.00402828
0.00402788
0.00402758
0.00402738
0.00402729
0.00402732
0.0040275
0.00402787
0.0040285
0.00402949
0.00403104
0.00403348
0.00403745
0.00404351
0.00404995
0.00405565
0.00406127
0.00406755
0.00407457
0.00408155
0.00408794
0.00409361
0.00409898
0.00410482
0.00411233
0.00412289
0.00413755
0.00415595
0.00417699
0.00419976
0.00422367
0.00424836
0.00427363
0.00429934
0.00432536
0.00435163
0.00437811
0.00440477
0.0044317
0.00445858
0.0040381
0.00403572
0.00403396
0.00403258
0.00403142
0.00403039
0.00402955
0.00402886
0.00402827
0.00402779
0.00402739
0.00402709
0.00402689
0.0040268
0.00402683
0.00402701
0.00402737
0.00402799
0.00402896
0.00403047
0.00403285
0.00403669
0.00404255
0.00404888
0.00405454
0.00406006
0.00406612
0.00407288
0.00407974
0.00408621
0.00409214
0.00409778
0.00410377
0.00411108
0.0041209
0.00413421
0.00415094
0.00417036
0.00419163
0.00421413
0.00423744
0.00426128
0.00428548
0.00430991
0.00433449
0.00435919
0.00438396
0.00440889
0.00443368
0.00403754
0.00403519
0.00403344
0.00403206
0.00403091
0.00402989
0.00402905
0.00402836
0.00402778
0.00402729
0.0040269
0.0040266
0.0040264
0.00402631
0.00402634
0.00402651
0.00402687
0.00402747
0.00402842
0.0040299
0.0040322
0.00403592
0.00404158
0.00404779
0.00405338
0.00405879
0.00406463
0.00407111
0.00407781
0.00408427
0.00409034
0.00409616
0.00410225
0.00410942
0.0041187
0.00413098
0.0041464
0.00416447
0.00418449
0.00420585
0.00422809
0.00425088
0.00427401
0.00429734
0.00432075
0.00434422
0.00436768
0.00439124
0.00441457
0.00403698
0.00403465
0.00403291
0.00403155
0.0040304
0.00402938
0.00402855
0.00402786
0.00402728
0.0040268
0.00402641
0.00402611
0.00402591
0.00402582
0.00402584
0.00402601
0.00402636
0.00402695
0.00402788
0.00402931
0.00403155
0.00403514
0.0040406
0.00404667
0.00405218
0.00405748
0.00406311
0.00406932
0.00407582
0.00408221
0.00408836
0.0040943
0.00410046
0.00410754
0.00411641
0.00412789
0.00414226
0.00415922
0.0041782
0.00419863
0.00422003
0.00424205
0.00426443
0.004287
0.00430964
0.00433228
0.00435488
0.00437751
0.00439985
0.00403642
0.00403411
0.00403238
0.00403103
0.00402989
0.00402887
0.00402805
0.00402737
0.00402679
0.00402631
0.00402592
0.00402562
0.00402542
0.00402533
0.00402535
0.00402551
0.00402585
0.00402643
0.00402733
0.00402873
0.0040309
0.00403436
0.00403962
0.00404555
0.00405097
0.00405615
0.00406159
0.00406754
0.00407382
0.00408012
0.00408629
0.0040923
0.00409852
0.00410552
0.00411408
0.00412496
0.00413849
0.00415453
0.00417265
0.00419232
0.00421306
0.00423451
0.00425637
0.00427844
0.00430059
0.00432273
0.00434479
0.00436684
0.00438855
0.00403587
0.00403357
0.00403186
0.00403052
0.00402939
0.00402837
0.00402754
0.00402687
0.0040263
0.00402582
0.00402543
0.00402513
0.00402493
0.00402484
0.00402485
0.00402501
0.00402534
0.0040259
0.00402678
0.00402814
0.00403024
0.00403357
0.00403864
0.00404442
0.00404974
0.00405481
0.00406007
0.00406578
0.00407186
0.00407803
0.00408418
0.00409023
0.00409648
0.00410342
0.00411175
0.00412216
0.00413502
0.00415032
0.00416772
0.00418676
0.00420699
0.00422801
0.00424953
0.0042713
0.00429318
0.00431504
0.00433682
0.00435857
0.00437992
0.00403531
0.00403304
0.00403133
0.00403
0.00402888
0.00402787
0.00402704
0.00402637
0.0040258
0.00402533
0.00402494
0.00402465
0.00402444
0.00402434
0.00402436
0.00402451
0.00402483
0.00402537
0.00402623
0.00402755
0.00402958
0.00403279
0.00403767
0.00404329
0.00404851
0.00405347
0.00405857
0.00406406
0.00406993
0.00407597
0.00408207
0.00408813
0.00409439
0.00410129
0.00410944
0.00411948
0.00413181
0.0041465
0.0041633
0.00418184
0.00420166
0.00422239
0.00424369
0.00426531
0.00428707
0.00430885
0.00433054
0.00435218
0.00437339
0.00403475
0.0040325
0.00403081
0.00402949
0.00402837
0.00402736
0.00402654
0.00402588
0.00402531
0.00402484
0.00402445
0.00402416
0.00402395
0.00402385
0.00402386
0.004024
0.00402431
0.00402484
0.00402568
0.00402695
0.00402892
0.00403201
0.0040367
0.00404217
0.00404729
0.00405215
0.00405709
0.00406238
0.00406804
0.00407394
0.00407998
0.00408604
0.0040923
0.00409916
0.00410717
0.00411692
0.00412882
0.00414301
0.00415933
0.00417745
0.00419696
0.00421748
0.00423867
0.00426026
0.00428203
0.00430386
0.00432561
0.00434731
0.00436855
0.0040342
0.00403197
0.00403029
0.00402898
0.00402786
0.00402686
0.00402604
0.00402538
0.00402482
0.00402435
0.00402396
0.00402367
0.00402346
0.00402336
0.00402336
0.0040235
0.0040238
0.00402431
0.00402512
0.00402636
0.00402826
0.00403124
0.00403575
0.00404106
0.00404607
0.00405083
0.00405563
0.00406074
0.00406621
0.00407196
0.00407793
0.00408396
0.00409021
0.00409704
0.00410495
0.00411447
0.00412603
0.00413982
0.00415575
0.00417353
0.00419281
0.0042132
0.00423436
0.004256
0.0042779
0.00429988
0.00432181
0.0043437
0.0043651
0.00403365
0.00403144
0.00402976
0.00402846
0.00402736
0.00402636
0.00402554
0.00402489
0.00402432
0.00402386
0.00402347
0.00402318
0.00402297
0.00402286
0.00402286
0.00402299
0.00402328
0.00402378
0.00402457
0.00402576
0.0040276
0.00403047
0.0040348
0.00403995
0.00404486
0.00404952
0.00405419
0.00405913
0.00406443
0.00407004
0.00407591
0.00408191
0.00408815
0.00409495
0.00410277
0.00411212
0.00412342
0.00413688
0.00415249
0.00417002
0.00418913
0.00420946
0.00423066
0.00425243
0.00427452
0.00429675
0.00431895
0.00434113
0.00436281
0.0040331
0.0040309
0.00402924
0.00402795
0.00402685
0.00402585
0.00402505
0.00402439
0.00402383
0.00402337
0.00402298
0.00402269
0.00402248
0.00402237
0.00402237
0.00402249
0.00402277
0.00402325
0.00402401
0.00402517
0.00402694
0.0040297
0.00403387
0.00403886
0.00404366
0.00404823
0.00405278
0.00405757
0.0040627
0.00406817
0.00407395
0.0040799
0.00408612
0.0040929
0.00410065
0.00410986
0.00412095
0.00413416
0.00414952
0.00416685
0.00418585
0.00420617
0.00422747
0.00424942
0.00427177
0.00429431
0.00431687
0.00433941
0.00436145
0.00403255
0.00403037
0.00402872
0.00402744
0.00402635
0.00402535
0.00402455
0.0040239
0.00402334
0.00402288
0.0040225
0.0040222
0.00402199
0.00402188
0.00402187
0.00402199
0.00402225
0.00402272
0.00402345
0.00402458
0.00402628
0.00402894
0.00403294
0.00403778
0.00404247
0.00404695
0.0040514
0.00405604
0.00406102
0.00406635
0.00407204
0.00407794
0.00408413
0.00409089
0.00409859
0.00410769
0.00411861
0.00413162
0.00414678
0.00416396
0.0041829
0.00420326
0.00422469
0.00424688
0.00426954
0.00429245
0.00431541
0.00433839
0.00436085
0.004032
0.00402984
0.0040282
0.00402693
0.00402585
0.00402485
0.00402405
0.00402341
0.00402285
0.00402239
0.00402201
0.00402171
0.0040215
0.00402139
0.00402137
0.00402148
0.00402174
0.00402219
0.0040229
0.00402398
0.00402563
0.00402818
0.00403203
0.00403671
0.00404129
0.00404568
0.00405003
0.00405455
0.00405938
0.00406458
0.00407018
0.00407602
0.00408219
0.00408892
0.00409658
0.0041056
0.00411639
0.00412924
0.00414425
0.00416132
0.00418024
0.00420067
0.00422228
0.00424473
0.00426773
0.00429105
0.00431446
0.00433792
0.00436086
0.00403145
0.00402931
0.00402768
0.00402642
0.00402534
0.00402435
0.00402356
0.00402291
0.00402236
0.0040219
0.00402152
0.00402123
0.00402101
0.00402089
0.00402087
0.00402098
0.00402122
0.00402166
0.00402234
0.00402339
0.00402498
0.00402743
0.00403113
0.00403566
0.00404013
0.00404443
0.00404868
0.00405309
0.00405779
0.00406286
0.00406837
0.00407415
0.00408029
0.004087
0.00409463
0.00410359
0.00411428
0.00412701
0.0041419
0.00415891
0.00417783
0.00419836
0.00422017
0.00424292
0.0042663
0.00429006
0.00431396
0.00433794
0.00436139
0.00403091
0.00402878
0.00402716
0.00402591
0.00402484
0.00402385
0.00402306
0.00402242
0.00402188
0.00402141
0.00402104
0.00402074
0.00402053
0.0040204
0.00402038
0.00402047
0.00402071
0.00402112
0.00402179
0.0040228
0.00402433
0.00402669
0.00403024
0.00403462
0.00403898
0.00404319
0.00404736
0.00405166
0.00405624
0.0040612
0.00406661
0.00407233
0.00407843
0.00408513
0.00409273
0.00410165
0.00411226
0.0041249
0.00413971
0.00415668
0.00417564
0.0041963
0.00421833
0.0042414
0.00426519
0.00428941
0.00431383
0.00433836
0.00436236
0.00403036
0.00402825
0.00402664
0.0040254
0.00402434
0.00402336
0.00402257
0.00402193
0.00402139
0.00402093
0.00402055
0.00402025
0.00402004
0.00401991
0.00401988
0.00401997
0.00402019
0.00402059
0.00402123
0.00402221
0.00402369
0.00402595
0.00402936
0.00403359
0.00403784
0.00404197
0.00404606
0.00405026
0.00405473
0.00405958
0.0040649
0.00407057
0.00407663
0.00408331
0.00409089
0.00409977
0.00411034
0.00412291
0.00413767
0.00415463
0.00417364
0.00419445
0.00421673
0.00424014
0.00426434
0.00428905
0.00431401
0.0043391
0.00436368
0.00402982
0.00402773
0.00402612
0.0040249
0.00402384
0.00402286
0.00402207
0.00402144
0.0040209
0.00402044
0.00402006
0.00401977
0.00401955
0.00401942
0.00401938
0.00401946
0.00401968
0.00402006
0.00402068
0.00402162
0.00402304
0.00402522
0.00402849
0.00403258
0.00403672
0.00404077
0.00404477
0.00404888
0.00405325
0.004058
0.00406325
0.00406885
0.00407488
0.00408153
0.00408911
0.00409796
0.00410849
0.00412102
0.00413575
0.00415272
0.00417181
0.00419279
0.00421533
0.00423908
0.00426372
0.00428893
0.00431444
0.00434012
0.00436528
0.00402928
0.0040272
0.0040256
0.00402439
0.00402334
0.00402236
0.00402158
0.00402095
0.00402041
0.00401996
0.00401958
0.00401928
0.00401906
0.00401893
0.00401889
0.00401896
0.00401916
0.00401953
0.00402013
0.00402104
0.0040224
0.0040245
0.00402763
0.00403158
0.00403561
0.00403958
0.00404351
0.00404753
0.00405181
0.00405647
0.00406163
0.00406718
0.00407317
0.00407981
0.00408738
0.00409622
0.00410673
0.00411923
0.00413395
0.00415095
0.00417013
0.00419128
0.00421409
0.00423821
0.00426328
0.00428901
0.00431507
0.00434134
0.0043671
0.00402874
0.00402667
0.00402509
0.00402388
0.00402284
0.00402186
0.00402109
0.00402046
0.00401993
0.00401947
0.0040191
0.0040188
0.00401857
0.00401844
0.00401839
0.00401845
0.00401865
0.004019
0.00401958
0.00402045
0.00402177
0.00402378
0.00402678
0.00403059
0.00403452
0.0040384
0.00404226
0.00404621
0.0040504
0.00405498
0.00406006
0.00406555
0.00407152
0.00407814
0.0040857
0.00409454
0.00410503
0.00411752
0.00413225
0.00414929
0.00416858
0.00418991
0.00421299
0.00423747
0.004263
0.00428923
0.00431585
0.00434272
0.00436908
0.0040282
0.00402615
0.00402457
0.00402338
0.00402234
0.00402137
0.0040206
0.00401998
0.00401944
0.00401899
0.00401861
0.00401831
0.00401809
0.00401795
0.0040179
0.00401795
0.00401813
0.00401847
0.00401902
0.00401987
0.00402113
0.00402306
0.00402595
0.00402962
0.00403343
0.00403724
0.00404103
0.00404491
0.00404903
0.00405352
0.00405854
0.00406397
0.00406991
0.00407652
0.00408407
0.00409291
0.0041034
0.0041159
0.00413064
0.00414773
0.00416713
0.00418866
0.00421201
0.00423686
0.00426282
0.00428957
0.00431675
0.00434421
0.00437116
0.00402766
0.00402563
0.00402405
0.00402287
0.00402184
0.00402087
0.0040201
0.00401949
0.00401896
0.00401851
0.00401813
0.00401783
0.0040176
0.00401746
0.0040174
0.00401745
0.00401762
0.00401795
0.00401847
0.00401928
0.0040205
0.00402236
0.00402512
0.00402866
0.00403237
0.00403609
0.00403982
0.00404363
0.00404768
0.0040521
0.00405706
0.00406244
0.00406834
0.00407494
0.0040825
0.00409134
0.00410184
0.00411435
0.00412911
0.00414627
0.00416579
0.0041875
0.00421113
0.00423633
0.00426273
0.00428998
0.00431772
0.00434577
0.0043733
0.00402712
0.0040251
0.00402354
0.00402237
0.00402135
0.00402038
0.00401961
0.004019
0.00401847
0.00401802
0.00401765
0.00401734
0.00401712
0.00401697
0.00401691
0.00401695
0.00401711
0.00401742
0.00401793
0.0040187
0.00401988
0.00402165
0.00402431
0.00402771
0.00403132
0.00403496
0.00403862
0.00404238
0.00404636
0.00405072
0.00405561
0.00406095
0.00406683
0.00407342
0.00408097
0.00408983
0.00410034
0.00411287
0.00412767
0.00414489
0.00416452
0.00418642
0.00421032
0.00423587
0.0042627
0.00429044
0.00431871
0.00434734
0.00437545
0.00402658
0.00402458
0.00402303
0.00402187
0.00402085
0.00401989
0.00401912
0.00401852
0.00401799
0.00401754
0.00401716
0.00401686
0.00401663
0.00401648
0.00401641
0.00401645
0.0040166
0.00401689
0.00401738
0.00401813
0.00401925
0.00402096
0.0040235
0.00402678
0.00403028
0.00403385
0.00403745
0.00404115
0.00404507
0.00404936
0.00405421
0.00405951
0.00406536
0.00407194
0.0040795
0.00408837
0.0040989
0.00411145
0.00412629
0.00414357
0.00416333
0.00418541
0.00420956
0.00423545
0.00426269
0.0042909
0.00431971
0.00434889
0.00437757
0.00402604
0.00402406
0.00402251
0.00402136
0.00402036
0.0040194
0.00401864
0.00401803
0.00401751
0.00401706
0.00401668
0.00401638
0.00401615
0.00401599
0.00401592
0.00401594
0.00401608
0.00401637
0.00401683
0.00401755
0.00401863
0.00402027
0.0040227
0.00402586
0.00402926
0.00403275
0.00403629
0.00403993
0.0040438
0.00404804
0.00405284
0.0040581
0.00406393
0.0040705
0.00407808
0.00408696
0.00409752
0.00411009
0.00412497
0.00414233
0.00416219
0.00418445
0.00420884
0.00423505
0.00426269
0.00429136
0.00432066
0.00435038
0.0043796
0.00402551
0.00402354
0.004022
0.00402086
0.00401986
0.00401891
0.00401815
0.00401755
0.00401702
0.00401658
0.0040162
0.0040159
0.00401566
0.0040155
0.00401543
0.00401544
0.00401557
0.00401584
0.00401629
0.00401698
0.00401802
0.00401958
0.00402192
0.00402496
0.00402826
0.00403167
0.00403515
0.00403874
0.00404256
0.00404675
0.00405151
0.00405673
0.00406254
0.00406912
0.0040767
0.0040856
0.00409618
0.00410879
0.00412371
0.00414113
0.00416111
0.00418353
0.00420816
0.00423467
0.00426267
0.00429177
0.00432156
0.00435179
0.00438153
0.00402497
0.00402303
0.00402149
0.00402036
0.00401937
0.00401841
0.00401766
0.00401706
0.00401654
0.0040161
0.00401572
0.00401542
0.00401518
0.00401502
0.00401493
0.00401494
0.00401506
0.00401532
0.00401574
0.0040164
0.0040174
0.0040189
0.00402114
0.00402407
0.00402727
0.0040306
0.00403402
0.00403757
0.00404134
0.0040455
0.00405021
0.00405541
0.0040612
0.00406777
0.00407537
0.00408429
0.0040949
0.00410753
0.0041225
0.00413999
0.00416006
0.00418263
0.00420748
0.00423427
0.00426263
0.00429213
0.00432237
0.00435308
0.00438331
0.00402444
0.00402251
0.00402098
0.00401986
0.00401887
0.00401793
0.00401718
0.00401658
0.00401606
0.00401562
0.00401524
0.00401494
0.0040147
0.00401453
0.00401444
0.00401444
0.00401455
0.00401479
0.0040152
0.00401583
0.00401679
0.00401823
0.00402037
0.00402319
0.00402629
0.00402955
0.00403291
0.00403642
0.00404015
0.00404427
0.00404895
0.00405412
0.0040599
0.00406647
0.00407408
0.00408303
0.00409366
0.00410633
0.00412134
0.00413889
0.00415905
0.00418176
0.00420681
0.00423386
0.00426253
0.00429241
0.00432307
0.00435422
0.00438491
0.00402391
0.00402199
0.00402047
0.00401937
0.00401838
0.00401744
0.00401669
0.0040161
0.00401558
0.00401514
0.00401476
0.00401446
0.00401421
0.00401404
0.00401395
0.00401395
0.00401404
0.00401427
0.00401466
0.00401526
0.00401618
0.00401756
0.00401962
0.00402232
0.00402533
0.00402851
0.00403182
0.00403528
0.00403898
0.00404306
0.00404771
0.00405287
0.00405864
0.00406521
0.00407284
0.00408181
0.00409247
0.00410517
0.00412022
0.00413782
0.00415807
0.00418091
0.00420612
0.00423341
0.00426237
0.0042926
0.00432364
0.0043552
0.00438631
0.00402338
0.00402148
0.00401997
0.00401887
0.00401789
0.00401695
0.00401621
0.00401562
0.0040151
0.00401466
0.00401429
0.00401398
0.00401373
0.00401356
0.00401346
0.00401345
0.00401354
0.00401375
0.00401412
0.0040147
0.00401558
0.0040169
0.00401887
0.00402147
0.00402439
0.0040275
0.00403075
0.00403417
0.00403784
0.00404189
0.00404652
0.00405165
0.00405742
0.004064
0.00407164
0.00408063
0.00409133
0.00410406
0.00411914
0.00413679
0.00415711
0.00418005
0.00420542
0.00423291
0.00426213
0.00429267
0.00432405
0.00435599
0.00438748
0.00402285
0.00402097
0.00401946
0.00401837
0.0040174
0.00401646
0.00401572
0.00401514
0.00401463
0.00401419
0.00401381
0.0040135
0.00401325
0.00401307
0.00401297
0.00401295
0.00401303
0.00401323
0.00401358
0.00401413
0.00401498
0.00401624
0.00401813
0.00402063
0.00402346
0.0040265
0.0040297
0.00403308
0.00403672
0.00404074
0.00404535
0.00405047
0.00405623
0.00406282
0.00407048
0.0040795
0.00409022
0.00410298
0.0041181
0.00413579
0.00415616
0.00417919
0.00420469
0.00423235
0.0042618
0.0042926
0.0043243
0.00435657
0.0043884
0.00402232
0.00402046
0.00401895
0.00401788
0.00401691
0.00401598
0.00401524
0.00401466
0.00401415
0.00401371
0.00401333
0.00401302
0.00401277
0.00401259
0.00401248
0.00401245
0.00401252
0.00401271
0.00401304
0.00401357
0.00401438
0.00401559
0.0040174
0.00401981
0.00402254
0.00402551
0.00402867
0.00403201
0.00403562
0.00403962
0.00404421
0.00404933
0.00405508
0.00406168
0.00406936
0.00407841
0.00408915
0.00410194
0.00411708
0.0041348
0.00415522
0.00417832
0.00420392
0.00423173
0.00426137
0.0042924
0.00432436
0.00435693
0.00438906
0.00402179
0.00401995
0.00401845
0.00401738
0.00401642
0.00401549
0.00401476
0.00401418
0.00401367
0.00401323
0.00401286
0.00401254
0.00401229
0.00401211
0.00401199
0.00401196
0.00401202
0.00401219
0.0040125
0.00401301
0.00401378
0.00401495
0.00401668
0.00401899
0.00402165
0.00402455
0.00402765
0.00403096
0.00403454
0.00403853
0.00404311
0.00404822
0.00405398
0.00406058
0.00406828
0.00407735
0.00408813
0.00410094
0.00411609
0.00413384
0.00415429
0.00417743
0.0042031
0.00423103
0.00426082
0.00429204
0.00432423
0.00435704
0.00438944
0.00402127
0.00401944
0.00401794
0.00401689
0.00401594
0.00401501
0.00401428
0.0040137
0.0040132
0.00401276
0.00401238
0.00401207
0.00401181
0.00401162
0.0040115
0.00401146
0.00401151
0.00401167
0.00401197
0.00401245
0.00401319
0.00401431
0.00401597
0.00401819
0.00402077
0.0040236
0.00402665
0.00402993
0.00403349
0.00403746
0.00404204
0.00404714
0.0040529
0.00405952
0.00406724
0.00407634
0.00408713
0.00409996
0.00411513
0.00413289
0.00415335
0.00417652
0.00420224
0.00423025
0.00426015
0.00429153
0.0043239
0.00435691
0.00438952
0.00402075
0.00401893
0.00401744
0.0040164
0.00401545
0.00401452
0.0040138
0.00401323
0.00401272
0.00401228
0.00401191
0.00401159
0.00401134
0.00401114
0.00401102
0.00401097
0.00401101
0.00401115
0.00401143
0.00401189
0.0040126
0.00401367
0.00401526
0.00401741
0.0040199
0.00402267
0.00402568
0.00402892
0.00403246
0.00403642
0.00404099
0.00404609
0.00405186
0.0040585
0.00406624
0.00407536
0.00408618
0.00409902
0.0041142
0.00413195
0.00415241
0.00417559
0.00420133
0.00422938
0.00425937
0.00429085
0.00432335
0.00435652
0.0043893
0.00402022
0.00401842
0.00401694
0.00401591
0.00401497
0.00401404
0.00401332
0.00401275
0.00401225
0.00401181
0.00401143
0.00401112
0.00401086
0.00401066
0.00401053
0.00401047
0.0040105
0.00401064
0.0040109
0.00401134
0.00401202
0.00401304
0.00401457
0.00401663
0.00401905
0.00402176
0.00402472
0.00402793
0.00403146
0.00403541
0.00403998
0.00404508
0.00405086
0.00405752
0.00406527
0.00407442
0.00408525
0.00409811
0.00411329
0.00413102
0.00415147
0.00417462
0.00420037
0.00422843
0.00425845
0.00429
0.00432258
0.00435586
0.00438876
0.00401971
0.00401792
0.00401644
0.00401542
0.00401448
0.00401356
0.00401284
0.00401227
0.00401177
0.00401134
0.00401096
0.00401064
0.00401038
0.00401018
0.00401004
0.00400998
0.00401
0.00401012
0.00401037
0.00401079
0.00401144
0.00401242
0.00401388
0.00401587
0.00401822
0.00402086
0.00402378
0.00402697
0.00403048
0.00403442
0.00403899
0.00404411
0.0040499
0.00405657
0.00406435
0.00407351
0.00408437
0.00409723
0.00411239
0.00413011
0.00415051
0.00417363
0.00419934
0.00422739
0.00425741
0.00428897
0.0043216
0.00435493
0.00438791
0.00401919
0.00401741
0.00401594
0.00401493
0.004014
0.00401308
0.00401236
0.0040118
0.0040113
0.00401087
0.00401049
0.00401017
0.0040099
0.0040097
0.00400956
0.00400949
0.0040095
0.00400961
0.00400984
0.00401024
0.00401086
0.0040118
0.00401321
0.00401512
0.0040174
0.00401999
0.00402286
0.00402602
0.00402952
0.00403347
0.00403804
0.00404316
0.00404897
0.00405565
0.00406346
0.00407264
0.00408351
0.00409637
0.00411152
0.0041292
0.00414955
0.00417261
0.00419826
0.00422625
0.00425623
0.00428777
0.00432039
0.00435374
0.00438674
0.00401868
0.00401691
0.00401544
0.00401444
0.00401351
0.0040126
0.00401189
0.00401132
0.00401083
0.00401039
0.00401002
0.00400969
0.00400943
0.00400922
0.00400907
0.004009
0.004009
0.0040091
0.00400932
0.00400969
0.00401029
0.00401119
0.00401254
0.00401439
0.0040166
0.00401913
0.00402197
0.0040251
0.00402859
0.00403253
0.00403711
0.00404225
0.00404807
0.00405478
0.0040626
0.00407181
0.00408268
0.00409554
0.00411066
0.00412829
0.00414858
0.00417155
0.00419711
0.00422501
0.00425491
0.00428639
0.00431896
0.00435227
0.00438525
0.00401817
0.00401641
0.00401494
0.00401395
0.00401303
0.00401212
0.00401141
0.00401085
0.00401036
0.00400992
0.00400954
0.00400922
0.00400895
0.00400874
0.00400859
0.00400851
0.0040085
0.00400859
0.00400879
0.00400915
0.00400972
0.00401058
0.00401188
0.00401366
0.00401581
0.00401829
0.00402109
0.00402421
0.00402768
0.00403163
0.00403622
0.00404137
0.00404721
0.00405394
0.00406178
0.004071
0.00408189
0.00409473
0.00410982
0.00412739
0.00414759
0.00417045
0.00419589
0.00422367
0.00425346
0.00428483
0.00431731
0.00435053
0.00438345
0.00401766
0.00401591
0.00401445
0.00401346
0.00401255
0.00401164
0.00401094
0.00401038
0.00400989
0.00400945
0.00400907
0.00400875
0.00400848
0.00400826
0.00400811
0.00400802
0.004008
0.00400808
0.00400827
0.00400861
0.00400915
0.00400999
0.00401123
0.00401295
0.00401504
0.00401748
0.00402024
0.00402333
0.0040268
0.00403075
0.00403536
0.00404052
0.00404638
0.00405313
0.004061
0.00407023
0.00408112
0.00409395
0.004109
0.00412649
0.00414658
0.00416932
0.00419461
0.00422224
0.00425187
0.0042831
0.00431545
0.00434854
0.00438134
0.00401716
0.00401541
0.00401395
0.00401298
0.00401207
0.00401117
0.00401046
0.00400991
0.00400942
0.00400898
0.0040086
0.00400828
0.00400801
0.00400779
0.00400762
0.00400753
0.0040075
0.00400757
0.00400775
0.00400807
0.00400859
0.00400939
0.0040106
0.00401226
0.00401429
0.00401668
0.0040194
0.00402248
0.00402595
0.0040299
0.00403452
0.00403971
0.00404559
0.00405236
0.00406025
0.0040695
0.00408038
0.00409319
0.00410818
0.00412559
0.00414556
0.00416815
0.00419327
0.00422071
0.00425016
0.0042812
0.00431337
0.00434629
0.00437895
0.00401666
0.00401491
0.00401346
0.0040125
0.00401159
0.00401069
0.00400999
0.00400944
0.00400895
0.00400851
0.00400813
0.00400781
0.00400753
0.00400731
0.00400714
0.00400704
0.00400701
0.00400706
0.00400723
0.00400753
0.00400803
0.0040088
0.00400997
0.00401157
0.00401355
0.00401589
0.00401859
0.00402165
0.00402511
0.00402908
0.00403372
0.00403893
0.00404483
0.00405163
0.00405953
0.00406879
0.00407967
0.00409244
0.00410738
0.00412469
0.00414452
0.00416694
0.00419186
0.00421909
0.00424832
0.00427914
0.0043111
0.00434381
0.00437627
0.00401616
0.00401442
0.00401296
0.00401201
0.00401112
0.00401021
0.00400952
0.00400897
0.00400848
0.00400805
0.00400767
0.00400734
0.00400706
0.00400683
0.00400666
0.00400655
0.00400651
0.00400656
0.00400671
0.004007
0.00400748
0.00400822
0.00400934
0.0040109
0.00401283
0.00401513
0.0040178
0.00402084
0.00402431
0.00402829
0.00403295
0.00403818
0.00404411
0.00405092
0.00405884
0.00406811
0.00407898
0.00409172
0.00410658
0.00412379
0.00414347
0.0041657
0.0041904
0.00421739
0.00424636
0.00427693
0.00430863
0.0043411
0.00437333
0.00401566
0.00401392
0.00401247
0.00401153
0.00401064
0.00400974
0.00400904
0.0040085
0.00400801
0.00400758
0.0040072
0.00400687
0.00400659
0.00400636
0.00400618
0.00400606
0.00400602
0.00400605
0.0040062
0.00400647
0.00400693
0.00400765
0.00400873
0.00401024
0.00401213
0.00401439
0.00401703
0.00402006
0.00402353
0.00402752
0.00403221
0.00403747
0.00404342
0.00405025
0.00405819
0.00406746
0.00407832
0.00409101
0.0041058
0.00412288
0.00414241
0.00416443
0.00418888
0.0042156
0.00424429
0.00427457
0.00430598
0.00433817
0.00437014
0.00401517
0.00401343
0.00401198
0.00401105
0.00401017
0.00400927
0.00400857
0.00400803
0.00400754
0.00400711
0.00400673
0.0040064
0.00400612
0.00400588
0.0040057
0.00400558
0.00400552
0.00400555
0.00400568
0.00400595
0.00400639
0.00400708
0.00400813
0.0040096
0.00401144
0.00401367
0.00401628
0.0040193
0.00402278
0.00402679
0.0040315
0.00403678
0.00404276
0.00404962
0.00405757
0.00406684
0.00407768
0.00409033
0.00410503
0.00412198
0.00414133
0.00416312
0.00418731
0.00421374
0.00424211
0.00427207
0.00430317
0.00433504
0.00436672
0.00401468
0.00401294
0.00401149
0.00401057
0.00400969
0.00400879
0.00400811
0.00400756
0.00400708
0.00400665
0.00400627
0.00400593
0.00400565
0.00400541
0.00400522
0.00400509
0.00400503
0.00400505
0.00400517
0.00400542
0.00400585
0.00400652
0.00400754
0.00400896
0.00401077
0.00401296
0.00401556
0.00401857
0.00402205
0.00402608
0.00403081
0.00403613
0.00404213
0.00404901
0.00405698
0.00406625
0.00407706
0.00408966
0.00410427
0.00412108
0.00414024
0.00416179
0.0041857
0.0042118
0.00423983
0.00426944
0.00430019
0.00433172
0.00436307
0.0040142
0.00401245
0.00401101
0.00401009
0.00400922
0.00400832
0.00400764
0.0040071
0.00400661
0.00400618
0.0040058
0.00400546
0.00400518
0.00400494
0.00400475
0.00400461
0.00400454
0.00400455
0.00400466
0.0040049
0.00400532
0.00400597
0.00400696
0.00400835
0.00401011
0.00401228
0.00401485
0.00401786
0.00402135
0.0040254
0.00403016
0.00403551
0.00404154
0.00404844
0.00405641
0.00406568
0.00407647
0.00408901
0.00410352
0.00412018
0.00413913
0.00416043
0.00418403
0.00420979
0.00423746
0.00426669
0.00429706
0.00432822
0.00435922
0.00401372
0.00401196
0.00401052
0.00400962
0.00400874
0.00400785
0.00400717
0.00400663
0.00400615
0.00400572
0.00400533
0.004005
0.00400471
0.00400446
0.00400427
0.00400413
0.00400405
0.00400406
0.00400416
0.00400439
0.00400479
0.00400542
0.00400638
0.00400774
0.00400948
0.00401161
0.00401417
0.00401718
0.00402067
0.00402474
0.00402954
0.00403492
0.00404098
0.0040479
0.00405588
0.00406514
0.0040759
0.00408837
0.00410277
0.00411928
0.00413802
0.00415905
0.00418233
0.00420773
0.004235
0.00426383
0.00429379
0.00432456
0.00435518
0.00401324
0.00401147
0.00401003
0.00400914
0.00400827
0.00400738
0.0040067
0.00400616
0.00400568
0.00400525
0.00400487
0.00400453
0.00400424
0.00400399
0.00400379
0.00400365
0.00400357
0.00400356
0.00400366
0.00400388
0.00400426
0.00400488
0.00400582
0.00400715
0.00400885
0.00401097
0.00401351
0.00401652
0.00402002
0.00402412
0.00402895
0.00403436
0.00404045
0.00404739
0.00405538
0.00406463
0.00407535
0.00408775
0.00410203
0.00411837
0.00413689
0.00415764
0.00418058
0.0042056
0.00423246
0.00426086
0.0042904
0.00432074
0.00435097
0.00401277
0.00401099
0.00400955
0.00400866
0.0040078
0.00400691
0.00400623
0.0040057
0.00400522
0.00400479
0.00400441
0.00400407
0.00400377
0.00400352
0.00400332
0.00400317
0.00400308
0.00400307
0.00400316
0.00400337
0.00400375
0.00400435
0.00400527
0.00400657
0.00400825
0.00401034
0.00401288
0.00401588
0.0040194
0.00402352
0.00402839
0.00403383
0.00403995
0.00404691
0.0040549
0.00406414
0.00407481
0.00408714
0.0041013
0.00411747
0.00413575
0.0041562
0.0041788
0.00420342
0.00422985
0.00425781
0.00428689
0.00431679
0.00434661
0.00401229
0.0040105
0.00400906
0.00400819
0.00400733
0.00400644
0.00400577
0.00400524
0.00400476
0.00400433
0.00400394
0.0040036
0.00400331
0.00400305
0.00400285
0.00400269
0.0040026
0.00400259
0.00400267
0.00400287
0.00400324
0.00400383
0.00400473
0.004006
0.00400766
0.00400973
0.00401226
0.00401527
0.00401881
0.00402295
0.00402785
0.00403333
0.00403948
0.00404646
0.00405445
0.00406367
0.0040743
0.00408654
0.00410058
0.00411656
0.0041346
0.00415474
0.00417698
0.00420119
0.00422718
0.00425466
0.00428328
0.00431272
0.00434211
0.00401183
0.00401002
0.00400858
0.00400772
0.00400686
0.00400598
0.0040053
0.00400477
0.00400429
0.00400387
0.00400348
0.00400314
0.00400284
0.00400259
0.00400238
0.00400222
0.00400212
0.0040021
0.00400217
0.00400237
0.00400273
0.00400331
0.0040042
0.00400545
0.00400709
0.00400915
0.00401167
0.00401468
0.00401824
0.00402241
0.00402735
0.00403286
0.00403904
0.00404603
0.00405403
0.00406322
0.0040738
0.00408595
0.00409985
0.00411564
0.00413343
0.00415326
0.00417513
0.00419891
0.00422444
0.00425145
0.00427958
0.00430854
0.00433749
0.00401135
0.00400953
0.0040081
0.00400724
0.00400639
0.00400551
0.00400484
0.00400431
0.00400383
0.0040034
0.00400302
0.00400268
0.00400238
0.00400212
0.00400191
0.00400174
0.00400164
0.00400162
0.00400169
0.00400188
0.00400223
0.0040028
0.00400367
0.00400491
0.00400653
0.00400858
0.00401109
0.00401411
0.00401769
0.00402189
0.00402686
0.00403241
0.00403862
0.00404563
0.00405362
0.00406279
0.00407331
0.00408537
0.00409912
0.00411472
0.00413225
0.00415176
0.00417324
0.0041966
0.00422165
0.00424816
0.0042758
0.00430427
0.00433276
0.00401093
0.00400905
0.00400762
0.00400677
0.00400593
0.00400504
0.00400437
0.00400385
0.00400337
0.00400294
0.00400256
0.00400221
0.00400191
0.00400165
0.00400144
0.00400127
0.00400117
0.00400114
0.0040012
0.00400139
0.00400174
0.00400231
0.00400317
0.00400439
0.00400599
0.00400803
0.00401055
0.00401358
0.00401717
0.00402141
0.00402642
0.004032
0.00403823
0.00404526
0.00405324
0.00406238
0.00407284
0.00408479
0.0040984
0.00411379
0.00413105
0.00415024
0.00417133
0.00419424
0.00421881
0.00424482
0.00427194
0.00429991
0.00432793
0.0040104
0.00400856
0.00400714
0.0040063
0.00400546
0.00400458
0.00400391
0.00400339
0.00400291
0.00400248
0.0040021
0.00400175
0.00400145
0.00400119
0.00400097
0.0040008
0.00400069
0.00400066
0.00400072
0.00400091
0.00400126
0.00400182
0.00400267
0.00400388
0.00400547
0.0040075
0.00401001
0.00401305
0.00401667
0.00402094
0.00402599
0.00403161
0.00403786
0.0040449
0.00405288
0.00406198
0.00407237
0.00408422
0.00409768
0.00411286
0.00412986
0.00414871
0.00416941
0.00419187
0.00421596
0.00424144
0.00426804
0.0042955
0.00432304
0.00513573
0.00525864
0.00540251
0.0055725
0.0057716
0.00600014
0.00624972
0.00649925
0.00670342
0.00682081
0.00685232
0.00684615
0.00680094
0.00672478
0.00662136
0.00659198
0.0070392
0.00966916
0.0210882
0.0645432
0.213018
0.666692
1.89455
4.81913
10.8246
20.6434
32.3082
41.8761
47.132
48.9756
48.6197
45.7101
35.0264
30.5526
0.00513303
0.00525626
0.00539964
0.00556892
0.00576763
0.00599677
0.00624944
0.00650532
0.0067187
0.0068506
0.00689498
0.00689585
0.00685582
0.00678336
0.00668217
0.00664199
0.00702306
0.0093413
0.0194556
0.058013
0.19015
0.595893
1.70249
4.37967
10.0671
19.9451
32.4583
42.9819
48.6602
50.3556
49.0429
42.8068
32.5686
39.0382
0.00513078
0.00525443
0.00539753
0.00556622
0.00576462
0.00599452
0.00625054
0.00651077
0.0067333
0.00688016
0.00693897
0.00694816
0.00691376
0.00684465
0.00674489
0.00669288
0.00700847
0.00902953
0.0179244
0.0519648
0.169223
0.531979
1.53135
3.99041
9.38644
19.2299
32.2475
43.4253
49.4227
50.6776
47.4509
38.7719
33.7021
44.3999
0.00512922
0.00525337
0.00539644
0.00556475
0.00576302
0.00599387
0.00625145
0.00651385
0.00674485
0.00690655
0.00698082
0.00699926
0.00697056
0.00690391
0.00680432
0.00673951
0.00699135
0.00873309
0.0165004
0.0464084
0.150205
0.474702
1.38096
3.66001
8.86263
18.8515
32.5357
44.4043
50.4905
50.5435
44.6892
36.0772
36.8242
48.3229
0.00512866
0.00525337
0.00539672
0.00556496
0.00576337
0.00599429
0.00624862
0.00651172
0.00675003
0.00692595
0.0070163
0.00704495
0.00702222
0.00695758
0.00685747
0.00677993
0.00697163
0.00845597
0.0151989
0.0413927
0.133227
0.424326
1.25188
3.39262
8.52163
18.8621
33.2285
45.3866
50.8755
49.0541
41.4383
35.2796
40.6511
50.8444
0.00512948
0.00525478
0.00539876
0.00556734
0.00576446
0.0059897
0.00623941
0.00650148
0.00674552
0.00693461
0.00704135
0.00708129
0.00706516
0.00700256
0.00690163
0.00681192
0.00694779
0.00819757
0.0140171
0.0368846
0.118066
0.379766
1.14039
3.18222
8.37352
19.2821
34.2031
45.9882
50.0544
46.2079
38.4931
36.1655
44.1322
52.1631
0.00513216
0.00525807
0.00540302
0.00556843
0.0057594
0.00597774
0.00622129
0.00648041
0.00672823
0.00692907
0.00705218
0.00710459
0.00709607
0.00703606
0.00693451
0.00683373
0.00691865
0.00795627
0.0129462
0.0328351
0.104506
0.340276
1.0452
3.03785
8.48795
20.2133
35.3423
45.8591
47.7702
42.4894
36.426
38.0488
46.7339
52.3524
0.00513723
0.0052632
0.00540205
0.0055617
0.00574579
0.00595624
0.0061922
0.00644644
0.00669595
0.00690686
0.00704609
0.00711232
0.00711297
0.00705683
0.00695548
0.00684525
0.00688448
0.00773167
0.0119797
0.0292111
0.0924167
0.305468
0.966904
2.98067
8.95591
21.6313
36.2412
44.5483
44.1145
38.5697
35.4405
40.0963
48.0108
51.2221
0.00514481
0.00526293
0.00539395
0.00554599
0.00572218
0.00592398
0.00615125
0.00639892
0.00664797
0.00686707
0.00702186
0.00710323
0.00711495
0.00706449
0.00696461
0.00684678
0.00684561
0.00752332
0.0111127
0.0259868
0.081697
0.275125
0.90833
3.05159
9.88059
23.3399
36.4269
41.7252
39.5728
35.1796
35.3789
41.6273
47.7976
48.6574
0.00514762
0.00525724
0.00537907
0.00552175
0.00568873
0.00588119
0.00609901
0.00633876
0.00658528
0.00681041
0.00697961
0.00707698
0.00710161
0.00705879
0.00696182
0.00683827
0.00680195
0.00733077
0.0103426
0.0231518
0.0723203
0.24947
0.877453
3.31945
11.3335
25.0381
35.3041
37.7311
34.9004
32.7082
35.7064
42.0406
45.9815
44.6241
0.00514385
0.00524533
0.00535724
0.00548901
0.00564522
0.00582726
0.00603489
0.00626557
0.00650765
0.00673663
0.00691892
0.007033
0.00707254
0.00703973
0.00694749
0.00682023
0.0067535
0.00715111
0.00965436
0.0206467
0.0640923
0.228529
0.890243
3.90305
13.332
25.9024
32.8036
33.1102
30.8343
31.204
35.8243
41.0349
42.5899
39.2406
0.00513256
0.00522725
0.00532955
0.00544943
0.00559331
0.00576353
0.00595997
0.00618053
0.00641633
0.00664679
0.00684031
0.00697121
0.00702738
0.00700697
0.00692145
0.00679254
0.00669989
0.00698271
0.00904142
0.0184483
0.0569669
0.213875
0.988042
5.00231
15.4054
25.4458
29.2965
28.5672
27.7689
30.3061
35.2006
38.549
37.7802
32.7794
0.00511293
0.00520282
0.00529702
0.00540496
0.00553529
0.00569208
0.00587593
0.00608513
0.00631284
0.0065422
0.00674454
0.00689157
0.00696558
0.00695985
0.00688314
0.0067547
0.00664037
0.00682353
0.00849658
0.0165323
0.0509326
0.210018
1.25101
6.73634
16.7469
23.729
25.3602
24.7404
25.7444
29.4918
33.48
34.6475
31.8103
25.6797
0.00508432
0.00517141
0.00526013
0.00535733
0.00547357
0.00561541
0.00578492
0.00598116
0.00619885
0.00642439
0.00663261
0.00679423
0.00688659
0.00689749
0.0068317
0.00670587
0.00657386
0.00667119
0.00801269
0.0148784
0.0461895
0.236474
1.94934
8.60104
16.9873
21.1307
21.6196
21.94
24.432
28.2355
30.5515
29.5415
25.1103
18.5933
0.00504663
0.00513206
0.00521824
0.00530757
0.00541041
0.00553626
0.00568961
0.00587089
0.00607636
0.00629521
0.00650589
0.00667966
0.00678996
0.00681893
0.00676606
0.00664499
0.00649906
0.00652288
0.00758089
0.0134616
0.0439113
0.362749
3.15154
10.0435
16.1205
18.2008
18.605
20.141
23.3217
26.1495
26.4703
23.5908
18.2868
12.2718
0.00500024
0.00508397
0.00516978
0.00525531
0.00534726
0.00545726
0.00559297
0.00575712
0.00594785
0.00615692
0.00636627
0.00654886
0.00667565
0.00672335
0.00668508
0.00657081
0.00641436
0.00637556
0.007193
0.012287
0.0511054
0.763731
4.55662
10.6958
14.4412
15.4505
16.514
18.9684
21.8523
23.0632
21.4543
17.3491
12.1201
7.35479
0.004946
0.00502724
0.00511282
0.00519832
0.00528418
0.00538032
0.00549796
0.00564307
0.00581634
0.00601224
0.00621616
0.00640351
0.0065442
0.00661028
0.00658777
0.00648208
0.00631816
0.00622599
0.00684004
0.0116427
0.114538
1.4898
5.77457
10.4563
12.4992
13.4348
15.263
17.9077
19.6455
19.0406
15.9993
11.5949
7.27971
4.0301
0.00488546
0.00496293
0.00504694
0.00513357
0.00521874
0.00530601
0.00540709
0.0055322
0.0056855
0.00586466
0.0060587
0.00624608
0.00639699
0.0064799
0.00647356
0.00637781
0.00620895
0.00607105
0.00651703
0.0139678
0.332108
2.41524
6.4843
9.50338
10.7043
12.134
14.4147
16.4199
16.575
14.4467
10.8175
7.01029
3.99806
2.04546
0.0048208
0.00489294
0.00497336
0.00505955
0.00514681
0.00523206
0.00532144
0.00542756
0.00555931
0.00571836
0.00589783
0.00607994
0.00623635
0.00633323
0.00634242
0.00625734
0.00608548
0.00590789
0.00628908
0.0423764
0.745225
3.2821
6.56643
8.35471
9.53058
11.4017
13.4534
14.1868
12.8335
9.91155
6.60798
3.88049
2.0422
0.966162
0.00475467
0.00482008
0.00489473
0.00497769
0.00506563
0.00515348
0.00523914
0.00533079
0.0054414
0.00557793
0.00573832
0.00590944
0.00606571
0.00617239
0.00619525
0.00612064
0.00594691
0.00573504
0.00691472
0.149446
1.29986
3.86936
6.1478
7.38095
8.86943
10.8106
11.9521
11.2533
8.96532
6.13877
3.70097
2.00466
0.974451
0.425782
0.00468971
0.00474752
0.00481463
0.00489142
0.00497655
0.00506605
0.00515446
0.00524052
0.00533402
0.00544765
0.00558542
0.0057398
0.00588954
0.00600058
0.00603392
0.00596848
0.00579305
0.00556223
0.0147751
0.368149
1.84791
4.03811
5.50159
6.76831
8.47204
9.87891
9.75179
8.03729
5.6503
3.49013
1.94016
0.971877
0.43545
0.176592
0.00462822
0.00467829
0.00473687
0.00480526
0.00488382
0.00497089
0.00506177
0.00515048
0.00523632
0.00533034
0.00544403
0.00557678
0.00571324
0.00582211
0.00586133
0.00580245
0.00562456
0.00553842
0.0552233
0.67473
2.26415
3.90285
5.04474
6.47275
7.97069
8.34473
7.16111
5.17508
3.27077
1.86167
0.959082
0.443155
0.183679
0.070504
0.00457198
0.00461479
0.00466478
0.00472367
0.00479291
0.00487292
0.00496166
0.00505355
0.00514169
0.00522587
0.00531773
0.00542595
0.00554282
0.00564217
0.00568139
0.00562517
0.00544427
0.00642575
0.147643
0.993434
2.42878
3.59382
4.7942
6.23281
7.01225
6.3426
4.7318
3.05777
1.77899
0.941109
0.448018
0.191443
0.0746149
0.0286224
0.0045236
0.00456025
0.00460258
0.00465231
0.00471137
0.00478141
0.00486287
0.00495313
0.00504516
0.00513061
0.00521031
0.00529553
0.00538908
0.00547217
0.00550478
0.00544618
0.00526613
0.0107148
0.287059
1.24889
2.42641
3.42615
4.67637
5.74774
5.61899
4.38541
2.9098
1.72935
0.939017
0.460957
0.203406
0.0814799
0.0312939
0.0133162
0.0044874
0.00451957
0.00455614
0.00459862
0.00464895
0.00470928
0.00478145
0.00486551
0.00495729
0.00504709
0.00512548
0.00519645
0.00526881
0.00533324
0.00535485
0.00528992
0.00513791
0.024273
0.419329
1.36931
2.32427
3.35226
4.53892
5.01499
4.25972
2.96312
1.81211
1.0143
0.516211
0.236824
0.0981238
0.0381488
0.01559
0.0081132
0.00446
0.00448892
0.0045212
0.00455808
0.00460129
0.00465305
0.00471583
0.0047914
0.00487868
0.00497035
0.00505255
0.00511806
0.00517384
0.0052193
0.00522702
0.00515291
0.00509381
0.0457928
0.529696
1.42006
2.27873
3.32421
4.27494
4.17727
3.14692
2.00621
1.15942
0.613854
0.294209
0.12715
0.0505104
0.0200638
0.00946669
0.00616916
0.00443911
0.00446566
0.00449475
0.00452734
0.00456489
0.00460943
0.00466358
0.00473006
0.00481009
0.00489984
0.00498593
0.00505232
0.0050976
0.00512544
0.00511758
0.00503229
0.00516701
0.0722405
0.613764
1.42789
2.25508
3.28587
3.89317
3.37251
2.30647
1.37984
0.760431
0.381942
0.17331
0.0713518
0.0280439
0.0120993
0.00690788
0.00536952
0.00442316
0.004448
0.00447472
0.00450405
0.00453714
0.00457576
0.00462238
0.0046801
0.00475159
0.00483625
0.00492384
0.00499403
0.00503467
0.00504779
0.00502368
0.00492579
0.005372
0.100506
0.669453
1.40815
2.24747
3.20301
3.44251
2.67331
1.69177
0.96765
0.509637
0.243754
0.105322
0.0420152
0.0170153
0.00841163
0.0057649
0.00500555
0.00441103
0.00443467
0.00445967
0.00448652
0.00451613
0.00454994
0.00459018
0.00463991
0.00470263
0.0047801
0.00486617
0.00494036
0.00498087
0.00498301
0.00494296
0.00483152
0.00570342
0.128475
0.705734
1.39893
2.23335
3.06303
2.97367
2.10296
1.25475
0.690612
0.348386
0.159267
0.0660493
0.0261375
0.0113996
0.00662201
0.00521932
0.0048219
0.00440189
0.00442471
0.00444847
0.00447347
0.00450038
0.00453032
0.00456521
0.00460792
0.0046622
0.00473144
0.0048133
0.00489004
0.00493318
0.00492823
0.00487337
0.00474793
0.00614166
0.15468
0.727988
1.39099
2.21834
2.87368
2.52671
1.65192
0.943777
0.500646
0.242576
0.106388
0.0428326
0.0173077
0.00844055
0.0057135
0.00494103
0.00471973
0.00439509
0.00441741
0.00444031
0.00446394
0.00448876
0.00451562
0.00454608
0.0045827
0.0046292
0.00468988
0.00476555
0.00484265
0.0048896
0.00488108
0.00481316
0.00467366
0.00665895
0.17824
0.740639
1.38775
2.20511
2.65568
2.12219
1.29962
0.718997
0.368155
0.171805
0.0726249
0.0288285
0.0122717
0.00683058
0.00523178
0.00478954
0.0046579
0.00439018
0.00441223
0.00443456
0.00445722
0.00448044
0.00450485
0.00453167
0.00456308
0.00460258
0.00465485
0.00472306
0.00479827
0.00484892
0.0048397
0.00476087
0.00460762
0.00722283
0.19836
0.742752
1.38531
2.17276
2.41956
1.77293
1.03166
0.554131
0.274315
0.123628
0.0506947
0.0202201
0.00933034
0.0059275
0.00496535
0.00470187
0.00461799
0.00438682
0.00440878
0.0044308
0.00445278
0.00447481
0.00449729
0.00452112
0.00454812
0.00458141
0.00462573
0.0046858
0.00475711
0.00481052
0.0048027
0.00471523
0.00454885
0.00780335
0.214993
0.740303
1.37673
2.11932
2.17961
1.48023
0.827011
0.431637
0.207098
0.0903283
0.0362388
0.014834
0.00757368
0.00540611
0.00481199
0.00464836
0.00459094
0.00438474
0.00440678
0.00442866
0.00445021
0.00447137
0.00449234
0.00451375
0.00453702
0.00456488
0.00460185
0.00465358
0.00471938
0.00477415
0.004769
0.00467513
0.00449647
0.00837635
0.228615
0.737495
1.36025
2.04747
1.94361
1.23116
0.668816
0.339559
0.158218
0.0669897
0.0265839
0.0114075
0.00650235
0.00509687
0.00472043
0.00461418
0.00457176
0.00438368
0.00440592
0.00442783
0.00444915
0.00446971
0.00448952
0.00450895
0.0045291
0.00455224
0.00458253
0.00462605
0.00468518
0.00473971
0.0047378
0.0046396
0.00444965
0.00892406
0.239636
0.734046
1.34342
1.96136
1.72044
1.0275
0.545314
0.269582
0.122233
0.0504366
0.020054
0.0091929
0.005836
0.00490883
0.00466395
0.00459137
0.0045575
0.00438347
0.004406
0.00442806
0.00444931
0.00446948
0.00448841
0.00450626
0.00452379
0.00454286
0.00456714
0.00460277
0.00465448
0.00470721
0.00470857
0.00460783
0.0044077
0.00943292
0.248404
0.730442
1.33439
1.86586
1.51617
0.862673
0.447964
0.215925
0.0954391
0.0385716
0.0155843
0.00773987
0.00541385
0.00479185
0.00462798
0.00457549
0.00454644
0.00438393
0.00440684
0.00442915
0.00445047
0.00447042
0.00448871
0.00450531
0.00452067
0.00453622
0.00455514
0.00458334
0.00462723
0.00467673
0.00468096
0.00457922
0.00437004
0.00989421
0.255191
0.727507
1.33378
1.76379
1.33314
0.729051
0.3706
0.174548
0.0752873
0.0299886
0.0124896
0.00677295
0.00514181
0.00471749
0.00460435
0.00456399
0.00453768
0.00438496
0.00440831
0.00443096
0.00445245
0.00447232
0.00449018
0.0045058
0.00451936
0.0045319
0.00454608
0.00456739
0.0046033
0.00464837
0.00465479
0.00455324
0.00433621
0.0103983
0.260258
0.72509
1.329
1.65779
1.1704
0.619917
0.308628
0.142238
0.0599855
0.0237263
0.0103233
0.00612087
0.00496367
0.00466922
0.00458838
0.00455544
0.00453062
0.00438646
0.0044103
0.00443335
0.0044551
0.00447503
0.00449262
0.00450749
0.00451958
0.00452955
0.00453956
0.00455454
0.00458254
0.0046222
0.00462997
0.00452951
0.0043058
0.0109165
0.263831
0.722119
1.3176
1.54897
1.02374
0.530034
0.258618
0.116795
0.0482709
0.0191195
0.0087912
0.00567557
0.00484526
0.00463731
0.00457736
0.00454898
0.0045248
0.00438835
0.00441271
0.00443621
0.0044583
0.00447838
0.00449584
0.00451017
0.00452106
0.00452885
0.00453521
0.00454444
0.00456475
0.00459827
0.00460643
0.00450769
0.00427842
0.0114271
0.266155
0.717968
1.30026
1.44001
0.895918
0.45552
0.217986
0.0966031
0.0392375
0.015704
0.0076968
0.00536786
0.00476545
0.00461587
0.00456962
0.00454397
0.00451977
0.00439054
0.00441546
0.00443945
0.00446193
0.00448224
0.0044997
0.00451364
0.00452358
0.00452955
0.00453271
0.00453675
0.00454971
0.00457657
0.00458419
0.00448754
0.00425371
0.01191
0.267015
0.712397
1.27781
1.33352
0.786135
0.393366
0.184773
0.0804602
0.0322259
0.0131522
0.00690765
0.00515287
0.004711
0.0046013
0.00456412
0.00453994
0.00451518
0.00439296
0.00441845
0.00444297
0.00446589
0.0044865
0.00450404
0.00451775
0.00452696
0.00453139
0.00453179
0.00453118
0.0045372
0.00455707
0.00456325
0.00446886
0.0042314
0.0123458
0.266695
0.705359
1.25106
1.23133
0.69235
0.341236
0.157523
0.0674679
0.0267517
0.0112317
0.00633347
0.00500108
0.00467345
0.00459131
0.00456012
0.00453649
0.00451076
0.00439554
0.00442162
0.00444669
0.00447008
0.00449105
0.00450877
0.00452237
0.00453102
0.0045342
0.00453222
0.00452747
0.00452699
0.00453972
0.00454363
0.00445153
0.00421122
0.0127268
0.265751
0.696892
1.22077
1.13467
0.612176
0.297301
0.135086
0.0569456
0.0224542
0.009776
0.00591212
0.00489288
0.00464729
0.00458439
0.00455709
0.00453335
0.00450638
0.00439823
0.00442491
0.00445054
0.00447443
0.0044958
0.00451376
0.00452737
0.00453564
0.0045378
0.00453379
0.00452537
0.00451888
0.00452444
0.00452536
0.00443544
0.00419297
0.013053
0.26442
0.687094
1.18764
1.04426
0.54341
0.260099
0.116474
0.0483746
0.0190625
0.00866499
0.00560042
0.00481508
0.00462893
0.00457953
0.00455464
0.0045303
0.00450193
0.00440097
0.00442825
0.00445445
0.00447886
0.00450067
0.00451894
0.00453264
0.00454067
0.00454203
0.00453631
0.00452466
0.00451266
0.00451114
0.00450845
0.00442051
0.00417648
0.0133235
0.262736
0.676778
1.15244
0.96039
0.484163
0.228454
0.10092
0.0413549
0.0163715
0.00781143
0.00536811
0.00475868
0.00461591
0.00457603
0.00455249
0.00452723
0.00449737
0.00440372
0.00443159
0.00445837
0.00448331
0.00450559
0.00452421
0.00453809
0.004546
0.00454676
0.00453962
0.00452516
0.00450813
0.00449973
0.00449292
0.0044067
0.00416157
0.0135374
0.260754
0.666637
1.11584
0.88239
0.432888
0.201415
0.0878556
0.0355778
0.0142256
0.00715153
0.00519375
0.00471748
0.00460659
0.00457341
0.00455046
0.00452404
0.00449268
0.00440641
0.00443487
0.00446223
0.00448772
0.00451048
0.0045295
0.00454363
0.00455154
0.00455187
0.00454357
0.00452669
0.00450511
0.00449008
0.00447875
0.00439396
0.00414815
0.0136944
0.258531
0.656981
1.07799
0.807834
0.388279
0.178216
0.0768299
0.0308022
0.0125058
0.00663826
0.00506204
0.00468715
0.00459982
0.00457132
0.00454841
0.00452068
0.00448787
0.00440901
0.00443805
0.00446598
0.00449202
0.00451529
0.00453475
0.00454918
0.00455719
0.00455725
0.00454803
0.00452909
0.00450344
0.00448209
0.00446593
0.00438226
0.00413612
0.0137979
0.256129
0.648062
1.03927
0.73851
0.349306
0.158233
0.0674828
0.0268381
0.0111208
0.00623677
0.00496194
0.00466463
0.00459482
0.00456953
0.00454623
0.00451714
0.00448298
0.00441148
0.00444108
0.00446956
0.00449616
0.00451995
0.00453987
0.00455467
0.00456287
0.0045628
0.00455288
0.00453222
0.00450295
0.00447564
0.00445445
0.00437159
0.00412538
0.013852
0.253605
0.640108
1.00012
0.675105
0.315135
0.140955
0.0595246
0.0235348
0.0100002
0.00592104
0.00488542
0.00464775
0.00459103
0.00456785
0.00454387
0.0045134
0.00447807
0.00441378
0.00444391
0.00447295
0.00450009
0.00452441
0.00454482
0.00456003
0.0045685
0.00456844
0.00455802
0.00453594
0.00450351
0.00447061
0.00444428
0.00436193
0.00411589
0.0138596
0.251009
0.633286
0.96099
0.617708
0.285067
0.125975
0.0527203
0.0207721
0.00908958
0.00567149
0.00482658
0.00463496
0.00458805
0.00456617
0.0045413
0.00450951
0.00447321
0.00441587
0.00444652
0.00447609
0.00450377
0.00452862
0.00454954
0.00456521
0.00457402
0.00457408
0.00456335
0.00454014
0.00450496
0.0044669
0.00443537
0.00435325
0.00410757
0.013823
0.248406
0.627661
0.922261
0.566068
0.258528
0.11296
0.0468805
0.0184537
0.00834631
0.00547332
0.00478105
0.00462514
0.0045856
0.00456439
0.0045385
0.00450552
0.0044685
0.00441773
0.00444887
0.00447895
0.00450715
0.00453254
0.00455399
0.00457015
0.00457937
0.00457966
0.0045688
0.00454472
0.00450719
0.00446438
0.00442769
0.00434555
0.0041004
0.0137472
0.245822
0.62311
0.884251
0.519731
0.235039
0.101634
0.0418499
0.0165017
0.00773718
0.00531523
0.0047456
0.00461748
0.00458347
0.00456247
0.0045355
0.00450148
0.00446397
0.00441933
0.00445093
0.0044815
0.00451022
0.00453613
0.00455811
0.0045748
0.00458449
0.00458511
0.00457427
0.00454957
0.00451008
0.00446295
0.00442119
0.00433881
0.00409433
0.0136386
0.243277
0.61972
0.847231
0.478178
0.214201
0.0917608
0.0375014
0.0148528
0.00723605
0.00518857
0.00471778
0.00461139
0.00458153
0.00456037
0.00453234
0.00449747
0.00445968
0.00442064
0.00445267
0.00448371
0.00451292
0.00453936
0.00456188
0.00457911
0.00458933
0.00459038
0.0045797
0.00455462
0.00451352
0.0044625
0.00441581
0.004333
0.00408933
0.0135001
0.240754
0.615894
0.81139
0.440892
0.195669
0.0831236
0.0337304
0.0134558
0.00682223
0.00508667
0.00469578
0.00460646
0.00457967
0.00455811
0.00452906
0.00449354
0.00445565
0.00442165
0.00445407
0.00448554
0.00451523
0.00454218
0.00456525
0.00458305
0.00459384
0.0045954
0.00458502
0.00455978
0.0045174
0.00446293
0.00441148
0.00432809
0.00408539
0.013334
0.238227
0.611285
0.776848
0.407392
0.179148
0.0755153
0.0304496
0.0122686
0.00647929
0.00500437
0.00467823
0.00460236
0.00457782
0.00455569
0.00452573
0.00448974
0.0044519
0.00442233
0.00445511
0.00448698
0.00451712
0.00454457
0.00456819
0.00458658
0.00459799
0.00460013
0.00459019
0.00456497
0.00452165
0.00446413
0.00440816
0.00432406
0.00408248
0.013142
0.235675
0.606021
0.743706
0.377245
0.164386
0.0687945
0.0275872
0.0112569
0.00619413
0.00493763
0.00466408
0.00459888
0.00457595
0.00455314
0.00452239
0.00448608
0.00444841
0.00442268
0.00445576
0.00448801
0.00451858
0.00454651
0.00457067
0.00458967
0.00460173
0.00460453
0.00459513
0.00457013
0.00452616
0.00446602
0.00440576
0.00432087
0.0040806
0.0129263
0.233084
0.600211
0.712026
0.350065
0.151166
0.0628417
0.0250831
0.0103923
0.00595625
0.00488328
0.00465256
0.00459586
0.00457404
0.0045505
0.00451907
0.00448259
0.00444517
0.00442267
0.00445603
0.00448861
0.00451957
0.00454798
0.00457268
0.00459229
0.00460503
0.00460855
0.00459982
0.00457521
0.00453087
0.00446851
0.00440424
0.00431848
0.00407971
0.0126883
0.230444
0.593955
0.68184
0.325513
0.139301
0.057555
0.0228873
0.00965154
0.00575717
0.00483885
0.00464307
0.00459317
0.00457209
0.0045478
0.00451579
0.00447918
0.00444212
0.00442231
0.0044559
0.00448877
0.0045201
0.00454895
0.00457419
0.00459442
0.00460788
0.00461218
0.0046042
0.00458015
0.00453571
0.00447151
0.00440352
0.00431685
0.00407979
0.0124293
0.227747
0.587336
0.653154
0.303292
0.128629
0.0528474
0.0209516
0.00901517
0.00559009
0.00480238
0.00463516
0.00459073
0.00457009
0.00454507
0.00451255
0.00447585
0.00443923
0.00442159
0.00445536
0.00448849
0.00452016
0.00454943
0.0045752
0.00459606
0.00461025
0.00461538
0.00460825
0.00458491
0.00454061
0.00447495
0.00440354
0.00431594
0.00408081
0.0121508
0.22499
0.580436
0.625955
0.283143
0.119012
0.0486446
0.0192443
0.00846718
0.00544944
0.0047723
0.0046285
0.00458849
0.00456807
0.00454233
0.00450937
0.0044726
0.00443642
0.0044205
0.00445442
0.00448776
0.00451973
0.00454941
0.00457568
0.00459718
0.00461213
0.00461814
0.00461194
0.00458944
0.00454551
0.00447874
0.00440425
0.00431568
0.00408272
0.0118545
0.22217
0.573318
0.600215
0.264839
0.110329
0.0448836
0.0177368
0.00799418
0.00533073
0.00474739
0.00462284
0.00458642
0.00456602
0.00453958
0.00450621
0.00446944
0.00443363
0.00441904
0.00445306
0.00448659
0.00451882
0.00454888
0.00457565
0.00459778
0.00461351
0.00462043
0.00461524
0.00459372
0.00455036
0.00448283
0.00440556
0.00431605
0.00408549
0.0115417
0.219284
0.566045
0.575893
0.248179
0.102473
0.0415103
0.0164042
0.00758495
0.00523026
0.00472666
0.00461797
0.00458446
0.00456395
0.00453682
0.00450308
0.0044663
0.00443081
0.00441723
0.00445131
0.00448497
0.00451744
0.00454785
0.00457511
0.00459787
0.00461438
0.00462225
0.00461813
0.00459769
0.00455512
0.00448714
0.00440743
0.00431698
0.00408905
0.0112148
0.216333
0.558669
0.55294
0.23299
0.0953529
0.0384783
0.0152246
0.00723009
0.00514503
0.00470934
0.00461375
0.00458262
0.00456187
0.00453406
0.00449995
0.00446316
0.0044279
0.00441507
0.00444916
0.00448292
0.0045156
0.00454633
0.00457405
0.00459743
0.00461474
0.00462359
0.0046206
0.00460135
0.00455974
0.00449163
0.0044098
0.00431842
0.00409337
0.0108758
0.213316
0.551208
0.530697
0.219117
0.0888884
0.0357475
0.0141789
0.00692171
0.00507253
0.00469481
0.00461007
0.00458088
0.00455979
0.00453127
0.00449679
0.00445999
0.00442487
0.00441257
0.00444663
0.00448045
0.0045133
0.00454432
0.00457249
0.00459649
0.0046146
0.00462444
0.00462263
0.00460467
0.00456418
0.00449622
0.0044126
0.00432031
0.00409837
0.0105282
0.210233
0.543694
0.509034
0.206422
0.0830089
0.0332835
0.0132505
0.00665314
0.00501074
0.00468255
0.00460683
0.00457922
0.00455769
0.00452846
0.00449358
0.00445673
0.00442168
0.00440976
0.00444375
0.00447759
0.00451057
0.00454186
0.00457045
0.00459505
0.00461397
0.00462482
0.00462423
0.00460763
0.00456841
0.00450086
0.00441577
0.0043226
0.00410398
0.0101756
0.20708
0.536116
0.488261
0.194781
0.0776555
0.0310561
0.0124249
0.00641874
0.00495795
0.00467217
0.00460398
0.00457764
0.00455557
0.0045256
0.00449029
0.00445338
0.00441831
0.00440664
0.00444052
0.00447434
0.00450742
0.00453894
0.00456794
0.00459313
0.00461285
0.00462473
0.0046254
0.00461023
0.0045724
0.00450551
0.00441927
0.00432523
0.00411012
0.00982249
0.20386
0.528543
0.468367
0.184087
0.0727761
0.0290393
0.0116895
0.00621378
0.00491276
0.00466336
0.00460147
0.00457613
0.00455345
0.00452269
0.00448691
0.00444991
0.00441476
0.00440323
0.00443696
0.00447073
0.00450387
0.00453561
0.00456498
0.00459074
0.00461126
0.00462419
0.00462613
0.00461245
0.00457614
0.00451013
0.00442303
0.00432814
0.0041167
0.00947653
0.200565
0.520939
0.449588
0.174247
0.068324
0.02721
0.0110334
0.00603418
0.00487401
0.00465585
0.00459925
0.00457469
0.0045513
0.00451972
0.00448343
0.00444624
0.00441102
0.00439955
0.0044331
0.00446677
0.00449995
0.00453187
0.0045616
0.00458792
0.00460923
0.0046232
0.00462644
0.00461431
0.0045796
0.00451468
0.00442702
0.00433127
0.00412363
0.00914334
0.197196
0.513402
0.431757
0.165179
0.0642578
0.0255483
0.0104467
0.00587653
0.00484073
0.00464945
0.0045973
0.00457331
0.00454913
0.00451667
0.00447982
0.00444239
0.0044071
0.00439563
0.00442895
0.00446251
0.00449569
0.00452776
0.00455782
0.00458469
0.00460677
0.00462179
0.00462635
0.00461579
0.00458279
0.00451912
0.00443118
0.00433459
0.0041308
0.00883532
0.193745
0.505879
0.415051
0.156809
0.0605403
0.0240363
0.00992129
0.00573789
0.0048121
0.00464397
0.0045956
0.00457199
0.00454693
0.00451356
0.00447609
0.00443836
0.004403
0.00439147
0.00442455
0.00445795
0.0044911
0.0045233
0.00455367
0.00458106
0.00460391
0.00461997
0.00462587
0.00461693
0.00458568
0.00452344
0.00443548
0.00433802
0.00413812
0.00856348
0.190203
0.498455
0.399287
0.149074
0.0571382
0.0226586
0.00945005
0.00561576
0.00478747
0.00463931
0.00459412
0.00457072
0.00454471
0.00451037
0.00447225
0.00443419
0.00439872
0.0043871
0.00441991
0.00445312
0.00448622
0.00451852
0.00454919
0.00457708
0.00460069
0.00461779
0.00462502
0.00461771
0.0045883
0.0045276
0.00443988
0.00434155
0.00414545
0.00831992
0.186588
0.49109
0.384549
0.141914
0.0540211
0.0214015
0.00902681
0.00550799
0.00476623
0.00463533
0.00459287
0.00456951
0.00454246
0.00450711
0.0044683
0.00442988
0.0043943
0.00438254
0.00441505
0.00444806
0.00448107
0.00451346
0.00454439
0.00457277
0.00459712
0.00461525
0.00462382
0.00461817
0.00459063
0.00453161
0.00444435
0.0043451
0.0041527
0.00809848
0.182906
0.483842
0.370697
0.135278
0.0511623
0.0202527
0.00864602
0.00541277
0.00474796
0.00463197
0.00459181
0.00456836
0.00454019
0.00450378
0.00446425
0.00442545
0.00438974
0.0043778
0.00441
0.00444278
0.00447569
0.00450813
0.00453931
0.00456817
0.00459324
0.00461239
0.0046223
0.00461832
0.00459268
0.00453544
0.00444886
0.0043487
0.00415974
0.0078942
0.179172
0.476682
0.357748
0.12912
0.0485363
0.0192013
0.00830303
0.00532849
0.0047322
0.00462916
0.00459095
0.00456725
0.00453789
0.00450039
0.00446011
0.00442091
0.00438506
0.00437291
0.00440477
0.00443731
0.0044701
0.00450258
0.00453399
0.0045633
0.00458909
0.00460924
0.00462049
0.00461818
0.00459447
0.00453908
0.00445338
0.00435223
0.00416648
0.00770328
0.175388
0.469649
0.345594
0.123397
0.0461104
0.0182348
0.00799353
0.00525383
0.00471867
0.00462683
0.00459028
0.00456619
0.00453558
0.00449695
0.00445591
0.00441629
0.00438027
0.00436789
0.00439941
0.00443169
0.00446434
0.00449683
0.00452845
0.00455821
0.00458469
0.00460584
0.0046184
0.00461777
0.00459602
0.00454255
0.00445791
0.00435577
0.0041728
0.00752327
0.17157
0.462716
0.334228
0.11807
0.0438654
0.0173465
0.00771395
0.00518758
0.00470704
0.00462495
0.00458978
0.00456517
0.00453324
0.00449347
0.00445164
0.00441158
0.00437539
0.00436274
0.00439391
0.00442592
0.00445841
0.0044909
0.00452272
0.0045529
0.00458007
0.0046022
0.00461608
0.00461711
0.00459733
0.00454582
0.0044624
0.00435919
0.0041786
0.00735239
0.167713
0.455918
0.323545
0.113106
0.041787
0.0165278
0.00746102
0.00512877
0.00469711
0.00462348
0.00458946
0.00456422
0.00453091
0.00448996
0.00444733
0.00440683
0.00437045
0.0043575
0.0043883
0.00442003
0.00445236
0.00448485
0.00451685
0.00454744
0.00457528
0.00459839
0.00461356
0.00461626
0.00459844
0.00454894
0.00446689
0.0043626
0.00418382
0.00718899
0.163846
0.449204
0.313551
0.108469
0.0398559
0.0157741
0.00723181
0.00507644
0.00468859
0.00462236
0.00458926
0.00456325
0.00452851
0.00448636
0.00444293
0.00440197
0.00436541
0.00435218
0.00438261
0.00441405
0.00444621
0.00447867
0.00451084
0.00454182
0.00457033
0.00459438
0.00461084
0.00461518
0.00459933
0.00455185
0.0044713
0.00436583
0.00418827
0.00703244
0.159924
0.442677
0.304102
0.104149
0.0380675
0.0150791
0.00702415
0.00503003
0.00468147
0.0046216
0.00458932
0.00456249
0.0045263
0.00448295
0.00443873
0.0043974
0.00436058
)
;
boundaryField
{
PROFILE
{
type kqRWallFunction;
value nonuniform List<scalar>
186
(
0.040429
0.044907
0.0504753
0.0576729
0.0667498
0.0789562
0.0953976
0.118185
0.152793
0.208544
0.309633
0.520842
1.52218
3.90043
8.50214
16.0015
25.8108
36.3182
45.3172
51.9162
56.1517
58.3123
59.2148
59.0485
58.1168
56.997
55.5906
54.0661
52.4711
50.7471
49.4166
48.4385
47.6083
46.849
46.4805
46.5307
46.8617
47.4052
48.098
48.7871
49.5651
50.1252
50.669
51.174
51.471
51.7103
51.8244
51.7004
51.3896
51.1049
50.9323
50.9157
50.6794
50.2349
49.758
49.1995
48.6223
48.0787
47.4534
46.7547
45.9745
45.1143
44.1574
43.0803
41.8263
40.34
38.6093
36.9139
34.456
0.0367506
0.0332759
0.0304407
0.0280312
0.025976
0.0241823
0.0225883
0.0211752
0.0199396
0.0188455
0.0178696
0.0169893
0.0161946
0.0154741
0.0148104
0.0141343
0.013145
0.0120583
0.0109864
0.00995287
0.00871199
0.00853267
0.00830901
0.00818898
0.00831721
0.00854068
0.00862192
0.00877796
0.00888132
0.00900122
0.00913911
0.00930054
0.00949757
0.0097337
0.010006
0.01032
0.0106864
0.0111162
0.0116282
0.0122263
0.0129093
0.0136836
0.0145969
0.0156646
0.0169382
0.0184672
0.0203118
0.0226172
0.0253746
0.0289304
0.0335583
0.0397722
0.0487782
0.0623047
0.0823215
0.114967
0.175275
0.331608
0.763445
1.60654
3.03432
5.22923
8.08897
10.9265
14.6393
17.5546
20.5863
26.9169
30.111
36.2198
41.8416
44.241
48.3362
51.1812
53.1492
54.6639
55.0786
55.521
56.048
56.0129
55.809
55.4176
54.8401
54.3377
53.7472
53.0229
52.3175
51.5774
50.8451
50.096
49.3718
48.652
47.7266
46.7019
45.7917
45.0409
44.4919
43.8393
42.9281
41.9592
41.0972
40.3774
39.64
38.7005
37.6715
36.7058
35.8572
34.8769
33.7754
32.5617
31.2565
29.8218
28.169
26.2817
24.1822
22.1713
19.5376
)
;
}
INLET
{
type inletOutlet;
inletValue uniform 0.004056;
value nonuniform List<scalar>
344
(
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.00404931
0.00404896
0.00404867
0.00404844
0.00404824
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.004056
0.00404804
0.00404782
0.0040476
0.00404736
0.00404711
0.00404684
0.00404657
0.00404628
0.00404598
0.00404566
0.00404532
0.00404497
0.00404461
0.00404422
0.00404381
0.00404339
0.00404294
0.00404247
0.00404198
0.00404146
0.00404092
0.00404036
0.00403979
0.00403923
0.00403867
0.0040381
0.00403754
0.00403698
0.00403642
0.00403587
0.00403531
0.00403475
0.0040342
0.00403365
0.0040331
0.00403255
0.004032
0.00403145
0.00403091
0.00403036
0.00402982
0.00402928
0.00402874
0.0040282
0.00402766
0.00402712
0.00402658
0.00402604
0.00402551
0.00402497
0.00402444
0.00402391
0.00402338
0.00402285
0.00402232
0.00402179
0.00402127
0.00402075
0.00402022
0.00401971
0.00401919
0.00401868
0.00401817
0.00401766
0.00401716
0.00401666
0.00401616
0.00401566
0.00401517
0.00401468
0.0040142
0.00401372
0.00401324
0.00401277
0.00401229
0.00401183
0.00401135
0.00401093
0.0040104
)
;
}
OUTLET
{
type inletOutlet;
inletValue uniform 0.004056;
value nonuniform List<scalar>
166
(
0.00407177
0.0040779
0.00408249
0.00408712
0.00409173
0.00409632
0.00410088
0.00410543
0.00410995
0.00411447
0.00411896
0.00412359
0.00412805
0.00413351
0.00414149
0.00414808
0.00415295
0.00415803
0.00416332
0.00416889
0.00417481
0.00418114
0.00418798
0.0041954
0.0042035
0.00421239
0.0042222
0.00423307
0.00424519
0.00425877
0.00427404
0.0042913
0.00431095
0.00433285
0.0040475
0.00403785
0.00402855
0.00402175
0.00401724
0.00401425
0.00401218
0.00401065
0.00400943
0.00400841
0.00400753
0.00400675
0.00400606
0.00400544
0.00400488
0.00400437
0.00400392
0.00400352
0.00400317
0.00400288
0.00400264
0.00400247
0.00400237
0.00400235
0.00400243
0.00400261
0.00400294
0.00400345
0.00400418
0.00400518
0.00400652
0.00400813
0.00401
0.00401213
0.00401451
0.00401711
0.00401992
0.00402294
0.00402613
0.00402948
0.00403298
0.00403661
0.00404036
0.0040442
0.00404813
0.00405212
0.00405622
0.00406023
0.00406486
0.0040104
0.00400856
0.00400714
0.0040063
0.00400546
0.00400458
0.00400391
0.00400339
0.00400291
0.00400248
0.0040021
0.00400175
0.00400145
0.00400119
0.00400097
0.0040008
0.00400069
0.00400066
0.00400072
0.00400091
0.00400126
0.00400182
0.00400267
0.00400388
0.00400547
0.0040075
0.00401001
0.00401305
0.00401667
0.00402094
0.00402599
0.00403161
0.00403786
0.0040449
0.00405288
0.00406198
0.00407237
0.00408422
0.00409768
0.00411286
0.00412986
0.00414871
0.00416941
0.00419187
0.00421596
0.00424144
0.00426804
0.0042955
0.00432304
0.00435218
0.00438261
0.00441405
0.00444621
0.00447867
0.00451084
0.00454182
0.00457033
0.00459438
0.00461084
0.00461518
0.00459933
0.00455185
0.0044713
0.00436583
0.00418827
0.00703244
0.159924
0.442677
0.304102
0.104149
0.0380675
0.0150791
0.00702415
0.00503003
0.00468147
0.0046216
0.00458932
0.00456249
0.0045263
0.00448295
0.00443873
0.0043974
0.00436058
)
;
}
EMPTY0
{
type empty;
}
EMPTY1
{
type empty;
}
}
// ************************************************************************* //
| [
"fonsocarre@gmail.com"
] | fonsocarre@gmail.com | |
f98c4b9eb9c3681576e951edd8da8f7f52e40fd0 | 4bdb20c69bbc289c491d76179b77fcee4f262f29 | /ogsr_engine/ETools/ETools.h | a330c4469ecb32369759fdbc02fb94c0ea780e6c | [] | no_license | Roman-n/ogsr-engine | 1a42e3f378c93c55ca918be171e2feb0ffd50e4c | 6b16bf6593bd8a647f7f150e5cf6f80d7474585f | refs/heads/main | 2023-02-22T01:38:06.681481 | 2018-05-02T20:54:55 | 2018-05-02T20:54:55 | 332,519,405 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,724 | h | #ifndef EToolsH
#define EToolsH
#ifdef ETOOLS_EXPORTS
#define ETOOLS_API __declspec( dllexport )
#else
#define ETOOLS_API __declspec( dllimport )
#endif
#include "../xrCDB/xrCDB.h"
extern "C" {
// fast functions
namespace ETOOLS{
ETOOLS_API bool __stdcall TestRayTriA (const Fvector& C, const Fvector& D, Fvector** p, float& u, float& v, float& range, bool bCull);
ETOOLS_API bool __stdcall TestRayTriB (const Fvector& C, const Fvector& D, Fvector* p, float& u, float& v, float& range, bool bCull);
ETOOLS_API bool __stdcall TestRayTri2 (const Fvector& C, const Fvector& D, Fvector* p, float& range);
typedef void __stdcall pb_callback (void* user_data, float& val);
ETOOLS_API void __stdcall SimplifyCubeMap (u32* src_data, u32 src_width, u32 src_height, u32* dst_data, u32 dst_width, u32 dst_height, float sample_factor=1.f, pb_callback cb=0, void* pb_data=0);
ETOOLS_API CDB::Collector* __stdcall create_collector ();
ETOOLS_API void __stdcall destroy_collector (CDB::Collector*&);
#ifdef _WIN64
ETOOLS_API void __stdcall collector_add_face_d(CDB::Collector* CL, const Fvector& v0, const Fvector& v1, const Fvector& v2, u64 dummy);
ETOOLS_API void __stdcall collector_add_face_pd(CDB::Collector* CL,const Fvector& v0, const Fvector& v1, const Fvector& v2, u64 dummy, float eps = EPS);
#else
ETOOLS_API void __stdcall collector_add_face_d(CDB::Collector* CL, const Fvector& v0, const Fvector& v1, const Fvector& v2, u32 dummy);
ETOOLS_API void __stdcall collector_add_face_pd(CDB::Collector* CL,const Fvector& v0, const Fvector& v1, const Fvector& v2, u32 dummy, float eps = EPS);
#endif
ETOOLS_API CDB::CollectorPacked*__stdcall create_collectorp (const Fbox &bb, int apx_vertices=5000, int apx_faces=5000);
ETOOLS_API void __stdcall destroy_collectorp (CDB::CollectorPacked*&);
ETOOLS_API void __stdcall collectorp_add_face_d(CDB::CollectorPacked* CL, const Fvector& v0, const Fvector& v1, const Fvector& v2, u32 dummy);
ETOOLS_API CDB::COLLIDER* __stdcall get_collider ();
ETOOLS_API CDB::MODEL* __stdcall create_model_cl (CDB::Collector*);
ETOOLS_API CDB::MODEL* __stdcall create_model_clp (CDB::CollectorPacked*);
ETOOLS_API CDB::MODEL* __stdcall create_model (Fvector* V, int Vcnt, CDB::TRI* T, int Tcnt);
ETOOLS_API void __stdcall destroy_model (CDB::MODEL*&);
ETOOLS_API CDB::RESULT* __stdcall r_begin ();
ETOOLS_API CDB::RESULT* __stdcall r_end ();
ETOOLS_API int __stdcall r_count ();
ETOOLS_API void __stdcall ray_options (u32 flags);
ETOOLS_API void __stdcall ray_query (const CDB::MODEL *m_def, const Fvector& r_start, const Fvector& r_dir, float r_range);
ETOOLS_API void __stdcall ray_query_m (const Fmatrix& inv_parent, const CDB::MODEL *m_def, const Fvector& r_start, const Fvector& r_dir, float r_range);
ETOOLS_API void __stdcall box_options (u32 flags);
ETOOLS_API void __stdcall box_query (const CDB::MODEL *m_def, const Fvector& b_center, const Fvector& b_dim);
ETOOLS_API void __stdcall box_query_m (const Fmatrix& inv_parent, const CDB::MODEL *m_def, const Fbox& src);
ETOOLS_API int __stdcall ogg_enc (const char* in_fn, const char* out_fn, float quality, void* comment, int comment_size);
ETOOLS_API bool __stdcall GetOpenNameImpl(string_path& buffer, FS_Path& path, bool bMulti, LPCSTR offset, int start_flt_ext);
ETOOLS_API bool __stdcall GetSaveNameImpl(string_path& buffer, FS_Path& path, LPCSTR offset, int start_flt_ext);
IC bool __stdcall GetOpenName(LPCSTR initial, xr_string& buffer, bool bMulti = false, LPCSTR offset = 0, int start_flt_ext = -1)
{
string_path buf;
strcpy(buf, buffer.c_str());
VERIFY(buf);
FS_Path& P = *FS.get_path(initial);
if (xr_strlen(buf)) {
string_path dr;
if (!(buf[0] == '\\' && buf[1] == '\\')) { // if !network
_splitpath(buf, dr, 0, 0, 0);
if (0 == dr[0]) P._update(buf, buf);
}
}
bool bRes = GetOpenNameImpl(buf, P, bMulti, offset, start_flt_ext);
if (bRes)
buffer = (char*)buf;
return bRes;
}
IC bool __stdcall GetSaveName(LPCSTR initial, xr_string& buffer, LPCSTR offset = 0, int start_flt_ext = -1)
{
string_path buf;
strcpy(buf, buffer.c_str());
VERIFY(buf);
FS_Path& P = *FS.get_path(initial);
if (xr_strlen(buf)) {
string_path dr;
if (!(buf[0] == '\\' && buf[1] == '\\')) { // if !network
_splitpath(buf, dr, 0, 0, 0);
if (0 == dr[0]) P._update(buf, buf);
}
}
bool bRes = GetSaveNameImpl(buf, P, offset, start_flt_ext);
if (bRes)
buffer = buf;
return bRes;
}
};
};
#endif // EToolsH | [
"kdementev@gmail.com"
] | kdementev@gmail.com |
6ca0f0cdf6513c1f84c323d1a8e3d4919b36ba37 | 24d7a3344c7ba600bbec30fb7b81479312f8d75e | /N3.cpp | 64991c3366d5f2afe269231baf2e54891cfefa2b | [] | no_license | batangmatapang69/Experiment_2 | 77bcf931012fc96bdb92d242980b17ec15f81a20 | 1d1509167061f6a9f65b4326c059c0b7460dc1f1 | refs/heads/master | 2020-05-19T08:00:45.812390 | 2019-05-05T06:47:07 | 2019-05-05T06:47:07 | 184,911,213 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 723 | cpp | #include <iostream>
#include <iomanip>
#include <cmath>
#include <conio.h>
using namespace std;
int main()
{
int x, y;
float V;
const float z = 2.5;
cout << "Enter X value: "; cin >> x;
cout << "Enter Y value: "; cin >> y;
switch (x)
{
case 1:
if (1 < y < 5)
{
V = x * y * z;
}
else if (y >= 5)
{
V = x + (y / z);
}
break;
case 2:
if (y <= 5)
{
V = abs((x - y) / z);
}
else if (y > 5)
{
V = x - (sqrt(y + z));
}
break;
default:
V = x + y + z;
break;
}
cout << "\nThe value for V is\n" << setw(10) << setprecision(2) << V;
_getch();
return 0;
}
| [
"noreply@github.com"
] | batangmatapang69.noreply@github.com |
9941a36eee51df6e542e2345e24292c86a9908f2 | 7dfe73ff629b01407942c6b49ee8af460679f728 | /SubmitPaper/OpActivity.cpp | e9b2fdda52580abc1bbc2ccab6d734ac03eb12d2 | [] | no_license | conerfly/222 | 47acde57834ff6e5326ffaa6e011dbc6ae928c2d | 982a8974316ed8c7cb137205df60c0eee8b246ac | refs/heads/master | 2016-09-06T06:56:30.673731 | 2014-10-30T03:27:19 | 2014-10-30T03:27:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,705 | cpp | // OpActivity.cpp: implementation of the COpActivity class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "SubmitPaper.h"
#include "OpActivity.h"
#include "AdoConn.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
COpActivity::COpActivity()
{
m_TotalNum = 0;
m_CurNum = 0;
}
COpActivity::~COpActivity()
{
}
bool COpActivity::Add()
{
ADOConn con;
CString sql;
_variant_t id;
CString s;
CString temp = "','";
char szText[50]={0};
s = "insert into Activity(content,releasetime) values('";
temp.Format("%s, ",m_Activity.GetContent());
s +=temp + "', getdate() )";
bool b = con.ExecuteSQL((_bstr_t)s);
s = "select aid,content,releasetime from Activity order by releasetime desc";
con.GetRecordset((_bstr_t)s);
if (!con.m_pRecordset->adoEOF)
{
id = con.m_pRecordset->GetCollect("aid");
m_Activity.SetAid(id.intVal);
strcpy(szText,(char*)(_bstr_t)con.m_pRecordset->GetCollect("releasetime"));
m_Activity.SetReleaseTime(szText);
}
con.ExitADOconn();
return b;
}
bool COpActivity::Delete()
{
ADOConn con;
CString s;
CString temp;
temp.Format("%d",m_Activity.GetAid());
s = "delete activity where aid = " + temp;
bool b = con.ExecuteSQL((_bstr_t)s);
con.ExitADOconn();
return b;
}
bool COpActivity::Update()
{
ADOConn con;
CString s;
CString temp = "','";
s = "insert into Activity(content,releasetime) values('";
temp.Format("%s', ",m_Activity.GetContent());
s +=temp;
s += "getdate() )";
bool b = con.ExecuteSQL((_bstr_t)s);
con.ExitADOconn();
return b;
}
void COpActivity::GetAllActivity(vector<CActivity *> &vecActivity)
{
ADOConn con;
CString s;
CActivity *pAct;
_variant_t id;
char szText[1000] = {0};
s = "select * from Activity";
con.GetRecordset((_bstr_t)s);
while (!con.m_pRecordset->adoEOF)
{
pAct = new CActivity;
id = con.m_pRecordset->GetCollect("aid");
pAct->SetAid(id.intVal);
strcpy(szText,(char*)(_bstr_t)con.m_pRecordset->GetCollect("content"));
pAct->SetContent(szText);
strcpy(szText,(char*)(_bstr_t)con.m_pRecordset->GetCollect("releasetime"));
pAct->SetReleaseTime(szText);
vecActivity.push_back(pAct);
m_TotalNum++;
con.m_pRecordset->MoveNext();
}
con.ExitADOconn();
}
void COpActivity::SetActivity( const CActivity &act )
{
m_Activity = act;
}
CActivity & COpActivity::GetActivity()
{
return m_Activity;
}
| [
"apple@applematoMBP.gateway"
] | apple@applematoMBP.gateway |
7054bc9b069a3f080f2c9b6ebffdc75baa6816ea | 27d9e3e86ecd8401713963200f94548c4da3cc24 | /d04/ex02/main.cpp | 573887dc0b54a91c5f072b37644f4cf0fdd5f230 | [] | no_license | st3w4r/42-pool_cpp | f9966b74f1d2a816e53f097d38b1c9e590c5b680 | 42b2227ece4b99eb622e67ec3aed33c13cc1d8e7 | refs/heads/master | 2021-01-21T13:53:11.579633 | 2015-06-29T09:48:37 | 2015-06-29T09:48:37 | 37,479,306 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 2,642 | cpp | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ybarbier <ybarbier@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2015/06/20 10:22:09 by ybarbier #+# #+# */
/* Updated: 2015/06/20 10:22:10 by ybarbier ### ########.fr */
/* */
/* ************************************************************************** */
#include <iostream>
#include <string>
#include "TacticalMarine.hpp"
#include "AssaultTerminator.hpp"
#include "Squad.hpp"
int main()
{
{
std::cout << "____Constructor_____" << std::endl;
ISpaceMarine* bob = new TacticalMarine;
ISpaceMarine* jim = new AssaultTerminator;
ISquad* vlc = new Squad;
std::cout << "____Index and count_____" << std::endl;
std::cout << vlc->push(bob) << std::endl;
std::cout << vlc->getCount() << std::endl;
std::cout << "____Same Object_____" << std::endl;
std::cout << vlc->push(jim) << std::endl;
std::cout << vlc->getCount() << std::endl;
std::cout << vlc->push(jim) << std::endl;
std::cout << vlc->getCount() << std::endl;
std::cout << "____New Object Index_____" << std::endl;
std::cout << vlc->push(new AssaultTerminator) << std::endl;
std::cout << vlc->push(new TacticalMarine) << std::endl;
std::cout << vlc->getCount() << std::endl;
std::cout << "____Attack_____" << std::endl;
vlc->getUnit(0)->battleCry();
vlc->getUnit(1)->battleCry();
vlc->getUnit(0)->rangedAttack();
vlc->getUnit(1)->rangedAttack();
vlc->getUnit(0)->meleeAttack();
vlc->getUnit(1)->meleeAttack();
std::cout << "____Not Exist_____" << std::endl;
std::cout << vlc->getUnit(8) << std::endl;
std::cout << "____Delete_____" << std::endl;
delete vlc;
// delete bob;
// delete jim;
}
std::cout << "____Test Subject_____" << std::endl;
{
ISpaceMarine* bob = new TacticalMarine;
ISpaceMarine* jim = new AssaultTerminator;
ISquad* vlc = new Squad;
vlc->push(bob);
vlc->push(jim);
for (int i = 0; i < vlc->getCount(); ++i)
{
ISpaceMarine* cur = vlc->getUnit(i);
cur->battleCry();
cur->rangedAttack();
cur->meleeAttack();
}
delete vlc;
}
return 0;
}
| [
"ybarbier@student.42.fr"
] | ybarbier@student.42.fr |
07772f42f65eac9cc617e09125c78619b3130189 | 97aab27d4410969e589ae408b2724d0faa5039e2 | /SDK/EXES/INSTALL VISUAL 6 SDK/LEGACY/MSDN/SMPL/SMPL/MSDN/techart/2531/body.cpp | 40f2e72800b1353f349701bb7910086f142a8067 | [] | no_license | FutureWang123/dreamcast-docs | 82e4226cb1915f8772418373d5cb517713f858e2 | 58027aeb669a80aa783a6d2cdcd2d161fd50d359 | refs/heads/master | 2021-10-26T00:04:25.414629 | 2018-08-10T21:20:37 | 2018-08-10T21:20:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,003 | cpp | // body.cpp : implementation file
//
#include "stdafx.h"
#include "gravity.h"
#include "animdoc.h"
//DER --- #include "animsp.h"
#include "body.h"
#include "spritedl.h"
#include <math.h>
#include <limits.h>
#ifdef _DEBUG
#undef THIS_FILE
static char BASED_CODE THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CBody
IMPLEMENT_SERIAL(CBody, CPhasedSprite, 0 /* schema number*/ )
//
// Statics
//
CVector CBody::s_scale ;
//
// CBody
//
CBody::CBody()
: m_mass(0), m_gmass(0),m_massI(0)
{
m_position.x = 0.0 ;
m_position.y = 0.0 ;
m_velocity.x = 0.0 ;
m_velocity.y = 0.0 ;
m_positionI.x = 0.0 ;
m_positionI.y = 0.0 ;
m_velocityI.x = 0.0 ;
m_velocityI.y = 0.0 ;
}
CBody::~CBody()
{
}
void CBody::SetMass( double mass)
{
m_mass = m_massI = mass ;
m_gmass = CUniverse::G * mass ;
}
void CBody::SetVelocity(double Vx, double Vy)
{
m_velocity.x = m_velocityI.x = Vx ;
m_velocity.y = m_velocityI.y = Vy ;
}
void CBody::SetUPosition (double X, double Y )
{
m_position.x = m_positionI.x = X ;
m_position.y = m_positionI.y = Y ;
SetSPosition() ;
}
void CBody::SetSPosition()
{
int x = (int)(m_position.x * s_scale.x) ;
int y = (int)(m_position.y * s_scale.y) ;
CPhasedSprite::SetPosition(x,y) ; // Notifies the list that the position has changed...
}
void CBody::ApplyForce(CBody* pbody)
{
CVector d ;
double rs;
double r;
double v ;
double vr ;
d.x = m_position.x - pbody->m_position.x ;
d.y = m_position.y - pbody->m_position.y ;
rs = (d.x * d.x) + (d.y * d.y) ;
if (rs != 0.0) // ICK! comparing floats...
{
r = sqrt(rs) ;
v = (pbody->m_gmass / rs) * CUniverse::SECS_PER_TICK ;
vr = v / r ;
m_velocity.x += vr * d.x ;
m_velocity.y += vr * d.y ;
}
}
void CBody::Update()
{
m_position.x += m_velocity.x * CUniverse::SECS_PER_TICK ;
m_position.y += m_velocity.y * CUniverse::SECS_PER_TICK ;
// Cycle through the phases
if (GetNumPhases() > 1)
SetPhase((GetPhase()+1)%GetNumPhases());
// Set the sprite Screen position...
SetSPosition() ;
}
/////////////////////////////////////////////////////////////////////////////
// CBody serialization
void CBody::Serialize(CArchive& ar)
{
CPhasedSprite::Serialize(ar);
if (ar.IsStoring()) {
ar << m_velocity.x;
ar << m_velocity.y;
ar << m_position.x ;
ar << m_position.y ;
ar << m_mass ;
ar << m_velocityI.x;
ar << m_velocityI.y;
ar << m_positionI.x ;
ar << m_positionI.y ;
ar << m_massI ;
//ar << (DWORD) m_bSelectable;
} else {
ar >> m_velocity.x ;
ar >> m_velocity.y ;
ar >> m_position.x ;
ar >> m_position.y ;
double mass ;
ar >> mass ;
SetMass(mass) ;
ar >> m_velocityI.x ;
ar >> m_velocityI.y ;
ar >> m_positionI.x ;
ar >> m_positionI.y ;
ar >> m_massI ;
}
}
/////////////////////////////////////////////////////////////////////////////
// CBody commands copied from CAnimSprite
// Show the sprite parameter dialog
BOOL CBody::DoDialog()
{
//Now uses doubles instead of ints...
CSpriteDlg dlg;
dlg.m_x = m_position.x;
dlg.m_y = m_position.y;
dlg.m_vx = m_velocity.x;
dlg.m_vy = m_velocity.y;
dlg.m_mass = m_mass ;
dlg.m_phases = GetNumPhases() ;
dlg.pSprite = this;
if (dlg.DoModal() == IDOK) {
// Update sprite params and send notifications
SetVelocity(dlg.m_vx, dlg.m_vy);
SetUPosition(dlg.m_x, dlg.m_y);
SetMass(dlg.m_mass) ;
SetNumPhases(dlg.m_phases) ;
return TRUE;
}
return FALSE;
}
void CBody::SetUniverseScale(CRect* pRectScreen)
{
s_scale.x = (double)pRectScreen->right / CUniverse::HEIGHT ;
s_scale.y = (double)pRectScreen->bottom / CUniverse::WIDTH ;
}
void CBody::Reset()
{
m_velocity = m_velocityI ;
m_position = m_positionI ;
SetMass(m_massI) ;
m_iPhase = 0 ; // Set Current phase back to zero
SetSPosition() ;
}
| [
"david.koch@9online.fr"
] | david.koch@9online.fr |
ec9cd045f8ca6298fe66a885e2d374a6f1ef513f | 7cf6e9b0f91a076e6484ae2efa42b631dbfac330 | /td/telegram/GroupCallManager.cpp | 546c9a1f1e401cc1882fb6ef049264e5dffaf53f | [
"BSL-1.0",
"LicenseRef-scancode-unknown-license-reference",
"JSON"
] | permissive | angelbirth/td | 6161b8b1ca70fbbed62ceb02c9eff8d186ae1f74 | f7c01e88e36d3e49f3bf4b37ea71865324b0ecaa | refs/heads/master | 2021-05-05T03:21:23.439705 | 2020-12-29T12:51:12 | 2020-12-29T12:51:12 | 119,795,940 | 1 | 0 | null | 2018-02-01T06:52:15 | 2018-02-01T06:52:15 | null | UTF-8 | C++ | false | false | 96,955 | cpp | //
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2020
//
// 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)
//
#include "td/telegram/GroupCallManager.h"
#include "td/telegram/AccessRights.h"
#include "td/telegram/AuthManager.h"
#include "td/telegram/ContactsManager.h"
#include "td/telegram/DialogParticipant.h"
#include "td/telegram/Global.h"
#include "td/telegram/MessageId.h"
#include "td/telegram/MessagesManager.h"
#include "td/telegram/misc.h"
#include "td/telegram/net/NetQuery.h"
#include "td/telegram/Td.h"
#include "td/telegram/UpdatesManager.h"
#include "td/utils/buffer.h"
#include "td/utils/JsonBuilder.h"
#include "td/utils/misc.h"
#include "td/utils/Random.h"
#include <limits>
#include <map>
#include <unordered_set>
#include <utility>
namespace td {
class CreateGroupCallQuery : public Td::ResultHandler {
Promise<InputGroupCallId> promise_;
DialogId dialog_id_;
public:
explicit CreateGroupCallQuery(Promise<InputGroupCallId> &&promise) : promise_(std::move(promise)) {
}
void send(DialogId dialog_id) {
dialog_id_ = dialog_id;
auto input_peer = td->messages_manager_->get_input_peer(dialog_id, AccessRights::Read);
CHECK(input_peer != nullptr);
send_query(G()->net_query_creator().create(
telegram_api::phone_createGroupCall(std::move(input_peer), Random::secure_int32())));
}
void on_result(uint64 id, BufferSlice packet) override {
auto result_ptr = fetch_result<telegram_api::phone_createGroupCall>(packet);
if (result_ptr.is_error()) {
return on_error(id, result_ptr.move_as_error());
}
auto ptr = result_ptr.move_as_ok();
LOG(INFO) << "Receive result for CreateGroupCallQuery: " << to_string(ptr);
auto group_call_ids = td->updates_manager_->get_update_new_group_call_ids(ptr.get());
if (group_call_ids.size() != 1) {
LOG(ERROR) << "Receive wrong CreateGroupCallQuery response " << to_string(ptr);
return on_error(id, Status::Error(500, "Receive wrong response"));
}
auto group_call_id = group_call_ids[0];
td->updates_manager_->on_get_updates(
std::move(ptr), PromiseCreator::lambda([promise = std::move(promise_), group_call_id](Unit) mutable {
promise.set_value(std::move(group_call_id));
}));
}
void on_error(uint64 id, Status status) override {
td->messages_manager_->on_get_dialog_error(dialog_id_, status, "CreateGroupCallQuery");
promise_.set_error(std::move(status));
}
};
class GetGroupCallQuery : public Td::ResultHandler {
Promise<tl_object_ptr<telegram_api::phone_groupCall>> promise_;
public:
explicit GetGroupCallQuery(Promise<tl_object_ptr<telegram_api::phone_groupCall>> &&promise)
: promise_(std::move(promise)) {
}
void send(InputGroupCallId input_group_call_id) {
send_query(
G()->net_query_creator().create(telegram_api::phone_getGroupCall(input_group_call_id.get_input_group_call())));
}
void on_result(uint64 id, BufferSlice packet) override {
auto result_ptr = fetch_result<telegram_api::phone_getGroupCall>(packet);
if (result_ptr.is_error()) {
return on_error(id, result_ptr.move_as_error());
}
auto ptr = result_ptr.move_as_ok();
LOG(INFO) << "Receive result for GetGroupCallQuery: " << to_string(ptr);
promise_.set_value(std::move(ptr));
}
void on_error(uint64 id, Status status) override {
promise_.set_error(std::move(status));
}
};
class GetGroupCallParticipantQuery : public Td::ResultHandler {
Promise<Unit> promise_;
InputGroupCallId input_group_call_id_;
public:
explicit GetGroupCallParticipantQuery(Promise<Unit> &&promise) : promise_(std::move(promise)) {
}
void send(InputGroupCallId input_group_call_id, vector<int32> user_ids, vector<int32> sources) {
input_group_call_id_ = input_group_call_id;
auto limit = narrow_cast<int32>(max(user_ids.size(), sources.size()));
send_query(G()->net_query_creator().create(telegram_api::phone_getGroupParticipants(
input_group_call_id.get_input_group_call(), std::move(user_ids), std::move(sources), string(), limit)));
}
void on_result(uint64 id, BufferSlice packet) override {
auto result_ptr = fetch_result<telegram_api::phone_getGroupParticipants>(packet);
if (result_ptr.is_error()) {
return on_error(id, result_ptr.move_as_error());
}
td->group_call_manager_->on_get_group_call_participants(input_group_call_id_, result_ptr.move_as_ok(), false,
string());
promise_.set_value(Unit());
}
void on_error(uint64 id, Status status) override {
promise_.set_error(std::move(status));
}
};
class GetGroupCallParticipantsQuery : public Td::ResultHandler {
Promise<Unit> promise_;
InputGroupCallId input_group_call_id_;
string offset_;
public:
explicit GetGroupCallParticipantsQuery(Promise<Unit> &&promise) : promise_(std::move(promise)) {
}
void send(InputGroupCallId input_group_call_id, string offset, int32 limit) {
input_group_call_id_ = input_group_call_id;
offset_ = std::move(offset);
send_query(G()->net_query_creator().create(telegram_api::phone_getGroupParticipants(
input_group_call_id.get_input_group_call(), vector<int32>(), vector<int32>(), offset_, limit)));
}
void on_result(uint64 id, BufferSlice packet) override {
auto result_ptr = fetch_result<telegram_api::phone_getGroupParticipants>(packet);
if (result_ptr.is_error()) {
return on_error(id, result_ptr.move_as_error());
}
td->group_call_manager_->on_get_group_call_participants(input_group_call_id_, result_ptr.move_as_ok(), true,
offset_);
promise_.set_value(Unit());
}
void on_error(uint64 id, Status status) override {
promise_.set_error(std::move(status));
}
};
class JoinGroupCallQuery : public Td::ResultHandler {
Promise<Unit> promise_;
InputGroupCallId input_group_call_id_;
uint64 generation_ = 0;
public:
explicit JoinGroupCallQuery(Promise<Unit> &&promise) : promise_(std::move(promise)) {
}
NetQueryRef send(InputGroupCallId input_group_call_id, const string &payload, bool is_muted, uint64 generation) {
input_group_call_id_ = input_group_call_id;
generation_ = generation;
int32 flags = 0;
if (is_muted) {
flags |= telegram_api::phone_joinGroupCall::MUTED_MASK;
}
auto query = G()->net_query_creator().create(
telegram_api::phone_joinGroupCall(flags, false /*ignored*/, input_group_call_id.get_input_group_call(),
make_tl_object<telegram_api::dataJSON>(payload)));
auto join_query_ref = query.get_weak();
send_query(std::move(query));
return join_query_ref;
}
void on_result(uint64 id, BufferSlice packet) override {
auto result_ptr = fetch_result<telegram_api::phone_joinGroupCall>(packet);
if (result_ptr.is_error()) {
return on_error(id, result_ptr.move_as_error());
}
td->group_call_manager_->process_join_group_call_response(input_group_call_id_, generation_,
result_ptr.move_as_ok(), std::move(promise_));
}
void on_error(uint64 id, Status status) override {
promise_.set_error(std::move(status));
}
};
class ToggleGroupCallSettingsQuery : public Td::ResultHandler {
Promise<Unit> promise_;
public:
explicit ToggleGroupCallSettingsQuery(Promise<Unit> &&promise) : promise_(std::move(promise)) {
}
void send(int32 flags, InputGroupCallId input_group_call_id, bool join_muted) {
send_query(G()->net_query_creator().create(
telegram_api::phone_toggleGroupCallSettings(flags, input_group_call_id.get_input_group_call(), join_muted)));
}
void on_result(uint64 id, BufferSlice packet) override {
auto result_ptr = fetch_result<telegram_api::phone_toggleGroupCallSettings>(packet);
if (result_ptr.is_error()) {
return on_error(id, result_ptr.move_as_error());
}
auto ptr = result_ptr.move_as_ok();
LOG(INFO) << "Receive result for ToggleGroupCallSettingsQuery: " << to_string(ptr);
td->updates_manager_->on_get_updates(std::move(ptr), std::move(promise_));
}
void on_error(uint64 id, Status status) override {
promise_.set_error(std::move(status));
}
};
class InviteToGroupCallQuery : public Td::ResultHandler {
Promise<Unit> promise_;
public:
explicit InviteToGroupCallQuery(Promise<Unit> &&promise) : promise_(std::move(promise)) {
}
void send(InputGroupCallId input_group_call_id, vector<tl_object_ptr<telegram_api::InputUser>> input_users) {
send_query(G()->net_query_creator().create(
telegram_api::phone_inviteToGroupCall(input_group_call_id.get_input_group_call(), std::move(input_users))));
}
void on_result(uint64 id, BufferSlice packet) override {
auto result_ptr = fetch_result<telegram_api::phone_inviteToGroupCall>(packet);
if (result_ptr.is_error()) {
return on_error(id, result_ptr.move_as_error());
}
auto ptr = result_ptr.move_as_ok();
LOG(INFO) << "Receive result for InviteToGroupCallQuery: " << to_string(ptr);
td->updates_manager_->on_get_updates(std::move(ptr), std::move(promise_));
}
void on_error(uint64 id, Status status) override {
promise_.set_error(std::move(status));
}
};
class EditGroupCallMemberQuery : public Td::ResultHandler {
Promise<Unit> promise_;
public:
explicit EditGroupCallMemberQuery(Promise<Unit> &&promise) : promise_(std::move(promise)) {
}
void send(InputGroupCallId input_group_call_id, UserId user_id, bool is_muted) {
auto input_user = td->contacts_manager_->get_input_user(user_id);
CHECK(input_user != nullptr);
int32 flags = 0;
if (is_muted) {
flags |= telegram_api::phone_editGroupCallMember::MUTED_MASK;
}
send_query(G()->net_query_creator().create(telegram_api::phone_editGroupCallMember(
flags, false /*ignored*/, input_group_call_id.get_input_group_call(), std::move(input_user))));
}
void on_result(uint64 id, BufferSlice packet) override {
auto result_ptr = fetch_result<telegram_api::phone_editGroupCallMember>(packet);
if (result_ptr.is_error()) {
return on_error(id, result_ptr.move_as_error());
}
auto ptr = result_ptr.move_as_ok();
LOG(INFO) << "Receive result for EditGroupCallMemberQuery: " << to_string(ptr);
td->updates_manager_->on_get_updates(std::move(ptr), std::move(promise_));
}
void on_error(uint64 id, Status status) override {
promise_.set_error(std::move(status));
}
};
class CheckGroupCallQuery : public Td::ResultHandler {
Promise<Unit> promise_;
public:
explicit CheckGroupCallQuery(Promise<Unit> &&promise) : promise_(std::move(promise)) {
}
void send(InputGroupCallId input_group_call_id, int32 source) {
send_query(G()->net_query_creator().create(
telegram_api::phone_checkGroupCall(input_group_call_id.get_input_group_call(), source)));
}
void on_result(uint64 id, BufferSlice packet) override {
auto result_ptr = fetch_result<telegram_api::phone_checkGroupCall>(packet);
if (result_ptr.is_error()) {
return on_error(id, result_ptr.move_as_error());
}
bool success = result_ptr.move_as_ok();
LOG(INFO) << "Receive result for CheckGroupCallQuery: " << success;
if (success) {
promise_.set_value(Unit());
} else {
promise_.set_error(Status::Error(400, "GROUP_CALL_JOIN_MISSING"));
}
}
void on_error(uint64 id, Status status) override {
promise_.set_error(std::move(status));
}
};
class LeaveGroupCallQuery : public Td::ResultHandler {
Promise<Unit> promise_;
public:
explicit LeaveGroupCallQuery(Promise<Unit> &&promise) : promise_(std::move(promise)) {
}
void send(InputGroupCallId input_group_call_id, int32 source) {
send_query(G()->net_query_creator().create(
telegram_api::phone_leaveGroupCall(input_group_call_id.get_input_group_call(), source)));
}
void on_result(uint64 id, BufferSlice packet) override {
auto result_ptr = fetch_result<telegram_api::phone_leaveGroupCall>(packet);
if (result_ptr.is_error()) {
return on_error(id, result_ptr.move_as_error());
}
auto ptr = result_ptr.move_as_ok();
LOG(INFO) << "Receive result for LeaveGroupCallQuery: " << to_string(ptr);
td->updates_manager_->on_get_updates(std::move(ptr), std::move(promise_));
}
void on_error(uint64 id, Status status) override {
promise_.set_error(std::move(status));
}
};
class DiscardGroupCallQuery : public Td::ResultHandler {
Promise<Unit> promise_;
public:
explicit DiscardGroupCallQuery(Promise<Unit> &&promise) : promise_(std::move(promise)) {
}
void send(InputGroupCallId input_group_call_id) {
send_query(G()->net_query_creator().create(
telegram_api::phone_discardGroupCall(input_group_call_id.get_input_group_call())));
}
void on_result(uint64 id, BufferSlice packet) override {
auto result_ptr = fetch_result<telegram_api::phone_discardGroupCall>(packet);
if (result_ptr.is_error()) {
return on_error(id, result_ptr.move_as_error());
}
auto ptr = result_ptr.move_as_ok();
LOG(INFO) << "Receive result for DiscardGroupCallQuery: " << to_string(ptr);
td->updates_manager_->on_get_updates(std::move(ptr), std::move(promise_));
}
void on_error(uint64 id, Status status) override {
promise_.set_error(std::move(status));
}
};
struct GroupCallManager::GroupCall {
GroupCallId group_call_id;
DialogId dialog_id;
bool is_inited = false;
bool is_active = false;
bool is_joined = false;
bool need_rejoin = false;
bool is_being_left = false;
bool is_speaking = false;
bool can_self_unmute = false;
bool can_be_managed = false;
bool syncing_participants = false;
bool loaded_all_participants = false;
bool mute_new_participants = false;
bool allowed_change_mute_new_participants = false;
int32 participant_count = 0;
int32 version = -1;
int32 duration = 0;
int32 source = 0;
int32 joined_date = 0;
};
struct GroupCallManager::GroupCallParticipants {
vector<GroupCallParticipant> participants;
string next_offset;
int64 min_order = std::numeric_limits<int64>::max();
bool are_administrators_loaded = false;
vector<UserId> administrator_user_ids;
std::map<int32, vector<tl_object_ptr<telegram_api::groupCallParticipant>>> pending_version_updates_;
std::map<int32, vector<tl_object_ptr<telegram_api::groupCallParticipant>>> pending_mute_updates_;
};
struct GroupCallManager::GroupCallRecentSpeakers {
vector<std::pair<UserId, int32>> users; // user + time; sorted by time
bool is_changed = false;
vector<std::pair<UserId, bool>> last_sent_users;
};
struct GroupCallManager::PendingJoinRequest {
NetQueryRef query_ref;
uint64 generation = 0;
int32 source = 0;
Promise<td_api::object_ptr<td_api::groupCallJoinResponse>> promise;
};
GroupCallManager::GroupCallManager(Td *td, ActorShared<> parent) : td_(td), parent_(std::move(parent)) {
check_group_call_is_joined_timeout_.set_callback(on_check_group_call_is_joined_timeout_callback);
check_group_call_is_joined_timeout_.set_callback_data(static_cast<void *>(this));
pending_send_speaking_action_timeout_.set_callback(on_pending_send_speaking_action_timeout_callback);
pending_send_speaking_action_timeout_.set_callback_data(static_cast<void *>(this));
recent_speaker_update_timeout_.set_callback(on_recent_speaker_update_timeout_callback);
recent_speaker_update_timeout_.set_callback_data(static_cast<void *>(this));
sync_participants_timeout_.set_callback(on_sync_participants_timeout_callback);
sync_participants_timeout_.set_callback_data(static_cast<void *>(this));
}
GroupCallManager::~GroupCallManager() = default;
void GroupCallManager::tear_down() {
parent_.reset();
}
void GroupCallManager::on_check_group_call_is_joined_timeout_callback(void *group_call_manager_ptr,
int64 group_call_id_int) {
if (G()->close_flag()) {
return;
}
auto group_call_manager = static_cast<GroupCallManager *>(group_call_manager_ptr);
send_closure_later(group_call_manager->actor_id(group_call_manager),
&GroupCallManager::on_check_group_call_is_joined_timeout,
GroupCallId(narrow_cast<int32>(group_call_id_int)));
}
void GroupCallManager::on_check_group_call_is_joined_timeout(GroupCallId group_call_id) {
if (G()->close_flag()) {
return;
}
LOG(INFO) << "Receive check group call is_joined timeout in " << group_call_id;
auto input_group_call_id = get_input_group_call_id(group_call_id).move_as_ok();
auto *group_call = get_group_call(input_group_call_id);
CHECK(group_call != nullptr && group_call->is_inited);
if (!group_call->is_joined || check_group_call_is_joined_timeout_.has_timeout(group_call_id.get())) {
return;
}
auto source = group_call->source;
auto promise =
PromiseCreator::lambda([actor_id = actor_id(this), input_group_call_id, source](Result<Unit> &&result) mutable {
if (result.is_error() && result.error().message() == "GROUP_CALL_JOIN_MISSING") {
send_closure(actor_id, &GroupCallManager::on_group_call_left, input_group_call_id, source, true);
result = Unit();
}
send_closure(actor_id, &GroupCallManager::finish_check_group_call_is_joined, input_group_call_id, source,
std::move(result));
});
td_->create_handler<CheckGroupCallQuery>(std::move(promise))->send(input_group_call_id, source);
}
void GroupCallManager::on_pending_send_speaking_action_timeout_callback(void *group_call_manager_ptr,
int64 group_call_id_int) {
if (G()->close_flag()) {
return;
}
auto group_call_manager = static_cast<GroupCallManager *>(group_call_manager_ptr);
send_closure_later(group_call_manager->actor_id(group_call_manager),
&GroupCallManager::on_send_speaking_action_timeout,
GroupCallId(narrow_cast<int32>(group_call_id_int)));
}
void GroupCallManager::on_send_speaking_action_timeout(GroupCallId group_call_id) {
if (G()->close_flag()) {
return;
}
LOG(INFO) << "Receive send_speaking_action timeout in " << group_call_id;
auto input_group_call_id = get_input_group_call_id(group_call_id).move_as_ok();
auto *group_call = get_group_call(input_group_call_id);
CHECK(group_call != nullptr && group_call->is_inited && group_call->dialog_id.is_valid());
if (!group_call->is_joined || !group_call->is_speaking) {
return;
}
on_user_speaking_in_group_call(group_call_id, td_->contacts_manager_->get_my_id(), G()->unix_time());
pending_send_speaking_action_timeout_.add_timeout_in(group_call_id.get(), 4.0);
td_->messages_manager_->send_dialog_action(group_call->dialog_id, MessageId(), DialogAction::get_speaking_action(),
Promise<Unit>());
}
void GroupCallManager::on_recent_speaker_update_timeout_callback(void *group_call_manager_ptr,
int64 group_call_id_int) {
if (G()->close_flag()) {
return;
}
auto group_call_manager = static_cast<GroupCallManager *>(group_call_manager_ptr);
send_closure_later(group_call_manager->actor_id(group_call_manager),
&GroupCallManager::on_recent_speaker_update_timeout,
GroupCallId(narrow_cast<int32>(group_call_id_int)));
}
void GroupCallManager::on_recent_speaker_update_timeout(GroupCallId group_call_id) {
if (G()->close_flag()) {
return;
}
LOG(INFO) << "Receive recent speaker update timeout in " << group_call_id;
auto input_group_call_id = get_input_group_call_id(group_call_id).move_as_ok();
get_recent_speakers(get_group_call(input_group_call_id),
false); // will update the list and send updateGroupCall if needed
}
void GroupCallManager::on_sync_participants_timeout_callback(void *group_call_manager_ptr, int64 group_call_id_int) {
if (G()->close_flag()) {
return;
}
auto group_call_manager = static_cast<GroupCallManager *>(group_call_manager_ptr);
send_closure_later(group_call_manager->actor_id(group_call_manager), &GroupCallManager::on_sync_participants_timeout,
GroupCallId(narrow_cast<int32>(group_call_id_int)));
}
void GroupCallManager::on_sync_participants_timeout(GroupCallId group_call_id) {
if (G()->close_flag()) {
return;
}
LOG(INFO) << "Receive sync participants timeout in " << group_call_id;
auto input_group_call_id = get_input_group_call_id(group_call_id).move_as_ok();
sync_group_call_participants(input_group_call_id);
}
GroupCallId GroupCallManager::get_group_call_id(InputGroupCallId input_group_call_id, DialogId dialog_id) {
if (td_->auth_manager_->is_bot() || !input_group_call_id.is_valid()) {
return GroupCallId();
}
return add_group_call(input_group_call_id, dialog_id)->group_call_id;
}
Result<InputGroupCallId> GroupCallManager::get_input_group_call_id(GroupCallId group_call_id) {
if (!group_call_id.is_valid()) {
return Status::Error(400, "Invalid group call identifier specified");
}
if (group_call_id.get() <= 0 || group_call_id.get() > max_group_call_id_.get()) {
return Status::Error(400, "Wrong group call identifier specified");
}
CHECK(static_cast<size_t>(group_call_id.get()) <= input_group_call_ids_.size());
auto input_group_call_id = input_group_call_ids_[group_call_id.get() - 1];
LOG(DEBUG) << "Found " << input_group_call_id;
return input_group_call_id;
}
GroupCallId GroupCallManager::get_next_group_call_id(InputGroupCallId input_group_call_id) {
max_group_call_id_ = GroupCallId(max_group_call_id_.get() + 1);
input_group_call_ids_.push_back(input_group_call_id);
return max_group_call_id_;
}
GroupCallManager::GroupCall *GroupCallManager::add_group_call(InputGroupCallId input_group_call_id,
DialogId dialog_id) {
CHECK(!td_->auth_manager_->is_bot());
auto &group_call = group_calls_[input_group_call_id];
if (group_call == nullptr) {
group_call = make_unique<GroupCall>();
group_call->group_call_id = get_next_group_call_id(input_group_call_id);
LOG(INFO) << "Add " << input_group_call_id << " from " << dialog_id << " as " << group_call->group_call_id;
}
if (!group_call->dialog_id.is_valid()) {
group_call->dialog_id = dialog_id;
}
return group_call.get();
}
const GroupCallManager::GroupCall *GroupCallManager::get_group_call(InputGroupCallId input_group_call_id) const {
auto it = group_calls_.find(input_group_call_id);
if (it == group_calls_.end()) {
return nullptr;
} else {
return it->second.get();
}
}
GroupCallManager::GroupCall *GroupCallManager::get_group_call(InputGroupCallId input_group_call_id) {
auto it = group_calls_.find(input_group_call_id);
if (it == group_calls_.end()) {
return nullptr;
} else {
return it->second.get();
}
}
Status GroupCallManager::can_manage_group_calls(DialogId dialog_id) const {
switch (dialog_id.get_type()) {
case DialogType::Chat: {
auto chat_id = dialog_id.get_chat_id();
if (!td_->contacts_manager_->get_chat_permissions(chat_id).can_manage_calls()) {
return Status::Error(400, "Not enough rights in the chat");
}
break;
}
case DialogType::Channel: {
auto channel_id = dialog_id.get_channel_id();
switch (td_->contacts_manager_->get_channel_type(channel_id)) {
case ChannelType::Unknown:
return Status::Error(400, "Chat info not found");
case ChannelType::Megagroup:
// OK
break;
case ChannelType::Broadcast:
return Status::Error(400, "Chat is not a group");
default:
UNREACHABLE();
break;
}
if (!td_->contacts_manager_->get_channel_permissions(channel_id).can_manage_calls()) {
return Status::Error(400, "Not enough rights in the chat");
}
break;
}
case DialogType::User:
case DialogType::SecretChat:
return Status::Error(400, "Chat can't have a voice chat");
case DialogType::None:
// OK
break;
default:
UNREACHABLE();
}
return Status::OK();
}
bool GroupCallManager::can_manage_group_call(InputGroupCallId input_group_call_id) const {
auto group_call = get_group_call(input_group_call_id);
if (group_call == nullptr) {
return false;
}
return can_manage_group_calls(group_call->dialog_id).is_ok();
}
void GroupCallManager::create_voice_chat(DialogId dialog_id, Promise<GroupCallId> &&promise) {
if (!dialog_id.is_valid()) {
return promise.set_error(Status::Error(400, "Invalid chat identifier specified"));
}
if (!td_->messages_manager_->have_dialog_force(dialog_id)) {
return promise.set_error(Status::Error(400, "Chat not found"));
}
if (!td_->messages_manager_->have_input_peer(dialog_id, AccessRights::Read)) {
return promise.set_error(Status::Error(400, "Can't access chat"));
}
TRY_STATUS_PROMISE(promise, can_manage_group_calls(dialog_id));
auto query_promise = PromiseCreator::lambda(
[actor_id = actor_id(this), dialog_id, promise = std::move(promise)](Result<InputGroupCallId> result) mutable {
if (result.is_error()) {
promise.set_error(result.move_as_error());
} else {
send_closure(actor_id, &GroupCallManager::on_voice_chat_created, dialog_id, result.move_as_ok(),
std::move(promise));
}
});
td_->create_handler<CreateGroupCallQuery>(std::move(query_promise))->send(dialog_id);
}
void GroupCallManager::on_voice_chat_created(DialogId dialog_id, InputGroupCallId input_group_call_id,
Promise<GroupCallId> &&promise) {
if (G()->close_flag()) {
return promise.set_error(Status::Error(500, "Request aborted"));
}
if (!input_group_call_id.is_valid()) {
return promise.set_error(Status::Error(500, "Receive invalid group call identifier"));
}
td_->messages_manager_->on_update_dialog_group_call(dialog_id, true, true, "on_voice_chat_created");
td_->messages_manager_->on_update_dialog_group_call_id(dialog_id, input_group_call_id);
promise.set_value(get_group_call_id(input_group_call_id, dialog_id));
}
void GroupCallManager::get_group_call(GroupCallId group_call_id,
Promise<td_api::object_ptr<td_api::groupCall>> &&promise) {
TRY_RESULT_PROMISE(promise, input_group_call_id, get_input_group_call_id(group_call_id));
auto group_call = get_group_call(input_group_call_id);
if (group_call != nullptr && group_call->is_inited) {
return promise.set_value(get_group_call_object(group_call, get_recent_speakers(group_call, false)));
}
reload_group_call(input_group_call_id, std::move(promise));
}
void GroupCallManager::on_update_group_call_rights(InputGroupCallId input_group_call_id) {
auto group_call = get_group_call(input_group_call_id);
if (need_group_call_participants(input_group_call_id)) {
CHECK(group_call != nullptr && group_call->is_inited);
try_load_group_call_administrators(input_group_call_id, group_call->dialog_id);
auto participants_it = group_call_participants_.find(input_group_call_id);
if (participants_it != group_call_participants_.end()) {
CHECK(participants_it->second != nullptr);
if (participants_it->second->are_administrators_loaded) {
update_group_call_participants_can_be_muted(
input_group_call_id, can_manage_group_calls(group_call->dialog_id).is_ok(), participants_it->second.get());
}
}
}
if (group_call != nullptr && group_call->is_inited) {
bool can_be_managed = group_call->is_active && can_manage_group_calls(group_call->dialog_id).is_ok();
if (can_be_managed != group_call->can_be_managed) {
group_call->can_be_managed = can_be_managed;
send_update_group_call(group_call, "on_update_group_call_rights");
}
}
reload_group_call(input_group_call_id, Auto());
}
void GroupCallManager::reload_group_call(InputGroupCallId input_group_call_id,
Promise<td_api::object_ptr<td_api::groupCall>> &&promise) {
auto &queries = load_group_call_queries_[input_group_call_id];
queries.push_back(std::move(promise));
if (queries.size() == 1) {
auto query_promise = PromiseCreator::lambda([actor_id = actor_id(this), input_group_call_id](
Result<tl_object_ptr<telegram_api::phone_groupCall>> &&result) {
send_closure(actor_id, &GroupCallManager::finish_get_group_call, input_group_call_id, std::move(result));
});
td_->create_handler<GetGroupCallQuery>(std::move(query_promise))->send(input_group_call_id);
}
}
void GroupCallManager::finish_get_group_call(InputGroupCallId input_group_call_id,
Result<tl_object_ptr<telegram_api::phone_groupCall>> &&result) {
auto it = load_group_call_queries_.find(input_group_call_id);
CHECK(it != load_group_call_queries_.end());
CHECK(!it->second.empty());
auto promises = std::move(it->second);
load_group_call_queries_.erase(it);
if (result.is_ok()) {
td_->contacts_manager_->on_get_users(std::move(result.ok_ref()->users_), "finish_get_group_call");
if (update_group_call(result.ok()->call_, DialogId()) != input_group_call_id) {
LOG(ERROR) << "Expected " << input_group_call_id << ", but received " << to_string(result.ok());
result = Status::Error(500, "Receive another group call");
}
}
if (result.is_error()) {
for (auto &promise : promises) {
promise.set_error(result.error().clone());
}
return;
}
auto call = result.move_as_ok();
process_group_call_participants(input_group_call_id, std::move(call->participants_), true, false);
if (need_group_call_participants(input_group_call_id)) {
auto participants_it = group_call_participants_.find(input_group_call_id);
if (participants_it != group_call_participants_.end()) {
CHECK(participants_it->second != nullptr);
if (participants_it->second->next_offset.empty()) {
participants_it->second->next_offset = std::move(call->participants_next_offset_);
}
}
}
auto group_call = get_group_call(input_group_call_id);
CHECK(group_call != nullptr && group_call->is_inited);
for (auto &promise : promises) {
if (promise) {
promise.set_value(get_group_call_object(group_call, get_recent_speakers(group_call, false)));
}
}
}
void GroupCallManager::finish_check_group_call_is_joined(InputGroupCallId input_group_call_id, int32 source,
Result<Unit> &&result) {
LOG(INFO) << "Finish check group call is_joined for " << input_group_call_id;
auto *group_call = get_group_call(input_group_call_id);
CHECK(group_call != nullptr && group_call->is_inited);
if (!group_call->is_joined || check_group_call_is_joined_timeout_.has_timeout(group_call->group_call_id.get()) ||
group_call->source != source) {
return;
}
int32 next_timeout = result.is_ok() ? CHECK_GROUP_CALL_IS_JOINED_TIMEOUT : 1;
check_group_call_is_joined_timeout_.set_timeout_in(group_call->group_call_id.get(), next_timeout);
}
bool GroupCallManager::need_group_call_participants(InputGroupCallId input_group_call_id) const {
auto *group_call = get_group_call(input_group_call_id);
if (group_call == nullptr || !group_call->is_inited || !group_call->is_active) {
return false;
}
if (group_call->is_joined) {
return true;
}
if (pending_join_requests_.count(input_group_call_id) != 0) {
return true;
}
return false;
}
void GroupCallManager::on_get_group_call_participants(
InputGroupCallId input_group_call_id, tl_object_ptr<telegram_api::phone_groupParticipants> &&participants,
bool is_load, const string &offset) {
LOG(INFO) << "Receive group call participants: " << to_string(participants);
CHECK(participants != nullptr);
td_->contacts_manager_->on_get_users(std::move(participants->users_), "on_get_group_call_participants");
if (!need_group_call_participants(input_group_call_id)) {
return;
}
bool is_sync = is_load && offset.empty();
if (is_sync) {
auto group_call = get_group_call(input_group_call_id);
CHECK(group_call != nullptr && group_call->is_inited);
is_sync = group_call->syncing_participants;
if (is_sync) {
group_call->syncing_participants = false;
if (group_call->version >= participants->version_) {
LOG(INFO) << "Ignore result of outdated participants sync with version " << participants->version_ << " in "
<< input_group_call_id << " from " << group_call->dialog_id << ", because current version is "
<< group_call->version;
return;
}
LOG(INFO) << "Finish syncing participants in " << input_group_call_id << " from " << group_call->dialog_id
<< " with version " << participants->version_;
group_call->version = participants->version_;
}
}
auto is_empty = participants->participants_.empty();
process_group_call_participants(input_group_call_id, std::move(participants->participants_), is_load, is_sync);
if (!is_sync) {
on_receive_group_call_version(input_group_call_id, participants->version_);
}
if (is_load) {
auto participants_it = group_call_participants_.find(input_group_call_id);
if (participants_it != group_call_participants_.end()) {
CHECK(participants_it->second != nullptr);
if (participants_it->second->next_offset == offset) {
participants_it->second->next_offset = std::move(participants->next_offset_);
}
}
if (is_empty || is_sync) {
bool need_update = false;
auto group_call = get_group_call(input_group_call_id);
CHECK(group_call != nullptr && group_call->is_inited);
if (is_empty && !group_call->loaded_all_participants) {
group_call->loaded_all_participants = true;
need_update = true;
}
auto real_participant_count = participants->count_;
if (is_empty) {
auto known_participant_count = participants_it != group_call_participants_.end()
? static_cast<int32>(participants_it->second->participants.size())
: 0;
if (real_participant_count != known_participant_count) {
LOG(ERROR) << "Receive participant count " << real_participant_count << ", but know "
<< known_participant_count << " participants in " << input_group_call_id << " from "
<< group_call->dialog_id;
real_participant_count = known_participant_count;
}
}
if (real_participant_count != group_call->participant_count) {
if (!is_sync) {
LOG(ERROR) << "Have participant count " << group_call->participant_count << " instead of "
<< real_participant_count << " in " << input_group_call_id << " from " << group_call->dialog_id;
}
group_call->participant_count = real_participant_count;
need_update = true;
update_group_call_dialog(group_call, "on_get_group_call_participants");
}
if (!is_empty && is_sync && group_call->loaded_all_participants && group_call->participant_count > 50) {
group_call->loaded_all_participants = false;
need_update = true;
}
if (process_pending_group_call_participant_updates(input_group_call_id)) {
need_update = false;
}
if (need_update) {
send_update_group_call(group_call, "on_get_group_call_participants");
}
}
}
}
GroupCallManager::GroupCallParticipants *GroupCallManager::add_group_call_participants(
InputGroupCallId input_group_call_id) {
CHECK(need_group_call_participants(input_group_call_id));
auto &participants = group_call_participants_[input_group_call_id];
if (participants == nullptr) {
participants = make_unique<GroupCallParticipants>();
}
return participants.get();
}
void GroupCallManager::on_update_group_call_participants(
InputGroupCallId input_group_call_id, vector<tl_object_ptr<telegram_api::groupCallParticipant>> &&participants,
int32 version) {
if (!need_group_call_participants(input_group_call_id)) {
int32 diff = 0;
bool need_update = false;
auto group_call = get_group_call(input_group_call_id);
for (auto &group_call_participant : participants) {
GroupCallParticipant participant(group_call_participant);
if (participant.user_id == td_->contacts_manager_->get_my_id() && group_call != nullptr &&
group_call->is_inited && group_call->is_joined &&
(participant.joined_date == 0) == (participant.source == group_call->source)) {
on_group_call_left_impl(group_call, participant.joined_date == 0);
need_update = true;
}
if (participant.joined_date == 0) {
diff--;
remove_recent_group_call_speaker(input_group_call_id, participant.user_id);
} else {
if (participant.is_just_joined) {
diff++;
}
on_participant_speaking_in_group_call(input_group_call_id, participant);
}
}
if (group_call != nullptr && group_call->is_inited && group_call->is_active && group_call->version == -1) {
if (diff != 0 && (group_call->participant_count != 0 || diff > 0)) {
group_call->participant_count += diff;
if (group_call->participant_count < 0) {
LOG(ERROR) << "Participant count became negative in " << input_group_call_id << " from "
<< group_call->dialog_id << " after applying " << to_string(participants);
group_call->participant_count = 0;
}
update_group_call_dialog(group_call, "on_update_group_call_participants");
need_update = true;
}
}
if (need_update) {
send_update_group_call(group_call, "on_update_group_call_participants");
}
LOG(INFO) << "Ignore updateGroupCallParticipants in " << input_group_call_id;
return;
}
if (version <= 0) {
LOG(ERROR) << "Ignore updateGroupCallParticipants with invalid version " << version << " in "
<< input_group_call_id;
return;
}
if (participants.empty()) {
LOG(INFO) << "Ignore empty updateGroupCallParticipants with version " << version << " in " << input_group_call_id;
return;
}
auto *group_call_participants = add_group_call_participants(input_group_call_id);
auto &pending_mute_updates = group_call_participants->pending_mute_updates_[version];
vector<tl_object_ptr<telegram_api::groupCallParticipant>> version_updates;
for (auto &participant : participants) {
if (GroupCallParticipant::is_versioned_update(participant)) {
version_updates.push_back(std::move(participant));
} else {
pending_mute_updates.push_back(std::move(participant));
}
}
if (!version_updates.empty()) {
auto &pending_version_updates = group_call_participants->pending_version_updates_[version];
if (version_updates.size() <= pending_version_updates.size()) {
LOG(INFO) << "Receive duplicate updateGroupCallParticipants with version " << version << " in "
<< input_group_call_id;
return;
}
pending_version_updates = std::move(version_updates);
}
process_pending_group_call_participant_updates(input_group_call_id);
}
bool GroupCallManager::process_pending_group_call_participant_updates(InputGroupCallId input_group_call_id) {
if (!need_group_call_participants(input_group_call_id)) {
return false;
}
auto participants_it = group_call_participants_.find(input_group_call_id);
if (participants_it == group_call_participants_.end()) {
return false;
}
auto group_call = get_group_call(input_group_call_id);
CHECK(group_call != nullptr && group_call->is_inited);
if (group_call->version == -1 || !group_call->is_active) {
return false;
}
int32 diff = 0;
bool is_left = false;
bool need_rejoin = true;
auto &pending_version_updates = participants_it->second->pending_version_updates_;
while (!pending_version_updates.empty()) {
auto it = pending_version_updates.begin();
auto version = it->first;
auto &participants = it->second;
if (version <= group_call->version) {
for (auto &group_call_participant : participants) {
GroupCallParticipant participant(group_call_participant);
on_participant_speaking_in_group_call(input_group_call_id, participant);
if (participant.user_id == td_->contacts_manager_->get_my_id() && version == group_call->version &&
participant.is_just_joined) {
process_group_call_participant(input_group_call_id, std::move(participant));
}
}
LOG(INFO) << "Ignore already applied updateGroupCallParticipants with version " << version << " in "
<< input_group_call_id << " from " << group_call->dialog_id;
pending_version_updates.erase(it);
continue;
}
if (version == group_call->version + 1) {
group_call->version = version;
for (auto &participant : participants) {
GroupCallParticipant group_call_participant(participant);
if (group_call_participant.user_id == td_->contacts_manager_->get_my_id() && group_call->is_joined &&
(group_call_participant.joined_date == 0) == (group_call_participant.source == group_call->source)) {
is_left = true;
if (group_call_participant.joined_date != 0) {
need_rejoin = false;
}
}
diff += process_group_call_participant(input_group_call_id, std::move(group_call_participant));
}
pending_version_updates.erase(it);
} else if (!group_call->syncing_participants) {
// found a gap
LOG(INFO) << "Receive " << participants.size() << " group call participant updates with version " << version
<< ", but current version is " << group_call->version;
sync_participants_timeout_.add_timeout_in(group_call->group_call_id.get(), 1.0);
break;
}
}
auto &pending_mute_updates = participants_it->second->pending_mute_updates_;
while (!pending_mute_updates.empty()) {
auto it = pending_mute_updates.begin();
auto version = it->first;
if (version <= group_call->version) {
auto &participants = it->second;
for (auto &group_call_participant : participants) {
GroupCallParticipant participant(group_call_participant);
on_participant_speaking_in_group_call(input_group_call_id, participant);
int mute_diff = process_group_call_participant(input_group_call_id, std::move(participant));
CHECK(mute_diff == 0);
}
pending_mute_updates.erase(it);
continue;
}
on_receive_group_call_version(input_group_call_id, version);
break;
}
if (pending_version_updates.empty() && pending_mute_updates.empty()) {
sync_participants_timeout_.cancel_timeout(group_call->group_call_id.get());
}
bool need_update = false;
if (diff != 0 && (group_call->participant_count != 0 || diff > 0)) {
group_call->participant_count += diff;
if (group_call->participant_count < 0) {
LOG(ERROR) << "Participant count became negative in " << input_group_call_id << " from " << group_call->dialog_id;
group_call->participant_count = 0;
}
need_update = true;
update_group_call_dialog(group_call, "process_pending_group_call_participant_updates");
}
if (is_left && group_call->is_joined) {
on_group_call_left_impl(group_call, need_rejoin);
need_update = true;
}
if (need_update) {
send_update_group_call(group_call, "process_pending_group_call_participant_updates");
}
return need_update;
}
void GroupCallManager::sync_group_call_participants(InputGroupCallId input_group_call_id) {
if (!need_group_call_participants(input_group_call_id)) {
return;
}
auto group_call = get_group_call(input_group_call_id);
CHECK(group_call != nullptr && group_call->is_inited);
sync_participants_timeout_.cancel_timeout(group_call->group_call_id.get());
if (group_call->syncing_participants) {
return;
}
group_call->syncing_participants = true;
LOG(INFO) << "Force participants synchronization in " << input_group_call_id << " from " << group_call->dialog_id;
auto promise = PromiseCreator::lambda([actor_id = actor_id(this), input_group_call_id](Result<Unit> &&result) {
if (result.is_error()) {
send_closure(actor_id, &GroupCallManager::on_sync_group_call_participants_failed, input_group_call_id);
}
});
td_->create_handler<GetGroupCallParticipantsQuery>(std::move(promise))->send(input_group_call_id, string(), 100);
}
void GroupCallManager::on_sync_group_call_participants_failed(InputGroupCallId input_group_call_id) {
if (G()->close_flag() || !need_group_call_participants(input_group_call_id)) {
return;
}
auto group_call = get_group_call(input_group_call_id);
CHECK(group_call != nullptr && group_call->is_inited);
CHECK(group_call->syncing_participants);
group_call->syncing_participants = false;
sync_participants_timeout_.add_timeout_in(group_call->group_call_id.get(), 1.0);
}
void GroupCallManager::process_group_call_participants(
InputGroupCallId input_group_call_id, vector<tl_object_ptr<telegram_api::groupCallParticipant>> &&participants,
bool is_load, bool is_sync) {
if (!need_group_call_participants(input_group_call_id)) {
for (auto &participant : participants) {
GroupCallParticipant group_call_participant(participant);
if (!group_call_participant.is_valid()) {
LOG(ERROR) << "Receive invalid " << to_string(participant);
continue;
}
on_participant_speaking_in_group_call(input_group_call_id, group_call_participant);
}
return;
}
std::unordered_set<UserId, UserIdHash> old_participant_user_ids;
if (is_sync) {
auto participants_it = group_call_participants_.find(input_group_call_id);
if (participants_it != group_call_participants_.end()) {
CHECK(participants_it->second != nullptr);
for (auto &participant : participants_it->second->participants) {
old_participant_user_ids.insert(participant.user_id);
}
}
}
int64 min_order = std::numeric_limits<int64>::max();
for (auto &participant : participants) {
GroupCallParticipant group_call_participant(participant);
if (!group_call_participant.is_valid()) {
LOG(ERROR) << "Receive invalid " << to_string(participant);
continue;
}
auto real_order = group_call_participant.get_real_order();
if (real_order > min_order) {
LOG(ERROR) << "Receive call participant with order " << real_order << " after call participant with order "
<< min_order;
} else {
min_order = real_order;
}
if (is_sync) {
old_participant_user_ids.erase(group_call_participant.user_id);
}
process_group_call_participant(input_group_call_id, std::move(group_call_participant));
}
if (is_sync) {
auto participants_it = group_call_participants_.find(input_group_call_id);
if (participants_it != group_call_participants_.end()) {
CHECK(participants_it->second != nullptr);
auto &group_participants = participants_it->second->participants;
for (auto participant_it = group_participants.begin(); participant_it != group_participants.end();) {
auto &participant = *participant_it;
if (old_participant_user_ids.count(participant.user_id) == 0) {
CHECK(participant.order == 0 || participant.order >= min_order);
++participant_it;
continue;
}
// not synced user, needs to be deleted
if (participant.order != 0) {
CHECK(participant.order >= participants_it->second->min_order);
participant.order = 0;
send_update_group_call_participant(input_group_call_id, participant);
}
participant_it = group_participants.erase(participant_it);
}
if (participants_it->second->min_order < min_order) {
// if previously known more users, adjust min_order
participants_it->second->min_order = min_order;
}
}
}
if (is_load) {
auto participants_it = group_call_participants_.find(input_group_call_id);
if (participants_it != group_call_participants_.end()) {
CHECK(participants_it->second != nullptr);
auto old_min_order = participants_it->second->min_order;
if (old_min_order > min_order) {
participants_it->second->min_order = min_order;
for (auto &participant : participants_it->second->participants) {
auto real_order = participant.get_real_order();
if (old_min_order > real_order && real_order >= min_order) {
CHECK(participant.order == 0);
participant.order = real_order;
send_update_group_call_participant(input_group_call_id, participant);
}
}
}
}
}
}
bool GroupCallManager::update_group_call_participant_can_be_muted(bool can_manage,
const GroupCallParticipants *participants,
GroupCallParticipant &participant) {
bool is_self = participant.user_id == td_->contacts_manager_->get_my_id();
bool is_admin = td::contains(participants->administrator_user_ids, participant.user_id);
return participant.update_can_be_muted(can_manage, is_self, is_admin);
}
void GroupCallManager::update_group_call_participants_can_be_muted(InputGroupCallId input_group_call_id,
bool can_manage,
GroupCallParticipants *participants) {
CHECK(participants != nullptr);
LOG(INFO) << "Update group call participants can_be_muted in " << input_group_call_id;
for (auto &participant : participants->participants) {
if (update_group_call_participant_can_be_muted(can_manage, participants, participant) && participant.order != 0) {
send_update_group_call_participant(input_group_call_id, participant);
}
}
}
int GroupCallManager::process_group_call_participant(InputGroupCallId input_group_call_id,
GroupCallParticipant &&participant) {
if (!participant.is_valid()) {
LOG(ERROR) << "Receive invalid " << participant;
return 0;
}
if (!need_group_call_participants(input_group_call_id)) {
return 0;
}
LOG(INFO) << "Process " << participant << " in " << input_group_call_id;
if (participant.user_id == td_->contacts_manager_->get_my_id()) {
auto *group_call = get_group_call(input_group_call_id);
CHECK(group_call != nullptr && group_call->is_inited);
if (group_call->is_joined && group_call->is_active && participant.source == group_call->source &&
participant.is_muted && group_call->can_self_unmute != participant.can_self_unmute) {
group_call->can_self_unmute = participant.can_self_unmute;
send_update_group_call(group_call, "process_group_call_participant");
}
}
bool can_manage = can_manage_group_call(input_group_call_id);
auto *participants = add_group_call_participants(input_group_call_id);
for (size_t i = 0; i < participants->participants.size(); i++) {
auto &old_participant = participants->participants[i];
if (old_participant.user_id == participant.user_id) {
if (participant.joined_date == 0) {
LOG(INFO) << "Remove " << old_participant;
if (old_participant.order != 0) {
send_update_group_call_participant(input_group_call_id, participant);
}
remove_recent_group_call_speaker(input_group_call_id, participant.user_id);
participants->participants.erase(participants->participants.begin() + i);
return -1;
}
if (participant.joined_date < old_participant.joined_date) {
LOG(ERROR) << "Join date of " << participant.user_id << " in " << input_group_call_id << " decreased from "
<< old_participant.joined_date << " to " << participant.joined_date;
participant.joined_date = old_participant.joined_date;
}
if (participant.active_date < old_participant.active_date) {
participant.active_date = old_participant.active_date;
}
participant.local_active_date = old_participant.local_active_date;
participant.is_speaking = old_participant.is_speaking;
auto real_order = participant.get_real_order();
if (real_order >= participants->min_order) {
participant.order = real_order;
}
participant.is_just_joined = false;
update_group_call_participant_can_be_muted(can_manage, participants, participant);
LOG(INFO) << "Edit " << old_participant << " to " << participant;
if (old_participant != participant && (old_participant.order != 0 || participant.order != 0)) {
send_update_group_call_participant(input_group_call_id, participant);
}
on_participant_speaking_in_group_call(input_group_call_id, participant);
old_participant = std::move(participant);
return 0;
}
}
if (participant.joined_date == 0) {
LOG(INFO) << "Remove unknown " << participant;
remove_recent_group_call_speaker(input_group_call_id, participant.user_id);
return -1;
}
int diff = participant.is_just_joined ? 1 : 0;
if (participant.is_just_joined) {
LOG(INFO) << "Add new " << participant;
} else {
LOG(INFO) << "Receive new " << participant;
}
auto real_order = participant.get_real_order();
if (real_order >= participants->min_order) {
participant.order = real_order;
}
participant.is_just_joined = false;
update_group_call_participant_can_be_muted(can_manage, participants, participant);
participants->participants.push_back(std::move(participant));
if (participants->participants.back().order != 0) {
send_update_group_call_participant(input_group_call_id, participants->participants.back());
}
on_participant_speaking_in_group_call(input_group_call_id, participants->participants.back());
return diff;
}
void GroupCallManager::join_group_call(GroupCallId group_call_id,
td_api::object_ptr<td_api::groupCallPayload> &&payload, int32 source,
bool is_muted,
Promise<td_api::object_ptr<td_api::groupCallJoinResponse>> &&promise) {
TRY_RESULT_PROMISE(promise, input_group_call_id, get_input_group_call_id(group_call_id));
auto *group_call = get_group_call(input_group_call_id);
CHECK(group_call != nullptr);
if (group_call->is_joined) {
CHECK(group_call->is_inited);
return promise.set_error(Status::Error(400, "Group call is already joined"));
}
if (group_call->is_inited && !group_call->is_active) {
return promise.set_error(Status::Error(400, "Group call is finished"));
}
if (group_call->need_rejoin) {
group_call->need_rejoin = false;
send_update_group_call(group_call, "join_group_call");
}
group_call->is_being_left = false;
if (pending_join_requests_.count(input_group_call_id)) {
auto it = pending_join_requests_.find(input_group_call_id);
CHECK(it != pending_join_requests_.end());
CHECK(it->second != nullptr);
if (!it->second->query_ref.empty()) {
cancel_query(it->second->query_ref);
}
it->second->promise.set_error(Status::Error(200, "Cancelled by another joinGroupCall request"));
pending_join_requests_.erase(it);
}
if (payload == nullptr) {
return promise.set_error(Status::Error(400, "Payload must be non-empty"));
}
if (!clean_input_string(payload->ufrag_)) {
return promise.set_error(Status::Error(400, "Payload ufrag must be encoded in UTF-8"));
}
if (!clean_input_string(payload->pwd_)) {
return promise.set_error(Status::Error(400, "Payload pwd must be encoded in UTF-8"));
}
for (auto &fingerprint : payload->fingerprints_) {
if (fingerprint == nullptr) {
return promise.set_error(Status::Error(400, "Payload fingerprint must be non-empty"));
}
if (!clean_input_string(fingerprint->hash_)) {
return promise.set_error(Status::Error(400, "Fingerprint hash must be encoded in UTF-8"));
}
if (!clean_input_string(fingerprint->setup_)) {
return promise.set_error(Status::Error(400, "Fingerprint setup must be encoded in UTF-8"));
}
if (!clean_input_string(fingerprint->fingerprint_)) {
return promise.set_error(Status::Error(400, "Fingerprint must be encoded in UTF-8"));
}
}
auto json_payload = json_encode<string>(json_object([&payload, source](auto &o) {
o("ufrag", payload->ufrag_);
o("pwd", payload->pwd_);
o("fingerprints", json_array(payload->fingerprints_,
[](const td_api::object_ptr<td_api::groupCallPayloadFingerprint> &fingerprint) {
return json_object([&fingerprint](auto &o) {
o("hash", fingerprint->hash_);
o("setup", fingerprint->setup_);
o("fingerprint", fingerprint->fingerprint_);
});
}));
o("ssrc", source);
}));
auto generation = ++join_group_request_generation_;
auto &request = pending_join_requests_[input_group_call_id];
request = make_unique<PendingJoinRequest>();
request->generation = generation;
request->source = source;
request->promise = std::move(promise);
auto query_promise =
PromiseCreator::lambda([actor_id = actor_id(this), generation, input_group_call_id](Result<Unit> &&result) {
CHECK(result.is_error());
send_closure(actor_id, &GroupCallManager::finish_join_group_call, input_group_call_id, generation,
result.move_as_error());
});
request->query_ref = td_->create_handler<JoinGroupCallQuery>(std::move(query_promise))
->send(input_group_call_id, json_payload, is_muted, generation);
try_load_group_call_administrators(input_group_call_id, group_call->dialog_id);
}
void GroupCallManager::try_load_group_call_administrators(InputGroupCallId input_group_call_id, DialogId dialog_id) {
if (!dialog_id.is_valid() || !need_group_call_participants(input_group_call_id) ||
can_manage_group_calls(dialog_id).is_error()) {
LOG(INFO) << "Don't need to load administrators in " << input_group_call_id << " from " << dialog_id;
return;
}
unique_ptr<int64> random_id_ptr = td::make_unique<int64>();
auto random_id_raw = random_id_ptr.get();
auto promise = PromiseCreator::lambda(
[actor_id = actor_id(this), input_group_call_id, random_id = std::move(random_id_ptr)](Result<Unit> &&result) {
send_closure(actor_id, &GroupCallManager::finish_load_group_call_administrators, input_group_call_id,
*random_id, std::move(result));
});
td_->messages_manager_->search_dialog_participants(
dialog_id, string(), 100, DialogParticipantsFilter(DialogParticipantsFilter::Type::Administrators),
*random_id_raw, true, true, std::move(promise));
}
void GroupCallManager::finish_load_group_call_administrators(InputGroupCallId input_group_call_id, int64 random_id,
Result<Unit> &&result) {
if (G()->close_flag()) {
return;
}
auto *group_call = get_group_call(input_group_call_id);
CHECK(group_call != nullptr);
if (!group_call->dialog_id.is_valid() || !can_manage_group_calls(group_call->dialog_id).is_ok()) {
return;
}
vector<UserId> administrator_user_ids;
if (result.is_ok()) {
result = Status::Error(500, "Failed to receive result");
unique_ptr<bool> ignore_result = make_unique<bool>();
auto ignore_result_ptr = ignore_result.get();
auto promise = PromiseCreator::lambda([&result, ignore_result = std::move(ignore_result)](Result<Unit> new_result) {
if (!*ignore_result) {
result = std::move(new_result);
}
});
auto participants = td_->messages_manager_->search_dialog_participants(
group_call->dialog_id, string(), 100, DialogParticipantsFilter(DialogParticipantsFilter::Type::Administrators),
random_id, true, true, std::move(promise));
for (auto &administrator : participants.second) {
if (administrator.status.can_manage_calls() && administrator.user_id != td_->contacts_manager_->get_my_id()) {
administrator_user_ids.push_back(administrator.user_id);
}
}
*ignore_result_ptr = true;
}
if (result.is_error()) {
LOG(WARNING) << "Failed to get administrators of " << input_group_call_id << ": " << result.error();
return;
}
if (!need_group_call_participants(input_group_call_id)) {
return;
}
auto *group_call_participants = add_group_call_participants(input_group_call_id);
if (group_call_participants->administrator_user_ids == administrator_user_ids) {
return;
}
LOG(INFO) << "Set administrators of " << input_group_call_id << " to " << administrator_user_ids;
group_call_participants->are_administrators_loaded = true;
group_call_participants->administrator_user_ids = std::move(administrator_user_ids);
update_group_call_participants_can_be_muted(input_group_call_id, true, group_call_participants);
}
void GroupCallManager::process_join_group_call_response(InputGroupCallId input_group_call_id, uint64 generation,
tl_object_ptr<telegram_api::Updates> &&updates,
Promise<Unit> &&promise) {
auto it = pending_join_requests_.find(input_group_call_id);
if (it == pending_join_requests_.end() || it->second->generation != generation) {
LOG(INFO) << "Ignore JoinGroupCallQuery response with " << input_group_call_id << " and generation " << generation;
return;
}
LOG(INFO) << "Receive result for JoinGroupCallQuery: " << to_string(updates);
td_->updates_manager_->on_get_updates(std::move(updates),
PromiseCreator::lambda([promise = std::move(promise)](Unit) mutable {
promise.set_error(Status::Error(500, "Wrong join response received"));
}));
}
Result<td_api::object_ptr<td_api::groupCallJoinResponse>> GroupCallManager::get_group_call_join_response_object(
string json_response) {
auto r_value = json_decode(json_response);
if (r_value.is_error()) {
return Status::Error("Can't parse JSON object");
}
auto value = r_value.move_as_ok();
if (value.type() != JsonValue::Type::Object) {
return Status::Error("Expected an Object");
}
auto &value_object = value.get_object();
TRY_RESULT(transport, get_json_object_field(value_object, "transport", JsonValue::Type::Object, false));
CHECK(transport.type() == JsonValue::Type::Object);
auto &transport_object = transport.get_object();
TRY_RESULT(candidates, get_json_object_field(transport_object, "candidates", JsonValue::Type::Array, false));
TRY_RESULT(fingerprints, get_json_object_field(transport_object, "fingerprints", JsonValue::Type::Array, false));
TRY_RESULT(ufrag, get_json_object_string_field(transport_object, "ufrag", false));
TRY_RESULT(pwd, get_json_object_string_field(transport_object, "pwd", false));
// skip "xmlns", "rtcp-mux"
vector<td_api::object_ptr<td_api::groupCallPayloadFingerprint>> fingerprints_object;
for (auto &fingerprint : fingerprints.get_array()) {
if (fingerprint.type() != JsonValue::Type::Object) {
return Status::Error("Expected JSON object as fingerprint");
}
auto &fingerprint_object = fingerprint.get_object();
TRY_RESULT(hash, get_json_object_string_field(fingerprint_object, "hash", false));
TRY_RESULT(setup, get_json_object_string_field(fingerprint_object, "setup", false));
TRY_RESULT(fingerprint_value, get_json_object_string_field(fingerprint_object, "fingerprint", false));
fingerprints_object.push_back(
td_api::make_object<td_api::groupCallPayloadFingerprint>(hash, setup, fingerprint_value));
}
vector<td_api::object_ptr<td_api::groupCallJoinResponseCandidate>> candidates_object;
for (auto &candidate : candidates.get_array()) {
if (candidate.type() != JsonValue::Type::Object) {
return Status::Error("Expected JSON object as candidate");
}
auto &candidate_object = candidate.get_object();
TRY_RESULT(port, get_json_object_string_field(candidate_object, "port", false));
TRY_RESULT(protocol, get_json_object_string_field(candidate_object, "protocol", false));
TRY_RESULT(network, get_json_object_string_field(candidate_object, "network", false));
TRY_RESULT(generation, get_json_object_string_field(candidate_object, "generation", false));
TRY_RESULT(id, get_json_object_string_field(candidate_object, "id", false));
TRY_RESULT(component, get_json_object_string_field(candidate_object, "component", false));
TRY_RESULT(foundation, get_json_object_string_field(candidate_object, "foundation", false));
TRY_RESULT(priority, get_json_object_string_field(candidate_object, "priority", false));
TRY_RESULT(ip, get_json_object_string_field(candidate_object, "ip", false));
TRY_RESULT(type, get_json_object_string_field(candidate_object, "type", false));
TRY_RESULT(tcp_type, get_json_object_string_field(candidate_object, "tcptype"));
TRY_RESULT(rel_addr, get_json_object_string_field(candidate_object, "rel-addr"));
TRY_RESULT(rel_port, get_json_object_string_field(candidate_object, "rel-port"));
candidates_object.push_back(td_api::make_object<td_api::groupCallJoinResponseCandidate>(
port, protocol, network, generation, id, component, foundation, priority, ip, type, tcp_type, rel_addr,
rel_port));
}
auto payload = td_api::make_object<td_api::groupCallPayload>(ufrag, pwd, std::move(fingerprints_object));
return td_api::make_object<td_api::groupCallJoinResponse>(std::move(payload), std::move(candidates_object));
}
bool GroupCallManager::on_join_group_call_response(InputGroupCallId input_group_call_id, string json_response) {
auto it = pending_join_requests_.find(input_group_call_id);
if (it == pending_join_requests_.end()) {
return false;
}
CHECK(it->second != nullptr);
auto result = get_group_call_join_response_object(std::move(json_response));
bool need_update = false;
if (result.is_error()) {
LOG(ERROR) << "Failed to parse join response JSON object: " << result.error().message();
it->second->promise.set_error(Status::Error(500, "Receive invalid join group call response payload"));
} else {
auto group_call = get_group_call(input_group_call_id);
CHECK(group_call != nullptr);
group_call->is_joined = true;
group_call->need_rejoin = false;
group_call->is_being_left = false;
group_call->joined_date = G()->unix_time();
group_call->source = it->second->source;
it->second->promise.set_value(result.move_as_ok());
check_group_call_is_joined_timeout_.set_timeout_in(group_call->group_call_id.get(),
CHECK_GROUP_CALL_IS_JOINED_TIMEOUT);
need_update = true;
}
pending_join_requests_.erase(it);
try_clear_group_call_participants(input_group_call_id);
return need_update;
}
void GroupCallManager::finish_join_group_call(InputGroupCallId input_group_call_id, uint64 generation, Status error) {
CHECK(error.is_error());
auto it = pending_join_requests_.find(input_group_call_id);
if (it == pending_join_requests_.end() || (generation != 0 && it->second->generation != generation)) {
return;
}
it->second->promise.set_error(std::move(error));
pending_join_requests_.erase(it);
try_clear_group_call_participants(input_group_call_id);
}
void GroupCallManager::toggle_group_call_mute_new_participants(GroupCallId group_call_id, bool mute_new_participants,
Promise<Unit> &&promise) {
TRY_RESULT_PROMISE(promise, input_group_call_id, get_input_group_call_id(group_call_id));
int32 flags = telegram_api::phone_toggleGroupCallSettings::JOIN_MUTED_MASK;
td_->create_handler<ToggleGroupCallSettingsQuery>(std::move(promise))
->send(flags, input_group_call_id, mute_new_participants);
}
void GroupCallManager::invite_group_call_participants(GroupCallId group_call_id, vector<UserId> &&user_ids,
Promise<Unit> &&promise) {
TRY_RESULT_PROMISE(promise, input_group_call_id, get_input_group_call_id(group_call_id));
vector<tl_object_ptr<telegram_api::InputUser>> input_users;
auto my_user_id = td_->contacts_manager_->get_my_id();
for (auto user_id : user_ids) {
auto input_user = td_->contacts_manager_->get_input_user(user_id);
if (input_user == nullptr) {
return promise.set_error(Status::Error(400, "User not found"));
}
if (user_id == my_user_id) {
// can't invite self
continue;
}
input_users.push_back(std::move(input_user));
}
if (input_users.empty()) {
return promise.set_value(Unit());
}
td_->create_handler<InviteToGroupCallQuery>(std::move(promise))->send(input_group_call_id, std::move(input_users));
}
void GroupCallManager::set_group_call_participant_is_speaking(GroupCallId group_call_id, int32 source, bool is_speaking,
Promise<Unit> &&promise, int32 date) {
if (G()->close_flag()) {
return promise.set_error(Status::Error(500, "Request aborted"));
}
TRY_RESULT_PROMISE(promise, input_group_call_id, get_input_group_call_id(group_call_id));
auto *group_call = get_group_call(input_group_call_id);
if (group_call == nullptr || !group_call->is_inited || !group_call->is_active || !group_call->is_joined) {
return promise.set_value(Unit());
}
if (source == 0) {
source = group_call->source;
}
bool recursive = false;
if (date == 0) {
date = G()->unix_time();
} else {
recursive = true;
}
if (source != group_call->source && !recursive && is_speaking &&
check_group_call_is_joined_timeout_.has_timeout(group_call_id.get())) {
check_group_call_is_joined_timeout_.set_timeout_in(group_call_id.get(), CHECK_GROUP_CALL_IS_JOINED_TIMEOUT);
}
UserId user_id = set_group_call_participant_is_speaking_by_source(input_group_call_id, source, is_speaking, date);
if (!user_id.is_valid()) {
if (!recursive) {
auto query_promise = PromiseCreator::lambda([actor_id = actor_id(this), group_call_id, source, is_speaking,
promise = std::move(promise), date](Result<Unit> &&result) mutable {
if (G()->close_flag()) {
return promise.set_error(Status::Error(500, "Request aborted"));
}
if (result.is_error()) {
promise.set_value(Unit());
} else {
send_closure(actor_id, &GroupCallManager::set_group_call_participant_is_speaking, group_call_id, source,
is_speaking, std::move(promise), date);
}
});
td_->create_handler<GetGroupCallParticipantQuery>(std::move(query_promise))
->send(input_group_call_id, {}, {source});
} else {
LOG(INFO) << "Failed to find participant with source " << source << " in " << group_call_id << " from "
<< group_call->dialog_id;
promise.set_value(Unit());
}
return;
}
if (is_speaking) {
on_user_speaking_in_group_call(group_call_id, user_id, date, recursive);
}
if (group_call->source == source && group_call->dialog_id.is_valid() && group_call->is_speaking != is_speaking) {
group_call->is_speaking = is_speaking;
if (is_speaking) {
pending_send_speaking_action_timeout_.add_timeout_in(group_call_id.get(), 0.0);
} else {
pending_send_speaking_action_timeout_.cancel_timeout(group_call_id.get());
}
}
promise.set_value(Unit());
}
void GroupCallManager::toggle_group_call_participant_is_muted(GroupCallId group_call_id, UserId user_id, bool is_muted,
Promise<Unit> &&promise) {
TRY_RESULT_PROMISE(promise, input_group_call_id, get_input_group_call_id(group_call_id));
auto *group_call = get_group_call(input_group_call_id);
if (group_call == nullptr || !group_call->is_inited || !group_call->is_active || !group_call->is_joined) {
return promise.set_error(Status::Error(400, "GROUP_CALL_JOIN_MISSING"));
}
if (!td_->contacts_manager_->have_input_user(user_id)) {
return promise.set_error(Status::Error(400, "Have no access to the user"));
}
if (user_id != td_->contacts_manager_->get_my_id()) {
TRY_STATUS_PROMISE(promise, can_manage_group_calls(group_call->dialog_id));
} else {
if (!is_muted && !group_call->can_self_unmute) {
return promise.set_error(Status::Error(400, "Can't unmute self"));
}
}
td_->create_handler<EditGroupCallMemberQuery>(std::move(promise))->send(input_group_call_id, user_id, is_muted);
}
void GroupCallManager::load_group_call_participants(GroupCallId group_call_id, int32 limit, Promise<Unit> &&promise) {
if (limit <= 0) {
return promise.set_error(Status::Error(400, "Parameter limit must be positive"));
}
TRY_RESULT_PROMISE(promise, input_group_call_id, get_input_group_call_id(group_call_id));
if (!need_group_call_participants(input_group_call_id)) {
return promise.set_error(Status::Error(400, "Can't load group call participants"));
}
auto *group_call = get_group_call(input_group_call_id);
CHECK(group_call != nullptr && group_call->is_inited);
if (group_call->loaded_all_participants) {
return promise.set_value(Unit());
}
string next_offset;
auto participants_it = group_call_participants_.find(input_group_call_id);
if (participants_it != group_call_participants_.end()) {
CHECK(participants_it->second != nullptr);
next_offset = participants_it->second->next_offset;
}
td_->create_handler<GetGroupCallParticipantsQuery>(std::move(promise))
->send(input_group_call_id, std::move(next_offset), limit);
}
void GroupCallManager::leave_group_call(GroupCallId group_call_id, Promise<Unit> &&promise) {
TRY_RESULT_PROMISE(promise, input_group_call_id, get_input_group_call_id(group_call_id));
auto *group_call = get_group_call(input_group_call_id);
if (group_call == nullptr || !group_call->is_inited || !group_call->is_active || !group_call->is_joined) {
return promise.set_error(Status::Error(400, "GROUP_CALL_JOIN_MISSING"));
}
auto source = group_call->source;
group_call->is_being_left = true;
auto query_promise = PromiseCreator::lambda([actor_id = actor_id(this), input_group_call_id, source,
promise = std::move(promise)](Result<Unit> &&result) mutable {
if (result.is_ok()) {
// just in case
send_closure(actor_id, &GroupCallManager::on_group_call_left, input_group_call_id, source, false);
}
promise.set_result(std::move(result));
});
td_->create_handler<LeaveGroupCallQuery>(std::move(query_promise))->send(input_group_call_id, source);
}
void GroupCallManager::on_group_call_left(InputGroupCallId input_group_call_id, int32 source, bool need_rejoin) {
auto *group_call = get_group_call(input_group_call_id);
CHECK(group_call != nullptr && group_call->is_inited);
if (group_call->is_joined && group_call->source == source) {
on_group_call_left_impl(group_call, need_rejoin);
send_update_group_call(group_call, "on_group_call_left");
}
}
void GroupCallManager::on_group_call_left_impl(GroupCall *group_call, bool need_rejoin) {
CHECK(group_call != nullptr && group_call->is_inited && group_call->is_joined);
group_call->is_joined = false;
group_call->need_rejoin = need_rejoin && !group_call->is_being_left;
group_call->is_being_left = false;
group_call->is_speaking = false;
group_call->can_self_unmute = false;
group_call->can_be_managed = false;
group_call->joined_date = 0;
group_call->source = 0;
group_call->loaded_all_participants = false;
group_call->version = -1;
check_group_call_is_joined_timeout_.cancel_timeout(group_call->group_call_id.get());
try_clear_group_call_participants(get_input_group_call_id(group_call->group_call_id).ok());
}
void GroupCallManager::discard_group_call(GroupCallId group_call_id, Promise<Unit> &&promise) {
TRY_RESULT_PROMISE(promise, input_group_call_id, get_input_group_call_id(group_call_id));
td_->create_handler<DiscardGroupCallQuery>(std::move(promise))->send(input_group_call_id);
}
void GroupCallManager::on_update_group_call(tl_object_ptr<telegram_api::GroupCall> group_call_ptr, DialogId dialog_id) {
if (td_->auth_manager_->is_bot()) {
LOG(ERROR) << "Receive " << to_string(group_call_ptr);
return;
}
if (dialog_id != DialogId() && !dialog_id.is_valid()) {
LOG(ERROR) << "Receive " << to_string(group_call_ptr) << " in invalid " << dialog_id;
dialog_id = DialogId();
}
auto input_group_call_id = update_group_call(group_call_ptr, dialog_id);
if (input_group_call_id.is_valid()) {
LOG(INFO) << "Update " << input_group_call_id << " from " << dialog_id;
} else {
LOG(ERROR) << "Receive invalid " << to_string(group_call_ptr);
}
}
void GroupCallManager::try_clear_group_call_participants(InputGroupCallId input_group_call_id) {
auto participants_it = group_call_participants_.find(input_group_call_id);
if (participants_it == group_call_participants_.end()) {
return;
}
if (need_group_call_participants(input_group_call_id)) {
return;
}
auto participants = std::move(participants_it->second);
CHECK(participants != nullptr);
group_call_participants_.erase(participants_it);
auto group_call = get_group_call(input_group_call_id);
CHECK(group_call != nullptr && group_call->is_inited);
LOG(INFO) << "Clear participants in " << input_group_call_id << " from " << group_call->dialog_id;
if (group_call->loaded_all_participants) {
group_call->loaded_all_participants = false;
send_update_group_call(group_call, "try_clear_group_call_participants");
}
group_call->version = -1;
for (auto &participant : participants->participants) {
if (participant.order != 0) {
CHECK(participant.order >= participants->min_order);
participant.order = 0;
send_update_group_call_participant(input_group_call_id, participant);
}
}
}
InputGroupCallId GroupCallManager::update_group_call(const tl_object_ptr<telegram_api::GroupCall> &group_call_ptr,
DialogId dialog_id) {
CHECK(group_call_ptr != nullptr);
InputGroupCallId input_group_call_id;
GroupCall call;
call.is_inited = true;
string join_params;
switch (group_call_ptr->get_id()) {
case telegram_api::groupCall::ID: {
auto group_call = static_cast<const telegram_api::groupCall *>(group_call_ptr.get());
input_group_call_id = InputGroupCallId(group_call->id_, group_call->access_hash_);
call.is_active = true;
call.mute_new_participants = group_call->join_muted_;
call.allowed_change_mute_new_participants = group_call->can_change_join_muted_;
call.participant_count = group_call->participants_count_;
call.version = group_call->version_;
if (group_call->params_ != nullptr) {
join_params = std::move(group_call->params_->data_);
}
break;
}
case telegram_api::groupCallDiscarded::ID: {
auto group_call = static_cast<const telegram_api::groupCallDiscarded *>(group_call_ptr.get());
input_group_call_id = InputGroupCallId(group_call->id_, group_call->access_hash_);
call.duration = group_call->duration_;
finish_join_group_call(input_group_call_id, 0, Status::Error(400, "Group call ended"));
break;
}
default:
UNREACHABLE();
}
if (!input_group_call_id.is_valid() || call.participant_count < 0) {
return {};
}
bool need_update = false;
auto *group_call = add_group_call(input_group_call_id, dialog_id);
call.group_call_id = group_call->group_call_id;
call.dialog_id = dialog_id.is_valid() ? dialog_id : group_call->dialog_id;
call.can_be_managed = call.is_active && can_manage_group_calls(call.dialog_id).is_ok();
call.can_self_unmute = (call.is_active && !call.mute_new_participants) || call.can_be_managed;
if (!group_call->dialog_id.is_valid()) {
group_call->dialog_id = dialog_id;
}
LOG(INFO) << "Update " << call.group_call_id << " with " << group_call->participant_count
<< " participants and version " << group_call->version;
if (!group_call->is_inited) {
call.is_joined = group_call->is_joined;
call.need_rejoin = group_call->need_rejoin;
call.is_being_left = group_call->is_being_left;
call.is_speaking = group_call->is_speaking;
call.can_self_unmute = group_call->can_self_unmute;
call.syncing_participants = group_call->syncing_participants;
call.loaded_all_participants = group_call->loaded_all_participants;
call.source = group_call->source;
*group_call = std::move(call);
if (need_group_call_participants(input_group_call_id)) {
// init version
group_call->version = call.version;
if (process_pending_group_call_participant_updates(input_group_call_id)) {
need_update = false;
}
try_load_group_call_administrators(input_group_call_id, group_call->dialog_id);
} else {
group_call->version = -1;
}
need_update = true;
} else {
if (!group_call->is_active) {
// never update ended calls
} else if (!call.is_active) {
// always update to an ended call, droping also is_joined and is_speaking flags
*group_call = std::move(call);
need_update = true;
} else {
auto mute_flags_changed =
call.mute_new_participants != group_call->mute_new_participants ||
call.allowed_change_mute_new_participants != group_call->allowed_change_mute_new_participants;
if (mute_flags_changed && call.version >= group_call->version) {
group_call->mute_new_participants = call.mute_new_participants;
group_call->allowed_change_mute_new_participants = call.allowed_change_mute_new_participants;
need_update = true;
}
if (call.can_be_managed != group_call->can_be_managed) {
group_call->can_be_managed = call.can_be_managed;
need_update = true;
}
if (call.version > group_call->version) {
if (group_call->version != -1) {
// if we know group call version, then update participants only by corresponding updates
on_receive_group_call_version(input_group_call_id, call.version);
} else {
if (call.participant_count != group_call->participant_count) {
LOG(INFO) << "Set " << call.group_call_id << " participant count to " << call.participant_count;
group_call->participant_count = call.participant_count;
need_update = true;
}
if (need_group_call_participants(input_group_call_id) && !join_params.empty()) {
LOG(INFO) << "Init " << call.group_call_id << " version to " << call.version;
if (group_call->can_self_unmute != call.can_self_unmute) {
group_call->can_self_unmute = call.can_self_unmute;
need_update = true;
}
group_call->version = call.version;
if (process_pending_group_call_participant_updates(input_group_call_id)) {
need_update = false;
}
}
}
}
}
}
update_group_call_dialog(group_call, "update_group_call");
if (!group_call->is_active && group_call_recent_speakers_.erase(group_call->group_call_id) != 0) {
need_update = true;
}
if (!join_params.empty()) {
need_update |= on_join_group_call_response(input_group_call_id, std::move(join_params));
}
if (need_update) {
send_update_group_call(group_call, "update_group_call");
}
try_clear_group_call_participants(input_group_call_id);
return input_group_call_id;
}
void GroupCallManager::on_receive_group_call_version(InputGroupCallId input_group_call_id, int32 version) {
if (!need_group_call_participants(input_group_call_id)) {
return;
}
auto *group_call = get_group_call(input_group_call_id);
CHECK(group_call != nullptr && group_call->is_inited);
if (group_call->version == -1) {
return;
}
if (version <= group_call->version) {
return;
}
if (group_call->syncing_participants) {
return;
}
// found a gap
LOG(INFO) << "Receive version " << version << " for group call " << input_group_call_id;
auto *group_call_participants = add_group_call_participants(input_group_call_id);
group_call_participants->pending_version_updates_[version]; // reserve place for updates
sync_participants_timeout_.add_timeout_in(group_call->group_call_id.get(), 1.0);
}
void GroupCallManager::on_participant_speaking_in_group_call(InputGroupCallId input_group_call_id,
const GroupCallParticipant &participant) {
if (participant.active_date < G()->unix_time() - RECENT_SPEAKER_TIMEOUT) {
return;
}
auto *group_call = get_group_call(input_group_call_id);
if (group_call == nullptr) {
return;
}
on_user_speaking_in_group_call(group_call->group_call_id, participant.user_id, participant.active_date, true);
}
void GroupCallManager::on_user_speaking_in_group_call(GroupCallId group_call_id, UserId user_id, int32 date,
bool recursive) {
if (G()->close_flag()) {
return;
}
if (date < G()->unix_time() - RECENT_SPEAKER_TIMEOUT) {
return;
}
auto input_group_call_id = get_input_group_call_id(group_call_id).move_as_ok();
auto *group_call = get_group_call(input_group_call_id);
if (group_call != nullptr && group_call->is_inited && !group_call->is_active) {
return;
}
if (!td_->contacts_manager_->have_user_force(user_id)) {
if (recursive) {
LOG(ERROR) << "Failed to find speaking " << user_id << " from " << input_group_call_id;
} else {
auto query_promise = PromiseCreator::lambda([actor_id = actor_id(this), group_call_id, user_id,
date](Result<Unit> &&result) {
if (!G()->close_flag() && result.is_ok()) {
send_closure(actor_id, &GroupCallManager::on_user_speaking_in_group_call, group_call_id, user_id, date, true);
}
});
td_->create_handler<GetGroupCallParticipantQuery>(std::move(query_promise))
->send(input_group_call_id, {user_id.get()}, {});
}
return;
}
LOG(INFO) << "Add " << user_id << " as recent speaker at " << date << " in " << input_group_call_id;
auto &recent_speakers = group_call_recent_speakers_[group_call_id];
if (recent_speakers == nullptr) {
recent_speakers = make_unique<GroupCallRecentSpeakers>();
}
for (size_t i = 0; i < recent_speakers->users.size(); i++) {
if (recent_speakers->users[i].first == user_id) {
if (recent_speakers->users[i].second >= date) {
LOG(INFO) << "Ignore outdated speaking information";
return;
}
recent_speakers->users[i].second = date;
bool is_updated = false;
while (i > 0 && recent_speakers->users[i - 1].second < date) {
std::swap(recent_speakers->users[i - 1], recent_speakers->users[i]);
i--;
is_updated = true;
}
if (is_updated) {
on_group_call_recent_speakers_updated(group_call, recent_speakers.get());
} else {
LOG(INFO) << "Position of " << user_id << " in recent speakers list didn't change";
}
return;
}
}
for (size_t i = 0; i <= recent_speakers->users.size(); i++) {
if (i == recent_speakers->users.size() || recent_speakers->users[i].second <= date) {
recent_speakers->users.insert(recent_speakers->users.begin() + i, {user_id, date});
break;
}
}
static constexpr size_t MAX_RECENT_SPEAKERS = 3;
if (recent_speakers->users.size() > MAX_RECENT_SPEAKERS) {
recent_speakers->users.pop_back();
}
on_group_call_recent_speakers_updated(group_call, recent_speakers.get());
}
void GroupCallManager::remove_recent_group_call_speaker(InputGroupCallId input_group_call_id, UserId user_id) {
auto *group_call = get_group_call(input_group_call_id);
if (group_call == nullptr) {
return;
}
auto recent_speakers_it = group_call_recent_speakers_.find(group_call->group_call_id);
if (recent_speakers_it == group_call_recent_speakers_.end()) {
return;
}
auto &recent_speakers = recent_speakers_it->second;
CHECK(recent_speakers != nullptr);
for (size_t i = 0; i < recent_speakers->users.size(); i++) {
if (recent_speakers->users[i].first == user_id) {
LOG(INFO) << "Remove " << user_id << " from recent speakers in " << input_group_call_id << " from "
<< group_call->dialog_id;
recent_speakers->users.erase(recent_speakers->users.begin() + i);
on_group_call_recent_speakers_updated(group_call, recent_speakers.get());
return;
}
}
}
void GroupCallManager::on_group_call_recent_speakers_updated(const GroupCall *group_call,
GroupCallRecentSpeakers *recent_speakers) {
if (group_call == nullptr || !group_call->is_inited || recent_speakers->is_changed) {
LOG(INFO) << "Don't need to send update of recent speakers in " << group_call->group_call_id << " from "
<< group_call->dialog_id;
return;
}
recent_speakers->is_changed = true;
LOG(INFO) << "Schedule update of recent speakers in " << group_call->group_call_id << " from "
<< group_call->dialog_id;
const double MAX_RECENT_SPEAKER_UPDATE_DELAY = 0.5;
recent_speaker_update_timeout_.set_timeout_in(group_call->group_call_id.get(), MAX_RECENT_SPEAKER_UPDATE_DELAY);
}
UserId GroupCallManager::set_group_call_participant_is_speaking_by_source(InputGroupCallId input_group_call_id,
int32 source, bool is_speaking, int32 date) {
auto participants_it = group_call_participants_.find(input_group_call_id);
if (participants_it == group_call_participants_.end()) {
return UserId();
}
for (auto &participant : participants_it->second->participants) {
if (participant.source == source) {
if (participant.is_speaking != is_speaking) {
participant.is_speaking = is_speaking;
if (is_speaking) {
participant.local_active_date = max(participant.local_active_date, date);
}
auto real_order = participant.get_real_order();
if (real_order >= participants_it->second->min_order) {
participant.order = real_order;
}
if (participant.order != 0) {
send_update_group_call_participant(input_group_call_id, participant);
}
}
return participant.user_id;
}
}
return UserId();
}
void GroupCallManager::update_group_call_dialog(const GroupCall *group_call, const char *source) {
if (!group_call->dialog_id.is_valid()) {
return;
}
td_->messages_manager_->on_update_dialog_group_call(group_call->dialog_id, group_call->is_active,
group_call->participant_count == 0, source);
}
vector<td_api::object_ptr<td_api::groupCallRecentSpeaker>> GroupCallManager::get_recent_speakers(
const GroupCall *group_call, bool for_update) {
CHECK(group_call != nullptr && group_call->is_inited);
auto recent_speakers_it = group_call_recent_speakers_.find(group_call->group_call_id);
if (recent_speakers_it == group_call_recent_speakers_.end()) {
return Auto();
}
auto *recent_speakers = recent_speakers_it->second.get();
CHECK(recent_speakers != nullptr);
LOG(INFO) << "Found " << recent_speakers->users.size() << " recent speakers in " << group_call->group_call_id
<< " from " << group_call->dialog_id;
auto now = G()->unix_time();
while (!recent_speakers->users.empty() && recent_speakers->users.back().second < now - RECENT_SPEAKER_TIMEOUT) {
recent_speakers->users.pop_back();
}
vector<std::pair<UserId, bool>> recent_speaker_users;
for (auto &recent_speaker : recent_speakers->users) {
recent_speaker_users.emplace_back(recent_speaker.first, recent_speaker.second > now - 5);
}
if (recent_speakers->is_changed) {
recent_speakers->is_changed = false;
recent_speaker_update_timeout_.cancel_timeout(group_call->group_call_id.get());
}
if (!recent_speaker_users.empty()) {
auto next_timeout = recent_speakers->users.back().second + RECENT_SPEAKER_TIMEOUT - now + 1;
if (recent_speaker_users[0].second) { // if someone is speaking, recheck in 1 second
next_timeout = 1;
}
recent_speaker_update_timeout_.add_timeout_in(group_call->group_call_id.get(), next_timeout);
}
auto get_result = [recent_speaker_users] {
return transform(recent_speaker_users, [](const std::pair<UserId, bool> &recent_speaker_user) {
return td_api::make_object<td_api::groupCallRecentSpeaker>(recent_speaker_user.first.get(),
recent_speaker_user.second);
});
};
if (recent_speakers->last_sent_users != recent_speaker_users) {
recent_speakers->last_sent_users = std::move(recent_speaker_users);
if (!for_update) {
// the change must be received through update first
send_closure(G()->td(), &Td::send_update, get_update_group_call_object(group_call, get_result()));
}
}
return get_result();
}
tl_object_ptr<td_api::groupCall> GroupCallManager::get_group_call_object(
const GroupCall *group_call, vector<td_api::object_ptr<td_api::groupCallRecentSpeaker>> recent_speakers) const {
CHECK(group_call != nullptr);
CHECK(group_call->is_inited);
return td_api::make_object<td_api::groupCall>(
group_call->group_call_id.get(), group_call->is_active, group_call->is_joined, group_call->need_rejoin,
group_call->can_self_unmute, group_call->can_be_managed, group_call->participant_count,
group_call->loaded_all_participants, std::move(recent_speakers), group_call->mute_new_participants,
group_call->allowed_change_mute_new_participants, group_call->duration);
}
tl_object_ptr<td_api::updateGroupCall> GroupCallManager::get_update_group_call_object(
const GroupCall *group_call, vector<td_api::object_ptr<td_api::groupCallRecentSpeaker>> recent_speakers) const {
return td_api::make_object<td_api::updateGroupCall>(get_group_call_object(group_call, std::move(recent_speakers)));
}
tl_object_ptr<td_api::updateGroupCallParticipant> GroupCallManager::get_update_group_call_participant_object(
GroupCallId group_call_id, const GroupCallParticipant &participant) {
return td_api::make_object<td_api::updateGroupCallParticipant>(
group_call_id.get(), participant.get_group_call_participant_object(td_->contacts_manager_.get()));
}
void GroupCallManager::send_update_group_call(const GroupCall *group_call, const char *source) {
LOG(INFO) << "Send update about " << group_call->group_call_id << " from " << source;
send_closure(G()->td(), &Td::send_update,
get_update_group_call_object(group_call, get_recent_speakers(group_call, true)));
}
void GroupCallManager::send_update_group_call_participant(GroupCallId group_call_id,
const GroupCallParticipant &participant) {
send_closure(G()->td(), &Td::send_update, get_update_group_call_participant_object(group_call_id, participant));
}
void GroupCallManager::send_update_group_call_participant(InputGroupCallId input_group_call_id,
const GroupCallParticipant &participant) {
auto group_call = get_group_call(input_group_call_id);
CHECK(group_call != nullptr && group_call->is_inited);
send_update_group_call_participant(group_call->group_call_id, participant);
}
} // namespace td
| [
"levlam@telegram.org"
] | levlam@telegram.org |
e7822e453cf264b4f0279cdf7c0be39b870bafe6 | 161eb9f445a4221cfafbf51f045d50903c95118b | /程式設計1/hw1/1英里轉公里.cpp | 07d4c72e74dcb0b20d8560419830d699c0159e40 | [] | no_license | tsian077/c | d199f5ec4badb168d5ccf21d737aae7754178c5b | b802861effce61d0592a121b8f71ed25cf6497b6 | refs/heads/master | 2020-03-14T12:00:17.285707 | 2018-04-30T13:47:37 | 2018-04-30T13:47:37 | 97,822,966 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 173 | cpp | #include<iostream>
#include<iomanip>
using namespace std;
int main()
{
float km=0,ans=0;
cin>>km;
ans=km*1.6;
cout<<fixed<<setprecision(1)<<ans<<endl;
return 0;
}
| [
"tsian077@gmail.com"
] | tsian077@gmail.com |
96af02eb875908533353dc139853f38ecf043cec | 649033ccc2b0be2ad8c4527bed2d49dfbe010114 | /krCLR/Organization_lk.h | 552e8ed740a58c910b016444827d821ece0c9416 | [] | no_license | AleFinity/employment-Service | 1038458ebb05b3cba0cbb7eaf7c32a25bc57c053 | 52c88374944ce298ba37e4d5d0b9ecf90a2825d0 | refs/heads/master | 2020-05-29T14:50:53.568659 | 2019-05-29T10:59:51 | 2019-05-29T10:59:51 | 189,204,595 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 16,472 | h | #pragma once
#include "spiski_worker.h"
#include "spiski_organization.h"
#include "org_lk.h"
#include "msclr/marshal_cppstd.h"
#include <iostream>
#include <fstream>
#include <istream>
#include <ostream>
#include <string>
using namespace std;
namespace krCLR {
using namespace System;
using namespace System::ComponentModel;
using namespace System::Collections;
using namespace System::Windows::Forms;
using namespace System::Data;
using namespace System::Drawing;
/// <summary>
/// Сводка для Organization_lk
/// </summary>
public ref class Organization_lk : public System::Windows::Forms::Form
{
static System::String^ StdToSys(std::string StdStr)
{
return gcnew System::String(StdStr.c_str());
}
std::string SysToStr(String^ str)
{
return msclr::interop::marshal_as<std::string>(str);
}
public:
char *filename(System::String^ path_f)
{
std::string vsSt = "";
for (int j = 0; j < path_f->Length; j++)
vsSt += (char)path_f[j];
int it = vsSt.rfind("\\") + 1;
vsSt = vsSt.substr(it, vsSt.size() - it);
char * stt = new char[vsSt.size() + 1];
int it1 = vsSt.size(); int j;
for (j = 0; j<it1; j++)
stt[j] = vsSt[j];
stt[j] = '\0';
return stt;
}
public:
Organization_lk(void)
{
InitializeComponent();
}
org_lk *org_dan;
// Заполнение окна
Organization_lk(org_lk &my_dan_org)
{
org_dan = &my_dan_org;
InitializeComponent();
label1->Text = StdToSys(my_dan_org.get_name());
}
private: System::Windows::Forms::DataGridViewTextBoxColumn^ Column6;
private: System::Windows::Forms::DataGridViewTextBoxColumn^ Column1;
private: System::Windows::Forms::DataGridViewTextBoxColumn^ Column2;
private: System::Windows::Forms::DataGridViewTextBoxColumn^ Column3;
private: System::Windows::Forms::DataGridViewTextBoxColumn^ Column4;
private: System::Windows::Forms::DataGridViewTextBoxColumn^ Column5;
public:
protected:
/// <summary>
/// Освободить все используемые ресурсы.
/// </summary>
~Organization_lk()
{
if (components)
{
delete components;
}
}
private: System::Windows::Forms::Button^ button1;
protected:
private: System::Windows::Forms::Label^ label1;
private: System::Windows::Forms::DataGridView^ dataGridView1;
private: System::Windows::Forms::Label^ label2;
private: System::Windows::Forms::TextBox^ textBox1;
private: System::Windows::Forms::Button^ button2;
private: System::Windows::Forms::Label^ label3;
private: System::Windows::Forms::Button^ button4;
private: System::Windows::Forms::TextBox^ textBox2;
private: System::Windows::Forms::Label^ label4;
private:
/// <summary>
/// Обязательная переменная конструктора.
/// </summary>
System::ComponentModel::Container ^components;
#pragma region Windows Form Designer generated code
/// <summary>
/// Требуемый метод для поддержки конструктора — не изменяйте
/// содержимое этого метода с помощью редактора кода.
/// </summary>
void InitializeComponent(void)
{
this->button1 = (gcnew System::Windows::Forms::Button());
this->label1 = (gcnew System::Windows::Forms::Label());
this->dataGridView1 = (gcnew System::Windows::Forms::DataGridView());
this->Column6 = (gcnew System::Windows::Forms::DataGridViewTextBoxColumn());
this->Column1 = (gcnew System::Windows::Forms::DataGridViewTextBoxColumn());
this->Column2 = (gcnew System::Windows::Forms::DataGridViewTextBoxColumn());
this->Column3 = (gcnew System::Windows::Forms::DataGridViewTextBoxColumn());
this->Column4 = (gcnew System::Windows::Forms::DataGridViewTextBoxColumn());
this->Column5 = (gcnew System::Windows::Forms::DataGridViewTextBoxColumn());
this->label2 = (gcnew System::Windows::Forms::Label());
this->textBox1 = (gcnew System::Windows::Forms::TextBox());
this->button2 = (gcnew System::Windows::Forms::Button());
this->label3 = (gcnew System::Windows::Forms::Label());
this->button4 = (gcnew System::Windows::Forms::Button());
this->textBox2 = (gcnew System::Windows::Forms::TextBox());
this->label4 = (gcnew System::Windows::Forms::Label());
(cli::safe_cast<System::ComponentModel::ISupportInitialize^>(this->dataGridView1))->BeginInit();
this->SuspendLayout();
//
// button1
//
this->button1->BackColor = System::Drawing::Color::White;
this->button1->Location = System::Drawing::Point(743, 10);
this->button1->Name = L"button1";
this->button1->Size = System::Drawing::Size(75, 23);
this->button1->TabIndex = 0;
this->button1->Text = L"Выход";
this->button1->UseVisualStyleBackColor = false;
this->button1->Click += gcnew System::EventHandler(this, &Organization_lk::button1_Click);
//
// label1
//
this->label1->AutoSize = true;
this->label1->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 12, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
static_cast<System::Byte>(204)));
this->label1->Location = System::Drawing::Point(13, 13);
this->label1->Name = L"label1";
this->label1->Size = System::Drawing::Size(203, 20);
this->label1->TabIndex = 1;
this->label1->Text = L"Название организации\r\n";
//
// dataGridView1
//
this->dataGridView1->AllowUserToDeleteRows = false;
this->dataGridView1->AllowUserToResizeColumns = false;
this->dataGridView1->AllowUserToResizeRows = false;
this->dataGridView1->AutoSizeColumnsMode = System::Windows::Forms::DataGridViewAutoSizeColumnsMode::Fill;
this->dataGridView1->AutoSizeRowsMode = System::Windows::Forms::DataGridViewAutoSizeRowsMode::AllCells;
this->dataGridView1->ColumnHeadersHeightSizeMode = System::Windows::Forms::DataGridViewColumnHeadersHeightSizeMode::AutoSize;
this->dataGridView1->Columns->AddRange(gcnew cli::array< System::Windows::Forms::DataGridViewColumn^ >(6) {
this->Column6,
this->Column1, this->Column2, this->Column3, this->Column4, this->Column5
});
this->dataGridView1->Location = System::Drawing::Point(211, 58);
this->dataGridView1->Name = L"dataGridView1";
this->dataGridView1->RowHeadersWidth = 25;
this->dataGridView1->Size = System::Drawing::Size(607, 258);
this->dataGridView1->TabIndex = 2;
this->dataGridView1->RowHeaderMouseDoubleClick += gcnew System::Windows::Forms::DataGridViewCellMouseEventHandler(this, &Organization_lk::dataGridView1_RowHeaderMouseDoubleClick);
//
// Column6
//
this->Column6->HeaderText = L"Логин";
this->Column6->Name = L"Column6";
this->Column6->ReadOnly = true;
this->Column6->Visible = false;
//
// Column1
//
this->Column1->FillWeight = 166.6167F;
this->Column1->HeaderText = L"ФИО";
this->Column1->Name = L"Column1";
this->Column1->ReadOnly = true;
//
// Column2
//
this->Column2->FillWeight = 44.31962F;
this->Column2->HeaderText = L"Стаж";
this->Column2->Name = L"Column2";
this->Column2->ReadOnly = true;
//
// Column3
//
this->Column3->FillWeight = 58.99509F;
this->Column3->HeaderText = L"Шифр спец.";
this->Column3->Name = L"Column3";
this->Column3->ReadOnly = true;
//
// Column4
//
this->Column4->FillWeight = 166.6167F;
this->Column4->HeaderText = L"Название спец.";
this->Column4->Name = L"Column4";
this->Column4->ReadOnly = true;
//
// Column5
//
this->Column5->FillWeight = 63.45177F;
this->Column5->HeaderText = L"Заявка отпр.";
this->Column5->Name = L"Column5";
//
// label2
//
this->label2->AutoSize = true;
this->label2->Location = System::Drawing::Point(13, 58);
this->label2->Name = L"label2";
this->label2->Size = System::Drawing::Size(109, 16);
this->label2->TabIndex = 3;
this->label2->Text = L"Специальность";
//
// textBox1
//
this->textBox1->Location = System::Drawing::Point(16, 77);
this->textBox1->Name = L"textBox1";
this->textBox1->Size = System::Drawing::Size(186, 22);
this->textBox1->TabIndex = 4;
//
// button2
//
this->button2->BackColor = System::Drawing::Color::White;
this->button2->Location = System::Drawing::Point(16, 105);
this->button2->Name = L"button2";
this->button2->Size = System::Drawing::Size(75, 45);
this->button2->TabIndex = 5;
this->button2->Text = L"Вывести\r\nсписок";
this->button2->UseVisualStyleBackColor = false;
this->button2->Click += gcnew System::EventHandler(this, &Organization_lk::button2_Click);
//
// label3
//
this->label3->AutoSize = true;
this->label3->Location = System::Drawing::Point(208, 332);
this->label3->Name = L"label3";
this->label3->Size = System::Drawing::Size(0, 16);
this->label3->TabIndex = 6;
//
// button4
//
this->button4->BackColor = System::Drawing::Color::White;
this->button4->Location = System::Drawing::Point(17, 315);
this->button4->Name = L"button4";
this->button4->Size = System::Drawing::Size(185, 54);
this->button4->TabIndex = 8;
this->button4->Text = L"Отправить уведомление о переподготовке";
this->button4->UseVisualStyleBackColor = false;
this->button4->Click += gcnew System::EventHandler(this, &Organization_lk::button4_Click);
//
// textBox2
//
this->textBox2->Location = System::Drawing::Point(17, 287);
this->textBox2->Name = L"textBox2";
this->textBox2->Size = System::Drawing::Size(185, 22);
this->textBox2->TabIndex = 10;
//
// label4
//
this->label4->AutoSize = true;
this->label4->Location = System::Drawing::Point(14, 268);
this->label4->Name = L"label4";
this->label4->Size = System::Drawing::Size(118, 16);
this->label4->TabIndex = 9;
this->label4->Text = L"Переподготовка";
//
// Organization_lk
//
this->AutoScaleDimensions = System::Drawing::SizeF(8, 16);
this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
this->BackColor = System::Drawing::Color::FromArgb(static_cast<System::Int32>(static_cast<System::Byte>(224)), static_cast<System::Int32>(static_cast<System::Byte>(224)),
static_cast<System::Int32>(static_cast<System::Byte>(224)));
this->ClientSize = System::Drawing::Size(834, 381);
this->Controls->Add(this->textBox2);
this->Controls->Add(this->label4);
this->Controls->Add(this->button4);
this->Controls->Add(this->label3);
this->Controls->Add(this->button2);
this->Controls->Add(this->textBox1);
this->Controls->Add(this->label2);
this->Controls->Add(this->dataGridView1);
this->Controls->Add(this->label1);
this->Controls->Add(this->button1);
this->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point,
static_cast<System::Byte>(204)));
this->Margin = System::Windows::Forms::Padding(4);
this->Name = L"Organization_lk";
this->StartPosition = System::Windows::Forms::FormStartPosition::CenterScreen;
this->Text = L"Личный кабинет";
(cli::safe_cast<System::ComponentModel::ISupportInitialize^>(this->dataGridView1))->EndInit();
this->ResumeLayout(false);
this->PerformLayout();
}
#pragma endregion
// очистить таблицу
void clear()
{
int rowsCount = dataGridView1->Rows->Count;
for (int i = 0; i < rowsCount - 1; i++)
{
dataGridView1->Rows->Remove(dataGridView1->Rows[0]);
}
label3->Text = "";
}
// Поиск выбранной специальности
void poisk(ifstream &iw_txt)
{
string dan = SysToStr(textBox1->Text);
const char *sdan = dan.c_str();
int q1 = strlen(sdan) - 1;
worker person;
char per[1024], name[150];
int j = 0,k=0;
try
{
if (sdan[q1] == ' ')
{
throw 1;
}
iw_txt >> per;
while (iw_txt)
{
iw_txt >> person.login_w;
iw_txt >> per;
iw_txt.get();
iw_txt.getline(name, 150);
person.FIO = name;
iw_txt >> person.stag;
iw_txt >> person.shifr_spec;
iw_txt.get();
iw_txt.getline(name, 150);
person.nazvanie_spec = name;
iw_txt.get();
iw_txt.getline(per, 1024);
if (dan== person.nazvanie_spec|| dan == person.shifr_spec) {
dataGridView1->Rows->Add();
dataGridView1->Rows[j]->Cells[0]->Value = StdToSys(person.login_w);
dataGridView1->Rows[j]->Cells[1]->Value = StdToSys(person.FIO);
dataGridView1->Rows[j]->Cells[2]->Value = StdToSys(person.stag);
dataGridView1->Rows[j]->Cells[3]->Value = StdToSys(person.shifr_spec);
dataGridView1->Rows[j]->Cells[4]->Value = StdToSys(person.nazvanie_spec);
string str = SysToStr(label1->Text);
const char *str1 = str.c_str();
if (strstr(per, str1))
{
dataGridView1->Rows[j]->Cells[5]->Value = "отпр.";
}
k++;
j++;
}
}
if (k == 0)
label3->Text = "Работники с данной специальностью не найдены";
}
catch (int ch)
{
MessageBox::Show("Ошибка ввода данных");
}
}
// Вывод списка работников
private: System::Void button2_Click(System::Object^ sender, System::EventArgs^ e) {
clear();
spiski_worker professions;
char *stt = filename("Worker.txt");
ifstream iw_txt;
char per[150], org[1024],login[150];
int j = 0;
worker person;
//Отображение файла
if (SysToStr(textBox1->Text)!="")
{
iw_txt.open(stt, ios::in);
poisk(iw_txt);
iw_txt.close();
}
else{
//iw_txt.close();
iw_txt.open(stt, ios::in);
iw_txt >> per;
while (!iw_txt.eof())
{
iw_txt >> person.login_w;
iw_txt >> per;
iw_txt.get();
iw_txt.getline(per, 150);
person.FIO = per;
iw_txt >> person.stag;
iw_txt >> person.shifr_spec;
iw_txt.get();
iw_txt.getline(per, 150);
person.nazvanie_spec = per;
iw_txt.get();
iw_txt.getline(org, 1024);
dataGridView1->Rows->Add();
dataGridView1->Rows[j]->Cells[0]->Value = StdToSys(person.login_w);
dataGridView1->Rows[j]->Cells[1]->Value = StdToSys(person.FIO);
dataGridView1->Rows[j]->Cells[2]->Value = StdToSys(person.stag);
dataGridView1->Rows[j]->Cells[3]->Value = StdToSys(person.shifr_spec);
dataGridView1->Rows[j]->Cells[4]->Value = StdToSys(person.nazvanie_spec);
string str= SysToStr(label1->Text);
const char *str1 = str.c_str();
if (strstr(org, str1))
{
dataGridView1->Rows[j]->Cells[5]->Value = "отпр.";
}
j++;
}
iw_txt.close();
}
}
// Выход
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) {
this->Close();
}
// Переподготовка
private: System::Void button4_Click(System::Object^ sender, System::EventArgs^ e) {
string prof = SysToStr(textBox2->Text);
const char *sprof = prof.c_str();
int q1 = strlen(sprof) - 1;
try
{
if (sprof[q1] == ' ' )
{
throw 1;
}
if(textBox2->Text!="")
{
spiski_organization org;
string perepodgotovka=SysToStr(textBox2->Text);
org.set_perepodgotovka(perepodgotovka, org_dan->get_login_org());
MessageBox::Show("Уведомление отправлено");
textBox2->Text = "";
}
}
catch (int ch)
{
MessageBox::Show("Ошибка ввода данных");
}
}
private: System::Void dataGridView1_RowHeaderMouseDoubleClick(System::Object^ sender, System::Windows::Forms::DataGridViewCellMouseEventArgs^ e) {
spiski_worker persons;
int index = dataGridView1->CurrentCell->RowIndex;
string login = SysToStr(Convert::ToString(dataGridView1->Rows[index]->Cells[0]->Value));
persons.take_person(login, org_dan->get_name());
if(login != "")
dataGridView1->Rows[index]->Cells[5]->Value = "отпр.";
}
};
}
| [
"noreply@github.com"
] | AleFinity.noreply@github.com |
a22711e08e04706a5fe49225f3f87b3db4d760bb | 7290bab4b4b9e12d3ee1becf9eb2021270d3b9aa | /src/qt/addressbookpage.cpp | ba429d6f6834f57348a9f6c326cb9d333c0aaf97 | [
"MIT"
] | permissive | trinm1987/villagCoin | 52e83ee8fd3d5eed6555bf45ebae0d48dbe3e53d | 24c76a6c737a74ecea0b68412e86ca887c47e750 | refs/heads/master | 2020-04-13T22:37:00.066720 | 2018-12-30T06:40:10 | 2018-12-30T06:40:10 | 163,483,640 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,186 | cpp | // Copyright (c) 2011-2015 The Bitcoin Core developers
// Copyright (c) 2014-2017 The VillageCoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#if defined(HAVE_CONFIG_H)
#include "config/village-config.h"
#endif
#include "addressbookpage.h"
#include "ui_addressbookpage.h"
#include "addresstablemodel.h"
#include "bitcoingui.h"
#include "csvmodelwriter.h"
#include "editaddressdialog.h"
#include "guiutil.h"
#include "platformstyle.h"
#include <QIcon>
#include <QMenu>
#include <QMessageBox>
#include <QSortFilterProxyModel>
AddressBookPage::AddressBookPage(const PlatformStyle *platformStyle, Mode _mode, Tabs _tab, QWidget *parent) :
QDialog(parent),
ui(new Ui::AddressBookPage),
model(0),
mode(_mode),
tab(_tab)
{
QString theme = GUIUtil::getThemeName();
ui->setupUi(this);
if (!platformStyle->getImagesOnButtons()) {
ui->newAddress->setIcon(QIcon());
ui->copyAddress->setIcon(QIcon());
ui->deleteAddress->setIcon(QIcon());
ui->exportButton->setIcon(QIcon());
} else {
ui->newAddress->setIcon(QIcon(":/icons/" + theme + "/add"));
ui->copyAddress->setIcon(QIcon(":/icons/" + theme + "/editcopy"));
ui->deleteAddress->setIcon(QIcon(":/icons/" + theme + "/remove"));
ui->exportButton->setIcon(QIcon(":/icons/" + theme + "/export"));
}
switch(mode)
{
case ForSelection:
switch(tab)
{
case SendingTab: setWindowTitle(tr("Choose the address to send coins to")); break;
case ReceivingTab: setWindowTitle(tr("Choose the address to receive coins with")); break;
}
connect(ui->tableView, SIGNAL(doubleClicked(QModelIndex)), this, SLOT(accept()));
ui->tableView->setEditTriggers(QAbstractItemView::NoEditTriggers);
ui->tableView->setFocus();
ui->closeButton->setText(tr("C&hoose"));
ui->exportButton->hide();
break;
case ForEditing:
switch(tab)
{
case SendingTab: setWindowTitle(tr("Sending addresses")); break;
case ReceivingTab: setWindowTitle(tr("Receiving addresses")); break;
}
break;
}
switch(tab)
{
case SendingTab:
ui->labelExplanation->setText(tr("These are your VillageCoin addresses for sending payments. Always check the amount and the receiving address before sending coins."));
ui->deleteAddress->setVisible(true);
break;
case ReceivingTab:
ui->labelExplanation->setText(tr("These are your VillageCoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction."));
ui->deleteAddress->setVisible(false);
break;
}
// Context menu actions
QAction *copyAddressAction = new QAction(tr("&Copy Address"), this);
QAction *copyLabelAction = new QAction(tr("Copy &Label"), this);
QAction *editAction = new QAction(tr("&Edit"), this);
deleteAction = new QAction(ui->deleteAddress->text(), this);
// Build context menu
contextMenu = new QMenu(this);
contextMenu->addAction(copyAddressAction);
contextMenu->addAction(copyLabelAction);
contextMenu->addAction(editAction);
if(tab == SendingTab)
contextMenu->addAction(deleteAction);
contextMenu->addSeparator();
// Connect signals for context menu actions
connect(copyAddressAction, SIGNAL(triggered()), this, SLOT(on_copyAddress_clicked()));
connect(copyLabelAction, SIGNAL(triggered()), this, SLOT(onCopyLabelAction()));
connect(editAction, SIGNAL(triggered()), this, SLOT(onEditAction()));
connect(deleteAction, SIGNAL(triggered()), this, SLOT(on_deleteAddress_clicked()));
connect(ui->tableView, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(contextualMenu(QPoint)));
connect(ui->closeButton, SIGNAL(clicked()), this, SLOT(accept()));
}
AddressBookPage::~AddressBookPage()
{
delete ui;
}
void AddressBookPage::setModel(AddressTableModel *_model)
{
this->model = _model;
if(!_model)
return;
proxyModel = new QSortFilterProxyModel(this);
proxyModel->setSourceModel(_model);
proxyModel->setDynamicSortFilter(true);
proxyModel->setSortCaseSensitivity(Qt::CaseInsensitive);
proxyModel->setFilterCaseSensitivity(Qt::CaseInsensitive);
switch(tab)
{
case ReceivingTab:
// Receive filter
proxyModel->setFilterRole(AddressTableModel::TypeRole);
proxyModel->setFilterFixedString(AddressTableModel::Receive);
break;
case SendingTab:
// Send filter
proxyModel->setFilterRole(AddressTableModel::TypeRole);
proxyModel->setFilterFixedString(AddressTableModel::Send);
break;
}
ui->tableView->setModel(proxyModel);
ui->tableView->sortByColumn(0, Qt::AscendingOrder);
// Set column widths
#if QT_VERSION < 0x050000
ui->tableView->horizontalHeader()->setResizeMode(AddressTableModel::Label, QHeaderView::Stretch);
ui->tableView->horizontalHeader()->setResizeMode(AddressTableModel::Address, QHeaderView::ResizeToContents);
#else
ui->tableView->horizontalHeader()->setSectionResizeMode(AddressTableModel::Label, QHeaderView::Stretch);
ui->tableView->horizontalHeader()->setSectionResizeMode(AddressTableModel::Address, QHeaderView::ResizeToContents);
#endif
connect(ui->tableView->selectionModel(), SIGNAL(selectionChanged(QItemSelection,QItemSelection)),
this, SLOT(selectionChanged()));
// Select row for newly created address
connect(_model, SIGNAL(rowsInserted(QModelIndex,int,int)), this, SLOT(selectNewAddress(QModelIndex,int,int)));
selectionChanged();
}
void AddressBookPage::on_copyAddress_clicked()
{
GUIUtil::copyEntryData(ui->tableView, AddressTableModel::Address);
}
void AddressBookPage::onCopyLabelAction()
{
GUIUtil::copyEntryData(ui->tableView, AddressTableModel::Label);
}
void AddressBookPage::onEditAction()
{
if(!model)
return;
if(!ui->tableView->selectionModel())
return;
QModelIndexList indexes = ui->tableView->selectionModel()->selectedRows();
if(indexes.isEmpty())
return;
EditAddressDialog dlg(
tab == SendingTab ?
EditAddressDialog::EditSendingAddress :
EditAddressDialog::EditReceivingAddress, this);
dlg.setModel(model);
QModelIndex origIndex = proxyModel->mapToSource(indexes.at(0));
dlg.loadRow(origIndex.row());
dlg.exec();
}
void AddressBookPage::on_newAddress_clicked()
{
if(!model)
return;
EditAddressDialog dlg(
tab == SendingTab ?
EditAddressDialog::NewSendingAddress :
EditAddressDialog::NewReceivingAddress, this);
dlg.setModel(model);
if(dlg.exec())
{
newAddressToSelect = dlg.getAddress();
}
}
void AddressBookPage::on_deleteAddress_clicked()
{
QTableView *table = ui->tableView;
if(!table->selectionModel())
return;
QModelIndexList indexes = table->selectionModel()->selectedRows();
if(!indexes.isEmpty())
{
table->model()->removeRow(indexes.at(0).row());
}
}
void AddressBookPage::selectionChanged()
{
// Set button states based on selected tab and selection
QTableView *table = ui->tableView;
if(!table->selectionModel())
return;
if(table->selectionModel()->hasSelection())
{
switch(tab)
{
case SendingTab:
// In sending tab, allow deletion of selection
ui->deleteAddress->setEnabled(true);
ui->deleteAddress->setVisible(true);
deleteAction->setEnabled(true);
break;
case ReceivingTab:
// Deleting receiving addresses, however, is not allowed
ui->deleteAddress->setEnabled(false);
ui->deleteAddress->setVisible(false);
deleteAction->setEnabled(false);
break;
}
ui->copyAddress->setEnabled(true);
}
else
{
ui->deleteAddress->setEnabled(false);
ui->copyAddress->setEnabled(false);
}
}
void AddressBookPage::done(int retval)
{
QTableView *table = ui->tableView;
if(!table->selectionModel() || !table->model())
return;
// Figure out which address was selected, and return it
QModelIndexList indexes = table->selectionModel()->selectedRows(AddressTableModel::Address);
Q_FOREACH (const QModelIndex& index, indexes) {
QVariant address = table->model()->data(index);
returnValue = address.toString();
}
if(returnValue.isEmpty())
{
// If no address entry selected, return rejected
retval = Rejected;
}
QDialog::done(retval);
}
void AddressBookPage::on_exportButton_clicked()
{
// CSV is currently the only supported format
QString filename = GUIUtil::getSaveFileName(this,
tr("Export Address List"), QString(),
tr("Comma separated file (*.csv)"), NULL);
if (filename.isNull())
return;
CSVModelWriter writer(filename);
// name, column, role
writer.setModel(proxyModel);
writer.addColumn("Label", AddressTableModel::Label, Qt::EditRole);
writer.addColumn("Address", AddressTableModel::Address, Qt::EditRole);
if(!writer.write()) {
QMessageBox::critical(this, tr("Exporting Failed"),
tr("There was an error trying to save the address list to %1. Please try again.").arg(filename));
}
}
void AddressBookPage::contextualMenu(const QPoint &point)
{
QModelIndex index = ui->tableView->indexAt(point);
if(index.isValid())
{
contextMenu->exec(QCursor::pos());
}
}
void AddressBookPage::selectNewAddress(const QModelIndex &parent, int begin, int /*end*/)
{
QModelIndex idx = proxyModel->mapFromSource(model->index(begin, AddressTableModel::Address, parent));
if(idx.isValid() && (idx.data(Qt::EditRole).toString() == newAddressToSelect))
{
// Select row of newly created address, once
ui->tableView->setFocus();
ui->tableView->selectRow(idx.row());
newAddressToSelect.clear();
}
}
| [
"trinm1987@gmail.com"
] | trinm1987@gmail.com |
ca909f43bedbc2ff00e109d28006cf61a2a8da1f | 43bcaa965f1b566a964134ea5257955b2fdc2217 | /Day 8 Least Square Regression Line/sol.cpp | 629eb61abdb98b8a35735e419a38a59dabdd6cee | [] | no_license | ritiktyagi1/HackerRank_Statistics | cf19bb92d58612735b51ee82ada507b0160c7431 | e40fdfbbfb78bb094a2c27bd981ef472f2e8ff3b | refs/heads/master | 2022-11-13T21:14:09.724414 | 2020-06-29T18:40:33 | 2020-06-29T18:40:33 | 275,897,362 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,128 | cpp | #include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <iomanip>
using namespace std;
double reg(vector<int>x, vector<int>y)
{
// mean
long sum1 = 0;
for(int i=0; i<x.size(); i++)
sum1 += x[i];
double mean1 = (double)sum1/x.size();
long sum2 = 0;
for(int i=0; i<y.size(); i++)
sum2 += y[i];
double mean2 = (double)sum2/y.size();
// sqre sum
long xsq = 0;
for(int i=0; i<x.size(); i++)
xsq += (x[i]*x[i]);
// sum: xy
long xy = 0;
for(int i=0; i<x.size(); i++)
xy += (x[i]*y[i]);
// finding a & b;
double b = (5.0*xy - sum1*sum2)/(5.0*xsq - sum1*sum1);
double a = mean2 - b*mean1;
return a + b*80;
}
int main() {
/* Enter your code here. Read input from STDIN. Print output to STDOUT */
vector<int> x,y;
for(auto i=0; i<5; i++)
{
int p, q;
cin>>p;
x.push_back(p);
cin>>q;
y.push_back(q);
}
double res = reg(x, y);
cout<<fixed<<setprecision(3)<<res;
return 0;
} | [
"ritiktyagi110@gmail.com"
] | ritiktyagi110@gmail.com |
f573985bfff207190d72c7bcd0ab8a6187b6fe6e | 791c27e89ac6c51709bc996ab4a66742573a489d | /BOJ/16395.cpp | b20e2b26969bb28f518270d4cb12664b33d29575 | [] | no_license | JeongYeonUk/Problem | 6f031abed61c6229f3da86c20b188fc4481ed46d | 12ff42c72e0c91ab4a2927f17c874d791362530d | refs/heads/master | 2021-06-27T10:51:52.409707 | 2020-12-14T15:48:31 | 2020-12-14T15:48:31 | 188,515,199 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 454 | cpp | #pragma warning(disable:4996)
#include <cstdio>
#include <cstring>
using namespace std;
#define endl '\n'
typedef long long ll;
const int INF = 987654321;
int cache[31][31];
int bino(int n, int k)
{
if (n == k || k == 0)
return 1;
int& ret = cache[n][k];
if (ret > 0)
return ret;
return ret = bino(n - 1, k - 1) + bino(n - 1, k);
}
int main()
{
int n, k; scanf("%d %d", &n, &k);
printf("%d\n", bino(n - 1, k - 1));
return 0;
}
| [
"dusdnrl1@naver.com"
] | dusdnrl1@naver.com |
9a6ac1115d49caf8fd4a75e5f421f4802b855863 | d71406fc94d8e3156ccf5c7fe99f3657b9f44959 | /07_マスター版(1月23日〆)/1月17日(金)結合/lightorbit.cpp | a93a4e2f47642781ad9737e61c7db9f5bd398d93 | [] | no_license | HodakaNiwa/TeamC-Graduate-work | 1b56c536a6f7279afb5455952c3e9615f5b27be8 | 356d640ca266cfb5a86e1f300a30fb2cb42c5704 | refs/heads/master | 2022-03-31T05:10:23.139534 | 2020-01-28T00:31:19 | 2020-01-28T00:31:19 | 213,297,622 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 6,525 | cpp | //*****************************************************************************
//
// 光の軌跡の処理[lightorbit.cpp]
// Author:Hodaka Niwa
//
//*****************************************************************************
#include "lightorbit.h"
#include "manager.h"
#include "library.h"
#include "effect3D.h"
#include "character.h"
//*****************************************************************************
// マクロ定義
//*****************************************************************************
#define LIGHTORBIT_MAX_ACCEL (13.0f) // 位置の加速値の最大値
#define LIGHTORBIT_MAX_ACCELTIME (120) // 最大の速さになるまでの時間
#define LIGHTORBIT_DEATH_LENGTH (10.0f) // 消す範囲
#define LIGHTORBIT_MAX_HEIGHT (50.0f) // 高さ
#define LIGHTORBIT_EFFECT_SPAWN (1) // エフェクトを出す間隔
#define LIGHTORBIT_EFFECT_WIDTH (23.0f) // エフェクトの幅
#define LIGHTORBIT_EFFECT_HEIGHT (23.0f) // エフェクトの高さ
#define LIGHTORBIT_EFFECT_LIFE (90) // エフェクトの寿命
#define LIGHTORBIT_EFFECT_CUTALPHA (0.08f) // エフェクトの透明度を削る量
#define LIGHTORBIT_EFFECT_CUTLENGTH (0.7f) // エフェクトの大きさを削る量
#define LIGHTORBIT_EFFECT_PRIORITY (7) // エフェクトの処理優先順位
//*****************************************************************************
// 静的メンバ変数宣言
//*****************************************************************************
//=============================================================================
// コンストラクタ
//=============================================================================
CLightOrbit::CLightOrbit(int nPriority, OBJTYPE objType) : CScene(nPriority, objType){}
//=============================================================================
// デストラクタ
//=============================================================================
CLightOrbit::~CLightOrbit(){}
//=============================================================================
// 生成処理
//=============================================================================
CLightOrbit *CLightOrbit::Create(D3DXVECTOR3 pos, D3DXVECTOR3 *pDestPos, int nDestPlayerIdx, int nPriority)
{
// メモリの確保
CLightOrbit *pLightOrbit = NULL;
pLightOrbit = new CLightOrbit(nPriority);
if (pLightOrbit == NULL) { return NULL; }
// 変数の初期化
pLightOrbit->ClearVariable();
// 各種値の代入
pLightOrbit->SetPos(pos); // ポリゴンの座標
pLightOrbit->SetDestPos(pDestPos); // 目的の座標
pLightOrbit->SetDestPlayerIdx(nDestPlayerIdx); // 目的のプレイヤー番号
// 初期化処理
if (FAILED(pLightOrbit->Init()))
{
pLightOrbit->Uninit();
return NULL;
}
return pLightOrbit;
}
//=============================================================================
// 初期化処理
//=============================================================================
HRESULT CLightOrbit::Init(void)
{
return S_OK;
}
//=============================================================================
// 終了処理
//=============================================================================
void CLightOrbit::Uninit(void)
{
// リリース処理
CScene::Release();
}
//=============================================================================
// 更新処理
//=============================================================================
void CLightOrbit::Update(void)
{
// カウンター加算
m_nCounter++;
// 移動量計算処理
bool bDeath = false;
bDeath = CalcMove();
// 位置を移動させる
Movement();
// エフェクト(3D)を生成する
CreateEffect3D();
// 死亡判定
if (bDeath == true)
{
Uninit();
}
}
//=============================================================================
// 移動量を計算する処理
//=============================================================================
bool CLightOrbit::CalcMove(void)
{
bool bDeath = false;
// 角度を出す
float fAngle = CFunctionLib::CalcAngleToDest(m_Pos.x, m_Pos.z, m_pDestPos->x, m_pDestPos->z);
// 目的地に移動させる
m_Move.x = sinf(fAngle) * m_fAccel;
m_Move.z = cosf(fAngle) * m_fAccel;
// 距離を計算
float fLength = CFunctionLib::Vec2Length(m_Pos.x, m_Pos.z, m_pDestPos->x, m_pDestPos->z);
if (fLength <= LIGHTORBIT_DEATH_LENGTH) { bDeath = true; }
return bDeath;
}
//=============================================================================
// 位置を移動させる処理
//=============================================================================
void CLightOrbit::Movement(void)
{
// 位置を移動させる
m_Pos += m_Move;
m_Pos.y = LIGHTORBIT_MAX_HEIGHT;
// 加速値の計算
float fRivision = (float)m_nCounter / (float)LIGHTORBIT_MAX_ACCELTIME;
if (fRivision >= 1.0f)
{
fRivision = 1.0f;
}
m_fAccel = sinf((D3DX_PI * 0.5f) * fRivision) * LIGHTORBIT_MAX_ACCEL;
}
//=============================================================================
// エフェクト(3D)を生成する処理
//=============================================================================
void CLightOrbit::CreateEffect3D(void)
{
if (m_nCounter % LIGHTORBIT_EFFECT_SPAWN != 0) { return; }
D3DXCOLOR col = CCharacter::m_CountryColor[m_nDestPlayerIdx];
CEffect3D::Create(m_Pos, col, LIGHTORBIT_EFFECT_WIDTH, LIGHTORBIT_EFFECT_HEIGHT,
LIGHTORBIT_EFFECT_LIFE, LIGHTORBIT_EFFECT_CUTALPHA, LIGHTORBIT_EFFECT_CUTLENGTH,
false, LIGHTORBIT_EFFECT_PRIORITY);
switch (m_nDestPlayerIdx)
{
case 1:
CEffect3D::Create(m_Pos, D3DXCOLOR(1.0f, 1.0f, 1.0f, 1.0f), LIGHTORBIT_EFFECT_WIDTH * 0.6f, LIGHTORBIT_EFFECT_HEIGHT * 0.6f,
LIGHTORBIT_EFFECT_LIFE, LIGHTORBIT_EFFECT_CUTALPHA, LIGHTORBIT_EFFECT_CUTLENGTH,
false, LIGHTORBIT_EFFECT_PRIORITY);
break;
}
}
//=============================================================================
// 描画処理
//=============================================================================
void CLightOrbit::Draw(void)
{
}
//=============================================================================
// 変数の初期化処理
//=============================================================================
void CLightOrbit::ClearVariable(void)
{
m_Pos = INITIALIZE_VECTOR3;
m_Move = INITIALIZE_VECTOR3;
m_pDestPos = NULL;
m_nCounter = 0;
m_nDestPlayerIdx = 0;
m_fAccel = 0.0f;
} | [
"yamashitaatsushi19980502@gmail.com"
] | yamashitaatsushi19980502@gmail.com |
32ba1e2a1879d0c0943fdfce06d190491cdf3123 | fdb54ad118ebdc572ed223dc0f3686d4940c803b | /cros-disks/fuse_helper.cc | 0a8bfdc9bc521d87748ee2c8bfb37db35615d269 | [
"BSD-3-Clause"
] | permissive | ComputerStudyBoard/chromiumos-platform2 | 6589b7097ef226f811f55f8a4dd6a890bf7a29bb | ba71ad06f7ba52e922c647a8915ff852b2d4ebbd | refs/heads/master | 2022-03-27T22:35:41.013481 | 2018-12-06T09:08:40 | 2018-12-06T09:08:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,944 | cc | // Copyright 2018 The Chromium OS 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 "cros-disks/fuse_helper.h"
#include <algorithm>
#include <memory>
#include <base/logging.h>
#include "cros-disks/fuse_mounter.h"
#include "cros-disks/mount_options.h"
#include "cros-disks/platform.h"
#include "cros-disks/system_mounter.h"
#include "cros-disks/uri.h"
namespace cros_disks {
const char FUSEHelper::kFilesUser[] = "chronos";
const char FUSEHelper::kFilesGroup[] = "chronos-access";
const char FUSEHelper::kOptionAllowOther[] = "allow_other";
const char FUSEHelper::kOptionDefaultPermissions[] = "default_permissions";
FUSEHelper::FUSEHelper(const std::string& fuse_type,
const Platform* platform,
const base::FilePath& mount_program_path,
const std::string& mount_user)
: fuse_type_(fuse_type),
platform_(platform),
mount_program_path_(mount_program_path),
mount_user_(mount_user) {}
FUSEHelper::~FUSEHelper() = default;
bool FUSEHelper::CanMount(const Uri& source) const {
return source.scheme() == type() && !source.path().empty();
}
std::string FUSEHelper::GetTargetSuffix(const Uri& source) const {
std::string path = source.path();
std::replace(path.begin(), path.end(), '/', '$');
std::replace(path.begin(), path.end(), '.', '_');
return path;
}
std::unique_ptr<FUSEMounter> FUSEHelper::CreateMounter(
const base::FilePath& working_dir,
const Uri& source,
const base::FilePath& target_path,
const std::vector<std::string>& options) const {
MountOptions mount_options;
mount_options.Initialize(options, false, "", "");
return std::make_unique<FUSEMounter>(
source.path(), target_path.value(), type(), mount_options, platform(),
program_path().value(), user(), "", false);
}
} // namespace cros_disks
| [
"chrome-bot@chromium.org"
] | chrome-bot@chromium.org |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.